@opencrvs/toolkit 1.8.0-rc.ffe24c3 → 1.8.1-rc.008155b

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.
Files changed (35) hide show
  1. package/dist/commons/api/router.d.ts +1791 -14926
  2. package/dist/commons/conditionals/conditionals.d.ts +0 -12
  3. package/dist/commons/conditionals/validate.d.ts +5 -0
  4. package/dist/commons/events/ActionConfig.d.ts +37041 -35133
  5. package/dist/commons/events/ActionDocument.d.ts +3742 -1637
  6. package/dist/commons/events/ActionInput.d.ts +2342 -1380
  7. package/dist/commons/events/ActionType.d.ts +7 -4
  8. package/dist/commons/events/AdvancedSearchConfig.d.ts +153 -86
  9. package/dist/commons/events/CompositeFieldValue.d.ts +15 -15
  10. package/dist/commons/events/CountryConfigQueryInput.d.ts +1174 -772
  11. package/dist/commons/events/Draft.d.ts +190 -118
  12. package/dist/commons/events/EventConfig.d.ts +20268 -22409
  13. package/dist/commons/events/EventDocument.d.ts +1714 -1021
  14. package/dist/commons/events/EventIndex.d.ts +523 -182
  15. package/dist/commons/events/EventMetadata.d.ts +9 -7
  16. package/dist/commons/events/FieldConfig.d.ts +1527 -455
  17. package/dist/commons/events/FieldType.d.ts +3 -1
  18. package/dist/commons/events/FieldTypeMapping.d.ts +80 -41
  19. package/dist/commons/events/FieldValue.d.ts +58 -28
  20. package/dist/commons/events/FormConfig.d.ts +9263 -2657
  21. package/dist/commons/events/PageConfig.d.ts +3642 -2028
  22. package/dist/commons/events/SummaryConfig.d.ts +10 -10
  23. package/dist/commons/events/User.d.ts +6 -3
  24. package/dist/commons/events/WorkqueueConfig.d.ts +2290 -1350
  25. package/dist/commons/events/defineConfig.d.ts +2761 -3252
  26. package/dist/commons/events/event.d.ts +19 -19
  27. package/dist/commons/events/field.d.ts +27 -1
  28. package/dist/commons/events/scopes.d.ts +2 -1
  29. package/dist/commons/events/test.utils.d.ts +62 -34
  30. package/dist/commons/events/utils.d.ts +8851 -6797
  31. package/dist/conditionals/index.js +25 -55
  32. package/dist/events/index.js +1657 -1377
  33. package/dist/scopes/index.d.ts +92 -6
  34. package/dist/scopes/index.js +38 -9
  35. package/package.json +3 -3
@@ -29,6 +29,11 @@ export declare const ValidationConfig: z.ZodObject<{
29
29
  export type ValidationConfig = z.infer<typeof ValidationConfig>;
30
30
  declare const BaseField: z.ZodObject<{
31
31
  id: z.ZodString;
32
+ label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
33
+ id: string;
34
+ description: string;
35
+ defaultMessage: string;
36
+ }>;
32
37
  parent: z.ZodOptional<z.ZodObject<{
33
38
  $$field: z.ZodString;
34
39
  }, "strip", z.ZodTypeAny, {
@@ -36,8 +41,9 @@ declare const BaseField: z.ZodObject<{
36
41
  }, {
37
42
  $$field: string;
38
43
  }>>;
39
- conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
40
44
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
45
+ conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
46
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
41
47
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
42
48
  id: string;
43
49
  description: string;
@@ -61,17 +67,13 @@ declare const BaseField: z.ZodObject<{
61
67
  };
62
68
  validator: import(".").JSONSchema;
63
69
  }>, "many">>>;
64
- label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
65
- id: string;
66
- description: string;
67
- defaultMessage: string;
68
- }>;
69
70
  helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
70
71
  id: string;
71
72
  description: string;
72
73
  defaultMessage: string;
73
74
  }>>;
74
75
  hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
76
+ uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
75
77
  }, "strip", z.ZodTypeAny, {
76
78
  id: string;
77
79
  label: TranslationConfig;
@@ -93,9 +95,11 @@ declare const BaseField: z.ZodObject<{
93
95
  type: "DISPLAY_ON_REVIEW";
94
96
  conditional: import(".").JSONSchema;
95
97
  })[] | undefined;
98
+ secured?: boolean | undefined;
96
99
  placeholder?: TranslationConfig | undefined;
97
100
  helperText?: TranslationConfig | undefined;
98
101
  hideLabel?: boolean | undefined;
102
+ uncorrectable?: boolean | undefined;
99
103
  }, {
100
104
  id: string;
101
105
  label: {
@@ -125,6 +129,7 @@ declare const BaseField: z.ZodObject<{
125
129
  type: "DISPLAY_ON_REVIEW";
126
130
  conditional: import(".").JSONSchema;
127
131
  })[] | undefined;
132
+ secured?: boolean | undefined;
128
133
  placeholder?: {
129
134
  id: string;
130
135
  description: string;
@@ -136,10 +141,16 @@ declare const BaseField: z.ZodObject<{
136
141
  defaultMessage: string;
137
142
  } | undefined;
138
143
  hideLabel?: boolean | undefined;
144
+ uncorrectable?: boolean | undefined;
139
145
  }>;
140
146
  export type BaseField = z.infer<typeof BaseField>;
141
147
  declare const Divider: z.ZodObject<z.objectUtil.extendShape<{
142
148
  id: z.ZodString;
149
+ label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
150
+ id: string;
151
+ description: string;
152
+ defaultMessage: string;
153
+ }>;
143
154
  parent: z.ZodOptional<z.ZodObject<{
144
155
  $$field: z.ZodString;
145
156
  }, "strip", z.ZodTypeAny, {
@@ -147,8 +158,9 @@ declare const Divider: z.ZodObject<z.objectUtil.extendShape<{
147
158
  }, {
148
159
  $$field: string;
149
160
  }>>;
150
- conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
151
161
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
162
+ conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
163
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
152
164
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
153
165
  id: string;
154
166
  description: string;
@@ -172,17 +184,13 @@ declare const Divider: z.ZodObject<z.objectUtil.extendShape<{
172
184
  };
173
185
  validator: import(".").JSONSchema;
174
186
  }>, "many">>>;
175
- label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
176
- id: string;
177
- description: string;
178
- defaultMessage: string;
179
- }>;
180
187
  helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
181
188
  id: string;
182
189
  description: string;
183
190
  defaultMessage: string;
184
191
  }>>;
185
192
  hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
193
+ uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
186
194
  }, {
187
195
  type: z.ZodLiteral<"DIVIDER">;
188
196
  }>, "strip", z.ZodTypeAny, {
@@ -207,9 +215,11 @@ declare const Divider: z.ZodObject<z.objectUtil.extendShape<{
207
215
  type: "DISPLAY_ON_REVIEW";
208
216
  conditional: import(".").JSONSchema;
209
217
  })[] | undefined;
218
+ secured?: boolean | undefined;
210
219
  placeholder?: TranslationConfig | undefined;
211
220
  helperText?: TranslationConfig | undefined;
212
221
  hideLabel?: boolean | undefined;
222
+ uncorrectable?: boolean | undefined;
213
223
  }, {
214
224
  type: "DIVIDER";
215
225
  id: string;
@@ -240,6 +250,7 @@ declare const Divider: z.ZodObject<z.objectUtil.extendShape<{
240
250
  type: "DISPLAY_ON_REVIEW";
241
251
  conditional: import(".").JSONSchema;
242
252
  })[] | undefined;
253
+ secured?: boolean | undefined;
243
254
  placeholder?: {
244
255
  id: string;
245
256
  description: string;
@@ -251,10 +262,16 @@ declare const Divider: z.ZodObject<z.objectUtil.extendShape<{
251
262
  defaultMessage: string;
252
263
  } | undefined;
253
264
  hideLabel?: boolean | undefined;
265
+ uncorrectable?: boolean | undefined;
254
266
  }>;
255
267
  export type Divider = z.infer<typeof Divider>;
256
268
  declare const TextField: z.ZodObject<z.objectUtil.extendShape<{
257
269
  id: z.ZodString;
270
+ label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
271
+ id: string;
272
+ description: string;
273
+ defaultMessage: string;
274
+ }>;
258
275
  parent: z.ZodOptional<z.ZodObject<{
259
276
  $$field: z.ZodString;
260
277
  }, "strip", z.ZodTypeAny, {
@@ -262,8 +279,9 @@ declare const TextField: z.ZodObject<z.objectUtil.extendShape<{
262
279
  }, {
263
280
  $$field: string;
264
281
  }>>;
265
- conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
266
282
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
283
+ conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
284
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
267
285
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
268
286
  id: string;
269
287
  description: string;
@@ -287,17 +305,13 @@ declare const TextField: z.ZodObject<z.objectUtil.extendShape<{
287
305
  };
288
306
  validator: import(".").JSONSchema;
289
307
  }>, "many">>>;
290
- label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
291
- id: string;
292
- description: string;
293
- defaultMessage: string;
294
- }>;
295
308
  helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
296
309
  id: string;
297
310
  description: string;
298
311
  defaultMessage: string;
299
312
  }>>;
300
313
  hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
314
+ uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
301
315
  }, {
302
316
  type: z.ZodLiteral<"TEXT">;
303
317
  defaultValue: z.ZodOptional<z.ZodString>;
@@ -355,9 +369,11 @@ declare const TextField: z.ZodObject<z.objectUtil.extendShape<{
355
369
  type: "DISPLAY_ON_REVIEW";
356
370
  conditional: import(".").JSONSchema;
357
371
  })[] | undefined;
372
+ secured?: boolean | undefined;
358
373
  placeholder?: TranslationConfig | undefined;
359
374
  helperText?: TranslationConfig | undefined;
360
375
  hideLabel?: boolean | undefined;
376
+ uncorrectable?: boolean | undefined;
361
377
  defaultValue?: string | undefined;
362
378
  configuration?: {
363
379
  type?: "text" | "password" | undefined;
@@ -395,6 +411,7 @@ declare const TextField: z.ZodObject<z.objectUtil.extendShape<{
395
411
  type: "DISPLAY_ON_REVIEW";
396
412
  conditional: import(".").JSONSchema;
397
413
  })[] | undefined;
414
+ secured?: boolean | undefined;
398
415
  placeholder?: {
399
416
  id: string;
400
417
  description: string;
@@ -406,6 +423,7 @@ declare const TextField: z.ZodObject<z.objectUtil.extendShape<{
406
423
  defaultMessage: string;
407
424
  } | undefined;
408
425
  hideLabel?: boolean | undefined;
426
+ uncorrectable?: boolean | undefined;
409
427
  defaultValue?: string | undefined;
410
428
  configuration?: {
411
429
  type?: "text" | "password" | undefined;
@@ -425,6 +443,11 @@ declare const TextField: z.ZodObject<z.objectUtil.extendShape<{
425
443
  export type TextField = z.infer<typeof TextField>;
426
444
  declare const NumberField: z.ZodObject<z.objectUtil.extendShape<{
427
445
  id: z.ZodString;
446
+ label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
447
+ id: string;
448
+ description: string;
449
+ defaultMessage: string;
450
+ }>;
428
451
  parent: z.ZodOptional<z.ZodObject<{
429
452
  $$field: z.ZodString;
430
453
  }, "strip", z.ZodTypeAny, {
@@ -432,8 +455,9 @@ declare const NumberField: z.ZodObject<z.objectUtil.extendShape<{
432
455
  }, {
433
456
  $$field: string;
434
457
  }>>;
435
- conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
436
458
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
459
+ conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
460
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
437
461
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
438
462
  id: string;
439
463
  description: string;
@@ -457,17 +481,13 @@ declare const NumberField: z.ZodObject<z.objectUtil.extendShape<{
457
481
  };
458
482
  validator: import(".").JSONSchema;
459
483
  }>, "many">>>;
460
- label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
461
- id: string;
462
- description: string;
463
- defaultMessage: string;
464
- }>;
465
484
  helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
466
485
  id: string;
467
486
  description: string;
468
487
  defaultMessage: string;
469
488
  }>>;
470
489
  hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
490
+ uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
471
491
  }, {
472
492
  type: z.ZodLiteral<"NUMBER">;
473
493
  defaultValue: z.ZodOptional<z.ZodNumber>;
@@ -525,9 +545,11 @@ declare const NumberField: z.ZodObject<z.objectUtil.extendShape<{
525
545
  type: "DISPLAY_ON_REVIEW";
526
546
  conditional: import(".").JSONSchema;
527
547
  })[] | undefined;
548
+ secured?: boolean | undefined;
528
549
  placeholder?: TranslationConfig | undefined;
529
550
  helperText?: TranslationConfig | undefined;
530
551
  hideLabel?: boolean | undefined;
552
+ uncorrectable?: boolean | undefined;
531
553
  defaultValue?: number | undefined;
532
554
  configuration?: {
533
555
  prefix?: TranslationConfig | undefined;
@@ -565,6 +587,7 @@ declare const NumberField: z.ZodObject<z.objectUtil.extendShape<{
565
587
  type: "DISPLAY_ON_REVIEW";
566
588
  conditional: import(".").JSONSchema;
567
589
  })[] | undefined;
590
+ secured?: boolean | undefined;
568
591
  placeholder?: {
569
592
  id: string;
570
593
  description: string;
@@ -576,6 +599,7 @@ declare const NumberField: z.ZodObject<z.objectUtil.extendShape<{
576
599
  defaultMessage: string;
577
600
  } | undefined;
578
601
  hideLabel?: boolean | undefined;
602
+ uncorrectable?: boolean | undefined;
579
603
  defaultValue?: number | undefined;
580
604
  configuration?: {
581
605
  prefix?: {
@@ -594,6 +618,11 @@ declare const NumberField: z.ZodObject<z.objectUtil.extendShape<{
594
618
  }>;
595
619
  declare const TextAreaField: z.ZodObject<z.objectUtil.extendShape<{
596
620
  id: z.ZodString;
621
+ label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
622
+ id: string;
623
+ description: string;
624
+ defaultMessage: string;
625
+ }>;
597
626
  parent: z.ZodOptional<z.ZodObject<{
598
627
  $$field: z.ZodString;
599
628
  }, "strip", z.ZodTypeAny, {
@@ -601,8 +630,9 @@ declare const TextAreaField: z.ZodObject<z.objectUtil.extendShape<{
601
630
  }, {
602
631
  $$field: string;
603
632
  }>>;
604
- conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
605
633
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
634
+ conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
635
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
606
636
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
607
637
  id: string;
608
638
  description: string;
@@ -626,17 +656,13 @@ declare const TextAreaField: z.ZodObject<z.objectUtil.extendShape<{
626
656
  };
627
657
  validator: import(".").JSONSchema;
628
658
  }>, "many">>>;
629
- label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
630
- id: string;
631
- description: string;
632
- defaultMessage: string;
633
- }>;
634
659
  helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
635
660
  id: string;
636
661
  description: string;
637
662
  defaultMessage: string;
638
663
  }>>;
639
664
  hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
665
+ uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
640
666
  }, {
641
667
  type: z.ZodLiteral<"TEXTAREA">;
642
668
  defaultValue: z.ZodOptional<z.ZodString>;
@@ -697,9 +723,11 @@ declare const TextAreaField: z.ZodObject<z.objectUtil.extendShape<{
697
723
  type: "DISPLAY_ON_REVIEW";
698
724
  conditional: import(".").JSONSchema;
699
725
  })[] | undefined;
726
+ secured?: boolean | undefined;
700
727
  placeholder?: TranslationConfig | undefined;
701
728
  helperText?: TranslationConfig | undefined;
702
729
  hideLabel?: boolean | undefined;
730
+ uncorrectable?: boolean | undefined;
703
731
  defaultValue?: string | undefined;
704
732
  configuration?: {
705
733
  maxLength?: number | undefined;
@@ -738,6 +766,7 @@ declare const TextAreaField: z.ZodObject<z.objectUtil.extendShape<{
738
766
  type: "DISPLAY_ON_REVIEW";
739
767
  conditional: import(".").JSONSchema;
740
768
  })[] | undefined;
769
+ secured?: boolean | undefined;
741
770
  placeholder?: {
742
771
  id: string;
743
772
  description: string;
@@ -749,6 +778,7 @@ declare const TextAreaField: z.ZodObject<z.objectUtil.extendShape<{
749
778
  defaultMessage: string;
750
779
  } | undefined;
751
780
  hideLabel?: boolean | undefined;
781
+ uncorrectable?: boolean | undefined;
752
782
  defaultValue?: string | undefined;
753
783
  configuration?: {
754
784
  maxLength?: number | undefined;
@@ -772,6 +802,11 @@ export declare const MimeType: z.ZodEnum<["image/png", "image/jpg", "image/jpeg"
772
802
  export type MimeType = z.infer<typeof MimeType>;
773
803
  declare const SignatureField: z.ZodObject<z.objectUtil.extendShape<{
774
804
  id: z.ZodString;
805
+ label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
806
+ id: string;
807
+ description: string;
808
+ defaultMessage: string;
809
+ }>;
775
810
  parent: z.ZodOptional<z.ZodObject<{
776
811
  $$field: z.ZodString;
777
812
  }, "strip", z.ZodTypeAny, {
@@ -779,8 +814,9 @@ declare const SignatureField: z.ZodObject<z.objectUtil.extendShape<{
779
814
  }, {
780
815
  $$field: string;
781
816
  }>>;
782
- conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
783
817
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
818
+ conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
819
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
784
820
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
785
821
  id: string;
786
822
  description: string;
@@ -804,17 +840,13 @@ declare const SignatureField: z.ZodObject<z.objectUtil.extendShape<{
804
840
  };
805
841
  validator: import(".").JSONSchema;
806
842
  }>, "many">>>;
807
- label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
808
- id: string;
809
- description: string;
810
- defaultMessage: string;
811
- }>;
812
843
  helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
813
844
  id: string;
814
845
  description: string;
815
846
  defaultMessage: string;
816
847
  }>>;
817
848
  hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
849
+ uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
818
850
  }, {
819
851
  type: z.ZodLiteral<"SIGNATURE">;
820
852
  signaturePromptLabel: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
@@ -860,9 +892,11 @@ declare const SignatureField: z.ZodObject<z.objectUtil.extendShape<{
860
892
  type: "DISPLAY_ON_REVIEW";
861
893
  conditional: import(".").JSONSchema;
862
894
  })[] | undefined;
895
+ secured?: boolean | undefined;
863
896
  placeholder?: TranslationConfig | undefined;
864
897
  helperText?: TranslationConfig | undefined;
865
898
  hideLabel?: boolean | undefined;
899
+ uncorrectable?: boolean | undefined;
866
900
  defaultValue?: string | undefined;
867
901
  }, {
868
902
  type: "SIGNATURE";
@@ -899,6 +933,7 @@ declare const SignatureField: z.ZodObject<z.objectUtil.extendShape<{
899
933
  type: "DISPLAY_ON_REVIEW";
900
934
  conditional: import(".").JSONSchema;
901
935
  })[] | undefined;
