@medplum/core 2.2.7 → 3.0.0
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 +3 -3
- package/dist/cjs/index.d.ts +8 -0
- package/dist/esm/index.d.ts +8 -0
- package/dist/esm/index.mjs +3 -3
- package/dist/esm/index.mjs.map +3 -3
- package/package.json +1 -1
package/dist/cjs/index.d.ts
CHANGED
|
@@ -140,6 +140,8 @@ export declare class AndAtom extends BooleanInfixOperatorAtom {
|
|
|
140
140
|
eval(context: AtomContext, input: TypedValue[]): TypedValue[];
|
|
141
141
|
}
|
|
142
142
|
|
|
143
|
+
export declare function append<T>(array: T[] | undefined, value: T): T[];
|
|
144
|
+
|
|
143
145
|
export declare class ArithemticOperatorAtom extends BooleanInfixOperatorAtom {
|
|
144
146
|
readonly impl: (x: number, y: number) => number | boolean;
|
|
145
147
|
constructor(operator: string, left: Atom, right: Atom, impl: (x: number, y: number) => number | boolean);
|
|
@@ -3728,6 +3730,7 @@ export declare interface MedplumInfraConfig {
|
|
|
3728
3730
|
snsTopicArn?: string;
|
|
3729
3731
|
snsTopicName?: string;
|
|
3730
3732
|
};
|
|
3733
|
+
environment?: StringMap;
|
|
3731
3734
|
}
|
|
3732
3735
|
|
|
3733
3736
|
export declare interface MedplumSourceInfraConfig {
|
|
@@ -3788,6 +3791,7 @@ export declare interface MedplumSourceInfraConfig {
|
|
|
3788
3791
|
snsTopicArn?: ValueOrExternalSecret<string>;
|
|
3789
3792
|
snsTopicName?: ValueOrExternalSecret<string>;
|
|
3790
3793
|
};
|
|
3794
|
+
environment?: StringMap;
|
|
3791
3795
|
}
|
|
3792
3796
|
|
|
3793
3797
|
/**
|
|
@@ -4594,6 +4598,10 @@ export declare function stringify(value: any, pretty?: boolean): string;
|
|
|
4594
4598
|
*/
|
|
4595
4599
|
export declare function stringifyTypedValue(v: TypedValue): string;
|
|
4596
4600
|
|
|
4601
|
+
export declare type StringMap = {
|
|
4602
|
+
[key: string]: string;
|
|
4603
|
+
};
|
|
4604
|
+
|
|
4597
4605
|
/**
|
|
4598
4606
|
* Transforms input values using a FHIR StructureMap.
|
|
4599
4607
|
*
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -140,6 +140,8 @@ export declare class AndAtom extends BooleanInfixOperatorAtom {
|
|
|
140
140
|
eval(context: AtomContext, input: TypedValue[]): TypedValue[];
|
|
141
141
|
}
|
|
142
142
|
|
|
143
|
+
export declare function append<T>(array: T[] | undefined, value: T): T[];
|
|
144
|
+
|
|
143
145
|
export declare class ArithemticOperatorAtom extends BooleanInfixOperatorAtom {
|
|
144
146
|
readonly impl: (x: number, y: number) => number | boolean;
|
|
145
147
|
constructor(operator: string, left: Atom, right: Atom, impl: (x: number, y: number) => number | boolean);
|
|
@@ -3728,6 +3730,7 @@ export declare interface MedplumInfraConfig {
|
|
|
3728
3730
|
snsTopicArn?: string;
|
|
3729
3731
|
snsTopicName?: string;
|
|
3730
3732
|
};
|
|
3733
|
+
environment?: StringMap;
|
|
3731
3734
|
}
|
|
3732
3735
|
|
|
3733
3736
|
export declare interface MedplumSourceInfraConfig {
|
|
@@ -3788,6 +3791,7 @@ export declare interface MedplumSourceInfraConfig {
|
|
|
3788
3791
|
snsTopicArn?: ValueOrExternalSecret<string>;
|
|
3789
3792
|
snsTopicName?: ValueOrExternalSecret<string>;
|
|
3790
3793
|
};
|
|
3794
|
+
environment?: StringMap;
|
|
3791
3795
|
}
|
|
3792
3796
|
|
|
3793
3797
|
/**
|
|
@@ -4594,6 +4598,10 @@ export declare function stringify(value: any, pretty?: boolean): string;
|
|
|
4594
4598
|
*/
|
|
4595
4599
|
export declare function stringifyTypedValue(v: TypedValue): string;
|
|
4596
4600
|
|
|
4601
|
+
export declare type StringMap = {
|
|
4602
|
+
[key: string]: string;
|
|
4603
|
+
};
|
|
4604
|
+
|
|
4597
4605
|
/**
|
|
4598
4606
|
* Transforms input values using a FHIR StructureMap.
|
|
4599
4607
|
*
|