@medplum/core 3.2.1 → 3.2.2

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;
@@ -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;