@medplum/core 3.2.2 → 3.2.4
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 +4 -4
- package/dist/cjs/index.cjs.map +3 -3
- package/dist/cjs/index.d.ts +8 -2
- package/dist/esm/index.d.ts +8 -2
- package/dist/esm/index.mjs +5 -5
- package/dist/esm/index.mjs.map +3 -3
- package/package.json +3 -3
package/dist/cjs/index.d.ts
CHANGED
|
@@ -1259,6 +1259,8 @@ export declare function findObservationReferenceRange(definition: ObservationDef
|
|
|
1259
1259
|
*/
|
|
1260
1260
|
export declare function findResourceByCode(resources: ResourceWithCode[], code: CodeableConcept | string, system: string): ResourceWithCode | undefined;
|
|
1261
1261
|
|
|
1262
|
+
export declare function flatMapFilter<T, U>(arr: T[], fn: (value: T, idx: number) => U | undefined): U[];
|
|
1263
|
+
|
|
1262
1264
|
export declare const forbidden: OperationOutcome;
|
|
1263
1265
|
|
|
1264
1266
|
/**
|
|
@@ -2502,8 +2504,6 @@ export declare interface MailOptions {
|
|
|
2502
2504
|
*/
|
|
2503
2505
|
export declare function mapByIdentifier<T extends Resource = Resource>(resourceBundle: Bundle<T>, identifierSystem: string): Map<string, T>;
|
|
2504
2506
|
|
|
2505
|
-
export declare function mapFilter<T, U>(arr: T[], fn: (value: T, idx: number) => U | undefined): U[];
|
|
2506
|
-
|
|
2507
2507
|
export declare interface Marker {
|
|
2508
2508
|
index: number;
|
|
2509
2509
|
line: number;
|
|
@@ -4292,9 +4292,11 @@ export declare interface MedplumInfraConfig {
|
|
|
4292
4292
|
apiDomainName: string;
|
|
4293
4293
|
apiSslCertArn: string;
|
|
4294
4294
|
apiInternetFacing?: boolean;
|
|
4295
|
+
apiWafIpSetArn?: string;
|
|
4295
4296
|
appDomainName: string;
|
|
4296
4297
|
appSslCertArn: string;
|
|
4297
4298
|
appApiProxy?: boolean;
|
|
4299
|
+
appWafIpSetArn?: string;
|
|
4298
4300
|
appLoggingBucket?: string;
|
|
4299
4301
|
appLoggingPrefix?: string;
|
|
4300
4302
|
storageBucketName: string;
|
|
@@ -4302,6 +4304,7 @@ export declare interface MedplumInfraConfig {
|
|
|
4302
4304
|
storageSslCertArn: string;
|
|
4303
4305
|
signingKeyId: string;
|
|
4304
4306
|
storagePublicKey: string;
|
|
4307
|
+
storageWafIpSetArn?: string;
|
|
4305
4308
|
storageLoggingBucket?: string;
|
|
4306
4309
|
storageLoggingPrefix?: string;
|
|
4307
4310
|
baseUrl: string;
|
|
@@ -4411,9 +4414,11 @@ export declare interface MedplumSourceInfraConfig {
|
|
|
4411
4414
|
apiDomainName: ValueOrExternalSecret<string>;
|
|
4412
4415
|
apiSslCertArn: ValueOrExternalSecret<string>;
|
|
4413
4416
|
apiInternetFacing?: ValueOrExternalSecret<boolean>;
|
|
4417
|
+
apiWafIpSetArn: ValueOrExternalSecret<string>;
|
|
4414
4418
|
appDomainName: ValueOrExternalSecret<string>;
|
|
4415
4419
|
appSslCertArn: ValueOrExternalSecret<string>;
|
|
4416
4420
|
appApiProxy?: ValueOrExternalSecret<boolean>;
|
|
4421
|
+
appWafIpSetArn: ValueOrExternalSecret<string>;
|
|
4417
4422
|
appLoggingBucket?: ValueOrExternalSecret<string>;
|
|
4418
4423
|
appLoggingPrefix?: ValueOrExternalSecret<string>;
|
|
4419
4424
|
storageBucketName: ValueOrExternalSecret<string>;
|
|
@@ -4421,6 +4426,7 @@ export declare interface MedplumSourceInfraConfig {
|
|
|
4421
4426
|
storageSslCertArn: ValueOrExternalSecret<string>;
|
|
4422
4427
|
signingKeyId: ValueOrExternalSecret<string>;
|
|
4423
4428
|
storagePublicKey: ValueOrExternalSecret<string>;
|
|
4429
|
+
storageWafIpSetArn: ValueOrExternalSecret<string>;
|
|
4424
4430
|
storageLoggingBucket?: ValueOrExternalSecret<string>;
|
|
4425
4431
|
storageLoggingPrefix?: ValueOrExternalSecret<string>;
|
|
4426
4432
|
baseUrl: ValueOrExternalSecret<string>;
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -1259,6 +1259,8 @@ export declare function findObservationReferenceRange(definition: ObservationDef
|
|
|
1259
1259
|
*/
|
|
1260
1260
|
export declare function findResourceByCode(resources: ResourceWithCode[], code: CodeableConcept | string, system: string): ResourceWithCode | undefined;
|
|
1261
1261
|
|
|
1262
|
+
export declare function flatMapFilter<T, U>(arr: T[], fn: (value: T, idx: number) => U | undefined): U[];
|
|
1263
|
+
|
|
1262
1264
|
export declare const forbidden: OperationOutcome;
|
|
1263
1265
|
|
|
1264
1266
|
/**
|
|
@@ -2502,8 +2504,6 @@ export declare interface MailOptions {
|
|
|
2502
2504
|
*/
|
|
2503
2505
|
export declare function mapByIdentifier<T extends Resource = Resource>(resourceBundle: Bundle<T>, identifierSystem: string): Map<string, T>;
|
|
2504
2506
|
|
|
2505
|
-
export declare function mapFilter<T, U>(arr: T[], fn: (value: T, idx: number) => U | undefined): U[];
|
|
2506
|
-
|
|
2507
2507
|
export declare interface Marker {
|
|
2508
2508
|
index: number;
|
|
2509
2509
|
line: number;
|
|
@@ -4292,9 +4292,11 @@ export declare interface MedplumInfraConfig {
|
|
|
4292
4292
|
apiDomainName: string;
|
|
4293
4293
|
apiSslCertArn: string;
|
|
4294
4294
|
apiInternetFacing?: boolean;
|
|
4295
|
+
apiWafIpSetArn?: string;
|
|
4295
4296
|
appDomainName: string;
|
|
4296
4297
|
appSslCertArn: string;
|
|
4297
4298
|
appApiProxy?: boolean;
|
|
4299
|
+
appWafIpSetArn?: string;
|
|
4298
4300
|
appLoggingBucket?: string;
|
|
4299
4301
|
appLoggingPrefix?: string;
|
|
4300
4302
|
storageBucketName: string;
|
|
@@ -4302,6 +4304,7 @@ export declare interface MedplumInfraConfig {
|
|
|
4302
4304
|
storageSslCertArn: string;
|
|
4303
4305
|
signingKeyId: string;
|
|
4304
4306
|
storagePublicKey: string;
|
|
4307
|
+
storageWafIpSetArn?: string;
|
|
4305
4308
|
storageLoggingBucket?: string;
|
|
4306
4309
|
storageLoggingPrefix?: string;
|
|
4307
4310
|
baseUrl: string;
|
|
@@ -4411,9 +4414,11 @@ export declare interface MedplumSourceInfraConfig {
|
|
|
4411
4414
|
apiDomainName: ValueOrExternalSecret<string>;
|
|
4412
4415
|
apiSslCertArn: ValueOrExternalSecret<string>;
|
|
4413
4416
|
apiInternetFacing?: ValueOrExternalSecret<boolean>;
|
|
4417
|
+
apiWafIpSetArn: ValueOrExternalSecret<string>;
|
|
4414
4418
|
appDomainName: ValueOrExternalSecret<string>;
|
|
4415
4419
|
appSslCertArn: ValueOrExternalSecret<string>;
|
|
4416
4420
|
appApiProxy?: ValueOrExternalSecret<boolean>;
|
|
4421
|
+
appWafIpSetArn: ValueOrExternalSecret<string>;
|
|
4417
4422
|
appLoggingBucket?: ValueOrExternalSecret<string>;
|
|
4418
4423
|
appLoggingPrefix?: ValueOrExternalSecret<string>;
|
|
4419
4424
|
storageBucketName: ValueOrExternalSecret<string>;
|
|
@@ -4421,6 +4426,7 @@ export declare interface MedplumSourceInfraConfig {
|
|
|
4421
4426
|
storageSslCertArn: ValueOrExternalSecret<string>;
|
|
4422
4427
|
signingKeyId: ValueOrExternalSecret<string>;
|
|
4423
4428
|
storagePublicKey: ValueOrExternalSecret<string>;
|
|
4429
|
+
storageWafIpSetArn: ValueOrExternalSecret<string>;
|
|
4424
4430
|
storageLoggingBucket?: ValueOrExternalSecret<string>;
|
|
4425
4431
|
storageLoggingPrefix?: ValueOrExternalSecret<string>;
|
|
4426
4432
|
baseUrl: ValueOrExternalSecret<string>;
|