babelfhir-ts 1.5.1 → 1.5.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -223,7 +223,7 @@ export interface Bundle<T = ${fhirNs}.Resource> {
|
|
|
223
223
|
type: "collection" | "searchset" | "transaction-response" | "transaction" | "batch" | "batch-response" | "document" | "message" | "history";
|
|
224
224
|
total?: number;
|
|
225
225
|
link?: { relation: string; url: string }[];
|
|
226
|
-
entry?: { resource?: T; fullUrl?: string; search?: { mode?: string; score?: number }; request?: { method:
|
|
226
|
+
entry?: { resource?: T; fullUrl?: string; search?: { mode?: string; score?: number }; request?: { method: 'GET' | 'HEAD' | 'POST' | 'PUT' | 'DELETE' | 'PATCH'; url: string }; response?: { status: string } }[];
|
|
227
227
|
}
|
|
228
228
|
|
|
229
229
|
export declare class FhirResourceReader<T extends ${fhirNs}.Resource, S extends SearchParams = SearchParams> {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "babelfhir-ts",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.2",
|
|
4
4
|
"description": "BabelFHIR-TS: generate TypeScript interfaces, validators, and helper classes from FHIR R4/R4B/R5 StructureDefinitions (profiles) directly inside package archives.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "out/src/main.js",
|
|
@@ -93,13 +93,14 @@
|
|
|
93
93
|
"typescript": "^6.0.2",
|
|
94
94
|
"typescript-eslint": "^8.30.1",
|
|
95
95
|
"vitepress": "^1.6.4",
|
|
96
|
+
"vitepress-plugin-llms": "^1.12.2",
|
|
96
97
|
"vitest": "^4.0.15",
|
|
97
98
|
"zod": "^4.3.6"
|
|
98
99
|
},
|
|
99
100
|
"dependencies": {
|
|
100
101
|
"@types/fhir": "^0.0.42",
|
|
101
102
|
"consola": "^3.4.2",
|
|
102
|
-
"fhirpath": "^4.
|
|
103
|
+
"fhirpath": "^4.10.0",
|
|
103
104
|
"tar": "^7.4.3",
|
|
104
105
|
"tsx": "^4.19.3",
|
|
105
106
|
"unzipper": "^0.12.3"
|