936
+ secured?: boolean | undefined;
902
937
  placeholder?: {
903
938
  id: string;
904
939
  description: string;
@@ -910,6 +945,7 @@ declare const SignatureField: z.ZodObject<z.objectUtil.extendShape<{
910
945
  defaultMessage: string;
911
946
  } | undefined;
912
947
  hideLabel?: boolean | undefined;
948
+ uncorrectable?: boolean | undefined;
913
949
  defaultValue?: string | undefined;
914
950
  configuration?: {
915
951
  maxFileSize?: number | undefined;
@@ -919,6 +955,11 @@ declare const SignatureField: z.ZodObject<z.objectUtil.extendShape<{
919
955
  export type SignatureField = z.infer<typeof SignatureField>;
920
956
  export declare const EmailField: z.ZodObject<z.objectUtil.extendShape<{
921
957
  id: z.ZodString;
958
+ label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
959
+ id: string;
960
+ description: string;
961
+ defaultMessage: string;
962
+ }>;
922
963
  parent: z.ZodOptional<z.ZodObject<{
923
964
  $$field: z.ZodString;
924
965
  }, "strip", z.ZodTypeAny, {
@@ -926,8 +967,9 @@ export declare const EmailField: z.ZodObject<z.objectUtil.extendShape<{
926
967
  }, {
927
968
  $$field: string;
928
969
  }>>;
929
- conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
930
970
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
971
+ conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
972
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
931
973
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
932
974
  id: string;
933
975
  description: string;
@@ -951,17 +993,13 @@ export declare const EmailField: z.ZodObject<z.objectUtil.extendShape<{
951
993
  };
952
994
  validator: import(".").JSONSchema;
953
995
  }>, "many">>>;
954
- label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
955
- id: string;
956
- description: string;
957
- defaultMessage: string;
958
- }>;
959
996
  helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
960
997
  id: string;
961
998
  description: string;
962
999
  defaultMessage: string;
963
1000
  }>>;
964
1001
  hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1002
+ uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
965
1003
  }, {
966
1004
  type: z.ZodLiteral<"EMAIL">;
967
1005
  configuration: z.ZodOptional<z.ZodDefault<z.ZodObject<{
@@ -994,9 +1032,11 @@ export declare const EmailField: z.ZodObject<z.objectUtil.extendShape<{
994
1032
  type: "DISPLAY_ON_REVIEW";
995
1033
  conditional: import(".").JSONSchema;
996
1034
  })[] | undefined;
1035
+ secured?: boolean | undefined;
997
1036
  placeholder?: TranslationConfig | undefined;
998
1037
  helperText?: TranslationConfig | undefined;
999
1038
  hideLabel?: boolean | undefined;
1039
+ uncorrectable?: boolean | undefined;
1000
1040
  defaultValue?: string | undefined;
1001
1041
  configuration?: {
1002
1042
  maxLength?: number | undefined;
@@ -1031,6 +1071,7 @@ export declare const EmailField: z.ZodObject<z.objectUtil.extendShape<{
1031
1071
  type: "DISPLAY_ON_REVIEW";
1032
1072
  conditional: import(".").JSONSchema;
1033
1073
  })[] | undefined;
1074
+ secured?: boolean | undefined;
1034
1075
  placeholder?: {
1035
1076
  id: string;
1036
1077
  description: string;
@@ -1042,6 +1083,7 @@ export declare const EmailField: z.ZodObject<z.objectUtil.extendShape<{
1042
1083
  defaultMessage: string;
1043
1084
  } | undefined;
1044
1085
  hideLabel?: boolean | undefined;
1086
+ uncorrectable?: boolean | undefined;
1045
1087
  defaultValue?: string | undefined;
1046
1088
  configuration?: {
1047
1089
  maxLength?: number | undefined;
@@ -1050,6 +1092,11 @@ export declare const EmailField: z.ZodObject<z.objectUtil.extendShape<{
1050
1092
  export type EmailField = z.infer<typeof EmailField>;
1051
1093
  declare const DateField: z.ZodObject<z.objectUtil.extendShape<{
1052
1094
  id: z.ZodString;
1095
+ label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
1096
+ id: string;
1097
+ description: string;
1098
+ defaultMessage: string;
1099
+ }>;
1053
1100
  parent: z.ZodOptional<z.ZodObject<{
1054
1101
  $$field: z.ZodString;
1055
1102
  }, "strip", z.ZodTypeAny, {
@@ -1057,8 +1104,9 @@ declare const DateField: z.ZodObject<z.objectUtil.extendShape<{
1057
1104
  }, {
1058
1105
  $$field: string;
1059
1106
  }>>;
1060
- conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
1061
1107
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1108
+ conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
1109
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1062
1110
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
1063
1111
  id: string;
1064
1112
  description: string;
@@ -1082,17 +1130,13 @@ declare const DateField: z.ZodObject<z.objectUtil.extendShape<{
1082
1130
  };
1083
1131
  validator: import(".").JSONSchema;
1084
1132
  }>, "many">>>;
1085
- label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
1086
- id: string;
1087
- description: string;
1088
- defaultMessage: string;
1089
- }>;
1090
1133
  helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
1091
1134
  id: string;
1092
1135
  description: string;
1093
1136
  defaultMessage: string;
1094
1137
  }>>;
1095
1138
  hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1139
+ uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1096
1140
  }, {
1097
1141
  type: z.ZodLiteral<"DATE">;
1098
1142
  defaultValue: z.ZodOptional<z.ZodString>;
@@ -1133,9 +1177,11 @@ declare const DateField: z.ZodObject<z.objectUtil.extendShape<{
1133
1177
  type: "DISPLAY_ON_REVIEW";
1134
1178
  conditional: import(".").JSONSchema;
1135
1179
  })[] | undefined;
1180
+ secured?: boolean | undefined;
1136
1181
  placeholder?: TranslationConfig | undefined;
1137
1182
  helperText?: TranslationConfig | undefined;
1138
1183
  hideLabel?: boolean | undefined;
1184
+ uncorrectable?: boolean | undefined;
1139
1185
  defaultValue?: string | undefined;
1140
1186
  configuration?: {
1141
1187
  notice?: TranslationConfig | undefined;
@@ -1170,6 +1216,7 @@ declare const DateField: z.ZodObject<z.objectUtil.extendShape<{
1170
1216
  type: "DISPLAY_ON_REVIEW";
1171
1217
  conditional: import(".").JSONSchema;
1172
1218
  })[] | undefined;
1219
+ secured?: boolean | undefined;
1173
1220
  placeholder?: {
1174
1221
  id: string;
1175
1222
  description: string;
@@ -1181,6 +1228,7 @@ declare const DateField: z.ZodObject<z.objectUtil.extendShape<{
1181
1228
  defaultMessage: string;
1182
1229
  } | undefined;
1183
1230
  hideLabel?: boolean | undefined;
1231
+ uncorrectable?: boolean | undefined;
1184
1232
  defaultValue?: string | undefined;
1185
1233
  configuration?: {
1186
1234
  notice?: {
@@ -1191,8 +1239,13 @@ declare const DateField: z.ZodObject<z.objectUtil.extendShape<{
1191
1239
  } | undefined;
1192
1240
  }>;
1193
1241
  export type DateField = z.infer<typeof DateField>;
1194
- declare const DateRangeField: z.ZodObject<z.objectUtil.extendShape<{
1242
+ declare const TimeField: z.ZodObject<z.objectUtil.extendShape<{
1195
1243
  id: z.ZodString;
1244
+ label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
1245
+ id: string;
1246
+ description: string;
1247
+ defaultMessage: string;
1248
+ }>;
1196
1249
  parent: z.ZodOptional<z.ZodObject<{
1197
1250
  $$field: z.ZodString;
1198
1251
  }, "strip", z.ZodTypeAny, {
@@ -1200,8 +1253,9 @@ declare const DateRangeField: z.ZodObject<z.objectUtil.extendShape<{
1200
1253
  }, {
1201
1254
  $$field: string;
1202
1255
  }>>;
1203
- conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
1204
1256
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1257
+ conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
1258
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1205
1259
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
1206
1260
  id: string;
1207
1261
  description: string;
@@ -1225,20 +1279,16 @@ declare const DateRangeField: z.ZodObject<z.objectUtil.extendShape<{
1225
1279
  };
1226
1280
  validator: import(".").JSONSchema;
1227
1281
  }>, "many">>>;
1228
- label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
1229
- id: string;
1230
- description: string;
1231
- defaultMessage: string;
1232
- }>;
1233
1282
  helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
1234
1283
  id: string;
1235
1284
  description: string;
1236
1285
  defaultMessage: string;
1237
1286
  }>>;
1238
1287
  hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1288
+ uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1239
1289
  }, {
1240
- type: z.ZodLiteral<"DATE_RANGE">;
1241
- defaultValue: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>>;
1290
+ type: z.ZodLiteral<"TIME">;
1291
+ defaultValue: z.ZodOptional<z.ZodString>;
1242
1292
  configuration: z.ZodOptional<z.ZodObject<{
1243
1293
  notice: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
1244
1294
  id: string;
@@ -1255,7 +1305,7 @@ declare const DateRangeField: z.ZodObject<z.objectUtil.extendShape<{
1255
1305
  } | undefined;
1256
1306
  }>>;
1257
1307
  }>, "strip", z.ZodTypeAny, {
1258
- type: "DATE_RANGE";
1308
+ type: "TIME";
1259
1309
  id: string;
1260
1310
  label: TranslationConfig;
1261
1311
  parent?: {
@@ -1276,15 +1326,17 @@ declare const DateRangeField: z.ZodObject<z.objectUtil.extendShape<{
1276
1326
  type: "DISPLAY_ON_REVIEW";
1277
1327
  conditional: import(".").JSONSchema;
1278
1328
  })[] | undefined;
1329
+ secured?: boolean | undefined;
1279
1330
  placeholder?: TranslationConfig | undefined;
1280
1331
  helperText?: TranslationConfig | undefined;
1281
1332
  hideLabel?: boolean | undefined;
1282
- defaultValue?: string | [string, string] | undefined;
1333
+ uncorrectable?: boolean | undefined;
1334
+ defaultValue?: string | undefined;
1283
1335
  configuration?: {
1284
1336
  notice?: TranslationConfig | undefined;
1285
1337
  } | undefined;
1286
1338
  }, {
1287
- type: "DATE_RANGE";
1339
+ type: "TIME";
1288
1340
  id: string;
1289
1341
  label: {
1290
1342
  id: string;
@@ -1313,6 +1365,7 @@ declare const DateRangeField: z.ZodObject<z.objectUtil.extendShape<{
1313
1365
  type: "DISPLAY_ON_REVIEW";
1314
1366
  conditional: import(".").JSONSchema;
1315
1367
  })[] | undefined;
1368
+ secured?: boolean | undefined;
1316
1369
  placeholder?: {
1317
1370
  id: string;
1318
1371
  description: string;
@@ -1324,7 +1377,8 @@ declare const DateRangeField: z.ZodObject<z.objectUtil.extendShape<{
1324
1377
  defaultMessage: string;
1325
1378
  } | undefined;
1326
1379
  hideLabel?: boolean | undefined;
1327
- defaultValue?: string | [string, string] | undefined;
1380
+ uncorrectable?: boolean | undefined;
1381
+ defaultValue?: string | undefined;
1328
1382
  configuration?: {
1329
1383
  notice?: {
1330
1384
  id: string;
@@ -1333,11 +1387,14 @@ declare const DateRangeField: z.ZodObject<z.objectUtil.extendShape<{
1333
1387
  } | undefined;
1334
1388
  } | undefined;
1335
1389
  }>;
1336
- export type DateRangeField = z.infer<typeof DateRangeField>;
1337
- declare const HtmlFontVariant: z.ZodEnum<["reg12", "reg14", "reg16", "reg18", "h4", "h3", "h2", "h1"]>;
1338
- export type HtmlFontVariant = z.infer<typeof HtmlFontVariant>;
1339
- declare const Paragraph: z.ZodObject<z.objectUtil.extendShape<{
1390
+ export type TimeField = z.infer<typeof TimeField>;
1391
+ declare const DateRangeField: z.ZodObject<z.objectUtil.extendShape<{
1340
1392
  id: z.ZodString;
1393
+ label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
1394
+ id: string;
1395
+ description: string;
1396
+ defaultMessage: string;
1397
+ }>;
1341
1398
  parent: z.ZodOptional<z.ZodObject<{
1342
1399
  $$field: z.ZodString;
1343
1400
  }, "strip", z.ZodTypeAny, {
@@ -1345,8 +1402,9 @@ declare const Paragraph: z.ZodObject<z.objectUtil.extendShape<{
1345
1402
  }, {
1346
1403
  $$field: string;
1347
1404
  }>>;
1348
- conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
1349
1405
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1406
+ conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
1407
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1350
1408
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
1351
1409
  id: string;
1352
1410
  description: string;
@@ -1370,46 +1428,44 @@ declare const Paragraph: z.ZodObject<z.objectUtil.extendShape<{
1370
1428
  };
1371
1429
  validator: import(".").JSONSchema;
1372
1430
  }>, "many">>>;
1373
- label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
1374
- id: string;
1375
- description: string;
1376
- defaultMessage: string;
1377
- }>;
1378
1431
  helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
1379
1432
  id: string;
1380
1433
  description: string;
1381
1434
  defaultMessage: string;
1382
1435
  }>>;
1383
1436
  hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1437
+ uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1384
1438
  }, {
1385
- type: z.ZodLiteral<"PARAGRAPH">;
1386
- defaultValue: z.ZodOptional<z.ZodString>;
1387
- configuration: z.ZodDefault<z.ZodObject<{
1388
- styles: z.ZodOptional<z.ZodObject<{
1389
- fontVariant: z.ZodOptional<z.ZodEnum<["reg12", "reg14", "reg16", "reg18", "h4", "h3", "h2", "h1"]>>;
1390
- }, "strip", z.ZodTypeAny, {
1391
- fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
1392
- }, {
1393
- fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
1439
+ type: z.ZodLiteral<"DATE_RANGE">;
1440
+ defaultValue: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
1441
+ start: z.ZodString;
1442
+ end: z.ZodString;
1443
+ }, "strip", z.ZodTypeAny, {
1444
+ start: string;
1445
+ end: string;
1446
+ }, {
1447
+ start: string;
1448
+ end: string;
1449
+ }>, z.ZodString]>>;
1450
+ configuration: z.ZodOptional<z.ZodObject<{
1451
+ notice: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
1452
+ id: string;
1453
+ description: string;
1454
+ defaultMessage: string;
1394
1455
  }>>;
1395
1456
  }, "strip", z.ZodTypeAny, {
1396
- styles?: {
1397
- fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
1398
- } | undefined;
1457
+ notice?: TranslationConfig | undefined;
1399
1458
  }, {
1400
- styles?: {
1401
- fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
1459
+ notice?: {
1460
+ id: string;
1461
+ description: string;
1462
+ defaultMessage: string;
1402
1463
  } | undefined;
1403
1464
  }>>;
1404
1465
  }>, "strip", z.ZodTypeAny, {
1405
- type: "PARAGRAPH";
1466
+ type: "DATE_RANGE";
1406
1467
  id: string;
1407
1468
  label: TranslationConfig;
1408
- configuration: {
1409
- styles?: {
1410
- fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
1411
- } | undefined;
1412
- };
1413
1469
  parent?: {
1414
1470
  $$field: string;
1415
1471
  } | undefined;
@@ -1428,12 +1484,20 @@ declare const Paragraph: z.ZodObject<z.objectUtil.extendShape<{
1428
1484
  type: "DISPLAY_ON_REVIEW";
1429
1485
  conditional: import(".").JSONSchema;
1430
1486
  })[] | undefined;
1487
+ secured?: boolean | undefined;
1431
1488
  placeholder?: TranslationConfig | undefined;
1432
1489
  helperText?: TranslationConfig | undefined;
1433
1490
  hideLabel?: boolean | undefined;
1434
- defaultValue?: string | undefined;
1491
+ uncorrectable?: boolean | undefined;
1492
+ defaultValue?: string | {
1493
+ start: string;
1494
+ end: string;
1495
+ } | undefined;
1496
+ configuration?: {
1497
+ notice?: TranslationConfig | undefined;
1498
+ } | undefined;
1435
1499
  }, {
1436
- type: "PARAGRAPH";
1500
+ type: "DATE_RANGE";
1437
1501
  id: string;
1438
1502
  label: {
1439
1503
  id: string;
@@ -1462,6 +1526,7 @@ declare const Paragraph: z.ZodObject<z.objectUtil.extendShape<{
1462
1526
  type: "DISPLAY_ON_REVIEW";
1463
1527
  conditional: import(".").JSONSchema;
1464
1528
  })[] | undefined;
1529
+ secured?: boolean | undefined;
1465
1530
  placeholder?: {
1466
1531
  id: string;
1467
1532
  description: string;
@@ -1473,16 +1538,52 @@ declare const Paragraph: z.ZodObject<z.objectUtil.extendShape<{
1473
1538
  defaultMessage: string;
1474
1539
  } | undefined;
1475
1540
  hideLabel?: boolean | undefined;
1476
- defaultValue?: string | undefined;
1541
+ uncorrectable?: boolean | undefined;
1542
+ defaultValue?: string | {
1543
+ start: string;
1544
+ end: string;
1545
+ } | undefined;
1477
1546
  configuration?: {
1478
- styles?: {
1479
- fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
1547
+ notice?: {
1548
+ id: string;
1549
+ description: string;
1550
+ defaultMessage: string;
1480
1551
  } | undefined;
1481
1552
  } | undefined;
1482
1553
  }>;
1483
- export type Paragraph = z.infer<typeof Paragraph>;
1484
- declare const PageHeader: z.ZodObject<z.objectUtil.extendShape<{
1554
+ export type DateRangeField = z.infer<typeof DateRangeField>;
1555
+ declare const HtmlFontVariant: z.ZodEnum<["reg12", "reg14", "reg16", "reg18", "h4", "h3", "h2", "h1"]>;
1556
+ export type HtmlFontVariant = z.infer<typeof HtmlFontVariant>;
1557
+ declare const ParagraphConfiguration: z.ZodDefault<z.ZodObject<{
1558
+ styles: z.ZodOptional<z.ZodObject<{
1559
+ fontVariant: z.ZodOptional<z.ZodEnum<["reg12", "reg14", "reg16", "reg18", "h4", "h3", "h2", "h1"]>>;
1560
+ hint: z.ZodOptional<z.ZodBoolean>;
1561
+ }, "strip", z.ZodTypeAny, {
1562
+ fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
1563
+ hint?: boolean | undefined;
1564
+ }, {
1565
+ fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
1566
+ hint?: boolean | undefined;
1567
+ }>>;
1568
+ }, "strip", z.ZodTypeAny, {
1569
+ styles?: {
1570
+ fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
1571
+ hint?: boolean | undefined;
1572
+ } | undefined;
1573
+ }, {
1574
+ styles?: {
1575
+ fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
1576
+ hint?: boolean | undefined;
1577
+ } | undefined;
1578
+ }>>;
1579
+ export type ParagraphConfiguration = z.infer<typeof ParagraphConfiguration>;
1580
+ declare const Paragraph: z.ZodObject<z.objectUtil.extendShape<{
1485
1581
  id: z.ZodString;
1582
+ label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
1583
+ id: string;
1584
+ description: string;
1585
+ defaultMessage: string;
1586
+ }>;
1486
1587
  parent: z.ZodOptional<z.ZodObject<{
1487
1588
  $$field: z.ZodString;
1488
1589
  }, "strip", z.ZodTypeAny, {
@@ -1490,8 +1591,9 @@ declare const PageHeader: z.ZodObject<z.objectUtil.extendShape<{
1490
1591
  }, {
1491
1592
  $$field: string;
1492
1593
  }>>;
1493
- conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
1494
1594
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1595
+ conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
1596
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1495
1597
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
1496
1598
  id: string;
1497
1599
  description: string;
@@ -1515,24 +1617,48 @@ declare const PageHeader: z.ZodObject<z.objectUtil.extendShape<{
1515
1617
  };
1516
1618
  validator: import(".").JSONSchema;
1517
1619
  }>, "many">>>;
1518
- label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
1519
- id: string;
1520
- description: string;
1521
- defaultMessage: string;
1522
- }>;
1523
1620
  helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
1524
1621
  id: string;
1525
1622
  description: string;
1526
1623
  defaultMessage: string;
1527
1624
  }>>;
1528
1625
  hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1626
+ uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1529
1627
  }, {
1530
- type: z.ZodLiteral<"PAGE_HEADER">;
1628
+ type: z.ZodLiteral<"PARAGRAPH">;
1531
1629
  defaultValue: z.ZodOptional<z.ZodString>;
1630
+ configuration: z.ZodDefault<z.ZodObject<{
1631
+ styles: z.ZodOptional<z.ZodObject<{
1632
+ fontVariant: z.ZodOptional<z.ZodEnum<["reg12", "reg14", "reg16", "reg18", "h4", "h3", "h2", "h1"]>>;
1633
+ hint: z.ZodOptional<z.ZodBoolean>;
1634
+ }, "strip", z.ZodTypeAny, {
1635
+ fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
1636
+ hint?: boolean | undefined;
1637
+ }, {
1638
+ fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
1639
+ hint?: boolean | undefined;
1640
+ }>>;
1641
+ }, "strip", z.ZodTypeAny, {
1642
+ styles?: {
1643
+ fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
1644
+ hint?: boolean | undefined;
1645
+ } | undefined;
1646
+ }, {
1647
+ styles?: {
1648
+ fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
1649
+ hint?: boolean | undefined;
1650
+ } | undefined;
1651
+ }>>;
1532
1652
  }>, "strip", z.ZodTypeAny, {
1533
- type: "PAGE_HEADER";
1653
+ type: "PARAGRAPH";
1534
1654
  id: string;
1535
1655
  label: TranslationConfig;
1656
+ configuration: {
1657
+ styles?: {
1658
+ fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
1659
+ hint?: boolean | undefined;
1660
+ } | undefined;
1661
+ };
1536
1662
  parent?: {
1537
1663
  $$field: string;
1538
1664
  } | undefined;
@@ -1551,12 +1677,14 @@ declare const PageHeader: z.ZodObject<z.objectUtil.extendShape<{
1551
1677
  type: "DISPLAY_ON_REVIEW";
1552
1678
  conditional: import(".").JSONSchema;
1553
1679
  })[] | undefined;
1680
+ secured?: boolean | undefined;
1554
1681
  placeholder?: TranslationConfig | undefined;
1555
1682
  helperText?: TranslationConfig | undefined;
1556
1683
  hideLabel?: boolean | undefined;
1684
+ uncorrectable?: boolean | undefined;
1557
1685
  defaultValue?: string | undefined;
1558
1686
  }, {
1559
- type: "PAGE_HEADER";
1687
+ type: "PARAGRAPH";
1560
1688
  id: string;
1561
1689
  label: {
1562
1690
  id: string;
@@ -1585,6 +1713,7 @@ declare const PageHeader: z.ZodObject<z.objectUtil.extendShape<{
1585
1713
  type: "DISPLAY_ON_REVIEW";
1586
1714
  conditional: import(".").JSONSchema;
1587
1715
  })[] | undefined;
1716
+ secured?: boolean | undefined;
1588
1717
  placeholder?: {
1589
1718
  id: string;
1590
1719
  description: string;
@@ -1596,11 +1725,23 @@ declare const PageHeader: z.ZodObject<z.objectUtil.extendShape<{
1596
1725
  defaultMessage: string;
1597
1726
  } | undefined;
1598
1727
  hideLabel?: boolean | undefined;
1728
+ uncorrectable?: boolean | undefined;
1599
1729
  defaultValue?: string | undefined;
1730
+ configuration?: {
1731
+ styles?: {
1732
+ fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
1733
+ hint?: boolean | undefined;
1734
+ } | undefined;
1735
+ } | undefined;
1600
1736
  }>;
1601
- export type PageHeader = z.infer<typeof PageHeader>;
1602
- declare const File: z.ZodObject<z.objectUtil.extendShape<{
1737
+ export type Paragraph = z.infer<typeof Paragraph>;
1738
+ declare const PageHeader: z.ZodObject<z.objectUtil.extendShape<{
1603
1739
  id: z.ZodString;
1740
+ label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
1741
+ id: string;
1742
+ description: string;
1743
+ defaultMessage: string;
1744
+ }>;
1604
1745
  parent: z.ZodOptional<z.ZodObject<{
1605
1746
  $$field: z.ZodString;
1606
1747
  }, "strip", z.ZodTypeAny, {
@@ -1608,8 +1749,9 @@ declare const File: z.ZodObject<z.objectUtil.extendShape<{
1608
1749
  }, {
1609
1750
  $$field: string;
1610
1751
  }>>;
1611
- conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
1612
1752
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1753
+ conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
1754
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1613
1755
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
1614
1756
  id: string;
1615
1757
  description: string;
@@ -1633,30 +1775,150 @@ declare const File: z.ZodObject<z.objectUtil.extendShape<{
1633
1775
  };
1634
1776
  validator: import(".").JSONSchema;
1635
1777
  }>, "many">>>;
1636
- label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
1637
- id: string;
1638
- description: string;
1639
- defaultMessage: string;
1640
- }>;
1641
1778
  helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
1642
1779
  id: string;
1643
1780
  description: string;
1644
1781
  defaultMessage: string;
1645
1782
  }>>;
1646
1783
  hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1784
+ uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1647
1785
  }, {
1648
- type: z.ZodLiteral<"FILE">;
1786
+ type: z.ZodLiteral<"PAGE_HEADER">;
1787
+ defaultValue: z.ZodOptional<z.ZodString>;
1788
+ }>, "strip", z.ZodTypeAny, {
1789
+ type: "PAGE_HEADER";
1790
+ id: string;
1791
+ label: TranslationConfig;
1792
+ parent?: {
1793
+ $$field: string;
1794
+ } | undefined;
1795
+ validation?: {
1796
+ message: TranslationConfig;
1797
+ validator: import(".").JSONSchema;
1798
+ }[] | undefined;
1799
+ required?: boolean | undefined;
1800
+ conditionals?: ({
1801
+ type: "SHOW";
1802
+ conditional: import(".").JSONSchema;
1803
+ } | {
1804
+ type: "ENABLE";
1805
+ conditional: import(".").JSONSchema;
1806
+ } | {
1807
+ type: "DISPLAY_ON_REVIEW";
1808
+ conditional: import(".").JSONSchema;
1809
+ })[] | undefined;
1810
+ secured?: boolean | undefined;
1811
+ placeholder?: TranslationConfig | undefined;
1812
+ helperText?: TranslationConfig | undefined;
1813
+ hideLabel?: boolean | undefined;
1814
+ uncorrectable?: boolean | undefined;
1815
+ defaultValue?: string | undefined;
1816
+ }, {
1817
+ type: "PAGE_HEADER";
1818
+ id: string;
1819
+ label: {
1820
+ id: string;
1821
+ description: string;
1822
+ defaultMessage: string;
1823
+ };
1824
+ parent?: {
1825
+ $$field: string;
1826
+ } | undefined;
1827
+ validation?: {
1828
+ message: {
1829
+ id: string;
1830
+ description: string;
1831
+ defaultMessage: string;
1832
+ };
1833
+ validator: import(".").JSONSchema;
1834
+ }[] | undefined;
1835
+ required?: boolean | undefined;
1836
+ conditionals?: ({
1837
+ type: "SHOW";
1838
+ conditional: import(".").JSONSchema;
1839
+ } | {
1840
+ type: "ENABLE";
1841
+ conditional: import(".").JSONSchema;
1842
+ } | {
1843
+ type: "DISPLAY_ON_REVIEW";
1844
+ conditional: import(".").JSONSchema;
1845
+ })[] | undefined;
1846
+ secured?: boolean | undefined;
1847
+ placeholder?: {
1848
+ id: string;
1849
+ description: string;
1850
+ defaultMessage: string;
1851
+ } | undefined;
1852
+ helperText?: {
1853
+ id: string;
1854
+ description: string;
1855
+ defaultMessage: string;
1856
+ } | undefined;
1857
+ hideLabel?: boolean | undefined;
1858
+ uncorrectable?: boolean | undefined;
1859
+ defaultValue?: string | undefined;
1860
+ }>;
1861
+ export type PageHeader = z.infer<typeof PageHeader>;
1862
+ declare const File: z.ZodObject<z.objectUtil.extendShape<{
1863
+ id: z.ZodString;
1864
+ label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
1865
+ id: string;
1866
+ description: string;
1867
+ defaultMessage: string;
1868
+ }>;
1869
+ parent: z.ZodOptional<z.ZodObject<{
1870
+ $$field: z.ZodString;
1871
+ }, "strip", z.ZodTypeAny, {
1872
+ $$field: string;
1873
+ }, {
1874
+ $$field: string;
1875
+ }>>;
1876
+ required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1877
+ conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
1878
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1879
+ placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
1880
+ id: string;
1881
+ description: string;
1882
+ defaultMessage: string;
1883
+ }>>;
1884
+ validation: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodObject<{
1885
+ validator: z.ZodType<import(".").JSONSchema, z.ZodTypeDef, import(".").JSONSchema>;
1886
+ message: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
1887
+ id: string;
1888
+ description: string;
1889
+ defaultMessage: string;
1890
+ }>;
1891
+ }, "strip", z.ZodTypeAny, {
1892
+ message: TranslationConfig;
1893
+ validator: import(".").JSONSchema;
1894
+ }, {
1895
+ message: {
1896
+ id: string;
1897
+ description: string;
1898
+ defaultMessage: string;
1899
+ };
1900
+ validator: import(".").JSONSchema;
1901
+ }>, "many">>>;
1902
+ helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
1903
+ id: string;
1904
+ description: string;
1905
+ defaultMessage: string;
1906
+ }>>;
1907
+ hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1908
+ uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1909
+ }, {
1910
+ type: z.ZodLiteral<"FILE">;
1649
1911
  defaultValue: z.ZodOptional<z.ZodObject<{
1650
- filename: z.ZodString;
1912
+ path: z.ZodEffects<z.ZodString, string, string>;
1651
1913
  originalFilename: z.ZodString;
1652
1914
  type: z.ZodString;
1653
1915
  }, "strip", z.ZodTypeAny, {
1654
1916
  type: string;
1655
- filename: string;
1917
+ path: string;
1656
1918
  originalFilename: string;
1657
1919
  }, {
1658
1920
  type: string;
1659
- filename: string;
1921
+ path: string;
1660
1922
  originalFilename: string;
1661
1923
  }>>;
1662
1924
  configuration: z.ZodDefault<z.ZodObject<{
@@ -1723,12 +1985,14 @@ declare const File: z.ZodObject<z.objectUtil.extendShape<{
1723
1985
  type: "DISPLAY_ON_REVIEW";
1724
1986
  conditional: import(".").JSONSchema;
1725
1987
  })[] | undefined;
1988
+ secured?: boolean | undefined;
1726
1989
  placeholder?: TranslationConfig | undefined;
1727
1990
  helperText?: TranslationConfig | undefined;
1728
1991
  hideLabel?: boolean | undefined;
1992
+ uncorrectable?: boolean | undefined;
1729
1993
  defaultValue?: {
1730
1994
  type: string;
1731
- filename: string;
1995
+ path: string;
1732
1996
  originalFilename: string;
1733
1997
  } | undefined;
1734
1998
  }, {
@@ -1761,6 +2025,7 @@ declare const File: z.ZodObject<z.objectUtil.extendShape<{
1761
2025
  type: "DISPLAY_ON_REVIEW";
1762
2026
  conditional: import(".").JSONSchema;
1763
2027
  })[] | undefined;
