@medplum/core 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.
@@ -676,6 +676,8 @@ export declare function deepIncludes(value: any, pattern: any): boolean;
676
676
 
677
677
  export declare const DEFAULT_ACCEPT: string;
678
678
 
679
+ export declare const DEFAULT_MAX_SEARCH_COUNT = 1000;
680
+
679
681
  export declare const DEFAULT_SEARCH_COUNT = 20;
680
682
 
681
683
  export declare class DotAtom extends InfixOperatorAtom {
@@ -1151,6 +1153,14 @@ export declare function fhirPathArrayEquals(x: TypedValue[], y: TypedValue[]): T
1151
1153
  */
1152
1154
  export declare function fhirPathArrayEquivalent(x: TypedValue[], y: TypedValue[]): TypedValue[];
1153
1155
 
1156
+ /**
1157
+ * Determines if two arrays are not equal according to FHIRPath equality rules.
1158
+ * @param x - The first array.
1159
+ * @param y - The second array.
1160
+ * @returns FHIRPath true if the arrays are not equal.
1161
+ */
1162
+ export declare function fhirPathArrayNotEquals(x: TypedValue[], y: TypedValue[]): TypedValue[];
1163
+
1154
1164
  export declare class FhirPathAtom implements Atom {
1155
1165
  readonly original: string;
1156
1166
  readonly child: Atom;
@@ -2492,6 +2502,8 @@ export declare interface MailOptions {
2492
2502
  */
2493
2503
  export declare function mapByIdentifier<T extends Resource = Resource>(resourceBundle: Bundle<T>, identifierSystem: string): Map<string, T>;
2494
2504
 
2505
+ export declare function mapFilter<T, U>(arr: T[], fn: (value: T, idx: number) => U | undefined): U[];
2506
+
2495
2507
  export declare interface Marker {
2496
2508
  index: number;
2497
2509
  line: number;
@@ -4280,9 +4292,11 @@ export declare interface MedplumInfraConfig {
4280
4292
  apiDomainName: string;
4281
4293
  apiSslCertArn: string;
4282
4294
  apiInternetFacing?: boolean;
4295
+ apiWafIpSetArn?: string;
4283
4296
  appDomainName: string;
4284
4297
  appSslCertArn: string;
4285
4298
  appApiProxy?: boolean;
4299
+ appWafIpSetArn?: string;
4286
4300
  appLoggingBucket?: string;
4287
4301
  appLoggingPrefix?: string;
4288
4302
  storageBucketName: string;
@@ -4290,6 +4304,7 @@ export declare interface MedplumInfraConfig {
4290
4304
  storageSslCertArn: string;
4291
4305
  signingKeyId: string;
4292
4306
  storagePublicKey: string;
4307
+ storageWafIpSetArn?: string;
4293
4308
  storageLoggingBucket?: string;
4294
4309
  storageLoggingPrefix?: string;
4295
4310
  baseUrl: string;
@@ -4399,9 +4414,11 @@ export declare interface MedplumSourceInfraConfig {
4399
4414
  apiDomainName: ValueOrExternalSecret<string>;
4400
4415
  apiSslCertArn: ValueOrExternalSecret<string>;
4401
4416
  apiInternetFacing?: ValueOrExternalSecret<boolean>;
4417
+ apiWafIpSetArn: ValueOrExternalSecret<string>;
4402
4418
  appDomainName: ValueOrExternalSecret<string>;
4403
4419
  appSslCertArn: ValueOrExternalSecret<string>;
4404
4420
  appApiProxy?: ValueOrExternalSecret<boolean>;
4421
+ appWafIpSetArn: ValueOrExternalSecret<string>;
4405
4422
  appLoggingBucket?: ValueOrExternalSecret<string>;
4406
4423
  appLoggingPrefix?: ValueOrExternalSecret<string>;
4407
4424
  storageBucketName: ValueOrExternalSecret<string>;
@@ -4409,6 +4426,7 @@ export declare interface MedplumSourceInfraConfig {
4409
4426
  storageSslCertArn: ValueOrExternalSecret<string>;
4410
4427
  signingKeyId: ValueOrExternalSecret<string>;
4411
4428
  storagePublicKey: ValueOrExternalSecret<string>;
4429
+ storageWafIpSetArn: ValueOrExternalSecret<string>;
4412
4430
  storageLoggingBucket?: ValueOrExternalSecret<string>;
4413
4431
  storageLoggingPrefix?: ValueOrExternalSecret<string>;
4414
4432
  baseUrl: ValueOrExternalSecret<string>;
@@ -676,6 +676,8 @@ export declare function deepIncludes(value: any, pattern: any): boolean;
676
676
 
677
677
  export declare const DEFAULT_ACCEPT: string;
678
678
 
679
+ export declare const DEFAULT_MAX_SEARCH_COUNT = 1000;
680
+
679
681
  export declare const DEFAULT_SEARCH_COUNT = 20;
680
682
 
681
683
  export declare class DotAtom extends InfixOperatorAtom {
@@ -1151,6 +1153,14 @@ export declare function fhirPathArrayEquals(x: TypedValue[], y: TypedValue[]): T
1151
1153
  */
1152
1154
  export declare function fhirPathArrayEquivalent(x: TypedValue[], y: TypedValue[]): TypedValue[];
1153
1155
 
1156
+ /**
1157
+ * Determines if two arrays are not equal according to FHIRPath equality rules.
1158
+ * @param x - The first array.
1159
+ * @param y - The second array.
1160
+ * @returns FHIRPath true if the arrays are not equal.
1161
+ */
1162
+ export declare function fhirPathArrayNotEquals(x: TypedValue[], y: TypedValue[]): TypedValue[];
1163
+
1154
1164
  export declare class FhirPathAtom implements Atom {
1155
1165
  readonly original: string;
1156
1166
  readonly child: Atom;
@@ -2492,6 +2502,8 @@ export declare interface MailOptions {
2492
2502
  */
2493
2503
  export declare function mapByIdentifier<T extends Resource = Resource>(resourceBundle: Bundle<T>, identifierSystem: string): Map<string, T>;
2494
2504
 
2505
+ export declare function mapFilter<T, U>(arr: T[], fn: (value: T, idx: number) => U | undefined): U[];
2506
+
2495
2507
  export declare interface Marker {
2496
2508
  index: number;
2497
2509
  line: number;
@@ -4280,9 +4292,11 @@ export declare interface MedplumInfraConfig {
4280
4292
  apiDomainName: string;
4281
4293
  apiSslCertArn: string;
4282
4294
  apiInternetFacing?: boolean;
4295
+ apiWafIpSetArn?: string;
4283
4296
  appDomainName: string;
4284
4297
  appSslCertArn: string;
4285
4298
  appApiProxy?: boolean;
4299
+ appWafIpSetArn?: string;
4286
4300
  appLoggingBucket?: string;
4287
4301
  appLoggingPrefix?: string;
4288
4302
  storageBucketName: string;
@@ -4290,6 +4304,7 @@ export declare interface MedplumInfraConfig {
4290
4304
  storageSslCertArn: string;
4291
4305
  signingKeyId: string;
4292
4306
  storagePublicKey: string;
4307
+ storageWafIpSetArn?: string;
4293
4308
  storageLoggingBucket?: string;
4294
4309
  storageLoggingPrefix?: string;
4295
4310
  baseUrl: string;
@@ -4399,9 +4414,11 @@ export declare interface MedplumSourceInfraConfig {
4399
4414
  apiDomainName: ValueOrExternalSecret<string>;
4400
4415
  apiSslCertArn: ValueOrExternalSecret<string>;
4401
4416
  apiInternetFacing?: ValueOrExternalSecret<boolean>;
4417
+ apiWafIpSetArn: ValueOrExternalSecret<string>;
4402
4418
  appDomainName: ValueOrExternalSecret<string>;
4403
4419
  appSslCertArn: ValueOrExternalSecret<string>;
4404
4420
  appApiProxy?: ValueOrExternalSecret<boolean>;
4421
+ appWafIpSetArn: ValueOrExternalSecret<string>;
4405
4422
  appLoggingBucket?: ValueOrExternalSecret<string>;
4406
4423
  appLoggingPrefix?: ValueOrExternalSecret<string>;
4407
4424
  storageBucketName: ValueOrExternalSecret<string>;
@@ -4409,6 +4426,7 @@ export declare interface MedplumSourceInfraConfig {
4409
4426
  storageSslCertArn: ValueOrExternalSecret<string>;
4410
4427
  signingKeyId: ValueOrExternalSecret<string>;
4411
4428
  storagePublicKey: ValueOrExternalSecret<string>;
4429
+ storageWafIpSetArn: ValueOrExternalSecret<string>;
4412
4430
  storageLoggingBucket?: ValueOrExternalSecret<string>;
4413
4431
  storageLoggingPrefix?: ValueOrExternalSecret<string>;
4414
4432
  baseUrl: ValueOrExternalSecret<string>;