Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
1d2f82c
wip aidbox client
andreyorst Nov 7, 2025
4e9a5cd
provide aidbox client via the context provider
andreyorst Nov 11, 2025
6df3a7a
start migrating to new client in viewdef builder
andreyorst Nov 11, 2025
d9bedca
migrate ViewDefinition builder to the new aidbox client
andreyorst Nov 13, 2025
92bcc52
complete migration to the new client
andreyorst Nov 13, 2025
358d68d
use json method to parse response body
andreyorst Nov 13, 2025
824affe
update to a newer client
andreyorst Nov 14, 2025
a16acd7
Force to use codegen generated ViewDefinition.
ryukzak Nov 14, 2025
345de88
Migrate to new types in ViewDefinition builder
andreyorst Nov 14, 2025
4b755ca
update types, refactor error handling
andreyorst Nov 17, 2025
de1ebac
WIP migrate to Bundle type
andreyorst Nov 17, 2025
2ebda89
WIP migrate to Bundle type
andreyorst Nov 17, 2025
c1b6026
Migrate UI History to generated types
andreyorst Nov 18, 2025
aaecc08
further migrate ViewDefinition Builder to generated types
andreyorst Nov 18, 2025
aa57fad
Parametrize client with User
andreyorst Nov 19, 2025
97c5ebf
Migrate to Bundle in collections for the rest console
andreyorst Nov 19, 2025
47a47de
remove custom bundle type from resource browser
andreyorst Nov 19, 2025
9f5d740
re-generate types
andreyorst Nov 20, 2025
56caaa9
update client
andreyorst Nov 20, 2025
00ddbb0
generate open typesets
andreyorst Nov 20, 2025
626dc5c
update client
andreyorst Nov 20, 2025
b3bd299
update client
andreyorst Nov 20, 2025
2b0b7be
rename client methods
andreyorst Nov 21, 2025
7c747ed
update error handling
andreyorst Nov 21, 2025
adb78b9
remove accidental patient type
andreyorst Nov 24, 2025
6121b24
update client
andreyorst Nov 28, 2025
5c00753
update client
andreyorst Dec 1, 2025
00bc099
use aidbox-client as a library
andreyorst Dec 3, 2025
916b265
bump aidbox-client to 0.0.0-alpha.3
andreyorst Dec 5, 2025
1f50577
use client methods instead of plain request
andreyorst Dec 9, 2025
2ad02aa
use client methods instead of plain request
andreyorst Dec 9, 2025
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
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,5 @@
/dist
.DS_Store
/.tanstack
/tmp
/.codegen-cache/
3 changes: 2 additions & 1 deletion biome.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@
"tsconfig.json",
"tsconfig.node.json",
"vite.config.ts",
"!src/**/routeTree.gen.ts"
"!src/**/routeTree.gen.ts",
"scripts/**"
],
"ignoreUnknown": false
},
Expand Down
15 changes: 9 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,15 @@
"lint:fix": "biome check --write",
"test": "echo \"Error: no test specified\" && exit 1",
"all": "pnpm format && pnpm typecheck && biome check --write --diagnostic-level=error",
"hooks": "cp .hooks/* .git/hooks/"
"hooks": "cp .hooks/* .git/hooks/",
"generate-types": "pnpm exec tsx scripts/generate-types.ts"
},
"keywords": [],
"author": "Health Samurai",
"license": "MIT",
"packageManager": "pnpm@10.14.0",
"packageManager": "pnpm@10.22.0",
"devDependencies": {
"@atomic-ehr/codegen": "canary",
"@biomejs/biome": "2.1.3",
"@tailwindcss/vite": "^4.1.12",
"@tanstack/router-plugin": "^1.131.13",
Expand All @@ -36,6 +38,10 @@
"vite": "^7.1.2"
},
"dependencies": {
"@git-diff-view/core": "^0.0.30",
"@git-diff-view/file": "^0.0.30",
"@git-diff-view/react": "^0.0.30",
"@health-samurai/aidbox-client": "0.0.0-alpha.3",
"@health-samurai/react-components": "^0.0.0-alpha.10",
"@tanstack/react-query": "^5.85.3",
"@tanstack/react-query-devtools": "^5.85.3",
Expand All @@ -49,9 +55,6 @@
"lucide-react": "^0.539.0",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"sql-formatter": "^15.6.9",
"@git-diff-view/core": "^0.0.30",
"@git-diff-view/file": "^0.0.30",
"@git-diff-view/react": "^0.0.30"
"sql-formatter": "^15.6.9"
}
}
Loading