2028
+ secured?: boolean | undefined;
1764
2029
  placeholder?: {
1765
2030
  id: string;
1766
2031
  description: string;
@@ -1772,9 +2037,10 @@ declare const File: z.ZodObject<z.objectUtil.extendShape<{
1772
2037
  defaultMessage: string;
1773
2038
  } | undefined;
1774
2039
  hideLabel?: boolean | undefined;
2040
+ uncorrectable?: boolean | undefined;
1775
2041
  defaultValue?: {
1776
2042
  type: string;
1777
- filename: string;
2043
+ path: string;
1778
2044
  originalFilename: string;
1779
2045
  } | undefined;
1780
2046
  configuration?: {
@@ -1811,6 +2077,11 @@ export declare const SelectOption: z.ZodObject<{
1811
2077
  }>;
1812
2078
  declare const RadioGroup: z.ZodObject<z.objectUtil.extendShape<{
1813
2079
  id: z.ZodString;
2080
+ label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
2081
+ id: string;
2082
+ description: string;
2083
+ defaultMessage: string;
2084
+ }>;
1814
2085
  parent: z.ZodOptional<z.ZodObject<{
1815
2086
  $$field: z.ZodString;
1816
2087
  }, "strip", z.ZodTypeAny, {
@@ -1818,8 +2089,9 @@ declare const RadioGroup: z.ZodObject<z.objectUtil.extendShape<{
1818
2089
  }, {
1819
2090
  $$field: string;
1820
2091
  }>>;
1821
- conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
1822
2092
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2093
+ conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
2094
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1823
2095
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
1824
2096
  id: string;
1825
2097
  description: string;
@@ -1843,17 +2115,13 @@ declare const RadioGroup: z.ZodObject<z.objectUtil.extendShape<{
1843
2115
  };
1844
2116
  validator: import(".").JSONSchema;
1845
2117
  }>, "many">>>;
1846
- label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
1847
- id: string;
1848
- description: string;
1849
- defaultMessage: string;
1850
- }>;
1851
2118
  helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
1852
2119
  id: string;
1853
2120
  description: string;
1854
2121
  defaultMessage: string;
1855
2122
  }>>;
1856
2123
  hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2124
+ uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1857
2125
  }, {
1858
2126
  type: z.ZodLiteral<"RADIO_GROUP">;
1859
2127
  defaultValue: z.ZodOptional<z.ZodString>;
@@ -1918,9 +2186,11 @@ declare const RadioGroup: z.ZodObject<z.objectUtil.extendShape<{
1918
2186
  type: "DISPLAY_ON_REVIEW";
1919
2187
  conditional: import(".").JSONSchema;
1920
2188
  })[] | undefined;
2189
+ secured?: boolean | undefined;
1921
2190
  placeholder?: TranslationConfig | undefined;
1922
2191
  helperText?: TranslationConfig | undefined;
1923
2192
  hideLabel?: boolean | undefined;
2193
+ uncorrectable?: boolean | undefined;
1924
2194
  defaultValue?: string | undefined;
1925
2195
  configuration?: {
1926
2196
  styles?: {
@@ -1965,6 +2235,7 @@ declare const RadioGroup: z.ZodObject<z.objectUtil.extendShape<{
1965
2235
  type: "DISPLAY_ON_REVIEW";
1966
2236
  conditional: import(".").JSONSchema;
1967
2237
  })[] | undefined;
2238
+ secured?: boolean | undefined;
1968
2239
  placeholder?: {
1969
2240
  id: string;
1970
2241
  description: string;
@@ -1976,6 +2247,7 @@ declare const RadioGroup: z.ZodObject<z.objectUtil.extendShape<{
1976
2247
  defaultMessage: string;
1977
2248
  } | undefined;
1978
2249
  hideLabel?: boolean | undefined;
2250
+ uncorrectable?: boolean | undefined;
1979
2251
  defaultValue?: string | undefined;
1980
2252
  configuration?: {
1981
2253
  styles?: {
@@ -1986,6 +2258,11 @@ declare const RadioGroup: z.ZodObject<z.objectUtil.extendShape<{
1986
2258
  export type RadioGroup = z.infer<typeof RadioGroup>;
1987
2259
  declare const BulletList: z.ZodObject<z.objectUtil.extendShape<{
1988
2260
  id: z.ZodString;
2261
+ label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
2262
+ id: string;
2263
+ description: string;
2264
+ defaultMessage: string;
2265
+ }>;
1989
2266
  parent: z.ZodOptional<z.ZodObject<{
1990
2267
  $$field: z.ZodString;
1991
2268
  }, "strip", z.ZodTypeAny, {
@@ -1993,8 +2270,9 @@ declare const BulletList: z.ZodObject<z.objectUtil.extendShape<{
1993
2270
  }, {
1994
2271
  $$field: string;
1995
2272
  }>>;
1996
- conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
1997
2273
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2274
+ conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
2275
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1998
2276
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
1999
2277
  id: string;
2000
2278
  description: string;
@@ -2018,17 +2296,13 @@ declare const BulletList: z.ZodObject<z.objectUtil.extendShape<{
2018
2296
  };
2019
2297
  validator: import(".").JSONSchema;
2020
2298
  }>, "many">>>;
2021
- label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
2022
- id: string;
2023
- description: string;
2024
- defaultMessage: string;
2025
- }>;
2026
2299
  helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
2027
2300
  id: string;
2028
2301
  description: string;
2029
2302
  defaultMessage: string;
2030
2303
  }>>;
2031
2304
  hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2305
+ uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2032
2306
  }, {
2033
2307
  type: z.ZodLiteral<"BULLET_LIST">;
2034
2308
  defaultValue: z.ZodOptional<z.ZodString>;
@@ -2082,9 +2356,11 @@ declare const BulletList: z.ZodObject<z.objectUtil.extendShape<{
2082
2356
  type: "DISPLAY_ON_REVIEW";
2083
2357
  conditional: import(".").JSONSchema;
2084
2358
  })[] | undefined;
2359
+ secured?: boolean | undefined;
2085
2360
  placeholder?: TranslationConfig | undefined;
2086
2361
  helperText?: TranslationConfig | undefined;
2087
2362
  hideLabel?: boolean | undefined;
2363
+ uncorrectable?: boolean | undefined;
2088
2364
  defaultValue?: string | undefined;
2089
2365
  }, {
2090
2366
  type: "BULLET_LIST";
@@ -2121,6 +2397,7 @@ declare const BulletList: z.ZodObject<z.objectUtil.extendShape<{
2121
2397
  type: "DISPLAY_ON_REVIEW";
2122
2398
  conditional: import(".").JSONSchema;
2123
2399
  })[] | undefined;
2400
+ secured?: boolean | undefined;
2124
2401
  placeholder?: {
2125
2402
  id: string;
2126
2403
  description: string;
@@ -2132,6 +2409,7 @@ declare const BulletList: z.ZodObject<z.objectUtil.extendShape<{
2132
2409
  defaultMessage: string;
2133
2410
  } | undefined;
2134
2411
  hideLabel?: boolean | undefined;
2412
+ uncorrectable?: boolean | undefined;
2135
2413
  defaultValue?: string | undefined;
2136
2414
  configuration?: {
2137
2415
  styles?: {
@@ -2142,6 +2420,11 @@ declare const BulletList: z.ZodObject<z.objectUtil.extendShape<{
2142
2420
  export type BulletList = z.infer<typeof BulletList>;
2143
2421
  declare const Select: z.ZodObject<z.objectUtil.extendShape<{
2144
2422
  id: z.ZodString;
2423
+ label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
2424
+ id: string;
2425
+ description: string;
2426
+ defaultMessage: string;
2427
+ }>;
2145
2428
  parent: z.ZodOptional<z.ZodObject<{
2146
2429
  $$field: z.ZodString;
2147
2430
  }, "strip", z.ZodTypeAny, {
@@ -2149,8 +2432,9 @@ declare const Select: z.ZodObject<z.objectUtil.extendShape<{
2149
2432
  }, {
2150
2433
  $$field: string;
2151
2434
  }>>;
2152
- conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
2153
2435
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2436
+ conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
2437
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2154
2438
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
2155
2439
  id: string;
2156
2440
  description: string;
@@ -2174,17 +2458,13 @@ declare const Select: z.ZodObject<z.objectUtil.extendShape<{
2174
2458
  };
2175
2459
  validator: import(".").JSONSchema;
2176
2460
  }>, "many">>>;
2177
- label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
2178
- id: string;
2179
- description: string;
2180
- defaultMessage: string;
2181
- }>;
2182
2461
  helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
2183
2462
  id: string;
2184
2463
  description: string;
2185
2464
  defaultMessage: string;
2186
2465
  }>>;
2187
2466
  hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2467
+ uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2188
2468
  }, {
2189
2469
  type: z.ZodLiteral<"SELECT">;
2190
2470
  defaultValue: z.ZodOptional<z.ZodString>;
@@ -2232,9 +2512,11 @@ declare const Select: z.ZodObject<z.objectUtil.extendShape<{
2232
2512
  type: "DISPLAY_ON_REVIEW";
2233
2513
  conditional: import(".").JSONSchema;
2234
2514
  })[] | undefined;
2515
+ secured?: boolean | undefined;
2235
2516
  placeholder?: TranslationConfig | undefined;
2236
2517
  helperText?: TranslationConfig | undefined;
2237
2518
  hideLabel?: boolean | undefined;
2519
+ uncorrectable?: boolean | undefined;
2238
2520
  defaultValue?: string | undefined;
2239
2521
  }, {
2240
2522
  type: "SELECT";
@@ -2274,6 +2556,7 @@ declare const Select: z.ZodObject<z.objectUtil.extendShape<{
2274
2556
  type: "DISPLAY_ON_REVIEW";
2275
2557
  conditional: import(".").JSONSchema;
2276
2558
  })[] | undefined;
2559
+ secured?: boolean | undefined;
2277
2560
  placeholder?: {
2278
2561
  id: string;
2279
2562
  description: string;
@@ -2285,10 +2568,38 @@ declare const Select: z.ZodObject<z.objectUtil.extendShape<{
2285
2568
  defaultMessage: string;
2286
2569
  } | undefined;
2287
2570
  hideLabel?: boolean | undefined;
2571
+ uncorrectable?: boolean | undefined;
2288
2572
  defaultValue?: string | undefined;
2289
2573
  }>;
2290
- declare const NameField: z.ZodObject<z.objectUtil.extendShape<{
2574
+ export declare const SelectDateRangeOption: z.ZodObject<{
2575
+ value: z.ZodEnum<["last7Days", "last30Days", "last90Days", "last365Days"]>;
2576
+ label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
2577
+ id: string;
2578
+ description: string;
2579
+ defaultMessage: string;
2580
+ }>;
2581
+ }, "strip", z.ZodTypeAny, {
2582
+ value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
2583
+ label: TranslationConfig;
2584
+ }, {
2585
+ value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
2586
+ label: {
2587
+ id: string;
2588
+ description: string;
2589
+ defaultMessage: string;
2590
+ };
2591
+ }>;
2592
+ export type SelectDateRangeOption = z.infer<typeof SelectDateRangeOption>;
2593
+ /**
2594
+ * For internal use only. Needed for search functionality.
2595
+ */
2596
+ export declare const SelectDateRangeField: z.ZodObject<z.objectUtil.extendShape<{
2291
2597
  id: z.ZodString;
2598
+ label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
2599
+ id: string;
2600
+ description: string;
2601
+ defaultMessage: string;
2602
+ }>;
2292
2603
  parent: z.ZodOptional<z.ZodObject<{
2293
2604
  $$field: z.ZodString;
2294
2605
  }, "strip", z.ZodTypeAny, {
@@ -2296,8 +2607,9 @@ declare const NameField: z.ZodObject<z.objectUtil.extendShape<{
2296
2607
  }, {
2297
2608
  $$field: string;
2298
2609
  }>>;
2299
- conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
2300
2610
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2611
+ conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
2612
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2301
2613
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
2302
2614
  id: string;
2303
2615
  description: string;
@@ -2321,61 +2633,41 @@ declare const NameField: z.ZodObject<z.objectUtil.extendShape<{
2321
2633
  };
2322
2634
  validator: import(".").JSONSchema;
2323
2635
  }>, "many">>>;
2324
- label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
2325
- id: string;
2326
- description: string;
2327
- defaultMessage: string;
2328
- }>;
2329
2636
  helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
2330
2637
  id: string;
2331
2638
  description: string;
2332
2639
  defaultMessage: string;
2333
2640
  }>>;
2334
2641
  hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2642
+ uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2335
2643
  }, {
2336
- type: z.ZodLiteral<"NAME">;
2337
- defaultValue: z.ZodOptional<z.ZodObject<{
2338
- firstname: z.ZodString;
2339
- surname: z.ZodString;
2340
- }, "strip", z.ZodTypeAny, {
2341
- firstname: string;
2342
- surname: string;
2343
- }, {
2344
- firstname: string;
2345
- surname: string;
2346
- }>>;
2347
- configuration: z.ZodOptional<z.ZodObject<{
2348
- maxLength: z.ZodOptional<z.ZodNumber>;
2349
- prefix: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
2350
- id: string;
2351
- description: string;
2352
- defaultMessage: string;
2353
- }>>;
2354
- postfix: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
2644
+ type: z.ZodLiteral<"SELECT_DATE_RANGE">;
2645
+ defaultValue: z.ZodOptional<z.ZodEnum<["last7Days", "last30Days", "last90Days", "last365Days"]>>;
2646
+ options: z.ZodArray<z.ZodObject<{
2647
+ value: z.ZodEnum<["last7Days", "last30Days", "last90Days", "last365Days"]>;
2648
+ label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
2355
2649
  id: string;
2356
2650
  description: string;
2357
2651
  defaultMessage: string;
2358
- }>>;
2652
+ }>;
2359
2653
  }, "strip", z.ZodTypeAny, {
2360
- maxLength?: number | undefined;
2361
- prefix?: TranslationConfig | undefined;
2362
- postfix?: TranslationConfig | undefined;
2654
+ value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
2655
+ label: TranslationConfig;
2363
2656
  }, {
2364
- maxLength?: number | undefined;
2365
- prefix?: {
2366
- id: string;
2367
- description: string;
2368
- defaultMessage: string;
2369
- } | undefined;
2370
- postfix?: {
2657
+ value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
2658
+ label: {
2371
2659
  id: string;
2372
2660
  description: string;
2373
2661
  defaultMessage: string;
2374
- } | undefined;
2375
- }>>;
2662
+ };
2663
+ }>, "many">;
2376
2664
  }>, "strip", z.ZodTypeAny, {
2377
- type: "NAME";
2665
+ type: "SELECT_DATE_RANGE";
2378
2666
  id: string;
2667
+ options: {
2668
+ value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
2669
+ label: TranslationConfig;
2670
+ }[];
2379
2671
  label: TranslationConfig;
2380
2672
  parent?: {
2381
2673
  $$field: string;
@@ -2395,21 +2687,23 @@ declare const NameField: z.ZodObject<z.objectUtil.extendShape<{
2395
2687
  type: "DISPLAY_ON_REVIEW";
2396
2688
  conditional: import(".").JSONSchema;
2397
2689
  })[] | undefined;
2690
+ secured?: boolean | undefined;
2398
2691
  placeholder?: TranslationConfig | undefined;
2399
2692
  helperText?: TranslationConfig | undefined;
2400
2693
  hideLabel?: boolean | undefined;
2401
- defaultValue?: {
2402
- firstname: string;
2403
- surname: string;
2404
- } | undefined;
2405
- configuration?: {
2406
- maxLength?: number | undefined;
2407
- prefix?: TranslationConfig | undefined;
2408
- postfix?: TranslationConfig | undefined;
2409
- } | undefined;
2694
+ uncorrectable?: boolean | undefined;
2695
+ defaultValue?: "last7Days" | "last30Days" | "last90Days" | "last365Days" | undefined;
2410
2696
  }, {
2411
- type: "NAME";
2697
+ type: "SELECT_DATE_RANGE";
2412
2698
  id: string;
2699
+ options: {
2700
+ value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
2701
+ label: {
2702
+ id: string;
2703
+ description: string;
2704
+ defaultMessage: string;
2705
+ };
2706
+ }[];
2413
2707
  label: {
2414
2708
  id: string;
2415
2709
  description: string;
@@ -2437,6 +2731,7 @@ declare const NameField: z.ZodObject<z.objectUtil.extendShape<{
2437
2731
  type: "DISPLAY_ON_REVIEW";
2438
2732
  conditional: import(".").JSONSchema;
2439
2733
  })[] | undefined;
2734
+ secured?: boolean | undefined;
2440
2735
  placeholder?: {
2441
2736
  id: string;
2442
2737
  description: string;
@@ -2448,26 +2743,212 @@ declare const NameField: z.ZodObject<z.objectUtil.extendShape<{
2448
2743
  defaultMessage: string;
2449
2744
  } | undefined;
2450
2745
  hideLabel?: boolean | undefined;
2451
- defaultValue?: {
2452
- firstname: string;
2453
- surname: string;
2454
- } | undefined;
2455
- configuration?: {
2456
- maxLength?: number | undefined;
2457
- prefix?: {
2458
- id: string;
2459
- description: string;
2460
- defaultMessage: string;
2461
- } | undefined;
2462
- postfix?: {
2746
+ uncorrectable?: boolean | undefined;
2747
+ defaultValue?: "last7Days" | "last30Days" | "last90Days" | "last365Days" | undefined;
2748
+ }>;
2749
+ export type SelectDateRangeField = z.infer<typeof SelectDateRangeField>;
2750
+ declare const NameField: z.ZodObject<z.objectUtil.extendShape<{
2751
+ id: z.ZodString;
2752
+ label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
2753
+ id: string;
2754
+ description: string;
2755
+ defaultMessage: string;
2756
+ }>;
2757
+ parent: z.ZodOptional<z.ZodObject<{
2758
+ $$field: z.ZodString;
2759
+ }, "strip", z.ZodTypeAny, {
2760
+ $$field: string;
2761
+ }, {
2762
+ $$field: string;
2763
+ }>>;
2764
+ required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2765
+ conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
2766
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2767
+ placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
2768
+ id: string;
2769
+ description: string;
2770
+ defaultMessage: string;
2771
+ }>>;
2772
+ validation: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodObject<{
2773
+ validator: z.ZodType<import(".").JSONSchema, z.ZodTypeDef, import(".").JSONSchema>;
2774
+ message: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
2775
+ id: string;
2776
+ description: string;
2777
+ defaultMessage: string;
2778
+ }>;
2779
+ }, "strip", z.ZodTypeAny, {
2780
+ message: TranslationConfig;
2781
+ validator: import(".").JSONSchema;
2782
+ }, {
2783
+ message: {
2784
+ id: string;
2785
+ description: string;
2786
+ defaultMessage: string;
2787
+ };
2788
+ validator: import(".").JSONSchema;
2789
+ }>, "many">>>;
2790
+ helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
2791
+ id: string;
2792
+ description: string;
2793
+ defaultMessage: string;
2794
+ }>>;
2795
+ hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2796
+ uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2797
+ }, {
2798
+ type: z.ZodLiteral<"NAME">;
2799
+ defaultValue: z.ZodOptional<z.ZodObject<{
2800
+ firstname: z.ZodString;
2801
+ surname: z.ZodString;
2802
+ }, "strip", z.ZodTypeAny, {
2803
+ firstname: string;
2804
+ surname: string;
2805
+ }, {
2806
+ firstname: string;
2807
+ surname: string;
2808
+ }>>;
2809
+ configuration: z.ZodOptional<z.ZodObject<{
2810
+ maxLength: z.ZodOptional<z.ZodNumber>;
2811
+ prefix: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
2812
+ id: string;
2813
+ description: string;
2814
+ defaultMessage: string;
2815
+ }>>;
2816
+ postfix: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
2817
+ id: string;
2818
+ description: string;
2819
+ defaultMessage: string;
2820
+ }>>;
2821
+ includeMiddlename: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2822
+ searchMode: z.ZodOptional<z.ZodBoolean>;
2823
+ }, "strip", z.ZodTypeAny, {
2824
+ maxLength?: number | undefined;
2825
+ prefix?: TranslationConfig | undefined;
2826
+ postfix?: TranslationConfig | undefined;
2827
+ includeMiddlename?: boolean | undefined;
2828
+ searchMode?: boolean | undefined;
2829
+ }, {
2830
+ maxLength?: number | undefined;
2831
+ prefix?: {
2832
+ id: string;
2833
+ description: string;
2834
+ defaultMessage: string;
2835
+ } | undefined;
2836
+ postfix?: {
2837
+ id: string;
2838
+ description: string;
2839
+ defaultMessage: string;
2840
+ } | undefined;
2841
+ includeMiddlename?: boolean | undefined;
2842
+ searchMode?: boolean | undefined;
2843
+ }>>;
2844
+ }>, "strip", z.ZodTypeAny, {
2845
+ type: "NAME";
2846
+ id: string;
2847
+ label: TranslationConfig;
2848
+ parent?: {
2849
+ $$field: string;
2850
+ } | undefined;
2851
+ validation?: {
2852
+ message: TranslationConfig;
2853
+ validator: import(".").JSONSchema;
2854
+ }[] | undefined;
2855
+ required?: boolean | undefined;
2856
+ conditionals?: ({
2857
+ type: "SHOW";
2858
+ conditional: import(".").JSONSchema;
2859
+ } | {
2860
+ type: "ENABLE";
2861
+ conditional: import(".").JSONSchema;
2862
+ } | {
2863
+ type: "DISPLAY_ON_REVIEW";
2864
+ conditional: import(".").JSONSchema;
2865
+ })[] | undefined;
2866
+ secured?: boolean | undefined;
2867
+ placeholder?: TranslationConfig | undefined;
2868
+ helperText?: TranslationConfig | undefined;
2869
+ hideLabel?: boolean | undefined;
2870
+ uncorrectable?: boolean | undefined;
2871
+ defaultValue?: {
2872
+ firstname: string;
2873
+ surname: string;
2874
+ } | undefined;
2875
+ configuration?: {
2876
+ maxLength?: number | undefined;
2877
+ prefix?: TranslationConfig | undefined;
2878
+ postfix?: TranslationConfig | undefined;
2879
+ includeMiddlename?: boolean | undefined;
2880
+ searchMode?: boolean | undefined;
2881
+ } | undefined;
2882
+ }, {
2883
+ type: "NAME";
2884
+ id: string;
2885
+ label: {
2886
+ id: string;
2887
+ description: string;
2888
+ defaultMessage: string;
2889
+ };
2890
+ parent?: {
2891
+ $$field: string;
2892
+ } | undefined;
2893
+ validation?: {
2894
+ message: {
2895
+ id: string;
2896
+ description: string;
2897
+ defaultMessage: string;
2898
+ };
2899
+ validator: import(".").JSONSchema;
2900
+ }[] | undefined;
2901
+ required?: boolean | undefined;
2902
+ conditionals?: ({
2903
+ type: "SHOW";
2904
+ conditional: import(".").JSONSchema;
2905
+ } | {
2906
+ type: "ENABLE";
2907
+ conditional: import(".").JSONSchema;
2908
+ } | {
2909
+ type: "DISPLAY_ON_REVIEW";
2910
+ conditional: import(".").JSONSchema;
2911
+ })[] | undefined;
2912
+ secured?: boolean | undefined;
2913
+ placeholder?: {
2914
+ id: string;
2915
+ description: string;
2916
+ defaultMessage: string;
2917
+ } | undefined;
2918
+ helperText?: {
2919
+ id: string;
2920
+ description: string;
2921
+ defaultMessage: string;
2922
+ } | undefined;
2923
+ hideLabel?: boolean | undefined;
2924
+ uncorrectable?: boolean | undefined;
2925
+ defaultValue?: {
2926
+ firstname: string;
2927
+ surname: string;
2928
+ } | undefined;
2929
+ configuration?: {
2930
+ maxLength?: number | undefined;
2931
+ prefix?: {
2932
+ id: string;
2933
+ description: string;
2934
+ defaultMessage: string;
2935
+ } | undefined;
2936
+ postfix?: {
2463
2937
  id: string;
2464
2938
  description: string;
2465
2939
  defaultMessage: string;
2466
2940
  } | undefined;
2941
+ includeMiddlename?: boolean | undefined;
2942
+ searchMode?: boolean | undefined;
2467
2943
  } | undefined;
2468
2944
  }>;
2469
2945
  declare const PhoneField: z.ZodObject<z.objectUtil.extendShape<{
2470
2946
  id: z.ZodString;
2947
+ label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
2948
+ id: string;
2949
+ description: string;
2950
+ defaultMessage: string;
2951
+ }>;
2471
2952
  parent: z.ZodOptional<z.ZodObject<{
2472
2953
  $$field: z.ZodString;
2473
2954
  }, "strip", z.ZodTypeAny, {
@@ -2475,8 +2956,9 @@ declare const PhoneField: z.ZodObject<z.objectUtil.extendShape<{
2475
2956
  }, {
2476
2957
  $$field: string;
2477
2958
  }>>;
2478
- conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
2479
2959
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2960
+ conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
2961
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2480
2962
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
2481
2963
  id: string;
2482
2964
  description: string;
@@ -2500,17 +2982,13 @@ declare const PhoneField: z.ZodObject<z.objectUtil.extendShape<{
2500
2982
  };
2501
2983
  validator: import(".").JSONSchema;
2502
2984
  }>, "many">>>;
2503
- label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
2504
- id: string;
2505
- description: string;
2506
- defaultMessage: string;
2507
- }>;
2508
2985
  helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
2509
2986
  id: string;
2510
2987
  description: string;
2511
2988
  defaultMessage: string;
2512
2989
  }>>;
2513
2990
  hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2991
+ uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2514
2992
  }, {
2515
2993
  defaultValue: z.ZodOptional<z.ZodString>;
2516
2994
  type: z.ZodLiteral<"PHONE">;
@@ -2536,9 +3014,11 @@ declare const PhoneField: z.ZodObject<z.objectUtil.extendShape<{
2536
3014
  type: "DISPLAY_ON_REVIEW";
2537
3015
  conditional: import(".").JSONSchema;
2538
3016
  })[] | undefined;
3017
+ secured?: boolean | undefined;
2539
3018
  placeholder?: TranslationConfig | undefined;
2540
3019
  helperText?: TranslationConfig | undefined;
2541
3020
  hideLabel?: boolean | undefined;
3021
+ uncorrectable?: boolean | undefined;
2542
3022
  defaultValue?: string | undefined;
2543
3023
  }, {
2544
3024
  type: "PHONE";
@@ -2570,6 +3050,7 @@ declare const PhoneField: z.ZodObject<z.objectUtil.extendShape<{
2570
3050
  type: "DISPLAY_ON_REVIEW";
2571
3051
  conditional: import(".").JSONSchema;
2572
3052
  })[] | undefined;
3053
+ secured?: boolean | undefined;
2573
3054
  placeholder?: {
2574
3055
  id: string;
2575
3056
  description: string;
@@ -2581,10 +3062,16 @@ declare const PhoneField: z.ZodObject<z.objectUtil.extendShape<{
2581
3062
  defaultMessage: string;
2582
3063
  } | undefined;
2583
3064
  hideLabel?: boolean | undefined;
3065
+ uncorrectable?: boolean | undefined;
2584
3066
  defaultValue?: string | undefined;
2585
3067
  }>;
2586
3068
  declare const IdField: z.ZodObject<z.objectUtil.extendShape<{
2587
3069
  id: z.ZodString;
3070
+ label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
3071
+ id: string;
3072
+ description: string;
3073
+ defaultMessage: string;
3074
+ }>;
2588
3075
  parent: z.ZodOptional<z.ZodObject<{
2589
3076
  $$field: z.ZodString;
2590
3077
  }, "strip", z.ZodTypeAny, {
@@ -2592,8 +3079,9 @@ declare const IdField: z.ZodObject<z.objectUtil.extendShape<{
2592
3079
  }, {
2593
3080
  $$field: string;
2594
3081
  }>>;
2595
- conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
2596
3082
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3083
+ conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
3084
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2597
3085
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
2598
3086
  id: string;
2599
3087
  description: string;
@@ -2617,17 +3105,13 @@ declare const IdField: z.ZodObject<z.objectUtil.extendShape<{
2617
3105
  };
2618
3106
  validator: import(".").JSONSchema;
2619
3107
  }>, "many">>>;
2620
- label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
2621
- id: string;
2622
- description: string;
2623
- defaultMessage: string;
2624
- }>;
2625
3108
  helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
2626
3109
  id: string;
2627
3110
  description: string;
2628
3111
  defaultMessage: string;
2629
3112
  }>>;
2630
3113
  hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3114
+ uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2631
3115
  }, {
2632
3116
  defaultValue: z.ZodOptional<z.ZodString>;
2633
3117
  type: z.ZodLiteral<"ID">;
@@ -2653,9 +3137,11 @@ declare const IdField: z.ZodObject<z.objectUtil.extendShape<{
2653
3137
  type: "DISPLAY_ON_REVIEW";
2654
3138
  conditional: import(".").JSONSchema;
2655
3139
  })[] | undefined;
3140
+ secured?: boolean | undefined;
2656
3141
  placeholder?: TranslationConfig | undefined;
2657
3142
  helperText?: TranslationConfig | undefined;
2658
3143
  hideLabel?: boolean | undefined;
3144
+ uncorrectable?: boolean | undefined;
2659
3145
  defaultValue?: string | undefined;
2660
3146
  }, {
2661
3147
  type: "ID";
@@ -2687,6 +3173,7 @@ declare const IdField: z.ZodObject<z.objectUtil.extendShape<{
2687
3173
  type: "DISPLAY_ON_REVIEW";
2688
3174
  conditional: import(".").JSONSchema;
2689
3175
  })[] | undefined;
3176
+ secured?: boolean | undefined;
2690
3177
  placeholder?: {
2691
3178
  id: string;
2692
3179
  description: string;
@@ -2698,10 +3185,16 @@ declare const IdField: z.ZodObject<z.objectUtil.extendShape<{
2698
3185
  defaultMessage: string;
2699
3186
  } | undefined;
2700
3187
  hideLabel?: boolean | undefined;
3188
+ uncorrectable?: boolean | undefined;
2701
3189
  defaultValue?: string | undefined;
2702
3190
  }>;
2703
3191
  declare const Checkbox: z.ZodObject<z.objectUtil.extendShape<{
2704
3192
  id: z.ZodString;
3193
+ label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
3194
+ id: string;
3195
+ description: string;
3196
+ defaultMessage: string;
3197
+ }>;
2705
3198
  parent: z.ZodOptional<z.ZodObject<{
2706
3199
  $$field: z.ZodString;
2707
3200
  }, "strip", z.ZodTypeAny, {
@@ -2709,8 +3202,9 @@ declare const Checkbox: z.ZodObject<z.objectUtil.extendShape<{
2709
3202
  }, {
2710
3203
  $$field: string;
2711
3204
  }>>;
2712
- conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
2713
3205
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3206
+ conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
3207
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2714
3208
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
2715
3209
  id: string;
2716
3210
  description: string;
@@ -2734,17 +3228,13 @@ declare const Checkbox: z.ZodObject<z.objectUtil.extendShape<{
2734
3228
  };
2735
3229
  validator: import(".").JSONSchema;
2736
3230
  }>, "many">>>;
2737
- label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
2738
- id: string;
2739
- description: string;
2740
- defaultMessage: string;
2741
- }>;
2742
3231
  helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
2743
3232
  id: string;
2744
3233
  description: string;
2745
3234
  defaultMessage: string;
2746
3235
  }>>;
2747
3236
  hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3237
+ uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2748
3238
  }, {
2749
3239
  type: z.ZodLiteral<"CHECKBOX">;
2750
3240
  defaultValue: z.ZodOptional<z.ZodBoolean>;
@@ -2770,9 +3260,11 @@ declare const Checkbox: z.ZodObject<z.objectUtil.extendShape<{
2770
3260
  type: "DISPLAY_ON_REVIEW";
2771
3261
  conditional: import(".").JSONSchema;
2772
3262
  })[] | undefined;
3263
+ secured?: boolean | undefined;
2773
3264
  placeholder?: TranslationConfig | undefined;
2774
3265
  helperText?: TranslationConfig | undefined;
2775
3266
  hideLabel?: boolean | undefined;
3267
+ uncorrectable?: boolean | undefined;
2776
3268
  defaultValue?: boolean | undefined;
2777
3269
  }, {
2778
3270
  type: "CHECKBOX";
@@ -2804,6 +3296,7 @@ declare const Checkbox: z.ZodObject<z.objectUtil.extendShape<{
2804
3296
  type: "DISPLAY_ON_REVIEW";
2805
3297
  conditional: import(".").JSONSchema;
2806
3298
  })[] | undefined;
3299
+ secured?: boolean | undefined;
2807
3300
  placeholder?: {
2808
3301
  id: string;
2809
3302
  description: string;
@@ -2815,11 +3308,17 @@ declare const Checkbox: z.ZodObject<z.objectUtil.extendShape<{
2815
3308
  defaultMessage: string;
2816
3309
  } | undefined;
2817
3310
  hideLabel?: boolean | undefined;
3311
+ uncorrectable?: boolean | undefined;
2818
3312
  defaultValue?: boolean | undefined;
2819
3313
  }>;
2820
3314
  export type Checkbox = z.infer<typeof Checkbox>;
2821
3315
  declare const Country: z.ZodObject<z.objectUtil.extendShape<{
2822
3316
  id: z.ZodString;
3317
+ label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
3318
+ id: string;
3319
+ description: string;
3320
+ defaultMessage: string;
3321
+ }>;
2823
3322
  parent: z.ZodOptional<z.ZodObject<{
2824
3323
  $$field: z.ZodString;
2825
3324
  }, "strip", z.ZodTypeAny, {
@@ -2827,8 +3326,9 @@ declare const Country: z.ZodObject<z.objectUtil.extendShape<{
2827
3326
  }, {
2828
3327
  $$field: string;
2829
3328
  }>>;
2830
- conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
2831
3329
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3330
+ conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
3331
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2832
3332
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
2833
3333
  id: string;
2834
3334
  description: string;
@@ -2852,17 +3352,13 @@ declare const Country: z.ZodObject<z.objectUtil.extendShape<{
2852
3352
  };
2853
3353
  validator: import(".").JSONSchema;
2854
3354
  }>, "many">>>;
2855
- label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
2856
- id: string;
2857
- description: string;
2858
- defaultMessage: string;
2859
- }>;
2860
3355
  helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
2861
3356
  id: string;
2862
3357
  description: string;
2863
3358
  defaultMessage: string;
2864
3359
  }>>;
2865
3360
  hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3361
+ uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2866
3362
  }, {
2867
3363
  type: z.ZodLiteral<"COUNTRY">;
2868
3364
  defaultValue: z.ZodOptional<z.ZodString>;
@@ -2888,9 +3384,11 @@ declare const Country: z.ZodObject<z.objectUtil.extendShape<{
2888
3384
  type: "DISPLAY_ON_REVIEW";
2889
3385
  conditional: import(".").JSONSchema;
2890
3386
  })[] | undefined;
3387
+ secured?: boolean | undefined;
2891
3388
  placeholder?: TranslationConfig | undefined;
2892
3389
  helperText?: TranslationConfig | undefined;
2893
3390
  hideLabel?: boolean | undefined;
3391
+ uncorrectable?: boolean | undefined;
2894
3392
  defaultValue?: string | undefined;
2895
3393
  }, {
2896
3394
  type: "COUNTRY";
@@ -2922,6 +3420,7 @@ declare const Country: z.ZodObject<z.objectUtil.extendShape<{
2922
3420
  type: "DISPLAY_ON_REVIEW";
2923
3421
  conditional: import(".").JSONSchema;
2924
3422
  })[] | undefined;
3423
+ secured?: boolean | undefined;
2925
3424
  placeholder?: {
2926
3425
  id: string;
2927
3426
  description: string;
@@ -2933,6 +3432,7 @@ declare const Country: z.ZodObject<z.objectUtil.extendShape<{
2933
3432
  defaultMessage: string;
2934
3433
  } | undefined;
2935
3434
  hideLabel?: boolean | undefined;
3435
+ uncorrectable?: boolean | undefined;
2936
3436
  defaultValue?: string | undefined;
2937
3437
  }>;
2938
3438
  export type Country = z.infer<typeof Country>;
@@ -2959,6 +3459,11 @@ declare const AdministrativeAreaConfiguration: z.ZodObject<{
2959
3459
  }>;
2960
3460
  declare const AdministrativeArea: z.ZodObject<z.objectUtil.extendShape<{
2961
3461
  id: z.ZodString;
3462
+ label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
3463
+ id: string;
3464
+ description: string;
3465
+ defaultMessage: string;
3466
+ }>;
2962
3467
  parent: z.ZodOptional<z.ZodObject<{
2963
3468
  $$field: z.ZodString;
2964
3469
  }, "strip", z.ZodTypeAny, {
@@ -2966,8 +3471,9 @@ declare const AdministrativeArea: z.ZodObject<z.objectUtil.extendShape<{
2966
3471
  }, {
2967
3472
  $$field: string;
2968
3473
  }>>;
2969
- conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
2970
3474
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3475
+ conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
3476
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2971
3477
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
2972
3478
  id: string;
2973
3479
  description: string;
@@ -2991,17 +3497,13 @@ declare const AdministrativeArea: z.ZodObject<z.objectUtil.extendShape<{
2991
3497
  };
2992
3498
  validator: import(".").JSONSchema;
2993
3499
  }>, "many">>>;
2994
- label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
2995
- id: string;
2996
- description: string;
2997
- defaultMessage: string;
2998
- }>;
2999
3500
  helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
3000
3501
  id: string;
3001
3502
  description: string;
3002
3503
  defaultMessage: string;
3003
3504
  }>>;
3004
3505
  hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3506
+ uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3005
3507
  }, {
3006
3508
  type: z.ZodLiteral<"ADMINISTRATIVE_AREA">;
3007
3509
  defaultValue: z.ZodOptional<z.ZodString>;
@@ -3053,9 +3555,11 @@ declare const AdministrativeArea: z.ZodObject<z.objectUtil.extendShape<{
3053
3555
  type: "DISPLAY_ON_REVIEW";
3054
3556
  conditional: import(".").JSONSchema;
3055
3557
  })[] | undefined;
3558
+ secured?: boolean | undefined;
3056
3559
  placeholder?: TranslationConfig | undefined;
3057
3560
  helperText?: TranslationConfig | undefined;
3058
3561
  hideLabel?: boolean | undefined;
3562
+ uncorrectable?: boolean | undefined;
3059
3563
  defaultValue?: string | undefined;
3060
3564
  }, {
3061
3565
  type: "ADMINISTRATIVE_AREA";
@@ -3093,6 +3597,7 @@ declare const AdministrativeArea: z.ZodObject<z.objectUtil.extendShape<{
3093
3597
  type: "DISPLAY_ON_REVIEW";
3094
3598
  conditional: import(".").JSONSchema;
3095
3599
  })[] | undefined;
3600
+ secured?: boolean | undefined;
3096
3601
  placeholder?: {
3097
3602
  id: string;
3098
3603
  description: string;
@@ -3104,11 +3609,17 @@ declare const AdministrativeArea: z.ZodObject<z.objectUtil.extendShape<{
3104
3609
  defaultMessage: string;
3105
3610
  } | undefined;
3106
3611
  hideLabel?: boolean | undefined;
3612
+ uncorrectable?: boolean | undefined;
3107
3613
  defaultValue?: string | undefined;
3108
3614
  }>;
3109
3615
  export type AdministrativeArea = z.infer<typeof AdministrativeArea>;
3110
3616
  declare const Location: z.ZodObject<z.objectUtil.extendShape<{
3111
3617
  id: z.ZodString;
3618
+ label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
3619
+ id: string;
3620
+ description: string;
3621
+ defaultMessage: string;
3622
+ }>;
3112
3623
  parent: z.ZodOptional<z.ZodObject<{
3113
3624
  $$field: z.ZodString;
3114
3625
  }, "strip", z.ZodTypeAny, {
@@ -3116,8 +3627,9 @@ declare const Location: z.ZodObject<z.objectUtil.extendShape<{
3116
3627
  }, {
3117
3628
  $$field: string;
3118
3629
  }>>;
3119
- conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
3120
3630
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3631
+ conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
3632
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3121
3633
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
3122
3634
  id: string;
3123
3635
  description: string;
@@ -3141,20 +3653,23 @@ declare const Location: z.ZodObject<z.objectUtil.extendShape<{
3141
3653
  };
3142
3654
  validator: import(".").JSONSchema;
3143
3655
  }>, "many">>>;
3144
- label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
3145
- id: string;
3146
- description: string;
3147
- defaultMessage: string;
3148
- }>;
3149
3656
  helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
3150
3657
  id: string;
3151
3658
  description: string;
3152
3659
  defaultMessage: string;
3153
3660
  }>>;
3154
3661
  hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3662
+ uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3155
3663
  }, {
3156
3664
  type: z.ZodLiteral<"LOCATION">;
3157
3665
  defaultValue: z.ZodOptional<z.ZodString>;
3666
+ configuration: z.ZodOptional<z.ZodObject<{
3667
+ searchableResource: z.ZodOptional<z.ZodArray<z.ZodEnum<["locations", "facilities", "offices"]>, "many">>;
3668
+ }, "strip", z.ZodTypeAny, {
3669
+ searchableResource?: ("locations" | "facilities" | "offices")[] | undefined;
3670
+ }, {
3671
+ searchableResource?: ("locations" | "facilities" | "offices")[] | undefined;
3672
+ }>>;
3158
3673
  }>, "strip", z.ZodTypeAny, {
3159
3674
  type: "LOCATION";
3160
3675
  id: string;
@@ -3177,10 +3692,15 @@ declare const Location: z.ZodObject<z.objectUtil.extendShape<{
3177
3692
  type: "DISPLAY_ON_REVIEW";
3178
3693
  conditional: import(".").JSONSchema;
3179
3694
  })[] | undefined;
3695
+ secured?: boolean | undefined;
3180
3696
  placeholder?: TranslationConfig | undefined;
3181
3697
  helperText?: TranslationConfig | undefined;
3182
3698
  hideLabel?: boolean | undefined;
3699
+ uncorrectable?: boolean | undefined;
3183
3700
  defaultValue?: string | undefined;
3701
+ configuration?: {
3702
+ searchableResource?: ("locations" | "facilities" | "offices")[] | undefined;
3703
+ } | undefined;
3184
3704
  }, {
3185
3705
  type: "LOCATION";
3186
3706
  id: string;
@@ -3211,6 +3731,7 @@ declare const Location: z.ZodObject<z.objectUtil.extendShape<{
3211
3731
  type: "DISPLAY_ON_REVIEW";
3212
3732
  conditional: import(".").JSONSchema;
3213
3733
  })[] | undefined;
3734
+ secured?: boolean | undefined;
3214
3735
  placeholder?: {
3215
3736
  id: string;
3216
3737
  description: string;
@@ -3222,20 +3743,30 @@ declare const Location: z.ZodObject<z.objectUtil.extendShape<{
3222
3743
  defaultMessage: string;
3223
3744
  } | undefined;
3224
3745
  hideLabel?: boolean | undefined;
3746
+ uncorrectable?: boolean | undefined;
3225
3747
  defaultValue?: string | undefined;
3748
+ configuration?: {
3749
+ searchableResource?: ("locations" | "facilities" | "offices")[] | undefined;
3750
+ } | undefined;
3226
3751
  }>;
3227
3752
  export type Location = z.infer<typeof Location>;
3228
3753
  declare const FileUploadWithOptions: z.ZodObject<z.objectUtil.extendShape<{
3229
3754
  id: z.ZodString;
3230
- parent: z.ZodOptional<z.ZodObject<{
3231
- $$field: z.ZodString;
3755
+ label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
3756
+ id: string;
3757
+ description: string;
3758
+ defaultMessage: string;
3759
+ }>;
3760
+ parent: z.ZodOptional<z.ZodObject<{
3761
+ $$field: z.ZodString;
3232
3762
  }, "strip", z.ZodTypeAny, {
3233
3763
  $$field: string;
3234
3764
  }, {
3235
3765
  $$field: string;
3236
3766
  }>>;
3237
- conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
3238
3767
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3768
+ conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
3769
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3239
3770
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
3240
3771
  id: string;
3241
3772
  description: string;
@@ -3259,17 +3790,13 @@ declare const FileUploadWithOptions: z.ZodObject<z.objectUtil.extendShape<{
3259
3790
  };
3260
3791
  validator: import(".").JSONSchema;
3261
3792
  }>, "many">>>;
3262
- label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
3263
- id: string;
3264
- description: string;
3265
- defaultMessage: string;
3266
- }>;
3267
3793
  helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
3268
3794
  id: string;
3269
3795
  description: string;
3270
3796
  defaultMessage: string;
3271
3797
  }>>;
3272
3798
  hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3799
+ uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3273
3800
  }, {
3274
3801
  type: z.ZodLiteral<"FILE_WITH_OPTIONS">;
3275
3802
  options: z.ZodArray<z.ZodObject<{
@@ -3291,19 +3818,19 @@ declare const FileUploadWithOptions: z.ZodObject<z.objectUtil.extendShape<{
3291
3818
  };
3292
3819
  }>, "many">;
3293
3820
  defaultValue: z.ZodOptional<z.ZodArray<z.ZodObject<{
3294
- filename: z.ZodString;
3821
+ path: z.ZodEffects<z.ZodString, string, string>;
3295
3822
  originalFilename: z.ZodString;
3296
3823
  type: z.ZodString;
3297
3824
  option: z.ZodString;
3298
3825
  }, "strip", z.ZodTypeAny, {
3299
3826
  type: string;
3300
3827
  option: string;
3301
- filename: string;
3828
+ path: string;
3302
3829
  originalFilename: string;
3303
3830
  }, {
3304
3831
  type: string;
3305
3832
  option: string;
3306
- filename: string;
3833
+ path: string;
3307
3834
  originalFilename: string;
3308
3835
  }>, "many">>;
3309
3836
  configuration: z.ZodDefault<z.ZodObject<{
@@ -3346,13 +3873,15 @@ declare const FileUploadWithOptions: z.ZodObject<z.objectUtil.extendShape<{
3346
3873
  type: "DISPLAY_ON_REVIEW";
3347
3874
  conditional: import(".").JSONSchema;
3348
3875
  })[] | undefined;
3876
+ secured?: boolean | undefined;
3349
3877
  placeholder?: TranslationConfig | undefined;
3350
3878
  helperText?: TranslationConfig | undefined;
3351
3879
  hideLabel?: boolean | undefined;
3880
+ uncorrectable?: boolean | undefined;
3352
3881
  defaultValue?: {
3353
3882
  type: string;
3354
3883
  option: string;
3355
- filename: string;
3884
+ path: string;
3356
3885
  originalFilename: string;
3357
3886
  }[] | undefined;
3358
3887
  }, {
@@ -3393,6 +3922,7 @@ declare const FileUploadWithOptions: z.ZodObject<z.objectUtil.extendShape<{
3393
3922
  type: "DISPLAY_ON_REVIEW";
3394
3923
  conditional: import(".").JSONSchema;
3395
3924
  })[] | undefined;
3925
+ secured?: boolean | undefined;
3396
3926
  placeholder?: {
3397
3927
  id: string;
3398
3928
  description: string;
@@ -3404,10 +3934,11 @@ declare const FileUploadWithOptions: z.ZodObject<z.objectUtil.extendShape<{
3404
3934
  defaultMessage: string;
3405
3935
  } | undefined;
3406
3936
  hideLabel?: boolean | undefined;
3937
+ uncorrectable?: boolean | undefined;
3407
3938
  defaultValue?: {
3408
3939
  type: string;
3409
3940
  option: string;
3410
- filename: string;
3941
+ path: string;
3411
3942
  originalFilename: string;
3412
3943
  }[] | undefined;
3413
3944
  configuration?: {
@@ -3418,6 +3949,11 @@ declare const FileUploadWithOptions: z.ZodObject<z.objectUtil.extendShape<{
3418
3949
  export type FileUploadWithOptions = z.infer<typeof FileUploadWithOptions>;
3419
3950
  declare const Facility: z.ZodObject<z.objectUtil.extendShape<{
3420
3951
  id: z.ZodString;
3952
+ label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
3953
+ id: string;
3954
+ description: string;
3955
+ defaultMessage: string;
3956
+ }>;
3421
3957
  parent: z.ZodOptional<z.ZodObject<{
3422
3958
  $$field: z.ZodString;
3423
3959
  }, "strip", z.ZodTypeAny, {
@@ -3425,8 +3961,9 @@ declare const Facility: z.ZodObject<z.objectUtil.extendShape<{
3425
3961
  }, {
3426
3962
  $$field: string;
3427
3963
  }>>;
3428
- conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
3429
3964
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3965
+ conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
3966
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3430
3967
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
3431
3968
  id: string;
3432
3969
  description: string;
@@ -3450,17 +3987,13 @@ declare const Facility: z.ZodObject<z.objectUtil.extendShape<{
3450
3987
  };
3451
3988
  validator: import(".").JSONSchema;
3452
3989
  }>, "many">>>;
3453
- label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
3454
- id: string;
3455
- description: string;
3456
- defaultMessage: string;
3457
- }>;
3458
3990
  helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
3459
3991
  id: string;
3460
3992
  description: string;
3461
3993
  defaultMessage: string;
3462
3994
  }>>;
3463
3995
  hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3996
+ uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3464
3997
  }, {
3465
3998
  type: z.ZodLiteral<"FACILITY">;
3466
3999
  defaultValue: z.ZodOptional<z.ZodString>;
@@ -3486,9 +4019,11 @@ declare const Facility: z.ZodObject<z.objectUtil.extendShape<{
3486
4019
  type: "DISPLAY_ON_REVIEW";
3487
4020
  conditional: import(".").JSONSchema;
3488
4021
  })[] | undefined;
4022
+ secured?: boolean | undefined;
3489
4023
  placeholder?: TranslationConfig | undefined;
3490
4024
  helperText?: TranslationConfig | undefined;
3491
4025
  hideLabel?: boolean | undefined;
4026
+ uncorrectable?: boolean | undefined;
3492
4027
  defaultValue?: string | undefined;
3493
4028
  }, {
3494
4029
  type: "FACILITY";
@@ -3520,6 +4055,7 @@ declare const Facility: z.ZodObject<z.objectUtil.extendShape<{
3520
4055
  type: "DISPLAY_ON_REVIEW";
3521
4056
  conditional: import(".").JSONSchema;
3522
4057
  })[] | undefined;
4058
+ secured?: boolean | undefined;
3523
4059
  placeholder?: {
3524
4060
  id: string;
3525
4061
  description: string;
@@ -3531,11 +4067,17 @@ declare const Facility: z.ZodObject<z.objectUtil.extendShape<{
3531
4067
  defaultMessage: string;
3532
4068
  } | undefined;
3533
4069
  hideLabel?: boolean | undefined;
4070
+ uncorrectable?: boolean | undefined;
3534
4071
  defaultValue?: string | undefined;
3535
4072
  }>;
3536
4073
  export type Facility = z.infer<typeof Facility>;
