@medplum/core 2.2.7 → 2.2.10
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 +3 -3
- package/dist/cjs/index.cjs.map +2 -2
- package/dist/cjs/index.d.ts +6 -0
- package/dist/esm/index.d.ts +6 -0
- package/dist/esm/index.mjs +3 -3
- package/dist/esm/index.mjs.map +2 -2
- package/package.json +1 -1
package/dist/cjs/index.d.ts
CHANGED
|
@@ -3728,6 +3728,7 @@ export declare interface MedplumInfraConfig {
|
|
|
3728
3728
|
snsTopicArn?: string;
|
|
3729
3729
|
snsTopicName?: string;
|
|
3730
3730
|
};
|
|
3731
|
+
environment?: StringMap;
|
|
3731
3732
|
}
|
|
3732
3733
|
|
|
3733
3734
|
export declare interface MedplumSourceInfraConfig {
|
|
@@ -3788,6 +3789,7 @@ export declare interface MedplumSourceInfraConfig {
|
|
|
3788
3789
|
snsTopicArn?: ValueOrExternalSecret<string>;
|
|
3789
3790
|
snsTopicName?: ValueOrExternalSecret<string>;
|
|
3790
3791
|
};
|
|
3792
|
+
environment?: StringMap;
|
|
3791
3793
|
}
|
|
3792
3794
|
|
|
3793
3795
|
/**
|
|
@@ -4594,6 +4596,10 @@ export declare function stringify(value: any, pretty?: boolean): string;
|
|
|
4594
4596
|
*/
|
|
4595
4597
|
export declare function stringifyTypedValue(v: TypedValue): string;
|
|
4596
4598
|
|
|
4599
|
+
export declare type StringMap = {
|
|
4600
|
+
[key: string]: string;
|
|
4601
|
+
};
|
|
4602
|
+
|
|
4597
4603
|
/**
|
|
4598
4604
|
* Transforms input values using a FHIR StructureMap.
|
|
4599
4605
|
*
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -3728,6 +3728,7 @@ export declare interface MedplumInfraConfig {
|
|
|
3728
3728
|
snsTopicArn?: string;
|
|
3729
3729
|
snsTopicName?: string;
|
|
3730
3730
|
};
|
|
3731
|
+
environment?: StringMap;
|
|
3731
3732
|
}
|
|
3732
3733
|
|
|
3733
3734
|
export declare interface MedplumSourceInfraConfig {
|
|
@@ -3788,6 +3789,7 @@ export declare interface MedplumSourceInfraConfig {
|
|
|
3788
3789
|
snsTopicArn?: ValueOrExternalSecret<string>;
|
|
3789
3790
|
snsTopicName?: ValueOrExternalSecret<string>;
|
|
3790
3791
|
};
|
|
3792
|
+
environment?: StringMap;
|
|
3791
3793
|
}
|
|
3792
3794
|
|
|
3793
3795
|
/**
|
|
@@ -4594,6 +4596,10 @@ export declare function stringify(value: any, pretty?: boolean): string;
|
|
|
4594
4596
|
*/
|
|
4595
4597
|
export declare function stringifyTypedValue(v: TypedValue): string;
|
|
4596
4598
|
|
|
4599
|
+
export declare type StringMap = {
|
|
4600
|
+
[key: string]: string;
|
|
4601
|
+
};
|
|
4602
|
+
|
|
4597
4603
|
/**
|
|
4598
4604
|
* Transforms input values using a FHIR StructureMap.
|
|
4599
4605
|
*
|