@opencrvs/toolkit 1.8.0-rc.f7aaf07 → 1.8.0-rc.f7e1622
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 +2228 -15340
- 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 +33832 -35902
- package/dist/commons/events/ActionDocument.d.ts +3439 -1912
- package/dist/commons/events/ActionInput.d.ts +2406 -1506
- 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 +1798 -734
- package/dist/commons/events/CreatedAtLocation.d.ts +1 -2
- package/dist/commons/events/Draft.d.ts +208 -136
- package/dist/commons/events/EventConfig.d.ts +19880 -23808
- package/dist/commons/events/EventDocument.d.ts +1863 -1220
- package/dist/commons/events/EventIndex.d.ts +514 -316
- package/dist/commons/events/EventMetadata.d.ts +44 -33
- package/dist/commons/events/FieldConfig.d.ts +1171 -385
- package/dist/commons/events/FieldType.d.ts +2 -1
- package/dist/commons/events/FieldTypeMapping.d.ts +73 -41
- package/dist/commons/events/FieldValue.d.ts +57 -28
- package/dist/commons/events/FormConfig.d.ts +7380 -2640
- package/dist/commons/events/PageConfig.d.ts +1499 -343
- 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 +3153 -1327
- package/dist/commons/events/defineConfig.d.ts +2475 -3245
- 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 +74 -40
- package/dist/commons/events/transactions.d.ts +1 -1
- package/dist/commons/events/utils.d.ts +8553 -6994
- package/dist/conditionals/index.js +23 -53
- package/dist/events/index.js +1685 -1402
- 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,16 @@ declare const DateField: z.ZodObject<z.objectUtil.extendShape<{
|
|
1191
1239
|
} | undefined;
|
1192
1240
|
}>;
|
1193
1241
|
export type DateField = z.infer<typeof DateField>;
|
1194
|
-
|
1242
|
+
/**
|
1243
|
+
* For internal use only. Needed for search functionality.
|
1244
|
+
*/
|
1245
|
+
export declare const DateRangeField: z.ZodObject<z.objectUtil.extendShape<{
|
1195
1246
|
id: z.ZodString;
|
1247
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
1248
|
+
id: string;
|
1249
|
+
description: string;
|
1250
|
+
defaultMessage: string;
|
1251
|
+
}>;
|
1196
1252
|
parent: z.ZodOptional<z.ZodObject<{
|
1197
1253
|
$$field: z.ZodString;
|
1198
1254
|
}, "strip", z.ZodTypeAny, {
|
@@ -1200,8 +1256,9 @@ declare const DateRangeField: z.ZodObject<z.objectUtil.extendShape<{
|
|
1200
1256
|
}, {
|
1201
1257
|
$$field: string;
|
1202
1258
|
}>>;
|
1203
|
-
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
1204
1259
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
1260
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
1261
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
1205
1262
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
1206
1263
|
id: string;
|
1207
1264
|
description: string;
|
@@ -1225,20 +1282,25 @@ declare const DateRangeField: z.ZodObject<z.objectUtil.extendShape<{
|
|
1225
1282
|
};
|
1226
1283
|
validator: import(".").JSONSchema;
|
1227
1284
|
}>, "many">>>;
|
1228
|
-
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
1229
|
-
id: string;
|
1230
|
-
description: string;
|
1231
|
-
defaultMessage: string;
|
1232
|
-
}>;
|
1233
1285
|
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
1234
1286
|
id: string;
|
1235
1287
|
description: string;
|
1236
1288
|
defaultMessage: string;
|
1237
1289
|
}>>;
|
1238
1290
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
1291
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
1239
1292
|
}, {
|
1240
1293
|
type: z.ZodLiteral<"DATE_RANGE">;
|
1241
|
-
defaultValue: z.ZodOptional<z.ZodUnion<[z.
|
1294
|
+
defaultValue: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
1295
|
+
start: z.ZodString;
|
1296
|
+
end: z.ZodString;
|
1297
|
+
}, "strip", z.ZodTypeAny, {
|
1298
|
+
start: string;
|
1299
|
+
end: string;
|
1300
|
+
}, {
|
1301
|
+
start: string;
|
1302
|
+
end: string;
|
1303
|
+
}>, z.ZodString]>>;
|
1242
1304
|
configuration: z.ZodOptional<z.ZodObject<{
|
1243
1305
|
notice: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
1244
1306
|
id: string;
|
@@ -1276,10 +1338,15 @@ declare const DateRangeField: z.ZodObject<z.objectUtil.extendShape<{
|
|
1276
1338
|
type: "DISPLAY_ON_REVIEW";
|
1277
1339
|
conditional: import(".").JSONSchema;
|
1278
1340
|
})[] | undefined;
|
1341
|
+
secured?: boolean | undefined;
|
1279
1342
|
placeholder?: TranslationConfig | undefined;
|
1280
1343
|
helperText?: TranslationConfig | undefined;
|
1281
1344
|
hideLabel?: boolean | undefined;
|
1282
|
-
|
1345
|
+
uncorrectable?: boolean | undefined;
|
1346
|
+
defaultValue?: string | {
|
1347
|
+
start: string;
|
1348
|
+
end: string;
|
1349
|
+
} | undefined;
|
1283
1350
|
configuration?: {
|
1284
1351
|
notice?: TranslationConfig | undefined;
|
1285
1352
|
} | undefined;
|
@@ -1313,6 +1380,7 @@ declare const DateRangeField: z.ZodObject<z.objectUtil.extendShape<{
|
|
1313
1380
|
type: "DISPLAY_ON_REVIEW";
|
1314
1381
|
conditional: import(".").JSONSchema;
|
1315
1382
|
})[] | undefined;
|
1383
|
+
secured?: boolean | undefined;
|
1316
1384
|
placeholder?: {
|
1317
1385
|
id: string;
|
1318
1386
|
description: string;
|
@@ -1324,7 +1392,11 @@ declare const DateRangeField: z.ZodObject<z.objectUtil.extendShape<{
|
|
1324
1392
|
defaultMessage: string;
|
1325
1393
|
} | undefined;
|
1326
1394
|
hideLabel?: boolean | undefined;
|
1327
|
-
|
1395
|
+
uncorrectable?: boolean | undefined;
|
1396
|
+
defaultValue?: string | {
|
1397
|
+
start: string;
|
1398
|
+
end: string;
|
1399
|
+
} | undefined;
|
1328
1400
|
configuration?: {
|
1329
1401
|
notice?: {
|
1330
1402
|
id: string;
|
@@ -1336,8 +1408,36 @@ declare const DateRangeField: z.ZodObject<z.objectUtil.extendShape<{
|
|
1336
1408
|
export type DateRangeField = z.infer<typeof DateRangeField>;
|
1337
1409
|
declare const HtmlFontVariant: z.ZodEnum<["reg12", "reg14", "reg16", "reg18", "h4", "h3", "h2", "h1"]>;
|
1338
1410
|
export type HtmlFontVariant = z.infer<typeof HtmlFontVariant>;
|
1411
|
+
declare const ParagraphConfiguration: z.ZodDefault<z.ZodObject<{
|
1412
|
+
styles: z.ZodOptional<z.ZodObject<{
|
1413
|
+
fontVariant: z.ZodOptional<z.ZodEnum<["reg12", "reg14", "reg16", "reg18", "h4", "h3", "h2", "h1"]>>;
|
1414
|
+
hint: z.ZodOptional<z.ZodBoolean>;
|
1415
|
+
}, "strip", z.ZodTypeAny, {
|
1416
|
+
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
1417
|
+
hint?: boolean | undefined;
|
1418
|
+
}, {
|
1419
|
+
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
1420
|
+
hint?: boolean | undefined;
|
1421
|
+
}>>;
|
1422
|
+
}, "strip", z.ZodTypeAny, {
|
1423
|
+
styles?: {
|
1424
|
+
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
1425
|
+
hint?: boolean | undefined;
|
1426
|
+
} | undefined;
|
1427
|
+
}, {
|
1428
|
+
styles?: {
|
1429
|
+
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
1430
|
+
hint?: boolean | undefined;
|
1431
|
+
} | undefined;
|
1432
|
+
}>>;
|
1433
|
+
export type ParagraphConfiguration = z.infer<typeof ParagraphConfiguration>;
|
1339
1434
|
declare const Paragraph: z.ZodObject<z.objectUtil.extendShape<{
|
1340
1435
|
id: z.ZodString;
|
1436
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
1437
|
+
id: string;
|
1438
|
+
description: string;
|
1439
|
+
defaultMessage: string;
|
1440
|
+
}>;
|
1341
1441
|
parent: z.ZodOptional<z.ZodObject<{
|
1342
1442
|
$$field: z.ZodString;
|
1343
1443
|
}, "strip", z.ZodTypeAny, {
|
@@ -1345,8 +1445,9 @@ declare const Paragraph: z.ZodObject<z.objectUtil.extendShape<{
|
|
1345
1445
|
}, {
|
1346
1446
|
$$field: string;
|
1347
1447
|
}>>;
|
1348
|
-
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
1349
1448
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
1449
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
1450
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
1350
1451
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
1351
1452
|
id: string;
|
1352
1453
|
description: string;
|
@@ -1370,35 +1471,36 @@ declare const Paragraph: z.ZodObject<z.objectUtil.extendShape<{
|
|
1370
1471
|
};
|
1371
1472
|
validator: import(".").JSONSchema;
|
1372
1473
|
}>, "many">>>;
|
1373
|
-
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
1374
|
-
id: string;
|
1375
|
-
description: string;
|
1376
|
-
defaultMessage: string;
|
1377
|
-
}>;
|
1378
1474
|
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
1379
1475
|
id: string;
|
1380
1476
|
description: string;
|
1381
1477
|
defaultMessage: string;
|
1382
1478
|
}>>;
|
1383
1479
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
1480
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
1384
1481
|
}, {
|
1385
1482
|
type: z.ZodLiteral<"PARAGRAPH">;
|
1386
1483
|
defaultValue: z.ZodOptional<z.ZodString>;
|
1387
1484
|
configuration: z.ZodDefault<z.ZodObject<{
|
1388
1485
|
styles: z.ZodOptional<z.ZodObject<{
|
1389
1486
|
fontVariant: z.ZodOptional<z.ZodEnum<["reg12", "reg14", "reg16", "reg18", "h4", "h3", "h2", "h1"]>>;
|
1487
|
+
hint: z.ZodOptional<z.ZodBoolean>;
|
1390
1488
|
}, "strip", z.ZodTypeAny, {
|
1391
1489
|
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
1490
|
+
hint?: boolean | undefined;
|
1392
1491
|
}, {
|
1393
1492
|
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
1493
|
+
hint?: boolean | undefined;
|
1394
1494
|
}>>;
|
1395
1495
|
}, "strip", z.ZodTypeAny, {
|
1396
1496
|
styles?: {
|
1397
1497
|
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
1498
|
+
hint?: boolean | undefined;
|
1398
1499
|
} | undefined;
|
1399
1500
|
}, {
|
1400
1501
|
styles?: {
|
1401
1502
|
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
1503
|
+
hint?: boolean | undefined;
|
1402
1504
|
} | undefined;
|
1403
1505
|
}>>;
|
1404
1506
|
}>, "strip", z.ZodTypeAny, {
|
@@ -1408,6 +1510,7 @@ declare const Paragraph: z.ZodObject<z.objectUtil.extendShape<{
|
|
1408
1510
|
configuration: {
|
1409
1511
|
styles?: {
|
1410
1512
|
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
1513
|
+
hint?: boolean | undefined;
|
1411
1514
|
} | undefined;
|
1412
1515
|
};
|
1413
1516
|
parent?: {
|
@@ -1428,9 +1531,11 @@ declare const Paragraph: z.ZodObject<z.objectUtil.extendShape<{
|
|
1428
1531
|
type: "DISPLAY_ON_REVIEW";
|
1429
1532
|
conditional: import(".").JSONSchema;
|
1430
1533
|
})[] | undefined;
|
1534
|
+
secured?: boolean | undefined;
|
1431
1535
|
placeholder?: TranslationConfig | undefined;
|
1432
1536
|
helperText?: TranslationConfig | undefined;
|
1433
1537
|
hideLabel?: boolean | undefined;
|
1538
|
+
uncorrectable?: boolean | undefined;
|
1434
1539
|
defaultValue?: string | undefined;
|
1435
1540
|
}, {
|
1436
1541
|
type: "PARAGRAPH";
|
@@ -1462,6 +1567,7 @@ declare const Paragraph: z.ZodObject<z.objectUtil.extendShape<{
|
|
1462
1567
|
type: "DISPLAY_ON_REVIEW";
|
1463
1568
|
conditional: import(".").JSONSchema;
|
1464
1569
|
})[] | undefined;
|
1570
|
+
secured?: boolean | undefined;
|
1465
1571
|
placeholder?: {
|
1466
1572
|
id: string;
|
1467
1573
|
description: string;
|
@@ -1473,16 +1579,23 @@ declare const Paragraph: z.ZodObject<z.objectUtil.extendShape<{
|
|
1473
1579
|
defaultMessage: string;
|
1474
1580
|
} | undefined;
|
1475
1581
|
hideLabel?: boolean | undefined;
|
1582
|
+
uncorrectable?: boolean | undefined;
|
1476
1583
|
defaultValue?: string | undefined;
|
1477
1584
|
configuration?: {
|
1478
1585
|
styles?: {
|
1479
1586
|
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
1587
|
+
hint?: boolean | undefined;
|
1480
1588
|
} | undefined;
|
1481
1589
|
} | undefined;
|
1482
1590
|
}>;
|
1483
1591
|
export type Paragraph = z.infer<typeof Paragraph>;
|
1484
1592
|
declare const PageHeader: z.ZodObject<z.objectUtil.extendShape<{
|
1485
1593
|
id: z.ZodString;
|
1594
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
1595
|
+
id: string;
|
1596
|
+
description: string;
|
1597
|
+
defaultMessage: string;
|
1598
|
+
}>;
|
1486
1599
|
parent: z.ZodOptional<z.ZodObject<{
|
1487
1600
|
$$field: z.ZodString;
|
1488
1601
|
}, "strip", z.ZodTypeAny, {
|
@@ -1490,8 +1603,9 @@ declare const PageHeader: z.ZodObject<z.objectUtil.extendShape<{
|
|
1490
1603
|
}, {
|
1491
1604
|
$$field: string;
|
1492
1605
|
}>>;
|
1493
|
-
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
1494
1606
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
1607
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
1608
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
1495
1609
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
1496
1610
|
id: string;
|
1497
1611
|
description: string;
|
@@ -1515,17 +1629,13 @@ declare const PageHeader: z.ZodObject<z.objectUtil.extendShape<{
|
|
1515
1629
|
};
|
1516
1630
|
validator: import(".").JSONSchema;
|
1517
1631
|
}>, "many">>>;
|
1518
|
-
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
1519
|
-
id: string;
|
1520
|
-
description: string;
|
1521
|
-
defaultMessage: string;
|
1522
|
-
}>;
|
1523
1632
|
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
1524
1633
|
id: string;
|
1525
1634
|
description: string;
|
1526
1635
|
defaultMessage: string;
|
1527
1636
|
}>>;
|
1528
1637
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
1638
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
1529
1639
|
}, {
|
1530
1640
|
type: z.ZodLiteral<"PAGE_HEADER">;
|
1531
1641
|
defaultValue: z.ZodOptional<z.ZodString>;
|
@@ -1551,9 +1661,11 @@ declare const PageHeader: z.ZodObject<z.objectUtil.extendShape<{
|
|
1551
1661
|
type: "DISPLAY_ON_REVIEW";
|
1552
1662
|
conditional: import(".").JSONSchema;
|
1553
1663
|
})[] | undefined;
|
1664
|
+
secured?: boolean | undefined;
|
1554
1665
|
placeholder?: TranslationConfig | undefined;
|
1555
1666
|
helperText?: TranslationConfig | undefined;
|
1556
1667
|
hideLabel?: boolean | undefined;
|
1668
|
+
uncorrectable?: boolean | undefined;
|
1557
1669
|
defaultValue?: string | undefined;
|
1558
1670
|
}, {
|
1559
1671
|
type: "PAGE_HEADER";
|
@@ -1585,6 +1697,7 @@ declare const PageHeader: z.ZodObject<z.objectUtil.extendShape<{
|
|
1585
1697
|
type: "DISPLAY_ON_REVIEW";
|
1586
1698
|
conditional: import(".").JSONSchema;
|
1587
1699
|
})[] | undefined;
|
1700
|
+
secured?: boolean | undefined;
|
1588
1701
|
placeholder?: {
|
1589
1702
|
id: string;
|
1590
1703
|
description: string;
|
@@ -1596,11 +1709,17 @@ declare const PageHeader: z.ZodObject<z.objectUtil.extendShape<{
|
|
1596
1709
|
defaultMessage: string;
|
1597
1710
|
} | undefined;
|
1598
1711
|
hideLabel?: boolean | undefined;
|
1712
|
+
uncorrectable?: boolean | undefined;
|
1599
1713
|
defaultValue?: string | undefined;
|
1600
1714
|
}>;
|
1601
1715
|
export type PageHeader = z.infer<typeof PageHeader>;
|
1602
1716
|
declare const File: z.ZodObject<z.objectUtil.extendShape<{
|
1603
1717
|
id: z.ZodString;
|
1718
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
1719
|
+
id: string;
|
1720
|
+
description: string;
|
1721
|
+
defaultMessage: string;
|
1722
|
+
}>;
|
1604
1723
|
parent: z.ZodOptional<z.ZodObject<{
|
1605
1724
|
$$field: z.ZodString;
|
1606
1725
|
}, "strip", z.ZodTypeAny, {
|
@@ -1608,8 +1727,9 @@ declare const File: z.ZodObject<z.objectUtil.extendShape<{
|
|
1608
1727
|
}, {
|
1609
1728
|
$$field: string;
|
1610
1729
|
}>>;
|
1611
|
-
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
1612
1730
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
1731
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
1732
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
1613
1733
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
1614
1734
|
id: string;
|
1615
1735
|
description: string;
|
@@ -1633,30 +1753,26 @@ declare const File: z.ZodObject<z.objectUtil.extendShape<{
|
|
1633
1753
|
};
|
1634
1754
|
validator: import(".").JSONSchema;
|
1635
1755
|
}>, "many">>>;
|
1636
|
-
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
1637
|
-
id: string;
|
1638
|
-
description: string;
|
1639
|
-
defaultMessage: string;
|
1640
|
-
}>;
|
1641
1756
|
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
1642
1757
|
id: string;
|
1643
1758
|
description: string;
|
1644
1759
|
defaultMessage: string;
|
1645
1760
|
}>>;
|
1646
1761
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
1762
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
1647
1763
|
}, {
|
1648
1764
|
type: z.ZodLiteral<"FILE">;
|
1649
1765
|
defaultValue: z.ZodOptional<z.ZodObject<{
|
1650
|
-
|
1766
|
+
path: z.ZodEffects<z.ZodString, string, string>;
|
1651
1767
|
originalFilename: z.ZodString;
|
1652
1768
|
type: z.ZodString;
|
1653
1769
|
}, "strip", z.ZodTypeAny, {
|
1654
1770
|
type: string;
|
1655
|
-
|
1771
|
+
path: string;
|
1656
1772
|
originalFilename: string;
|
1657
1773
|
}, {
|
1658
1774
|
type: string;
|
1659
|
-
|
1775
|
+
path: string;
|
1660
1776
|
originalFilename: string;
|
1661
1777
|
}>>;
|
1662
1778
|
configuration: z.ZodDefault<z.ZodObject<{
|
@@ -1723,12 +1839,14 @@ declare const File: z.ZodObject<z.objectUtil.extendShape<{
|
|
1723
1839
|
type: "DISPLAY_ON_REVIEW";
|
1724
1840
|
conditional: import(".").JSONSchema;
|
1725
1841
|
})[] | undefined;
|
1842
|
+
secured?: boolean | undefined;
|
1726
1843
|
placeholder?: TranslationConfig | undefined;
|
1727
1844
|
helperText?: TranslationConfig | undefined;
|
1728
1845
|
hideLabel?: boolean | undefined;
|
1846
|
+
uncorrectable?: boolean | undefined;
|
1729
1847
|
defaultValue?: {
|
1730
1848
|
type: string;
|
1731
|
-
|
1849
|
+
path: string;
|
1732
1850
|
originalFilename: string;
|
1733
1851
|
} | undefined;
|
1734
1852
|
}, {
|
@@ -1761,6 +1879,7 @@ declare const File: z.ZodObject<z.objectUtil.extendShape<{
|
|
1761
1879
|
type: "DISPLAY_ON_REVIEW";
|
1762
1880
|
conditional: import(".").JSONSchema;
|
1763
1881
|
})[] | undefined;
|
1882
|
+
secured?: boolean | undefined;
|
1764
1883
|
placeholder?: {
|
1765
1884
|
id: string;
|
1766
1885
|
description: string;
|
@@ -1772,9 +1891,10 @@ declare const File: z.ZodObject<z.objectUtil.extendShape<{
|
|
1772
1891
|
defaultMessage: string;
|
1773
1892
|
} | undefined;
|
1774
1893
|
hideLabel?: boolean | undefined;
|
1894
|
+
uncorrectable?: boolean | undefined;
|
1775
1895
|
defaultValue?: {
|
1776
1896
|
type: string;
|
1777
|
-
|
1897
|
+
path: string;
|
1778
1898
|
originalFilename: string;
|
1779
1899
|
} | undefined;
|
1780
1900
|
configuration?: {
|
@@ -1811,6 +1931,11 @@ export declare const SelectOption: z.ZodObject<{
|
|
1811
1931
|
}>;
|
1812
1932
|
declare const RadioGroup: z.ZodObject<z.objectUtil.extendShape<{
|
1813
1933
|
id: z.ZodString;
|
1934
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
1935
|
+
id: string;
|
1936
|
+
description: string;
|
1937
|
+
defaultMessage: string;
|
1938
|
+
}>;
|
1814
1939
|
parent: z.ZodOptional<z.ZodObject<{
|
1815
1940
|
$$field: z.ZodString;
|
1816
1941
|
}, "strip", z.ZodTypeAny, {
|
@@ -1818,8 +1943,9 @@ declare const RadioGroup: z.ZodObject<z.objectUtil.extendShape<{
|
|
1818
1943
|
}, {
|
1819
1944
|
$$field: string;
|
1820
1945
|
}>>;
|
1821
|
-
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
1822
1946
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
1947
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
1948
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
1823
1949
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
1824
1950
|
id: string;
|
1825
1951
|
description: string;
|
@@ -1843,17 +1969,13 @@ declare const RadioGroup: z.ZodObject<z.objectUtil.extendShape<{
|
|
1843
1969
|
};
|
1844
1970
|
validator: import(".").JSONSchema;
|
1845
1971
|
}>, "many">>>;
|
1846
|
-
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
1847
|
-
id: string;
|
1848
|
-
description: string;
|
1849
|
-
defaultMessage: string;
|
1850
|
-
}>;
|
1851
1972
|
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
1852
1973
|
id: string;
|
1853
1974
|
description: string;
|
1854
1975
|
defaultMessage: string;
|
1855
1976
|
}>>;
|
1856
1977
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
1978
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
1857
1979
|
}, {
|
1858
1980
|
type: z.ZodLiteral<"RADIO_GROUP">;
|
1859
1981
|
defaultValue: z.ZodOptional<z.ZodString>;
|
@@ -1918,9 +2040,11 @@ declare const RadioGroup: z.ZodObject<z.objectUtil.extendShape<{
|
|
1918
2040
|
type: "DISPLAY_ON_REVIEW";
|
1919
2041
|
conditional: import(".").JSONSchema;
|
1920
2042
|
})[] | undefined;
|
2043
|
+
secured?: boolean | undefined;
|
1921
2044
|
placeholder?: TranslationConfig | undefined;
|
1922
2045
|
helperText?: TranslationConfig | undefined;
|
1923
2046
|
hideLabel?: boolean | undefined;
|
2047
|
+
uncorrectable?: boolean | undefined;
|
1924
2048
|
defaultValue?: string | undefined;
|
1925
2049
|
configuration?: {
|
1926
2050
|
styles?: {
|
@@ -1965,6 +2089,7 @@ declare const RadioGroup: z.ZodObject<z.objectUtil.extendShape<{
|
|
1965
2089
|
type: "DISPLAY_ON_REVIEW";
|
1966
2090
|
conditional: import(".").JSONSchema;
|
1967
2091
|
})[] | undefined;
|
2092
|
+
secured?: boolean | undefined;
|
1968
2093
|
placeholder?: {
|
1969
2094
|
id: string;
|
1970
2095
|
description: string;
|
@@ -1976,6 +2101,7 @@ declare const RadioGroup: z.ZodObject<z.objectUtil.extendShape<{
|
|
1976
2101
|
defaultMessage: string;
|
1977
2102
|
} | undefined;
|
1978
2103
|
hideLabel?: boolean | undefined;
|
2104
|
+
uncorrectable?: boolean | undefined;
|
1979
2105
|
defaultValue?: string | undefined;
|
1980
2106
|
configuration?: {
|
1981
2107
|
styles?: {
|
@@ -1986,6 +2112,11 @@ declare const RadioGroup: z.ZodObject<z.objectUtil.extendShape<{
|
|
1986
2112
|
export type RadioGroup = z.infer<typeof RadioGroup>;
|
1987
2113
|
declare const BulletList: z.ZodObject<z.objectUtil.extendShape<{
|
1988
2114
|
id: z.ZodString;
|
2115
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2116
|
+
id: string;
|
2117
|
+
description: string;
|
2118
|
+
defaultMessage: string;
|
2119
|
+
}>;
|
1989
2120
|
parent: z.ZodOptional<z.ZodObject<{
|
1990
2121
|
$$field: z.ZodString;
|
1991
2122
|
}, "strip", z.ZodTypeAny, {
|
@@ -1993,8 +2124,9 @@ declare const BulletList: z.ZodObject<z.objectUtil.extendShape<{
|
|
1993
2124
|
}, {
|
1994
2125
|
$$field: string;
|
1995
2126
|
}>>;
|
1996
|
-
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
1997
2127
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2128
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
2129
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
1998
2130
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
1999
2131
|
id: string;
|
2000
2132
|
description: string;
|
@@ -2018,17 +2150,13 @@ declare const BulletList: z.ZodObject<z.objectUtil.extendShape<{
|
|
2018
2150
|
};
|
2019
2151
|
validator: import(".").JSONSchema;
|
2020
2152
|
}>, "many">>>;
|
2021
|
-
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2022
|
-
id: string;
|
2023
|
-
description: string;
|
2024
|
-
defaultMessage: string;
|
2025
|
-
}>;
|
2026
2153
|
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2027
2154
|
id: string;
|
2028
2155
|
description: string;
|
2029
2156
|
defaultMessage: string;
|
2030
2157
|
}>>;
|
2031
2158
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2159
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2032
2160
|
}, {
|
2033
2161
|
type: z.ZodLiteral<"BULLET_LIST">;
|
2034
2162
|
defaultValue: z.ZodOptional<z.ZodString>;
|
@@ -2082,9 +2210,11 @@ declare const BulletList: z.ZodObject<z.objectUtil.extendShape<{
|
|
2082
2210
|
type: "DISPLAY_ON_REVIEW";
|
2083
2211
|
conditional: import(".").JSONSchema;
|
2084
2212
|
})[] | undefined;
|
2213
|
+
secured?: boolean | undefined;
|
2085
2214
|
placeholder?: TranslationConfig | undefined;
|
2086
2215
|
helperText?: TranslationConfig | undefined;
|
2087
2216
|
hideLabel?: boolean | undefined;
|
2217
|
+
uncorrectable?: boolean | undefined;
|
2088
2218
|
defaultValue?: string | undefined;
|
2089
2219
|
}, {
|
2090
2220
|
type: "BULLET_LIST";
|
@@ -2121,6 +2251,7 @@ declare const BulletList: z.ZodObject<z.objectUtil.extendShape<{
|
|
2121
2251
|
type: "DISPLAY_ON_REVIEW";
|
2122
2252
|
conditional: import(".").JSONSchema;
|
2123
2253
|
})[] | undefined;
|
2254
|
+
secured?: boolean | undefined;
|
2124
2255
|
placeholder?: {
|
2125
2256
|
id: string;
|
2126
2257
|
description: string;
|
@@ -2132,6 +2263,7 @@ declare const BulletList: z.ZodObject<z.objectUtil.extendShape<{
|
|
2132
2263
|
defaultMessage: string;
|
2133
2264
|
} | undefined;
|
2134
2265
|
hideLabel?: boolean | undefined;
|
2266
|
+
uncorrectable?: boolean | undefined;
|
2135
2267
|
defaultValue?: string | undefined;
|
2136
2268
|
configuration?: {
|
2137
2269
|
styles?: {
|
@@ -2142,6 +2274,11 @@ declare const BulletList: z.ZodObject<z.objectUtil.extendShape<{
|
|
2142
2274
|
export type BulletList = z.infer<typeof BulletList>;
|
2143
2275
|
declare const Select: z.ZodObject<z.objectUtil.extendShape<{
|
2144
2276
|
id: z.ZodString;
|
2277
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2278
|
+
id: string;
|
2279
|
+
description: string;
|
2280
|
+
defaultMessage: string;
|
2281
|
+
}>;
|
2145
2282
|
parent: z.ZodOptional<z.ZodObject<{
|
2146
2283
|
$$field: z.ZodString;
|
2147
2284
|
}, "strip", z.ZodTypeAny, {
|
@@ -2149,8 +2286,9 @@ declare const Select: z.ZodObject<z.objectUtil.extendShape<{
|
|
2149
2286
|
}, {
|
2150
2287
|
$$field: string;
|
2151
2288
|
}>>;
|
2152
|
-
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
2153
2289
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2290
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
2291
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2154
2292
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2155
2293
|
id: string;
|
2156
2294
|
description: string;
|
@@ -2174,17 +2312,13 @@ declare const Select: z.ZodObject<z.objectUtil.extendShape<{
|
|
2174
2312
|
};
|
2175
2313
|
validator: import(".").JSONSchema;
|
2176
2314
|
}>, "many">>>;
|
2177
|
-
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2178
|
-
id: string;
|
2179
|
-
description: string;
|
2180
|
-
defaultMessage: string;
|
2181
|
-
}>;
|
2182
2315
|
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2183
2316
|
id: string;
|
2184
2317
|
description: string;
|
2185
2318
|
defaultMessage: string;
|
2186
2319
|
}>>;
|
2187
2320
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2321
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2188
2322
|
}, {
|
2189
2323
|
type: z.ZodLiteral<"SELECT">;
|
2190
2324
|
defaultValue: z.ZodOptional<z.ZodString>;
|
@@ -2232,9 +2366,11 @@ declare const Select: z.ZodObject<z.objectUtil.extendShape<{
|
|
2232
2366
|
type: "DISPLAY_ON_REVIEW";
|
2233
2367
|
conditional: import(".").JSONSchema;
|
2234
2368
|
})[] | undefined;
|
2369
|
+
secured?: boolean | undefined;
|
2235
2370
|
placeholder?: TranslationConfig | undefined;
|
2236
2371
|
helperText?: TranslationConfig | undefined;
|
2237
2372
|
hideLabel?: boolean | undefined;
|
2373
|
+
uncorrectable?: boolean | undefined;
|
2238
2374
|
defaultValue?: string | undefined;
|
2239
2375
|
}, {
|
2240
2376
|
type: "SELECT";
|
@@ -2274,6 +2410,7 @@ declare const Select: z.ZodObject<z.objectUtil.extendShape<{
|
|
2274
2410
|
type: "DISPLAY_ON_REVIEW";
|
2275
2411
|
conditional: import(".").JSONSchema;
|
2276
2412
|
})[] | undefined;
|
2413
|
+
secured?: boolean | undefined;
|
2277
2414
|
placeholder?: {
|
2278
2415
|
id: string;
|
2279
2416
|
description: string;
|
@@ -2285,10 +2422,38 @@ declare const Select: z.ZodObject<z.objectUtil.extendShape<{
|
|
2285
2422
|
defaultMessage: string;
|
2286
2423
|
} | undefined;
|
2287
2424
|
hideLabel?: boolean | undefined;
|
2425
|
+
uncorrectable?: boolean | undefined;
|
2288
2426
|
defaultValue?: string | undefined;
|
2289
2427
|
}>;
|
2290
|
-
declare const
|
2428
|
+
export declare const SelectDateRangeOption: z.ZodObject<{
|
2429
|
+
value: z.ZodEnum<["last7Days", "last30Days", "last90Days", "last365Days"]>;
|
2430
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2431
|
+
id: string;
|
2432
|
+
description: string;
|
2433
|
+
defaultMessage: string;
|
2434
|
+
}>;
|
2435
|
+
}, "strip", z.ZodTypeAny, {
|
2436
|
+
value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
2437
|
+
label: TranslationConfig;
|
2438
|
+
}, {
|
2439
|
+
value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
2440
|
+
label: {
|
2441
|
+
id: string;
|
2442
|
+
description: string;
|
2443
|
+
defaultMessage: string;
|
2444
|
+
};
|
2445
|
+
}>;
|
2446
|
+
export type SelectDateRangeOption = z.infer<typeof SelectDateRangeOption>;
|
2447
|
+
/**
|
2448
|
+
* For internal use only. Needed for search functionality.
|
2449
|
+
*/
|
2450
|
+
export declare const SelectDateRangeField: z.ZodObject<z.objectUtil.extendShape<{
|
2291
2451
|
id: z.ZodString;
|
2452
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2453
|
+
id: string;
|
2454
|
+
description: string;
|
2455
|
+
defaultMessage: string;
|
2456
|
+
}>;
|
2292
2457
|
parent: z.ZodOptional<z.ZodObject<{
|
2293
2458
|
$$field: z.ZodString;
|
2294
2459
|
}, "strip", z.ZodTypeAny, {
|
@@ -2296,8 +2461,9 @@ declare const NameField: z.ZodObject<z.objectUtil.extendShape<{
|
|
2296
2461
|
}, {
|
2297
2462
|
$$field: string;
|
2298
2463
|
}>>;
|
2299
|
-
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
2300
2464
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2465
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
2466
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2301
2467
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2302
2468
|
id: string;
|
2303
2469
|
description: string;
|
@@ -2321,57 +2487,213 @@ declare const NameField: z.ZodObject<z.objectUtil.extendShape<{
|
|
2321
2487
|
};
|
2322
2488
|
validator: import(".").JSONSchema;
|
2323
2489
|
}>, "many">>>;
|
2324
|
-
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2325
|
-
id: string;
|
2326
|
-
description: string;
|
2327
|
-
defaultMessage: string;
|
2328
|
-
}>;
|
2329
2490
|
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2330
2491
|
id: string;
|
2331
2492
|
description: string;
|
2332
2493
|
defaultMessage: string;
|
2333
2494
|
}>>;
|
2334
2495
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2496
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2335
2497
|
}, {
|
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, {
|
2498
|
+
type: z.ZodLiteral<"SELECT_DATE_RANGE">;
|
2499
|
+
defaultValue: z.ZodOptional<z.ZodEnum<["last7Days", "last30Days", "last90Days", "last365Days"]>>;
|
2500
|
+
options: z.ZodArray<z.ZodObject<{
|
2501
|
+
value: z.ZodEnum<["last7Days", "last30Days", "last90Days", "last365Days"]>;
|
2502
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2355
2503
|
id: string;
|
2356
2504
|
description: string;
|
2357
2505
|
defaultMessage: string;
|
2358
|
-
}
|
2506
|
+
}>;
|
2359
2507
|
}, "strip", z.ZodTypeAny, {
|
2360
|
-
|
2361
|
-
|
2362
|
-
postfix?: TranslationConfig | undefined;
|
2508
|
+
value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
2509
|
+
label: TranslationConfig;
|
2363
2510
|
}, {
|
2364
|
-
|
2365
|
-
|
2511
|
+
value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
2512
|
+
label: {
|
2366
2513
|
id: string;
|
2367
2514
|
description: string;
|
2368
2515
|
defaultMessage: string;
|
2369
|
-
}
|
2370
|
-
|
2371
|
-
|
2372
|
-
|
2516
|
+
};
|
2517
|
+
}>, "many">;
|
2518
|
+
}>, "strip", z.ZodTypeAny, {
|
2519
|
+
type: "SELECT_DATE_RANGE";
|
2520
|
+
id: string;
|
2521
|
+
options: {
|
2522
|
+
value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
2523
|
+
label: TranslationConfig;
|
2524
|
+
}[];
|
2525
|
+
label: TranslationConfig;
|
2526
|
+
parent?: {
|
2527
|
+
$$field: string;
|
2528
|
+
} | undefined;
|
2529
|
+
validation?: {
|
2530
|
+
message: TranslationConfig;
|
2531
|
+
validator: import(".").JSONSchema;
|
2532
|
+
}[] | undefined;
|
2533
|
+
required?: boolean | undefined;
|
2534
|
+
conditionals?: ({
|
2535
|
+
type: "SHOW";
|
2536
|
+
conditional: import(".").JSONSchema;
|
2537
|
+
} | {
|
2538
|
+
type: "ENABLE";
|
2539
|
+
conditional: import(".").JSONSchema;
|
2540
|
+
} | {
|
2541
|
+
type: "DISPLAY_ON_REVIEW";
|
2542
|
+
conditional: import(".").JSONSchema;
|
2543
|
+
})[] | undefined;
|
2544
|
+
secured?: boolean | undefined;
|
2545
|
+
placeholder?: TranslationConfig | undefined;
|
2546
|
+
helperText?: TranslationConfig | undefined;
|
2547
|
+
hideLabel?: boolean | undefined;
|
2548
|
+
uncorrectable?: boolean | undefined;
|
2549
|
+
defaultValue?: "last7Days" | "last30Days" | "last90Days" | "last365Days" | undefined;
|
2550
|
+
}, {
|
2551
|
+
type: "SELECT_DATE_RANGE";
|
2552
|
+
id: string;
|
2553
|
+
options: {
|
2554
|
+
value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
2555
|
+
label: {
|
2556
|
+
id: string;
|
2557
|
+
description: string;
|
2558
|
+
defaultMessage: string;
|
2559
|
+
};
|
2560
|
+
}[];
|
2561
|
+
label: {
|
2562
|
+
id: string;
|
2563
|
+
description: string;
|
2564
|
+
defaultMessage: string;
|
2565
|
+
};
|
2566
|
+
parent?: {
|
2567
|
+
$$field: string;
|
2568
|
+
} | undefined;
|
2569
|
+
validation?: {
|
2570
|
+
message: {
|
2571
|
+
id: string;
|
2572
|
+
description: string;
|
2573
|
+
defaultMessage: string;
|
2574
|
+
};
|
2575
|
+
validator: import(".").JSONSchema;
|
2576
|
+
}[] | undefined;
|
2577
|
+
required?: boolean | undefined;
|
2578
|
+
conditionals?: ({
|
2579
|
+
type: "SHOW";
|
2580
|
+
conditional: import(".").JSONSchema;
|
2581
|
+
} | {
|
2582
|
+
type: "ENABLE";
|
2583
|
+
conditional: import(".").JSONSchema;
|
2584
|
+
} | {
|
2585
|
+
type: "DISPLAY_ON_REVIEW";
|
2586
|
+
conditional: import(".").JSONSchema;
|
2587
|
+
})[] | undefined;
|
2588
|
+
secured?: boolean | undefined;
|
2589
|
+
placeholder?: {
|
2590
|
+
id: string;
|
2591
|
+
description: string;
|
2592
|
+
defaultMessage: string;
|
2593
|
+
} | undefined;
|
2594
|
+
helperText?: {
|
2595
|
+
id: string;
|
2596
|
+
description: string;
|
2597
|
+
defaultMessage: string;
|
2598
|
+
} | undefined;
|
2599
|
+
hideLabel?: boolean | undefined;
|
2600
|
+
uncorrectable?: boolean | undefined;
|
2601
|
+
defaultValue?: "last7Days" | "last30Days" | "last90Days" | "last365Days" | undefined;
|
2602
|
+
}>;
|
2603
|
+
export type SelectDateRangeField = z.infer<typeof SelectDateRangeField>;
|
2604
|
+
declare const NameField: z.ZodObject<z.objectUtil.extendShape<{
|
2605
|
+
id: z.ZodString;
|
2606
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2607
|
+
id: string;
|
2608
|
+
description: string;
|
2609
|
+
defaultMessage: string;
|
2610
|
+
}>;
|
2611
|
+
parent: z.ZodOptional<z.ZodObject<{
|
2612
|
+
$$field: z.ZodString;
|
2613
|
+
}, "strip", z.ZodTypeAny, {
|
2614
|
+
$$field: string;
|
2615
|
+
}, {
|
2616
|
+
$$field: string;
|
2617
|
+
}>>;
|
2618
|
+
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2619
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
2620
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2621
|
+
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2622
|
+
id: string;
|
2623
|
+
description: string;
|
2624
|
+
defaultMessage: string;
|
2625
|
+
}>>;
|
2626
|
+
validation: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodObject<{
|
2627
|
+
validator: z.ZodType<import(".").JSONSchema, z.ZodTypeDef, import(".").JSONSchema>;
|
2628
|
+
message: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2629
|
+
id: string;
|
2630
|
+
description: string;
|
2631
|
+
defaultMessage: string;
|
2632
|
+
}>;
|
2633
|
+
}, "strip", z.ZodTypeAny, {
|
2634
|
+
message: TranslationConfig;
|
2635
|
+
validator: import(".").JSONSchema;
|
2636
|
+
}, {
|
2637
|
+
message: {
|
2638
|
+
id: string;
|
2639
|
+
description: string;
|
2640
|
+
defaultMessage: string;
|
2641
|
+
};
|
2642
|
+
validator: import(".").JSONSchema;
|
2643
|
+
}>, "many">>>;
|
2644
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2645
|
+
id: string;
|
2646
|
+
description: string;
|
2647
|
+
defaultMessage: string;
|
2648
|
+
}>>;
|
2649
|
+
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2650
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2651
|
+
}, {
|
2652
|
+
type: z.ZodLiteral<"NAME">;
|
2653
|
+
defaultValue: z.ZodOptional<z.ZodObject<{
|
2654
|
+
firstname: z.ZodString;
|
2655
|
+
surname: z.ZodString;
|
2656
|
+
}, "strip", z.ZodTypeAny, {
|
2657
|
+
firstname: string;
|
2658
|
+
surname: string;
|
2659
|
+
}, {
|
2660
|
+
firstname: string;
|
2661
|
+
surname: string;
|
2662
|
+
}>>;
|
2663
|
+
configuration: z.ZodOptional<z.ZodObject<{
|
2664
|
+
maxLength: z.ZodOptional<z.ZodNumber>;
|
2665
|
+
prefix: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2666
|
+
id: string;
|
2667
|
+
description: string;
|
2668
|
+
defaultMessage: string;
|
2669
|
+
}>>;
|
2670
|
+
postfix: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2671
|
+
id: string;
|
2672
|
+
description: string;
|
2673
|
+
defaultMessage: string;
|
2674
|
+
}>>;
|
2675
|
+
includeMiddlename: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2676
|
+
searchMode: z.ZodOptional<z.ZodBoolean>;
|
2677
|
+
}, "strip", z.ZodTypeAny, {
|
2678
|
+
maxLength?: number | undefined;
|
2679
|
+
prefix?: TranslationConfig | undefined;
|
2680
|
+
postfix?: TranslationConfig | undefined;
|
2681
|
+
includeMiddlename?: boolean | undefined;
|
2682
|
+
searchMode?: boolean | undefined;
|
2683
|
+
}, {
|
2684
|
+
maxLength?: number | undefined;
|
2685
|
+
prefix?: {
|
2686
|
+
id: string;
|
2687
|
+
description: string;
|
2373
2688
|
defaultMessage: string;
|
2374
2689
|
} | undefined;
|
2690
|
+
postfix?: {
|
2691
|
+
id: string;
|
2692
|
+
description: string;
|
2693
|
+
defaultMessage: string;
|
2694
|
+
} | undefined;
|
2695
|
+
includeMiddlename?: boolean | undefined;
|
2696
|
+
searchMode?: boolean | undefined;
|
2375
2697
|
}>>;
|
2376
2698
|
}>, "strip", z.ZodTypeAny, {
|
2377
2699
|
type: "NAME";
|
@@ -2395,9 +2717,11 @@ declare const NameField: z.ZodObject<z.objectUtil.extendShape<{
|
|
2395
2717
|
type: "DISPLAY_ON_REVIEW";
|
2396
2718
|
conditional: import(".").JSONSchema;
|
2397
2719
|
})[] | undefined;
|
2720
|
+
secured?: boolean | undefined;
|
2398
2721
|
placeholder?: TranslationConfig | undefined;
|
2399
2722
|
helperText?: TranslationConfig | undefined;
|
2400
2723
|
hideLabel?: boolean | undefined;
|
2724
|
+
uncorrectable?: boolean | undefined;
|
2401
2725
|
defaultValue?: {
|
2402
2726
|
firstname: string;
|
2403
2727
|
surname: string;
|
@@ -2406,6 +2730,8 @@ declare const NameField: z.ZodObject<z.objectUtil.extendShape<{
|
|
2406
2730
|
maxLength?: number | undefined;
|
2407
2731
|
prefix?: TranslationConfig | undefined;
|
2408
2732
|
postfix?: TranslationConfig | undefined;
|
2733
|
+
includeMiddlename?: boolean | undefined;
|
2734
|
+
searchMode?: boolean | undefined;
|
2409
2735
|
} | undefined;
|
2410
2736
|
}, {
|
2411
2737
|
type: "NAME";
|
@@ -2437,6 +2763,7 @@ declare const NameField: z.ZodObject<z.objectUtil.extendShape<{
|
|
2437
2763
|
type: "DISPLAY_ON_REVIEW";
|
2438
2764
|
conditional: import(".").JSONSchema;
|
2439
2765
|
})[] | undefined;
|
2766
|
+
secured?: boolean | undefined;
|
2440
2767
|
placeholder?: {
|
2441
2768
|
id: string;
|
2442
2769
|
description: string;
|
@@ -2448,6 +2775,7 @@ declare const NameField: z.ZodObject<z.objectUtil.extendShape<{
|
|
2448
2775
|
defaultMessage: string;
|
2449
2776
|
} | undefined;
|
2450
2777
|
hideLabel?: boolean | undefined;
|
2778
|
+
uncorrectable?: boolean | undefined;
|
2451
2779
|
defaultValue?: {
|
2452
2780
|
firstname: string;
|
2453
2781
|
surname: string;
|
@@ -2464,10 +2792,17 @@ declare const NameField: z.ZodObject<z.objectUtil.extendShape<{
|
|
2464
2792
|
description: string;
|
2465
2793
|
defaultMessage: string;
|
2466
2794
|
} | undefined;
|
2795
|
+
includeMiddlename?: boolean | undefined;
|
2796
|
+
searchMode?: boolean | undefined;
|
2467
2797
|
} | undefined;
|
2468
2798
|
}>;
|
2469
2799
|
declare const PhoneField: z.ZodObject<z.objectUtil.extendShape<{
|
2470
2800
|
id: z.ZodString;
|
2801
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2802
|
+
id: string;
|
2803
|
+
description: string;
|
2804
|
+
defaultMessage: string;
|
2805
|
+
}>;
|
2471
2806
|
parent: z.ZodOptional<z.ZodObject<{
|
2472
2807
|
$$field: z.ZodString;
|
2473
2808
|
}, "strip", z.ZodTypeAny, {
|
@@ -2475,8 +2810,9 @@ declare const PhoneField: z.ZodObject<z.objectUtil.extendShape<{
|
|
2475
2810
|
}, {
|
2476
2811
|
$$field: string;
|
2477
2812
|
}>>;
|
2478
|
-
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
2479
2813
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2814
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
2815
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2480
2816
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2481
2817
|
id: string;
|
2482
2818
|
description: string;
|
@@ -2500,17 +2836,13 @@ declare const PhoneField: z.ZodObject<z.objectUtil.extendShape<{
|
|
2500
2836
|
};
|
2501
2837
|
validator: import(".").JSONSchema;
|
2502
2838
|
}>, "many">>>;
|
2503
|
-
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2504
|
-
id: string;
|
2505
|
-
description: string;
|
2506
|
-
defaultMessage: string;
|
2507
|
-
}>;
|
2508
2839
|
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2509
2840
|
id: string;
|
2510
2841
|
description: string;
|
2511
2842
|
defaultMessage: string;
|
2512
2843
|
}>>;
|
2513
2844
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2845
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2514
2846
|
}, {
|
2515
2847
|
defaultValue: z.ZodOptional<z.ZodString>;
|
2516
2848
|
type: z.ZodLiteral<"PHONE">;
|
@@ -2536,9 +2868,11 @@ declare const PhoneField: z.ZodObject<z.objectUtil.extendShape<{
|
|
2536
2868
|
type: "DISPLAY_ON_REVIEW";
|
2537
2869
|
conditional: import(".").JSONSchema;
|
2538
2870
|
})[] | undefined;
|
2871
|
+
secured?: boolean | undefined;
|
2539
2872
|
placeholder?: TranslationConfig | undefined;
|
2540
2873
|
helperText?: TranslationConfig | undefined;
|
2541
2874
|
hideLabel?: boolean | undefined;
|
2875
|
+
uncorrectable?: boolean | undefined;
|
2542
2876
|
defaultValue?: string | undefined;
|
2543
2877
|
}, {
|
2544
2878
|
type: "PHONE";
|
@@ -2570,6 +2904,7 @@ declare const PhoneField: z.ZodObject<z.objectUtil.extendShape<{
|
|
2570
2904
|
type: "DISPLAY_ON_REVIEW";
|
2571
2905
|
conditional: import(".").JSONSchema;
|
2572
2906
|
})[] | undefined;
|
2907
|
+
secured?: boolean | undefined;
|
2573
2908
|
placeholder?: {
|
2574
2909
|
id: string;
|
2575
2910
|
description: string;
|
@@ -2581,10 +2916,16 @@ declare const PhoneField: z.ZodObject<z.objectUtil.extendShape<{
|
|
2581
2916
|
defaultMessage: string;
|
2582
2917
|
} | undefined;
|
2583
2918
|
hideLabel?: boolean | undefined;
|
2919
|
+
uncorrectable?: boolean | undefined;
|
2584
2920
|
defaultValue?: string | undefined;
|
2585
2921
|
}>;
|
2586
2922
|
declare const IdField: z.ZodObject<z.objectUtil.extendShape<{
|
2587
2923
|
id: z.ZodString;
|
2924
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2925
|
+
id: string;
|
2926
|
+
description: string;
|
2927
|
+
defaultMessage: string;
|
2928
|
+
}>;
|
2588
2929
|
parent: z.ZodOptional<z.ZodObject<{
|
2589
2930
|
$$field: z.ZodString;
|
2590
2931
|
}, "strip", z.ZodTypeAny, {
|
@@ -2592,8 +2933,9 @@ declare const IdField: z.ZodObject<z.objectUtil.extendShape<{
|
|
2592
2933
|
}, {
|
2593
2934
|
$$field: string;
|
2594
2935
|
}>>;
|
2595
|
-
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
2596
2936
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2937
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
2938
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2597
2939
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2598
2940
|
id: string;
|
2599
2941
|
description: string;
|
@@ -2617,17 +2959,13 @@ declare const IdField: z.ZodObject<z.objectUtil.extendShape<{
|
|
2617
2959
|
};
|
2618
2960
|
validator: import(".").JSONSchema;
|
2619
2961
|
}>, "many">>>;
|
2620
|
-
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2621
|
-
id: string;
|
2622
|
-
description: string;
|
2623
|
-
defaultMessage: string;
|
2624
|
-
}>;
|
2625
2962
|
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2626
2963
|
id: string;
|
2627
2964
|
description: string;
|
2628
2965
|
defaultMessage: string;
|
2629
2966
|
}>>;
|
2630
2967
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2968
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2631
2969
|
}, {
|
2632
2970
|
defaultValue: z.ZodOptional<z.ZodString>;
|
2633
2971
|
type: z.ZodLiteral<"ID">;
|
@@ -2653,9 +2991,11 @@ declare const IdField: z.ZodObject<z.objectUtil.extendShape<{
|
|
2653
2991
|
type: "DISPLAY_ON_REVIEW";
|
2654
2992
|
conditional: import(".").JSONSchema;
|
2655
2993
|
})[] | undefined;
|
2994
|
+
secured?: boolean | undefined;
|
2656
2995
|
placeholder?: TranslationConfig | undefined;
|
2657
2996
|
helperText?: TranslationConfig | undefined;
|
2658
2997
|
hideLabel?: boolean | undefined;
|
2998
|
+
uncorrectable?: boolean | undefined;
|
2659
2999
|
defaultValue?: string | undefined;
|
2660
3000
|
}, {
|
2661
3001
|
type: "ID";
|
@@ -2687,6 +3027,7 @@ declare const IdField: z.ZodObject<z.objectUtil.extendShape<{
|
|
2687
3027
|
type: "DISPLAY_ON_REVIEW";
|
2688
3028
|
conditional: import(".").JSONSchema;
|
2689
3029
|
})[] | undefined;
|
3030
|
+
secured?: boolean | undefined;
|
2690
3031
|
placeholder?: {
|
2691
3032
|
id: string;
|
2692
3033
|
description: string;
|
@@ -2698,10 +3039,16 @@ declare const IdField: z.ZodObject<z.objectUtil.extendShape<{
|
|
2698
3039
|
defaultMessage: string;
|
2699
3040
|
} | undefined;
|
2700
3041
|
hideLabel?: boolean | undefined;
|
3042
|
+
uncorrectable?: boolean | undefined;
|
2701
3043
|
defaultValue?: string | undefined;
|
2702
3044
|
}>;
|
2703
3045
|
declare const Checkbox: z.ZodObject<z.objectUtil.extendShape<{
|
2704
3046
|
id: z.ZodString;
|
3047
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
3048
|
+
id: string;
|
3049
|
+
description: string;
|
3050
|
+
defaultMessage: string;
|
3051
|
+
}>;
|
2705
3052
|
parent: z.ZodOptional<z.ZodObject<{
|
2706
3053
|
$$field: z.ZodString;
|
2707
3054
|
}, "strip", z.ZodTypeAny, {
|
@@ -2709,8 +3056,9 @@ declare const Checkbox: z.ZodObject<z.objectUtil.extendShape<{
|
|
2709
3056
|
}, {
|
2710
3057
|
$$field: string;
|
2711
3058
|
}>>;
|
2712
|
-
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
2713
3059
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
3060
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
3061
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2714
3062
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2715
3063
|
id: string;
|
2716
3064
|
description: string;
|
@@ -2734,17 +3082,13 @@ declare const Checkbox: z.ZodObject<z.objectUtil.extendShape<{
|
|
2734
3082
|
};
|
2735
3083
|
validator: import(".").JSONSchema;
|
2736
3084
|
}>, "many">>>;
|
2737
|
-
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2738
|
-
id: string;
|
2739
|
-
description: string;
|
2740
|
-
defaultMessage: string;
|
2741
|
-
}>;
|
2742
3085
|
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2743
3086
|
id: string;
|
2744
3087
|
description: string;
|
2745
3088
|
defaultMessage: string;
|
2746
3089
|
}>>;
|
2747
3090
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
3091
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2748
3092
|
}, {
|
2749
3093
|
type: z.ZodLiteral<"CHECKBOX">;
|
2750
3094
|
defaultValue: z.ZodOptional<z.ZodBoolean>;
|
@@ -2770,9 +3114,11 @@ declare const Checkbox: z.ZodObject<z.objectUtil.extendShape<{
|
|
2770
3114
|
type: "DISPLAY_ON_REVIEW";
|
2771
3115
|
conditional: import(".").JSONSchema;
|
2772
3116
|
})[] | undefined;
|
3117
|
+
secured?: boolean | undefined;
|
2773
3118
|
placeholder?: TranslationConfig | undefined;
|
2774
3119
|
helperText?: TranslationConfig | undefined;
|
2775
3120
|
hideLabel?: boolean | undefined;
|
3121
|
+
uncorrectable?: boolean | undefined;
|
2776
3122
|
defaultValue?: boolean | undefined;
|
2777
3123
|
}, {
|
2778
3124
|
type: "CHECKBOX";
|
@@ -2804,6 +3150,7 @@ declare const Checkbox: z.ZodObject<z.objectUtil.extendShape<{
|
|
2804
3150
|
type: "DISPLAY_ON_REVIEW";
|
2805
3151
|
conditional: import(".").JSONSchema;
|
2806
3152
|
})[] | undefined;
|
3153
|
+
secured?: boolean | undefined;
|
2807
3154
|
placeholder?: {
|
2808
3155
|
id: string;
|
2809
3156
|
description: string;
|
@@ -2815,11 +3162,17 @@ declare const Checkbox: z.ZodObject<z.objectUtil.extendShape<{
|
|
2815
3162
|
defaultMessage: string;
|
2816
3163
|
} | undefined;
|
2817
3164
|
hideLabel?: boolean | undefined;
|
3165
|
+
uncorrectable?: boolean | undefined;
|
2818
3166
|
defaultValue?: boolean | undefined;
|
2819
3167
|
}>;
|
2820
3168
|
export type Checkbox = z.infer<typeof Checkbox>;
|
2821
3169
|
declare const Country: z.ZodObject<z.objectUtil.extendShape<{
|
2822
3170
|
id: z.ZodString;
|
3171
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
3172
|
+
id: string;
|
3173
|
+
description: string;
|
3174
|
+
defaultMessage: string;
|
3175
|
+
}>;
|
2823
3176
|
parent: z.ZodOptional<z.ZodObject<{
|
2824
3177
|
$$field: z.ZodString;
|
2825
3178
|
}, "strip", z.ZodTypeAny, {
|
@@ -2827,8 +3180,9 @@ declare const Country: z.ZodObject<z.objectUtil.extendShape<{
|
|
2827
3180
|
}, {
|
2828
3181
|
$$field: string;
|
2829
3182
|
}>>;
|
2830
|
-
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
2831
3183
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
3184
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
3185
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2832
3186
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2833
3187
|
id: string;
|
2834
3188
|
description: string;
|
@@ -2852,17 +3206,13 @@ declare const Country: z.ZodObject<z.objectUtil.extendShape<{
|
|
2852
3206
|
};
|
2853
3207
|
validator: import(".").JSONSchema;
|
2854
3208
|
}>, "many">>>;
|
2855
|
-
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2856
|
-
id: string;
|
2857
|
-
description: string;
|
2858
|
-
defaultMessage: string;
|
2859
|
-
}>;
|
2860
3209
|
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2861
3210
|
id: string;
|
2862
3211
|
description: string;
|
2863
3212
|
defaultMessage: string;
|
2864
3213
|
}>>;
|
2865
3214
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
3215
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2866
3216
|
}, {
|
2867
3217
|
type: z.ZodLiteral<"COUNTRY">;
|
2868
3218
|
defaultValue: z.ZodOptional<z.ZodString>;
|
@@ -2888,9 +3238,11 @@ declare const Country: z.ZodObject<z.objectUtil.extendShape<{
|
|
2888
3238
|
type: "DISPLAY_ON_REVIEW";
|
2889
3239
|
conditional: import(".").JSONSchema;
|
2890
3240
|
})[] | undefined;
|
3241
|
+
secured?: boolean | undefined;
|
2891
3242
|
placeholder?: TranslationConfig | undefined;
|
2892
3243
|
helperText?: TranslationConfig | undefined;
|
2893
3244
|
hideLabel?: boolean | undefined;
|
3245
|
+
uncorrectable?: boolean | undefined;
|
2894
3246
|
defaultValue?: string | undefined;
|
2895
3247
|
}, {
|
2896
3248
|
type: "COUNTRY";
|
@@ -2922,6 +3274,7 @@ declare const Country: z.ZodObject<z.objectUtil.extendShape<{
|
|
2922
3274
|
type: "DISPLAY_ON_REVIEW";
|
2923
3275
|
conditional: import(".").JSONSchema;
|
2924
3276
|
})[] | undefined;
|
3277
|
+
secured?: boolean | undefined;
|
2925
3278
|
placeholder?: {
|
2926
3279
|
id: string;
|
2927
3280
|
description: string;
|
@@ -2933,6 +3286,7 @@ declare const Country: z.ZodObject<z.objectUtil.extendShape<{
|
|
2933
3286
|
defaultMessage: string;
|
2934
3287
|
} | undefined;
|
2935
3288
|
hideLabel?: boolean | undefined;
|
3289
|
+
uncorrectable?: boolean | undefined;
|
2936
3290
|
defaultValue?: string | undefined;
|
2937
3291
|
}>;
|
2938
3292
|
export type Country = z.infer<typeof Country>;
|
@@ -2959,6 +3313,11 @@ declare const AdministrativeAreaConfiguration: z.ZodObject<{
|
|
2959
3313
|
}>;
|
2960
3314
|
declare const AdministrativeArea: z.ZodObject<z.objectUtil.extendShape<{
|
2961
3315
|
id: z.ZodString;
|
3316
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
3317
|
+
id: string;
|
3318
|
+
description: string;
|
3319
|
+
defaultMessage: string;
|
3320
|
+
}>;
|
2962
3321
|
parent: z.ZodOptional<z.ZodObject<{
|
2963
3322
|
$$field: z.ZodString;
|
2964
3323
|
}, "strip", z.ZodTypeAny, {
|
@@ -2966,8 +3325,9 @@ declare const AdministrativeArea: z.ZodObject<z.objectUtil.extendShape<{
|
|
2966
3325
|
}, {
|
2967
3326
|
$$field: string;
|
2968
3327
|
}>>;
|
2969
|
-
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
2970
3328
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
3329
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
3330
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2971
3331
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2972
3332
|
id: string;
|
2973
3333
|
description: string;
|
@@ -2991,17 +3351,13 @@ declare const AdministrativeArea: z.ZodObject<z.objectUtil.extendShape<{
|
|
2991
3351
|
};
|
2992
3352
|
validator: import(".").JSONSchema;
|
2993
3353
|
}>, "many">>>;
|
2994
|
-
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2995
|
-
id: string;
|
2996
|
-
description: string;
|
2997
|
-
defaultMessage: string;
|
2998
|
-
}>;
|
2999
3354
|
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
3000
3355
|
id: string;
|
3001
3356
|
description: string;
|
3002
3357
|
defaultMessage: string;
|
3003
3358
|
}>>;
|
3004
3359
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
3360
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
3005
3361
|
}, {
|
3006
3362
|
type: z.ZodLiteral<"ADMINISTRATIVE_AREA">;
|
3007
3363
|
defaultValue: z.ZodOptional<z.ZodString>;
|
@@ -3053,9 +3409,11 @@ declare const AdministrativeArea: z.ZodObject<z.objectUtil.extendShape<{
|
|
3053
3409
|
type: "DISPLAY_ON_REVIEW";
|
3054
3410
|
conditional: import(".").JSONSchema;
|
3055
3411
|
})[] | undefined;
|
3412
|
+
secured?: boolean | undefined;
|
3056
3413
|
placeholder?: TranslationConfig | undefined;
|
3057
3414
|
helperText?: TranslationConfig | undefined;
|
3058
3415
|
hideLabel?: boolean | undefined;
|
3416
|
+
uncorrectable?: boolean | undefined;
|
3059
3417
|
defaultValue?: string | undefined;
|
3060
3418
|
}, {
|
3061
3419
|
type: "ADMINISTRATIVE_AREA";
|
@@ -3093,6 +3451,7 @@ declare const AdministrativeArea: z.ZodObject<z.objectUtil.extendShape<{
|
|
3093
3451
|
type: "DISPLAY_ON_REVIEW";
|
3094
3452
|
conditional: import(".").JSONSchema;
|
3095
3453
|
})[] | undefined;
|
3454
|
+
secured?: boolean | undefined;
|
3096
3455
|
placeholder?: {
|
3097
3456
|
id: string;
|
3098
3457
|
description: string;
|
@@ -3104,11 +3463,17 @@ declare const AdministrativeArea: z.ZodObject<z.objectUtil.extendShape<{
|
|
3104
3463
|
defaultMessage: string;
|
3105
3464
|
} | undefined;
|
3106
3465
|
hideLabel?: boolean | undefined;
|
3466
|
+
uncorrectable?: boolean | undefined;
|
3107
3467
|
defaultValue?: string | undefined;
|
3108
3468
|
}>;
|
3109
3469
|
export type AdministrativeArea = z.infer<typeof AdministrativeArea>;
|
3110
3470
|
declare const Location: z.ZodObject<z.objectUtil.extendShape<{
|
3111
3471
|
id: z.ZodString;
|
3472
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
3473
|
+
id: string;
|
3474
|
+
description: string;
|
3475
|
+
defaultMessage: string;
|
3476
|
+
}>;
|
3112
3477
|
parent: z.ZodOptional<z.ZodObject<{
|
3113
3478
|
$$field: z.ZodString;
|
3114
3479
|
}, "strip", z.ZodTypeAny, {
|
@@ -3116,8 +3481,9 @@ declare const Location: z.ZodObject<z.objectUtil.extendShape<{
|
|
3116
3481
|
}, {
|
3117
3482
|
$$field: string;
|
3118
3483
|
}>>;
|
3119
|
-
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
3120
3484
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
3485
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
3486
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
3121
3487
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
3122
3488
|
id: string;
|
3123
3489
|
description: string;
|
@@ -3141,20 +3507,23 @@ declare const Location: z.ZodObject<z.objectUtil.extendShape<{
|
|
3141
3507
|
};
|
3142
3508
|
validator: import(".").JSONSchema;
|
3143
3509
|
}>, "many">>>;
|
3144
|
-
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
3145
|
-
id: string;
|
3146
|
-
description: string;
|
3147
|
-
defaultMessage: string;
|
3148
|
-
}>;
|
3149
3510
|
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
3150
3511
|
id: string;
|
3151
3512
|
description: string;
|
3152
3513
|
defaultMessage: string;
|
3153
3514
|
}>>;
|
3154
3515
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
3516
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
3155
3517
|
}, {
|
3156
3518
|
type: z.ZodLiteral<"LOCATION">;
|
3157
3519
|
defaultValue: z.ZodOptional<z.ZodString>;
|
3520
|
+
configuration: z.ZodOptional<z.ZodObject<{
|
3521
|
+
searchableResource: z.ZodOptional<z.ZodArray<z.ZodEnum<["locations", "facilities", "offices"]>, "many">>;
|
3522
|
+
}, "strip", z.ZodTypeAny, {
|
3523
|
+
searchableResource?: ("locations" | "facilities" | "offices")[] | undefined;
|
3524
|
+
}, {
|
3525
|
+
searchableResource?: ("locations" | "facilities" | "offices")[] | undefined;
|
3526
|
+
}>>;
|
3158
3527
|
}>, "strip", z.ZodTypeAny, {
|
3159
3528
|
type: "LOCATION";
|
3160
3529
|
id: string;
|
@@ -3177,10 +3546,15 @@ declare const Location: z.ZodObject<z.objectUtil.extendShape<{
|
|
3177
3546
|
type: "DISPLAY_ON_REVIEW";
|
3178
3547
|
conditional: import(".").JSONSchema;
|
3179
3548
|
})[] | undefined;
|
3549
|
+
secured?: boolean | undefined;
|
3180
3550
|
placeholder?: TranslationConfig | undefined;
|
3181
3551
|
helperText?: TranslationConfig | undefined;
|
3182
3552
|
hideLabel?: boolean | undefined;
|
3553
|
+
uncorrectable?: boolean | undefined;
|
3183
3554
|
defaultValue?: string | undefined;
|
3555
|
+
configuration?: {
|
3556
|
+
searchableResource?: ("locations" | "facilities" | "offices")[] | undefined;
|
3557
|
+
} | undefined;
|
3184
3558
|
}, {
|
3185
3559
|
type: "LOCATION";
|
3186
3560
|
id: string;
|
@@ -3211,6 +3585,7 @@ declare const Location: z.ZodObject<z.objectUtil.extendShape<{
|
|
3211
3585
|
type: "DISPLAY_ON_REVIEW";
|
3212
3586
|
conditional: import(".").JSONSchema;
|
3213
3587
|
})[] | undefined;
|
3588
|
+
secured?: boolean | undefined;
|
3214
3589
|
placeholder?: {
|
3215
3590
|
id: string;
|
3216
3591
|
description: string;
|
@@ -3222,11 +3597,20 @@ declare const Location: z.ZodObject<z.objectUtil.extendShape<{
|
|
3222
3597
|
defaultMessage: string;
|
3223
3598
|
} | undefined;
|
3224
3599
|
hideLabel?: boolean | undefined;
|
3600
|
+
uncorrectable?: boolean | undefined;
|
3225
3601
|
defaultValue?: string | undefined;
|
3602
|
+
configuration?: {
|
3603
|
+
searchableResource?: ("locations" | "facilities" | "offices")[] | undefined;
|
3604
|
+
} | undefined;
|
3226
3605
|
}>;
|
3227
3606
|
export type Location = z.infer<typeof Location>;
|
3228
3607
|
declare const FileUploadWithOptions: z.ZodObject<z.objectUtil.extendShape<{
|
3229
3608
|
id: z.ZodString;
|
3609
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
3610
|
+
id: string;
|
3611
|
+
description: string;
|
3612
|
+
defaultMessage: string;
|
3613
|
+
}>;
|
3230
3614
|
parent: z.ZodOptional<z.ZodObject<{
|
3231
3615
|
$$field: z.ZodString;
|
3232
3616
|
}, "strip", z.ZodTypeAny, {
|
@@ -3234,8 +3618,9 @@ declare const FileUploadWithOptions: z.ZodObject<z.objectUtil.extendShape<{
|
|
3234
3618
|
}, {
|
3235
3619
|
$$field: string;
|
3236
3620
|
}>>;
|
3237
|
-
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
3238
3621
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
3622
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
3623
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
3239
3624
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
3240
3625
|
id: string;
|
3241
3626
|
description: string;
|
@@ -3259,17 +3644,13 @@ declare const FileUploadWithOptions: z.ZodObject<z.objectUtil.extendShape<{
|
|
3259
3644
|
};
|
3260
3645
|
validator: import(".").JSONSchema;
|
3261
3646
|
}>, "many">>>;
|
3262
|
-
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
3263
|
-
id: string;
|
3264
|
-
description: string;
|
3265
|
-
defaultMessage: string;
|
3266
|
-
}>;
|
3267
3647
|
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
3268
3648
|
id: string;
|
3269
3649
|
description: string;
|
3270
3650
|
defaultMessage: string;
|
3271
3651
|
}>>;
|
3272
3652
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
3653
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
3273
3654
|
}, {
|
3274
3655
|
type: z.ZodLiteral<"FILE_WITH_OPTIONS">;
|
3275
3656
|
options: z.ZodArray<z.ZodObject<{
|
@@ -3291,19 +3672,19 @@ declare const FileUploadWithOptions: z.ZodObject<z.objectUtil.extendShape<{
|
|
3291
3672
|
};
|
3292
3673
|
}>, "many">;
|
3293
3674
|
defaultValue: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
3294
|
-
|
3675
|
+
path: z.ZodEffects<z.ZodString, string, string>;
|
3295
3676
|
originalFilename: z.ZodString;
|
3296
3677
|
type: z.ZodString;
|
3297
3678
|
option: z.ZodString;
|
3298
3679
|
}, "strip", z.ZodTypeAny, {
|
3299
3680
|
type: string;
|
3300
3681
|
option: string;
|
3301
|
-
|
3682
|
+
path: string;
|
3302
3683
|
originalFilename: string;
|
3303
3684
|
}, {
|
3304
3685
|
type: string;
|
3305
3686
|
option: string;
|
3306
|
-
|
3687
|
+
path: string;
|
3307
3688
|
originalFilename: string;
|
3308
3689
|
}>, "many">>;
|
3309
3690
|
configuration: z.ZodDefault<z.ZodObject<{
|
@@ -3346,13 +3727,15 @@ declare const FileUploadWithOptions: z.ZodObject<z.objectUtil.extendShape<{
|
|
3346
3727
|
type: "DISPLAY_ON_REVIEW";
|
3347
3728
|
conditional: import(".").JSONSchema;
|
3348
3729
|
})[] | undefined;
|
3730
|
+
secured?: boolean | undefined;
|
3349
3731
|
placeholder?: TranslationConfig | undefined;
|
3350
3732
|
helperText?: TranslationConfig | undefined;
|
3351
3733
|
hideLabel?: boolean | undefined;
|
3734
|
+
uncorrectable?: boolean | undefined;
|
3352
3735
|
defaultValue?: {
|
3353
3736
|
type: string;
|
3354
3737
|
option: string;
|
3355
|
-
|
3738
|
+
path: string;
|
3356
3739
|
originalFilename: string;
|
3357
3740
|
}[] | undefined;
|
3358
3741
|
}, {
|
@@ -3393,6 +3776,7 @@ declare const FileUploadWithOptions: z.ZodObject<z.objectUtil.extendShape<{
|
|
3393
3776
|
type: "DISPLAY_ON_REVIEW";
|
3394
3777
|
conditional: import(".").JSONSchema;
|
3395
3778
|
})[] | undefined;
|
3779
|
+
secured?: boolean | undefined;
|
3396
3780
|
placeholder?: {
|
3397
3781
|
id: string;
|
3398
3782
|
description: string;
|
@@ -3404,10 +3788,11 @@ declare const FileUploadWithOptions: z.ZodObject<z.objectUtil.extendShape<{
|
|
3404
3788
|
defaultMessage: string;
|
3405
3789
|
} | undefined;
|
3406
3790
|
hideLabel?: boolean | undefined;
|
3791
|
+
uncorrectable?: boolean | undefined;
|
3407
3792
|
defaultValue?: {
|
3408
3793
|
type: string;
|
3409
3794
|
option: string;
|
3410
|
-
|
3795
|
+
path: string;
|
3411
3796
|
originalFilename: string;
|
3412
3797
|
}[] | undefined;
|
3413
3798
|
configuration?: {
|
@@ -3418,6 +3803,11 @@ declare const FileUploadWithOptions: z.ZodObject<z.objectUtil.extendShape<{
|
|
3418
3803
|
export type FileUploadWithOptions = z.infer<typeof FileUploadWithOptions>;
|
3419
3804
|
declare const Facility: z.ZodObject<z.objectUtil.extendShape<{
|
3420
3805
|
id: z.ZodString;
|
3806
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
3807
|
+
id: string;
|
3808
|
+
description: string;
|
3809
|
+
defaultMessage: string;
|
3810
|
+
}>;
|
3421
3811
|
parent: z.ZodOptional<z.ZodObject<{
|
3422
3812
|
$$field: z.ZodString;
|
3423
3813
|
}, "strip", z.ZodTypeAny, {
|
@@ -3425,8 +3815,9 @@ declare const Facility: z.ZodObject<z.objectUtil.extendShape<{
|
|
3425
3815
|
}, {
|
3426
3816
|
$$field: string;
|
3427
3817
|
}>>;
|
3428
|
-
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
3429
3818
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
3819
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
3820
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
3430
3821
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
3431
3822
|
id: string;
|
3432
3823
|
description: string;
|
@@ -3450,17 +3841,13 @@ declare const Facility: z.ZodObject<z.objectUtil.extendShape<{
|
|
3450
3841
|
};
|
3451
3842
|
validator: import(".").JSONSchema;
|
3452
3843
|
}>, "many">>>;
|
3453
|
-
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
3454
|
-
id: string;
|
3455
|
-
description: string;
|
3456
|
-
defaultMessage: string;
|
3457
|
-
}>;
|
3458
3844
|
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
3459
3845
|
id: string;
|
3460
3846
|
description: string;
|
3461
3847
|
defaultMessage: string;
|
3462
3848
|
}>>;
|
3463
3849
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
3850
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
3464
3851
|
}, {
|
3465
3852
|
type: z.ZodLiteral<"FACILITY">;
|
3466
3853
|
defaultValue: z.ZodOptional<z.ZodString>;
|
@@ -3486,9 +3873,11 @@ declare const Facility: z.ZodObject<z.objectUtil.extendShape<{
|
|
3486
3873
|
type: "DISPLAY_ON_REVIEW";
|
3487
3874
|
conditional: import(".").JSONSchema;
|
3488
3875
|
})[] | undefined;
|
3876
|
+
secured?: boolean | undefined;
|
3489
3877
|
placeholder?: TranslationConfig | undefined;
|
3490
3878
|
helperText?: TranslationConfig | undefined;
|
3491
3879
|
hideLabel?: boolean | undefined;
|
3880
|
+
uncorrectable?: boolean | undefined;
|
3492
3881
|
defaultValue?: string | undefined;
|
3493
3882
|
}, {
|
3494
3883
|
type: "FACILITY";
|
@@ -3520,6 +3909,7 @@ declare const Facility: z.ZodObject<z.objectUtil.extendShape<{
|
|
3520
3909
|
type: "DISPLAY_ON_REVIEW";
|
3521
3910
|
conditional: import(".").JSONSchema;
|
3522
3911
|
})[] | undefined;
|
3912
|
+
secured?: boolean | undefined;
|
3523
3913
|
placeholder?: {
|
3524
3914
|
id: string;
|
3525
3915
|
description: string;
|
@@ -3531,11 +3921,17 @@ declare const Facility: z.ZodObject<z.objectUtil.extendShape<{
|
|
3531
3921
|
defaultMessage: string;
|
3532
3922
|
} | undefined;
|
3533
3923
|
hideLabel?: boolean | undefined;
|
3924
|
+
uncorrectable?: boolean | undefined;
|
3534
3925
|
defaultValue?: string | undefined;
|
3535
3926
|
}>;
|
3536
3927
|
export type Facility = z.infer<typeof Facility>;
|
3537
3928
|
declare const Office: z.ZodObject<z.objectUtil.extendShape<{
|
3538
3929
|
id: z.ZodString;
|
3930
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
3931
|
+
id: string;
|
3932
|
+
description: string;
|
3933
|
+
defaultMessage: string;
|
3934
|
+
}>;
|
3539
3935
|
parent: z.ZodOptional<z.ZodObject<{
|
3540
3936
|
$$field: z.ZodString;
|
3541
3937
|
}, "strip", z.ZodTypeAny, {
|
@@ -3543,8 +3939,9 @@ declare const Office: z.ZodObject<z.objectUtil.extendShape<{
|
|
3543
3939
|
}, {
|
3544
3940
|
$$field: string;
|
3545
3941
|
}>>;
|
3546
|
-
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
3547
3942
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
3943
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
3944
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
3548
3945
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
3549
3946
|
id: string;
|
3550
3947
|
description: string;
|
@@ -3568,17 +3965,13 @@ declare const Office: z.ZodObject<z.objectUtil.extendShape<{
|
|
3568
3965
|
};
|
3569
3966
|
validator: import(".").JSONSchema;
|
3570
3967
|
}>, "many">>>;
|
3571
|
-
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
3572
|
-
id: string;
|
3573
|
-
description: string;
|
3574
|
-
defaultMessage: string;
|
3575
|
-
}>;
|
3576
3968
|
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
3577
3969
|
id: string;
|
3578
3970
|
description: string;
|
3579
3971
|
defaultMessage: string;
|
3580
3972
|
}>>;
|
3581
3973
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
3974
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
3582
3975
|
}, {
|
3583
3976
|
type: z.ZodLiteral<"OFFICE">;
|
3584
3977
|
defaultValue: z.ZodOptional<z.ZodString>;
|
@@ -3604,9 +3997,11 @@ declare const Office: z.ZodObject<z.objectUtil.extendShape<{
|
|
3604
3997
|
type: "DISPLAY_ON_REVIEW";
|
3605
3998
|
conditional: import(".").JSONSchema;
|
3606
3999
|
})[] | undefined;
|
4000
|
+
secured?: boolean | undefined;
|
3607
4001
|
placeholder?: TranslationConfig | undefined;
|
3608
4002
|
helperText?: TranslationConfig | undefined;
|
3609
4003
|
hideLabel?: boolean | undefined;
|
4004
|
+
uncorrectable?: boolean | undefined;
|
3610
4005
|
defaultValue?: string | undefined;
|
3611
4006
|
}, {
|
3612
4007
|
type: "OFFICE";
|
@@ -3638,6 +4033,7 @@ declare const Office: z.ZodObject<z.objectUtil.extendShape<{
|
|
3638
4033
|
type: "DISPLAY_ON_REVIEW";
|
3639
4034
|
conditional: import(".").JSONSchema;
|
3640
4035
|
})[] | undefined;
|
4036
|
+
secured?: boolean | undefined;
|
3641
4037
|
placeholder?: {
|
3642
4038
|
id: string;
|
3643
4039
|
description: string;
|
@@ -3649,11 +4045,17 @@ declare const Office: z.ZodObject<z.objectUtil.extendShape<{
|
|
3649
4045
|
defaultMessage: string;
|
3650
4046
|
} | undefined;
|
3651
4047
|
hideLabel?: boolean | undefined;
|
4048
|
+
uncorrectable?: boolean | undefined;
|
3652
4049
|
defaultValue?: string | undefined;
|
3653
4050
|
}>;
|
3654
4051
|
export type Office = z.infer<typeof Office>;
|
3655
4052
|
declare const Address: z.ZodObject<z.objectUtil.extendShape<{
|
3656
4053
|
id: z.ZodString;
|
4054
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
4055
|
+
id: string;
|
4056
|
+
description: string;
|
4057
|
+
defaultMessage: string;
|
4058
|
+
}>;
|
3657
4059
|
parent: z.ZodOptional<z.ZodObject<{
|
3658
4060
|
$$field: z.ZodString;
|
3659
4061
|
}, "strip", z.ZodTypeAny, {
|
@@ -3661,8 +4063,9 @@ declare const Address: z.ZodObject<z.objectUtil.extendShape<{
|
|
3661
4063
|
}, {
|
3662
4064
|
$$field: string;
|
3663
4065
|
}>>;
|
3664
|
-
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
3665
4066
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4067
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
4068
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
3666
4069
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
3667
4070
|
id: string;
|
3668
4071
|
description: string;
|
@@ -3686,17 +4089,13 @@ declare const Address: z.ZodObject<z.objectUtil.extendShape<{
|
|
3686
4089
|
};
|
3687
4090
|
validator: import(".").JSONSchema;
|
3688
4091
|
}>, "many">>>;
|
3689
|
-
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
3690
|
-
id: string;
|
3691
|
-
description: string;
|
3692
|
-
defaultMessage: string;
|
3693
|
-
}>;
|
3694
4092
|
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
3695
4093
|
id: string;
|
3696
4094
|
description: string;
|
3697
4095
|
defaultMessage: string;
|
3698
4096
|
}>>;
|
3699
4097
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4098
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
3700
4099
|
}, {
|
3701
4100
|
type: z.ZodLiteral<"ADDRESS">;
|
3702
4101
|
defaultValue: z.ZodOptional<z.ZodUnion<[z.ZodDiscriminatedUnion<"urbanOrRural", [z.ZodObject<z.objectUtil.extendShape<{
|
@@ -3786,6 +4185,13 @@ declare const Address: z.ZodObject<z.objectUtil.extendShape<{
|
|
3786
4185
|
addressLine3?: string | undefined;
|
3787
4186
|
postcodeOrZip?: string | undefined;
|
3788
4187
|
}>]>>;
|
4188
|
+
configuration: z.ZodOptional<z.ZodObject<{
|
4189
|
+
searchMode: z.ZodOptional<z.ZodBoolean>;
|
4190
|
+
}, "strip", z.ZodTypeAny, {
|
4191
|
+
searchMode?: boolean | undefined;
|
4192
|
+
}, {
|
4193
|
+
searchMode?: boolean | undefined;
|
4194
|
+
}>>;
|
3789
4195
|
}>, "strip", z.ZodTypeAny, {
|
3790
4196
|
type: "ADDRESS";
|
3791
4197
|
id: string;
|
@@ -3808,9 +4214,11 @@ declare const Address: z.ZodObject<z.objectUtil.extendShape<{
|
|
3808
4214
|
type: "DISPLAY_ON_REVIEW";
|
3809
4215
|
conditional: import(".").JSONSchema;
|
3810
4216
|
})[] | undefined;
|
4217
|
+
secured?: boolean | undefined;
|
3811
4218
|
placeholder?: TranslationConfig | undefined;
|
3812
4219
|
helperText?: TranslationConfig | undefined;
|
3813
4220
|
hideLabel?: boolean | undefined;
|
4221
|
+
uncorrectable?: boolean | undefined;
|
3814
4222
|
defaultValue?: {
|
3815
4223
|
country: string;
|
3816
4224
|
district: string;
|
@@ -3840,6 +4248,9 @@ declare const Address: z.ZodObject<z.objectUtil.extendShape<{
|
|
3840
4248
|
addressLine3?: string | undefined;
|
3841
4249
|
postcodeOrZip?: string | undefined;
|
3842
4250
|
} | undefined;
|
4251
|
+
configuration?: {
|
4252
|
+
searchMode?: boolean | undefined;
|
4253
|
+
} | undefined;
|
3843
4254
|
}, {
|
3844
4255
|
type: "ADDRESS";
|
3845
4256
|
id: string;
|
@@ -3870,6 +4281,7 @@ declare const Address: z.ZodObject<z.objectUtil.extendShape<{
|
|
3870
4281
|
type: "DISPLAY_ON_REVIEW";
|
3871
4282
|
conditional: import(".").JSONSchema;
|
3872
4283
|
})[] | undefined;
|
4284
|
+
secured?: boolean | undefined;
|
3873
4285
|
placeholder?: {
|
3874
4286
|
id: string;
|
3875
4287
|
description: string;
|
@@ -3881,6 +4293,7 @@ declare const Address: z.ZodObject<z.objectUtil.extendShape<{
|
|
3881
4293
|
defaultMessage: string;
|
3882
4294
|
} | undefined;
|
3883
4295
|
hideLabel?: boolean | undefined;
|
4296
|
+
uncorrectable?: boolean | undefined;
|
3884
4297
|
defaultValue?: {
|
3885
4298
|
country: string;
|
3886
4299
|
district: string;
|
@@ -3910,6 +4323,9 @@ declare const Address: z.ZodObject<z.objectUtil.extendShape<{
|
|
3910
4323
|
addressLine3?: string | undefined;
|
3911
4324
|
postcodeOrZip?: string | undefined;
|
3912
4325
|
} | undefined;
|
4326
|
+
configuration?: {
|
4327
|
+
searchMode?: boolean | undefined;
|
4328
|
+
} | undefined;
|
3913
4329
|
}>;
|
3914
4330
|
export declare const DataEntry: z.ZodUnion<[z.ZodObject<{
|
3915
4331
|
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
@@ -3946,6 +4362,11 @@ export declare const DataEntry: z.ZodUnion<[z.ZodObject<{
|
|
3946
4362
|
export type DataEntry = z.infer<typeof DataEntry>;
|
3947
4363
|
declare const DataField: z.ZodObject<z.objectUtil.extendShape<{
|
3948
4364
|
id: z.ZodString;
|
4365
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
4366
|
+
id: string;
|
4367
|
+
description: string;
|
4368
|
+
defaultMessage: string;
|
4369
|
+
}>;
|
3949
4370
|
parent: z.ZodOptional<z.ZodObject<{
|
3950
4371
|
$$field: z.ZodString;
|
3951
4372
|
}, "strip", z.ZodTypeAny, {
|
@@ -3953,8 +4374,9 @@ declare const DataField: z.ZodObject<z.objectUtil.extendShape<{
|
|
3953
4374
|
}, {
|
3954
4375
|
$$field: string;
|
3955
4376
|
}>>;
|
3956
|
-
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
3957
4377
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4378
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
4379
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
3958
4380
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
3959
4381
|
id: string;
|
3960
4382
|
description: string;
|
@@ -3978,17 +4400,13 @@ declare const DataField: z.ZodObject<z.objectUtil.extendShape<{
|
|
3978
4400
|
};
|
3979
4401
|
validator: import(".").JSONSchema;
|
3980
4402
|
}>, "many">>>;
|
3981
|
-
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
3982
|
-
id: string;
|
3983
|
-
description: string;
|
3984
|
-
defaultMessage: string;
|
3985
|
-
}>;
|
3986
4403
|
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
3987
4404
|
id: string;
|
3988
4405
|
description: string;
|
3989
4406
|
defaultMessage: string;
|
3990
4407
|
}>>;
|
3991
4408
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4409
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
3992
4410
|
}, {
|
3993
4411
|
type: z.ZodLiteral<"DATA">;
|
3994
4412
|
configuration: z.ZodObject<{
|
@@ -4089,9 +4507,11 @@ declare const DataField: z.ZodObject<z.objectUtil.extendShape<{
|
|
4089
4507
|
type: "DISPLAY_ON_REVIEW";
|
4090
4508
|
conditional: import(".").JSONSchema;
|
4091
4509
|
})[] | undefined;
|
4510
|
+
secured?: boolean | undefined;
|
4092
4511
|
placeholder?: TranslationConfig | undefined;
|
4093
4512
|
helperText?: TranslationConfig | undefined;
|
4094
4513
|
hideLabel?: boolean | undefined;
|
4514
|
+
uncorrectable?: boolean | undefined;
|
4095
4515
|
}, {
|
4096
4516
|
type: "DATA";
|
4097
4517
|
id: string;
|
@@ -4143,6 +4563,7 @@ declare const DataField: z.ZodObject<z.objectUtil.extendShape<{
|
|
4143
4563
|
type: "DISPLAY_ON_REVIEW";
|
4144
4564
|
conditional: import(".").JSONSchema;
|
4145
4565
|
})[] | undefined;
|
4566
|
+
secured?: boolean | undefined;
|
4146
4567
|
placeholder?: {
|
4147
4568
|
id: string;
|
4148
4569
|
description: string;
|
@@ -4154,12 +4575,11 @@ declare const DataField: z.ZodObject<z.objectUtil.extendShape<{
|
|
4154
4575
|
defaultMessage: string;
|
4155
4576
|
} | undefined;
|
4156
4577
|
hideLabel?: boolean | undefined;
|
4578
|
+
uncorrectable?: boolean | undefined;
|
4157
4579
|
}>;
|
4158
4580
|
export type DataField = z.infer<typeof DataField>;
|
4159
4581
|
/** @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>;
|
4582
|
+
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 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
4583
|
/** @knipignore */
|
4164
4584
|
/**
|
4165
4585
|
* This is the type that should be used for the input of the FieldConfig. Useful when config uses zod defaults.
|
@@ -4167,6 +4587,11 @@ export type Inferred = z.infer<typeof Address> | z.infer<typeof TextField> | z.i
|
|
4167
4587
|
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>;
|
4168
4588
|
export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z.objectUtil.extendShape<{
|
4169
4589
|
id: z.ZodString;
|
4590
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
4591
|
+
id: string;
|
4592
|
+
description: string;
|
4593
|
+
defaultMessage: string;
|
4594
|
+
}>;
|
4170
4595
|
parent: z.ZodOptional<z.ZodObject<{
|
4171
4596
|
$$field: z.ZodString;
|
4172
4597
|
}, "strip", z.ZodTypeAny, {
|
@@ -4174,8 +4599,9 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4174
4599
|
}, {
|
4175
4600
|
$$field: string;
|
4176
4601
|
}>>;
|
4177
|
-
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
4178
4602
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4603
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
4604
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4179
4605
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
4180
4606
|
id: string;
|
4181
4607
|
description: string;
|
@@ -4199,17 +4625,13 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4199
4625
|
};
|
4200
4626
|
validator: import(".").JSONSchema;
|
4201
4627
|
}>, "many">>>;
|
4202
|
-
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
4203
|
-
id: string;
|
4204
|
-
description: string;
|
4205
|
-
defaultMessage: string;
|
4206
|
-
}>;
|
4207
4628
|
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
4208
4629
|
id: string;
|
4209
4630
|
description: string;
|
4210
4631
|
defaultMessage: string;
|
4211
4632
|
}>>;
|
4212
4633
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4634
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4213
4635
|
}, {
|
4214
4636
|
type: z.ZodLiteral<"ADDRESS">;
|
4215
4637
|
defaultValue: z.ZodOptional<z.ZodUnion<[z.ZodDiscriminatedUnion<"urbanOrRural", [z.ZodObject<z.objectUtil.extendShape<{
|
@@ -4299,6 +4721,13 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4299
4721
|
addressLine3?: string | undefined;
|
4300
4722
|
postcodeOrZip?: string | undefined;
|
4301
4723
|
}>]>>;
|
4724
|
+
configuration: z.ZodOptional<z.ZodObject<{
|
4725
|
+
searchMode: z.ZodOptional<z.ZodBoolean>;
|
4726
|
+
}, "strip", z.ZodTypeAny, {
|
4727
|
+
searchMode?: boolean | undefined;
|
4728
|
+
}, {
|
4729
|
+
searchMode?: boolean | undefined;
|
4730
|
+
}>>;
|
4302
4731
|
}>, "strip", z.ZodTypeAny, {
|
4303
4732
|
type: "ADDRESS";
|
4304
4733
|
id: string;
|
@@ -4321,9 +4750,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4321
4750
|
type: "DISPLAY_ON_REVIEW";
|
4322
4751
|
conditional: import(".").JSONSchema;
|
4323
4752
|
})[] | undefined;
|
4753
|
+
secured?: boolean | undefined;
|
4324
4754
|
placeholder?: TranslationConfig | undefined;
|
4325
4755
|
helperText?: TranslationConfig | undefined;
|
4326
4756
|
hideLabel?: boolean | undefined;
|
4757
|
+
uncorrectable?: boolean | undefined;
|
4327
4758
|
defaultValue?: {
|
4328
4759
|
country: string;
|
4329
4760
|
district: string;
|
@@ -4353,6 +4784,9 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4353
4784
|
addressLine3?: string | undefined;
|
4354
4785
|
postcodeOrZip?: string | undefined;
|
4355
4786
|
} | undefined;
|
4787
|
+
configuration?: {
|
4788
|
+
searchMode?: boolean | undefined;
|
4789
|
+
} | undefined;
|
4356
4790
|
}, {
|
4357
4791
|
type: "ADDRESS";
|
4358
4792
|
id: string;
|
@@ -4383,6 +4817,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4383
4817
|
type: "DISPLAY_ON_REVIEW";
|
4384
4818
|
conditional: import(".").JSONSchema;
|
4385
4819
|
})[] | undefined;
|
4820
|
+
secured?: boolean | undefined;
|
4386
4821
|
placeholder?: {
|
4387
4822
|
id: string;
|
4388
4823
|
description: string;
|
@@ -4394,6 +4829,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4394
4829
|
defaultMessage: string;
|
4395
4830
|
} | undefined;
|
4396
4831
|
hideLabel?: boolean | undefined;
|
4832
|
+
uncorrectable?: boolean | undefined;
|
4397
4833
|
defaultValue?: {
|
4398
4834
|
country: string;
|
4399
4835
|
district: string;
|
@@ -4423,8 +4859,16 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4423
4859
|
addressLine3?: string | undefined;
|
4424
4860
|
postcodeOrZip?: string | undefined;
|
4425
4861
|
} | undefined;
|
4862
|
+
configuration?: {
|
4863
|
+
searchMode?: boolean | undefined;
|
4864
|
+
} | undefined;
|
4426
4865
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
4427
4866
|
id: z.ZodString;
|
4867
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
4868
|
+
id: string;
|
4869
|
+
description: string;
|
4870
|
+
defaultMessage: string;
|
4871
|
+
}>;
|
4428
4872
|
parent: z.ZodOptional<z.ZodObject<{
|
4429
4873
|
$$field: z.ZodString;
|
4430
4874
|
}, "strip", z.ZodTypeAny, {
|
@@ -4432,8 +4876,9 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4432
4876
|
}, {
|
4433
4877
|
$$field: string;
|
4434
4878
|
}>>;
|
4435
|
-
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
4436
4879
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4880
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
4881
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4437
4882
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
4438
4883
|
id: string;
|
4439
4884
|
description: string;
|
@@ -4457,17 +4902,13 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4457
4902
|
};
|
4458
4903
|
validator: import(".").JSONSchema;
|
4459
4904
|
}>, "many">>>;
|
4460
|
-
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
4461
|
-
id: string;
|
4462
|
-
description: string;
|
4463
|
-
defaultMessage: string;
|
4464
|
-
}>;
|
4465
4905
|
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
4466
4906
|
id: string;
|
4467
4907
|
description: string;
|
4468
4908
|
defaultMessage: string;
|
4469
4909
|
}>>;
|
4470
4910
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4911
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4471
4912
|
}, {
|
4472
4913
|
type: z.ZodLiteral<"TEXT">;
|
4473
4914
|
defaultValue: z.ZodOptional<z.ZodString>;
|
@@ -4525,9 +4966,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4525
4966
|
type: "DISPLAY_ON_REVIEW";
|
4526
4967
|
conditional: import(".").JSONSchema;
|
4527
4968
|
})[] | undefined;
|
4969
|
+
secured?: boolean | undefined;
|
4528
4970
|
placeholder?: TranslationConfig | undefined;
|
4529
4971
|
helperText?: TranslationConfig | undefined;
|
4530
4972
|
hideLabel?: boolean | undefined;
|
4973
|
+
uncorrectable?: boolean | undefined;
|
4531
4974
|
defaultValue?: string | undefined;
|
4532
4975
|
configuration?: {
|
4533
4976
|
type?: "text" | "password" | undefined;
|
@@ -4565,6 +5008,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4565
5008
|
type: "DISPLAY_ON_REVIEW";
|
4566
5009
|
conditional: import(".").JSONSchema;
|
4567
5010
|
})[] | undefined;
|
5011
|
+
secured?: boolean | undefined;
|
4568
5012
|
placeholder?: {
|
4569
5013
|
id: string;
|
4570
5014
|
description: string;
|
@@ -4576,6 +5020,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4576
5020
|
defaultMessage: string;
|
4577
5021
|
} | undefined;
|
4578
5022
|
hideLabel?: boolean | undefined;
|
5023
|
+
uncorrectable?: boolean | undefined;
|
4579
5024
|
defaultValue?: string | undefined;
|
4580
5025
|
configuration?: {
|
4581
5026
|
type?: "text" | "password" | undefined;
|
@@ -4593,6 +5038,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4593
5038
|
} | undefined;
|
4594
5039
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
4595
5040
|
id: z.ZodString;
|
5041
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5042
|
+
id: string;
|
5043
|
+
description: string;
|
5044
|
+
defaultMessage: string;
|
5045
|
+
}>;
|
4596
5046
|
parent: z.ZodOptional<z.ZodObject<{
|
4597
5047
|
$$field: z.ZodString;
|
4598
5048
|
}, "strip", z.ZodTypeAny, {
|
@@ -4600,8 +5050,9 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4600
5050
|
}, {
|
4601
5051
|
$$field: string;
|
4602
5052
|
}>>;
|
4603
|
-
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
4604
5053
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5054
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
5055
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4605
5056
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
4606
5057
|
id: string;
|
4607
5058
|
description: string;
|
@@ -4625,17 +5076,13 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4625
5076
|
};
|
4626
5077
|
validator: import(".").JSONSchema;
|
4627
5078
|
}>, "many">>>;
|
4628
|
-
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
4629
|
-
id: string;
|
4630
|
-
description: string;
|
4631
|
-
defaultMessage: string;
|
4632
|
-
}>;
|
4633
5079
|
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
4634
5080
|
id: string;
|
4635
5081
|
description: string;
|
4636
5082
|
defaultMessage: string;
|
4637
5083
|
}>>;
|
4638
5084
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5085
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4639
5086
|
}, {
|
4640
5087
|
type: z.ZodLiteral<"NUMBER">;
|
4641
5088
|
defaultValue: z.ZodOptional<z.ZodNumber>;
|
@@ -4693,9 +5140,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4693
5140
|
type: "DISPLAY_ON_REVIEW";
|
4694
5141
|
conditional: import(".").JSONSchema;
|
4695
5142
|
})[] | undefined;
|
5143
|
+
secured?: boolean | undefined;
|
4696
5144
|
placeholder?: TranslationConfig | undefined;
|
4697
5145
|
helperText?: TranslationConfig | undefined;
|
4698
5146
|
hideLabel?: boolean | undefined;
|
5147
|
+
uncorrectable?: boolean | undefined;
|
4699
5148
|
defaultValue?: number | undefined;
|
4700
5149
|
configuration?: {
|
4701
5150
|
prefix?: TranslationConfig | undefined;
|
@@ -4733,6 +5182,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4733
5182
|
type: "DISPLAY_ON_REVIEW";
|
4734
5183
|
conditional: import(".").JSONSchema;
|
4735
5184
|
})[] | undefined;
|
5185
|
+
secured?: boolean | undefined;
|
4736
5186
|
placeholder?: {
|
4737
5187
|
id: string;
|
4738
5188
|
description: string;
|
@@ -4744,6 +5194,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4744
5194
|
defaultMessage: string;
|
4745
5195
|
} | undefined;
|
4746
5196
|
hideLabel?: boolean | undefined;
|
5197
|
+
uncorrectable?: boolean | undefined;
|
4747
5198
|
defaultValue?: number | undefined;
|
4748
5199
|
configuration?: {
|
4749
5200
|
prefix?: {
|
@@ -4761,6 +5212,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4761
5212
|
} | undefined;
|
4762
5213
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
4763
5214
|
id: z.ZodString;
|
5215
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5216
|
+
id: string;
|
5217
|
+
description: string;
|
5218
|
+
defaultMessage: string;
|
5219
|
+
}>;
|
4764
5220
|
parent: z.ZodOptional<z.ZodObject<{
|
4765
5221
|
$$field: z.ZodString;
|
4766
5222
|
}, "strip", z.ZodTypeAny, {
|
@@ -4768,8 +5224,9 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4768
5224
|
}, {
|
4769
5225
|
$$field: string;
|
4770
5226
|
}>>;
|
4771
|
-
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
4772
5227
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5228
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
5229
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4773
5230
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
4774
5231
|
id: string;
|
4775
5232
|
description: string;
|
@@ -4793,17 +5250,13 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4793
5250
|
};
|
4794
5251
|
validator: import(".").JSONSchema;
|
4795
5252
|
}>, "many">>>;
|
4796
|
-
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
4797
|
-
id: string;
|
4798
|
-
description: string;
|
4799
|
-
defaultMessage: string;
|
4800
|
-
}>;
|
4801
5253
|
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
4802
5254
|
id: string;
|
4803
5255
|
description: string;
|
4804
5256
|
defaultMessage: string;
|
4805
5257
|
}>>;
|
4806
5258
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5259
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4807
5260
|
}, {
|
4808
5261
|
type: z.ZodLiteral<"TEXTAREA">;
|
4809
5262
|
defaultValue: z.ZodOptional<z.ZodString>;
|
@@ -4864,9 +5317,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4864
5317
|
type: "DISPLAY_ON_REVIEW";
|
4865
5318
|
conditional: import(".").JSONSchema;
|
4866
5319
|
})[] | undefined;
|
5320
|
+
secured?: boolean | undefined;
|
4867
5321
|
placeholder?: TranslationConfig | undefined;
|
4868
5322
|
helperText?: TranslationConfig | undefined;
|
4869
5323
|
hideLabel?: boolean | undefined;
|
5324
|
+
uncorrectable?: boolean | undefined;
|
4870
5325
|
defaultValue?: string | undefined;
|
4871
5326
|
configuration?: {
|
4872
5327
|
maxLength?: number | undefined;
|
@@ -4905,6 +5360,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4905
5360
|
type: "DISPLAY_ON_REVIEW";
|
4906
5361
|
conditional: import(".").JSONSchema;
|
4907
5362
|
})[] | undefined;
|
5363
|
+
secured?: boolean | undefined;
|
4908
5364
|
placeholder?: {
|
4909
5365
|
id: string;
|
4910
5366
|
description: string;
|
@@ -4916,6 +5372,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4916
5372
|
defaultMessage: string;
|
4917
5373
|
} | undefined;
|
4918
5374
|
hideLabel?: boolean | undefined;
|
5375
|
+
uncorrectable?: boolean | undefined;
|
4919
5376
|
defaultValue?: string | undefined;
|
4920
5377
|
configuration?: {
|
4921
5378
|
maxLength?: number | undefined;
|
@@ -4934,6 +5391,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4934
5391
|
} | undefined;
|
4935
5392
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
4936
5393
|
id: z.ZodString;
|
5394
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5395
|
+
id: string;
|
5396
|
+
description: string;
|
5397
|
+
defaultMessage: string;
|
5398
|
+
}>;
|
4937
5399
|
parent: z.ZodOptional<z.ZodObject<{
|
4938
5400
|
$$field: z.ZodString;
|
4939
5401
|
}, "strip", z.ZodTypeAny, {
|
@@ -4941,8 +5403,9 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4941
5403
|
}, {
|
4942
5404
|
$$field: string;
|
4943
5405
|
}>>;
|
4944
|
-
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
4945
5406
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5407
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
5408
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4946
5409
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
4947
5410
|
id: string;
|
4948
5411
|
description: string;
|
@@ -4966,17 +5429,13 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4966
5429
|
};
|
4967
5430
|
validator: import(".").JSONSchema;
|
4968
5431
|
}>, "many">>>;
|
4969
|
-
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
4970
|
-
id: string;
|
4971
|
-
description: string;
|
4972
|
-
defaultMessage: string;
|
4973
|
-
}>;
|
4974
5432
|
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
4975
5433
|
id: string;
|
4976
5434
|
description: string;
|
4977
5435
|
defaultMessage: string;
|
4978
5436
|
}>>;
|
4979
5437
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5438
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4980
5439
|
}, {
|
4981
5440
|
type: z.ZodLiteral<"DATE">;
|
4982
5441
|
defaultValue: z.ZodOptional<z.ZodString>;
|
@@ -5017,9 +5476,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5017
5476
|
type: "DISPLAY_ON_REVIEW";
|
5018
5477
|
conditional: import(".").JSONSchema;
|
5019
5478
|
})[] | undefined;
|
5479
|
+
secured?: boolean | undefined;
|
5020
5480
|
placeholder?: TranslationConfig | undefined;
|
5021
5481
|
helperText?: TranslationConfig | undefined;
|
5022
5482
|
hideLabel?: boolean | undefined;
|
5483
|
+
uncorrectable?: boolean | undefined;
|
5023
5484
|
defaultValue?: string | undefined;
|
5024
5485
|
configuration?: {
|
5025
5486
|
notice?: TranslationConfig | undefined;
|
@@ -5054,6 +5515,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5054
5515
|
type: "DISPLAY_ON_REVIEW";
|
5055
5516
|
conditional: import(".").JSONSchema;
|
5056
5517
|
})[] | undefined;
|
5518
|
+
secured?: boolean | undefined;
|
5057
5519
|
placeholder?: {
|
5058
5520
|
id: string;
|
5059
5521
|
description: string;
|
@@ -5065,6 +5527,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5065
5527
|
defaultMessage: string;
|
5066
5528
|
} | undefined;
|
5067
5529
|
hideLabel?: boolean | undefined;
|
5530
|
+
uncorrectable?: boolean | undefined;
|
5068
5531
|
defaultValue?: string | undefined;
|
5069
5532
|
configuration?: {
|
5070
5533
|
notice?: {
|
@@ -5075,6 +5538,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5075
5538
|
} | undefined;
|
5076
5539
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
5077
5540
|
id: z.ZodString;
|
5541
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5542
|
+
id: string;
|
5543
|
+
description: string;
|
5544
|
+
defaultMessage: string;
|
5545
|
+
}>;
|
5078
5546
|
parent: z.ZodOptional<z.ZodObject<{
|
5079
5547
|
$$field: z.ZodString;
|
5080
5548
|
}, "strip", z.ZodTypeAny, {
|
@@ -5082,8 +5550,9 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5082
5550
|
}, {
|
5083
5551
|
$$field: string;
|
5084
5552
|
}>>;
|
5085
|
-
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
5086
5553
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5554
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
5555
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5087
5556
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5088
5557
|
id: string;
|
5089
5558
|
description: string;
|
@@ -5107,20 +5576,25 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5107
5576
|
};
|
5108
5577
|
validator: import(".").JSONSchema;
|
5109
5578
|
}>, "many">>>;
|
5110
|
-
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5111
|
-
id: string;
|
5112
|
-
description: string;
|
5113
|
-
defaultMessage: string;
|
5114
|
-
}>;
|
5115
5579
|
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5116
5580
|
id: string;
|
5117
5581
|
description: string;
|
5118
5582
|
defaultMessage: string;
|
5119
5583
|
}>>;
|
5120
5584
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5585
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5121
5586
|
}, {
|
5122
5587
|
type: z.ZodLiteral<"DATE_RANGE">;
|
5123
|
-
defaultValue: z.ZodOptional<z.ZodUnion<[z.
|
5588
|
+
defaultValue: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
5589
|
+
start: z.ZodString;
|
5590
|
+
end: z.ZodString;
|
5591
|
+
}, "strip", z.ZodTypeAny, {
|
5592
|
+
start: string;
|
5593
|
+
end: string;
|
5594
|
+
}, {
|
5595
|
+
start: string;
|
5596
|
+
end: string;
|
5597
|
+
}>, z.ZodString]>>;
|
5124
5598
|
configuration: z.ZodOptional<z.ZodObject<{
|
5125
5599
|
notice: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5126
5600
|
id: string;
|
@@ -5158,10 +5632,15 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5158
5632
|
type: "DISPLAY_ON_REVIEW";
|
5159
5633
|
conditional: import(".").JSONSchema;
|
5160
5634
|
})[] | undefined;
|
5635
|
+
secured?: boolean | undefined;
|
5161
5636
|
placeholder?: TranslationConfig | undefined;
|
5162
5637
|
helperText?: TranslationConfig | undefined;
|
5163
5638
|
hideLabel?: boolean | undefined;
|
5164
|
-
|
5639
|
+
uncorrectable?: boolean | undefined;
|
5640
|
+
defaultValue?: string | {
|
5641
|
+
start: string;
|
5642
|
+
end: string;
|
5643
|
+
} | undefined;
|
5165
5644
|
configuration?: {
|
5166
5645
|
notice?: TranslationConfig | undefined;
|
5167
5646
|
} | undefined;
|
@@ -5195,6 +5674,169 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5195
5674
|
type: "DISPLAY_ON_REVIEW";
|
5196
5675
|
conditional: import(".").JSONSchema;
|
5197
5676
|
})[] | undefined;
|
5677
|
+
secured?: boolean | undefined;
|
5678
|
+
placeholder?: {
|
5679
|
+
id: string;
|
5680
|
+
description: string;
|
5681
|
+
defaultMessage: string;
|
5682
|
+
} | undefined;
|
5683
|
+
helperText?: {
|
5684
|
+
id: string;
|
5685
|
+
description: string;
|
5686
|
+
defaultMessage: string;
|
5687
|
+
} | undefined;
|
5688
|
+
hideLabel?: boolean | undefined;
|
5689
|
+
uncorrectable?: boolean | undefined;
|
5690
|
+
defaultValue?: string | {
|
5691
|
+
start: string;
|
5692
|
+
end: string;
|
5693
|
+
} | undefined;
|
5694
|
+
configuration?: {
|
5695
|
+
notice?: {
|
5696
|
+
id: string;
|
5697
|
+
description: string;
|
5698
|
+
defaultMessage: string;
|
5699
|
+
} | undefined;
|
5700
|
+
} | undefined;
|
5701
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
5702
|
+
id: z.ZodString;
|
5703
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5704
|
+
id: string;
|
5705
|
+
description: string;
|
5706
|
+
defaultMessage: string;
|
5707
|
+
}>;
|
5708
|
+
parent: z.ZodOptional<z.ZodObject<{
|
5709
|
+
$$field: z.ZodString;
|
5710
|
+
}, "strip", z.ZodTypeAny, {
|
5711
|
+
$$field: string;
|
5712
|
+
}, {
|
5713
|
+
$$field: string;
|
5714
|
+
}>>;
|
5715
|
+
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5716
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
5717
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5718
|
+
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5719
|
+
id: string;
|
5720
|
+
description: string;
|
5721
|
+
defaultMessage: string;
|
5722
|
+
}>>;
|
5723
|
+
validation: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodObject<{
|
5724
|
+
validator: z.ZodType<import(".").JSONSchema, z.ZodTypeDef, import(".").JSONSchema>;
|
5725
|
+
message: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5726
|
+
id: string;
|
5727
|
+
description: string;
|
5728
|
+
defaultMessage: string;
|
5729
|
+
}>;
|
5730
|
+
}, "strip", z.ZodTypeAny, {
|
5731
|
+
message: TranslationConfig;
|
5732
|
+
validator: import(".").JSONSchema;
|
5733
|
+
}, {
|
5734
|
+
message: {
|
5735
|
+
id: string;
|
5736
|
+
description: string;
|
5737
|
+
defaultMessage: string;
|
5738
|
+
};
|
5739
|
+
validator: import(".").JSONSchema;
|
5740
|
+
}>, "many">>>;
|
5741
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5742
|
+
id: string;
|
5743
|
+
description: string;
|
5744
|
+
defaultMessage: string;
|
5745
|
+
}>>;
|
5746
|
+
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5747
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5748
|
+
}, {
|
5749
|
+
type: z.ZodLiteral<"SELECT_DATE_RANGE">;
|
5750
|
+
defaultValue: z.ZodOptional<z.ZodEnum<["last7Days", "last30Days", "last90Days", "last365Days"]>>;
|
5751
|
+
options: z.ZodArray<z.ZodObject<{
|
5752
|
+
value: z.ZodEnum<["last7Days", "last30Days", "last90Days", "last365Days"]>;
|
5753
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5754
|
+
id: string;
|
5755
|
+
description: string;
|
5756
|
+
defaultMessage: string;
|
5757
|
+
}>;
|
5758
|
+
}, "strip", z.ZodTypeAny, {
|
5759
|
+
value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
5760
|
+
label: TranslationConfig;
|
5761
|
+
}, {
|
5762
|
+
value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
5763
|
+
label: {
|
5764
|
+
id: string;
|
5765
|
+
description: string;
|
5766
|
+
defaultMessage: string;
|
5767
|
+
};
|
5768
|
+
}>, "many">;
|
5769
|
+
}>, "strip", z.ZodTypeAny, {
|
5770
|
+
type: "SELECT_DATE_RANGE";
|
5771
|
+
id: string;
|
5772
|
+
options: {
|
5773
|
+
value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
5774
|
+
label: TranslationConfig;
|
5775
|
+
}[];
|
5776
|
+
label: TranslationConfig;
|
5777
|
+
parent?: {
|
5778
|
+
$$field: string;
|
5779
|
+
} | undefined;
|
5780
|
+
validation?: {
|
5781
|
+
message: TranslationConfig;
|
5782
|
+
validator: import(".").JSONSchema;
|
5783
|
+
}[] | undefined;
|
5784
|
+
required?: boolean | undefined;
|
5785
|
+
conditionals?: ({
|
5786
|
+
type: "SHOW";
|
5787
|
+
conditional: import(".").JSONSchema;
|
5788
|
+
} | {
|
5789
|
+
type: "ENABLE";
|
5790
|
+
conditional: import(".").JSONSchema;
|
5791
|
+
} | {
|
5792
|
+
type: "DISPLAY_ON_REVIEW";
|
5793
|
+
conditional: import(".").JSONSchema;
|
5794
|
+
})[] | undefined;
|
5795
|
+
secured?: boolean | undefined;
|
5796
|
+
placeholder?: TranslationConfig | undefined;
|
5797
|
+
helperText?: TranslationConfig | undefined;
|
5798
|
+
hideLabel?: boolean | undefined;
|
5799
|
+
uncorrectable?: boolean | undefined;
|
5800
|
+
defaultValue?: "last7Days" | "last30Days" | "last90Days" | "last365Days" | undefined;
|
5801
|
+
}, {
|
5802
|
+
type: "SELECT_DATE_RANGE";
|
5803
|
+
id: string;
|
5804
|
+
options: {
|
5805
|
+
value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
|
5806
|
+
label: {
|
5807
|
+
id: string;
|
5808
|
+
description: string;
|
5809
|
+
defaultMessage: string;
|
5810
|
+
};
|
5811
|
+
}[];
|
5812
|
+
label: {
|
5813
|
+
id: string;
|
5814
|
+
description: string;
|
5815
|
+
defaultMessage: string;
|
5816
|
+
};
|
5817
|
+
parent?: {
|
5818
|
+
$$field: string;
|
5819
|
+
} | undefined;
|
5820
|
+
validation?: {
|
5821
|
+
message: {
|
5822
|
+
id: string;
|
5823
|
+
description: string;
|
5824
|
+
defaultMessage: string;
|
5825
|
+
};
|
5826
|
+
validator: import(".").JSONSchema;
|
5827
|
+
}[] | undefined;
|
5828
|
+
required?: boolean | undefined;
|
5829
|
+
conditionals?: ({
|
5830
|
+
type: "SHOW";
|
5831
|
+
conditional: import(".").JSONSchema;
|
5832
|
+
} | {
|
5833
|
+
type: "ENABLE";
|
5834
|
+
conditional: import(".").JSONSchema;
|
5835
|
+
} | {
|
5836
|
+
type: "DISPLAY_ON_REVIEW";
|
5837
|
+
conditional: import(".").JSONSchema;
|
5838
|
+
})[] | undefined;
|
5839
|
+
secured?: boolean | undefined;
|
5198
5840
|
placeholder?: {
|
5199
5841
|
id: string;
|
5200
5842
|
description: string;
|
@@ -5206,16 +5848,15 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5206
5848
|
defaultMessage: string;
|
5207
5849
|
} | undefined;
|
5208
5850
|
hideLabel?: boolean | undefined;
|
5209
|
-
|
5210
|
-
|
5211
|
-
notice?: {
|
5212
|
-
id: string;
|
5213
|
-
description: string;
|
5214
|
-
defaultMessage: string;
|
5215
|
-
} | undefined;
|
5216
|
-
} | undefined;
|
5851
|
+
uncorrectable?: boolean | undefined;
|
5852
|
+
defaultValue?: "last7Days" | "last30Days" | "last90Days" | "last365Days" | undefined;
|
5217
5853
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
5218
5854
|
id: z.ZodString;
|
5855
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5856
|
+
id: string;
|
5857
|
+
description: string;
|
5858
|
+
defaultMessage: string;
|
5859
|
+
}>;
|
5219
5860
|
parent: z.ZodOptional<z.ZodObject<{
|
5220
5861
|
$$field: z.ZodString;
|
5221
5862
|
}, "strip", z.ZodTypeAny, {
|
@@ -5223,8 +5864,9 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5223
5864
|
}, {
|
5224
5865
|
$$field: string;
|
5225
5866
|
}>>;
|
5226
|
-
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
5227
5867
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5868
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
5869
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5228
5870
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5229
5871
|
id: string;
|
5230
5872
|
description: string;
|
@@ -5248,35 +5890,36 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5248
5890
|
};
|
5249
5891
|
validator: import(".").JSONSchema;
|
5250
5892
|
}>, "many">>>;
|
5251
|
-
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5252
|
-
id: string;
|
5253
|
-
description: string;
|
5254
|
-
defaultMessage: string;
|
5255
|
-
}>;
|
5256
5893
|
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5257
5894
|
id: string;
|
5258
5895
|
description: string;
|
5259
5896
|
defaultMessage: string;
|
5260
5897
|
}>>;
|
5261
5898
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5899
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5262
5900
|
}, {
|
5263
5901
|
type: z.ZodLiteral<"PARAGRAPH">;
|
5264
5902
|
defaultValue: z.ZodOptional<z.ZodString>;
|
5265
5903
|
configuration: z.ZodDefault<z.ZodObject<{
|
5266
5904
|
styles: z.ZodOptional<z.ZodObject<{
|
5267
5905
|
fontVariant: z.ZodOptional<z.ZodEnum<["reg12", "reg14", "reg16", "reg18", "h4", "h3", "h2", "h1"]>>;
|
5906
|
+
hint: z.ZodOptional<z.ZodBoolean>;
|
5268
5907
|
}, "strip", z.ZodTypeAny, {
|
5269
5908
|
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
5909
|
+
hint?: boolean | undefined;
|
5270
5910
|
}, {
|
5271
5911
|
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
5912
|
+
hint?: boolean | undefined;
|
5272
5913
|
}>>;
|
5273
5914
|
}, "strip", z.ZodTypeAny, {
|
5274
5915
|
styles?: {
|
5275
5916
|
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
5917
|
+
hint?: boolean | undefined;
|
5276
5918
|
} | undefined;
|
5277
5919
|
}, {
|
5278
5920
|
styles?: {
|
5279
5921
|
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
5922
|
+
hint?: boolean | undefined;
|
5280
5923
|
} | undefined;
|
5281
5924
|
}>>;
|
5282
5925
|
}>, "strip", z.ZodTypeAny, {
|
@@ -5286,6 +5929,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5286
5929
|
configuration: {
|
5287
5930
|
styles?: {
|
5288
5931
|
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
5932
|
+
hint?: boolean | undefined;
|
5289
5933
|
} | undefined;
|
5290
5934
|
};
|
5291
5935
|
parent?: {
|
@@ -5306,9 +5950,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5306
5950
|
type: "DISPLAY_ON_REVIEW";
|
5307
5951
|
conditional: import(".").JSONSchema;
|
5308
5952
|
})[] | undefined;
|
5953
|
+
secured?: boolean | undefined;
|
5309
5954
|
placeholder?: TranslationConfig | undefined;
|
5310
5955
|
helperText?: TranslationConfig | undefined;
|
5311
5956
|
hideLabel?: boolean | undefined;
|
5957
|
+
uncorrectable?: boolean | undefined;
|
5312
5958
|
defaultValue?: string | undefined;
|
5313
5959
|
}, {
|
5314
5960
|
type: "PARAGRAPH";
|
@@ -5340,6 +5986,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5340
5986
|
type: "DISPLAY_ON_REVIEW";
|
5341
5987
|
conditional: import(".").JSONSchema;
|
5342
5988
|
})[] | undefined;
|
5989
|
+
secured?: boolean | undefined;
|
5343
5990
|
placeholder?: {
|
5344
5991
|
id: string;
|
5345
5992
|
description: string;
|
@@ -5351,14 +5998,21 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5351
5998
|
defaultMessage: string;
|
5352
5999
|
} | undefined;
|
5353
6000
|
hideLabel?: boolean | undefined;
|
6001
|
+
uncorrectable?: boolean | undefined;
|
5354
6002
|
defaultValue?: string | undefined;
|
5355
6003
|
configuration?: {
|
5356
6004
|
styles?: {
|
5357
6005
|
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
6006
|
+
hint?: boolean | undefined;
|
5358
6007
|
} | undefined;
|
5359
6008
|
} | undefined;
|
5360
6009
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
5361
6010
|
id: z.ZodString;
|
6011
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6012
|
+
id: string;
|
6013
|
+
description: string;
|
6014
|
+
defaultMessage: string;
|
6015
|
+
}>;
|
5362
6016
|
parent: z.ZodOptional<z.ZodObject<{
|
5363
6017
|
$$field: z.ZodString;
|
5364
6018
|
}, "strip", z.ZodTypeAny, {
|
@@ -5366,8 +6020,9 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5366
6020
|
}, {
|
5367
6021
|
$$field: string;
|
5368
6022
|
}>>;
|
5369
|
-
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
5370
6023
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6024
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
6025
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5371
6026
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5372
6027
|
id: string;
|
5373
6028
|
description: string;
|
@@ -5391,17 +6046,13 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5391
6046
|
};
|
5392
6047
|
validator: import(".").JSONSchema;
|
5393
6048
|
}>, "many">>>;
|
5394
|
-
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5395
|
-
id: string;
|
5396
|
-
description: string;
|
5397
|
-
defaultMessage: string;
|
5398
|
-
}>;
|
5399
6049
|
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5400
6050
|
id: string;
|
5401
6051
|
description: string;
|
5402
6052
|
defaultMessage: string;
|
5403
6053
|
}>>;
|
5404
6054
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6055
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5405
6056
|
}, {
|
5406
6057
|
type: z.ZodLiteral<"RADIO_GROUP">;
|
5407
6058
|
defaultValue: z.ZodOptional<z.ZodString>;
|
@@ -5466,9 +6117,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5466
6117
|
type: "DISPLAY_ON_REVIEW";
|
5467
6118
|
conditional: import(".").JSONSchema;
|
5468
6119
|
})[] | undefined;
|
6120
|
+
secured?: boolean | undefined;
|
5469
6121
|
placeholder?: TranslationConfig | undefined;
|
5470
6122
|
helperText?: TranslationConfig | undefined;
|
5471
6123
|
hideLabel?: boolean | undefined;
|
6124
|
+
uncorrectable?: boolean | undefined;
|
5472
6125
|
defaultValue?: string | undefined;
|
5473
6126
|
configuration?: {
|
5474
6127
|
styles?: {
|
@@ -5513,6 +6166,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5513
6166
|
type: "DISPLAY_ON_REVIEW";
|
5514
6167
|
conditional: import(".").JSONSchema;
|
5515
6168
|
})[] | undefined;
|
6169
|
+
secured?: boolean | undefined;
|
5516
6170
|
placeholder?: {
|
5517
6171
|
id: string;
|
5518
6172
|
description: string;
|
@@ -5524,6 +6178,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5524
6178
|
defaultMessage: string;
|
5525
6179
|
} | undefined;
|
5526
6180
|
hideLabel?: boolean | undefined;
|
6181
|
+
uncorrectable?: boolean | undefined;
|
5527
6182
|
defaultValue?: string | undefined;
|
5528
6183
|
configuration?: {
|
5529
6184
|
styles?: {
|
@@ -5532,6 +6187,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5532
6187
|
} | undefined;
|
5533
6188
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
5534
6189
|
id: z.ZodString;
|
6190
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6191
|
+
id: string;
|
6192
|
+
description: string;
|
6193
|
+
defaultMessage: string;
|
6194
|
+
}>;
|
5535
6195
|
parent: z.ZodOptional<z.ZodObject<{
|
5536
6196
|
$$field: z.ZodString;
|
5537
6197
|
}, "strip", z.ZodTypeAny, {
|
@@ -5539,8 +6199,9 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5539
6199
|
}, {
|
5540
6200
|
$$field: string;
|
5541
6201
|
}>>;
|
5542
|
-
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
5543
6202
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6203
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
6204
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5544
6205
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5545
6206
|
id: string;
|
5546
6207
|
description: string;
|
@@ -5564,17 +6225,13 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5564
6225
|
};
|
5565
6226
|
validator: import(".").JSONSchema;
|
5566
6227
|
}>, "many">>>;
|
5567
|
-
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5568
|
-
id: string;
|
5569
|
-
description: string;
|
5570
|
-
defaultMessage: string;
|
5571
|
-
}>;
|
5572
6228
|
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5573
6229
|
id: string;
|
5574
6230
|
description: string;
|
5575
6231
|
defaultMessage: string;
|
5576
6232
|
}>>;
|
5577
6233
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6234
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5578
6235
|
}, {
|
5579
6236
|
type: z.ZodLiteral<"BULLET_LIST">;
|
5580
6237
|
defaultValue: z.ZodOptional<z.ZodString>;
|
@@ -5628,9 +6285,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5628
6285
|
type: "DISPLAY_ON_REVIEW";
|
5629
6286
|
conditional: import(".").JSONSchema;
|
5630
6287
|
})[] | undefined;
|
6288
|
+
secured?: boolean | undefined;
|
5631
6289
|
placeholder?: TranslationConfig | undefined;
|
5632
6290
|
helperText?: TranslationConfig | undefined;
|
5633
6291
|
hideLabel?: boolean | undefined;
|
6292
|
+
uncorrectable?: boolean | undefined;
|
5634
6293
|
defaultValue?: string | undefined;
|
5635
6294
|
}, {
|
5636
6295
|
type: "BULLET_LIST";
|
@@ -5667,6 +6326,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5667
6326
|
type: "DISPLAY_ON_REVIEW";
|
5668
6327
|
conditional: import(".").JSONSchema;
|
5669
6328
|
})[] | undefined;
|
6329
|
+
secured?: boolean | undefined;
|
5670
6330
|
placeholder?: {
|
5671
6331
|
id: string;
|
5672
6332
|
description: string;
|
@@ -5678,6 +6338,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5678
6338
|
defaultMessage: string;
|
5679
6339
|
} | undefined;
|
5680
6340
|
hideLabel?: boolean | undefined;
|
6341
|
+
uncorrectable?: boolean | undefined;
|
5681
6342
|
defaultValue?: string | undefined;
|
5682
6343
|
configuration?: {
|
5683
6344
|
styles?: {
|
@@ -5686,6 +6347,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5686
6347
|
} | undefined;
|
5687
6348
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
5688
6349
|
id: z.ZodString;
|
6350
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6351
|
+
id: string;
|
6352
|
+
description: string;
|
6353
|
+
defaultMessage: string;
|
6354
|
+
}>;
|
5689
6355
|
parent: z.ZodOptional<z.ZodObject<{
|
5690
6356
|
$$field: z.ZodString;
|
5691
6357
|
}, "strip", z.ZodTypeAny, {
|
@@ -5693,8 +6359,9 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5693
6359
|
}, {
|
5694
6360
|
$$field: string;
|
5695
6361
|
}>>;
|
5696
|
-
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
5697
6362
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6363
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
6364
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5698
6365
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5699
6366
|
id: string;
|
5700
6367
|
description: string;
|
@@ -5718,17 +6385,13 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5718
6385
|
};
|
5719
6386
|
validator: import(".").JSONSchema;
|
5720
6387
|
}>, "many">>>;
|
5721
|
-
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5722
|
-
id: string;
|
5723
|
-
description: string;
|
5724
|
-
defaultMessage: string;
|
5725
|
-
}>;
|
5726
6388
|
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5727
6389
|
id: string;
|
5728
6390
|
description: string;
|
5729
6391
|
defaultMessage: string;
|
5730
6392
|
}>>;
|
5731
6393
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6394
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5732
6395
|
}, {
|
5733
6396
|
type: z.ZodLiteral<"PAGE_HEADER">;
|
5734
6397
|
defaultValue: z.ZodOptional<z.ZodString>;
|
@@ -5754,9 +6417,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5754
6417
|
type: "DISPLAY_ON_REVIEW";
|
5755
6418
|
conditional: import(".").JSONSchema;
|
5756
6419
|
})[] | undefined;
|
6420
|
+
secured?: boolean | undefined;
|
5757
6421
|
placeholder?: TranslationConfig | undefined;
|
5758
6422
|
helperText?: TranslationConfig | undefined;
|
5759
6423
|
hideLabel?: boolean | undefined;
|
6424
|
+
uncorrectable?: boolean | undefined;
|
5760
6425
|
defaultValue?: string | undefined;
|
5761
6426
|
}, {
|
5762
6427
|
type: "PAGE_HEADER";
|
@@ -5788,6 +6453,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5788
6453
|
type: "DISPLAY_ON_REVIEW";
|
5789
6454
|
conditional: import(".").JSONSchema;
|
5790
6455
|
})[] | undefined;
|
6456
|
+
secured?: boolean | undefined;
|
5791
6457
|
placeholder?: {
|
5792
6458
|
id: string;
|
5793
6459
|
description: string;
|
@@ -5799,9 +6465,15 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5799
6465
|
defaultMessage: string;
|
5800
6466
|
} | undefined;
|
5801
6467
|
hideLabel?: boolean | undefined;
|
6468
|
+
uncorrectable?: boolean | undefined;
|
5802
6469
|
defaultValue?: string | undefined;
|
5803
6470
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
5804
6471
|
id: z.ZodString;
|
6472
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6473
|
+
id: string;
|
6474
|
+
description: string;
|
6475
|
+
defaultMessage: string;
|
6476
|
+
}>;
|
5805
6477
|
parent: z.ZodOptional<z.ZodObject<{
|
5806
6478
|
$$field: z.ZodString;
|
5807
6479
|
}, "strip", z.ZodTypeAny, {
|
@@ -5809,8 +6481,9 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5809
6481
|
}, {
|
5810
6482
|
$$field: string;
|
5811
6483
|
}>>;
|
5812
|
-
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
5813
6484
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6485
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
6486
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5814
6487
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5815
6488
|
id: string;
|
5816
6489
|
description: string;
|
@@ -5834,17 +6507,13 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5834
6507
|
};
|
5835
6508
|
validator: import(".").JSONSchema;
|
5836
6509
|
}>, "many">>>;
|
5837
|
-
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5838
|
-
id: string;
|
5839
|
-
description: string;
|
5840
|
-
defaultMessage: string;
|
5841
|
-
}>;
|
5842
6510
|
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5843
6511
|
id: string;
|
5844
6512
|
description: string;
|
5845
6513
|
defaultMessage: string;
|
5846
6514
|
}>>;
|
5847
6515
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6516
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5848
6517
|
}, {
|
5849
6518
|
type: z.ZodLiteral<"SELECT">;
|
5850
6519
|
defaultValue: z.ZodOptional<z.ZodString>;
|
@@ -5892,9 +6561,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5892
6561
|
type: "DISPLAY_ON_REVIEW";
|
5893
6562
|
conditional: import(".").JSONSchema;
|
5894
6563
|
})[] | undefined;
|
6564
|
+
secured?: boolean | undefined;
|
5895
6565
|
placeholder?: TranslationConfig | undefined;
|
5896
6566
|
helperText?: TranslationConfig | undefined;
|
5897
6567
|
hideLabel?: boolean | undefined;
|
6568
|
+
uncorrectable?: boolean | undefined;
|
5898
6569
|
defaultValue?: string | undefined;
|
5899
6570
|
}, {
|
5900
6571
|
type: "SELECT";
|
@@ -5934,6 +6605,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5934
6605
|
type: "DISPLAY_ON_REVIEW";
|
5935
6606
|
conditional: import(".").JSONSchema;
|
5936
6607
|
})[] | undefined;
|
6608
|
+
secured?: boolean | undefined;
|
5937
6609
|
placeholder?: {
|
5938
6610
|
id: string;
|
5939
6611
|
description: string;
|
@@ -5945,9 +6617,15 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5945
6617
|
defaultMessage: string;
|
5946
6618
|
} | undefined;
|
5947
6619
|
hideLabel?: boolean | undefined;
|
6620
|
+
uncorrectable?: boolean | undefined;
|
5948
6621
|
defaultValue?: string | undefined;
|
5949
6622
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
5950
6623
|
id: z.ZodString;
|
6624
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6625
|
+
id: string;
|
6626
|
+
description: string;
|
6627
|
+
defaultMessage: string;
|
6628
|
+
}>;
|
5951
6629
|
parent: z.ZodOptional<z.ZodObject<{
|
5952
6630
|
$$field: z.ZodString;
|
5953
6631
|
}, "strip", z.ZodTypeAny, {
|
@@ -5955,8 +6633,9 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5955
6633
|
}, {
|
5956
6634
|
$$field: string;
|
5957
6635
|
}>>;
|
5958
|
-
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
5959
6636
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6637
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
6638
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5960
6639
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5961
6640
|
id: string;
|
5962
6641
|
description: string;
|
@@ -5980,17 +6659,13 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5980
6659
|
};
|
5981
6660
|
validator: import(".").JSONSchema;
|
5982
6661
|
}>, "many">>>;
|
5983
|
-
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5984
|
-
id: string;
|
5985
|
-
description: string;
|
5986
|
-
defaultMessage: string;
|
5987
|
-
}>;
|
5988
6662
|
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5989
6663
|
id: string;
|
5990
6664
|
description: string;
|
5991
6665
|
defaultMessage: string;
|
5992
6666
|
}>>;
|
5993
6667
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6668
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5994
6669
|
}, {
|
5995
6670
|
type: z.ZodLiteral<"NAME">;
|
5996
6671
|
defaultValue: z.ZodOptional<z.ZodObject<{
|
@@ -6015,10 +6690,14 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6015
6690
|
description: string;
|
6016
6691
|
defaultMessage: string;
|
6017
6692
|
}>>;
|
6693
|
+
includeMiddlename: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6694
|
+
searchMode: z.ZodOptional<z.ZodBoolean>;
|
6018
6695
|
}, "strip", z.ZodTypeAny, {
|
6019
6696
|
maxLength?: number | undefined;
|
6020
6697
|
prefix?: TranslationConfig | undefined;
|
6021
6698
|
postfix?: TranslationConfig | undefined;
|
6699
|
+
includeMiddlename?: boolean | undefined;
|
6700
|
+
searchMode?: boolean | undefined;
|
6022
6701
|
}, {
|
6023
6702
|
maxLength?: number | undefined;
|
6024
6703
|
prefix?: {
|
@@ -6031,6 +6710,8 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6031
6710
|
description: string;
|
6032
6711
|
defaultMessage: string;
|
6033
6712
|
} | undefined;
|
6713
|
+
includeMiddlename?: boolean | undefined;
|
6714
|
+
searchMode?: boolean | undefined;
|
6034
6715
|
}>>;
|
6035
6716
|
}>, "strip", z.ZodTypeAny, {
|
6036
6717
|
type: "NAME";
|
@@ -6054,9 +6735,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6054
6735
|
type: "DISPLAY_ON_REVIEW";
|
6055
6736
|
conditional: import(".").JSONSchema;
|
6056
6737
|
})[] | undefined;
|
6738
|
+
secured?: boolean | undefined;
|
6057
6739
|
placeholder?: TranslationConfig | undefined;
|
6058
6740
|
helperText?: TranslationConfig | undefined;
|
6059
6741
|
hideLabel?: boolean | undefined;
|
6742
|
+
uncorrectable?: boolean | undefined;
|
6060
6743
|
defaultValue?: {
|
6061
6744
|
firstname: string;
|
6062
6745
|
surname: string;
|
@@ -6065,6 +6748,8 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6065
6748
|
maxLength?: number | undefined;
|
6066
6749
|
prefix?: TranslationConfig | undefined;
|
6067
6750
|
postfix?: TranslationConfig | undefined;
|
6751
|
+
includeMiddlename?: boolean | undefined;
|
6752
|
+
searchMode?: boolean | undefined;
|
6068
6753
|
} | undefined;
|
6069
6754
|
}, {
|
6070
6755
|
type: "NAME";
|
@@ -6096,6 +6781,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6096
6781
|
type: "DISPLAY_ON_REVIEW";
|
6097
6782
|
conditional: import(".").JSONSchema;
|
6098
6783
|
})[] | undefined;
|
6784
|
+
secured?: boolean | undefined;
|
6099
6785
|
placeholder?: {
|
6100
6786
|
id: string;
|
6101
6787
|
description: string;
|
@@ -6107,6 +6793,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6107
6793
|
defaultMessage: string;
|
6108
6794
|
} | undefined;
|
6109
6795
|
hideLabel?: boolean | undefined;
|
6796
|
+
uncorrectable?: boolean | undefined;
|
6110
6797
|
defaultValue?: {
|
6111
6798
|
firstname: string;
|
6112
6799
|
surname: string;
|
@@ -6123,9 +6810,16 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6123
6810
|
description: string;
|
6124
6811
|
defaultMessage: string;
|
6125
6812
|
} | undefined;
|
6813
|
+
includeMiddlename?: boolean | undefined;
|
6814
|
+
searchMode?: boolean | undefined;
|
6126
6815
|
} | undefined;
|
6127
6816
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
6128
6817
|
id: z.ZodString;
|
6818
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6819
|
+
id: string;
|
6820
|
+
description: string;
|
6821
|
+
defaultMessage: string;
|
6822
|
+
}>;
|
6129
6823
|
parent: z.ZodOptional<z.ZodObject<{
|
6130
6824
|
$$field: z.ZodString;
|
6131
6825
|
}, "strip", z.ZodTypeAny, {
|
@@ -6133,8 +6827,9 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6133
6827
|
}, {
|
6134
6828
|
$$field: string;
|
6135
6829
|
}>>;
|
6136
|
-
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
6137
6830
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6831
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
6832
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6138
6833
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6139
6834
|
id: string;
|
6140
6835
|
description: string;
|
@@ -6158,17 +6853,13 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6158
6853
|
};
|
6159
6854
|
validator: import(".").JSONSchema;
|
6160
6855
|
}>, "many">>>;
|
6161
|
-
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6162
|
-
id: string;
|
6163
|
-
description: string;
|
6164
|
-
defaultMessage: string;
|
6165
|
-
}>;
|
6166
6856
|
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6167
6857
|
id: string;
|
6168
6858
|
description: string;
|
6169
6859
|
defaultMessage: string;
|
6170
6860
|
}>>;
|
6171
6861
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6862
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6172
6863
|
}, {
|
6173
6864
|
defaultValue: z.ZodOptional<z.ZodString>;
|
6174
6865
|
type: z.ZodLiteral<"PHONE">;
|
@@ -6194,9 +6885,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6194
6885
|
type: "DISPLAY_ON_REVIEW";
|
6195
6886
|
conditional: import(".").JSONSchema;
|
6196
6887
|
})[] | undefined;
|
6888
|
+
secured?: boolean | undefined;
|
6197
6889
|
placeholder?: TranslationConfig | undefined;
|
6198
6890
|
helperText?: TranslationConfig | undefined;
|
6199
6891
|
hideLabel?: boolean | undefined;
|
6892
|
+
uncorrectable?: boolean | undefined;
|
6200
6893
|
defaultValue?: string | undefined;
|
6201
6894
|
}, {
|
6202
6895
|
type: "PHONE";
|
@@ -6228,6 +6921,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6228
6921
|
type: "DISPLAY_ON_REVIEW";
|
6229
6922
|
conditional: import(".").JSONSchema;
|
6230
6923
|
})[] | undefined;
|
6924
|
+
secured?: boolean | undefined;
|
6231
6925
|
placeholder?: {
|
6232
6926
|
id: string;
|
6233
6927
|
description: string;
|
@@ -6239,9 +6933,15 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6239
6933
|
defaultMessage: string;
|
6240
6934
|
} | undefined;
|
6241
6935
|
hideLabel?: boolean | undefined;
|
6936
|
+
uncorrectable?: boolean | undefined;
|
6242
6937
|
defaultValue?: string | undefined;
|
6243
6938
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
6244
6939
|
id: z.ZodString;
|
6940
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6941
|
+
id: string;
|
6942
|
+
description: string;
|
6943
|
+
defaultMessage: string;
|
6944
|
+
}>;
|
6245
6945
|
parent: z.ZodOptional<z.ZodObject<{
|
6246
6946
|
$$field: z.ZodString;
|
6247
6947
|
}, "strip", z.ZodTypeAny, {
|
@@ -6249,8 +6949,9 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6249
6949
|
}, {
|
6250
6950
|
$$field: string;
|
6251
6951
|
}>>;
|
6252
|
-
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
6253
6952
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6953
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
6954
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6254
6955
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6255
6956
|
id: string;
|
6256
6957
|
description: string;
|
@@ -6274,17 +6975,13 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6274
6975
|
};
|
6275
6976
|
validator: import(".").JSONSchema;
|
6276
6977
|
}>, "many">>>;
|
6277
|
-
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6278
|
-
id: string;
|
6279
|
-
description: string;
|
6280
|
-
defaultMessage: string;
|
6281
|
-
}>;
|
6282
6978
|
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6283
6979
|
id: string;
|
6284
6980
|
description: string;
|
6285
6981
|
defaultMessage: string;
|
6286
6982
|
}>>;
|
6287
6983
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6984
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6288
6985
|
}, {
|
6289
6986
|
defaultValue: z.ZodOptional<z.ZodString>;
|
6290
6987
|
type: z.ZodLiteral<"ID">;
|
@@ -6310,9 +7007,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6310
7007
|
type: "DISPLAY_ON_REVIEW";
|
6311
7008
|
conditional: import(".").JSONSchema;
|
6312
7009
|
})[] | undefined;
|
7010
|
+
secured?: boolean | undefined;
|
6313
7011
|
placeholder?: TranslationConfig | undefined;
|
6314
7012
|
helperText?: TranslationConfig | undefined;
|
6315
7013
|
hideLabel?: boolean | undefined;
|
7014
|
+
uncorrectable?: boolean | undefined;
|
6316
7015
|
defaultValue?: string | undefined;
|
6317
7016
|
}, {
|
6318
7017
|
type: "ID";
|
@@ -6344,6 +7043,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6344
7043
|
type: "DISPLAY_ON_REVIEW";
|
6345
7044
|
conditional: import(".").JSONSchema;
|
6346
7045
|
})[] | undefined;
|
7046
|
+
secured?: boolean | undefined;
|
6347
7047
|
placeholder?: {
|
6348
7048
|
id: string;
|
6349
7049
|
description: string;
|
@@ -6355,9 +7055,15 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6355
7055
|
defaultMessage: string;
|
6356
7056
|
} | undefined;
|
6357
7057
|
hideLabel?: boolean | undefined;
|
7058
|
+
uncorrectable?: boolean | undefined;
|
6358
7059
|
defaultValue?: string | undefined;
|
6359
7060
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
6360
7061
|
id: z.ZodString;
|
7062
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7063
|
+
id: string;
|
7064
|
+
description: string;
|
7065
|
+
defaultMessage: string;
|
7066
|
+
}>;
|
6361
7067
|
parent: z.ZodOptional<z.ZodObject<{
|
6362
7068
|
$$field: z.ZodString;
|
6363
7069
|
}, "strip", z.ZodTypeAny, {
|
@@ -6365,8 +7071,9 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6365
7071
|
}, {
|
6366
7072
|
$$field: string;
|
6367
7073
|
}>>;
|
6368
|
-
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
6369
7074
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7075
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
7076
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6370
7077
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6371
7078
|
id: string;
|
6372
7079
|
description: string;
|
@@ -6390,17 +7097,13 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6390
7097
|
};
|
6391
7098
|
validator: import(".").JSONSchema;
|
6392
7099
|
}>, "many">>>;
|
6393
|
-
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6394
|
-
id: string;
|
6395
|
-
description: string;
|
6396
|
-
defaultMessage: string;
|
6397
|
-
}>;
|
6398
7100
|
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6399
7101
|
id: string;
|
6400
7102
|
description: string;
|
6401
7103
|
defaultMessage: string;
|
6402
7104
|
}>>;
|
6403
7105
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7106
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6404
7107
|
}, {
|
6405
7108
|
type: z.ZodLiteral<"CHECKBOX">;
|
6406
7109
|
defaultValue: z.ZodOptional<z.ZodBoolean>;
|
@@ -6426,9 +7129,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6426
7129
|
type: "DISPLAY_ON_REVIEW";
|
6427
7130
|
conditional: import(".").JSONSchema;
|
6428
7131
|
})[] | undefined;
|
7132
|
+
secured?: boolean | undefined;
|
6429
7133
|
placeholder?: TranslationConfig | undefined;
|
6430
7134
|
helperText?: TranslationConfig | undefined;
|
6431
7135
|
hideLabel?: boolean | undefined;
|
7136
|
+
uncorrectable?: boolean | undefined;
|
6432
7137
|
defaultValue?: boolean | undefined;
|
6433
7138
|
}, {
|
6434
7139
|
type: "CHECKBOX";
|
@@ -6460,6 +7165,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6460
7165
|
type: "DISPLAY_ON_REVIEW";
|
6461
7166
|
conditional: import(".").JSONSchema;
|
6462
7167
|
})[] | undefined;
|
7168
|
+
secured?: boolean | undefined;
|
6463
7169
|
placeholder?: {
|
6464
7170
|
id: string;
|
6465
7171
|
description: string;
|
@@ -6471,9 +7177,15 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6471
7177
|
defaultMessage: string;
|
6472
7178
|
} | undefined;
|
6473
7179
|
hideLabel?: boolean | undefined;
|
7180
|
+
uncorrectable?: boolean | undefined;
|
6474
7181
|
defaultValue?: boolean | undefined;
|
6475
7182
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
6476
7183
|
id: z.ZodString;
|
7184
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7185
|
+
id: string;
|
7186
|
+
description: string;
|
7187
|
+
defaultMessage: string;
|
7188
|
+
}>;
|
6477
7189
|
parent: z.ZodOptional<z.ZodObject<{
|
6478
7190
|
$$field: z.ZodString;
|
6479
7191
|
}, "strip", z.ZodTypeAny, {
|
@@ -6481,8 +7193,9 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6481
7193
|
}, {
|
6482
7194
|
$$field: string;
|
6483
7195
|
}>>;
|
6484
|
-
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
6485
7196
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7197
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
7198
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6486
7199
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6487
7200
|
id: string;
|
6488
7201
|
description: string;
|
@@ -6506,30 +7219,26 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6506
7219
|
};
|
6507
7220
|
validator: import(".").JSONSchema;
|
6508
7221
|
}>, "many">>>;
|
6509
|
-
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6510
|
-
id: string;
|
6511
|
-
description: string;
|
6512
|
-
defaultMessage: string;
|
6513
|
-
}>;
|
6514
7222
|
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6515
7223
|
id: string;
|
6516
7224
|
description: string;
|
6517
7225
|
defaultMessage: string;
|
6518
7226
|
}>>;
|
6519
7227
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7228
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6520
7229
|
}, {
|
6521
7230
|
type: z.ZodLiteral<"FILE">;
|
6522
7231
|
defaultValue: z.ZodOptional<z.ZodObject<{
|
6523
|
-
|
7232
|
+
path: z.ZodEffects<z.ZodString, string, string>;
|
6524
7233
|
originalFilename: z.ZodString;
|
6525
7234
|
type: z.ZodString;
|
6526
7235
|
}, "strip", z.ZodTypeAny, {
|
6527
7236
|
type: string;
|
6528
|
-
|
7237
|
+
path: string;
|
6529
7238
|
originalFilename: string;
|
6530
7239
|
}, {
|
6531
7240
|
type: string;
|
6532
|
-
|
7241
|
+
path: string;
|
6533
7242
|
originalFilename: string;
|
6534
7243
|
}>>;
|
6535
7244
|
configuration: z.ZodDefault<z.ZodObject<{
|
@@ -6596,12 +7305,14 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6596
7305
|
type: "DISPLAY_ON_REVIEW";
|
6597
7306
|
conditional: import(".").JSONSchema;
|
6598
7307
|
})[] | undefined;
|
7308
|
+
secured?: boolean | undefined;
|
6599
7309
|
placeholder?: TranslationConfig | undefined;
|
6600
7310
|
helperText?: TranslationConfig | undefined;
|
6601
7311
|
hideLabel?: boolean | undefined;
|
7312
|
+
uncorrectable?: boolean | undefined;
|
6602
7313
|
defaultValue?: {
|
6603
7314
|
type: string;
|
6604
|
-
|
7315
|
+
path: string;
|
6605
7316
|
originalFilename: string;
|
6606
7317
|
} | undefined;
|
6607
7318
|
}, {
|
@@ -6634,6 +7345,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6634
7345
|
type: "DISPLAY_ON_REVIEW";
|
6635
7346
|
conditional: import(".").JSONSchema;
|
6636
7347
|
})[] | undefined;
|
7348
|
+
secured?: boolean | undefined;
|
6637
7349
|
placeholder?: {
|
6638
7350
|
id: string;
|
6639
7351
|
description: string;
|
@@ -6645,9 +7357,10 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6645
7357
|
defaultMessage: string;
|
6646
7358
|
} | undefined;
|
6647
7359
|
hideLabel?: boolean | undefined;
|
7360
|
+
uncorrectable?: boolean | undefined;
|
6648
7361
|
defaultValue?: {
|
6649
7362
|
type: string;
|
6650
|
-
|
7363
|
+
path: string;
|
6651
7364
|
originalFilename: string;
|
6652
7365
|
} | undefined;
|
6653
7366
|
configuration?: {
|
@@ -6664,6 +7377,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6664
7377
|
} | undefined;
|
6665
7378
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
6666
7379
|
id: z.ZodString;
|
7380
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7381
|
+
id: string;
|
7382
|
+
description: string;
|
7383
|
+
defaultMessage: string;
|
7384
|
+
}>;
|
6667
7385
|
parent: z.ZodOptional<z.ZodObject<{
|
6668
7386
|
$$field: z.ZodString;
|
6669
7387
|
}, "strip", z.ZodTypeAny, {
|
@@ -6671,8 +7389,9 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6671
7389
|
}, {
|
6672
7390
|
$$field: string;
|
6673
7391
|
}>>;
|
6674
|
-
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
6675
7392
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7393
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
7394
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6676
7395
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6677
7396
|
id: string;
|
6678
7397
|
description: string;
|
@@ -6696,17 +7415,13 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6696
7415
|
};
|
6697
7416
|
validator: import(".").JSONSchema;
|
6698
7417
|
}>, "many">>>;
|
6699
|
-
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6700
|
-
id: string;
|
6701
|
-
description: string;
|
6702
|
-
defaultMessage: string;
|
6703
|
-
}>;
|
6704
7418
|
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6705
7419
|
id: string;
|
6706
7420
|
description: string;
|
6707
7421
|
defaultMessage: string;
|
6708
7422
|
}>>;
|
6709
7423
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7424
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6710
7425
|
}, {
|
6711
7426
|
type: z.ZodLiteral<"COUNTRY">;
|
6712
7427
|
defaultValue: z.ZodOptional<z.ZodString>;
|
@@ -6732,9 +7447,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6732
7447
|
type: "DISPLAY_ON_REVIEW";
|
6733
7448
|
conditional: import(".").JSONSchema;
|
6734
7449
|
})[] | undefined;
|
7450
|
+
secured?: boolean | undefined;
|
6735
7451
|
placeholder?: TranslationConfig | undefined;
|
6736
7452
|
helperText?: TranslationConfig | undefined;
|
6737
7453
|
hideLabel?: boolean | undefined;
|
7454
|
+
uncorrectable?: boolean | undefined;
|
6738
7455
|
defaultValue?: string | undefined;
|
6739
7456
|
}, {
|
6740
7457
|
type: "COUNTRY";
|
@@ -6766,6 +7483,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6766
7483
|
type: "DISPLAY_ON_REVIEW";
|
6767
7484
|
conditional: import(".").JSONSchema;
|
6768
7485
|
})[] | undefined;
|
7486
|
+
secured?: boolean | undefined;
|
6769
7487
|
placeholder?: {
|
6770
7488
|
id: string;
|
6771
7489
|
description: string;
|
@@ -6777,9 +7495,15 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6777
7495
|
defaultMessage: string;
|
6778
7496
|
} | undefined;
|
6779
7497
|
hideLabel?: boolean | undefined;
|
7498
|
+
uncorrectable?: boolean | undefined;
|
6780
7499
|
defaultValue?: string | undefined;
|
6781
7500
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
6782
7501
|
id: z.ZodString;
|
7502
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7503
|
+
id: string;
|
7504
|
+
description: string;
|
7505
|
+
defaultMessage: string;
|
7506
|
+
}>;
|
6783
7507
|
parent: z.ZodOptional<z.ZodObject<{
|
6784
7508
|
$$field: z.ZodString;
|
6785
7509
|
}, "strip", z.ZodTypeAny, {
|
@@ -6787,8 +7511,9 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6787
7511
|
}, {
|
6788
7512
|
$$field: string;
|
6789
7513
|
}>>;
|
6790
|
-
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
6791
7514
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7515
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
7516
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6792
7517
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6793
7518
|
id: string;
|
6794
7519
|
description: string;
|
@@ -6812,17 +7537,13 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6812
7537
|
};
|
6813
7538
|
validator: import(".").JSONSchema;
|
6814
7539
|
}>, "many">>>;
|
6815
|
-
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6816
|
-
id: string;
|
6817
|
-
description: string;
|
6818
|
-
defaultMessage: string;
|
6819
|
-
}>;
|
6820
7540
|
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6821
7541
|
id: string;
|
6822
7542
|
description: string;
|
6823
7543
|
defaultMessage: string;
|
6824
7544
|
}>>;
|
6825
7545
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7546
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6826
7547
|
}, {
|
6827
7548
|
type: z.ZodLiteral<"ADMINISTRATIVE_AREA">;
|
6828
7549
|
defaultValue: z.ZodOptional<z.ZodString>;
|
@@ -6874,9 +7595,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6874
7595
|
type: "DISPLAY_ON_REVIEW";
|
6875
7596
|
conditional: import(".").JSONSchema;
|
6876
7597
|
})[] | undefined;
|
7598
|
+
secured?: boolean | undefined;
|
6877
7599
|
placeholder?: TranslationConfig | undefined;
|
6878
7600
|
helperText?: TranslationConfig | undefined;
|
6879
7601
|
hideLabel?: boolean | undefined;
|
7602
|
+
uncorrectable?: boolean | undefined;
|
6880
7603
|
defaultValue?: string | undefined;
|
6881
7604
|
}, {
|
6882
7605
|
type: "ADMINISTRATIVE_AREA";
|
@@ -6914,6 +7637,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6914
7637
|
type: "DISPLAY_ON_REVIEW";
|
6915
7638
|
conditional: import(".").JSONSchema;
|
6916
7639
|
})[] | undefined;
|
7640
|
+
secured?: boolean | undefined;
|
6917
7641
|
placeholder?: {
|
6918
7642
|
id: string;
|
6919
7643
|
description: string;
|
@@ -6925,9 +7649,15 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6925
7649
|
defaultMessage: string;
|
6926
7650
|
} | undefined;
|
6927
7651
|
hideLabel?: boolean | undefined;
|
7652
|
+
uncorrectable?: boolean | undefined;
|
6928
7653
|
defaultValue?: string | undefined;
|
6929
7654
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
6930
7655
|
id: z.ZodString;
|
7656
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7657
|
+
id: string;
|
7658
|
+
description: string;
|
7659
|
+
defaultMessage: string;
|
7660
|
+
}>;
|
6931
7661
|
parent: z.ZodOptional<z.ZodObject<{
|
6932
7662
|
$$field: z.ZodString;
|
6933
7663
|
}, "strip", z.ZodTypeAny, {
|
@@ -6935,8 +7665,9 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6935
7665
|
}, {
|
6936
7666
|
$$field: string;
|
6937
7667
|
}>>;
|
6938
|
-
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
6939
7668
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7669
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
7670
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6940
7671
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6941
7672
|
id: string;
|
6942
7673
|
description: string;
|
@@ -6960,17 +7691,13 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6960
7691
|
};
|
6961
7692
|
validator: import(".").JSONSchema;
|
6962
7693
|
}>, "many">>>;
|
6963
|
-
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6964
|
-
id: string;
|
6965
|
-
description: string;
|
6966
|
-
defaultMessage: string;
|
6967
|
-
}>;
|
6968
7694
|
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6969
7695
|
id: string;
|
6970
7696
|
description: string;
|
6971
7697
|
defaultMessage: string;
|
6972
7698
|
}>>;
|
6973
7699
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7700
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6974
7701
|
}, {
|
6975
7702
|
type: z.ZodLiteral<"DIVIDER">;
|
6976
7703
|
}>, "strip", z.ZodTypeAny, {
|
@@ -6995,9 +7722,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6995
7722
|
type: "DISPLAY_ON_REVIEW";
|
6996
7723
|
conditional: import(".").JSONSchema;
|
6997
7724
|
})[] | undefined;
|
7725
|
+
secured?: boolean | undefined;
|
6998
7726
|
placeholder?: TranslationConfig | undefined;
|
6999
7727
|
helperText?: TranslationConfig | undefined;
|
7000
7728
|
hideLabel?: boolean | undefined;
|
7729
|
+
uncorrectable?: boolean | undefined;
|
7001
7730
|
}, {
|
7002
7731
|
type: "DIVIDER";
|
7003
7732
|
id: string;
|
@@ -7028,6 +7757,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7028
7757
|
type: "DISPLAY_ON_REVIEW";
|
7029
7758
|
conditional: import(".").JSONSchema;
|
7030
7759
|
})[] | undefined;
|
7760
|
+
secured?: boolean | undefined;
|
7031
7761
|
placeholder?: {
|
7032
7762
|
id: string;
|
7033
7763
|
description: string;
|
@@ -7039,8 +7769,14 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7039
7769
|
defaultMessage: string;
|
7040
7770
|
} | undefined;
|
7041
7771
|
hideLabel?: boolean | undefined;
|
7772
|
+
uncorrectable?: boolean | undefined;
|
7042
7773
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
7043
7774
|
id: z.ZodString;
|
7775
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7776
|
+
id: string;
|
7777
|
+
description: string;
|
7778
|
+
defaultMessage: string;
|
7779
|
+
}>;
|
7044
7780
|
parent: z.ZodOptional<z.ZodObject<{
|
7045
7781
|
$$field: z.ZodString;
|
7046
7782
|
}, "strip", z.ZodTypeAny, {
|
@@ -7048,8 +7784,9 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7048
7784
|
}, {
|
7049
7785
|
$$field: string;
|
7050
7786
|
}>>;
|
7051
|
-
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
7052
7787
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7788
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
7789
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7053
7790
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7054
7791
|
id: string;
|
7055
7792
|
description: string;
|
@@ -7073,20 +7810,23 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7073
7810
|
};
|
7074
7811
|
validator: import(".").JSONSchema;
|
7075
7812
|
}>, "many">>>;
|
7076
|
-
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7077
|
-
id: string;
|
7078
|
-
description: string;
|
7079
|
-
defaultMessage: string;
|
7080
|
-
}>;
|
7081
7813
|
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7082
7814
|
id: string;
|
7083
7815
|
description: string;
|
7084
7816
|
defaultMessage: string;
|
7085
7817
|
}>>;
|
7086
7818
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7819
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7087
7820
|
}, {
|
7088
7821
|
type: z.ZodLiteral<"LOCATION">;
|
7089
7822
|
defaultValue: z.ZodOptional<z.ZodString>;
|
7823
|
+
configuration: z.ZodOptional<z.ZodObject<{
|
7824
|
+
searchableResource: z.ZodOptional<z.ZodArray<z.ZodEnum<["locations", "facilities", "offices"]>, "many">>;
|
7825
|
+
}, "strip", z.ZodTypeAny, {
|
7826
|
+
searchableResource?: ("locations" | "facilities" | "offices")[] | undefined;
|
7827
|
+
}, {
|
7828
|
+
searchableResource?: ("locations" | "facilities" | "offices")[] | undefined;
|
7829
|
+
}>>;
|
7090
7830
|
}>, "strip", z.ZodTypeAny, {
|
7091
7831
|
type: "LOCATION";
|
7092
7832
|
id: string;
|
@@ -7109,10 +7849,15 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7109
7849
|
type: "DISPLAY_ON_REVIEW";
|
7110
7850
|
conditional: import(".").JSONSchema;
|
7111
7851
|
})[] | undefined;
|
7852
|
+
secured?: boolean | undefined;
|
7112
7853
|
placeholder?: TranslationConfig | undefined;
|
7113
7854
|
helperText?: TranslationConfig | undefined;
|
7114
7855
|
hideLabel?: boolean | undefined;
|
7856
|
+
uncorrectable?: boolean | undefined;
|
7115
7857
|
defaultValue?: string | undefined;
|
7858
|
+
configuration?: {
|
7859
|
+
searchableResource?: ("locations" | "facilities" | "offices")[] | undefined;
|
7860
|
+
} | undefined;
|
7116
7861
|
}, {
|
7117
7862
|
type: "LOCATION";
|
7118
7863
|
id: string;
|
@@ -7143,6 +7888,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7143
7888
|
type: "DISPLAY_ON_REVIEW";
|
7144
7889
|
conditional: import(".").JSONSchema;
|
7145
7890
|
})[] | undefined;
|
7891
|
+
secured?: boolean | undefined;
|
7146
7892
|
placeholder?: {
|
7147
7893
|
id: string;
|
7148
7894
|
description: string;
|
@@ -7154,9 +7900,18 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7154
7900
|
defaultMessage: string;
|
7155
7901
|
} | undefined;
|
7156
7902
|
hideLabel?: boolean | undefined;
|
7903
|
+
uncorrectable?: boolean | undefined;
|
7157
7904
|
defaultValue?: string | undefined;
|
7905
|
+
configuration?: {
|
7906
|
+
searchableResource?: ("locations" | "facilities" | "offices")[] | undefined;
|
7907
|
+
} | undefined;
|
7158
7908
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
7159
7909
|
id: z.ZodString;
|
7910
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7911
|
+
id: string;
|
7912
|
+
description: string;
|
7913
|
+
defaultMessage: string;
|
7914
|
+
}>;
|
7160
7915
|
parent: z.ZodOptional<z.ZodObject<{
|
7161
7916
|
$$field: z.ZodString;
|
7162
7917
|
}, "strip", z.ZodTypeAny, {
|
@@ -7164,8 +7919,9 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7164
7919
|
}, {
|
7165
7920
|
$$field: string;
|
7166
7921
|
}>>;
|
7167
|
-
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
7168
7922
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7923
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
7924
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7169
7925
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7170
7926
|
id: string;
|
7171
7927
|
description: string;
|
@@ -7189,17 +7945,13 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7189
7945
|
};
|
7190
7946
|
validator: import(".").JSONSchema;
|
7191
7947
|
}>, "many">>>;
|
7192
|
-
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7193
|
-
id: string;
|
7194
|
-
description: string;
|
7195
|
-
defaultMessage: string;
|
7196
|
-
}>;
|
7197
7948
|
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7198
7949
|
id: string;
|
7199
7950
|
description: string;
|
7200
7951
|
defaultMessage: string;
|
7201
7952
|
}>>;
|
7202
7953
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7954
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7203
7955
|
}, {
|
7204
7956
|
type: z.ZodLiteral<"FACILITY">;
|
7205
7957
|
defaultValue: z.ZodOptional<z.ZodString>;
|
@@ -7225,9 +7977,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7225
7977
|
type: "DISPLAY_ON_REVIEW";
|
7226
7978
|
conditional: import(".").JSONSchema;
|
7227
7979
|
})[] | undefined;
|
7980
|
+
secured?: boolean | undefined;
|
7228
7981
|
placeholder?: TranslationConfig | undefined;
|
7229
7982
|
helperText?: TranslationConfig | undefined;
|
7230
7983
|
hideLabel?: boolean | undefined;
|
7984
|
+
uncorrectable?: boolean | undefined;
|
7231
7985
|
defaultValue?: string | undefined;
|
7232
7986
|
}, {
|
7233
7987
|
type: "FACILITY";
|
@@ -7259,6 +8013,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7259
8013
|
type: "DISPLAY_ON_REVIEW";
|
7260
8014
|
conditional: import(".").JSONSchema;
|
7261
8015
|
})[] | undefined;
|
8016
|
+
secured?: boolean | undefined;
|
7262
8017
|
placeholder?: {
|
7263
8018
|
id: string;
|
7264
8019
|
description: string;
|
@@ -7270,9 +8025,15 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7270
8025
|
defaultMessage: string;
|
7271
8026
|
} | undefined;
|
7272
8027
|
hideLabel?: boolean | undefined;
|
8028
|
+
uncorrectable?: boolean | undefined;
|
7273
8029
|
defaultValue?: string | undefined;
|
7274
8030
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
7275
8031
|
id: z.ZodString;
|
8032
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
8033
|
+
id: string;
|
8034
|
+
description: string;
|
8035
|
+
defaultMessage: string;
|
8036
|
+
}>;
|
7276
8037
|
parent: z.ZodOptional<z.ZodObject<{
|
7277
8038
|
$$field: z.ZodString;
|
7278
8039
|
}, "strip", z.ZodTypeAny, {
|
@@ -7280,8 +8041,9 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7280
8041
|
}, {
|
7281
8042
|
$$field: string;
|
7282
8043
|
}>>;
|
7283
|
-
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
7284
8044
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
8045
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
8046
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7285
8047
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7286
8048
|
id: string;
|
7287
8049
|
description: string;
|
@@ -7305,17 +8067,13 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7305
8067
|
};
|
7306
8068
|
validator: import(".").JSONSchema;
|
7307
8069
|
}>, "many">>>;
|
7308
|
-
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7309
|
-
id: string;
|
7310
|
-
description: string;
|
7311
|
-
defaultMessage: string;
|
7312
|
-
}>;
|
7313
8070
|
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7314
8071
|
id: string;
|
7315
8072
|
description: string;
|
7316
8073
|
defaultMessage: string;
|
7317
8074
|
}>>;
|
7318
8075
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
8076
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7319
8077
|
}, {
|
7320
8078
|
type: z.ZodLiteral<"OFFICE">;
|
7321
8079
|
defaultValue: z.ZodOptional<z.ZodString>;
|
@@ -7341,9 +8099,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7341
8099
|
type: "DISPLAY_ON_REVIEW";
|
7342
8100
|
conditional: import(".").JSONSchema;
|
7343
8101
|
})[] | undefined;
|
8102
|
+
secured?: boolean | undefined;
|
7344
8103
|
placeholder?: TranslationConfig | undefined;
|
7345
8104
|
helperText?: TranslationConfig | undefined;
|
7346
8105
|
hideLabel?: boolean | undefined;
|
8106
|
+
uncorrectable?: boolean | undefined;
|
7347
8107
|
defaultValue?: string | undefined;
|
7348
8108
|
}, {
|
7349
8109
|
type: "OFFICE";
|
@@ -7375,6 +8135,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7375
8135
|
type: "DISPLAY_ON_REVIEW";
|
7376
8136
|
conditional: import(".").JSONSchema;
|
7377
8137
|
})[] | undefined;
|
8138
|
+
secured?: boolean | undefined;
|
7378
8139
|
placeholder?: {
|
7379
8140
|
id: string;
|
7380
8141
|
description: string;
|
@@ -7386,9 +8147,15 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7386
8147
|
defaultMessage: string;
|
7387
8148
|
} | undefined;
|
7388
8149
|
hideLabel?: boolean | undefined;
|
8150
|
+
uncorrectable?: boolean | undefined;
|
7389
8151
|
defaultValue?: string | undefined;
|
7390
8152
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
7391
8153
|
id: z.ZodString;
|
8154
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
8155
|
+
id: string;
|
8156
|
+
description: string;
|
8157
|
+
defaultMessage: string;
|
8158
|
+
}>;
|
7392
8159
|
parent: z.ZodOptional<z.ZodObject<{
|
7393
8160
|
$$field: z.ZodString;
|
7394
8161
|
}, "strip", z.ZodTypeAny, {
|
@@ -7396,8 +8163,9 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7396
8163
|
}, {
|
7397
8164
|
$$field: string;
|
7398
8165
|
}>>;
|
7399
|
-
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
7400
8166
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
8167
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
8168
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7401
8169
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7402
8170
|
id: string;
|
7403
8171
|
description: string;
|
@@ -7421,17 +8189,13 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7421
8189
|
};
|
7422
8190
|
validator: import(".").JSONSchema;
|
7423
8191
|
}>, "many">>>;
|
7424
|
-
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7425
|
-
id: string;
|
7426
|
-
description: string;
|
7427
|
-
defaultMessage: string;
|
7428
|
-
}>;
|
7429
8192
|
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7430
8193
|
id: string;
|
7431
8194
|
description: string;
|
7432
8195
|
defaultMessage: string;
|
7433
8196
|
}>>;
|
7434
8197
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
8198
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7435
8199
|
}, {
|
7436
8200
|
type: z.ZodLiteral<"SIGNATURE">;
|
7437
8201
|
signaturePromptLabel: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
@@ -7477,9 +8241,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7477
8241
|
type: "DISPLAY_ON_REVIEW";
|
7478
8242
|
conditional: import(".").JSONSchema;
|
7479
8243
|
})[] | undefined;
|
8244
|
+
secured?: boolean | undefined;
|
7480
8245
|
placeholder?: TranslationConfig | undefined;
|
7481
8246
|
helperText?: TranslationConfig | undefined;
|
7482
8247
|
hideLabel?: boolean | undefined;
|
8248
|
+
uncorrectable?: boolean | undefined;
|
7483
8249
|
defaultValue?: string | undefined;
|
7484
8250
|
}, {
|
7485
8251
|
type: "SIGNATURE";
|
@@ -7516,6 +8282,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7516
8282
|
type: "DISPLAY_ON_REVIEW";
|
7517
8283
|
conditional: import(".").JSONSchema;
|
7518
8284
|
})[] | undefined;
|
8285
|
+
secured?: boolean | undefined;
|
7519
8286
|
placeholder?: {
|
7520
8287
|
id: string;
|
7521
8288
|
description: string;
|
@@ -7527,6 +8294,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7527
8294
|
defaultMessage: string;
|
7528
8295
|
} | undefined;
|
7529
8296
|
hideLabel?: boolean | undefined;
|
8297
|
+
uncorrectable?: boolean | undefined;
|
7530
8298
|
defaultValue?: string | undefined;
|
7531
8299
|
configuration?: {
|
7532
8300
|
maxFileSize?: number | undefined;
|
@@ -7534,6 +8302,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7534
8302
|
} | undefined;
|
7535
8303
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
7536
8304
|
id: z.ZodString;
|
8305
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
8306
|
+
id: string;
|
8307
|
+
description: string;
|
8308
|
+
defaultMessage: string;
|
8309
|
+
}>;
|
7537
8310
|
parent: z.ZodOptional<z.ZodObject<{
|
7538
8311
|
$$field: z.ZodString;
|
7539
8312
|
}, "strip", z.ZodTypeAny, {
|
@@ -7541,8 +8314,9 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7541
8314
|
}, {
|
7542
8315
|
$$field: string;
|
7543
8316
|
}>>;
|
7544
|
-
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
7545
8317
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
8318
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
8319
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7546
8320
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7547
8321
|
id: string;
|
7548
8322
|
description: string;
|
@@ -7566,17 +8340,13 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7566
8340
|
};
|
7567
8341
|
validator: import(".").JSONSchema;
|
7568
8342
|
}>, "many">>>;
|
7569
|
-
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7570
|
-
id: string;
|
7571
|
-
description: string;
|
7572
|
-
defaultMessage: string;
|
7573
|
-
}>;
|
7574
8343
|
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7575
8344
|
id: string;
|
7576
8345
|
description: string;
|
7577
8346
|
defaultMessage: string;
|
7578
8347
|
}>>;
|
7579
8348
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
8349
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7580
8350
|
}, {
|
7581
8351
|
type: z.ZodLiteral<"EMAIL">;
|
7582
8352
|
configuration: z.ZodOptional<z.ZodDefault<z.ZodObject<{
|
@@ -7609,9 +8379,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7609
8379
|
type: "DISPLAY_ON_REVIEW";
|
7610
8380
|
conditional: import(".").JSONSchema;
|
7611
8381
|
})[] | undefined;
|
8382
|
+
secured?: boolean | undefined;
|
7612
8383
|
placeholder?: TranslationConfig | undefined;
|
7613
8384
|
helperText?: TranslationConfig | undefined;
|
7614
8385
|
hideLabel?: boolean | undefined;
|
8386
|
+
uncorrectable?: boolean | undefined;
|
7615
8387
|
defaultValue?: string | undefined;
|
7616
8388
|
configuration?: {
|
7617
8389
|
maxLength?: number | undefined;
|
@@ -7646,6 +8418,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7646
8418
|
type: "DISPLAY_ON_REVIEW";
|
7647
8419
|
conditional: import(".").JSONSchema;
|
7648
8420
|
})[] | undefined;
|
8421
|
+
secured?: boolean | undefined;
|
7649
8422
|
placeholder?: {
|
7650
8423
|
id: string;
|
7651
8424
|
description: string;
|
@@ -7657,12 +8430,18 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7657
8430
|
defaultMessage: string;
|
7658
8431
|
} | undefined;
|
7659
8432
|
hideLabel?: boolean | undefined;
|
8433
|
+
uncorrectable?: boolean | undefined;
|
7660
8434
|
defaultValue?: string | undefined;
|
7661
8435
|
configuration?: {
|
7662
8436
|
maxLength?: number | undefined;
|
7663
8437
|
} | undefined;
|
7664
8438
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
7665
8439
|
id: z.ZodString;
|
8440
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
8441
|
+
id: string;
|
8442
|
+
description: string;
|
8443
|
+
defaultMessage: string;
|
8444
|
+
}>;
|
7666
8445
|
parent: z.ZodOptional<z.ZodObject<{
|
7667
8446
|
$$field: z.ZodString;
|
7668
8447
|
}, "strip", z.ZodTypeAny, {
|
@@ -7670,8 +8449,9 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7670
8449
|
}, {
|
7671
8450
|
$$field: string;
|
7672
8451
|
}>>;
|
7673
|
-
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
7674
8452
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
8453
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
8454
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7675
8455
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7676
8456
|
id: string;
|
7677
8457
|
description: string;
|
@@ -7695,17 +8475,13 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7695
8475
|
};
|
7696
8476
|
validator: import(".").JSONSchema;
|
7697
8477
|
}>, "many">>>;
|
7698
|
-
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7699
|
-
id: string;
|
7700
|
-
description: string;
|
7701
|
-
defaultMessage: string;
|
7702
|
-
}>;
|
7703
8478
|
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7704
8479
|
id: string;
|
7705
8480
|
description: string;
|
7706
8481
|
defaultMessage: string;
|
7707
8482
|
}>>;
|
7708
8483
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
8484
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7709
8485
|
}, {
|
7710
8486
|
type: z.ZodLiteral<"FILE_WITH_OPTIONS">;
|
7711
8487
|
options: z.ZodArray<z.ZodObject<{
|
@@ -7727,19 +8503,19 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7727
8503
|
};
|
7728
8504
|
}>, "many">;
|
7729
8505
|
defaultValue: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
7730
|
-
|
8506
|
+
path: z.ZodEffects<z.ZodString, string, string>;
|
7731
8507
|
originalFilename: z.ZodString;
|
7732
8508
|
type: z.ZodString;
|
7733
8509
|
option: z.ZodString;
|
7734
8510
|
}, "strip", z.ZodTypeAny, {
|
7735
8511
|
type: string;
|
7736
8512
|
option: string;
|
7737
|
-
|
8513
|
+
path: string;
|
7738
8514
|
originalFilename: string;
|
7739
8515
|
}, {
|
7740
8516
|
type: string;
|
7741
8517
|
option: string;
|
7742
|
-
|
8518
|
+
path: string;
|
7743
8519
|
originalFilename: string;
|
7744
8520
|
}>, "many">>;
|
7745
8521
|
configuration: z.ZodDefault<z.ZodObject<{
|
@@ -7782,13 +8558,15 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7782
8558
|
type: "DISPLAY_ON_REVIEW";
|
7783
8559
|
conditional: import(".").JSONSchema;
|
7784
8560
|
})[] | undefined;
|
8561
|
+
secured?: boolean | undefined;
|
7785
8562
|
placeholder?: TranslationConfig | undefined;
|
7786
8563
|
helperText?: TranslationConfig | undefined;
|
7787
8564
|
hideLabel?: boolean | undefined;
|
8565
|
+
uncorrectable?: boolean | undefined;
|
7788
8566
|
defaultValue?: {
|
7789
8567
|
type: string;
|
7790
8568
|
option: string;
|
7791
|
-
|
8569
|
+
path: string;
|
7792
8570
|
originalFilename: string;
|
7793
8571
|
}[] | undefined;
|
7794
8572
|
}, {
|
@@ -7829,6 +8607,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7829
8607
|
type: "DISPLAY_ON_REVIEW";
|
7830
8608
|
conditional: import(".").JSONSchema;
|
7831
8609
|
})[] | undefined;
|
8610
|
+
secured?: boolean | undefined;
|
7832
8611
|
placeholder?: {
|
7833
8612
|
id: string;
|
7834
8613
|
description: string;
|
@@ -7840,10 +8619,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7840
8619
|
defaultMessage: string;
|
7841
8620
|
} | undefined;
|
7842
8621
|
hideLabel?: boolean | undefined;
|
8622
|
+
uncorrectable?: boolean | undefined;
|
7843
8623
|
defaultValue?: {
|
7844
8624
|
type: string;
|
7845
8625
|
option: string;
|
7846
|
-
|
8626
|
+
path: string;
|
7847
8627
|
originalFilename: string;
|
7848
8628
|
}[] | undefined;
|
7849
8629
|
configuration?: {
|
@@ -7852,6 +8632,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7852
8632
|
} | undefined;
|
7853
8633
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
7854
8634
|
id: z.ZodString;
|
8635
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
8636
|
+
id: string;
|
8637
|
+
description: string;
|
8638
|
+
defaultMessage: string;
|
8639
|
+
}>;
|
7855
8640
|
parent: z.ZodOptional<z.ZodObject<{
|
7856
8641
|
$$field: z.ZodString;
|
7857
8642
|
}, "strip", z.ZodTypeAny, {
|
@@ -7859,8 +8644,9 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7859
8644
|
}, {
|
7860
8645
|
$$field: string;
|
7861
8646
|
}>>;
|
7862
|
-
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
7863
8647
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
8648
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
8649
|
+
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7864
8650
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7865
8651
|
id: string;
|
7866
8652
|
description: string;
|
@@ -7884,17 +8670,13 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7884
8670
|
};
|
7885
8671
|
validator: import(".").JSONSchema;
|
7886
8672
|
}>, "many">>>;
|
7887
|
-
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7888
|
-
id: string;
|
7889
|
-
description: string;
|
7890
|
-
defaultMessage: string;
|
7891
|
-
}>;
|
7892
8673
|
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7893
8674
|
id: string;
|
7894
8675
|
description: string;
|
7895
8676
|
defaultMessage: string;
|
7896
8677
|
}>>;
|
7897
8678
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
8679
|
+
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7898
8680
|
}, {
|
7899
8681
|
type: z.ZodLiteral<"DATA">;
|
7900
8682
|
configuration: z.ZodObject<{
|
@@ -7995,9 +8777,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7995
8777
|
type: "DISPLAY_ON_REVIEW";
|
7996
8778
|
conditional: import(".").JSONSchema;
|
7997
8779
|
})[] | undefined;
|
8780
|
+
secured?: boolean | undefined;
|
7998
8781
|
placeholder?: TranslationConfig | undefined;
|
7999
8782
|
helperText?: TranslationConfig | undefined;
|
8000
8783
|
hideLabel?: boolean | undefined;
|
8784
|
+
uncorrectable?: boolean | undefined;
|
8001
8785
|
}, {
|
8002
8786
|
type: "DATA";
|
8003
8787
|
id: string;
|
@@ -8049,6 +8833,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8049
8833
|
type: "DISPLAY_ON_REVIEW";
|
8050
8834
|
conditional: import(".").JSONSchema;
|
8051
8835
|
})[] | undefined;
|
8836
|
+
secured?: boolean | undefined;
|
8052
8837
|
placeholder?: {
|
8053
8838
|
id: string;
|
8054
8839
|
description: string;
|
@@ -8060,6 +8845,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8060
8845
|
defaultMessage: string;
|
8061
8846
|
} | undefined;
|
8062
8847
|
hideLabel?: boolean | undefined;
|
8848
|
+
uncorrectable?: boolean | undefined;
|
8063
8849
|
}>]>;
|
8064
8850
|
export type SelectField = z.infer<typeof Select>;
|
8065
8851
|
export type NameField = z.infer<typeof NameField>;
|