3537
4074
  declare const Office: z.ZodObject<z.objectUtil.extendShape<{
3538
4075
  id: z.ZodString;
4076
+ label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
4077
+ id: string;
4078
+ description: string;
4079
+ defaultMessage: string;
4080
+ }>;
3539
4081
  parent: z.ZodOptional<z.ZodObject<{
3540
4082
  $$field: z.ZodString;
3541
4083
  }, "strip", z.ZodTypeAny, {
@@ -3543,8 +4085,9 @@ declare const Office: z.ZodObject<z.objectUtil.extendShape<{
3543
4085
  }, {
3544
4086
  $$field: string;
3545
4087
  }>>;
3546
- conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
3547
4088
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
4089
+ conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
4090
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3548
4091
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
3549
4092
  id: string;
3550
4093
  description: string;
@@ -3568,17 +4111,13 @@ declare const Office: z.ZodObject<z.objectUtil.extendShape<{
3568
4111
  };
3569
4112
  validator: import(".").JSONSchema;
3570
4113
  }>, "many">>>;
3571
- label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
3572
- id: string;
3573
- description: string;
3574
- defaultMessage: string;
3575
- }>;
3576
4114
  helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
3577
4115
  id: string;
3578
4116
  description: string;
3579
4117
  defaultMessage: string;
3580
4118
  }>>;
3581
4119
  hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
4120
+ uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3582
4121
  }, {
3583
4122
  type: z.ZodLiteral<"OFFICE">;
3584
4123
  defaultValue: z.ZodOptional<z.ZodString>;
@@ -3604,9 +4143,11 @@ declare const Office: z.ZodObject<z.objectUtil.extendShape<{
3604
4143
  type: "DISPLAY_ON_REVIEW";
3605
4144
  conditional: import(".").JSONSchema;
3606
4145
  })[] | undefined;
4146
+ secured?: boolean | undefined;
3607
4147
  placeholder?: TranslationConfig | undefined;
3608
4148
  helperText?: TranslationConfig | undefined;
3609
4149
  hideLabel?: boolean | undefined;
4150
+ uncorrectable?: boolean | undefined;
3610
4151
  defaultValue?: string | undefined;
3611
4152
  }, {
3612
4153
  type: "OFFICE";
@@ -3638,6 +4179,7 @@ declare const Office: z.ZodObject<z.objectUtil.extendShape<{
3638
4179
  type: "DISPLAY_ON_REVIEW";
3639
4180
  conditional: import(".").JSONSchema;
3640
4181
  })[] | undefined;
4182
+ secured?: boolean | undefined;
3641
4183
  placeholder?: {
3642
4184
  id: string;
3643
4185
  description: string;
@@ -3649,11 +4191,17 @@ declare const Office: z.ZodObject<z.objectUtil.extendShape<{
3649
4191
  defaultMessage: string;
3650
4192
  } | undefined;
3651
4193
  hideLabel?: boolean | undefined;
4194
+ uncorrectable?: boolean | undefined;
3652
4195
  defaultValue?: string | undefined;
3653
4196
  }>;
3654
4197
  export type Office = z.infer<typeof Office>;
3655
4198
  declare const Address: z.ZodObject<z.objectUtil.extendShape<{
3656
4199
  id: z.ZodString;
4200
+ label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
4201
+ id: string;
4202
+ description: string;
4203
+ defaultMessage: string;
4204
+ }>;
3657
4205
  parent: z.ZodOptional<z.ZodObject<{
3658
4206
  $$field: z.ZodString;
3659
4207
  }, "strip", z.ZodTypeAny, {
@@ -3661,8 +4209,9 @@ declare const Address: z.ZodObject<z.objectUtil.extendShape<{
3661
4209
  }, {
3662
4210
  $$field: string;
3663
4211
  }>>;
3664
- conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
3665
4212
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
4213
+ conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
4214
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3666
4215
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
3667
4216
  id: string;
3668
4217
  description: string;
@@ -3686,17 +4235,13 @@ declare const Address: z.ZodObject<z.objectUtil.extendShape<{
3686
4235
  };
3687
4236
  validator: import(".").JSONSchema;
3688
4237
  }>, "many">>>;
3689
- label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
3690
- id: string;
3691
- description: string;
3692
- defaultMessage: string;
3693
- }>;
3694
4238
  helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
3695
4239
  id: string;
3696
4240
  description: string;
3697
4241
  defaultMessage: string;
3698
4242
  }>>;
3699
4243
  hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
4244
+ uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3700
4245
  }, {
3701
4246
  type: z.ZodLiteral<"ADDRESS">;
3702
4247
  defaultValue: z.ZodOptional<z.ZodUnion<[z.ZodDiscriminatedUnion<"urbanOrRural", [z.ZodObject<z.objectUtil.extendShape<{
@@ -3786,6 +4331,13 @@ declare const Address: z.ZodObject<z.objectUtil.extendShape<{
3786
4331
  addressLine3?: string | undefined;
3787
4332
  postcodeOrZip?: string | undefined;
3788
4333
  }>]>>;
4334
+ configuration: z.ZodOptional<z.ZodObject<{
4335
+ searchMode: z.ZodOptional<z.ZodBoolean>;
4336
+ }, "strip", z.ZodTypeAny, {
4337
+ searchMode?: boolean | undefined;
4338
+ }, {
4339
+ searchMode?: boolean | undefined;
4340
+ }>>;
3789
4341
  }>, "strip", z.ZodTypeAny, {
3790
4342
  type: "ADDRESS";
3791
4343
  id: string;
@@ -3808,9 +4360,11 @@ declare const Address: z.ZodObject<z.objectUtil.extendShape<{
3808
4360
  type: "DISPLAY_ON_REVIEW";
3809
4361
  conditional: import(".").JSONSchema;
3810
4362
  })[] | undefined;
4363
+ secured?: boolean | undefined;
3811
4364
  placeholder?: TranslationConfig | undefined;
3812
4365
  helperText?: TranslationConfig | undefined;
3813
4366
  hideLabel?: boolean | undefined;
4367
+ uncorrectable?: boolean | undefined;
3814
4368
  defaultValue?: {
3815
4369
  country: string;
3816
4370
  district: string;
@@ -3840,6 +4394,9 @@ declare const Address: z.ZodObject<z.objectUtil.extendShape<{
3840
4394
  addressLine3?: string | undefined;
3841
4395
  postcodeOrZip?: string | undefined;
3842
4396
  } | undefined;
4397
+ configuration?: {
4398
+ searchMode?: boolean | undefined;
4399
+ } | undefined;
3843
4400
  }, {
3844
4401
  type: "ADDRESS";
3845
4402
  id: string;
@@ -3870,6 +4427,7 @@ declare const Address: z.ZodObject<z.objectUtil.extendShape<{
3870
4427
  type: "DISPLAY_ON_REVIEW";
3871
4428
  conditional: import(".").JSONSchema;
3872
4429
  })[] | undefined;
4430
+ secured?: boolean | undefined;
3873
4431
  placeholder?: {
3874
4432
  id: string;
3875
4433
  description: string;
@@ -3881,6 +4439,7 @@ declare const Address: z.ZodObject<z.objectUtil.extendShape<{
3881
4439
  defaultMessage: string;
3882
4440
  } | undefined;
3883
4441
  hideLabel?: boolean | undefined;
4442
+ uncorrectable?: boolean | undefined;
3884
4443
  defaultValue?: {
3885
4444
  country: string;
3886
4445
  district: string;
@@ -3910,6 +4469,9 @@ declare const Address: z.ZodObject<z.objectUtil.extendShape<{
3910
4469
  addressLine3?: string | undefined;
3911
4470
  postcodeOrZip?: string | undefined;
3912
4471
  } | undefined;
4472
+ configuration?: {
4473
+ searchMode?: boolean | undefined;
4474
+ } | undefined;
3913
4475
  }>;
3914
4476
  export declare const DataEntry: z.ZodUnion<[z.ZodObject<{
3915
4477
  label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
@@ -3946,6 +4508,11 @@ export declare const DataEntry: z.ZodUnion<[z.ZodObject<{
3946
4508
  export type DataEntry = z.infer<typeof DataEntry>;
3947
4509
  declare const DataField: z.ZodObject<z.objectUtil.extendShape<{
3948
4510
  id: z.ZodString;
4511
+ label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
4512
+ id: string;
4513
+ description: string;
4514
+ defaultMessage: string;
4515
+ }>;
3949
4516
  parent: z.ZodOptional<z.ZodObject<{
3950
4517
  $$field: z.ZodString;
3951
4518
  }, "strip", z.ZodTypeAny, {
@@ -3953,8 +4520,9 @@ declare const DataField: z.ZodObject<z.objectUtil.extendShape<{
3953
4520
  }, {
3954
4521
  $$field: string;
3955
4522
  }>>;
3956
- conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
3957
4523
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
4524
+ conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
4525
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3958
4526
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
3959
4527
  id: string;
3960
4528
  description: string;
@@ -3978,17 +4546,13 @@ declare const DataField: z.ZodObject<z.objectUtil.extendShape<{
3978
4546
  };
3979
4547
  validator: import(".").JSONSchema;
3980
4548
  }>, "many">>>;
3981
- label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
3982
- id: string;
3983
- description: string;
3984
- defaultMessage: string;
3985
- }>;
3986
4549
  helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
3987
4550
  id: string;
3988
4551
  description: string;
3989
4552
  defaultMessage: string;
3990
4553
  }>>;
3991
4554
  hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
4555
+ uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3992
4556
  }, {
3993
4557
  type: z.ZodLiteral<"DATA">;
3994
4558
  configuration: z.ZodObject<{
@@ -4089,9 +4653,11 @@ declare const DataField: z.ZodObject<z.objectUtil.extendShape<{
4089
4653
  type: "DISPLAY_ON_REVIEW";
4090
4654
  conditional: import(".").JSONSchema;
4091
4655
  })[] | undefined;
4656
+ secured?: boolean | undefined;
4092
4657
  placeholder?: TranslationConfig | undefined;
4093
4658
  helperText?: TranslationConfig | undefined;
4094
4659
  hideLabel?: boolean | undefined;
4660
+ uncorrectable?: boolean | undefined;
4095
4661
  }, {
4096
4662
  type: "DATA";
4097
4663
  id: string;
@@ -4143,6 +4709,7 @@ declare const DataField: z.ZodObject<z.objectUtil.extendShape<{
4143
4709
  type: "DISPLAY_ON_REVIEW";
4144
4710
  conditional: import(".").JSONSchema;
4145
4711
  })[] | undefined;
4712
+ secured?: boolean | undefined;
4146
4713
  placeholder?: {
4147
4714
  id: string;
4148
4715
  description: string;
@@ -4154,19 +4721,17 @@ declare const DataField: z.ZodObject<z.objectUtil.extendShape<{
4154
4721
  defaultMessage: string;
4155
4722
  } | undefined;
4156
4723
  hideLabel?: boolean | undefined;
4724
+ uncorrectable?: boolean | undefined;
4157
4725
  }>;
4158
4726
  export type DataField = z.infer<typeof DataField>;
4159
- /** @knipignore */
4160
- export type AllFields = typeof Address | typeof TextField | typeof NumberField | typeof TextAreaField | typeof DateField | typeof DateRangeField | typeof Paragraph | typeof RadioGroup | typeof BulletList | typeof PageHeader | typeof Select | typeof NameField | typeof PhoneField | typeof IdField | typeof Checkbox | typeof File | typeof Country | typeof AdministrativeArea | typeof Divider | typeof Location | typeof Facility | typeof Office | typeof SignatureField | typeof EmailField | typeof FileUploadWithOptions | typeof DataField;
4161
- /** @knipignore */
4162
- export type Inferred = z.infer<typeof Address> | z.infer<typeof TextField> | z.infer<typeof NumberField> | z.infer<typeof TextAreaField> | z.infer<typeof DateField> | z.infer<typeof DateRangeField> | z.infer<typeof Paragraph> | z.infer<typeof RadioGroup> | z.infer<typeof BulletList> | z.infer<typeof PageHeader> | z.infer<typeof Select> | z.infer<typeof NameField> | z.infer<typeof PhoneField> | z.infer<typeof IdField> | z.infer<typeof Checkbox> | z.infer<typeof File> | z.infer<typeof FileUploadWithOptions> | z.infer<typeof Country> | z.infer<typeof AdministrativeArea> | z.infer<typeof Divider> | z.infer<typeof Location> | z.infer<typeof Facility> | z.infer<typeof Office> | z.infer<typeof SignatureField> | z.infer<typeof EmailField> | z.infer<typeof DataField>;
4163
- /** @knipignore */
4164
- /**
4165
- * This is the type that should be used for the input of the FieldConfig. Useful when config uses zod defaults.
4166
- */
4167
- export type InferredInput = z.input<typeof Address> | z.input<typeof TextField> | z.input<typeof NumberField> | z.input<typeof TextAreaField> | z.input<typeof DateField> | z.input<typeof DateRangeField> | z.input<typeof Paragraph> | z.input<typeof RadioGroup> | z.input<typeof BulletList> | z.input<typeof PageHeader> | z.input<typeof Select> | z.input<typeof NameField> | z.input<typeof PhoneField> | z.input<typeof IdField> | z.input<typeof Checkbox> | z.input<typeof File> | z.input<typeof FileUploadWithOptions> | z.input<typeof Country> | z.input<typeof AdministrativeArea> | z.input<typeof Divider> | z.input<typeof Location> | z.input<typeof Facility> | z.input<typeof Office> | z.input<typeof SignatureField> | z.input<typeof EmailField> | z.input<typeof DataField>;
4727
+ export type FieldConfig = z.infer<typeof Address> | z.infer<typeof TextField> | z.infer<typeof NumberField> | z.infer<typeof TextAreaField> | z.infer<typeof DateField> | z.infer<typeof TimeField> | z.infer<typeof DateRangeField> | z.infer<typeof SelectDateRangeField> | z.infer<typeof Paragraph> | z.infer<typeof RadioGroup> | z.infer<typeof BulletList> | z.infer<typeof PageHeader> | z.infer<typeof Select> | z.infer<typeof NameField> | z.infer<typeof PhoneField> | z.infer<typeof IdField> | z.infer<typeof Checkbox> | z.infer<typeof File> | z.infer<typeof FileUploadWithOptions> | z.infer<typeof Country> | z.infer<typeof AdministrativeArea> | z.infer<typeof Divider> | z.infer<typeof Location> | z.infer<typeof Facility> | z.infer<typeof Office> | z.infer<typeof SignatureField> | z.infer<typeof EmailField> | z.infer<typeof DataField>;
4168
4728
  export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z.objectUtil.extendShape<{
4169
4729
  id: z.ZodString;
4730
+ label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
4731
+ id: string;
4732
+ description: string;
4733
+ defaultMessage: string;
4734
+ }>;
4170
4735
  parent: z.ZodOptional<z.ZodObject<{
4171
4736
  $$field: z.ZodString;
4172
4737
  }, "strip", z.ZodTypeAny, {
@@ -4174,8 +4739,9 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
4174
4739
  }, {
4175
4740
  $$field: string;
4176
4741
  }>>;
4177
- conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
4178
4742
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
4743
+ conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
4744
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
4179
4745
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
4180
4746
  id: string;
4181
4747
  description: string;
@@ -4199,17 +4765,13 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
4199
4765
  };
4200
4766
  validator: import(".").JSONSchema;
4201
4767
  }>, "many">>>;
4202
- label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
4203
- id: string;
4204
- description: string;
4205
- defaultMessage: string;
4206
- }>;
4207
4768
  helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
4208
4769
  id: string;
4209
4770
  description: string;
4210
4771
  defaultMessage: string;
4211
4772
  }>>;
4212
4773
  hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
4774
+ uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
4213
4775
  }, {
4214
4776
  type: z.ZodLiteral<"ADDRESS">;
4215
4777
  defaultValue: z.ZodOptional<z.ZodUnion<[z.ZodDiscriminatedUnion<"urbanOrRural", [z.ZodObject<z.objectUtil.extendShape<{
@@ -4299,6 +4861,13 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
4299
4861
  addressLine3?: string | undefined;
4300
4862
  postcodeOrZip?: string | undefined;
4301
4863
  }>]>>;
4864
+ configuration: z.ZodOptional<z.ZodObject<{
4865
+ searchMode: z.ZodOptional<z.ZodBoolean>;
4866
+ }, "strip", z.ZodTypeAny, {
4867
+ searchMode?: boolean | undefined;
4868
+ }, {
4869
+ searchMode?: boolean | undefined;
4870
+ }>>;
4302
4871
  }>, "strip", z.ZodTypeAny, {
4303
4872
  type: "ADDRESS";
4304
4873
  id: string;
@@ -4321,9 +4890,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
4321
4890
  type: "DISPLAY_ON_REVIEW";
4322
4891
  conditional: import(".").JSONSchema;
4323
4892
  })[] | undefined;
4893
+ secured?: boolean | undefined;
4324
4894
  placeholder?: TranslationConfig | undefined;
4325
4895
  helperText?: TranslationConfig | undefined;
4326
4896
  hideLabel?: boolean | undefined;
4897
+ uncorrectable?: boolean | undefined;
4327
4898
  defaultValue?: {
4328
4899
  country: string;
4329
4900
  district: string;
@@ -4353,6 +4924,9 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
4353
4924
  addressLine3?: string | undefined;
4354
4925
  postcodeOrZip?: string | undefined;
4355
4926
  } | undefined;
4927
+ configuration?: {
4928
+ searchMode?: boolean | undefined;
4929
+ } | undefined;
4356
4930
  }, {
4357
4931
  type: "ADDRESS";
4358
4932
  id: string;
@@ -4383,6 +4957,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
4383
4957
  type: "DISPLAY_ON_REVIEW";
4384
4958
  conditional: import(".").JSONSchema;
4385
4959
  })[] | undefined;
4960
+ secured?: boolean | undefined;
4386
4961
  placeholder?: {
4387
4962
  id: string;
4388
4963
  description: string;
@@ -4394,6 +4969,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
4394
4969
  defaultMessage: string;
4395
4970
  } | undefined;
4396
4971
  hideLabel?: boolean | undefined;
4972
+ uncorrectable?: boolean | undefined;
4397
4973
  defaultValue?: {
4398
4974
  country: string;
4399
4975
  district: string;
@@ -4423,8 +4999,16 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
4423
4999
  addressLine3?: string | undefined;
4424
5000
  postcodeOrZip?: string | undefined;
4425
5001
  } | undefined;
5002
+ configuration?: {
5003
+ searchMode?: boolean | undefined;
5004
+ } | undefined;
4426
5005
  }>, z.ZodObject<z.objectUtil.extendShape<{
4427
5006
  id: z.ZodString;
5007
+ label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
5008
+ id: string;
5009
+ description: string;
5010
+ defaultMessage: string;
5011
+ }>;
4428
5012
  parent: z.ZodOptional<z.ZodObject<{
4429
5013
  $$field: z.ZodString;
4430
5014
  }, "strip", z.ZodTypeAny, {
@@ -4432,8 +5016,9 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
4432
5016
  }, {
4433
5017
  $$field: string;
4434
5018
  }>>;
4435
- conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
4436
5019
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
5020
+ conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
5021
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
4437
5022
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
4438
5023
  id: string;
4439
5024
  description: string;
@@ -4457,17 +5042,13 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
4457
5042
  };
4458
5043
  validator: import(".").JSONSchema;
4459
5044
  }>, "many">>>;
4460
- label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
4461
- id: string;
4462
- description: string;
4463
- defaultMessage: string;
4464
- }>;
4465
5045
  helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
4466
5046
  id: string;
4467
5047
  description: string;
4468
5048
  defaultMessage: string;
4469
5049
  }>>;
4470
5050
  hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
5051
+ uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
4471
5052
  }, {
4472
5053
  type: z.ZodLiteral<"TEXT">;
4473
5054
  defaultValue: z.ZodOptional<z.ZodString>;
@@ -4525,9 +5106,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
4525
5106
  type: "DISPLAY_ON_REVIEW";
4526
5107
  conditional: import(".").JSONSchema;
4527
5108
  })[] | undefined;
5109
+ secured?: boolean | undefined;
4528
5110
  placeholder?: TranslationConfig | undefined;
4529
5111
  helperText?: TranslationConfig | undefined;
4530
5112
  hideLabel?: boolean | undefined;
5113
+ uncorrectable?: boolean | undefined;
4531
5114
  defaultValue?: string | undefined;
4532
5115
  configuration?: {
4533
5116
  type?: "text" | "password" | undefined;
@@ -4565,6 +5148,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
4565
5148
  type: "DISPLAY_ON_REVIEW";
4566
5149
  conditional: import(".").JSONSchema;
4567
5150
  })[] | undefined;
5151
+ secured?: boolean | undefined;
4568
5152
  placeholder?: {
4569
5153
  id: string;
4570
5154
  description: string;
@@ -4576,6 +5160,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
4576
5160
  defaultMessage: string;
4577
5161
  } | undefined;
4578
5162
  hideLabel?: boolean | undefined;
5163
+ uncorrectable?: boolean | undefined;
4579
5164
  defaultValue?: string | undefined;
4580
5165
  configuration?: {
4581
5166
  type?: "text" | "password" | undefined;
@@ -4593,6 +5178,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
4593
5178
  } | undefined;
4594
5179
  }>, z.ZodObject<z.objectUtil.extendShape<{
4595
5180
  id: z.ZodString;
5181
+ label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
5182
+ id: string;
5183
+ description: string;
5184
+ defaultMessage: string;
5185
+ }>;
4596
5186
  parent: z.ZodOptional<z.ZodObject<{
4597
5187
  $$field: z.ZodString;
4598
5188
  }, "strip", z.ZodTypeAny, {
@@ -4600,8 +5190,9 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
4600
5190
  }, {
4601
5191
  $$field: string;
4602
5192
  }>>;
4603
- conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
4604
5193
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
5194
+ conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
5195
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
4605
5196
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
4606
5197
  id: string;
4607
5198
  description: string;
@@ -4625,17 +5216,13 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
4625
5216
  };
4626
5217
  validator: import(".").JSONSchema;
4627
5218
  }>, "many">>>;
4628
- label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
4629
- id: string;
4630
- description: string;
4631
- defaultMessage: string;
4632
- }>;
4633
5219
  helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
4634
5220
  id: string;
4635
5221
  description: string;
4636
5222
  defaultMessage: string;
4637
5223
  }>>;
4638
5224
  hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
5225
+ uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
4639
5226
  }, {
4640
5227
  type: z.ZodLiteral<"NUMBER">;
4641
5228
  defaultValue: z.ZodOptional<z.ZodNumber>;
@@ -4693,9 +5280,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
4693
5280
  type: "DISPLAY_ON_REVIEW";
4694
5281
  conditional: import(".").JSONSchema;
4695
5282
  })[] | undefined;
5283
+ secured?: boolean | undefined;
4696
5284
  placeholder?: TranslationConfig | undefined;
4697
5285
  helperText?: TranslationConfig | undefined;
4698
5286
  hideLabel?: boolean | undefined;
5287
+ uncorrectable?: boolean | undefined;
4699
5288
  defaultValue?: number | undefined;
4700
5289
  configuration?: {
4701
5290
  prefix?: TranslationConfig | undefined;
@@ -4733,6 +5322,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
4733
5322
  type: "DISPLAY_ON_REVIEW";
4734
5323
  conditional: import(".").JSONSchema;
4735
5324
  })[] | undefined;
5325
+ secured?: boolean | undefined;
4736
5326
  placeholder?: {
4737
5327
  id: string;
4738
5328
  description: string;
@@ -4744,6 +5334,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
4744
5334
  defaultMessage: string;
4745
5335
  } | undefined;
4746
5336
  hideLabel?: boolean | undefined;
5337
+ uncorrectable?: boolean | undefined;
4747
5338
  defaultValue?: number | undefined;
4748
5339
  configuration?: {
4749
5340
  prefix?: {
@@ -4761,6 +5352,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
4761
5352
  } | undefined;
4762
5353
  }>, z.ZodObject<z.objectUtil.extendShape<{
4763
5354
  id: z.ZodString;
5355
+ label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
5356
+ id: string;
5357
+ description: string;
5358
+ defaultMessage: string;
5359
+ }>;
4764
5360
  parent: z.ZodOptional<z.ZodObject<{
4765
5361
  $$field: z.ZodString;
4766
5362
  }, "strip", z.ZodTypeAny, {
@@ -4768,8 +5364,9 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
4768
5364
  }, {
4769
5365
  $$field: string;
4770
5366
  }>>;
4771
- conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
4772
5367
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
5368
+ conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
5369
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
4773
5370
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
4774
5371
  id: string;
4775
5372
  description: string;
@@ -4793,17 +5390,13 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
4793
5390
  };
4794
5391
  validator: import(".").JSONSchema;
4795
5392
  }>, "many">>>;
4796
- label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
4797
- id: string;
4798
- description: string;
4799
- defaultMessage: string;
4800
- }>;
4801
5393
  helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
4802
5394
  id: string;
4803
5395
  description: string;
4804
5396
  defaultMessage: string;
4805
5397
  }>>;
4806
5398
  hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
5399
+ uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
4807
5400
  }, {
4808
5401
  type: z.ZodLiteral<"TEXTAREA">;
4809
5402
  defaultValue: z.ZodOptional<z.ZodString>;
@@ -4864,9 +5457,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
4864
5457
  type: "DISPLAY_ON_REVIEW";
4865
5458
  conditional: import(".").JSONSchema;
4866
5459
  })[] | undefined;
