Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace GraphQL with use of new Agent REST API. #217

Merged
merged 39 commits into from
Jan 4, 2024
Merged
Show file tree
Hide file tree
Changes from 34 commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
0e758ff
Lint and build on fixie-common work
Dec 31, 2023
db4a880
Add files.
Dec 31, 2023
6cba313
Cleaning up redundant files.
Dec 31, 2023
4154aa5
Working on adding fixie-web package.
Dec 31, 2023
cb45cec
Build works with fixie-common and fixie-web.
Dec 31, 2023
dbcc025
CLI seems to work (at least for basic things).
Dec 31, 2023
624b680
Basic unit test works!
Dec 31, 2023
ef982a0
Adding lint
Dec 31, 2023
a01d95f
Fixing up linting rules.
Dec 31, 2023
8f9598f
Fix lint warning.
Dec 31, 2023
ca03381
Test setup using Jest.
Jan 1, 2024
02ecd7b
Add some docs and README files.
Jan 1, 2024
96dab08
Remove unused 'examples' subdir.
Jan 1, 2024
f779751
Add some basic tests for fixie/agent.ts.
Jan 2, 2024
bab5b79
Getting tests working for auth.ts.
Jan 2, 2024
0531fd2
Working on auth.test.ts.
Jan 2, 2024
500c0b8
Formatting.
Jan 4, 2024
daad0a1
Rename fixie-common -> @fixieai/fixie-common and make public.
Jan 4, 2024
0aa9b59
Fix CLI.
Jan 4, 2024
17ce058
Fix publishConfig.
Jan 4, 2024
359ac88
Fix up versions.
Jan 4, 2024
f4c03d4
Remove use of GraphQL for Agent API.
Jan 4, 2024
9f3d927
Working on this.
Jan 4, 2024
c89daec
Remove unused logging.
Jan 4, 2024
91f944e
Merge branch 'main' into mdw/refactor-monorepo
Jan 4, 2024
a961b46
Cleanup.
Jan 4, 2024
959fc56
Merge branch 'mdw/refactor-monorepo' into mdw/migrate-agent-rest-api
Jan 4, 2024
ea4e5c5
Fix
Jan 4, 2024
be577ab
Remove debugging.
Jan 4, 2024
ac1979b
Adding tests
Jan 4, 2024
128a382
Adding test
Jan 4, 2024
33d6b02
Finish agent tests.
Jan 4, 2024
c9c12f7
Merge branch 'main' into mdw/migrate-agent-rest-api
Jan 4, 2024
5f71b42
Fix.
Jan 4, 2024
6c3e3b3
Add initial .changeset directory.
Jan 4, 2024
88ca844
Adding changeset for version bump.
Jan 4, 2024
9b82aba
Add changeset instructions.
Jan 4, 2024
05a7e5b
Fix yarn.lock.
Jan 4, 2024
cfc0f3e
Formatting.
Jan 4, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions packages/fixie-common/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@fixieai/fixie-common",
"description": "Node and browser common code for the Fixie platform SDK.",
"version": "1.0.0-rc1",
"version": "1.0.0-rc2",
"license": "MIT",
"repository": {
"type": "git",
Expand All @@ -24,9 +24,6 @@
"types": "dist/src/index.d.ts",
"main": "dist/src/index.js",
"dependencies": {
"@apollo/client": "^3.8.1",
"@types/apollo-upload-client": "^17.0.2",
"apollo-upload-client": "^17.0.0",
"base64-arraybuffer": "^1.0.2",
"type-fest": "^4.3.1"
},
Expand Down
Loading