@opencrvs/toolkit 1.8.0-rc.ffe24c3 → 1.8.1-rc.3e74262
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/commons/api/router.d.ts +1742 -14918
- package/dist/commons/conditionals/conditionals.d.ts +0 -12
- package/dist/commons/conditionals/validate.d.ts +5 -0
- package/dist/commons/events/ActionConfig.d.ts +37041 -35133
- package/dist/commons/events/ActionDocument.d.ts +3159 -1626
- package/dist/commons/events/ActionInput.d.ts +2280 -1380
- package/dist/commons/events/ActionType.d.ts +7 -4
- package/dist/commons/events/AdvancedSearchConfig.d.ts +100 -51
- package/dist/commons/events/CompositeFieldValue.d.ts +15 -15
- package/dist/commons/events/CountryConfigQueryInput.d.ts +1162 -760
- package/dist/commons/events/Draft.d.ts +190 -118
- package/dist/commons/events/EventConfig.d.ts +20824 -22965
- package/dist/commons/events/EventDocument.d.ts +1669 -1021
- package/dist/commons/events/EventIndex.d.ts +394 -175
- package/dist/commons/events/EventMetadata.d.ts +6 -4
- package/dist/commons/events/FieldConfig.d.ts +1528 -449
- package/dist/commons/events/FieldType.d.ts +3 -1
- package/dist/commons/events/FieldTypeMapping.d.ts +80 -41
- package/dist/commons/events/FieldValue.d.ts +58 -28
- package/dist/commons/events/FormConfig.d.ts +9263 -2657
- package/dist/commons/events/PageConfig.d.ts +3642 -2028
- package/dist/commons/events/SummaryConfig.d.ts +10 -10
- package/dist/commons/events/User.d.ts +6 -3
- package/dist/commons/events/WorkqueueConfig.d.ts +2153 -1337
- package/dist/commons/events/defineConfig.d.ts +2759 -3250
- package/dist/commons/events/event.d.ts +10 -18
- package/dist/commons/events/field.d.ts +13 -1
- package/dist/commons/events/scopes.d.ts +2 -1
- package/dist/commons/events/test.utils.d.ts +58 -34
- package/dist/commons/events/utils.d.ts +8848 -6794
- package/dist/conditionals/index.js +23 -53
- package/dist/events/index.js +1594 -1341
- package/dist/scopes/index.d.ts +92 -6
- package/dist/scopes/index.js +38 -9
- 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
|
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<"
|
1241
|
-
defaultValue: z.ZodOptional<z.
|
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: "
|
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
|
-
|
1333
|
+
uncorrectable?: boolean | undefined;
|
1334
|
+
defaultValue?: string | undefined;
|
1283
1335
|
configuration?: {
|
1284
1336
|
notice?: TranslationConfig | undefined;
|
1285
1337
|
} | undefined;
|
1286
1338
|
}, {
|
1287
|
-
type: "
|
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
|
-
|
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
|
1337
|
-
declare const
|
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<"
|
1386
|
-
defaultValue: z.ZodOptional<z.
|
1387
|
-
|
1388
|
-
|
1389
|
-
|
1390
|
-
|
1391
|
-
|
1392
|
-
|
1393
|
-
|
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
|
-
|
1397
|
-
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
1398
|
-
} | undefined;
|
1457
|
+
notice?: TranslationConfig | undefined;
|
1399
1458
|
}, {
|
1400
|
-
|
1401
|
-
|
1459
|
+
notice?: {
|
1460
|
+
id: string;
|
1461
|
+
description: string;
|
1462
|
+
defaultMessage: string;
|
1402
1463
|
} | undefined;
|
1403
1464
|
}>>;
|
1404
1465
|
}>, "strip", z.ZodTypeAny, {
|
1405
|
-
type: "
|
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
|
-
|
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: "
|
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
|
-
|
1541
|
+
uncorrectable?: boolean | undefined;
|
1542
|
+
defaultValue?: string | {
|
1543
|
+
start: string;
|
1544
|
+
end: string;
|
1545
|
+
} | undefined;
|
1477
1546
|
configuration?: {
|
1478
|
-
|
1479
|
-
|
1547
|
+
notice?: {
|
1548
|
+
id: string;
|
1549
|
+
description: string;
|
1550
|
+
defaultMessage: string;
|
1480
1551
|
} | undefined;
|
1481
1552
|
} | undefined;
|
1482
1553
|
}>;
|
1483
|
-
export type
|
1484
|
-
declare const
|
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<"
|
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: "
|
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: "
|
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
|
1602
|
-
declare const
|
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<"
|
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
|
-
|
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
|
-
|
1917
|
+
path: string;
|
1656
1918
|
originalFilename: string;
|
1657
1919
|
}, {
|
1658
1920
|
type: string;
|
1659
|
-
|
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
|
-
|
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
|
-
|
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
|
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<"
|
2337
|
-
defaultValue: z.ZodOptional<z.
|
2338
|
-
|
2339
|
-
|
2340
|
-
|
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
|
-
|
2361
|
-
|
2362
|
-
postfix?: TranslationConfig | undefined;
|
2654
|
+
value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
2655
|
+
label: TranslationConfig;
|
2363
2656
|
}, {
|
2364
|
-
|
2365
|
-
|
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
|
-
}
|
2375
|
-
}
|
2662
|
+
};
|
2663
|
+
}>, "many">;
|
2376
2664
|
}>, "strip", z.ZodTypeAny, {
|
2377
|
-
type: "
|
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
|
-
|
2402
|
-
|
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: "
|
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
|
-
|
2452
|
-
|
2453
|
-
|
2454
|
-
|
2455
|
-
|
2456
|
-
|
2457
|
-
|
2458
|
-
|
2459
|
-
|
2460
|
-
|
2461
|
-
|
2462
|
-
|
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
|
-
|
3231
|
-
|
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
|
-
|
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
|
-
|
3828
|
+
path: string;
|
3302
3829
|
originalFilename: string;
|
3303
3830
|
}, {
|
3304
3831
|
type: string;
|
3305
3832
|
option: string;
|
3306
|
-
|
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
|
-
|
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
|
-
|
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,23 @@ 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
4727
|
/** @knipignore */
|
4160
|
-
export type
|
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>;
|
4728
|
+
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 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>;
|
4163
4729
|
/** @knipignore */
|
4164
4730
|
/**
|
4165
4731
|
* This is the type that should be used for the input of the FieldConfig. Useful when config uses zod defaults.
|
4166
4732
|
*/
|
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>;
|
4733
|
+
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 TimeField> | 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>;
|
4168
4734
|
export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z.objectUtil.extendShape<{
|
4169
4735
|
id: z.ZodString;
|
4736
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
4737
|
+
id: string;
|
4738
|
+
description: string;
|
4739
|
+
defaultMessage: string;
|
4740
|
+
}>;
|
4170
4741
|
parent: z.ZodOptional<z.ZodObject<{
|
4171
4742
|
$$field: z.ZodString;
|
4172
4743
|
}, "strip", z.ZodTypeAny, {
|
@@ -4174,8 +4745,9 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4174
4745
|
}, {
|
4175
4746
|
$$field: string;
|
4176
4747
|
}>>;
|
4177
|
-
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
4178
4748
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4749
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
4750
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4179
4751
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
4180
4752
|
id: string;
|
4181
4753
|
description: string;
|
@@ -4199,17 +4771,13 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4199
4771
|
};
|
4200
4772
|
validator: import(".").JSONSchema;
|
4201
4773
|
}>, "many">>>;
|
4202
|
-
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
4203
|
-
id: string;
|
4204
|
-
description: string;
|
4205
|
-
defaultMessage: string;
|
4206
|
-
}>;
|
4207
4774
|
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
4208
4775
|
id: string;
|
4209
4776
|
description: string;
|
4210
4777
|
defaultMessage: string;
|
4211
4778
|
}>>;
|
4212
4779
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4780
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4213
4781
|
}, {
|
4214
4782
|
type: z.ZodLiteral<"ADDRESS">;
|
4215
4783
|
defaultValue: z.ZodOptional<z.ZodUnion<[z.ZodDiscriminatedUnion<"urbanOrRural", [z.ZodObject<z.objectUtil.extendShape<{
|
@@ -4299,6 +4867,13 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4299
4867
|
addressLine3?: string | undefined;
|
4300
4868
|
postcodeOrZip?: string | undefined;
|
4301
4869
|
}>]>>;
|
4870
|
+
configuration: z.ZodOptional<z.ZodObject<{
|
4871
|
+
searchMode: z.ZodOptional<z.ZodBoolean>;
|
4872
|
+
}, "strip", z.ZodTypeAny, {
|
4873
|
+
searchMode?: boolean | undefined;
|
4874
|
+
}, {
|
4875
|
+
searchMode?: boolean | undefined;
|
4876
|
+
}>>;
|
4302
4877
|
}>, "strip", z.ZodTypeAny, {
|
4303
4878
|
type: "ADDRESS";
|
4304
4879
|
id: string;
|
@@ -4321,9 +4896,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4321
4896
|
type: "DISPLAY_ON_REVIEW";
|
4322
4897
|
conditional: import(".").JSONSchema;
|
4323
4898
|
})[] | undefined;
|
4899
|
+
secured?: boolean | undefined;
|
4324
4900
|
placeholder?: TranslationConfig | undefined;
|
4325
4901
|
helperText?: TranslationConfig | undefined;
|
4326
4902
|
hideLabel?: boolean | undefined;
|
4903
|
+
uncorrectable?: boolean | undefined;
|
4327
4904
|
defaultValue?: {
|
4328
4905
|
country: string;
|
4329
4906
|
district: string;
|
@@ -4353,6 +4930,9 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4353
4930
|
addressLine3?: string | undefined;
|
4354
4931
|
postcodeOrZip?: string | undefined;
|
4355
4932
|
} | undefined;
|
4933
|
+
configuration?: {
|
4934
|
+
searchMode?: boolean | undefined;
|
4935
|
+
} | undefined;
|
4356
4936
|
}, {
|
4357
4937
|
type: "ADDRESS";
|
4358
4938
|
id: string;
|
@@ -4383,6 +4963,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4383
4963
|
type: "DISPLAY_ON_REVIEW";
|
4384
4964
|
conditional: import(".").JSONSchema;
|
4385
4965
|
})[] | undefined;
|
4966
|
+
secured?: boolean | undefined;
|
4386
4967
|
placeholder?: {
|
4387
4968
|
id: string;
|
4388
4969
|
description: string;
|
@@ -4394,6 +4975,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4394
4975
|
defaultMessage: string;
|
4395
4976
|
} | undefined;
|
4396
4977
|
hideLabel?: boolean | undefined;
|
4978
|
+
uncorrectable?: boolean | undefined;
|
4397
4979
|
defaultValue?: {
|
4398
4980
|
country: string;
|
4399
4981
|
district: string;
|
@@ -4423,8 +5005,16 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4423
5005
|
addressLine3?: string | undefined;
|
4424
5006
|
postcodeOrZip?: string | undefined;
|
4425
5007
|
} | undefined;
|
5008
|
+
configuration?: {
|
5009
|
+
searchMode?: boolean | undefined;
|
5010
|
+
} | undefined;
|
4426
5011
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
4427
5012
|
id: z.ZodString;
|
5013
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5014
|
+
id: string;
|
5015
|
+
description: string;
|
5016
|
+
defaultMessage: string;
|
5017
|
+
}>;
|
4428
5018
|
parent: z.ZodOptional<z.ZodObject<{
|
4429
5019
|
$$field: z.ZodString;
|
4430
5020
|
}, "strip", z.ZodTypeAny, {
|
@@ -4432,8 +5022,9 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4432
5022
|
}, {
|
4433
5023
|
$$field: string;
|
4434
5024
|
}>>;
|
4435
|
-
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
4436
5025
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5026
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
5027
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4437
5028
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
4438
5029
|
id: string;
|
4439
5030
|
description: string;
|
@@ -4457,17 +5048,13 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4457
5048
|
};
|
4458
5049
|
validator: import(".").JSONSchema;
|
4459
5050
|
}>, "many">>>;
|
4460
|
-
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
4461
|
-
id: string;
|
4462
|
-
description: string;
|
4463
|
-
defaultMessage: string;
|
4464
|
-
}>;
|
4465
5051
|
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
4466
5052
|
id: string;
|
4467
5053
|
description: string;
|
4468
5054
|
defaultMessage: string;
|
4469
5055
|
}>>;
|
4470
5056
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5057
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4471
5058
|
}, {
|
4472
5059
|
type: z.ZodLiteral<"TEXT">;
|
4473
5060
|
defaultValue: z.ZodOptional<z.ZodString>;
|
@@ -4525,9 +5112,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4525
5112
|
type: "DISPLAY_ON_REVIEW";
|
4526
5113
|
conditional: import(".").JSONSchema;
|
4527
5114
|
})[] | undefined;
|
5115
|
+
secured?: boolean | undefined;
|
4528
5116
|
placeholder?: TranslationConfig | undefined;
|
4529
5117
|
helperText?: TranslationConfig | undefined;
|
4530
5118
|
hideLabel?: boolean | undefined;
|
5119
|
+
uncorrectable?: boolean | undefined;
|
4531
5120
|
defaultValue?: string | undefined;
|
4532
5121
|
configuration?: {
|
4533
5122
|
type?: "text" | "password" | undefined;
|
@@ -4565,6 +5154,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4565
5154
|
type: "DISPLAY_ON_REVIEW";
|
4566
5155
|
conditional: import(".").JSONSchema;
|
4567
5156
|
})[] | undefined;
|
5157
|
+
secured?: boolean | undefined;
|
4568
5158
|
placeholder?: {
|
4569
5159
|
id: string;
|
4570
5160
|
description: string;
|
@@ -4576,6 +5166,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4576
5166
|
defaultMessage: string;
|
4577
5167
|
} | undefined;
|
4578
5168
|
hideLabel?: boolean | undefined;
|
5169
|
+
uncorrectable?: boolean | undefined;
|
4579
5170
|
defaultValue?: string | undefined;
|
4580
5171
|
configuration?: {
|
4581
5172
|
type?: "text" | "password" | undefined;
|
@@ -4593,6 +5184,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4593
5184
|
} | undefined;
|
4594
5185
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
4595
5186
|
id: z.ZodString;
|
5187
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5188
|
+
id: string;
|
5189
|
+
description: string;
|
5190
|
+
defaultMessage: string;
|
5191
|
+
}>;
|
4596
5192
|
parent: z.ZodOptional<z.ZodObject<{
|
4597
5193
|
$$field: z.ZodString;
|
4598
5194
|
}, "strip", z.ZodTypeAny, {
|
@@ -4600,8 +5196,9 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4600
5196
|
}, {
|
4601
5197
|
$$field: string;
|
4602
5198
|
}>>;
|
4603
|
-
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
4604
5199
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5200
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
5201
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4605
5202
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
4606
5203
|
id: string;
|
4607
5204
|
description: string;
|
@@ -4625,17 +5222,13 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4625
5222
|
};
|
4626
5223
|
validator: import(".").JSONSchema;
|
4627
5224
|
}>, "many">>>;
|
4628
|
-
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
4629
|
-
id: string;
|
4630
|
-
description: string;
|
4631
|
-
defaultMessage: string;
|
4632
|
-
}>;
|
4633
5225
|
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
4634
5226
|
id: string;
|
4635
5227
|
description: string;
|
4636
5228
|
defaultMessage: string;
|
4637
5229
|
}>>;
|
4638
5230
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5231
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4639
5232
|
}, {
|
4640
5233
|
type: z.ZodLiteral<"NUMBER">;
|
4641
5234
|
defaultValue: z.ZodOptional<z.ZodNumber>;
|
@@ -4693,9 +5286,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4693
5286
|
type: "DISPLAY_ON_REVIEW";
|
4694
5287
|
conditional: import(".").JSONSchema;
|
4695
5288
|
})[] | undefined;
|
5289
|
+
secured?: boolean | undefined;
|
4696
5290
|
placeholder?: TranslationConfig | undefined;
|
4697
5291
|
helperText?: TranslationConfig | undefined;
|
4698
5292
|
hideLabel?: boolean | undefined;
|
5293
|
+
uncorrectable?: boolean | undefined;
|
4699
5294
|
defaultValue?: number | undefined;
|
4700
5295
|
configuration?: {
|
4701
5296
|
prefix?: TranslationConfig | undefined;
|
@@ -4733,6 +5328,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4733
5328
|
type: "DISPLAY_ON_REVIEW";
|
4734
5329
|
conditional: import(".").JSONSchema;
|
4735
5330
|
})[] | undefined;
|
5331
|
+
secured?: boolean | undefined;
|
4736
5332
|
placeholder?: {
|
4737
5333
|
id: string;
|
4738
5334
|
description: string;
|
@@ -4744,6 +5340,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4744
5340
|
defaultMessage: string;
|
4745
5341
|
} | undefined;
|
4746
5342
|
hideLabel?: boolean | undefined;
|
5343
|
+
uncorrectable?: boolean | undefined;
|
4747
5344
|
defaultValue?: number | undefined;
|
4748
5345
|
configuration?: {
|
4749
5346
|
prefix?: {
|
@@ -4761,6 +5358,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4761
5358
|
} | undefined;
|
4762
5359
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
4763
5360
|
id: z.ZodString;
|
5361
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5362
|
+
id: string;
|
5363
|
+
description: string;
|
5364
|
+
defaultMessage: string;
|
5365
|
+
}>;
|
4764
5366
|
parent: z.ZodOptional<z.ZodObject<{
|
4765
5367
|
$$field: z.ZodString;
|
4766
5368
|
}, "strip", z.ZodTypeAny, {
|
@@ -4768,8 +5370,9 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4768
5370
|
}, {
|
4769
5371
|
$$field: string;
|
4770
5372
|
}>>;
|
4771
|
-
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
4772
5373
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5374
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
5375
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4773
5376
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
4774
5377
|
id: string;
|
4775
5378
|
description: string;
|
@@ -4793,17 +5396,13 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4793
5396
|
};
|
4794
5397
|
validator: import(".").JSONSchema;
|
4795
5398
|
}>, "many">>>;
|
4796
|
-
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
4797
|
-
id: string;
|
4798
|
-
description: string;
|
4799
|
-
defaultMessage: string;
|
4800
|
-
}>;
|
4801
5399
|
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
4802
5400
|
id: string;
|
4803
5401
|
description: string;
|
4804
5402
|
defaultMessage: string;
|
4805
5403
|
}>>;
|
4806
5404
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5405
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4807
5406
|
}, {
|
4808
5407
|
type: z.ZodLiteral<"TEXTAREA">;
|
4809
5408
|
defaultValue: z.ZodOptional<z.ZodString>;
|
@@ -4864,9 +5463,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4864
5463
|
type: "DISPLAY_ON_REVIEW";
|
4865
5464
|
conditional: import(".").JSONSchema;
|
4866
5465
|
})[] | undefined;
|
5466
|
+
secured?: boolean | undefined;
|
4867
5467
|
placeholder?: TranslationConfig | undefined;
|
4868
5468
|
helperText?: TranslationConfig | undefined;
|
4869
5469
|
hideLabel?: boolean | undefined;
|
5470
|
+
uncorrectable?: boolean | undefined;
|
4870
5471
|
defaultValue?: string | undefined;
|
4871
5472
|
configuration?: {
|
4872
5473
|
maxLength?: number | undefined;
|
@@ -4905,6 +5506,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4905
5506
|
type: "DISPLAY_ON_REVIEW";
|
4906
5507
|
conditional: import(".").JSONSchema;
|
4907
5508
|
})[] | undefined;
|
5509
|
+
secured?: boolean | undefined;
|
4908
5510
|
placeholder?: {
|
4909
5511
|
id: string;
|
4910
5512
|
description: string;
|
@@ -4916,6 +5518,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4916
5518
|
defaultMessage: string;
|
4917
5519
|
} | undefined;
|
4918
5520
|
hideLabel?: boolean | undefined;
|
5521
|
+
uncorrectable?: boolean | undefined;
|
4919
5522
|
defaultValue?: string | undefined;
|
4920
5523
|
configuration?: {
|
4921
5524
|
maxLength?: number | undefined;
|
@@ -4934,6 +5537,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4934
5537
|
} | undefined;
|
4935
5538
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
4936
5539
|
id: z.ZodString;
|
5540
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5541
|
+
id: string;
|
5542
|
+
description: string;
|
5543
|
+
defaultMessage: string;
|
5544
|
+
}>;
|
4937
5545
|
parent: z.ZodOptional<z.ZodObject<{
|
4938
5546
|
$$field: z.ZodString;
|
4939
5547
|
}, "strip", z.ZodTypeAny, {
|
@@ -4941,8 +5549,9 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4941
5549
|
}, {
|
4942
5550
|
$$field: string;
|
4943
5551
|
}>>;
|
4944
|
-
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
4945
5552
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5553
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
5554
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4946
5555
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
4947
5556
|
id: string;
|
4948
5557
|
description: string;
|
@@ -4966,17 +5575,13 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4966
5575
|
};
|
4967
5576
|
validator: import(".").JSONSchema;
|
4968
5577
|
}>, "many">>>;
|
4969
|
-
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
4970
|
-
id: string;
|
4971
|
-
description: string;
|
4972
|
-
defaultMessage: string;
|
4973
|
-
}>;
|
4974
5578
|
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
4975
5579
|
id: string;
|
4976
5580
|
description: string;
|
4977
5581
|
defaultMessage: string;
|
4978
5582
|
}>>;
|
4979
5583
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5584
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4980
5585
|
}, {
|
4981
5586
|
type: z.ZodLiteral<"DATE">;
|
4982
5587
|
defaultValue: z.ZodOptional<z.ZodString>;
|
@@ -5017,9 +5622,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5017
5622
|
type: "DISPLAY_ON_REVIEW";
|
5018
5623
|
conditional: import(".").JSONSchema;
|
5019
5624
|
})[] | undefined;
|
5625
|
+
secured?: boolean | undefined;
|
5020
5626
|
placeholder?: TranslationConfig | undefined;
|
5021
5627
|
helperText?: TranslationConfig | undefined;
|
5022
5628
|
hideLabel?: boolean | undefined;
|
5629
|
+
uncorrectable?: boolean | undefined;
|
5023
5630
|
defaultValue?: string | undefined;
|
5024
5631
|
configuration?: {
|
5025
5632
|
notice?: TranslationConfig | undefined;
|
@@ -5054,6 +5661,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5054
5661
|
type: "DISPLAY_ON_REVIEW";
|
5055
5662
|
conditional: import(".").JSONSchema;
|
5056
5663
|
})[] | undefined;
|
5664
|
+
secured?: boolean | undefined;
|
5057
5665
|
placeholder?: {
|
5058
5666
|
id: string;
|
5059
5667
|
description: string;
|
@@ -5065,6 +5673,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5065
5673
|
defaultMessage: string;
|
5066
5674
|
} | undefined;
|
5067
5675
|
hideLabel?: boolean | undefined;
|
5676
|
+
uncorrectable?: boolean | undefined;
|
5068
5677
|
defaultValue?: string | undefined;
|
5069
5678
|
configuration?: {
|
5070
5679
|
notice?: {
|
@@ -5075,6 +5684,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5075
5684
|
} | undefined;
|
5076
5685
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
5077
5686
|
id: z.ZodString;
|
5687
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5688
|
+
id: string;
|
5689
|
+
description: string;
|
5690
|
+
defaultMessage: string;
|
5691
|
+
}>;
|
5078
5692
|
parent: z.ZodOptional<z.ZodObject<{
|
5079
5693
|
$$field: z.ZodString;
|
5080
5694
|
}, "strip", z.ZodTypeAny, {
|
@@ -5082,8 +5696,9 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5082
5696
|
}, {
|
5083
5697
|
$$field: string;
|
5084
5698
|
}>>;
|
5085
|
-
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
5086
5699
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5700
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
5701
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5087
5702
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5088
5703
|
id: string;
|
5089
5704
|
description: string;
|
@@ -5107,20 +5722,172 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5107
5722
|
};
|
5108
5723
|
validator: import(".").JSONSchema;
|
5109
5724
|
}>, "many">>>;
|
5725
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5726
|
+
id: string;
|
5727
|
+
description: string;
|
5728
|
+
defaultMessage: string;
|
5729
|
+
}>>;
|
5730
|
+
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5731
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5732
|
+
}, {
|
5733
|
+
type: z.ZodLiteral<"TIME">;
|
5734
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
5735
|
+
configuration: z.ZodOptional<z.ZodObject<{
|
5736
|
+
notice: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5737
|
+
id: string;
|
5738
|
+
description: string;
|
5739
|
+
defaultMessage: string;
|
5740
|
+
}>>;
|
5741
|
+
}, "strip", z.ZodTypeAny, {
|
5742
|
+
notice?: TranslationConfig | undefined;
|
5743
|
+
}, {
|
5744
|
+
notice?: {
|
5745
|
+
id: string;
|
5746
|
+
description: string;
|
5747
|
+
defaultMessage: string;
|
5748
|
+
} | undefined;
|
5749
|
+
}>>;
|
5750
|
+
}>, "strip", z.ZodTypeAny, {
|
5751
|
+
type: "TIME";
|
5752
|
+
id: string;
|
5753
|
+
label: TranslationConfig;
|
5754
|
+
parent?: {
|
5755
|
+
$$field: string;
|
5756
|
+
} | undefined;
|
5757
|
+
validation?: {
|
5758
|
+
message: TranslationConfig;
|
5759
|
+
validator: import(".").JSONSchema;
|
5760
|
+
}[] | undefined;
|
5761
|
+
required?: boolean | undefined;
|
5762
|
+
conditionals?: ({
|
5763
|
+
type: "SHOW";
|
5764
|
+
conditional: import(".").JSONSchema;
|
5765
|
+
} | {
|
5766
|
+
type: "ENABLE";
|
5767
|
+
conditional: import(".").JSONSchema;
|
5768
|
+
} | {
|
5769
|
+
type: "DISPLAY_ON_REVIEW";
|
5770
|
+
conditional: import(".").JSONSchema;
|
5771
|
+
})[] | undefined;
|
5772
|
+
secured?: boolean | undefined;
|
5773
|
+
placeholder?: TranslationConfig | undefined;
|
5774
|
+
helperText?: TranslationConfig | undefined;
|
5775
|
+
hideLabel?: boolean | undefined;
|
5776
|
+
uncorrectable?: boolean | undefined;
|
5777
|
+
defaultValue?: string | undefined;
|
5778
|
+
configuration?: {
|
5779
|
+
notice?: TranslationConfig | undefined;
|
5780
|
+
} | undefined;
|
5781
|
+
}, {
|
5782
|
+
type: "TIME";
|
5783
|
+
id: string;
|
5784
|
+
label: {
|
5785
|
+
id: string;
|
5786
|
+
description: string;
|
5787
|
+
defaultMessage: string;
|
5788
|
+
};
|
5789
|
+
parent?: {
|
5790
|
+
$$field: string;
|
5791
|
+
} | undefined;
|
5792
|
+
validation?: {
|
5793
|
+
message: {
|
5794
|
+
id: string;
|
5795
|
+
description: string;
|
5796
|
+
defaultMessage: string;
|
5797
|
+
};
|
5798
|
+
validator: import(".").JSONSchema;
|
5799
|
+
}[] | undefined;
|
5800
|
+
required?: boolean | undefined;
|
5801
|
+
conditionals?: ({
|
5802
|
+
type: "SHOW";
|
5803
|
+
conditional: import(".").JSONSchema;
|
5804
|
+
} | {
|
5805
|
+
type: "ENABLE";
|
5806
|
+
conditional: import(".").JSONSchema;
|
5807
|
+
} | {
|
5808
|
+
type: "DISPLAY_ON_REVIEW";
|
5809
|
+
conditional: import(".").JSONSchema;
|
5810
|
+
})[] | undefined;
|
5811
|
+
secured?: boolean | undefined;
|
5812
|
+
placeholder?: {
|
5813
|
+
id: string;
|
5814
|
+
description: string;
|
5815
|
+
defaultMessage: string;
|
5816
|
+
} | undefined;
|
5817
|
+
helperText?: {
|
5818
|
+
id: string;
|
5819
|
+
description: string;
|
5820
|
+
defaultMessage: string;
|
5821
|
+
} | undefined;
|
5822
|
+
hideLabel?: boolean | undefined;
|
5823
|
+
uncorrectable?: boolean | undefined;
|
5824
|
+
defaultValue?: string | undefined;
|
5825
|
+
configuration?: {
|
5826
|
+
notice?: {
|
5827
|
+
id: string;
|
5828
|
+
description: string;
|
5829
|
+
defaultMessage: string;
|
5830
|
+
} | undefined;
|
5831
|
+
} | undefined;
|
5832
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
5833
|
+
id: z.ZodString;
|
5110
5834
|
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5111
5835
|
id: string;
|
5112
5836
|
description: string;
|
5113
5837
|
defaultMessage: string;
|
5114
5838
|
}>;
|
5839
|
+
parent: z.ZodOptional<z.ZodObject<{
|
5840
|
+
$$field: z.ZodString;
|
5841
|
+
}, "strip", z.ZodTypeAny, {
|
5842
|
+
$$field: string;
|
5843
|
+
}, {
|
5844
|
+
$$field: string;
|
5845
|
+
}>>;
|
5846
|
+
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5847
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
5848
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5849
|
+
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5850
|
+
id: string;
|
5851
|
+
description: string;
|
5852
|
+
defaultMessage: string;
|
5853
|
+
}>>;
|
5854
|
+
validation: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodObject<{
|
5855
|
+
validator: z.ZodType<import(".").JSONSchema, z.ZodTypeDef, import(".").JSONSchema>;
|
5856
|
+
message: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5857
|
+
id: string;
|
5858
|
+
description: string;
|
5859
|
+
defaultMessage: string;
|
5860
|
+
}>;
|
5861
|
+
}, "strip", z.ZodTypeAny, {
|
5862
|
+
message: TranslationConfig;
|
5863
|
+
validator: import(".").JSONSchema;
|
5864
|
+
}, {
|
5865
|
+
message: {
|
5866
|
+
id: string;
|
5867
|
+
description: string;
|
5868
|
+
defaultMessage: string;
|
5869
|
+
};
|
5870
|
+
validator: import(".").JSONSchema;
|
5871
|
+
}>, "many">>>;
|
5115
5872
|
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5116
5873
|
id: string;
|
5117
5874
|
description: string;
|
5118
5875
|
defaultMessage: string;
|
5119
5876
|
}>>;
|
5120
5877
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5878
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5121
5879
|
}, {
|
5122
5880
|
type: z.ZodLiteral<"DATE_RANGE">;
|
5123
|
-
defaultValue: z.ZodOptional<z.ZodUnion<[z.
|
5881
|
+
defaultValue: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
5882
|
+
start: z.ZodString;
|
5883
|
+
end: z.ZodString;
|
5884
|
+
}, "strip", z.ZodTypeAny, {
|
5885
|
+
start: string;
|
5886
|
+
end: string;
|
5887
|
+
}, {
|
5888
|
+
start: string;
|
5889
|
+
end: string;
|
5890
|
+
}>, z.ZodString]>>;
|
5124
5891
|
configuration: z.ZodOptional<z.ZodObject<{
|
5125
5892
|
notice: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5126
5893
|
id: string;
|
@@ -5158,10 +5925,15 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5158
5925
|
type: "DISPLAY_ON_REVIEW";
|
5159
5926
|
conditional: import(".").JSONSchema;
|
5160
5927
|
})[] | undefined;
|
5928
|
+
secured?: boolean | undefined;
|
5161
5929
|
placeholder?: TranslationConfig | undefined;
|
5162
5930
|
helperText?: TranslationConfig | undefined;
|
5163
5931
|
hideLabel?: boolean | undefined;
|
5164
|
-
|
5932
|
+
uncorrectable?: boolean | undefined;
|
5933
|
+
defaultValue?: string | {
|
5934
|
+
start: string;
|
5935
|
+
end: string;
|
5936
|
+
} | undefined;
|
5165
5937
|
configuration?: {
|
5166
5938
|
notice?: TranslationConfig | undefined;
|
5167
5939
|
} | undefined;
|
@@ -5195,6 +5967,169 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5195
5967
|
type: "DISPLAY_ON_REVIEW";
|
5196
5968
|
conditional: import(".").JSONSchema;
|
5197
5969
|
})[] | undefined;
|
5970
|
+
secured?: boolean | undefined;
|
5971
|
+
placeholder?: {
|
5972
|
+
id: string;
|
5973
|
+
description: string;
|
5974
|
+
defaultMessage: string;
|
5975
|
+
} | undefined;
|
5976
|
+
helperText?: {
|
5977
|
+
id: string;
|
5978
|
+
description: string;
|
5979
|
+
defaultMessage: string;
|
5980
|
+
} | undefined;
|
5981
|
+
hideLabel?: boolean | undefined;
|
5982
|
+
uncorrectable?: boolean | undefined;
|
5983
|
+
defaultValue?: string | {
|
5984
|
+
start: string;
|
5985
|
+
end: string;
|
5986
|
+
} | undefined;
|
5987
|
+
configuration?: {
|
5988
|
+
notice?: {
|
5989
|
+
id: string;
|
5990
|
+
description: string;
|
5991
|
+
defaultMessage: string;
|
5992
|
+
} | undefined;
|
5993
|
+
} | undefined;
|
5994
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
5995
|
+
id: z.ZodString;
|
5996
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5997
|
+
id: string;
|
5998
|
+
description: string;
|
5999
|
+
defaultMessage: string;
|
6000
|
+
}>;
|
6001
|
+
parent: z.ZodOptional<z.ZodObject<{
|
6002
|
+
$$field: z.ZodString;
|
6003
|
+
}, "strip", z.ZodTypeAny, {
|
6004
|
+
$$field: string;
|
6005
|
+
}, {
|
6006
|
+
$$field: string;
|
6007
|
+
}>>;
|
6008
|
+
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6009
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
6010
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6011
|
+
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6012
|
+
id: string;
|
6013
|
+
description: string;
|
6014
|
+
defaultMessage: string;
|
6015
|
+
}>>;
|
6016
|
+
validation: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodObject<{
|
6017
|
+
validator: z.ZodType<import(".").JSONSchema, z.ZodTypeDef, import(".").JSONSchema>;
|
6018
|
+
message: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6019
|
+
id: string;
|
6020
|
+
description: string;
|
6021
|
+
defaultMessage: string;
|
6022
|
+
}>;
|
6023
|
+
}, "strip", z.ZodTypeAny, {
|
6024
|
+
message: TranslationConfig;
|
6025
|
+
validator: import(".").JSONSchema;
|
6026
|
+
}, {
|
6027
|
+
message: {
|
6028
|
+
id: string;
|
6029
|
+
description: string;
|
6030
|
+
defaultMessage: string;
|
6031
|
+
};
|
6032
|
+
validator: import(".").JSONSchema;
|
6033
|
+
}>, "many">>>;
|
6034
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6035
|
+
id: string;
|
6036
|
+
description: string;
|
6037
|
+
defaultMessage: string;
|
6038
|
+
}>>;
|
6039
|
+
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6040
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6041
|
+
}, {
|
6042
|
+
type: z.ZodLiteral<"SELECT_DATE_RANGE">;
|
6043
|
+
defaultValue: z.ZodOptional<z.ZodEnum<["last7Days", "last30Days", "last90Days", "last365Days"]>>;
|
6044
|
+
options: z.ZodArray<z.ZodObject<{
|
6045
|
+
value: z.ZodEnum<["last7Days", "last30Days", "last90Days", "last365Days"]>;
|
6046
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6047
|
+
id: string;
|
6048
|
+
description: string;
|
6049
|
+
defaultMessage: string;
|
6050
|
+
}>;
|
6051
|
+
}, "strip", z.ZodTypeAny, {
|
6052
|
+
value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
6053
|
+
label: TranslationConfig;
|
6054
|
+
}, {
|
6055
|
+
value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
6056
|
+
label: {
|
6057
|
+
id: string;
|
6058
|
+
description: string;
|
6059
|
+
defaultMessage: string;
|
6060
|
+
};
|
6061
|
+
}>, "many">;
|
6062
|
+
}>, "strip", z.ZodTypeAny, {
|
6063
|
+
type: "SELECT_DATE_RANGE";
|
6064
|
+
id: string;
|
6065
|
+
options: {
|
6066
|
+
value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
6067
|
+
label: TranslationConfig;
|
6068
|
+
}[];
|
6069
|
+
label: TranslationConfig;
|
6070
|
+
parent?: {
|
6071
|
+
$$field: string;
|
6072
|
+
} | undefined;
|
6073
|
+
validation?: {
|
6074
|
+
message: TranslationConfig;
|
6075
|
+
validator: import(".").JSONSchema;
|
6076
|
+
}[] | undefined;
|
6077
|
+
required?: boolean | undefined;
|
6078
|
+
conditionals?: ({
|
6079
|
+
type: "SHOW";
|
6080
|
+
conditional: import(".").JSONSchema;
|
6081
|
+
} | {
|
6082
|
+
type: "ENABLE";
|
6083
|
+
conditional: import(".").JSONSchema;
|
6084
|
+
} | {
|
6085
|
+
type: "DISPLAY_ON_REVIEW";
|
6086
|
+
conditional: import(".").JSONSchema;
|
6087
|
+
})[] | undefined;
|
6088
|
+
secured?: boolean | undefined;
|
6089
|
+
placeholder?: TranslationConfig | undefined;
|
6090
|
+
helperText?: TranslationConfig | undefined;
|
6091
|
+
hideLabel?: boolean | undefined;
|
6092
|
+
uncorrectable?: boolean | undefined;
|
6093
|
+
defaultValue?: "last7Days" | "last30Days" | "last90Days" | "last365Days" | undefined;
|
6094
|
+
}, {
|
6095
|
+
type: "SELECT_DATE_RANGE";
|
6096
|
+
id: string;
|
6097
|
+
options: {
|
6098
|
+
value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
6099
|
+
label: {
|
6100
|
+
id: string;
|
6101
|
+
description: string;
|
6102
|
+
defaultMessage: string;
|
6103
|
+
};
|
6104
|
+
}[];
|
6105
|
+
label: {
|
6106
|
+
id: string;
|
6107
|
+
description: string;
|
6108
|
+
defaultMessage: string;
|
6109
|
+
};
|
6110
|
+
parent?: {
|
6111
|
+
$$field: string;
|
6112
|
+
} | undefined;
|
6113
|
+
validation?: {
|
6114
|
+
message: {
|
6115
|
+
id: string;
|
6116
|
+
description: string;
|
6117
|
+
defaultMessage: string;
|
6118
|
+
};
|
6119
|
+
validator: import(".").JSONSchema;
|
6120
|
+
}[] | undefined;
|
6121
|
+
required?: boolean | undefined;
|
6122
|
+
conditionals?: ({
|
6123
|
+
type: "SHOW";
|
6124
|
+
conditional: import(".").JSONSchema;
|
6125
|
+
} | {
|
6126
|
+
type: "ENABLE";
|
6127
|
+
conditional: import(".").JSONSchema;
|
6128
|
+
} | {
|
6129
|
+
type: "DISPLAY_ON_REVIEW";
|
6130
|
+
conditional: import(".").JSONSchema;
|
6131
|
+
})[] | undefined;
|
6132
|
+
secured?: boolean | undefined;
|
5198
6133
|
placeholder?: {
|
5199
6134
|
id: string;
|
5200
6135
|
description: string;
|
@@ -5206,16 +6141,15 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5206
6141
|
defaultMessage: string;
|
5207
6142
|
} | undefined;
|
5208
6143
|
hideLabel?: boolean | undefined;
|
5209
|
-
|
5210
|
-
|
5211
|
-
notice?: {
|
5212
|
-
id: string;
|
5213
|
-
description: string;
|
5214
|
-
defaultMessage: string;
|
5215
|
-
} | undefined;
|
5216
|
-
} | undefined;
|
6144
|
+
uncorrectable?: boolean | undefined;
|
6145
|
+
defaultValue?: "last7Days" | "last30Days" | "last90Days" | "last365Days" | undefined;
|
5217
6146
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
5218
6147
|
id: z.ZodString;
|
6148
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6149
|
+
id: string;
|
6150
|
+
description: string;
|
6151
|
+
defaultMessage: string;
|
6152
|
+
}>;
|
5219
6153
|
parent: z.ZodOptional<z.ZodObject<{
|
5220
6154
|
$$field: z.ZodString;
|
5221
6155
|
}, "strip", z.ZodTypeAny, {
|
@@ -5223,8 +6157,9 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5223
6157
|
}, {
|
5224
6158
|
$$field: string;
|
5225
6159
|
}>>;
|
5226
|
-
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
5227
6160
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6161
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
6162
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5228
6163
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5229
6164
|
id: string;
|
5230
6165
|
description: string;
|
@@ -5248,35 +6183,36 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5248
6183
|
};
|
5249
6184
|
validator: import(".").JSONSchema;
|
5250
6185
|
}>, "many">>>;
|
5251
|
-
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5252
|
-
id: string;
|
5253
|
-
description: string;
|
5254
|
-
defaultMessage: string;
|
5255
|
-
}>;
|
5256
6186
|
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5257
6187
|
id: string;
|
5258
6188
|
description: string;
|
5259
6189
|
defaultMessage: string;
|
5260
6190
|
}>>;
|
5261
6191
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6192
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5262
6193
|
}, {
|
5263
6194
|
type: z.ZodLiteral<"PARAGRAPH">;
|
5264
6195
|
defaultValue: z.ZodOptional<z.ZodString>;
|
5265
6196
|
configuration: z.ZodDefault<z.ZodObject<{
|
5266
6197
|
styles: z.ZodOptional<z.ZodObject<{
|
5267
6198
|
fontVariant: z.ZodOptional<z.ZodEnum<["reg12", "reg14", "reg16", "reg18", "h4", "h3", "h2", "h1"]>>;
|
6199
|
+
hint: z.ZodOptional<z.ZodBoolean>;
|
5268
6200
|
}, "strip", z.ZodTypeAny, {
|
5269
6201
|
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
6202
|
+
hint?: boolean | undefined;
|
5270
6203
|
}, {
|
5271
6204
|
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
6205
|
+
hint?: boolean | undefined;
|
5272
6206
|
}>>;
|
5273
6207
|
}, "strip", z.ZodTypeAny, {
|
5274
6208
|
styles?: {
|
5275
6209
|
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
6210
|
+
hint?: boolean | undefined;
|
5276
6211
|
} | undefined;
|
5277
6212
|
}, {
|
5278
6213
|
styles?: {
|
5279
6214
|
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
6215
|
+
hint?: boolean | undefined;
|
5280
6216
|
} | undefined;
|
5281
6217
|
}>>;
|
5282
6218
|
}>, "strip", z.ZodTypeAny, {
|
@@ -5286,6 +6222,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5286
6222
|
configuration: {
|
5287
6223
|
styles?: {
|
5288
6224
|
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
6225
|
+
hint?: boolean | undefined;
|
5289
6226
|
} | undefined;
|
5290
6227
|
};
|
5291
6228
|
parent?: {
|
@@ -5306,9 +6243,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5306
6243
|
type: "DISPLAY_ON_REVIEW";
|
5307
6244
|
conditional: import(".").JSONSchema;
|
5308
6245
|
})[] | undefined;
|
6246
|
+
secured?: boolean | undefined;
|
5309
6247
|
placeholder?: TranslationConfig | undefined;
|
5310
6248
|
helperText?: TranslationConfig | undefined;
|
5311
6249
|
hideLabel?: boolean | undefined;
|
6250
|
+
uncorrectable?: boolean | undefined;
|
5312
6251
|
defaultValue?: string | undefined;
|
5313
6252
|
}, {
|
5314
6253
|
type: "PARAGRAPH";
|
@@ -5340,6 +6279,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5340
6279
|
type: "DISPLAY_ON_REVIEW";
|
5341
6280
|
conditional: import(".").JSONSchema;
|
5342
6281
|
})[] | undefined;
|
6282
|
+
secured?: boolean | undefined;
|
5343
6283
|
placeholder?: {
|
5344
6284
|
id: string;
|
5345
6285
|
description: string;
|
@@ -5351,14 +6291,21 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5351
6291
|
defaultMessage: string;
|
5352
6292
|
} | undefined;
|
5353
6293
|
hideLabel?: boolean | undefined;
|
6294
|
+
uncorrectable?: boolean | undefined;
|
5354
6295
|
defaultValue?: string | undefined;
|
5355
6296
|
configuration?: {
|
5356
6297
|
styles?: {
|
5357
6298
|
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
6299
|
+
hint?: boolean | undefined;
|
5358
6300
|
} | undefined;
|
5359
6301
|
} | undefined;
|
5360
6302
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
5361
6303
|
id: z.ZodString;
|
6304
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6305
|
+
id: string;
|
6306
|
+
description: string;
|
6307
|
+
defaultMessage: string;
|
6308
|
+
}>;
|
5362
6309
|
parent: z.ZodOptional<z.ZodObject<{
|
5363
6310
|
$$field: z.ZodString;
|
5364
6311
|
}, "strip", z.ZodTypeAny, {
|
@@ -5366,8 +6313,9 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5366
6313
|
}, {
|
5367
6314
|
$$field: string;
|
5368
6315
|
}>>;
|
5369
|
-
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
5370
6316
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6317
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
6318
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5371
6319
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5372
6320
|
id: string;
|
5373
6321
|
description: string;
|
@@ -5391,17 +6339,13 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5391
6339
|
};
|
5392
6340
|
validator: import(".").JSONSchema;
|
5393
6341
|
}>, "many">>>;
|
5394
|
-
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5395
|
-
id: string;
|
5396
|
-
description: string;
|
5397
|
-
defaultMessage: string;
|
5398
|
-
}>;
|
5399
6342
|
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5400
6343
|
id: string;
|
5401
6344
|
description: string;
|
5402
6345
|
defaultMessage: string;
|
5403
6346
|
}>>;
|
5404
6347
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6348
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5405
6349
|
}, {
|
5406
6350
|
type: z.ZodLiteral<"RADIO_GROUP">;
|
5407
6351
|
defaultValue: z.ZodOptional<z.ZodString>;
|
@@ -5466,9 +6410,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5466
6410
|
type: "DISPLAY_ON_REVIEW";
|
5467
6411
|
conditional: import(".").JSONSchema;
|
5468
6412
|
})[] | undefined;
|
6413
|
+
secured?: boolean | undefined;
|
5469
6414
|
placeholder?: TranslationConfig | undefined;
|
5470
6415
|
helperText?: TranslationConfig | undefined;
|
5471
6416
|
hideLabel?: boolean | undefined;
|
6417
|
+
uncorrectable?: boolean | undefined;
|
5472
6418
|
defaultValue?: string | undefined;
|
5473
6419
|
configuration?: {
|
5474
6420
|
styles?: {
|
@@ -5513,6 +6459,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5513
6459
|
type: "DISPLAY_ON_REVIEW";
|
5514
6460
|
conditional: import(".").JSONSchema;
|
5515
6461
|
})[] | undefined;
|
6462
|
+
secured?: boolean | undefined;
|
5516
6463
|
placeholder?: {
|
5517
6464
|
id: string;
|
5518
6465
|
description: string;
|
@@ -5524,6 +6471,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5524
6471
|
defaultMessage: string;
|
5525
6472
|
} | undefined;
|
5526
6473
|
hideLabel?: boolean | undefined;
|
6474
|
+
uncorrectable?: boolean | undefined;
|
5527
6475
|
defaultValue?: string | undefined;
|
5528
6476
|
configuration?: {
|
5529
6477
|
styles?: {
|
@@ -5532,6 +6480,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5532
6480
|
} | undefined;
|
5533
6481
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
5534
6482
|
id: z.ZodString;
|
6483
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6484
|
+
id: string;
|
6485
|
+
description: string;
|
6486
|
+
defaultMessage: string;
|
6487
|
+
}>;
|
5535
6488
|
parent: z.ZodOptional<z.ZodObject<{
|
5536
6489
|
$$field: z.ZodString;
|
5537
6490
|
}, "strip", z.ZodTypeAny, {
|
@@ -5539,8 +6492,9 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5539
6492
|
}, {
|
5540
6493
|
$$field: string;
|
5541
6494
|
}>>;
|
5542
|
-
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
5543
6495
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6496
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
6497
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5544
6498
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5545
6499
|
id: string;
|
5546
6500
|
description: string;
|
@@ -5564,17 +6518,13 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5564
6518
|
};
|
5565
6519
|
validator: import(".").JSONSchema;
|
5566
6520
|
}>, "many">>>;
|
5567
|
-
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5568
|
-
id: string;
|
5569
|
-
description: string;
|
5570
|
-
defaultMessage: string;
|
5571
|
-
}>;
|
5572
6521
|
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5573
6522
|
id: string;
|
5574
6523
|
description: string;
|
5575
6524
|
defaultMessage: string;
|
5576
6525
|
}>>;
|
5577
6526
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6527
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5578
6528
|
}, {
|
5579
6529
|
type: z.ZodLiteral<"BULLET_LIST">;
|
5580
6530
|
defaultValue: z.ZodOptional<z.ZodString>;
|
@@ -5628,9 +6578,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5628
6578
|
type: "DISPLAY_ON_REVIEW";
|
5629
6579
|
conditional: import(".").JSONSchema;
|
5630
6580
|
})[] | undefined;
|
6581
|
+
secured?: boolean | undefined;
|
5631
6582
|
placeholder?: TranslationConfig | undefined;
|
5632
6583
|
helperText?: TranslationConfig | undefined;
|
5633
6584
|
hideLabel?: boolean | undefined;
|
6585
|
+
uncorrectable?: boolean | undefined;
|
5634
6586
|
defaultValue?: string | undefined;
|
5635
6587
|
}, {
|
5636
6588
|
type: "BULLET_LIST";
|
@@ -5667,6 +6619,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5667
6619
|
type: "DISPLAY_ON_REVIEW";
|
5668
6620
|
conditional: import(".").JSONSchema;
|
5669
6621
|
})[] | undefined;
|
6622
|
+
secured?: boolean | undefined;
|
5670
6623
|
placeholder?: {
|
5671
6624
|
id: string;
|
5672
6625
|
description: string;
|
@@ -5678,6 +6631,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5678
6631
|
defaultMessage: string;
|
5679
6632
|
} | undefined;
|
5680
6633
|
hideLabel?: boolean | undefined;
|
6634
|
+
uncorrectable?: boolean | undefined;
|
5681
6635
|
defaultValue?: string | undefined;
|
5682
6636
|
configuration?: {
|
5683
6637
|
styles?: {
|
@@ -5686,6 +6640,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5686
6640
|
} | undefined;
|
5687
6641
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
5688
6642
|
id: z.ZodString;
|
6643
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6644
|
+
id: string;
|
6645
|
+
description: string;
|
6646
|
+
defaultMessage: string;
|
6647
|
+
}>;
|
5689
6648
|
parent: z.ZodOptional<z.ZodObject<{
|
5690
6649
|
$$field: z.ZodString;
|
5691
6650
|
}, "strip", z.ZodTypeAny, {
|
@@ -5693,8 +6652,9 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5693
6652
|
}, {
|
5694
6653
|
$$field: string;
|
5695
6654
|
}>>;
|
5696
|
-
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
5697
6655
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6656
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
6657
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5698
6658
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5699
6659
|
id: string;
|
5700
6660
|
description: string;
|
@@ -5718,17 +6678,13 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5718
6678
|
};
|
5719
6679
|
validator: import(".").JSONSchema;
|
5720
6680
|
}>, "many">>>;
|
5721
|
-
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5722
|
-
id: string;
|
5723
|
-
description: string;
|
5724
|
-
defaultMessage: string;
|
5725
|
-
}>;
|
5726
6681
|
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5727
6682
|
id: string;
|
5728
6683
|
description: string;
|
5729
6684
|
defaultMessage: string;
|
5730
6685
|
}>>;
|
5731
6686
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6687
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5732
6688
|
}, {
|
5733
6689
|
type: z.ZodLiteral<"PAGE_HEADER">;
|
5734
6690
|
defaultValue: z.ZodOptional<z.ZodString>;
|
@@ -5754,9 +6710,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5754
6710
|
type: "DISPLAY_ON_REVIEW";
|
5755
6711
|
conditional: import(".").JSONSchema;
|
5756
6712
|
})[] | undefined;
|
6713
|
+
secured?: boolean | undefined;
|
5757
6714
|
placeholder?: TranslationConfig | undefined;
|
5758
6715
|
helperText?: TranslationConfig | undefined;
|
5759
6716
|
hideLabel?: boolean | undefined;
|
6717
|
+
uncorrectable?: boolean | undefined;
|
5760
6718
|
defaultValue?: string | undefined;
|
5761
6719
|
}, {
|
5762
6720
|
type: "PAGE_HEADER";
|
@@ -5788,6 +6746,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5788
6746
|
type: "DISPLAY_ON_REVIEW";
|
5789
6747
|
conditional: import(".").JSONSchema;
|
5790
6748
|
})[] | undefined;
|
6749
|
+
secured?: boolean | undefined;
|
5791
6750
|
placeholder?: {
|
5792
6751
|
id: string;
|
5793
6752
|
description: string;
|
@@ -5799,9 +6758,15 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5799
6758
|
defaultMessage: string;
|
5800
6759
|
} | undefined;
|
5801
6760
|
hideLabel?: boolean | undefined;
|
6761
|
+
uncorrectable?: boolean | undefined;
|
5802
6762
|
defaultValue?: string | undefined;
|
5803
6763
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
5804
6764
|
id: z.ZodString;
|
6765
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6766
|
+
id: string;
|
6767
|
+
description: string;
|
6768
|
+
defaultMessage: string;
|
6769
|
+
}>;
|
5805
6770
|
parent: z.ZodOptional<z.ZodObject<{
|
5806
6771
|
$$field: z.ZodString;
|
5807
6772
|
}, "strip", z.ZodTypeAny, {
|
@@ -5809,8 +6774,9 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5809
6774
|
}, {
|
5810
6775
|
$$field: string;
|
5811
6776
|
}>>;
|
5812
|
-
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
5813
6777
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6778
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
6779
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5814
6780
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5815
6781
|
id: string;
|
5816
6782
|
description: string;
|
@@ -5834,17 +6800,13 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5834
6800
|
};
|
5835
6801
|
validator: import(".").JSONSchema;
|
5836
6802
|
}>, "many">>>;
|
5837
|
-
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5838
|
-
id: string;
|
5839
|
-
description: string;
|
5840
|
-
defaultMessage: string;
|
5841
|
-
}>;
|
5842
6803
|
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5843
6804
|
id: string;
|
5844
6805
|
description: string;
|
5845
6806
|
defaultMessage: string;
|
5846
6807
|
}>>;
|
5847
6808
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6809
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5848
6810
|
}, {
|
5849
6811
|
type: z.ZodLiteral<"SELECT">;
|
5850
6812
|
defaultValue: z.ZodOptional<z.ZodString>;
|
@@ -5892,9 +6854,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5892
6854
|
type: "DISPLAY_ON_REVIEW";
|
5893
6855
|
conditional: import(".").JSONSchema;
|
5894
6856
|
})[] | undefined;
|
6857
|
+
secured?: boolean | undefined;
|
5895
6858
|
placeholder?: TranslationConfig | undefined;
|
5896
6859
|
helperText?: TranslationConfig | undefined;
|
5897
6860
|
hideLabel?: boolean | undefined;
|
6861
|
+
uncorrectable?: boolean | undefined;
|
5898
6862
|
defaultValue?: string | undefined;
|
5899
6863
|
}, {
|
5900
6864
|
type: "SELECT";
|
@@ -5934,6 +6898,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5934
6898
|
type: "DISPLAY_ON_REVIEW";
|
5935
6899
|
conditional: import(".").JSONSchema;
|
5936
6900
|
})[] | undefined;
|
6901
|
+
secured?: boolean | undefined;
|
5937
6902
|
placeholder?: {
|
5938
6903
|
id: string;
|
5939
6904
|
description: string;
|
@@ -5945,9 +6910,15 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5945
6910
|
defaultMessage: string;
|
5946
6911
|
} | undefined;
|
5947
6912
|
hideLabel?: boolean | undefined;
|
6913
|
+
uncorrectable?: boolean | undefined;
|
5948
6914
|
defaultValue?: string | undefined;
|
5949
6915
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
5950
6916
|
id: z.ZodString;
|
6917
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6918
|
+
id: string;
|
6919
|
+
description: string;
|
6920
|
+
defaultMessage: string;
|
6921
|
+
}>;
|
5951
6922
|
parent: z.ZodOptional<z.ZodObject<{
|
5952
6923
|
$$field: z.ZodString;
|
5953
6924
|
}, "strip", z.ZodTypeAny, {
|
@@ -5955,8 +6926,9 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5955
6926
|
}, {
|
5956
6927
|
$$field: string;
|
5957
6928
|
}>>;
|
5958
|
-
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
5959
6929
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6930
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
6931
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5960
6932
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5961
6933
|
id: string;
|
5962
6934
|
description: string;
|
@@ -5980,17 +6952,13 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5980
6952
|
};
|
5981
6953
|
validator: import(".").JSONSchema;
|
5982
6954
|
}>, "many">>>;
|
5983
|
-
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5984
|
-
id: string;
|
5985
|
-
description: string;
|
5986
|
-
defaultMessage: string;
|
5987
|
-
}>;
|
5988
6955
|
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5989
6956
|
id: string;
|
5990
6957
|
description: string;
|
5991
6958
|
defaultMessage: string;
|
5992
6959
|
}>>;
|
5993
6960
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6961
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5994
6962
|
}, {
|
5995
6963
|
type: z.ZodLiteral<"NAME">;
|
5996
6964
|
defaultValue: z.ZodOptional<z.ZodObject<{
|
@@ -6015,10 +6983,14 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6015
6983
|
description: string;
|
6016
6984
|
defaultMessage: string;
|
6017
6985
|
}>>;
|
6986
|
+
includeMiddlename: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6987
|
+
searchMode: z.ZodOptional<z.ZodBoolean>;
|
6018
6988
|
}, "strip", z.ZodTypeAny, {
|
6019
6989
|
maxLength?: number | undefined;
|
6020
6990
|
prefix?: TranslationConfig | undefined;
|
6021
6991
|
postfix?: TranslationConfig | undefined;
|
6992
|
+
includeMiddlename?: boolean | undefined;
|
6993
|
+
searchMode?: boolean | undefined;
|
6022
6994
|
}, {
|
6023
6995
|
maxLength?: number | undefined;
|
6024
6996
|
prefix?: {
|
@@ -6031,6 +7003,8 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6031
7003
|
description: string;
|
6032
7004
|
defaultMessage: string;
|
6033
7005
|
} | undefined;
|
7006
|
+
includeMiddlename?: boolean | undefined;
|
7007
|
+
searchMode?: boolean | undefined;
|
6034
7008
|
}>>;
|
6035
7009
|
}>, "strip", z.ZodTypeAny, {
|
6036
7010
|
type: "NAME";
|
@@ -6054,9 +7028,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6054
7028
|
type: "DISPLAY_ON_REVIEW";
|
6055
7029
|
conditional: import(".").JSONSchema;
|
6056
7030
|
})[] | undefined;
|
7031
|
+
secured?: boolean | undefined;
|
6057
7032
|
placeholder?: TranslationConfig | undefined;
|
6058
7033
|
helperText?: TranslationConfig | undefined;
|
6059
7034
|
hideLabel?: boolean | undefined;
|
7035
|
+
uncorrectable?: boolean | undefined;
|
6060
7036
|
defaultValue?: {
|
6061
7037
|
firstname: string;
|
6062
7038
|
surname: string;
|
@@ -6065,6 +7041,8 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6065
7041
|
maxLength?: number | undefined;
|
6066
7042
|
prefix?: TranslationConfig | undefined;
|
6067
7043
|
postfix?: TranslationConfig | undefined;
|
7044
|
+
includeMiddlename?: boolean | undefined;
|
7045
|
+
searchMode?: boolean | undefined;
|
6068
7046
|
} | undefined;
|
6069
7047
|
}, {
|
6070
7048
|
type: "NAME";
|
@@ -6096,6 +7074,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6096
7074
|
type: "DISPLAY_ON_REVIEW";
|
6097
7075
|
conditional: import(".").JSONSchema;
|
6098
7076
|
})[] | undefined;
|
7077
|
+
secured?: boolean | undefined;
|
6099
7078
|
placeholder?: {
|
6100
7079
|
id: string;
|
6101
7080
|
description: string;
|
@@ -6107,6 +7086,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6107
7086
|
defaultMessage: string;
|
6108
7087
|
} | undefined;
|
6109
7088
|
hideLabel?: boolean | undefined;
|
7089
|
+
uncorrectable?: boolean | undefined;
|
6110
7090
|
defaultValue?: {
|
6111
7091
|
firstname: string;
|
6112
7092
|
surname: string;
|
@@ -6123,9 +7103,16 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6123
7103
|
description: string;
|
6124
7104
|
defaultMessage: string;
|
6125
7105
|
} | undefined;
|
7106
|
+
includeMiddlename?: boolean | undefined;
|
7107
|
+
searchMode?: boolean | undefined;
|
6126
7108
|
} | undefined;
|
6127
7109
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
6128
7110
|
id: z.ZodString;
|
7111
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7112
|
+
id: string;
|
7113
|
+
description: string;
|
7114
|
+
defaultMessage: string;
|
7115
|
+
}>;
|
6129
7116
|
parent: z.ZodOptional<z.ZodObject<{
|
6130
7117
|
$$field: z.ZodString;
|
6131
7118
|
}, "strip", z.ZodTypeAny, {
|
@@ -6133,8 +7120,9 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6133
7120
|
}, {
|
6134
7121
|
$$field: string;
|
6135
7122
|
}>>;
|
6136
|
-
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
6137
7123
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7124
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
7125
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6138
7126
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6139
7127
|
id: string;
|
6140
7128
|
description: string;
|
@@ -6158,17 +7146,13 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6158
7146
|
};
|
6159
7147
|
validator: import(".").JSONSchema;
|
6160
7148
|
}>, "many">>>;
|
6161
|
-
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6162
|
-
id: string;
|
6163
|
-
description: string;
|
6164
|
-
defaultMessage: string;
|
6165
|
-
}>;
|
6166
7149
|
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6167
7150
|
id: string;
|
6168
7151
|
description: string;
|
6169
7152
|
defaultMessage: string;
|
6170
7153
|
}>>;
|
6171
7154
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7155
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6172
7156
|
}, {
|
6173
7157
|
defaultValue: z.ZodOptional<z.ZodString>;
|
6174
7158
|
type: z.ZodLiteral<"PHONE">;
|
@@ -6194,9 +7178,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6194
7178
|
type: "DISPLAY_ON_REVIEW";
|
6195
7179
|
conditional: import(".").JSONSchema;
|
6196
7180
|
})[] | undefined;
|
7181
|
+
secured?: boolean | undefined;
|
6197
7182
|
placeholder?: TranslationConfig | undefined;
|
6198
7183
|
helperText?: TranslationConfig | undefined;
|
6199
7184
|
hideLabel?: boolean | undefined;
|
7185
|
+
uncorrectable?: boolean | undefined;
|
6200
7186
|
defaultValue?: string | undefined;
|
6201
7187
|
}, {
|
6202
7188
|
type: "PHONE";
|
@@ -6228,6 +7214,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6228
7214
|
type: "DISPLAY_ON_REVIEW";
|
6229
7215
|
conditional: import(".").JSONSchema;
|
6230
7216
|
})[] | undefined;
|
7217
|
+
secured?: boolean | undefined;
|
6231
7218
|
placeholder?: {
|
6232
7219
|
id: string;
|
6233
7220
|
description: string;
|
@@ -6239,9 +7226,15 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6239
7226
|
defaultMessage: string;
|
6240
7227
|
} | undefined;
|
6241
7228
|
hideLabel?: boolean | undefined;
|
7229
|
+
uncorrectable?: boolean | undefined;
|
6242
7230
|
defaultValue?: string | undefined;
|
6243
7231
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
6244
7232
|
id: z.ZodString;
|
7233
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7234
|
+
id: string;
|
7235
|
+
description: string;
|
7236
|
+
defaultMessage: string;
|
7237
|
+
}>;
|
6245
7238
|
parent: z.ZodOptional<z.ZodObject<{
|
6246
7239
|
$$field: z.ZodString;
|
6247
7240
|
}, "strip", z.ZodTypeAny, {
|
@@ -6249,8 +7242,9 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6249
7242
|
}, {
|
6250
7243
|
$$field: string;
|
6251
7244
|
}>>;
|
6252
|
-
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
6253
7245
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7246
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
7247
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6254
7248
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6255
7249
|
id: string;
|
6256
7250
|
description: string;
|
@@ -6274,17 +7268,13 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6274
7268
|
};
|
6275
7269
|
validator: import(".").JSONSchema;
|
6276
7270
|
}>, "many">>>;
|
6277
|
-
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6278
|
-
id: string;
|
6279
|
-
description: string;
|
6280
|
-
defaultMessage: string;
|
6281
|
-
}>;
|
6282
7271
|
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6283
7272
|
id: string;
|
6284
7273
|
description: string;
|
6285
7274
|
defaultMessage: string;
|
6286
7275
|
}>>;
|
6287
7276
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7277
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6288
7278
|
}, {
|
6289
7279
|
defaultValue: z.ZodOptional<z.ZodString>;
|
6290
7280
|
type: z.ZodLiteral<"ID">;
|
@@ -6310,9 +7300,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6310
7300
|
type: "DISPLAY_ON_REVIEW";
|
6311
7301
|
conditional: import(".").JSONSchema;
|
6312
7302
|
})[] | undefined;
|
7303
|
+
secured?: boolean | undefined;
|
6313
7304
|
placeholder?: TranslationConfig | undefined;
|
6314
7305
|
helperText?: TranslationConfig | undefined;
|
6315
7306
|
hideLabel?: boolean | undefined;
|
7307
|
+
uncorrectable?: boolean | undefined;
|
6316
7308
|
defaultValue?: string | undefined;
|
6317
7309
|
}, {
|
6318
7310
|
type: "ID";
|
@@ -6344,6 +7336,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6344
7336
|
type: "DISPLAY_ON_REVIEW";
|
6345
7337
|
conditional: import(".").JSONSchema;
|
6346
7338
|
})[] | undefined;
|
7339
|
+
secured?: boolean | undefined;
|
6347
7340
|
placeholder?: {
|
6348
7341
|
id: string;
|
6349
7342
|
description: string;
|
@@ -6355,9 +7348,15 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6355
7348
|
defaultMessage: string;
|
6356
7349
|
} | undefined;
|
6357
7350
|
hideLabel?: boolean | undefined;
|
7351
|
+
uncorrectable?: boolean | undefined;
|
6358
7352
|
defaultValue?: string | undefined;
|
6359
7353
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
6360
7354
|
id: z.ZodString;
|
7355
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7356
|
+
id: string;
|
7357
|
+
description: string;
|
7358
|
+
defaultMessage: string;
|
7359
|
+
}>;
|
6361
7360
|
parent: z.ZodOptional<z.ZodObject<{
|
6362
7361
|
$$field: z.ZodString;
|
6363
7362
|
}, "strip", z.ZodTypeAny, {
|
@@ -6365,8 +7364,9 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6365
7364
|
}, {
|
6366
7365
|
$$field: string;
|
6367
7366
|
}>>;
|
6368
|
-
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
6369
7367
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7368
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
7369
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6370
7370
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6371
7371
|
id: string;
|
6372
7372
|
description: string;
|
@@ -6390,17 +7390,13 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6390
7390
|
};
|
6391
7391
|
validator: import(".").JSONSchema;
|
6392
7392
|
}>, "many">>>;
|
6393
|
-
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6394
|
-
id: string;
|
6395
|
-
description: string;
|
6396
|
-
defaultMessage: string;
|
6397
|
-
}>;
|
6398
7393
|
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6399
7394
|
id: string;
|
6400
7395
|
description: string;
|
6401
7396
|
defaultMessage: string;
|
6402
7397
|
}>>;
|
6403
7398
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7399
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6404
7400
|
}, {
|
6405
7401
|
type: z.ZodLiteral<"CHECKBOX">;
|
6406
7402
|
defaultValue: z.ZodOptional<z.ZodBoolean>;
|
@@ -6426,9 +7422,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6426
7422
|
type: "DISPLAY_ON_REVIEW";
|
6427
7423
|
conditional: import(".").JSONSchema;
|
6428
7424
|
})[] | undefined;
|
7425
|
+
secured?: boolean | undefined;
|
6429
7426
|
placeholder?: TranslationConfig | undefined;
|
6430
7427
|
helperText?: TranslationConfig | undefined;
|
6431
7428
|
hideLabel?: boolean | undefined;
|
7429
|
+
uncorrectable?: boolean | undefined;
|
6432
7430
|
defaultValue?: boolean | undefined;
|
6433
7431
|
}, {
|
6434
7432
|
type: "CHECKBOX";
|
@@ -6460,6 +7458,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6460
7458
|
type: "DISPLAY_ON_REVIEW";
|
6461
7459
|
conditional: import(".").JSONSchema;
|
6462
7460
|
})[] | undefined;
|
7461
|
+
secured?: boolean | undefined;
|
6463
7462
|
placeholder?: {
|
6464
7463
|
id: string;
|
6465
7464
|
description: string;
|
@@ -6471,9 +7470,15 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6471
7470
|
defaultMessage: string;
|
6472
7471
|
} | undefined;
|
6473
7472
|
hideLabel?: boolean | undefined;
|
7473
|
+
uncorrectable?: boolean | undefined;
|
6474
7474
|
defaultValue?: boolean | undefined;
|
6475
7475
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
6476
7476
|
id: z.ZodString;
|
7477
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7478
|
+
id: string;
|
7479
|
+
description: string;
|
7480
|
+
defaultMessage: string;
|
7481
|
+
}>;
|
6477
7482
|
parent: z.ZodOptional<z.ZodObject<{
|
6478
7483
|
$$field: z.ZodString;
|
6479
7484
|
}, "strip", z.ZodTypeAny, {
|
@@ -6481,8 +7486,9 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6481
7486
|
}, {
|
6482
7487
|
$$field: string;
|
6483
7488
|
}>>;
|
6484
|
-
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
6485
7489
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7490
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
7491
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6486
7492
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6487
7493
|
id: string;
|
6488
7494
|
description: string;
|
@@ -6506,30 +7512,26 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6506
7512
|
};
|
6507
7513
|
validator: import(".").JSONSchema;
|
6508
7514
|
}>, "many">>>;
|
6509
|
-
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6510
|
-
id: string;
|
6511
|
-
description: string;
|
6512
|
-
defaultMessage: string;
|
6513
|
-
}>;
|
6514
7515
|
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6515
7516
|
id: string;
|
6516
7517
|
description: string;
|
6517
7518
|
defaultMessage: string;
|
6518
7519
|
}>>;
|
6519
7520
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7521
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6520
7522
|
}, {
|
6521
7523
|
type: z.ZodLiteral<"FILE">;
|
6522
7524
|
defaultValue: z.ZodOptional<z.ZodObject<{
|
6523
|
-
|
7525
|
+
path: z.ZodEffects<z.ZodString, string, string>;
|
6524
7526
|
originalFilename: z.ZodString;
|
6525
7527
|
type: z.ZodString;
|
6526
7528
|
}, "strip", z.ZodTypeAny, {
|
6527
7529
|
type: string;
|
6528
|
-
|
7530
|
+
path: string;
|
6529
7531
|
originalFilename: string;
|
6530
7532
|
}, {
|
6531
7533
|
type: string;
|
6532
|
-
|
7534
|
+
path: string;
|
6533
7535
|
originalFilename: string;
|
6534
7536
|
}>>;
|
6535
7537
|
configuration: z.ZodDefault<z.ZodObject<{
|
@@ -6596,12 +7598,14 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6596
7598
|
type: "DISPLAY_ON_REVIEW";
|
6597
7599
|
conditional: import(".").JSONSchema;
|
6598
7600
|
})[] | undefined;
|
7601
|
+
secured?: boolean | undefined;
|
6599
7602
|
placeholder?: TranslationConfig | undefined;
|
6600
7603
|
helperText?: TranslationConfig | undefined;
|
6601
7604
|
hideLabel?: boolean | undefined;
|
7605
|
+
uncorrectable?: boolean | undefined;
|
6602
7606
|
defaultValue?: {
|
6603
7607
|
type: string;
|
6604
|
-
|
7608
|
+
path: string;
|
6605
7609
|
originalFilename: string;
|
6606
7610
|
} | undefined;
|
6607
7611
|
}, {
|
@@ -6634,6 +7638,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6634
7638
|
type: "DISPLAY_ON_REVIEW";
|
6635
7639
|
conditional: import(".").JSONSchema;
|
6636
7640
|
})[] | undefined;
|
7641
|
+
secured?: boolean | undefined;
|
6637
7642
|
placeholder?: {
|
6638
7643
|
id: string;
|
6639
7644
|
description: string;
|
@@ -6645,9 +7650,10 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6645
7650
|
defaultMessage: string;
|
6646
7651
|
} | undefined;
|
6647
7652
|
hideLabel?: boolean | undefined;
|
7653
|
+
uncorrectable?: boolean | undefined;
|
6648
7654
|
defaultValue?: {
|
6649
7655
|
type: string;
|
6650
|
-
|
7656
|
+
path: string;
|
6651
7657
|
originalFilename: string;
|
6652
7658
|
} | undefined;
|
6653
7659
|
configuration?: {
|
@@ -6664,6 +7670,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6664
7670
|
} | undefined;
|
6665
7671
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
6666
7672
|
id: z.ZodString;
|
7673
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7674
|
+
id: string;
|
7675
|
+
description: string;
|
7676
|
+
defaultMessage: string;
|
7677
|
+
}>;
|
6667
7678
|
parent: z.ZodOptional<z.ZodObject<{
|
6668
7679
|
$$field: z.ZodString;
|
6669
7680
|
}, "strip", z.ZodTypeAny, {
|
@@ -6671,8 +7682,9 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6671
7682
|
}, {
|
6672
7683
|
$$field: string;
|
6673
7684
|
}>>;
|
6674
|
-
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
6675
7685
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7686
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
7687
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6676
7688
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6677
7689
|
id: string;
|
6678
7690
|
description: string;
|
@@ -6696,17 +7708,13 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6696
7708
|
};
|
6697
7709
|
validator: import(".").JSONSchema;
|
6698
7710
|
}>, "many">>>;
|
6699
|
-
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6700
|
-
id: string;
|
6701
|
-
description: string;
|
6702
|
-
defaultMessage: string;
|
6703
|
-
}>;
|
6704
7711
|
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6705
7712
|
id: string;
|
6706
7713
|
description: string;
|
6707
7714
|
defaultMessage: string;
|
6708
7715
|
}>>;
|
6709
7716
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7717
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6710
7718
|
}, {
|
6711
7719
|
type: z.ZodLiteral<"COUNTRY">;
|
6712
7720
|
defaultValue: z.ZodOptional<z.ZodString>;
|
@@ -6732,9 +7740,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6732
7740
|
type: "DISPLAY_ON_REVIEW";
|
6733
7741
|
conditional: import(".").JSONSchema;
|
6734
7742
|
})[] | undefined;
|
7743
|
+
secured?: boolean | undefined;
|
6735
7744
|
placeholder?: TranslationConfig | undefined;
|
6736
7745
|
helperText?: TranslationConfig | undefined;
|
6737
7746
|
hideLabel?: boolean | undefined;
|
7747
|
+
uncorrectable?: boolean | undefined;
|
6738
7748
|
defaultValue?: string | undefined;
|
6739
7749
|
}, {
|
6740
7750
|
type: "COUNTRY";
|
@@ -6766,6 +7776,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6766
7776
|
type: "DISPLAY_ON_REVIEW";
|
6767
7777
|
conditional: import(".").JSONSchema;
|
6768
7778
|
})[] | undefined;
|
7779
|
+
secured?: boolean | undefined;
|
6769
7780
|
placeholder?: {
|
6770
7781
|
id: string;
|
6771
7782
|
description: string;
|
@@ -6777,9 +7788,15 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6777
7788
|
defaultMessage: string;
|
6778
7789
|
} | undefined;
|
6779
7790
|
hideLabel?: boolean | undefined;
|
7791
|
+
uncorrectable?: boolean | undefined;
|
6780
7792
|
defaultValue?: string | undefined;
|
6781
7793
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
6782
7794
|
id: z.ZodString;
|
7795
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7796
|
+
id: string;
|
7797
|
+
description: string;
|
7798
|
+
defaultMessage: string;
|
7799
|
+
}>;
|
6783
7800
|
parent: z.ZodOptional<z.ZodObject<{
|
6784
7801
|
$$field: z.ZodString;
|
6785
7802
|
}, "strip", z.ZodTypeAny, {
|
@@ -6787,8 +7804,9 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6787
7804
|
}, {
|
6788
7805
|
$$field: string;
|
6789
7806
|
}>>;
|
6790
|
-
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
6791
7807
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7808
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
7809
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6792
7810
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6793
7811
|
id: string;
|
6794
7812
|
description: string;
|
@@ -6812,17 +7830,13 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6812
7830
|
};
|
6813
7831
|
validator: import(".").JSONSchema;
|
6814
7832
|
}>, "many">>>;
|
6815
|
-
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6816
|
-
id: string;
|
6817
|
-
description: string;
|
6818
|
-
defaultMessage: string;
|
6819
|
-
}>;
|
6820
7833
|
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6821
7834
|
id: string;
|
6822
7835
|
description: string;
|
6823
7836
|
defaultMessage: string;
|
6824
7837
|
}>>;
|
6825
7838
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7839
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6826
7840
|
}, {
|
6827
7841
|
type: z.ZodLiteral<"ADMINISTRATIVE_AREA">;
|
6828
7842
|
defaultValue: z.ZodOptional<z.ZodString>;
|
@@ -6874,9 +7888,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6874
7888
|
type: "DISPLAY_ON_REVIEW";
|
6875
7889
|
conditional: import(".").JSONSchema;
|
6876
7890
|
})[] | undefined;
|
7891
|
+
secured?: boolean | undefined;
|
6877
7892
|
placeholder?: TranslationConfig | undefined;
|
6878
7893
|
helperText?: TranslationConfig | undefined;
|
6879
7894
|
hideLabel?: boolean | undefined;
|
7895
|
+
uncorrectable?: boolean | undefined;
|
6880
7896
|
defaultValue?: string | undefined;
|
6881
7897
|
}, {
|
6882
7898
|
type: "ADMINISTRATIVE_AREA";
|
@@ -6914,6 +7930,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6914
7930
|
type: "DISPLAY_ON_REVIEW";
|
6915
7931
|
conditional: import(".").JSONSchema;
|
6916
7932
|
})[] | undefined;
|
7933
|
+
secured?: boolean | undefined;
|
6917
7934
|
placeholder?: {
|
6918
7935
|
id: string;
|
6919
7936
|
description: string;
|
@@ -6925,9 +7942,15 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6925
7942
|
defaultMessage: string;
|
6926
7943
|
} | undefined;
|
6927
7944
|
hideLabel?: boolean | undefined;
|
7945
|
+
uncorrectable?: boolean | undefined;
|
6928
7946
|
defaultValue?: string | undefined;
|
6929
7947
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
6930
7948
|
id: z.ZodString;
|
7949
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7950
|
+
id: string;
|
7951
|
+
description: string;
|
7952
|
+
defaultMessage: string;
|
7953
|
+
}>;
|
6931
7954
|
parent: z.ZodOptional<z.ZodObject<{
|
6932
7955
|
$$field: z.ZodString;
|
6933
7956
|
}, "strip", z.ZodTypeAny, {
|
@@ -6935,8 +7958,9 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6935
7958
|
}, {
|
6936
7959
|
$$field: string;
|
6937
7960
|
}>>;
|
6938
|
-
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
6939
7961
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7962
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
7963
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6940
7964
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6941
7965
|
id: string;
|
6942
7966
|
description: string;
|
@@ -6960,17 +7984,13 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6960
7984
|
};
|
6961
7985
|
validator: import(".").JSONSchema;
|
6962
7986
|
}>, "many">>>;
|
6963
|
-
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6964
|
-
id: string;
|
6965
|
-
description: string;
|
6966
|
-
defaultMessage: string;
|
6967
|
-
}>;
|
6968
7987
|
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6969
7988
|
id: string;
|
6970
7989
|
description: string;
|
6971
7990
|
defaultMessage: string;
|
6972
7991
|
}>>;
|
6973
7992
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7993
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6974
7994
|
}, {
|
6975
7995
|
type: z.ZodLiteral<"DIVIDER">;
|
6976
7996
|
}>, "strip", z.ZodTypeAny, {
|
@@ -6995,9 +8015,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6995
8015
|
type: "DISPLAY_ON_REVIEW";
|
6996
8016
|
conditional: import(".").JSONSchema;
|
6997
8017
|
})[] | undefined;
|
8018
|
+
secured?: boolean | undefined;
|
6998
8019
|
placeholder?: TranslationConfig | undefined;
|
6999
8020
|
helperText?: TranslationConfig | undefined;
|
7000
8021
|
hideLabel?: boolean | undefined;
|
8022
|
+
uncorrectable?: boolean | undefined;
|
7001
8023
|
}, {
|
7002
8024
|
type: "DIVIDER";
|
7003
8025
|
id: string;
|
@@ -7028,6 +8050,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7028
8050
|
type: "DISPLAY_ON_REVIEW";
|
7029
8051
|
conditional: import(".").JSONSchema;
|
7030
8052
|
})[] | undefined;
|
8053
|
+
secured?: boolean | undefined;
|
7031
8054
|
placeholder?: {
|
7032
8055
|
id: string;
|
7033
8056
|
description: string;
|
@@ -7039,8 +8062,14 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7039
8062
|
defaultMessage: string;
|
7040
8063
|
} | undefined;
|
7041
8064
|
hideLabel?: boolean | undefined;
|
8065
|
+
uncorrectable?: boolean | undefined;
|
7042
8066
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
7043
8067
|
id: z.ZodString;
|
8068
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
8069
|
+
id: string;
|
8070
|
+
description: string;
|
8071
|
+
defaultMessage: string;
|
8072
|
+
}>;
|
7044
8073
|
parent: z.ZodOptional<z.ZodObject<{
|
7045
8074
|
$$field: z.ZodString;
|
7046
8075
|
}, "strip", z.ZodTypeAny, {
|
@@ -7048,8 +8077,9 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7048
8077
|
}, {
|
7049
8078
|
$$field: string;
|
7050
8079
|
}>>;
|
7051
|
-
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
7052
8080
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
8081
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
8082
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7053
8083
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7054
8084
|
id: string;
|
7055
8085
|
description: string;
|
@@ -7073,20 +8103,23 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7073
8103
|
};
|
7074
8104
|
validator: import(".").JSONSchema;
|
7075
8105
|
}>, "many">>>;
|
7076
|
-
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7077
|
-
id: string;
|
7078
|
-
description: string;
|
7079
|
-
defaultMessage: string;
|
7080
|
-
}>;
|
7081
8106
|
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7082
8107
|
id: string;
|
7083
8108
|
description: string;
|
7084
8109
|
defaultMessage: string;
|
7085
8110
|
}>>;
|
7086
8111
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
8112
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7087
8113
|
}, {
|
7088
8114
|
type: z.ZodLiteral<"LOCATION">;
|
7089
8115
|
defaultValue: z.ZodOptional<z.ZodString>;
|
8116
|
+
configuration: z.ZodOptional<z.ZodObject<{
|
8117
|
+
searchableResource: z.ZodOptional<z.ZodArray<z.ZodEnum<["locations", "facilities", "offices"]>, "many">>;
|
8118
|
+
}, "strip", z.ZodTypeAny, {
|
8119
|
+
searchableResource?: ("locations" | "facilities" | "offices")[] | undefined;
|
8120
|
+
}, {
|
8121
|
+
searchableResource?: ("locations" | "facilities" | "offices")[] | undefined;
|
8122
|
+
}>>;
|
7090
8123
|
}>, "strip", z.ZodTypeAny, {
|
7091
8124
|
type: "LOCATION";
|
7092
8125
|
id: string;
|
@@ -7109,10 +8142,15 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7109
8142
|
type: "DISPLAY_ON_REVIEW";
|
7110
8143
|
conditional: import(".").JSONSchema;
|
7111
8144
|
})[] | undefined;
|
8145
|
+
secured?: boolean | undefined;
|
7112
8146
|
placeholder?: TranslationConfig | undefined;
|
7113
8147
|
helperText?: TranslationConfig | undefined;
|
7114
8148
|
hideLabel?: boolean | undefined;
|
8149
|
+
uncorrectable?: boolean | undefined;
|
7115
8150
|
defaultValue?: string | undefined;
|
8151
|
+
configuration?: {
|
8152
|
+
searchableResource?: ("locations" | "facilities" | "offices")[] | undefined;
|
8153
|
+
} | undefined;
|
7116
8154
|
}, {
|
7117
8155
|
type: "LOCATION";
|
7118
8156
|
id: string;
|
@@ -7143,6 +8181,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7143
8181
|
type: "DISPLAY_ON_REVIEW";
|
7144
8182
|
conditional: import(".").JSONSchema;
|
7145
8183
|
})[] | undefined;
|
8184
|
+
secured?: boolean | undefined;
|
7146
8185
|
placeholder?: {
|
7147
8186
|
id: string;
|
7148
8187
|
description: string;
|
@@ -7154,9 +8193,18 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7154
8193
|
defaultMessage: string;
|
7155
8194
|
} | undefined;
|
7156
8195
|
hideLabel?: boolean | undefined;
|
8196
|
+
uncorrectable?: boolean | undefined;
|
7157
8197
|
defaultValue?: string | undefined;
|
8198
|
+
configuration?: {
|
8199
|
+
searchableResource?: ("locations" | "facilities" | "offices")[] | undefined;
|
8200
|
+
} | undefined;
|
7158
8201
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
7159
8202
|
id: z.ZodString;
|
8203
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
8204
|
+
id: string;
|
8205
|
+
description: string;
|
8206
|
+
defaultMessage: string;
|
8207
|
+
}>;
|
7160
8208
|
parent: z.ZodOptional<z.ZodObject<{
|
7161
8209
|
$$field: z.ZodString;
|
7162
8210
|
}, "strip", z.ZodTypeAny, {
|
@@ -7164,8 +8212,9 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7164
8212
|
}, {
|
7165
8213
|
$$field: string;
|
7166
8214
|
}>>;
|
7167
|
-
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
7168
8215
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
8216
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
8217
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7169
8218
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7170
8219
|
id: string;
|
7171
8220
|
description: string;
|
@@ -7189,17 +8238,13 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7189
8238
|
};
|
7190
8239
|
validator: import(".").JSONSchema;
|
7191
8240
|
}>, "many">>>;
|
7192
|
-
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7193
|
-
id: string;
|
7194
|
-
description: string;
|
7195
|
-
defaultMessage: string;
|
7196
|
-
}>;
|
7197
8241
|
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7198
8242
|
id: string;
|
7199
8243
|
description: string;
|
7200
8244
|
defaultMessage: string;
|
7201
8245
|
}>>;
|
7202
8246
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
8247
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7203
8248
|
}, {
|
7204
8249
|
type: z.ZodLiteral<"FACILITY">;
|
7205
8250
|
defaultValue: z.ZodOptional<z.ZodString>;
|
@@ -7225,9 +8270,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7225
8270
|
type: "DISPLAY_ON_REVIEW";
|
7226
8271
|
conditional: import(".").JSONSchema;
|
7227
8272
|
})[] | undefined;
|
8273
|
+
secured?: boolean | undefined;
|
7228
8274
|
placeholder?: TranslationConfig | undefined;
|
7229
8275
|
helperText?: TranslationConfig | undefined;
|
7230
8276
|
hideLabel?: boolean | undefined;
|
8277
|
+
uncorrectable?: boolean | undefined;
|
7231
8278
|
defaultValue?: string | undefined;
|
7232
8279
|
}, {
|
7233
8280
|
type: "FACILITY";
|
@@ -7259,6 +8306,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7259
8306
|
type: "DISPLAY_ON_REVIEW";
|
7260
8307
|
conditional: import(".").JSONSchema;
|
7261
8308
|
})[] | undefined;
|
8309
|
+
secured?: boolean | undefined;
|
7262
8310
|
placeholder?: {
|
7263
8311
|
id: string;
|
7264
8312
|
description: string;
|
@@ -7270,9 +8318,15 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7270
8318
|
defaultMessage: string;
|
7271
8319
|
} | undefined;
|
7272
8320
|
hideLabel?: boolean | undefined;
|
8321
|
+
uncorrectable?: boolean | undefined;
|
7273
8322
|
defaultValue?: string | undefined;
|
7274
8323
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
7275
8324
|
id: z.ZodString;
|
8325
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
8326
|
+
id: string;
|
8327
|
+
description: string;
|
8328
|
+
defaultMessage: string;
|
8329
|
+
}>;
|
7276
8330
|
parent: z.ZodOptional<z.ZodObject<{
|
7277
8331
|
$$field: z.ZodString;
|
7278
8332
|
}, "strip", z.ZodTypeAny, {
|
@@ -7280,8 +8334,9 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7280
8334
|
}, {
|
7281
8335
|
$$field: string;
|
7282
8336
|
}>>;
|
7283
|
-
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
7284
8337
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
8338
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
8339
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7285
8340
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7286
8341
|
id: string;
|
7287
8342
|
description: string;
|
@@ -7305,17 +8360,13 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7305
8360
|
};
|
7306
8361
|
validator: import(".").JSONSchema;
|
7307
8362
|
}>, "many">>>;
|
7308
|
-
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7309
|
-
id: string;
|
7310
|
-
description: string;
|
7311
|
-
defaultMessage: string;
|
7312
|
-
}>;
|
7313
8363
|
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7314
8364
|
id: string;
|
7315
8365
|
description: string;
|
7316
8366
|
defaultMessage: string;
|
7317
8367
|
}>>;
|
7318
8368
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
8369
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7319
8370
|
}, {
|
7320
8371
|
type: z.ZodLiteral<"OFFICE">;
|
7321
8372
|
defaultValue: z.ZodOptional<z.ZodString>;
|
@@ -7341,9 +8392,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7341
8392
|
type: "DISPLAY_ON_REVIEW";
|
7342
8393
|
conditional: import(".").JSONSchema;
|
7343
8394
|
})[] | undefined;
|
8395
|
+
secured?: boolean | undefined;
|
7344
8396
|
placeholder?: TranslationConfig | undefined;
|
7345
8397
|
helperText?: TranslationConfig | undefined;
|
7346
8398
|
hideLabel?: boolean | undefined;
|
8399
|
+
uncorrectable?: boolean | undefined;
|
7347
8400
|
defaultValue?: string | undefined;
|
7348
8401
|
}, {
|
7349
8402
|
type: "OFFICE";
|
@@ -7375,6 +8428,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7375
8428
|
type: "DISPLAY_ON_REVIEW";
|
7376
8429
|
conditional: import(".").JSONSchema;
|
7377
8430
|
})[] | undefined;
|
8431
|
+
secured?: boolean | undefined;
|
7378
8432
|
placeholder?: {
|
7379
8433
|
id: string;
|
7380
8434
|
description: string;
|
@@ -7386,9 +8440,15 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7386
8440
|
defaultMessage: string;
|
7387
8441
|
} | undefined;
|
7388
8442
|
hideLabel?: boolean | undefined;
|
8443
|
+
uncorrectable?: boolean | undefined;
|
7389
8444
|
defaultValue?: string | undefined;
|
7390
8445
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
7391
8446
|
id: z.ZodString;
|
8447
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
8448
|
+
id: string;
|
8449
|
+
description: string;
|
8450
|
+
defaultMessage: string;
|
8451
|
+
}>;
|
7392
8452
|
parent: z.ZodOptional<z.ZodObject<{
|
7393
8453
|
$$field: z.ZodString;
|
7394
8454
|
}, "strip", z.ZodTypeAny, {
|
@@ -7396,8 +8456,9 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7396
8456
|
}, {
|
7397
8457
|
$$field: string;
|
7398
8458
|
}>>;
|
7399
|
-
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
7400
8459
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
8460
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
8461
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7401
8462
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7402
8463
|
id: string;
|
7403
8464
|
description: string;
|
@@ -7421,17 +8482,13 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7421
8482
|
};
|
7422
8483
|
validator: import(".").JSONSchema;
|
7423
8484
|
}>, "many">>>;
|
7424
|
-
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7425
|
-
id: string;
|
7426
|
-
description: string;
|
7427
|
-
defaultMessage: string;
|
7428
|
-
}>;
|
7429
8485
|
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7430
8486
|
id: string;
|
7431
8487
|
description: string;
|
7432
8488
|
defaultMessage: string;
|
7433
8489
|
}>>;
|
7434
8490
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
8491
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7435
8492
|
}, {
|
7436
8493
|
type: z.ZodLiteral<"SIGNATURE">;
|
7437
8494
|
signaturePromptLabel: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
@@ -7477,9 +8534,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7477
8534
|
type: "DISPLAY_ON_REVIEW";
|
7478
8535
|
conditional: import(".").JSONSchema;
|
7479
8536
|
})[] | undefined;
|
8537
|
+
secured?: boolean | undefined;
|
7480
8538
|
placeholder?: TranslationConfig | undefined;
|
7481
8539
|
helperText?: TranslationConfig | undefined;
|
7482
8540
|
hideLabel?: boolean | undefined;
|
8541
|
+
uncorrectable?: boolean | undefined;
|
7483
8542
|
defaultValue?: string | undefined;
|
7484
8543
|
}, {
|
7485
8544
|
type: "SIGNATURE";
|
@@ -7516,6 +8575,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7516
8575
|
type: "DISPLAY_ON_REVIEW";
|
7517
8576
|
conditional: import(".").JSONSchema;
|
7518
8577
|
})[] | undefined;
|
8578
|
+
secured?: boolean | undefined;
|
7519
8579
|
placeholder?: {
|
7520
8580
|
id: string;
|
7521
8581
|
description: string;
|
@@ -7527,6 +8587,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7527
8587
|
defaultMessage: string;
|
7528
8588
|
} | undefined;
|
7529
8589
|
hideLabel?: boolean | undefined;
|
8590
|
+
uncorrectable?: boolean | undefined;
|
7530
8591
|
defaultValue?: string | undefined;
|
7531
8592
|
configuration?: {
|
7532
8593
|
maxFileSize?: number | undefined;
|
@@ -7534,6 +8595,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7534
8595
|
} | undefined;
|
7535
8596
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
7536
8597
|
id: z.ZodString;
|
8598
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
8599
|
+
id: string;
|
8600
|
+
description: string;
|
8601
|
+
defaultMessage: string;
|
8602
|
+
}>;
|
7537
8603
|
parent: z.ZodOptional<z.ZodObject<{
|
7538
8604
|
$$field: z.ZodString;
|
7539
8605
|
}, "strip", z.ZodTypeAny, {
|
@@ -7541,8 +8607,9 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7541
8607
|
}, {
|
7542
8608
|
$$field: string;
|
7543
8609
|
}>>;
|
7544
|
-
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
7545
8610
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
8611
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
8612
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7546
8613
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7547
8614
|
id: string;
|
7548
8615
|
description: string;
|
@@ -7566,17 +8633,13 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7566
8633
|
};
|
7567
8634
|
validator: import(".").JSONSchema;
|
7568
8635
|
}>, "many">>>;
|
7569
|
-
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7570
|
-
id: string;
|
7571
|
-
description: string;
|
7572
|
-
defaultMessage: string;
|
7573
|
-
}>;
|
7574
8636
|
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7575
8637
|
id: string;
|
7576
8638
|
description: string;
|
7577
8639
|
defaultMessage: string;
|
7578
8640
|
}>>;
|
7579
8641
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
8642
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7580
8643
|
}, {
|
7581
8644
|
type: z.ZodLiteral<"EMAIL">;
|
7582
8645
|
configuration: z.ZodOptional<z.ZodDefault<z.ZodObject<{
|
@@ -7609,9 +8672,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7609
8672
|
type: "DISPLAY_ON_REVIEW";
|
7610
8673
|
conditional: import(".").JSONSchema;
|
7611
8674
|
})[] | undefined;
|
8675
|
+
secured?: boolean | undefined;
|
7612
8676
|
placeholder?: TranslationConfig | undefined;
|
7613
8677
|
helperText?: TranslationConfig | undefined;
|
7614
8678
|
hideLabel?: boolean | undefined;
|
8679
|
+
uncorrectable?: boolean | undefined;
|
7615
8680
|
defaultValue?: string | undefined;
|
7616
8681
|
configuration?: {
|
7617
8682
|
maxLength?: number | undefined;
|
@@ -7646,6 +8711,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7646
8711
|
type: "DISPLAY_ON_REVIEW";
|
7647
8712
|
conditional: import(".").JSONSchema;
|
7648
8713
|
})[] | undefined;
|
8714
|
+
secured?: boolean | undefined;
|
7649
8715
|
placeholder?: {
|
7650
8716
|
id: string;
|
7651
8717
|
description: string;
|
@@ -7657,12 +8723,18 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7657
8723
|
defaultMessage: string;
|
7658
8724
|
} | undefined;
|
7659
8725
|
hideLabel?: boolean | undefined;
|
8726
|
+
uncorrectable?: boolean | undefined;
|
7660
8727
|
defaultValue?: string | undefined;
|
7661
8728
|
configuration?: {
|
7662
8729
|
maxLength?: number | undefined;
|
7663
8730
|
} | undefined;
|
7664
8731
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
7665
8732
|
id: z.ZodString;
|
8733
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
8734
|
+
id: string;
|
8735
|
+
description: string;
|
8736
|
+
defaultMessage: string;
|
8737
|
+
}>;
|
7666
8738
|
parent: z.ZodOptional<z.ZodObject<{
|
7667
8739
|
$$field: z.ZodString;
|
7668
8740
|
}, "strip", z.ZodTypeAny, {
|
@@ -7670,8 +8742,9 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7670
8742
|
}, {
|
7671
8743
|
$$field: string;
|
7672
8744
|
}>>;
|
7673
|
-
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
7674
8745
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
8746
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
8747
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7675
8748
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7676
8749
|
id: string;
|
7677
8750
|
description: string;
|
@@ -7695,17 +8768,13 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7695
8768
|
};
|
7696
8769
|
validator: import(".").JSONSchema;
|
7697
8770
|
}>, "many">>>;
|
7698
|
-
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7699
|
-
id: string;
|
7700
|
-
description: string;
|
7701
|
-
defaultMessage: string;
|
7702
|
-
}>;
|
7703
8771
|
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7704
8772
|
id: string;
|
7705
8773
|
description: string;
|
7706
8774
|
defaultMessage: string;
|
7707
8775
|
}>>;
|
7708
8776
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
8777
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7709
8778
|
}, {
|
7710
8779
|
type: z.ZodLiteral<"FILE_WITH_OPTIONS">;
|
7711
8780
|
options: z.ZodArray<z.ZodObject<{
|
@@ -7727,19 +8796,19 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7727
8796
|
};
|
7728
8797
|
}>, "many">;
|
7729
8798
|
defaultValue: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
7730
|
-
|
8799
|
+
path: z.ZodEffects<z.ZodString, string, string>;
|
7731
8800
|
originalFilename: z.ZodString;
|
7732
8801
|
type: z.ZodString;
|
7733
8802
|
option: z.ZodString;
|
7734
8803
|
}, "strip", z.ZodTypeAny, {
|
7735
8804
|
type: string;
|
7736
8805
|
option: string;
|
7737
|
-
|
8806
|
+
path: string;
|
7738
8807
|
originalFilename: string;
|
7739
8808
|
}, {
|
7740
8809
|
type: string;
|
7741
8810
|
option: string;
|
7742
|
-
|
8811
|
+
path: string;
|
7743
8812
|
originalFilename: string;
|
7744
8813
|
}>, "many">>;
|
7745
8814
|
configuration: z.ZodDefault<z.ZodObject<{
|
@@ -7782,13 +8851,15 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7782
8851
|
type: "DISPLAY_ON_REVIEW";
|
7783
8852
|
conditional: import(".").JSONSchema;
|
7784
8853
|
})[] | undefined;
|
8854
|
+
secured?: boolean | undefined;
|
7785
8855
|
placeholder?: TranslationConfig | undefined;
|
7786
8856
|
helperText?: TranslationConfig | undefined;
|
7787
8857
|
hideLabel?: boolean | undefined;
|
8858
|
+
uncorrectable?: boolean | undefined;
|
7788
8859
|
defaultValue?: {
|
7789
8860
|
type: string;
|
7790
8861
|
option: string;
|
7791
|
-
|
8862
|
+
path: string;
|
7792
8863
|
originalFilename: string;
|
7793
8864
|
}[] | undefined;
|
7794
8865
|
}, {
|
@@ -7829,6 +8900,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7829
8900
|
type: "DISPLAY_ON_REVIEW";
|
7830
8901
|
conditional: import(".").JSONSchema;
|
7831
8902
|
})[] | undefined;
|
8903
|
+
secured?: boolean | undefined;
|
7832
8904
|
placeholder?: {
|
7833
8905
|
id: string;
|
7834
8906
|
description: string;
|
@@ -7840,10 +8912,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7840
8912
|
defaultMessage: string;
|
7841
8913
|
} | undefined;
|
7842
8914
|
hideLabel?: boolean | undefined;
|
8915
|
+
uncorrectable?: boolean | undefined;
|
7843
8916
|
defaultValue?: {
|
7844
8917
|
type: string;
|
7845
8918
|
option: string;
|
7846
|
-
|
8919
|
+
path: string;
|
7847
8920
|
originalFilename: string;
|
7848
8921
|
}[] | undefined;
|
7849
8922
|
configuration?: {
|
@@ -7852,6 +8925,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7852
8925
|
} | undefined;
|
7853
8926
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
7854
8927
|
id: z.ZodString;
|
8928
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
8929
|
+
id: string;
|
8930
|
+
description: string;
|
8931
|
+
defaultMessage: string;
|
8932
|
+
}>;
|
7855
8933
|
parent: z.ZodOptional<z.ZodObject<{
|
7856
8934
|
$$field: z.ZodString;
|
7857
8935
|
}, "strip", z.ZodTypeAny, {
|
@@ -7859,8 +8937,9 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7859
8937
|
}, {
|
7860
8938
|
$$field: string;
|
7861
8939
|
}>>;
|
7862
|
-
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
7863
8940
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
8941
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
8942
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7864
8943
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7865
8944
|
id: string;
|
7866
8945
|
description: string;
|
@@ -7884,17 +8963,13 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7884
8963
|
};
|
7885
8964
|
validator: import(".").JSONSchema;
|
7886
8965
|
}>, "many">>>;
|
7887
|
-
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7888
|
-
id: string;
|
7889
|
-
description: string;
|
7890
|
-
defaultMessage: string;
|
7891
|
-
}>;
|
7892
8966
|
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7893
8967
|
id: string;
|
7894
8968
|
description: string;
|
7895
8969
|
defaultMessage: string;
|
7896
8970
|
}>>;
|
7897
8971
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
8972
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7898
8973
|
}, {
|
7899
8974
|
type: z.ZodLiteral<"DATA">;
|
7900
8975
|
configuration: z.ZodObject<{
|
@@ -7995,9 +9070,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7995
9070
|
type: "DISPLAY_ON_REVIEW";
|
7996
9071
|
conditional: import(".").JSONSchema;
|
7997
9072
|
})[] | undefined;
|
9073
|
+
secured?: boolean | undefined;
|
7998
9074
|
placeholder?: TranslationConfig | undefined;
|
7999
9075
|
helperText?: TranslationConfig | undefined;
|
8000
9076
|
hideLabel?: boolean | undefined;
|
9077
|
+
uncorrectable?: boolean | undefined;
|
8001
9078
|
}, {
|
8002
9079
|
type: "DATA";
|
8003
9080
|
id: string;
|
@@ -8049,6 +9126,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8049
9126
|
type: "DISPLAY_ON_REVIEW";
|
8050
9127
|
conditional: import(".").JSONSchema;
|
8051
9128
|
})[] | undefined;
|
9129
|
+
secured?: boolean | undefined;
|
8052
9130
|
placeholder?: {
|
8053
9131
|
id: string;
|
8054
9132
|
description: string;
|
@@ -8060,6 +9138,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8060
9138
|
defaultMessage: string;
|
8061
9139
|
} | undefined;
|
8062
9140
|
hideLabel?: boolean | undefined;
|
9141
|
+
uncorrectable?: boolean | undefined;
|
8063
9142
|
}>]>;
|
8064
9143
|
export type SelectField = z.infer<typeof Select>;
|
8065
9144
|
export type NameField = z.infer<typeof NameField>;
|