5460
+ secured?: boolean | undefined;
4867
5461
  placeholder?: TranslationConfig | undefined;
4868
5462
  helperText?: TranslationConfig | undefined;
4869
5463
  hideLabel?: boolean | undefined;
5464
+ uncorrectable?: boolean | undefined;
4870
5465
  defaultValue?: string | undefined;
4871
5466
  configuration?: {
4872
5467
  maxLength?: number | undefined;
@@ -4905,6 +5500,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
4905
5500
  type: "DISPLAY_ON_REVIEW";
4906
5501
  conditional: import(".").JSONSchema;
4907
5502
  })[] | undefined;
5503
+ secured?: boolean | undefined;
4908
5504
  placeholder?: {
4909
5505
  id: string;
4910
5506
  description: string;
@@ -4916,6 +5512,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
4916
5512
  defaultMessage: string;
4917
5513
  } | undefined;
4918
5514
  hideLabel?: boolean | undefined;
5515
+ uncorrectable?: boolean | undefined;
4919
5516
  defaultValue?: string | undefined;
4920
5517
  configuration?: {
4921
5518
  maxLength?: number | undefined;
@@ -4934,6 +5531,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
4934
5531
  } | undefined;
4935
5532
  }>, z.ZodObject<z.objectUtil.extendShape<{
4936
5533
  id: z.ZodString;
5534
+ label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
5535
+ id: string;
5536
+ description: string;
5537
+ defaultMessage: string;
5538
+ }>;
4937
5539
  parent: z.ZodOptional<z.ZodObject<{
4938
5540
  $$field: z.ZodString;
4939
5541
  }, "strip", z.ZodTypeAny, {
@@ -4941,8 +5543,9 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
4941
5543
  }, {
4942
5544
  $$field: string;
4943
5545
  }>>;
4944
- conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
4945
5546
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
5547
+ conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
5548
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
4946
5549
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
4947
5550
  id: string;
4948
5551
  description: string;
@@ -4966,17 +5569,13 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
4966
5569
  };
4967
5570
  validator: import(".").JSONSchema;
4968
5571
  }>, "many">>>;
4969
- label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
4970
- id: string;
4971
- description: string;
4972
- defaultMessage: string;
4973
- }>;
4974
5572
  helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
4975
5573
  id: string;
4976
5574
  description: string;
4977
5575
  defaultMessage: string;
4978
5576
  }>>;
4979
5577
  hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
5578
+ uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
4980
5579
  }, {
4981
5580
  type: z.ZodLiteral<"DATE">;
4982
5581
  defaultValue: z.ZodOptional<z.ZodString>;
@@ -5017,9 +5616,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
5017
5616
  type: "DISPLAY_ON_REVIEW";
5018
5617
  conditional: import(".").JSONSchema;
5019
5618
  })[] | undefined;
5619
+ secured?: boolean | undefined;
5020
5620
  placeholder?: TranslationConfig | undefined;
5021
5621
  helperText?: TranslationConfig | undefined;
5022
5622
  hideLabel?: boolean | undefined;
5623
+ uncorrectable?: boolean | undefined;
5023
5624
  defaultValue?: string | undefined;
5024
5625
  configuration?: {
5025
5626
  notice?: TranslationConfig | undefined;
@@ -5054,6 +5655,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
5054
5655
  type: "DISPLAY_ON_REVIEW";
5055
5656
  conditional: import(".").JSONSchema;
5056
5657
  })[] | undefined;
5658
+ secured?: boolean | undefined;
5057
5659
  placeholder?: {
5058
5660
  id: string;
5059
5661
  description: string;
@@ -5065,6 +5667,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
5065
5667
  defaultMessage: string;
5066
5668
  } | undefined;
5067
5669
  hideLabel?: boolean | undefined;
5670
+ uncorrectable?: boolean | undefined;
5068
5671
  defaultValue?: string | undefined;
5069
5672
  configuration?: {
5070
5673
  notice?: {
@@ -5075,6 +5678,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
5075
5678
  } | undefined;
5076
5679
  }>, z.ZodObject<z.objectUtil.extendShape<{
5077
5680
  id: z.ZodString;
5681
+ label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
5682
+ id: string;
5683
+ description: string;
5684
+ defaultMessage: string;
5685
+ }>;
5078
5686
  parent: z.ZodOptional<z.ZodObject<{
5079
5687
  $$field: z.ZodString;
5080
5688
  }, "strip", z.ZodTypeAny, {
@@ -5082,8 +5690,9 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
5082
5690
  }, {
5083
5691
  $$field: string;
5084
5692
  }>>;
5085
- conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
5086
5693
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
5694
+ conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
5695
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
5087
5696
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
5088
5697
  id: string;
5089
5698
  description: string;
@@ -5107,20 +5716,172 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
5107
5716
  };
5108
5717
  validator: import(".").JSONSchema;
5109
5718
  }>, "many">>>;
5719
+ helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
5720
+ id: string;
5721
+ description: string;
5722
+ defaultMessage: string;
5723
+ }>>;
5724
+ hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
5725
+ uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
5726
+ }, {
5727
+ type: z.ZodLiteral<"TIME">;
5728
+ defaultValue: z.ZodOptional<z.ZodString>;
5729
+ configuration: z.ZodOptional<z.ZodObject<{
5730
+ notice: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
5731
+ id: string;
5732
+ description: string;
5733
+ defaultMessage: string;
5734
+ }>>;
5735
+ }, "strip", z.ZodTypeAny, {
5736
+ notice?: TranslationConfig | undefined;
5737
+ }, {
5738
+ notice?: {
5739
+ id: string;
5740
+ description: string;
5741
+ defaultMessage: string;
5742
+ } | undefined;
5743
+ }>>;
5744
+ }>, "strip", z.ZodTypeAny, {
5745
+ type: "TIME";
5746
+ id: string;
5747
+ label: TranslationConfig;
5748
+ parent?: {
5749
+ $$field: string;
5750
+ } | undefined;
5751
+ validation?: {
5752
+ message: TranslationConfig;
5753
+ validator: import(".").JSONSchema;
5754
+ }[] | undefined;
5755
+ required?: boolean | undefined;
5756
+ conditionals?: ({
5757
+ type: "SHOW";
5758
+ conditional: import(".").JSONSchema;
5759
+ } | {
5760
+ type: "ENABLE";
5761
+ conditional: import(".").JSONSchema;
5762
+ } | {
5763
+ type: "DISPLAY_ON_REVIEW";
5764
+ conditional: import(".").JSONSchema;
5765
+ })[] | undefined;
5766
+ secured?: boolean | undefined;
5767
+ placeholder?: TranslationConfig | undefined;
5768
+ helperText?: TranslationConfig | undefined;
5769
+ hideLabel?: boolean | undefined;
5770
+ uncorrectable?: boolean | undefined;
5771
+ defaultValue?: string | undefined;
5772
+ configuration?: {
5773
+ notice?: TranslationConfig | undefined;
5774
+ } | undefined;
5775
+ }, {
5776
+ type: "TIME";
5777
+ id: string;
5778
+ label: {
5779
+ id: string;
5780
+ description: string;
5781
+ defaultMessage: string;
5782
+ };
5783
+ parent?: {
5784
+ $$field: string;
5785
+ } | undefined;
5786
+ validation?: {
5787
+ message: {
5788
+ id: string;
5789
+ description: string;
5790
+ defaultMessage: string;
5791
+ };
5792
+ validator: import(".").JSONSchema;
5793
+ }[] | undefined;
5794
+ required?: boolean | undefined;
5795
+ conditionals?: ({
5796
+ type: "SHOW";
5797
+ conditional: import(".").JSONSchema;
5798
+ } | {
5799
+ type: "ENABLE";
5800
+ conditional: import(".").JSONSchema;
5801
+ } | {
5802
+ type: "DISPLAY_ON_REVIEW";
5803
+ conditional: import(".").JSONSchema;
5804
+ })[] | undefined;
5805
+ secured?: boolean | undefined;
5806
+ placeholder?: {
5807
+ id: string;
5808
+ description: string;
5809
+ defaultMessage: string;
5810
+ } | undefined;
5811
+ helperText?: {
5812
+ id: string;
5813
+ description: string;
5814
+ defaultMessage: string;
5815
+ } | undefined;
5816
+ hideLabel?: boolean | undefined;
5817
+ uncorrectable?: boolean | undefined;
5818
+ defaultValue?: string | undefined;
5819
+ configuration?: {
5820
+ notice?: {
5821
+ id: string;
5822
+ description: string;
5823
+ defaultMessage: string;
5824
+ } | undefined;
5825
+ } | undefined;
5826
+ }>, z.ZodObject<z.objectUtil.extendShape<{
5827
+ id: z.ZodString;
5110
5828
  label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
5111
5829
  id: string;
5112
5830
  description: string;
5113
5831
  defaultMessage: string;
5114
5832
  }>;
5833
+ parent: z.ZodOptional<z.ZodObject<{
5834
+ $$field: z.ZodString;
5835
+ }, "strip", z.ZodTypeAny, {
5836
+ $$field: string;
5837
+ }, {
5838
+ $$field: string;
5839
+ }>>;
5840
+ required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
5841
+ conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
5842
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
5843
+ placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
5844
+ id: string;
5845
+ description: string;
5846
+ defaultMessage: string;
5847
+ }>>;
5848
+ validation: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodObject<{
5849
+ validator: z.ZodType<import(".").JSONSchema, z.ZodTypeDef, import(".").JSONSchema>;
5850
+ message: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
5851
+ id: string;
5852
+ description: string;
5853
+ defaultMessage: string;
5854
+ }>;
5855
+ }, "strip", z.ZodTypeAny, {
5856
+ message: TranslationConfig;
5857
+ validator: import(".").JSONSchema;
5858
+ }, {
5859
+ message: {
5860
+ id: string;
5861
+ description: string;
5862
+ defaultMessage: string;
5863
+ };
5864
+ validator: import(".").JSONSchema;
5865
+ }>, "many">>>;
5115
5866
  helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
5116
5867
  id: string;
5117
5868
  description: string;
5118
5869
  defaultMessage: string;
5119
5870
  }>>;
5120
5871
  hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
5872
+ uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
5121
5873
  }, {
5122
5874
  type: z.ZodLiteral<"DATE_RANGE">;
5123
- defaultValue: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>>;
5875
+ defaultValue: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
5876
+ start: z.ZodString;
5877
+ end: z.ZodString;
5878
+ }, "strip", z.ZodTypeAny, {
5879
+ start: string;
5880
+ end: string;
5881
+ }, {
5882
+ start: string;
5883
+ end: string;
5884
+ }>, z.ZodString]>>;
5124
5885
  configuration: z.ZodOptional<z.ZodObject<{
5125
5886
  notice: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
5126
5887
  id: string;
@@ -5158,10 +5919,15 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
5158
5919
  type: "DISPLAY_ON_REVIEW";
5159
5920
  conditional: import(".").JSONSchema;
5160
5921
  })[] | undefined;
5922
+ secured?: boolean | undefined;
5161
5923
  placeholder?: TranslationConfig | undefined;
5162
5924
  helperText?: TranslationConfig | undefined;
5163
5925
  hideLabel?: boolean | undefined;
5164
- defaultValue?: string | [string, string] | undefined;
5926
+ uncorrectable?: boolean | undefined;
5927
+ defaultValue?: string | {
5928
+ start: string;
5929
+ end: string;
5930
+ } | undefined;
5165
5931
  configuration?: {
5166
5932
  notice?: TranslationConfig | undefined;
5167
5933
  } | undefined;
@@ -5195,6 +5961,169 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
5195
5961
  type: "DISPLAY_ON_REVIEW";
5196
5962
  conditional: import(".").JSONSchema;
5197
5963
  })[] | undefined;
5964
+ secured?: boolean | undefined;
5965
+ placeholder?: {
5966
+ id: string;
5967
+ description: string;
5968
+ defaultMessage: string;
5969
+ } | undefined;
5970
+ helperText?: {
5971
+ id: string;
5972
+ description: string;
5973
+ defaultMessage: string;
5974
+ } | undefined;
5975
+ hideLabel?: boolean | undefined;
5976
+ uncorrectable?: boolean | undefined;
5977
+ defaultValue?: string | {
5978
+ start: string;
5979
+ end: string;
5980
+ } | undefined;
5981
+ configuration?: {
5982
+ notice?: {
5983
+ id: string;
5984
+ description: string;
5985
+ defaultMessage: string;
5986
+ } | undefined;
5987
+ } | undefined;
5988
+ }>, z.ZodObject<z.objectUtil.extendShape<{
5989
+ id: z.ZodString;
5990
+ label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
5991
+ id: string;
5992
+ description: string;
5993
+ defaultMessage: string;
5994
+ }>;
5995
+ parent: z.ZodOptional<z.ZodObject<{
5996
+ $$field: z.ZodString;
5997
+ }, "strip", z.ZodTypeAny, {
5998
+ $$field: string;
5999
+ }, {
6000
+ $$field: string;
6001
+ }>>;
6002
+ required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
6003
+ conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
6004
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
6005
+ placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
6006
+ id: string;
6007
+ description: string;
6008
+ defaultMessage: string;
6009
+ }>>;
6010
+ validation: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodObject<{
6011
+ validator: z.ZodType<import(".").JSONSchema, z.ZodTypeDef, import(".").JSONSchema>;
6012
+ message: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
6013
+ id: string;
6014
+ description: string;
6015
+ defaultMessage: string;
6016
+ }>;
6017
+ }, "strip", z.ZodTypeAny, {
6018
+ message: TranslationConfig;
6019
+ validator: import(".").JSONSchema;
6020
+ }, {
6021
+ message: {
6022
+ id: string;
6023
+ description: string;
6024
+ defaultMessage: string;
6025
+ };
6026
+ validator: import(".").JSONSchema;
6027
+ }>, "many">>>;
6028
+ helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
6029
+ id: string;
6030
+ description: string;
6031
+ defaultMessage: string;
6032
+ }>>;
6033
+ hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
6034
+ uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
6035
+ }, {
6036
+ type: z.ZodLiteral<"SELECT_DATE_RANGE">;
6037
+ defaultValue: z.ZodOptional<z.ZodEnum<["last7Days", "last30Days", "last90Days", "last365Days"]>>;
6038
+ options: z.ZodArray<z.ZodObject<{
6039
+ value: z.ZodEnum<["last7Days", "last30Days", "last90Days", "last365Days"]>;
6040
+ label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
6041
+ id: string;
6042
+ description: string;
6043
+ defaultMessage: string;
6044
+ }>;
6045
+ }, "strip", z.ZodTypeAny, {
6046
+ value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
6047
+ label: TranslationConfig;
6048
+ }, {
6049
+ value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
6050
+ label: {
6051
+ id: string;
6052
+ description: string;
6053
+ defaultMessage: string;
6054
+ };
6055
+ }>, "many">;
6056
+ }>, "strip", z.ZodTypeAny, {
6057
+ type: "SELECT_DATE_RANGE";
6058
+ id: string;
6059
+ options: {
6060
+ value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
6061
+ label: TranslationConfig;
6062
+ }[];
6063
+ label: TranslationConfig;
6064
+ parent?: {
6065
+ $$field: string;
6066
+ } | undefined;
6067
+ validation?: {
6068
+ message: TranslationConfig;
6069
+ validator: import(".").JSONSchema;
6070
+ }[] | undefined;
6071
+ required?: boolean | undefined;
6072
+ conditionals?: ({
6073
+ type: "SHOW";
6074
+ conditional: import(".").JSONSchema;
6075
+ } | {
6076
+ type: "ENABLE";
6077
+ conditional: import(".").JSONSchema;
6078
+ } | {
6079
+ type: "DISPLAY_ON_REVIEW";
6080
+ conditional: import(".").JSONSchema;
6081
+ })[] | undefined;
6082
+ secured?: boolean | undefined;
6083
+ placeholder?: TranslationConfig | undefined;
6084
+ helperText?: TranslationConfig | undefined;
6085
+ hideLabel?: boolean | undefined;
6086
+ uncorrectable?: boolean | undefined;
6087
+ defaultValue?: "last7Days" | "last30Days" | "last90Days" | "last365Days" | undefined;
6088
+ }, {
6089
+ type: "SELECT_DATE_RANGE";
6090
+ id: string;
6091
+ options: {
6092
+ value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
6093
+ label: {
6094
+ id: string;
6095
+ description: string;
6096
+ defaultMessage: string;
6097
+ };
6098
+ }[];
6099
+ label: {
6100
+ id: string;
6101
+ description: string;
6102
+ defaultMessage: string;
6103
+ };
6104
+ parent?: {
6105
+ $$field: string;
6106
+ } | undefined;
6107
+ validation?: {
6108
+ message: {
6109
+ id: string;
6110
+ description: string;
6111
+ defaultMessage: string;
6112
+ };
6113
+ validator: import(".").JSONSchema;
6114
+ }[] | undefined;
6115
+ required?: boolean | undefined;
6116
+ conditionals?: ({
6117
+ type: "SHOW";
6118
+ conditional: import(".").JSONSchema;
6119
+ } | {
6120
+ type: "ENABLE";
6121
+ conditional: import(".").JSONSchema;
6122
+ } | {
6123
+ type: "DISPLAY_ON_REVIEW";
6124
+ conditional: import(".").JSONSchema;
6125
+ })[] | undefined;
6126
+ secured?: boolean | undefined;
5198
6127
  placeholder?: {
5199
6128
  id: string;
5200
6129
  description: string;
@@ -5206,16 +6135,15 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
5206
6135
  defaultMessage: string;
5207
6136
  } | undefined;
5208
6137
  hideLabel?: boolean | undefined;
5209
- defaultValue?: string | [string, string] | undefined;
5210
- configuration?: {
5211
- notice?: {
5212
- id: string;
5213
- description: string;
5214
- defaultMessage: string;
5215
- } | undefined;
5216
- } | undefined;
6138
+ uncorrectable?: boolean | undefined;
6139
+ defaultValue?: "last7Days" | "last30Days" | "last90Days" | "last365Days" | undefined;
5217
6140
  }>, z.ZodObject<z.objectUtil.extendShape<{
5218
6141
  id: z.ZodString;
6142
+ label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
6143
+ id: string;
6144
+ description: string;
6145
+ defaultMessage: string;
6146
+ }>;
5219
6147
  parent: z.ZodOptional<z.ZodObject<{
5220
6148
  $$field: z.ZodString;
5221
6149
  }, "strip", z.ZodTypeAny, {
@@ -5223,8 +6151,9 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
5223
6151
  }, {
5224
6152
  $$field: string;
5225
6153
  }>>;
5226
- conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
5227
6154
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
6155
+ conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
6156
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
5228
6157
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
5229
6158
  id: string;
5230
6159
  description: string;
@@ -5248,35 +6177,36 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
5248
6177
  };
5249
6178
  validator: import(".").JSONSchema;
5250
6179
  }>, "many">>>;
5251
- label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
5252
- id: string;
5253
- description: string;
5254
- defaultMessage: string;
5255
- }>;
5256
6180
  helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
5257
6181
  id: string;
5258
6182
  description: string;
5259
6183
  defaultMessage: string;
5260
6184
  }>>;
5261
6185
  hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
6186
+ uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
5262
6187
  }, {
5263
6188
  type: z.ZodLiteral<"PARAGRAPH">;
5264
6189
  defaultValue: z.ZodOptional<z.ZodString>;
5265
6190
  configuration: z.ZodDefault<z.ZodObject<{
5266
6191
  styles: z.ZodOptional<z.ZodObject<{
5267
6192
  fontVariant: z.ZodOptional<z.ZodEnum<["reg12", "reg14", "reg16", "reg18", "h4", "h3", "h2", "h1"]>>;
6193
+ hint: z.ZodOptional<z.ZodBoolean>;
5268
6194
  }, "strip", z.ZodTypeAny, {
5269
6195
  fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
6196
+ hint?: boolean | undefined;
5270
6197
  }, {
5271
6198
  fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
6199
+ hint?: boolean | undefined;
5272
6200
  }>>;
5273
6201
  }, "strip", z.ZodTypeAny, {
5274
6202
  styles?: {
5275
6203
  fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
6204
+ hint?: boolean | undefined;
5276
6205
  } | undefined;
5277
6206
  }, {
5278
6207
  styles?: {
5279
6208
  fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
6209
+ hint?: boolean | undefined;
5280
6210
  } | undefined;
5281
6211
  }>>;
5282
6212
  }>, "strip", z.ZodTypeAny, {
@@ -5286,6 +6216,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
5286
6216
  configuration: {
5287
6217
  styles?: {
5288
6218
  fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
6219
+ hint?: boolean | undefined;
5289
6220
  } | undefined;
5290
6221
  };
5291
6222
  parent?: {
@@ -5306,9 +6237,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
5306
6237
  type: "DISPLAY_ON_REVIEW";
5307
6238
  conditional: import(".").JSONSchema;
5308
6239
  })[] | undefined;
6240
+ secured?: boolean | undefined;
5309
6241
  placeholder?: TranslationConfig | undefined;
5310
6242
  helperText?: TranslationConfig | undefined;
5311
6243
  hideLabel?: boolean | undefined;
6244
+ uncorrectable?: boolean | undefined;
5312
6245
  defaultValue?: string | undefined;
5313
6246
  }, {
5314
6247
  type: "PARAGRAPH";
@@ -5340,6 +6273,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
5340
6273
  type: "DISPLAY_ON_REVIEW";
5341
6274
  conditional: import(".").JSONSchema;
5342
6275
  })[] | undefined;
6276
+ secured?: boolean | undefined;
5343
6277
  placeholder?: {
5344
6278
  id: string;
5345
6279
  description: string;
@@ -5351,14 +6285,21 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
5351
6285
  defaultMessage: string;
5352
6286
  } | undefined;
5353
6287
  hideLabel?: boolean | undefined;
6288
+ uncorrectable?: boolean | undefined;
5354
6289
  defaultValue?: string | undefined;
5355
6290
  configuration?: {
5356
6291
  styles?: {
5357
6292
  fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
6293
+ hint?: boolean | undefined;
5358
6294
  } | undefined;
5359
6295
  } | undefined;
5360
6296
  }>, z.ZodObject<z.objectUtil.extendShape<{
5361
6297
  id: z.ZodString;
6298
+ label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
6299
+ id: string;
6300
+ description: string;
6301
+ defaultMessage: string;
6302
+ }>;
5362
6303
  parent: z.ZodOptional<z.ZodObject<{
5363
6304
  $$field: z.ZodString;
5364
6305
  }, "strip", z.ZodTypeAny, {
@@ -5366,8 +6307,9 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
5366
6307
  }, {
5367
6308
  $$field: string;
5368
6309
  }>>;
5369
- conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
5370
6310
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
6311
+ conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
6312
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
5371
6313
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
5372
6314
  id: string;
5373
6315
  description: string;
@@ -5391,17 +6333,13 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
5391
6333
  };
5392
6334
  validator: import(".").JSONSchema;
5393
6335
  }>, "many">>>;
5394
- label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
5395
- id: string;
5396
- description: string;
5397
- defaultMessage: string;
5398
- }>;
5399
6336
  helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
5400
6337
  id: string;
5401
6338
  description: string;
5402
6339
  defaultMessage: string;
5403
6340
  }>>;
5404
6341
  hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
6342
+ uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
5405
6343
  }, {
5406
6344
  type: z.ZodLiteral<"RADIO_GROUP">;
5407
6345
  defaultValue: z.ZodOptional<z.ZodString>;
@@ -5466,9 +6404,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
5466
6404
  type: "DISPLAY_ON_REVIEW";
5467
6405
  conditional: import(".").JSONSchema;
5468
6406
  })[] | undefined;
6407
+ secured?: boolean | undefined;
5469
6408
  placeholder?: TranslationConfig | undefined;
5470
6409
  helperText?: TranslationConfig | undefined;
5471
6410
  hideLabel?: boolean | undefined;
6411
+ uncorrectable?: boolean | undefined;
5472
6412
  defaultValue?: string | undefined;
5473
6413
  configuration?: {
5474
6414
  styles?: {
@@ -5513,6 +6453,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
5513
6453
  type: "DISPLAY_ON_REVIEW";
5514
6454
  conditional: import(".").JSONSchema;
5515
6455
  })[] | undefined;
6456
+ secured?: boolean | undefined;
5516
6457
  placeholder?: {
5517
6458
  id: string;
5518
6459
  description: string;
@@ -5524,6 +6465,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
5524
6465
  defaultMessage: string;
5525
6466
  } | undefined;
5526
6467
  hideLabel?: boolean | undefined;
6468
+ uncorrectable?: boolean | undefined;
5527
6469
  defaultValue?: string | undefined;
5528
6470
  configuration?: {
5529
6471
  styles?: {
@@ -5532,6 +6474,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
5532
6474
  } | undefined;
5533
6475
  }>, z.ZodObject<z.objectUtil.extendShape<{
5534
6476
  id: z.ZodString;
6477
+ label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
6478
+ id: string;
6479
+ description: string;
6480
+ defaultMessage: string;
6481
+ }>;
5535
6482
  parent: z.ZodOptional<z.ZodObject<{
5536
6483
  $$field: z.ZodString;
5537
6484
  }, "strip", z.ZodTypeAny, {
@@ -5539,8 +6486,9 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
5539
6486
  }, {
5540
6487
  $$field: string;
5541
6488
  }>>;
5542
- conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
5543
6489
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
6490
+ conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
6491
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
5544
6492
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
5545
6493
  id: string;
5546
6494
  description: string;
