@medplum/fhir-router 3.2.1 → 3.2.3

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.
@@ -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];
@@ -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];