@medplum/fhir-router 3.2.1 → 3.2.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.
- package/dist/cjs/index.cjs +23 -23
- package/dist/cjs/index.cjs.map +3 -3
- package/dist/cjs/index.d.ts +7 -0
- package/dist/esm/index.d.ts +7 -0
- package/dist/esm/index.mjs +22 -22
- package/dist/esm/index.mjs.map +3 -3
- package/package.json +4 -4
package/dist/cjs/index.d.ts
CHANGED
|
@@ -211,6 +211,13 @@ export declare type FhirRequest = {
|
|
|
211
211
|
params: Record<string, string>;
|
|
212
212
|
query: Record<string, string>;
|
|
213
213
|
headers?: IncomingHttpHeaders;
|
|
214
|
+
config?: FhirRequestConfig;
|
|
215
|
+
};
|
|
216
|
+
|
|
217
|
+
export declare type FhirRequestConfig = {
|
|
218
|
+
graphqlMaxDepth?: number;
|
|
219
|
+
graphqlMaxPageSize?: number;
|
|
220
|
+
graphqlMaxSearches?: number;
|
|
214
221
|
};
|
|
215
222
|
|
|
216
223
|
export declare type FhirResponse = [OperationOutcome] | [OperationOutcome, Resource];
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -211,6 +211,13 @@ export declare type FhirRequest = {
|
|
|
211
211
|
params: Record<string, string>;
|
|
212
212
|
query: Record<string, string>;
|
|
213
213
|
headers?: IncomingHttpHeaders;
|
|
214
|
+
config?: FhirRequestConfig;
|
|
215
|
+
};
|
|
216
|
+
|
|
217
|
+
export declare type FhirRequestConfig = {
|
|
218
|
+
graphqlMaxDepth?: number;
|
|
219
|
+
graphqlMaxPageSize?: number;
|
|
220
|
+
graphqlMaxSearches?: number;
|
|
214
221
|
};
|
|
215
222
|
|
|
216
223
|
export declare type FhirResponse = [OperationOutcome] | [OperationOutcome, Resource];
|