@@ -5564,17 +6512,13 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
5564
6512
  };
5565
6513
  validator: import(".").JSONSchema;
5566
6514
  }>, "many">>>;
5567
- label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
5568
- id: string;
5569
- description: string;
5570
- defaultMessage: string;
5571
- }>;
5572
6515
  helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
5573
6516
  id: string;
5574
6517
  description: string;
5575
6518
  defaultMessage: string;
5576
6519
  }>>;
5577
6520
  hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
6521
+ uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
5578
6522
  }, {
5579
6523
  type: z.ZodLiteral<"BULLET_LIST">;
5580
6524
  defaultValue: z.ZodOptional<z.ZodString>;
@@ -5628,9 +6572,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
5628
6572
  type: "DISPLAY_ON_REVIEW";
5629
6573
  conditional: import(".").JSONSchema;
5630
6574
  })[] | undefined;
6575
+ secured?: boolean | undefined;
5631
6576
  placeholder?: TranslationConfig | undefined;
5632
6577
  helperText?: TranslationConfig | undefined;
5633
6578
  hideLabel?: boolean | undefined;
6579
+ uncorrectable?: boolean | undefined;
5634
6580
  defaultValue?: string | undefined;
5635
6581
  }, {
5636
6582
  type: "BULLET_LIST";
@@ -5667,6 +6613,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
5667
6613
  type: "DISPLAY_ON_REVIEW";
5668
6614
  conditional: import(".").JSONSchema;
5669
6615
  })[] | undefined;
6616
+ secured?: boolean | undefined;
5670
6617
  placeholder?: {
5671
6618
  id: string;
5672
6619
  description: string;
@@ -5678,6 +6625,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
5678
6625
  defaultMessage: string;
5679
6626
  } | undefined;
5680
6627
  hideLabel?: boolean | undefined;
6628
+ uncorrectable?: boolean | undefined;
5681
6629
  defaultValue?: string | undefined;
5682
6630
  configuration?: {
5683
6631
  styles?: {
@@ -5686,6 +6634,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
5686
6634
  } | undefined;
5687
6635
  }>, z.ZodObject<z.objectUtil.extendShape<{
5688
6636
  id: z.ZodString;
6637
+ label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
6638
+ id: string;
6639
+ description: string;
6640
+ defaultMessage: string;
6641
+ }>;
5689
6642
  parent: z.ZodOptional<z.ZodObject<{
5690
6643
  $$field: z.ZodString;
5691
6644
  }, "strip", z.ZodTypeAny, {
@@ -5693,8 +6646,9 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
5693
6646
  }, {
5694
6647
  $$field: string;
5695
6648
  }>>;
5696
- conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
5697
6649
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
6650
+ conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
6651
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
5698
6652
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
5699
6653
  id: string;
5700
6654
  description: string;
@@ -5718,17 +6672,13 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
5718
6672
  };
5719
6673
  validator: import(".").JSONSchema;
5720
6674
  }>, "many">>>;
5721
- label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
5722
- id: string;
5723
- description: string;
5724
- defaultMessage: string;
5725
- }>;
5726
6675
  helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
5727
6676
  id: string;
5728
6677
  description: string;
5729
6678
  defaultMessage: string;
5730
6679
  }>>;
5731
6680
  hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
6681
+ uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
5732
6682
  }, {
5733
6683
  type: z.ZodLiteral<"PAGE_HEADER">;
5734
6684
  defaultValue: z.ZodOptional<z.ZodString>;
@@ -5754,9 +6704,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
5754
6704
  type: "DISPLAY_ON_REVIEW";
5755
6705
  conditional: import(".").JSONSchema;
5756
6706
  })[] | undefined;
6707
+ secured?: boolean | undefined;
5757
6708
  placeholder?: TranslationConfig | undefined;
5758
6709
  helperText?: TranslationConfig | undefined;
5759
6710
  hideLabel?: boolean | undefined;
6711
+ uncorrectable?: boolean | undefined;
5760
6712
  defaultValue?: string | undefined;
5761
6713
  }, {
5762
6714
  type: "PAGE_HEADER";
@@ -5788,6 +6740,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
5788
6740
  type: "DISPLAY_ON_REVIEW";
5789
6741
  conditional: import(".").JSONSchema;
5790
6742
  })[] | undefined;
6743
+ secured?: boolean | undefined;
5791
6744
  placeholder?: {
5792
6745
  id: string;
5793
6746
  description: string;
@@ -5799,9 +6752,15 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
5799
6752
  defaultMessage: string;
5800
6753
  } | undefined;
5801
6754
  hideLabel?: boolean | undefined;
6755
+ uncorrectable?: boolean | undefined;
5802
6756
  defaultValue?: string | undefined;
5803
6757
  }>, z.ZodObject<z.objectUtil.extendShape<{
5804
6758
  id: z.ZodString;
6759
+ label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
6760
+ id: string;
6761
+ description: string;
6762
+ defaultMessage: string;
6763
+ }>;
5805
6764
  parent: z.ZodOptional<z.ZodObject<{
5806
6765
  $$field: z.ZodString;
5807
6766
  }, "strip", z.ZodTypeAny, {
@@ -5809,8 +6768,9 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
5809
6768
  }, {
5810
6769
  $$field: string;
5811
6770
  }>>;
5812
- conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
5813
6771
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
6772
+ conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
6773
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
5814
6774
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
5815
6775
  id: string;
5816
6776
  description: string;
@@ -5834,17 +6794,13 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
5834
6794
  };
5835
6795
  validator: import(".").JSONSchema;
5836
6796
  }>, "many">>>;
5837
- label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
5838
- id: string;
5839
- description: string;
5840
- defaultMessage: string;
5841
- }>;
5842
6797
  helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
5843
6798
  id: string;
5844
6799
  description: string;
5845
6800
  defaultMessage: string;
5846
6801
  }>>;
5847
6802
  hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
6803
+ uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
5848
6804
  }, {
5849
6805
  type: z.ZodLiteral<"SELECT">;
5850
6806
  defaultValue: z.ZodOptional<z.ZodString>;
@@ -5892,9 +6848,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
5892
6848
  type: "DISPLAY_ON_REVIEW";
5893
6849
  conditional: import(".").JSONSchema;
5894
6850
  })[] | undefined;
6851
+ secured?: boolean | undefined;
5895
6852
  placeholder?: TranslationConfig | undefined;
5896
6853
  helperText?: TranslationConfig | undefined;
5897
6854
  hideLabel?: boolean | undefined;
6855
+ uncorrectable?: boolean | undefined;
5898
6856
  defaultValue?: string | undefined;
5899
6857
  }, {
5900
6858
  type: "SELECT";
@@ -5934,6 +6892,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
5934
6892
  type: "DISPLAY_ON_REVIEW";
5935
6893
  conditional: import(".").JSONSchema;
5936
6894
  })[] | undefined;
6895
+ secured?: boolean | undefined;
5937
6896
  placeholder?: {
5938
6897
  id: string;
5939
6898
  description: string;
@@ -5945,9 +6904,15 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
5945
6904
  defaultMessage: string;
5946
6905
  } | undefined;
5947
6906
  hideLabel?: boolean | undefined;
6907
+ uncorrectable?: boolean | undefined;
5948
6908
  defaultValue?: string | undefined;
5949
6909
  }>, z.ZodObject<z.objectUtil.extendShape<{
5950
6910
  id: z.ZodString;
6911
+ label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
6912
+ id: string;
6913
+ description: string;
6914
+ defaultMessage: string;
6915
+ }>;
5951
6916
  parent: z.ZodOptional<z.ZodObject<{
5952
6917
  $$field: z.ZodString;
5953
6918
  }, "strip", z.ZodTypeAny, {
@@ -5955,8 +6920,9 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
5955
6920
  }, {
5956
6921
  $$field: string;
5957
6922
  }>>;
5958
- conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
5959
6923
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
6924
+ conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
6925
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
5960
6926
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
5961
6927
  id: string;
5962
6928
  description: string;
@@ -5980,17 +6946,13 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
5980
6946
  };
5981
6947
  validator: import(".").JSONSchema;
5982
6948
  }>, "many">>>;
5983
- label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
5984
- id: string;
5985
- description: string;
5986
- defaultMessage: string;
5987
- }>;
5988
6949
  helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
5989
6950
  id: string;
5990
6951
  description: string;
5991
6952
  defaultMessage: string;
5992
6953
  }>>;
5993
6954
  hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
6955
+ uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
5994
6956
  }, {
5995
6957
  type: z.ZodLiteral<"NAME">;
5996
6958
  defaultValue: z.ZodOptional<z.ZodObject<{
@@ -6015,10 +6977,14 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6015
6977
  description: string;
6016
6978
  defaultMessage: string;
6017
6979
  }>>;
6980
+ includeMiddlename: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
6981
+ searchMode: z.ZodOptional<z.ZodBoolean>;
6018
6982
  }, "strip", z.ZodTypeAny, {
6019
6983
  maxLength?: number | undefined;
6020
6984
  prefix?: TranslationConfig | undefined;
6021
6985
  postfix?: TranslationConfig | undefined;
6986
+ includeMiddlename?: boolean | undefined;
6987
+ searchMode?: boolean | undefined;
6022
6988
  }, {
6023
6989
  maxLength?: number | undefined;
6024
6990
  prefix?: {
@@ -6031,6 +6997,8 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6031
6997
  description: string;
6032
6998
  defaultMessage: string;
6033
6999
  } | undefined;
7000
+ includeMiddlename?: boolean | undefined;
7001
+ searchMode?: boolean | undefined;
6034
7002
  }>>;
6035
7003
  }>, "strip", z.ZodTypeAny, {
6036
7004
  type: "NAME";
@@ -6054,9 +7022,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6054
7022
  type: "DISPLAY_ON_REVIEW";
6055
7023
  conditional: import(".").JSONSchema;
6056
7024
  })[] | undefined;
7025
+ secured?: boolean | undefined;
6057
7026
  placeholder?: TranslationConfig | undefined;
6058
7027
  helperText?: TranslationConfig | undefined;
6059
7028
  hideLabel?: boolean | undefined;
7029
+ uncorrectable?: boolean | undefined;
6060
7030
  defaultValue?: {
6061
7031
  firstname: string;
6062
7032
  surname: string;
@@ -6065,6 +7035,8 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6065
7035
  maxLength?: number | undefined;
6066
7036
  prefix?: TranslationConfig | undefined;
6067
7037
  postfix?: TranslationConfig | undefined;
7038
+ includeMiddlename?: boolean | undefined;
7039
+ searchMode?: boolean | undefined;
6068
7040
  } | undefined;
6069
7041
  }, {
6070
7042
  type: "NAME";
@@ -6096,6 +7068,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6096
7068
  type: "DISPLAY_ON_REVIEW";
6097
7069
  conditional: import(".").JSONSchema;
6098
7070
  })[] | undefined;
7071
+ secured?: boolean | undefined;
6099
7072
  placeholder?: {
6100
7073
  id: string;
6101
7074
  description: string;
@@ -6107,6 +7080,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6107
7080
  defaultMessage: string;
6108
7081
  } | undefined;
6109
7082
  hideLabel?: boolean | undefined;
7083
+ uncorrectable?: boolean | undefined;
6110
7084
  defaultValue?: {
6111
7085
  firstname: string;
6112
7086
  surname: string;
@@ -6123,9 +7097,16 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6123
7097
  description: string;
6124
7098
  defaultMessage: string;
6125
7099
  } | undefined;
7100
+ includeMiddlename?: boolean | undefined;
7101
+ searchMode?: boolean | undefined;
6126
7102
  } | undefined;
6127
7103
  }>, z.ZodObject<z.objectUtil.extendShape<{
6128
7104
  id: z.ZodString;
7105
+ label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
7106
+ id: string;
7107
+ description: string;
7108
+ defaultMessage: string;
7109
+ }>;
6129
7110
  parent: z.ZodOptional<z.ZodObject<{
6130
7111
  $$field: z.ZodString;
6131
7112
  }, "strip", z.ZodTypeAny, {
@@ -6133,8 +7114,9 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6133
7114
  }, {
6134
7115
  $$field: string;
6135
7116
  }>>;
6136
- conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
6137
7117
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7118
+ conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
7119
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
6138
7120
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
6139
7121
  id: string;
6140
7122
  description: string;
@@ -6158,17 +7140,13 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6158
7140
  };
6159
7141
  validator: import(".").JSONSchema;
6160
7142
  }>, "many">>>;
6161
- label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
6162
- id: string;
6163
- description: string;
6164
- defaultMessage: string;
6165
- }>;
6166
7143
  helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
6167
7144
  id: string;
6168
7145
  description: string;
6169
7146
  defaultMessage: string;
6170
7147
  }>>;
6171
7148
  hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7149
+ uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
6172
7150
  }, {
6173
7151
  defaultValue: z.ZodOptional<z.ZodString>;
6174
7152
  type: z.ZodLiteral<"PHONE">;
@@ -6194,9 +7172,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6194
7172
  type: "DISPLAY_ON_REVIEW";
6195
7173
  conditional: import(".").JSONSchema;
6196
7174
  })[] | undefined;
7175
+ secured?: boolean | undefined;
6197
7176
  placeholder?: TranslationConfig | undefined;
6198
7177
  helperText?: TranslationConfig | undefined;
6199
7178
  hideLabel?: boolean | undefined;
7179
+ uncorrectable?: boolean | undefined;
6200
7180
  defaultValue?: string | undefined;
6201
7181
  }, {
6202
7182
  type: "PHONE";
@@ -6228,6 +7208,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6228
7208
  type: "DISPLAY_ON_REVIEW";
6229
7209
  conditional: import(".").JSONSchema;
6230
7210
  })[] | undefined;
7211
+ secured?: boolean | undefined;
6231
7212
  placeholder?: {
6232
7213
  id: string;
6233
7214
  description: string;
@@ -6239,9 +7220,15 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6239
7220
  defaultMessage: string;
6240
7221
  } | undefined;
6241
7222
  hideLabel?: boolean | undefined;
7223
+ uncorrectable?: boolean | undefined;
6242
7224
  defaultValue?: string | undefined;
6243
7225
  }>, z.ZodObject<z.objectUtil.extendShape<{
6244
7226
  id: z.ZodString;
7227
+ label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
7228
+ id: string;
7229
+ description: string;
7230
+ defaultMessage: string;
7231
+ }>;
6245
7232
  parent: z.ZodOptional<z.ZodObject<{
6246
7233
  $$field: z.ZodString;
6247
7234
  }, "strip", z.ZodTypeAny, {
@@ -6249,8 +7236,9 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6249
7236
  }, {
6250
7237
  $$field: string;
6251
7238
  }>>;
6252
- conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
6253
7239
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7240
+ conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
7241
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
6254
7242
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
6255
7243
  id: string;
6256
7244
  description: string;
@@ -6274,17 +7262,13 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6274
7262
  };
6275
7263
  validator: import(".").JSONSchema;
6276
7264
  }>, "many">>>;
6277
- label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
6278
- id: string;
6279
- description: string;
6280
- defaultMessage: string;
6281
- }>;
6282
7265
  helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
6283
7266
  id: string;
6284
7267
  description: string;
6285
7268
  defaultMessage: string;
6286
7269
  }>>;
6287
7270
  hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7271
+ uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
6288
7272
  }, {
6289
7273
  defaultValue: z.ZodOptional<z.ZodString>;
6290
7274
  type: z.ZodLiteral<"ID">;
@@ -6310,9 +7294,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6310
7294
  type: "DISPLAY_ON_REVIEW";
6311
7295
  conditional: import(".").JSONSchema;
6312
7296
  })[] | undefined;
7297
+ secured?: boolean | undefined;
6313
7298
  placeholder?: TranslationConfig | undefined;
6314
7299
  helperText?: TranslationConfig | undefined;
6315
7300
  hideLabel?: boolean | undefined;
7301
+ uncorrectable?: boolean | undefined;
6316
7302
  defaultValue?: string | undefined;
6317
7303
  }, {
6318
7304
  type: "ID";
@@ -6344,6 +7330,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6344
7330
  type: "DISPLAY_ON_REVIEW";
6345
7331
  conditional: import(".").JSONSchema;
6346
7332
  })[] | undefined;
7333
+ secured?: boolean | undefined;
6347
7334
  placeholder?: {
6348
7335
  id: string;
6349
7336
  description: string;
@@ -6355,9 +7342,15 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6355
7342
  defaultMessage: string;
6356
7343
  } | undefined;
6357
7344
  hideLabel?: boolean | undefined;
7345
+ uncorrectable?: boolean | undefined;
6358
7346
  defaultValue?: string | undefined;
6359
7347
  }>, z.ZodObject<z.objectUtil.extendShape<{
6360
7348
  id: z.ZodString;
7349
+ label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
7350
+ id: string;
7351
+ description: string;
7352
+ defaultMessage: string;
7353
+ }>;
6361
7354
  parent: z.ZodOptional<z.ZodObject<{
6362
7355
  $$field: z.ZodString;
6363
7356
  }, "strip", z.ZodTypeAny, {
@@ -6365,8 +7358,9 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6365
7358
  }, {
6366
7359
  $$field: string;
6367
7360
  }>>;
6368
- conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
6369
7361
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7362
+ conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
7363
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
6370
7364
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
6371
7365
  id: string;
6372
7366
  description: string;
@@ -6390,17 +7384,13 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6390
7384
  };
6391
7385
  validator: import(".").JSONSchema;
6392
7386
  }>, "many">>>;
6393
- label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
6394
- id: string;
6395
- description: string;
6396
- defaultMessage: string;
6397
- }>;
6398
7387
  helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
6399
7388
  id: string;
6400
7389
  description: string;
6401
7390
  defaultMessage: string;
6402
7391
  }>>;
6403
7392
  hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7393
+ uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
6404
7394
  }, {
6405
7395
  type: z.ZodLiteral<"CHECKBOX">;
6406
7396
  defaultValue: z.ZodOptional<z.ZodBoolean>;
@@ -6426,9 +7416,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6426
7416
  type: "DISPLAY_ON_REVIEW";
6427
7417
  conditional: import(".").JSONSchema;
6428
7418
  })[] | undefined;
7419
+ secured?: boolean | undefined;
6429
7420
  placeholder?: TranslationConfig | undefined;
6430
7421
  helperText?: TranslationConfig | undefined;
6431
7422
  hideLabel?: boolean | undefined;
7423
+ uncorrectable?: boolean | undefined;
6432
7424
  defaultValue?: boolean | undefined;
6433
7425
  }, {
6434
7426
  type: "CHECKBOX";
@@ -6460,6 +7452,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6460
7452
  type: "DISPLAY_ON_REVIEW";
6461
7453
  conditional: import(".").JSONSchema;
6462
7454
  })[] | undefined;
7455
+ secured?: boolean | undefined;
6463
7456
  placeholder?: {
6464
7457
  id: string;
6465
7458
  description: string;
@@ -6471,9 +7464,15 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6471
7464
  defaultMessage: string;
6472
7465
  } | undefined;
6473
7466
  hideLabel?: boolean | undefined;
7467
+ uncorrectable?: boolean | undefined;
6474
7468
  defaultValue?: boolean | undefined;
6475
7469
  }>, z.ZodObject<z.objectUtil.extendShape<{
6476
7470
  id: z.ZodString;
7471
+ label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
7472
+ id: string;
7473
+ description: string;
7474
+ defaultMessage: string;
7475
+ }>;
6477
7476
  parent: z.ZodOptional<z.ZodObject<{
6478
7477
  $$field: z.ZodString;
6479
7478
  }, "strip", z.ZodTypeAny, {
@@ -6481,8 +7480,9 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6481
7480
  }, {
6482
7481
  $$field: string;
6483
7482
  }>>;
6484
- conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
6485
7483
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7484
+ conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
7485
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
6486
7486
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
6487
7487
  id: string;
6488
7488
  description: string;
@@ -6506,30 +7506,26 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6506
7506
  };
6507
7507
  validator: import(".").JSONSchema;
6508
7508
  }>, "many">>>;
6509
- label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
6510
- id: string;
6511
- description: string;
6512
- defaultMessage: string;
6513
- }>;
6514
7509
  helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
6515
7510
  id: string;
6516
7511
  description: string;
6517
7512
  defaultMessage: string;
6518
7513
  }>>;
6519
7514
  hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7515
+ uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
6520
7516
  }, {
6521
7517
  type: z.ZodLiteral<"FILE">;
6522
7518
  defaultValue: z.ZodOptional<z.ZodObject<{
6523
- filename: z.ZodString;
7519
+ path: z.ZodEffects<z.ZodString, string, string>;
6524
7520
  originalFilename: z.ZodString;
6525
7521
  type: z.ZodString;
6526
7522
  }, "strip", z.ZodTypeAny, {
6527
7523
  type: string;
6528
- filename: string;
7524
+ path: string;
6529
7525
  originalFilename: string;
6530
7526
  }, {
6531
7527
  type: string;
6532
- filename: string;
7528
+ path: string;
6533
7529
  originalFilename: string;
6534
7530
  }>>;
6535
7531
  configuration: z.ZodDefault<z.ZodObject<{
@@ -6596,12 +7592,14 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6596
7592
  type: "DISPLAY_ON_REVIEW";
6597
7593
  conditional: import(".").JSONSchema;
6598
7594
  })[] | undefined;
7595
+ secured?: boolean | undefined;
6599
7596
  placeholder?: TranslationConfig | undefined;
6600
7597
  helperText?: TranslationConfig | undefined;
6601
7598
  hideLabel?: boolean | undefined;
7599
+ uncorrectable?: boolean | undefined;
6602
7600
  defaultValue?: {
6603
7601
  type: string;
6604
- filename: string;
7602
+ path: string;
6605
7603
  originalFilename: string;
6606
7604
  } | undefined;
6607
7605
  }, {
@@ -6634,6 +7632,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6634
7632
  type: "DISPLAY_ON_REVIEW";
6635
7633
  conditional: import(".").JSONSchema;
6636
7634
  })[] | undefined;
7635
+ secured?: boolean | undefined;
6637
7636
  placeholder?: {
6638
7637
  id: string;
6639
7638
  description: string;
@@ -6645,9 +7644,10 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6645
7644
  defaultMessage: string;
6646
7645
  } | undefined;
6647
7646
  hideLabel?: boolean | undefined;
7647
+ uncorrectable?: boolean | undefined;
6648
7648
  defaultValue?: {
6649
7649
  type: string;
6650
- filename: string;
7650
+ path: string;
6651
7651
  originalFilename: string;
6652
7652
  } | undefined;
6653
7653
  configuration?: {
@@ -6664,6 +7664,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6664
7664
  } | undefined;
6665
7665
  }>, z.ZodObject<z.objectUtil.extendShape<{
6666
7666
  id: z.ZodString;
7667
+ label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
7668
+ id: string;
7669
+ description: string;
7670
+ defaultMessage: string;
7671
+ }>;
6667
7672
  parent: z.ZodOptional<z.ZodObject<{
6668
7673
  $$field: z.ZodString;
6669
7674
  }, "strip", z.ZodTypeAny, {
@@ -6671,8 +7676,9 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6671
7676
  }, {
6672
7677
  $$field: string;
6673
7678
  }>>;
6674
- conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
6675
7679
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7680
+ conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
7681
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
6676
7682
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
6677
7683
  id: string;
6678
7684
  description: string;
@@ -6696,17 +7702,13 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6696
7702
  };
6697
7703
  validator: import(".").JSONSchema;
6698
7704
  }>, "many">>>;
6699
- label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
6700
- id: string;
6701
- description: string;
6702
- defaultMessage: string;
6703
- }>;
6704
7705
  helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
6705
7706
  id: string;
6706
7707
  description: string;
6707
7708
  defaultMessage: string;
6708
7709
  }>>;
6709
7710
  hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7711
+ uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
6710
7712
  }, {
6711
7713
  type: z.ZodLiteral<"COUNTRY">;
6712
7714
  defaultValue: z.ZodOptional<z.ZodString>;
@@ -6732,9 +7734,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6732
7734
  type: "DISPLAY_ON_REVIEW";
6733
7735
  conditional: import(".").JSONSchema;
6734
7736
  })[] | undefined;
7737
+ secured?: boolean | undefined;
6735
7738
  placeholder?: TranslationConfig | undefined;
6736
7739
  helperText?: TranslationConfig | undefined;
6737
7740
  hideLabel?: boolean | undefined;
7741
+ uncorrectable?: boolean | undefined;
6738
7742
  defaultValue?: string | undefined;
6739
7743
  }, {
6740
7744
  type: "COUNTRY";
@@ -6766,6 +7770,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6766
7770
  type: "DISPLAY_ON_REVIEW";
6767
7771
  conditional: import(".").JSONSchema;
6768
7772
  })[] | undefined;
7773
+ secured?: boolean | undefined;
6769
7774
  placeholder?: {
6770
7775
  id: string;
6771
7776
  description: string;
@@ -6777,9 +7782,15 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6777
7782
  defaultMessage: string;
6778
7783
  } | undefined;
6779
7784
  hideLabel?: boolean | undefined;
7785
+ uncorrectable?: boolean | undefined;
6780
7786
  defaultValue?: string | undefined;
6781
7787
  }>, z.ZodObject<z.objectUtil.extendShape<{
6782
7788
  id: z.ZodString;
7789
+ label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
7790
+ id: string;
7791
+ description: string;
7792
+ defaultMessage: string;
7793
+ }>;
6783
7794
  parent: z.ZodOptional<z.ZodObject<{
6784
7795
  $$field: z.ZodString;
6785
7796
  }, "strip", z.ZodTypeAny, {
@@ -6787,8 +7798,9 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6787
7798
  }, {
6788
7799
  $$field: string;
6789
7800
  }>>;
