@medplum/core 3.2.27 → 3.2.29
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 +6 -6
- package/dist/cjs/index.cjs.map +3 -3
- package/dist/cjs/index.d.ts +13 -1
- package/dist/esm/index.d.ts +13 -1
- package/dist/esm/index.mjs +6 -6
- package/dist/esm/index.mjs.map +3 -3
- package/package.json +3 -3
package/dist/cjs/index.d.ts
CHANGED
|
@@ -536,6 +536,8 @@ export declare const ContentType: {
|
|
|
536
536
|
readonly TEXT: "text/plain";
|
|
537
537
|
readonly TYPESCRIPT: "text/typescript";
|
|
538
538
|
readonly PING: "x-application/ping";
|
|
539
|
+
readonly XML: "text/xml";
|
|
540
|
+
readonly CDA_XML: "application/cda+xml";
|
|
539
541
|
};
|
|
540
542
|
|
|
541
543
|
/**
|
|
@@ -2088,7 +2090,7 @@ export declare interface IncludeTarget {
|
|
|
2088
2090
|
modifier?: 'iterate';
|
|
2089
2091
|
}
|
|
2090
2092
|
|
|
2091
|
-
export declare function indexDefaultSearchParameters(bundle: Bundle): void;
|
|
2093
|
+
export declare function indexDefaultSearchParameters(bundle: StructureDefinition[] | Bundle): void;
|
|
2092
2094
|
|
|
2093
2095
|
/**
|
|
2094
2096
|
* An IndexedStructureDefinition is a lookup-optimized version of a StructureDefinition.
|
|
@@ -2190,6 +2192,7 @@ export declare interface InternalTypeSchema {
|
|
|
2190
2192
|
path: string;
|
|
2191
2193
|
title?: string;
|
|
2192
2194
|
url?: string;
|
|
2195
|
+
version?: string;
|
|
2193
2196
|
kind?: string;
|
|
2194
2197
|
description?: string;
|
|
2195
2198
|
elements: Record<string, InternalSchemaElement>;
|
|
@@ -4635,6 +4638,8 @@ export declare interface MedplumInfraConfig {
|
|
|
4635
4638
|
scaleOutCooldown: number;
|
|
4636
4639
|
};
|
|
4637
4640
|
environment?: StringMap;
|
|
4641
|
+
rdsIdsMajorVersionSuffix?: boolean;
|
|
4642
|
+
rdsPersistentParameterGroups?: boolean;
|
|
4638
4643
|
}
|
|
4639
4644
|
|
|
4640
4645
|
export declare class MedplumKeyValueClient {
|
|
@@ -4681,6 +4686,11 @@ export declare interface MedplumRequestOptions extends RequestInit {
|
|
|
4681
4686
|
* Optional max number of retries that should be made in the case of a failed request. Default is `2`.
|
|
4682
4687
|
*/
|
|
4683
4688
|
maxRetries?: number;
|
|
4689
|
+
/**
|
|
4690
|
+
* Optional flag to disable auto-batching for this specific request.
|
|
4691
|
+
* Only applies when the client is configured with auto-batching enabled.
|
|
4692
|
+
*/
|
|
4693
|
+
disableAutoBatch?: boolean;
|
|
4684
4694
|
}
|
|
4685
4695
|
|
|
4686
4696
|
export declare interface MedplumSourceInfraConfig {
|
|
@@ -4758,6 +4768,8 @@ export declare interface MedplumSourceInfraConfig {
|
|
|
4758
4768
|
scaleOutCooldown: ValueOrExternalSecret<number>;
|
|
4759
4769
|
};
|
|
4760
4770
|
environment?: StringMap;
|
|
4771
|
+
rdsIdsMajorVersionSuffix?: boolean;
|
|
4772
|
+
rdsPersistentParameterGroups?: boolean;
|
|
4761
4773
|
}
|
|
4762
4774
|
|
|
4763
4775
|
/**
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -536,6 +536,8 @@ export declare const ContentType: {
|
|
|
536
536
|
readonly TEXT: "text/plain";
|
|
537
537
|
readonly TYPESCRIPT: "text/typescript";
|
|
538
538
|
readonly PING: "x-application/ping";
|
|
539
|
+
readonly XML: "text/xml";
|
|
540
|
+
readonly CDA_XML: "application/cda+xml";
|
|
539
541
|
};
|
|
540
542
|
|
|
541
543
|
/**
|
|
@@ -2088,7 +2090,7 @@ export declare interface IncludeTarget {
|
|
|
2088
2090
|
modifier?: 'iterate';
|
|
2089
2091
|
}
|
|
2090
2092
|
|
|
2091
|
-
export declare function indexDefaultSearchParameters(bundle: Bundle): void;
|
|
2093
|
+
export declare function indexDefaultSearchParameters(bundle: StructureDefinition[] | Bundle): void;
|
|
2092
2094
|
|
|
2093
2095
|
/**
|
|
2094
2096
|
* An IndexedStructureDefinition is a lookup-optimized version of a StructureDefinition.
|
|
@@ -2190,6 +2192,7 @@ export declare interface InternalTypeSchema {
|
|
|
2190
2192
|
path: string;
|
|
2191
2193
|
title?: string;
|
|
2192
2194
|
url?: string;
|
|
2195
|
+
version?: string;
|
|
2193
2196
|
kind?: string;
|
|
2194
2197
|
description?: string;
|
|
2195
2198
|
elements: Record<string, InternalSchemaElement>;
|
|
@@ -4635,6 +4638,8 @@ export declare interface MedplumInfraConfig {
|
|
|
4635
4638
|
scaleOutCooldown: number;
|
|
4636
4639
|
};
|
|
4637
4640
|
environment?: StringMap;
|
|
4641
|
+
rdsIdsMajorVersionSuffix?: boolean;
|
|
4642
|
+
rdsPersistentParameterGroups?: boolean;
|
|
4638
4643
|
}
|
|
4639
4644
|
|
|
4640
4645
|
export declare class MedplumKeyValueClient {
|
|
@@ -4681,6 +4686,11 @@ export declare interface MedplumRequestOptions extends RequestInit {
|
|
|
4681
4686
|
* Optional max number of retries that should be made in the case of a failed request. Default is `2`.
|
|
4682
4687
|
*/
|
|
4683
4688
|
maxRetries?: number;
|
|
4689
|
+
/**
|
|
4690
|
+
* Optional flag to disable auto-batching for this specific request.
|
|
4691
|
+
* Only applies when the client is configured with auto-batching enabled.
|
|
4692
|
+
*/
|
|
4693
|
+
disableAutoBatch?: boolean;
|
|
4684
4694
|
}
|
|
4685
4695
|
|
|
4686
4696
|
export declare interface MedplumSourceInfraConfig {
|
|
@@ -4758,6 +4768,8 @@ export declare interface MedplumSourceInfraConfig {
|
|
|
4758
4768
|
scaleOutCooldown: ValueOrExternalSecret<number>;
|
|
4759
4769
|
};
|
|
4760
4770
|
environment?: StringMap;
|
|
4771
|
+
rdsIdsMajorVersionSuffix?: boolean;
|
|
4772
|
+
rdsPersistentParameterGroups?: boolean;
|
|
4761
4773
|
}
|
|
4762
4774
|
|
|
4763
4775
|
/**
|