@opencrvs/toolkit 1.8.0-rc.fa72fdf → 1.8.0-rc.faacbde

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.
@@ -98,6 +98,14 @@ export declare function field(fieldId: string): {
98
98
  isFalsy: () => JSONSchema;
99
99
  isUndefined: () => JSONSchema;
100
100
  inArray: (values: string[]) => JSONSchema;
101
+ isValidEnglishName: () => JSONSchema;
102
+ /**
103
+ * Checks if the field value matches a given regular expression pattern.
104
+ * @param pattern - The regular expression pattern to match the field value against.
105
+ * @returns A JSONSchema conditional that validates the field value against the pattern.
106
+ */
107
+ matches: (pattern: string) => JSONSchema;
108
+ isBetween: (min: number, max: number) => JSONSchema;
101
109
  };
102
110
  export {};
103
111
  //# sourceMappingURL=conditionals.d.ts.map
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=validate-address.test.d.ts.map