6790
- conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
6791
7801
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7802
+ conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
7803
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
6792
7804
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
6793
7805
  id: string;
6794
7806
  description: string;
@@ -6812,17 +7824,13 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6812
7824
  };
6813
7825
  validator: import(".").JSONSchema;
6814
7826
  }>, "many">>>;
6815
- label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
6816
- id: string;
6817
- description: string;
6818
- defaultMessage: string;
6819
- }>;
6820
7827
  helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
6821
7828
  id: string;
6822
7829
  description: string;
6823
7830
  defaultMessage: string;
6824
7831
  }>>;
6825
7832
  hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7833
+ uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
6826
7834
  }, {
6827
7835
  type: z.ZodLiteral<"ADMINISTRATIVE_AREA">;
6828
7836
  defaultValue: z.ZodOptional<z.ZodString>;
@@ -6874,9 +7882,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6874
7882
  type: "DISPLAY_ON_REVIEW";
6875
7883
  conditional: import(".").JSONSchema;
6876
7884
  })[] | undefined;
7885
+ secured?: boolean | undefined;
6877
7886
  placeholder?: TranslationConfig | undefined;
6878
7887
  helperText?: TranslationConfig | undefined;
6879
7888
  hideLabel?: boolean | undefined;
7889
+ uncorrectable?: boolean | undefined;
6880
7890
  defaultValue?: string | undefined;
6881
7891
  }, {
6882
7892
  type: "ADMINISTRATIVE_AREA";
@@ -6914,6 +7924,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6914
7924
  type: "DISPLAY_ON_REVIEW";
6915
7925
  conditional: import(".").JSONSchema;
6916
7926
  })[] | undefined;
7927
+ secured?: boolean | undefined;
6917
7928
  placeholder?: {
6918
7929
  id: string;
6919
7930
  description: string;
@@ -6925,9 +7936,15 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6925
7936
  defaultMessage: string;
6926
7937
  } | undefined;
6927
7938
  hideLabel?: boolean | undefined;
7939
+ uncorrectable?: boolean | undefined;
6928
7940
  defaultValue?: string | undefined;
6929
7941
  }>, z.ZodObject<z.objectUtil.extendShape<{
6930
7942
  id: z.ZodString;
7943
+ label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
7944
+ id: string;
7945
+ description: string;
7946
+ defaultMessage: string;
7947
+ }>;
6931
7948
  parent: z.ZodOptional<z.ZodObject<{
6932
7949
  $$field: z.ZodString;
6933
7950
  }, "strip", z.ZodTypeAny, {
@@ -6935,8 +7952,9 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6935
7952
  }, {
6936
7953
  $$field: string;
6937
7954
  }>>;
6938
- conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
6939
7955
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7956
+ conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
7957
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
6940
7958
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
6941
7959
  id: string;
6942
7960
  description: string;
@@ -6960,17 +7978,13 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6960
7978
  };
6961
7979
  validator: import(".").JSONSchema;
6962
7980
  }>, "many">>>;
6963
- label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
6964
- id: string;
6965
- description: string;
6966
- defaultMessage: string;
6967
- }>;
6968
7981
  helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
6969
7982
  id: string;
6970
7983
  description: string;
6971
7984
  defaultMessage: string;
6972
7985
  }>>;
6973
7986
  hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7987
+ uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
6974
7988
  }, {
6975
7989
  type: z.ZodLiteral<"DIVIDER">;
6976
7990
  }>, "strip", z.ZodTypeAny, {
@@ -6995,9 +8009,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6995
8009
  type: "DISPLAY_ON_REVIEW";
6996
8010
  conditional: import(".").JSONSchema;
6997
8011
  })[] | undefined;
8012
+ secured?: boolean | undefined;
6998
8013
  placeholder?: TranslationConfig | undefined;
6999
8014
  helperText?: TranslationConfig | undefined;
7000
8015
  hideLabel?: boolean | undefined;
8016
+ uncorrectable?: boolean | undefined;
7001
8017
  }, {
7002
8018
  type: "DIVIDER";
7003
8019
  id: string;
@@ -7028,6 +8044,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7028
8044
  type: "DISPLAY_ON_REVIEW";
7029
8045
  conditional: import(".").JSONSchema;
7030
8046
  })[] | undefined;
8047
+ secured?: boolean | undefined;
7031
8048
  placeholder?: {
7032
8049
  id: string;
7033
8050
  description: string;
@@ -7039,8 +8056,14 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7039
8056
  defaultMessage: string;
7040
8057
  } | undefined;
7041
8058
  hideLabel?: boolean | undefined;
8059
+ uncorrectable?: boolean | undefined;
7042
8060
  }>, z.ZodObject<z.objectUtil.extendShape<{
7043
8061
  id: z.ZodString;
8062
+ label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
8063
+ id: string;
8064
+ description: string;
8065
+ defaultMessage: string;
8066
+ }>;
7044
8067
  parent: z.ZodOptional<z.ZodObject<{
7045
8068
  $$field: z.ZodString;
7046
8069
  }, "strip", z.ZodTypeAny, {
@@ -7048,8 +8071,9 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7048
8071
  }, {
7049
8072
  $$field: string;
7050
8073
  }>>;
7051
- conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
7052
8074
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
8075
+ conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
8076
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7053
8077
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
7054
8078
  id: string;
7055
8079
  description: string;
@@ -7073,20 +8097,23 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7073
8097
  };
7074
8098
  validator: import(".").JSONSchema;
7075
8099
  }>, "many">>>;
7076
- label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
7077
- id: string;
7078
- description: string;
7079
- defaultMessage: string;
7080
- }>;
7081
8100
  helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
7082
8101
  id: string;
7083
8102
  description: string;
7084
8103
  defaultMessage: string;
7085
8104
  }>>;
7086
8105
  hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
8106
+ uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7087
8107
  }, {
7088
8108
  type: z.ZodLiteral<"LOCATION">;
7089
8109
  defaultValue: z.ZodOptional<z.ZodString>;
8110
+ configuration: z.ZodOptional<z.ZodObject<{
8111
+ searchableResource: z.ZodOptional<z.ZodArray<z.ZodEnum<["locations", "facilities", "offices"]>, "many">>;
8112
+ }, "strip", z.ZodTypeAny, {
8113
+ searchableResource?: ("locations" | "facilities" | "offices")[] | undefined;
8114
+ }, {
8115
+ searchableResource?: ("locations" | "facilities" | "offices")[] | undefined;
8116
+ }>>;
7090
8117
  }>, "strip", z.ZodTypeAny, {
7091
8118
  type: "LOCATION";
7092
8119
  id: string;
@@ -7109,10 +8136,15 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7109
8136
  type: "DISPLAY_ON_REVIEW";
7110
8137
  conditional: import(".").JSONSchema;
7111
8138
  })[] | undefined;
8139
+ secured?: boolean | undefined;
7112
8140
  placeholder?: TranslationConfig | undefined;
7113
8141
  helperText?: TranslationConfig | undefined;
7114
8142
  hideLabel?: boolean | undefined;
8143
+ uncorrectable?: boolean | undefined;
7115
8144
  defaultValue?: string | undefined;
8145
+ configuration?: {
8146
+ searchableResource?: ("locations" | "facilities" | "offices")[] | undefined;
8147
+ } | undefined;
7116
8148
  }, {
7117
8149
  type: "LOCATION";
7118
8150
  id: string;
@@ -7143,6 +8175,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7143
8175
  type: "DISPLAY_ON_REVIEW";
7144
8176
  conditional: import(".").JSONSchema;
7145
8177
  })[] | undefined;
8178
+ secured?: boolean | undefined;
7146
8179
  placeholder?: {
7147
8180
  id: string;
7148
8181
  description: string;
@@ -7154,9 +8187,18 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7154
8187
  defaultMessage: string;
7155
8188
  } | undefined;
7156
8189
  hideLabel?: boolean | undefined;
8190
+ uncorrectable?: boolean | undefined;
7157
8191
  defaultValue?: string | undefined;
8192
+ configuration?: {
8193
+ searchableResource?: ("locations" | "facilities" | "offices")[] | undefined;
8194
+ } | undefined;
7158
8195
  }>, z.ZodObject<z.objectUtil.extendShape<{
7159
8196
  id: z.ZodString;
8197
+ label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
8198
+ id: string;
8199
+ description: string;
8200
+ defaultMessage: string;
8201
+ }>;
7160
8202
  parent: z.ZodOptional<z.ZodObject<{
7161
8203
  $$field: z.ZodString;
7162
8204
  }, "strip", z.ZodTypeAny, {
@@ -7164,8 +8206,9 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7164
8206
  }, {
7165
8207
  $$field: string;
7166
8208
  }>>;
7167
- conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
7168
8209
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
8210
+ conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
8211
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7169
8212
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
7170
8213
  id: string;
7171
8214
  description: string;
@@ -7189,17 +8232,13 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7189
8232
  };
7190
8233
  validator: import(".").JSONSchema;
7191
8234
  }>, "many">>>;
7192
- label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
7193
- id: string;
7194
- description: string;
7195
- defaultMessage: string;
7196
- }>;
7197
8235
  helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
7198
8236
  id: string;
7199
8237
  description: string;
7200
8238
  defaultMessage: string;
7201
8239
  }>>;
7202
8240
  hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
8241
+ uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7203
8242
  }, {
7204
8243
  type: z.ZodLiteral<"FACILITY">;
7205
8244
  defaultValue: z.ZodOptional<z.ZodString>;
@@ -7225,9 +8264,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7225
8264
  type: "DISPLAY_ON_REVIEW";
7226
8265
  conditional: import(".").JSONSchema;
7227
8266
  })[] | undefined;
8267
+ secured?: boolean | undefined;
7228
8268
  placeholder?: TranslationConfig | undefined;
7229
8269
  helperText?: TranslationConfig | undefined;
7230
8270
  hideLabel?: boolean | undefined;
8271
+ uncorrectable?: boolean | undefined;
7231
8272
  defaultValue?: string | undefined;
7232
8273
  }, {
7233
8274
  type: "FACILITY";
@@ -7259,6 +8300,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7259
8300
  type: "DISPLAY_ON_REVIEW";
7260
8301
  conditional: import(".").JSONSchema;
7261
8302
  })[] | undefined;
8303
+ secured?: boolean | undefined;
7262
8304
  placeholder?: {
7263
8305
  id: string;
7264
8306
  description: string;
@@ -7270,9 +8312,15 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7270
8312
  defaultMessage: string;
7271
8313
  } | undefined;
7272
8314
  hideLabel?: boolean | undefined;
8315
+ uncorrectable?: boolean | undefined;
7273
8316
  defaultValue?: string | undefined;
7274
8317
  }>, z.ZodObject<z.objectUtil.extendShape<{
7275
8318
  id: z.ZodString;
8319
+ label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
8320
+ id: string;
8321
+ description: string;
8322
+ defaultMessage: string;
8323
+ }>;
7276
8324
  parent: z.ZodOptional<z.ZodObject<{
7277
8325
  $$field: z.ZodString;
7278
8326
  }, "strip", z.ZodTypeAny, {
@@ -7280,8 +8328,9 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7280
8328
  }, {
7281
8329
  $$field: string;
7282
8330
  }>>;
7283
- conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
7284
8331
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
8332
+ conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
8333
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7285
8334
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
7286
8335
  id: string;
7287
8336
  description: string;
@@ -7305,17 +8354,13 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7305
8354
  };
7306
8355
  validator: import(".").JSONSchema;
7307
8356
  }>, "many">>>;
7308
- label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
7309
- id: string;
7310
- description: string;
7311
- defaultMessage: string;
7312
- }>;
7313
8357
  helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
7314
8358
  id: string;
7315
8359
  description: string;
7316
8360
  defaultMessage: string;
7317
8361
  }>>;
7318
8362
  hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
8363
+ uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7319
8364
  }, {
7320
8365
  type: z.ZodLiteral<"OFFICE">;
7321
8366
  defaultValue: z.ZodOptional<z.ZodString>;
@@ -7341,9 +8386,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7341
8386
  type: "DISPLAY_ON_REVIEW";
7342
8387
  conditional: import(".").JSONSchema;
7343
8388
  })[] | undefined;
8389
+ secured?: boolean | undefined;
7344
8390
  placeholder?: TranslationConfig | undefined;
7345
8391
  helperText?: TranslationConfig | undefined;
7346
8392
  hideLabel?: boolean | undefined;
8393
+ uncorrectable?: boolean | undefined;
7347
8394
  defaultValue?: string | undefined;
7348
8395
  }, {
7349
8396
  type: "OFFICE";
@@ -7375,6 +8422,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7375
8422
  type: "DISPLAY_ON_REVIEW";
7376
8423
  conditional: import(".").JSONSchema;
7377
8424
  })[] | undefined;
8425
+ secured?: boolean | undefined;
7378
8426
  placeholder?: {
7379
8427
  id: string;
7380
8428
  description: string;
@@ -7386,9 +8434,15 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7386
8434
  defaultMessage: string;
7387
8435
  } | undefined;
7388
8436
  hideLabel?: boolean | undefined;
8437
+ uncorrectable?: boolean | undefined;
7389
8438
  defaultValue?: string | undefined;
7390
8439
  }>, z.ZodObject<z.objectUtil.extendShape<{
7391
8440
  id: z.ZodString;
8441
+ label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
8442
+ id: string;
8443
+ description: string;
8444
+ defaultMessage: string;
8445
+ }>;
7392
8446
  parent: z.ZodOptional<z.ZodObject<{
7393
8447
  $$field: z.ZodString;
7394
8448
  }, "strip", z.ZodTypeAny, {
@@ -7396,8 +8450,9 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7396
8450
  }, {
7397
8451
  $$field: string;
7398
8452
  }>>;
7399
- conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
7400
8453
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
8454
+ conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
8455
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7401
8456
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
7402
8457
  id: string;
7403
8458
  description: string;
@@ -7421,17 +8476,13 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7421
8476
  };
7422
8477
  validator: import(".").JSONSchema;
7423
8478
  }>, "many">>>;
7424
- label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
7425
- id: string;
7426
- description: string;
7427
- defaultMessage: string;
7428
- }>;
7429
8479
  helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
7430
8480
  id: string;
7431
8481
  description: string;
7432
8482
  defaultMessage: string;
7433
8483
  }>>;
7434
8484
  hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
8485
+ uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7435
8486
  }, {
7436
8487
  type: z.ZodLiteral<"SIGNATURE">;
7437
8488
  signaturePromptLabel: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
@@ -7477,9 +8528,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7477
8528
  type: "DISPLAY_ON_REVIEW";
7478
8529
  conditional: import(".").JSONSchema;
7479
8530
  })[] | undefined;
8531
+ secured?: boolean | undefined;
7480
8532
  placeholder?: TranslationConfig | undefined;
7481
8533
  helperText?: TranslationConfig | undefined;
7482
8534
  hideLabel?: boolean | undefined;
8535
+ uncorrectable?: boolean | undefined;
7483
8536
  defaultValue?: string | undefined;
7484
8537
  }, {
7485
8538
  type: "SIGNATURE";
@@ -7516,6 +8569,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7516
8569
  type: "DISPLAY_ON_REVIEW";
7517
8570
  conditional: import(".").JSONSchema;
7518
8571
  })[] | undefined;
8572
+ secured?: boolean | undefined;
7519
8573
  placeholder?: {
7520
8574
  id: string;
7521
8575
  description: string;
@@ -7527,6 +8581,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7527
8581
  defaultMessage: string;
7528
8582
  } | undefined;
7529
8583
  hideLabel?: boolean | undefined;
8584
+ uncorrectable?: boolean | undefined;
7530
8585
  defaultValue?: string | undefined;
7531
8586
  configuration?: {
7532
8587
  maxFileSize?: number | undefined;
@@ -7534,6 +8589,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7534
8589
  } | undefined;
7535
8590
  }>, z.ZodObject<z.objectUtil.extendShape<{
7536
8591
  id: z.ZodString;
8592
+ label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
8593
+ id: string;
8594
+ description: string;
8595
+ defaultMessage: string;
8596
+ }>;
7537
8597
  parent: z.ZodOptional<z.ZodObject<{
7538
8598
  $$field: z.ZodString;
7539
8599
  }, "strip", z.ZodTypeAny, {
@@ -7541,8 +8601,9 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7541
8601
  }, {
7542
8602
  $$field: string;
7543
8603
  }>>;
7544
- conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
7545
8604
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
8605
+ conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
8606
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7546
8607
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
7547
8608
  id: string;
7548
8609
  description: string;
@@ -7566,17 +8627,13 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7566
8627
  };
7567
8628
  validator: import(".").JSONSchema;
7568
8629
  }>, "many">>>;
7569
- label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
7570
- id: string;
7571
- description: string;
7572
- defaultMessage: string;
7573
- }>;
7574
8630
  helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
7575
8631
  id: string;
7576
8632
  description: string;
7577
8633
  defaultMessage: string;
7578
8634
  }>>;
7579
8635
  hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
8636
+ uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7580
8637
  }, {
7581
8638
  type: z.ZodLiteral<"EMAIL">;
7582
8639
  configuration: z.ZodOptional<z.ZodDefault<z.ZodObject<{
@@ -7609,9 +8666,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7609
8666
  type: "DISPLAY_ON_REVIEW";
7610
8667
  conditional: import(".").JSONSchema;
7611
8668
  })[] | undefined;
8669
+ secured?: boolean | undefined;
7612
8670
  placeholder?: TranslationConfig | undefined;
7613
8671
  helperText?: TranslationConfig | undefined;
7614
8672
  hideLabel?: boolean | undefined;
8673
+ uncorrectable?: boolean | undefined;
7615
8674
  defaultValue?: string | undefined;
7616
8675
  configuration?: {
7617
8676
  maxLength?: number | undefined;
@@ -7646,6 +8705,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7646
8705
  type: "DISPLAY_ON_REVIEW";
7647
8706
  conditional: import(".").JSONSchema;
7648
8707
  })[] | undefined;
8708
+ secured?: boolean | undefined;
7649
8709
  placeholder?: {
7650
8710
  id: string;
7651
8711
  description: string;
@@ -7657,12 +8717,18 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7657
8717
  defaultMessage: string;
7658
8718
  } | undefined;
7659
8719
  hideLabel?: boolean | undefined;
8720
+ uncorrectable?: boolean | undefined;
7660
8721
  defaultValue?: string | undefined;
7661
8722
  configuration?: {
7662
8723
  maxLength?: number | undefined;
7663
8724
  } | undefined;
7664
8725
  }>, z.ZodObject<z.objectUtil.extendShape<{
7665
8726
  id: z.ZodString;
8727
+ label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
8728
+ id: string;
8729
+ description: string;
8730
+ defaultMessage: string;
8731
+ }>;
7666
8732
  parent: z.ZodOptional<z.ZodObject<{
7667
8733
  $$field: z.ZodString;
7668
8734
  }, "strip", z.ZodTypeAny, {
@@ -7670,8 +8736,9 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7670
8736
  }, {
7671
8737
  $$field: string;
7672
8738
  }>>;
7673
- conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
7674
8739
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
8740
+ conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
8741
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7675
8742
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
7676
8743
  id: string;
7677
8744
  description: string;
@@ -7695,17 +8762,13 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7695
8762
  };
7696
8763
  validator: import(".").JSONSchema;
7697
8764
  }>, "many">>>;
7698
- label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
7699
- id: string;
7700
- description: string;
7701
- defaultMessage: string;
7702
- }>;
7703
8765
  helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
7704
8766
  id: string;
7705
8767
  description: string;
7706
8768
  defaultMessage: string;
7707
8769
  }>>;
7708
8770
  hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
8771
+ uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7709
8772
  }, {
7710
8773
  type: z.ZodLiteral<"FILE_WITH_OPTIONS">;
7711
8774
  options: z.ZodArray<z.ZodObject<{
@@ -7727,19 +8790,19 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7727
8790
  };
7728
8791
  }>, "many">;
7729
8792
  defaultValue: z.ZodOptional<z.ZodArray<z.ZodObject<{
7730
- filename: z.ZodString;
8793
+ path: z.ZodEffects<z.ZodString, string, string>;
7731
8794
  originalFilename: z.ZodString;
7732
8795
  type: z.ZodString;
7733
8796
  option: z.ZodString;
7734
8797
  }, "strip", z.ZodTypeAny, {
7735
8798
  type: string;
7736
8799
  option: string;
7737
- filename: string;
8800
+ path: string;
7738
8801
  originalFilename: string;
7739
8802
  }, {
7740
8803
  type: string;
7741
8804
  option: string;
7742
- filename: string;
8805
+ path: string;
7743
8806
  originalFilename: string;
7744
8807
  }>, "many">>;
7745
8808
  configuration: z.ZodDefault<z.ZodObject<{
@@ -7782,13 +8845,15 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7782
8845
  type: "DISPLAY_ON_REVIEW";
7783
8846
  conditional: import(".").JSONSchema;
7784
8847
  })[] | undefined;
8848
+ secured?: boolean | undefined;
7785
8849
  placeholder?: TranslationConfig | undefined;
7786
8850
  helperText?: TranslationConfig | undefined;
7787
8851
  hideLabel?: boolean | undefined;
8852
+ uncorrectable?: boolean | undefined;
7788
8853
  defaultValue?: {
7789
8854
  type: string;
7790
8855
  option: string;
7791
- filename: string;
8856
+ path: string;
7792
8857
  originalFilename: string;
7793
8858
  }[] | undefined;
7794
8859
  }, {
@@ -7829,6 +8894,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7829
8894
  type: "DISPLAY_ON_REVIEW";
7830
8895
  conditional: import(".").JSONSchema;
7831
8896
  })[] | undefined;
8897
+ secured?: boolean | undefined;
7832
8898
  placeholder?: {
7833
8899
  id: string;
7834
8900
  description: string;
@@ -7840,10 +8906,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7840
8906
  defaultMessage: string;
7841
8907
  } | undefined;
7842
8908
  hideLabel?: boolean | undefined;
8909
+ uncorrectable?: boolean | undefined;
7843
8910
  defaultValue?: {
7844
8911
  type: string;
7845
8912
  option: string;
7846
- filename: string;
8913
+ path: string;
7847
8914
  originalFilename: string;
7848
8915
  }[] | undefined;
7849
8916
  configuration?: {
@@ -7852,6 +8919,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7852
8919
  } | undefined;
7853
8920
  }>, z.ZodObject<z.objectUtil.extendShape<{
7854
8921
  id: z.ZodString;
8922
+ label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
8923
+ id: string;
8924
+ description: string;
8925
+ defaultMessage: string;
8926
+ }>;
7855
8927
  parent: z.ZodOptional<z.ZodObject<{
7856
8928
  $$field: z.ZodString;
7857
8929
  }, "strip", z.ZodTypeAny, {
@@ -7859,8 +8931,9 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7859
8931
  }, {
7860
8932
  $$field: string;
7861
8933
  }>>;
7862
- conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
7863
8934
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
8935
+ conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
8936
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7864
8937
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
7865
8938
  id: string;
7866
8939
  description: string;
@@ -7884,17 +8957,13 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7884
8957
  };
7885
8958
  validator: import(".").JSONSchema;
7886
8959
  }>, "many">>>;
7887
- label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
7888
- id: string;
7889
- description: string;
7890
- defaultMessage: string;
7891
- }>;
7892
8960
  helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
7893
8961
  id: string;
7894
8962
  description: string;
7895
8963
  defaultMessage: string;
7896
8964
  }>>;
7897
8965
  hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
8966
+ uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7898
8967
  }, {
7899
8968
  type: z.ZodLiteral<"DATA">;
7900
8969
  configuration: z.ZodObject<{
@@ -7995,9 +9064,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7995
9064
  type: "DISPLAY_ON_REVIEW";
7996
9065
  conditional: import(".").JSONSchema;
7997
9066
  })[] | undefined;
9067
+ secured?: boolean | undefined;
7998
9068
  placeholder?: TranslationConfig | undefined;
7999
9069
  helperText?: TranslationConfig | undefined;
8000
9070
  hideLabel?: boolean | undefined;
9071
+ uncorrectable?: boolean | undefined;
8001
9072
  }, {
8002
9073
  type: "DATA";
8003
9074
  id: string;
@@ -8049,6 +9120,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8049
9120
  type: "DISPLAY_ON_REVIEW";
8050
9121
  conditional: import(".").JSONSchema;
8051
9122
  })[] | undefined;
9123
+ secured?: boolean | undefined;
8052
9124
  placeholder?: {
8053
9125
  id: string;
8054
9126
  description: string;
@@ -8060,6 +9132,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8060
9132
  defaultMessage: string;
8061
9133
  } | undefined;
8062
9134
  hideLabel?: boolean | undefined;
9135
+ uncorrectable?: boolean | undefined;
8063
9136
  }>]>;
8064
9137
  export type SelectField = z.infer<typeof Select>;
8065
9138
  export type NameField = z.infer<typeof NameField>;
@@ -8069,7 +9142,6 @@ export type LocationField = z.infer<typeof Location>;
8069
9142
  export type RadioField = z.infer<typeof RadioGroup>;
8070
9143
  export type AddressField = z.infer<typeof Address>;
8071
9144
  export type NumberField = z.infer<typeof NumberField>;
8072
- export type FieldConfig = Inferred;
8073
9145
  export type FieldProps<T extends FieldType> = Extract<FieldConfig, {
8074
9146
  type: T;
8075
9147
  }>;