@opencrvs/toolkit 1.8.0-rc.fb8e005 → 1.8.0-rc.fb96ec1
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 +9779 -578
- package/dist/commons/events/ActionConfig.d.ts +0 -2856
- package/dist/commons/events/ActionDocument.d.ts +696 -696
- package/dist/commons/events/ActionInput.d.ts +600 -600
- package/dist/commons/events/ActionType.d.ts +2 -0
- package/dist/commons/events/AdvancedSearchConfig.d.ts +18 -18
- package/dist/commons/events/CompositeFieldValue.d.ts +6 -6
- package/dist/commons/events/Draft.d.ts +48 -48
- package/dist/commons/events/EventConfig.d.ts +0 -1432
- package/dist/commons/events/EventDocument.d.ts +432 -432
- package/dist/commons/events/EventIndex.d.ts +10 -10
- package/dist/commons/events/FieldConfig.d.ts +0 -179
- package/dist/commons/events/FieldTypeMapping.d.ts +16 -16
- package/dist/commons/events/FieldValue.d.ts +12 -12
- package/dist/commons/events/FormConfig.d.ts +0 -1200
- package/dist/commons/events/PageConfig.d.ts +0 -288
- package/dist/commons/events/defineConfig.d.ts +0 -308
- package/dist/commons/events/test.utils.d.ts +12 -12
- package/dist/commons/events/utils.d.ts +8 -456
- package/dist/events/index.js +40 -43
- package/package.json +1 -1
@@ -38,7 +38,6 @@ declare const BaseField: z.ZodObject<{
|
|
38
38
|
}>>;
|
39
39
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
40
40
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
41
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
42
41
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
43
42
|
id: string;
|
44
43
|
description: string;
|
@@ -94,7 +93,6 @@ declare const BaseField: z.ZodObject<{
|
|
94
93
|
type: "DISPLAY_ON_REVIEW";
|
95
94
|
conditional: import(".").JSONSchema;
|
96
95
|
})[] | undefined;
|
97
|
-
secured?: boolean | undefined;
|
98
96
|
placeholder?: TranslationConfig | undefined;
|
99
97
|
helperText?: TranslationConfig | undefined;
|
100
98
|
hideLabel?: boolean | undefined;
|
@@ -127,7 +125,6 @@ declare const BaseField: z.ZodObject<{
|
|
127
125
|
type: "DISPLAY_ON_REVIEW";
|
128
126
|
conditional: import(".").JSONSchema;
|
129
127
|
})[] | undefined;
|
130
|
-
secured?: boolean | undefined;
|
131
128
|
placeholder?: {
|
132
129
|
id: string;
|
133
130
|
description: string;
|
@@ -152,7 +149,6 @@ declare const Divider: z.ZodObject<z.objectUtil.extendShape<{
|
|
152
149
|
}>>;
|
153
150
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
154
151
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
155
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
156
152
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
157
153
|
id: string;
|
158
154
|
description: string;
|
@@ -211,7 +207,6 @@ declare const Divider: z.ZodObject<z.objectUtil.extendShape<{
|
|
211
207
|
type: "DISPLAY_ON_REVIEW";
|
212
208
|
conditional: import(".").JSONSchema;
|
213
209
|
})[] | undefined;
|
214
|
-
secured?: boolean | undefined;
|
215
210
|
placeholder?: TranslationConfig | undefined;
|
216
211
|
helperText?: TranslationConfig | undefined;
|
217
212
|
hideLabel?: boolean | undefined;
|
@@ -245,7 +240,6 @@ declare const Divider: z.ZodObject<z.objectUtil.extendShape<{
|
|
245
240
|
type: "DISPLAY_ON_REVIEW";
|
246
241
|
conditional: import(".").JSONSchema;
|
247
242
|
})[] | undefined;
|
248
|
-
secured?: boolean | undefined;
|
249
243
|
placeholder?: {
|
250
244
|
id: string;
|
251
245
|
description: string;
|
@@ -270,7 +264,6 @@ declare const TextField: z.ZodObject<z.objectUtil.extendShape<{
|
|
270
264
|
}>>;
|
271
265
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
272
266
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
273
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
274
267
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
275
268
|
id: string;
|
276
269
|
description: string;
|
@@ -362,7 +355,6 @@ declare const TextField: z.ZodObject<z.objectUtil.extendShape<{
|
|
362
355
|
type: "DISPLAY_ON_REVIEW";
|
363
356
|
conditional: import(".").JSONSchema;
|
364
357
|
})[] | undefined;
|
365
|
-
secured?: boolean | undefined;
|
366
358
|
placeholder?: TranslationConfig | undefined;
|
367
359
|
helperText?: TranslationConfig | undefined;
|
368
360
|
hideLabel?: boolean | undefined;
|
@@ -403,7 +395,6 @@ declare const TextField: z.ZodObject<z.objectUtil.extendShape<{
|
|
403
395
|
type: "DISPLAY_ON_REVIEW";
|
404
396
|
conditional: import(".").JSONSchema;
|
405
397
|
})[] | undefined;
|
406
|
-
secured?: boolean | undefined;
|
407
398
|
placeholder?: {
|
408
399
|
id: string;
|
409
400
|
description: string;
|
@@ -443,7 +434,6 @@ declare const NumberField: z.ZodObject<z.objectUtil.extendShape<{
|
|
443
434
|
}>>;
|
444
435
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
445
436
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
446
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
447
437
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
448
438
|
id: string;
|
449
439
|
description: string;
|
@@ -535,7 +525,6 @@ declare const NumberField: z.ZodObject<z.objectUtil.extendShape<{
|
|
535
525
|
type: "DISPLAY_ON_REVIEW";
|
536
526
|
conditional: import(".").JSONSchema;
|
537
527
|
})[] | undefined;
|
538
|
-
secured?: boolean | undefined;
|
539
528
|
placeholder?: TranslationConfig | undefined;
|
540
529
|
helperText?: TranslationConfig | undefined;
|
541
530
|
hideLabel?: boolean | undefined;
|
@@ -576,7 +565,6 @@ declare const NumberField: z.ZodObject<z.objectUtil.extendShape<{
|
|
576
565
|
type: "DISPLAY_ON_REVIEW";
|
577
566
|
conditional: import(".").JSONSchema;
|
578
567
|
})[] | undefined;
|
579
|
-
secured?: boolean | undefined;
|
580
568
|
placeholder?: {
|
581
569
|
id: string;
|
582
570
|
description: string;
|
@@ -615,7 +603,6 @@ declare const TextAreaField: z.ZodObject<z.objectUtil.extendShape<{
|
|
615
603
|
}>>;
|
616
604
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
617
605
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
618
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
619
606
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
620
607
|
id: string;
|
621
608
|
description: string;
|
@@ -710,7 +697,6 @@ declare const TextAreaField: z.ZodObject<z.objectUtil.extendShape<{
|
|
710
697
|
type: "DISPLAY_ON_REVIEW";
|
711
698
|
conditional: import(".").JSONSchema;
|
712
699
|
})[] | undefined;
|
713
|
-
secured?: boolean | undefined;
|
714
700
|
placeholder?: TranslationConfig | undefined;
|
715
701
|
helperText?: TranslationConfig | undefined;
|
716
702
|
hideLabel?: boolean | undefined;
|
@@ -752,7 +738,6 @@ declare const TextAreaField: z.ZodObject<z.objectUtil.extendShape<{
|
|
752
738
|
type: "DISPLAY_ON_REVIEW";
|
753
739
|
conditional: import(".").JSONSchema;
|
754
740
|
})[] | undefined;
|
755
|
-
secured?: boolean | undefined;
|
756
741
|
placeholder?: {
|
757
742
|
id: string;
|
758
743
|
description: string;
|
@@ -796,7 +781,6 @@ declare const SignatureField: z.ZodObject<z.objectUtil.extendShape<{
|
|
796
781
|
}>>;
|
797
782
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
798
783
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
799
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
800
784
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
801
785
|
id: string;
|
802
786
|
description: string;
|
@@ -876,7 +860,6 @@ declare const SignatureField: z.ZodObject<z.objectUtil.extendShape<{
|
|
876
860
|
type: "DISPLAY_ON_REVIEW";
|
877
861
|
conditional: import(".").JSONSchema;
|
878
862
|
})[] | undefined;
|
879
|
-
secured?: boolean | undefined;
|
880
863
|
placeholder?: TranslationConfig | undefined;
|
881
864
|
helperText?: TranslationConfig | undefined;
|
882
865
|
hideLabel?: boolean | undefined;
|
@@ -916,7 +899,6 @@ declare const SignatureField: z.ZodObject<z.objectUtil.extendShape<{
|
|
916
899
|
type: "DISPLAY_ON_REVIEW";
|
917
900
|
conditional: import(".").JSONSchema;
|
918
901
|
})[] | undefined;
|
919
|
-
secured?: boolean | undefined;
|
920
902
|
placeholder?: {
|
921
903
|
id: string;
|
922
904
|
description: string;
|
@@ -946,7 +928,6 @@ export declare const EmailField: z.ZodObject<z.objectUtil.extendShape<{
|
|
946
928
|
}>>;
|
947
929
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
948
930
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
949
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
950
931
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
951
932
|
id: string;
|
952
933
|
description: string;
|
@@ -1013,7 +994,6 @@ export declare const EmailField: z.ZodObject<z.objectUtil.extendShape<{
|
|
1013
994
|
type: "DISPLAY_ON_REVIEW";
|
1014
995
|
conditional: import(".").JSONSchema;
|
1015
996
|
})[] | undefined;
|
1016
|
-
secured?: boolean | undefined;
|
1017
997
|
placeholder?: TranslationConfig | undefined;
|
1018
998
|
helperText?: TranslationConfig | undefined;
|
1019
999
|
hideLabel?: boolean | undefined;
|
@@ -1051,7 +1031,6 @@ export declare const EmailField: z.ZodObject<z.objectUtil.extendShape<{
|
|
1051
1031
|
type: "DISPLAY_ON_REVIEW";
|
1052
1032
|
conditional: import(".").JSONSchema;
|
1053
1033
|
})[] | undefined;
|
1054
|
-
secured?: boolean | undefined;
|
1055
1034
|
placeholder?: {
|
1056
1035
|
id: string;
|
1057
1036
|
description: string;
|
@@ -1080,7 +1059,6 @@ declare const DateField: z.ZodObject<z.objectUtil.extendShape<{
|
|
1080
1059
|
}>>;
|
1081
1060
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
1082
1061
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
1083
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
1084
1062
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
1085
1063
|
id: string;
|
1086
1064
|
description: string;
|
@@ -1155,7 +1133,6 @@ declare const DateField: z.ZodObject<z.objectUtil.extendShape<{
|
|
1155
1133
|
type: "DISPLAY_ON_REVIEW";
|
1156
1134
|
conditional: import(".").JSONSchema;
|
1157
1135
|
})[] | undefined;
|
1158
|
-
secured?: boolean | undefined;
|
1159
1136
|
placeholder?: TranslationConfig | undefined;
|
1160
1137
|
helperText?: TranslationConfig | undefined;
|
1161
1138
|
hideLabel?: boolean | undefined;
|
@@ -1193,7 +1170,6 @@ declare const DateField: z.ZodObject<z.objectUtil.extendShape<{
|
|
1193
1170
|
type: "DISPLAY_ON_REVIEW";
|
1194
1171
|
conditional: import(".").JSONSchema;
|
1195
1172
|
})[] | undefined;
|
1196
|
-
secured?: boolean | undefined;
|
1197
1173
|
placeholder?: {
|
1198
1174
|
id: string;
|
1199
1175
|
description: string;
|
@@ -1226,7 +1202,6 @@ declare const DateRangeField: z.ZodObject<z.objectUtil.extendShape<{
|
|
1226
1202
|
}>>;
|
1227
1203
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
1228
1204
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
1229
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
1230
1205
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
1231
1206
|
id: string;
|
1232
1207
|
description: string;
|
@@ -1301,7 +1276,6 @@ declare const DateRangeField: z.ZodObject<z.objectUtil.extendShape<{
|
|
1301
1276
|
type: "DISPLAY_ON_REVIEW";
|
1302
1277
|
conditional: import(".").JSONSchema;
|
1303
1278
|
})[] | undefined;
|
1304
|
-
secured?: boolean | undefined;
|
1305
1279
|
placeholder?: TranslationConfig | undefined;
|
1306
1280
|
helperText?: TranslationConfig | undefined;
|
1307
1281
|
hideLabel?: boolean | undefined;
|
@@ -1339,7 +1313,6 @@ declare const DateRangeField: z.ZodObject<z.objectUtil.extendShape<{
|
|
1339
1313
|
type: "DISPLAY_ON_REVIEW";
|
1340
1314
|
conditional: import(".").JSONSchema;
|
1341
1315
|
})[] | undefined;
|
1342
|
-
secured?: boolean | undefined;
|
1343
1316
|
placeholder?: {
|
1344
1317
|
id: string;
|
1345
1318
|
description: string;
|
@@ -1374,7 +1347,6 @@ declare const Paragraph: z.ZodObject<z.objectUtil.extendShape<{
|
|
1374
1347
|
}>>;
|
1375
1348
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
1376
1349
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
1377
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
1378
1350
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
1379
1351
|
id: string;
|
1380
1352
|
description: string;
|
@@ -1456,7 +1428,6 @@ declare const Paragraph: z.ZodObject<z.objectUtil.extendShape<{
|
|
1456
1428
|
type: "DISPLAY_ON_REVIEW";
|
1457
1429
|
conditional: import(".").JSONSchema;
|
1458
1430
|
})[] | undefined;
|
1459
|
-
secured?: boolean | undefined;
|
1460
1431
|
placeholder?: TranslationConfig | undefined;
|
1461
1432
|
helperText?: TranslationConfig | undefined;
|
1462
1433
|
hideLabel?: boolean | undefined;
|
@@ -1491,7 +1462,6 @@ declare const Paragraph: z.ZodObject<z.objectUtil.extendShape<{
|
|
1491
1462
|
type: "DISPLAY_ON_REVIEW";
|
1492
1463
|
conditional: import(".").JSONSchema;
|
1493
1464
|
})[] | undefined;
|
1494
|
-
secured?: boolean | undefined;
|
1495
1465
|
placeholder?: {
|
1496
1466
|
id: string;
|
1497
1467
|
description: string;
|
@@ -1522,7 +1492,6 @@ declare const PageHeader: z.ZodObject<z.objectUtil.extendShape<{
|
|
1522
1492
|
}>>;
|
1523
1493
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
1524
1494
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
1525
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
1526
1495
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
1527
1496
|
id: string;
|
1528
1497
|
description: string;
|
@@ -1582,7 +1551,6 @@ declare const PageHeader: z.ZodObject<z.objectUtil.extendShape<{
|
|
1582
1551
|
type: "DISPLAY_ON_REVIEW";
|
1583
1552
|
conditional: import(".").JSONSchema;
|
1584
1553
|
})[] | undefined;
|
1585
|
-
secured?: boolean | undefined;
|
1586
1554
|
placeholder?: TranslationConfig | undefined;
|
1587
1555
|
helperText?: TranslationConfig | undefined;
|
1588
1556
|
hideLabel?: boolean | undefined;
|
@@ -1617,7 +1585,6 @@ declare const PageHeader: z.ZodObject<z.objectUtil.extendShape<{
|
|
1617
1585
|
type: "DISPLAY_ON_REVIEW";
|
1618
1586
|
conditional: import(".").JSONSchema;
|
1619
1587
|
})[] | undefined;
|
1620
|
-
secured?: boolean | undefined;
|
1621
1588
|
placeholder?: {
|
1622
1589
|
id: string;
|
1623
1590
|
description: string;
|
@@ -1643,7 +1610,6 @@ declare const File: z.ZodObject<z.objectUtil.extendShape<{
|
|
1643
1610
|
}>>;
|
1644
1611
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
1645
1612
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
1646
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
1647
1613
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
1648
1614
|
id: string;
|
1649
1615
|
description: string;
|
@@ -1757,7 +1723,6 @@ declare const File: z.ZodObject<z.objectUtil.extendShape<{
|
|
1757
1723
|
type: "DISPLAY_ON_REVIEW";
|
1758
1724
|
conditional: import(".").JSONSchema;
|
1759
1725
|
})[] | undefined;
|
1760
|
-
secured?: boolean | undefined;
|
1761
1726
|
placeholder?: TranslationConfig | undefined;
|
1762
1727
|
helperText?: TranslationConfig | undefined;
|
1763
1728
|
hideLabel?: boolean | undefined;
|
@@ -1796,7 +1761,6 @@ declare const File: z.ZodObject<z.objectUtil.extendShape<{
|
|
1796
1761
|
type: "DISPLAY_ON_REVIEW";
|
1797
1762
|
conditional: import(".").JSONSchema;
|
1798
1763
|
})[] | undefined;
|
1799
|
-
secured?: boolean | undefined;
|
1800
1764
|
placeholder?: {
|
1801
1765
|
id: string;
|
1802
1766
|
description: string;
|
@@ -1856,7 +1820,6 @@ declare const RadioGroup: z.ZodObject<z.objectUtil.extendShape<{
|
|
1856
1820
|
}>>;
|
1857
1821
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
1858
1822
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
1859
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
1860
1823
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
1861
1824
|
id: string;
|
1862
1825
|
description: string;
|
@@ -1955,7 +1918,6 @@ declare const RadioGroup: z.ZodObject<z.objectUtil.extendShape<{
|
|
1955
1918
|
type: "DISPLAY_ON_REVIEW";
|
1956
1919
|
conditional: import(".").JSONSchema;
|
1957
1920
|
})[] | undefined;
|
1958
|
-
secured?: boolean | undefined;
|
1959
1921
|
placeholder?: TranslationConfig | undefined;
|
1960
1922
|
helperText?: TranslationConfig | undefined;
|
1961
1923
|
hideLabel?: boolean | undefined;
|
@@ -2003,7 +1965,6 @@ declare const RadioGroup: z.ZodObject<z.objectUtil.extendShape<{
|
|
2003
1965
|
type: "DISPLAY_ON_REVIEW";
|
2004
1966
|
conditional: import(".").JSONSchema;
|
2005
1967
|
})[] | undefined;
|
2006
|
-
secured?: boolean | undefined;
|
2007
1968
|
placeholder?: {
|
2008
1969
|
id: string;
|
2009
1970
|
description: string;
|
@@ -2034,7 +1995,6 @@ declare const BulletList: z.ZodObject<z.objectUtil.extendShape<{
|
|
2034
1995
|
}>>;
|
2035
1996
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
2036
1997
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2037
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2038
1998
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2039
1999
|
id: string;
|
2040
2000
|
description: string;
|
@@ -2122,7 +2082,6 @@ declare const BulletList: z.ZodObject<z.objectUtil.extendShape<{
|
|
2122
2082
|
type: "DISPLAY_ON_REVIEW";
|
2123
2083
|
conditional: import(".").JSONSchema;
|
2124
2084
|
})[] | undefined;
|
2125
|
-
secured?: boolean | undefined;
|
2126
2085
|
placeholder?: TranslationConfig | undefined;
|
2127
2086
|
helperText?: TranslationConfig | undefined;
|
2128
2087
|
hideLabel?: boolean | undefined;
|
@@ -2162,7 +2121,6 @@ declare const BulletList: z.ZodObject<z.objectUtil.extendShape<{
|
|
2162
2121
|
type: "DISPLAY_ON_REVIEW";
|
2163
2122
|
conditional: import(".").JSONSchema;
|
2164
2123
|
})[] | undefined;
|
2165
|
-
secured?: boolean | undefined;
|
2166
2124
|
placeholder?: {
|
2167
2125
|
id: string;
|
2168
2126
|
description: string;
|
@@ -2193,7 +2151,6 @@ declare const Select: z.ZodObject<z.objectUtil.extendShape<{
|
|
2193
2151
|
}>>;
|
2194
2152
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
2195
2153
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2196
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2197
2154
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2198
2155
|
id: string;
|
2199
2156
|
description: string;
|
@@ -2275,7 +2232,6 @@ declare const Select: z.ZodObject<z.objectUtil.extendShape<{
|
|
2275
2232
|
type: "DISPLAY_ON_REVIEW";
|
2276
2233
|
conditional: import(".").JSONSchema;
|
2277
2234
|
})[] | undefined;
|
2278
|
-
secured?: boolean | undefined;
|
2279
2235
|
placeholder?: TranslationConfig | undefined;
|
2280
2236
|
helperText?: TranslationConfig | undefined;
|
2281
2237
|
hideLabel?: boolean | undefined;
|
@@ -2318,7 +2274,6 @@ declare const Select: z.ZodObject<z.objectUtil.extendShape<{
|
|
2318
2274
|
type: "DISPLAY_ON_REVIEW";
|
2319
2275
|
conditional: import(".").JSONSchema;
|
2320
2276
|
})[] | undefined;
|
2321
|
-
secured?: boolean | undefined;
|
2322
2277
|
placeholder?: {
|
2323
2278
|
id: string;
|
2324
2279
|
description: string;
|
@@ -2343,7 +2298,6 @@ declare const NameField: z.ZodObject<z.objectUtil.extendShape<{
|
|
2343
2298
|
}>>;
|
2344
2299
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
2345
2300
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2346
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2347
2301
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2348
2302
|
id: string;
|
2349
2303
|
description: string;
|
@@ -2402,14 +2356,10 @@ declare const NameField: z.ZodObject<z.objectUtil.extendShape<{
|
|
2402
2356
|
description: string;
|
2403
2357
|
defaultMessage: string;
|
2404
2358
|
}>>;
|
2405
|
-
includeMiddlename: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2406
|
-
searchMode: z.ZodOptional<z.ZodBoolean>;
|
2407
2359
|
}, "strip", z.ZodTypeAny, {
|
2408
2360
|
maxLength?: number | undefined;
|
2409
2361
|
prefix?: TranslationConfig | undefined;
|
2410
2362
|
postfix?: TranslationConfig | undefined;
|
2411
|
-
includeMiddlename?: boolean | undefined;
|
2412
|
-
searchMode?: boolean | undefined;
|
2413
2363
|
}, {
|
2414
2364
|
maxLength?: number | undefined;
|
2415
2365
|
prefix?: {
|
@@ -2422,8 +2372,6 @@ declare const NameField: z.ZodObject<z.objectUtil.extendShape<{
|
|
2422
2372
|
description: string;
|
2423
2373
|
defaultMessage: string;
|
2424
2374
|
} | undefined;
|
2425
|
-
includeMiddlename?: boolean | undefined;
|
2426
|
-
searchMode?: boolean | undefined;
|
2427
2375
|
}>>;
|
2428
2376
|
}>, "strip", z.ZodTypeAny, {
|
2429
2377
|
type: "NAME";
|
@@ -2447,7 +2395,6 @@ declare const NameField: z.ZodObject<z.objectUtil.extendShape<{
|
|
2447
2395
|
type: "DISPLAY_ON_REVIEW";
|
2448
2396
|
conditional: import(".").JSONSchema;
|
2449
2397
|
})[] | undefined;
|
2450
|
-
secured?: boolean | undefined;
|
2451
2398
|
placeholder?: TranslationConfig | undefined;
|
2452
2399
|
helperText?: TranslationConfig | undefined;
|
2453
2400
|
hideLabel?: boolean | undefined;
|
@@ -2459,8 +2406,6 @@ declare const NameField: z.ZodObject<z.objectUtil.extendShape<{
|
|
2459
2406
|
maxLength?: number | undefined;
|
2460
2407
|
prefix?: TranslationConfig | undefined;
|
2461
2408
|
postfix?: TranslationConfig | undefined;
|
2462
|
-
includeMiddlename?: boolean | undefined;
|
2463
|
-
searchMode?: boolean | undefined;
|
2464
2409
|
} | undefined;
|
2465
2410
|
}, {
|
2466
2411
|
type: "NAME";
|
@@ -2492,7 +2437,6 @@ declare const NameField: z.ZodObject<z.objectUtil.extendShape<{
|
|
2492
2437
|
type: "DISPLAY_ON_REVIEW";
|
2493
2438
|
conditional: import(".").JSONSchema;
|
2494
2439
|
})[] | undefined;
|
2495
|
-
secured?: boolean | undefined;
|
2496
2440
|
placeholder?: {
|
2497
2441
|
id: string;
|
2498
2442
|
description: string;
|
@@ -2520,8 +2464,6 @@ declare const NameField: z.ZodObject<z.objectUtil.extendShape<{
|
|
2520
2464
|
description: string;
|
2521
2465
|
defaultMessage: string;
|
2522
2466
|
} | undefined;
|
2523
|
-
includeMiddlename?: boolean | undefined;
|
2524
|
-
searchMode?: boolean | undefined;
|
2525
2467
|
} | undefined;
|
2526
2468
|
}>;
|
2527
2469
|
declare const PhoneField: z.ZodObject<z.objectUtil.extendShape<{
|
@@ -2535,7 +2477,6 @@ declare const PhoneField: z.ZodObject<z.objectUtil.extendShape<{
|
|
2535
2477
|
}>>;
|
2536
2478
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
2537
2479
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2538
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2539
2480
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2540
2481
|
id: string;
|
2541
2482
|
description: string;
|
@@ -2595,7 +2536,6 @@ declare const PhoneField: z.ZodObject<z.objectUtil.extendShape<{
|
|
2595
2536
|
type: "DISPLAY_ON_REVIEW";
|
2596
2537
|
conditional: import(".").JSONSchema;
|
2597
2538
|
})[] | undefined;
|
2598
|
-
secured?: boolean | undefined;
|
2599
2539
|
placeholder?: TranslationConfig | undefined;
|
2600
2540
|
helperText?: TranslationConfig | undefined;
|
2601
2541
|
hideLabel?: boolean | undefined;
|
@@ -2630,7 +2570,6 @@ declare const PhoneField: z.ZodObject<z.objectUtil.extendShape<{
|
|
2630
2570
|
type: "DISPLAY_ON_REVIEW";
|
2631
2571
|
conditional: import(".").JSONSchema;
|
2632
2572
|
})[] | undefined;
|
2633
|
-
secured?: boolean | undefined;
|
2634
2573
|
placeholder?: {
|
2635
2574
|
id: string;
|
2636
2575
|
description: string;
|
@@ -2655,7 +2594,6 @@ declare const IdField: z.ZodObject<z.objectUtil.extendShape<{
|
|
2655
2594
|
}>>;
|
2656
2595
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
2657
2596
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2658
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2659
2597
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2660
2598
|
id: string;
|
2661
2599
|
description: string;
|
@@ -2715,7 +2653,6 @@ declare const IdField: z.ZodObject<z.objectUtil.extendShape<{
|
|
2715
2653
|
type: "DISPLAY_ON_REVIEW";
|
2716
2654
|
conditional: import(".").JSONSchema;
|
2717
2655
|
})[] | undefined;
|
2718
|
-
secured?: boolean | undefined;
|
2719
2656
|
placeholder?: TranslationConfig | undefined;
|
2720
2657
|
helperText?: TranslationConfig | undefined;
|
2721
2658
|
hideLabel?: boolean | undefined;
|
@@ -2750,7 +2687,6 @@ declare const IdField: z.ZodObject<z.objectUtil.extendShape<{
|
|
2750
2687
|
type: "DISPLAY_ON_REVIEW";
|
2751
2688
|
conditional: import(".").JSONSchema;
|
2752
2689
|
})[] | undefined;
|
2753
|
-
secured?: boolean | undefined;
|
2754
2690
|
placeholder?: {
|
2755
2691
|
id: string;
|
2756
2692
|
description: string;
|
@@ -2775,7 +2711,6 @@ declare const Checkbox: z.ZodObject<z.objectUtil.extendShape<{
|
|
2775
2711
|
}>>;
|
2776
2712
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
2777
2713
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2778
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2779
2714
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2780
2715
|
id: string;
|
2781
2716
|
description: string;
|
@@ -2835,7 +2770,6 @@ declare const Checkbox: z.ZodObject<z.objectUtil.extendShape<{
|
|
2835
2770
|
type: "DISPLAY_ON_REVIEW";
|
2836
2771
|
conditional: import(".").JSONSchema;
|
2837
2772
|
})[] | undefined;
|
2838
|
-
secured?: boolean | undefined;
|
2839
2773
|
placeholder?: TranslationConfig | undefined;
|
2840
2774
|
helperText?: TranslationConfig | undefined;
|
2841
2775
|
hideLabel?: boolean | undefined;
|
@@ -2870,7 +2804,6 @@ declare const Checkbox: z.ZodObject<z.objectUtil.extendShape<{
|
|
2870
2804
|
type: "DISPLAY_ON_REVIEW";
|
2871
2805
|
conditional: import(".").JSONSchema;
|
2872
2806
|
})[] | undefined;
|
2873
|
-
secured?: boolean | undefined;
|
2874
2807
|
placeholder?: {
|
2875
2808
|
id: string;
|
2876
2809
|
description: string;
|
@@ -2896,7 +2829,6 @@ declare const Country: z.ZodObject<z.objectUtil.extendShape<{
|
|
2896
2829
|
}>>;
|
2897
2830
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
2898
2831
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2899
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2900
2832
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2901
2833
|
id: string;
|
2902
2834
|
description: string;
|
@@ -2956,7 +2888,6 @@ declare const Country: z.ZodObject<z.objectUtil.extendShape<{
|
|
2956
2888
|
type: "DISPLAY_ON_REVIEW";
|
2957
2889
|
conditional: import(".").JSONSchema;
|
2958
2890
|
})[] | undefined;
|
2959
|
-
secured?: boolean | undefined;
|
2960
2891
|
placeholder?: TranslationConfig | undefined;
|
2961
2892
|
helperText?: TranslationConfig | undefined;
|
2962
2893
|
hideLabel?: boolean | undefined;
|
@@ -2991,7 +2922,6 @@ declare const Country: z.ZodObject<z.objectUtil.extendShape<{
|
|
2991
2922
|
type: "DISPLAY_ON_REVIEW";
|
2992
2923
|
conditional: import(".").JSONSchema;
|
2993
2924
|
})[] | undefined;
|
2994
|
-
secured?: boolean | undefined;
|
2995
2925
|
placeholder?: {
|
2996
2926
|
id: string;
|
2997
2927
|
description: string;
|
@@ -3038,7 +2968,6 @@ declare const AdministrativeArea: z.ZodObject<z.objectUtil.extendShape<{
|
|
3038
2968
|
}>>;
|
3039
2969
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
3040
2970
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
3041
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
3042
2971
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
3043
2972
|
id: string;
|
3044
2973
|
description: string;
|
@@ -3124,7 +3053,6 @@ declare const AdministrativeArea: z.ZodObject<z.objectUtil.extendShape<{
|
|
3124
3053
|
type: "DISPLAY_ON_REVIEW";
|
3125
3054
|
conditional: import(".").JSONSchema;
|
3126
3055
|
})[] | undefined;
|
3127
|
-
secured?: boolean | undefined;
|
3128
3056
|
placeholder?: TranslationConfig | undefined;
|
3129
3057
|
helperText?: TranslationConfig | undefined;
|
3130
3058
|
hideLabel?: boolean | undefined;
|
@@ -3165,7 +3093,6 @@ declare const AdministrativeArea: z.ZodObject<z.objectUtil.extendShape<{
|
|
3165
3093
|
type: "DISPLAY_ON_REVIEW";
|
3166
3094
|
conditional: import(".").JSONSchema;
|
3167
3095
|
})[] | undefined;
|
3168
|
-
secured?: boolean | undefined;
|
3169
3096
|
placeholder?: {
|
3170
3097
|
id: string;
|
3171
3098
|
description: string;
|
@@ -3191,7 +3118,6 @@ declare const Location: z.ZodObject<z.objectUtil.extendShape<{
|
|
3191
3118
|
}>>;
|
3192
3119
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
3193
3120
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
3194
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
3195
3121
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
3196
3122
|
id: string;
|
3197
3123
|
description: string;
|
@@ -3251,7 +3177,6 @@ declare const Location: z.ZodObject<z.objectUtil.extendShape<{
|
|
3251
3177
|
type: "DISPLAY_ON_REVIEW";
|
3252
3178
|
conditional: import(".").JSONSchema;
|
3253
3179
|
})[] | undefined;
|
3254
|
-
secured?: boolean | undefined;
|
3255
3180
|
placeholder?: TranslationConfig | undefined;
|
3256
3181
|
helperText?: TranslationConfig | undefined;
|
3257
3182
|
hideLabel?: boolean | undefined;
|
@@ -3286,7 +3211,6 @@ declare const Location: z.ZodObject<z.objectUtil.extendShape<{
|
|
3286
3211
|
type: "DISPLAY_ON_REVIEW";
|
3287
3212
|
conditional: import(".").JSONSchema;
|
3288
3213
|
})[] | undefined;
|
3289
|
-
secured?: boolean | undefined;
|
3290
3214
|
placeholder?: {
|
3291
3215
|
id: string;
|
3292
3216
|
description: string;
|
@@ -3312,7 +3236,6 @@ declare const FileUploadWithOptions: z.ZodObject<z.objectUtil.extendShape<{
|
|
3312
3236
|
}>>;
|
3313
3237
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
3314
3238
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
3315
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
3316
3239
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
3317
3240
|
id: string;
|
3318
3241
|
description: string;
|
@@ -3423,7 +3346,6 @@ declare const FileUploadWithOptions: z.ZodObject<z.objectUtil.extendShape<{
|
|
3423
3346
|
type: "DISPLAY_ON_REVIEW";
|
3424
3347
|
conditional: import(".").JSONSchema;
|
3425
3348
|
})[] | undefined;
|
3426
|
-
secured?: boolean | undefined;
|
3427
3349
|
placeholder?: TranslationConfig | undefined;
|
3428
3350
|
helperText?: TranslationConfig | undefined;
|
3429
3351
|
hideLabel?: boolean | undefined;
|
@@ -3471,7 +3393,6 @@ declare const FileUploadWithOptions: z.ZodObject<z.objectUtil.extendShape<{
|
|
3471
3393
|
type: "DISPLAY_ON_REVIEW";
|
3472
3394
|
conditional: import(".").JSONSchema;
|
3473
3395
|
})[] | undefined;
|
3474
|
-
secured?: boolean | undefined;
|
3475
3396
|
placeholder?: {
|
3476
3397
|
id: string;
|
3477
3398
|
description: string;
|
@@ -3506,7 +3427,6 @@ declare const Facility: z.ZodObject<z.objectUtil.extendShape<{
|
|
3506
3427
|
}>>;
|
3507
3428
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
3508
3429
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
3509
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
3510
3430
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
3511
3431
|
id: string;
|
3512
3432
|
description: string;
|
@@ -3566,7 +3486,6 @@ declare const Facility: z.ZodObject<z.objectUtil.extendShape<{
|
|
3566
3486
|
type: "DISPLAY_ON_REVIEW";
|
3567
3487
|
conditional: import(".").JSONSchema;
|
3568
3488
|
})[] | undefined;
|
3569
|
-
secured?: boolean | undefined;
|
3570
3489
|
placeholder?: TranslationConfig | undefined;
|
3571
3490
|
helperText?: TranslationConfig | undefined;
|
3572
3491
|
hideLabel?: boolean | undefined;
|
@@ -3601,7 +3520,6 @@ declare const Facility: z.ZodObject<z.objectUtil.extendShape<{
|
|
3601
3520
|
type: "DISPLAY_ON_REVIEW";
|
3602
3521
|
conditional: import(".").JSONSchema;
|
3603
3522
|
})[] | undefined;
|
3604
|
-
secured?: boolean | undefined;
|
3605
3523
|
placeholder?: {
|
3606
3524
|
id: string;
|
3607
3525
|
description: string;
|
@@ -3627,7 +3545,6 @@ declare const Office: z.ZodObject<z.objectUtil.extendShape<{
|
|
3627
3545
|
}>>;
|
3628
3546
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
3629
3547
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
3630
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
3631
3548
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
3632
3549
|
id: string;
|
3633
3550
|
description: string;
|
@@ -3687,7 +3604,6 @@ declare const Office: z.ZodObject<z.objectUtil.extendShape<{
|
|
3687
3604
|
type: "DISPLAY_ON_REVIEW";
|
3688
3605
|
conditional: import(".").JSONSchema;
|
3689
3606
|
})[] | undefined;
|
3690
|
-
secured?: boolean | undefined;
|
3691
3607
|
placeholder?: TranslationConfig | undefined;
|
3692
3608
|
helperText?: TranslationConfig | undefined;
|
3693
3609
|
hideLabel?: boolean | undefined;
|
@@ -3722,7 +3638,6 @@ declare const Office: z.ZodObject<z.objectUtil.extendShape<{
|
|
3722
3638
|
type: "DISPLAY_ON_REVIEW";
|
3723
3639
|
conditional: import(".").JSONSchema;
|
3724
3640
|
})[] | undefined;
|
3725
|
-
secured?: boolean | undefined;
|
3726
3641
|
placeholder?: {
|
3727
3642
|
id: string;
|
3728
3643
|
description: string;
|
@@ -3748,7 +3663,6 @@ declare const Address: z.ZodObject<z.objectUtil.extendShape<{
|
|
3748
3663
|
}>>;
|
3749
3664
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
3750
3665
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
3751
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
3752
3666
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
3753
3667
|
id: string;
|
3754
3668
|
description: string;
|
@@ -3894,7 +3808,6 @@ declare const Address: z.ZodObject<z.objectUtil.extendShape<{
|
|
3894
3808
|
type: "DISPLAY_ON_REVIEW";
|
3895
3809
|
conditional: import(".").JSONSchema;
|
3896
3810
|
})[] | undefined;
|
3897
|
-
secured?: boolean | undefined;
|
3898
3811
|
placeholder?: TranslationConfig | undefined;
|
3899
3812
|
helperText?: TranslationConfig | undefined;
|
3900
3813
|
hideLabel?: boolean | undefined;
|
@@ -3957,7 +3870,6 @@ declare const Address: z.ZodObject<z.objectUtil.extendShape<{
|
|
3957
3870
|
type: "DISPLAY_ON_REVIEW";
|
3958
3871
|
conditional: import(".").JSONSchema;
|
3959
3872
|
})[] | undefined;
|
3960
|
-
secured?: boolean | undefined;
|
3961
3873
|
placeholder?: {
|
3962
3874
|
id: string;
|
3963
3875
|
description: string;
|
@@ -4043,7 +3955,6 @@ declare const DataField: z.ZodObject<z.objectUtil.extendShape<{
|
|
4043
3955
|
}>>;
|
4044
3956
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
4045
3957
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4046
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4047
3958
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
4048
3959
|
id: string;
|
4049
3960
|
description: string;
|
@@ -4178,7 +4089,6 @@ declare const DataField: z.ZodObject<z.objectUtil.extendShape<{
|
|
4178
4089
|
type: "DISPLAY_ON_REVIEW";
|
4179
4090
|
conditional: import(".").JSONSchema;
|
4180
4091
|
})[] | undefined;
|
4181
|
-
secured?: boolean | undefined;
|
4182
4092
|
placeholder?: TranslationConfig | undefined;
|
4183
4093
|
helperText?: TranslationConfig | undefined;
|
4184
4094
|
hideLabel?: boolean | undefined;
|
@@ -4233,7 +4143,6 @@ declare const DataField: z.ZodObject<z.objectUtil.extendShape<{
|
|
4233
4143
|
type: "DISPLAY_ON_REVIEW";
|
4234
4144
|
conditional: import(".").JSONSchema;
|
4235
4145
|
})[] | undefined;
|
4236
|
-
secured?: boolean | undefined;
|
4237
4146
|
placeholder?: {
|
4238
4147
|
id: string;
|
4239
4148
|
description: string;
|
@@ -4267,7 +4176,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4267
4176
|
}>>;
|
4268
4177
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
4269
4178
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4270
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4271
4179
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
4272
4180
|
id: string;
|
4273
4181
|
description: string;
|
@@ -4413,7 +4321,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4413
4321
|
type: "DISPLAY_ON_REVIEW";
|
4414
4322
|
conditional: import(".").JSONSchema;
|
4415
4323
|
})[] | undefined;
|
4416
|
-
secured?: boolean | undefined;
|
4417
4324
|
placeholder?: TranslationConfig | undefined;
|
4418
4325
|
helperText?: TranslationConfig | undefined;
|
4419
4326
|
hideLabel?: boolean | undefined;
|
@@ -4476,7 +4383,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4476
4383
|
type: "DISPLAY_ON_REVIEW";
|
4477
4384
|
conditional: import(".").JSONSchema;
|
4478
4385
|
})[] | undefined;
|
4479
|
-
secured?: boolean | undefined;
|
4480
4386
|
placeholder?: {
|
4481
4387
|
id: string;
|
4482
4388
|
description: string;
|
@@ -4528,7 +4434,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4528
4434
|
}>>;
|
4529
4435
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
4530
4436
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4531
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4532
4437
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
4533
4438
|
id: string;
|
4534
4439
|
description: string;
|
@@ -4620,7 +4525,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4620
4525
|
type: "DISPLAY_ON_REVIEW";
|
4621
4526
|
conditional: import(".").JSONSchema;
|
4622
4527
|
})[] | undefined;
|
4623
|
-
secured?: boolean | undefined;
|
4624
4528
|
placeholder?: TranslationConfig | undefined;
|
4625
4529
|
helperText?: TranslationConfig | undefined;
|
4626
4530
|
hideLabel?: boolean | undefined;
|
@@ -4661,7 +4565,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4661
4565
|
type: "DISPLAY_ON_REVIEW";
|
4662
4566
|
conditional: import(".").JSONSchema;
|
4663
4567
|
})[] | undefined;
|
4664
|
-
secured?: boolean | undefined;
|
4665
4568
|
placeholder?: {
|
4666
4569
|
id: string;
|
4667
4570
|
description: string;
|
@@ -4699,7 +4602,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4699
4602
|
}>>;
|
4700
4603
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
4701
4604
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4702
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4703
4605
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
4704
4606
|
id: string;
|
4705
4607
|
description: string;
|
@@ -4791,7 +4693,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4791
4693
|
type: "DISPLAY_ON_REVIEW";
|
4792
4694
|
conditional: import(".").JSONSchema;
|
4793
4695
|
})[] | undefined;
|
4794
|
-
secured?: boolean | undefined;
|
4795
4696
|
placeholder?: TranslationConfig | undefined;
|
4796
4697
|
helperText?: TranslationConfig | undefined;
|
4797
4698
|
hideLabel?: boolean | undefined;
|
@@ -4832,7 +4733,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4832
4733
|
type: "DISPLAY_ON_REVIEW";
|
4833
4734
|
conditional: import(".").JSONSchema;
|
4834
4735
|
})[] | undefined;
|
4835
|
-
secured?: boolean | undefined;
|
4836
4736
|
placeholder?: {
|
4837
4737
|
id: string;
|
4838
4738
|
description: string;
|
@@ -4870,7 +4770,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4870
4770
|
}>>;
|
4871
4771
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
4872
4772
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4873
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4874
4773
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
4875
4774
|
id: string;
|
4876
4775
|
description: string;
|
@@ -4965,7 +4864,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4965
4864
|
type: "DISPLAY_ON_REVIEW";
|
4966
4865
|
conditional: import(".").JSONSchema;
|
4967
4866
|
})[] | undefined;
|
4968
|
-
secured?: boolean | undefined;
|
4969
4867
|
placeholder?: TranslationConfig | undefined;
|
4970
4868
|
helperText?: TranslationConfig | undefined;
|
4971
4869
|
hideLabel?: boolean | undefined;
|
@@ -5007,7 +4905,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5007
4905
|
type: "DISPLAY_ON_REVIEW";
|
5008
4906
|
conditional: import(".").JSONSchema;
|
5009
4907
|
})[] | undefined;
|
5010
|
-
secured?: boolean | undefined;
|
5011
4908
|
placeholder?: {
|
5012
4909
|
id: string;
|
5013
4910
|
description: string;
|
@@ -5046,7 +4943,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5046
4943
|
}>>;
|
5047
4944
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
5048
4945
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5049
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5050
4946
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5051
4947
|
id: string;
|
5052
4948
|
description: string;
|
@@ -5121,7 +5017,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5121
5017
|
type: "DISPLAY_ON_REVIEW";
|
5122
5018
|
conditional: import(".").JSONSchema;
|
5123
5019
|
})[] | undefined;
|
5124
|
-
secured?: boolean | undefined;
|
5125
5020
|
placeholder?: TranslationConfig | undefined;
|
5126
5021
|
helperText?: TranslationConfig | undefined;
|
5127
5022
|
hideLabel?: boolean | undefined;
|
@@ -5159,7 +5054,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5159
5054
|
type: "DISPLAY_ON_REVIEW";
|
5160
5055
|
conditional: import(".").JSONSchema;
|
5161
5056
|
})[] | undefined;
|
5162
|
-
secured?: boolean | undefined;
|
5163
5057
|
placeholder?: {
|
5164
5058
|
id: string;
|
5165
5059
|
description: string;
|
@@ -5190,7 +5084,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5190
5084
|
}>>;
|
5191
5085
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
5192
5086
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5193
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5194
5087
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5195
5088
|
id: string;
|
5196
5089
|
description: string;
|
@@ -5265,7 +5158,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5265
5158
|
type: "DISPLAY_ON_REVIEW";
|
5266
5159
|
conditional: import(".").JSONSchema;
|
5267
5160
|
})[] | undefined;
|
5268
|
-
secured?: boolean | undefined;
|
5269
5161
|
placeholder?: TranslationConfig | undefined;
|
5270
5162
|
helperText?: TranslationConfig | undefined;
|
5271
5163
|
hideLabel?: boolean | undefined;
|
@@ -5303,7 +5195,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5303
5195
|
type: "DISPLAY_ON_REVIEW";
|
5304
5196
|
conditional: import(".").JSONSchema;
|
5305
5197
|
})[] | undefined;
|
5306
|
-
secured?: boolean | undefined;
|
5307
5198
|
placeholder?: {
|
5308
5199
|
id: string;
|
5309
5200
|
description: string;
|
@@ -5334,7 +5225,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5334
5225
|
}>>;
|
5335
5226
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
5336
5227
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5337
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5338
5228
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5339
5229
|
id: string;
|
5340
5230
|
description: string;
|
@@ -5416,7 +5306,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5416
5306
|
type: "DISPLAY_ON_REVIEW";
|
5417
5307
|
conditional: import(".").JSONSchema;
|
5418
5308
|
})[] | undefined;
|
5419
|
-
secured?: boolean | undefined;
|
5420
5309
|
placeholder?: TranslationConfig | undefined;
|
5421
5310
|
helperText?: TranslationConfig | undefined;
|
5422
5311
|
hideLabel?: boolean | undefined;
|
@@ -5451,7 +5340,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5451
5340
|
type: "DISPLAY_ON_REVIEW";
|
5452
5341
|
conditional: import(".").JSONSchema;
|
5453
5342
|
})[] | undefined;
|
5454
|
-
secured?: boolean | undefined;
|
5455
5343
|
placeholder?: {
|
5456
5344
|
id: string;
|
5457
5345
|
description: string;
|
@@ -5480,7 +5368,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5480
5368
|
}>>;
|
5481
5369
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
5482
5370
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5483
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5484
5371
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5485
5372
|
id: string;
|
5486
5373
|
description: string;
|
@@ -5579,7 +5466,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5579
5466
|
type: "DISPLAY_ON_REVIEW";
|
5580
5467
|
conditional: import(".").JSONSchema;
|
5581
5468
|
})[] | undefined;
|
5582
|
-
secured?: boolean | undefined;
|
5583
5469
|
placeholder?: TranslationConfig | undefined;
|
5584
5470
|
helperText?: TranslationConfig | undefined;
|
5585
5471
|
hideLabel?: boolean | undefined;
|
@@ -5627,7 +5513,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5627
5513
|
type: "DISPLAY_ON_REVIEW";
|
5628
5514
|
conditional: import(".").JSONSchema;
|
5629
5515
|
})[] | undefined;
|
5630
|
-
secured?: boolean | undefined;
|
5631
5516
|
placeholder?: {
|
5632
5517
|
id: string;
|
5633
5518
|
description: string;
|
@@ -5656,7 +5541,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5656
5541
|
}>>;
|
5657
5542
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
5658
5543
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5659
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5660
5544
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5661
5545
|
id: string;
|
5662
5546
|
description: string;
|
@@ -5744,7 +5628,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5744
5628
|
type: "DISPLAY_ON_REVIEW";
|
5745
5629
|
conditional: import(".").JSONSchema;
|
5746
5630
|
})[] | undefined;
|
5747
|
-
secured?: boolean | undefined;
|
5748
5631
|
placeholder?: TranslationConfig | undefined;
|
5749
5632
|
helperText?: TranslationConfig | undefined;
|
5750
5633
|
hideLabel?: boolean | undefined;
|
@@ -5784,7 +5667,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5784
5667
|
type: "DISPLAY_ON_REVIEW";
|
5785
5668
|
conditional: import(".").JSONSchema;
|
5786
5669
|
})[] | undefined;
|
5787
|
-
secured?: boolean | undefined;
|
5788
5670
|
placeholder?: {
|
5789
5671
|
id: string;
|
5790
5672
|
description: string;
|
@@ -5813,7 +5695,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5813
5695
|
}>>;
|
5814
5696
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
5815
5697
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5816
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5817
5698
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5818
5699
|
id: string;
|
5819
5700
|
description: string;
|
@@ -5873,7 +5754,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5873
5754
|
type: "DISPLAY_ON_REVIEW";
|
5874
5755
|
conditional: import(".").JSONSchema;
|
5875
5756
|
})[] | undefined;
|
5876
|
-
secured?: boolean | undefined;
|
5877
5757
|
placeholder?: TranslationConfig | undefined;
|
5878
5758
|
helperText?: TranslationConfig | undefined;
|
5879
5759
|
hideLabel?: boolean | undefined;
|
@@ -5908,7 +5788,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5908
5788
|
type: "DISPLAY_ON_REVIEW";
|
5909
5789
|
conditional: import(".").JSONSchema;
|
5910
5790
|
})[] | undefined;
|
5911
|
-
secured?: boolean | undefined;
|
5912
5791
|
placeholder?: {
|
5913
5792
|
id: string;
|
5914
5793
|
description: string;
|
@@ -5932,7 +5811,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5932
5811
|
}>>;
|
5933
5812
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
5934
5813
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5935
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5936
5814
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5937
5815
|
id: string;
|
5938
5816
|
description: string;
|
@@ -6014,7 +5892,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6014
5892
|
type: "DISPLAY_ON_REVIEW";
|
6015
5893
|
conditional: import(".").JSONSchema;
|
6016
5894
|
})[] | undefined;
|
6017
|
-
secured?: boolean | undefined;
|
6018
5895
|
placeholder?: TranslationConfig | undefined;
|
6019
5896
|
helperText?: TranslationConfig | undefined;
|
6020
5897
|
hideLabel?: boolean | undefined;
|
@@ -6057,7 +5934,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6057
5934
|
type: "DISPLAY_ON_REVIEW";
|
6058
5935
|
conditional: import(".").JSONSchema;
|
6059
5936
|
})[] | undefined;
|
6060
|
-
secured?: boolean | undefined;
|
6061
5937
|
placeholder?: {
|
6062
5938
|
id: string;
|
6063
5939
|
description: string;
|
@@ -6081,7 +5957,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6081
5957
|
}>>;
|
6082
5958
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
6083
5959
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6084
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6085
5960
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6086
5961
|
id: string;
|
6087
5962
|
description: string;
|
@@ -6140,14 +6015,10 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6140
6015
|
description: string;
|
6141
6016
|
defaultMessage: string;
|
6142
6017
|
}>>;
|
6143
|
-
includeMiddlename: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6144
|
-
searchMode: z.ZodOptional<z.ZodBoolean>;
|
6145
6018
|
}, "strip", z.ZodTypeAny, {
|
6146
6019
|
maxLength?: number | undefined;
|
6147
6020
|
prefix?: TranslationConfig | undefined;
|
6148
6021
|
postfix?: TranslationConfig | undefined;
|
6149
|
-
includeMiddlename?: boolean | undefined;
|
6150
|
-
searchMode?: boolean | undefined;
|
6151
6022
|
}, {
|
6152
6023
|
maxLength?: number | undefined;
|
6153
6024
|
prefix?: {
|
@@ -6160,8 +6031,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6160
6031
|
description: string;
|
6161
6032
|
defaultMessage: string;
|
6162
6033
|
} | undefined;
|
6163
|
-
includeMiddlename?: boolean | undefined;
|
6164
|
-
searchMode?: boolean | undefined;
|
6165
6034
|
}>>;
|
6166
6035
|
}>, "strip", z.ZodTypeAny, {
|
6167
6036
|
type: "NAME";
|
@@ -6185,7 +6054,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6185
6054
|
type: "DISPLAY_ON_REVIEW";
|
6186
6055
|
conditional: import(".").JSONSchema;
|
6187
6056
|
})[] | undefined;
|
6188
|
-
secured?: boolean | undefined;
|
6189
6057
|
placeholder?: TranslationConfig | undefined;
|
6190
6058
|
helperText?: TranslationConfig | undefined;
|
6191
6059
|
hideLabel?: boolean | undefined;
|
@@ -6197,8 +6065,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6197
6065
|
maxLength?: number | undefined;
|
6198
6066
|
prefix?: TranslationConfig | undefined;
|
6199
6067
|
postfix?: TranslationConfig | undefined;
|
6200
|
-
includeMiddlename?: boolean | undefined;
|
6201
|
-
searchMode?: boolean | undefined;
|
6202
6068
|
} | undefined;
|
6203
6069
|
}, {
|
6204
6070
|
type: "NAME";
|
@@ -6230,7 +6096,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6230
6096
|
type: "DISPLAY_ON_REVIEW";
|
6231
6097
|
conditional: import(".").JSONSchema;
|
6232
6098
|
})[] | undefined;
|
6233
|
-
secured?: boolean | undefined;
|
6234
6099
|
placeholder?: {
|
6235
6100
|
id: string;
|
6236
6101
|
description: string;
|
@@ -6258,8 +6123,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6258
6123
|
description: string;
|
6259
6124
|
defaultMessage: string;
|
6260
6125
|
} | undefined;
|
6261
|
-
includeMiddlename?: boolean | undefined;
|
6262
|
-
searchMode?: boolean | undefined;
|
6263
6126
|
} | undefined;
|
6264
6127
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
6265
6128
|
id: z.ZodString;
|
@@ -6272,7 +6135,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6272
6135
|
}>>;
|
6273
6136
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
6274
6137
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6275
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6276
6138
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6277
6139
|
id: string;
|
6278
6140
|
description: string;
|
@@ -6332,7 +6194,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6332
6194
|
type: "DISPLAY_ON_REVIEW";
|
6333
6195
|
conditional: import(".").JSONSchema;
|
6334
6196
|
})[] | undefined;
|
6335
|
-
secured?: boolean | undefined;
|
6336
6197
|
placeholder?: TranslationConfig | undefined;
|
6337
6198
|
helperText?: TranslationConfig | undefined;
|
6338
6199
|
hideLabel?: boolean | undefined;
|
@@ -6367,7 +6228,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6367
6228
|
type: "DISPLAY_ON_REVIEW";
|
6368
6229
|
conditional: import(".").JSONSchema;
|
6369
6230
|
})[] | undefined;
|
6370
|
-
secured?: boolean | undefined;
|
6371
6231
|
placeholder?: {
|
6372
6232
|
id: string;
|
6373
6233
|
description: string;
|
@@ -6391,7 +6251,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6391
6251
|
}>>;
|
6392
6252
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
6393
6253
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6394
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6395
6254
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6396
6255
|
id: string;
|
6397
6256
|
description: string;
|
@@ -6451,7 +6310,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6451
6310
|
type: "DISPLAY_ON_REVIEW";
|
6452
6311
|
conditional: import(".").JSONSchema;
|
6453
6312
|
})[] | undefined;
|
6454
|
-
secured?: boolean | undefined;
|
6455
6313
|
placeholder?: TranslationConfig | undefined;
|
6456
6314
|
helperText?: TranslationConfig | undefined;
|
6457
6315
|
hideLabel?: boolean | undefined;
|
@@ -6486,7 +6344,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6486
6344
|
type: "DISPLAY_ON_REVIEW";
|
6487
6345
|
conditional: import(".").JSONSchema;
|
6488
6346
|
})[] | undefined;
|
6489
|
-
secured?: boolean | undefined;
|
6490
6347
|
placeholder?: {
|
6491
6348
|
id: string;
|
6492
6349
|
description: string;
|
@@ -6510,7 +6367,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6510
6367
|
}>>;
|
6511
6368
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
6512
6369
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6513
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6514
6370
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6515
6371
|
id: string;
|
6516
6372
|
description: string;
|
@@ -6570,7 +6426,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6570
6426
|
type: "DISPLAY_ON_REVIEW";
|
6571
6427
|
conditional: import(".").JSONSchema;
|
6572
6428
|
})[] | undefined;
|
6573
|
-
secured?: boolean | undefined;
|
6574
6429
|
placeholder?: TranslationConfig | undefined;
|
6575
6430
|
helperText?: TranslationConfig | undefined;
|
6576
6431
|
hideLabel?: boolean | undefined;
|
@@ -6605,7 +6460,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6605
6460
|
type: "DISPLAY_ON_REVIEW";
|
6606
6461
|
conditional: import(".").JSONSchema;
|
6607
6462
|
})[] | undefined;
|
6608
|
-
secured?: boolean | undefined;
|
6609
6463
|
placeholder?: {
|
6610
6464
|
id: string;
|
6611
6465
|
description: string;
|
@@ -6629,7 +6483,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6629
6483
|
}>>;
|
6630
6484
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
6631
6485
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6632
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6633
6486
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6634
6487
|
id: string;
|
6635
6488
|
description: string;
|
@@ -6743,7 +6596,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6743
6596
|
type: "DISPLAY_ON_REVIEW";
|
6744
6597
|
conditional: import(".").JSONSchema;
|
6745
6598
|
})[] | undefined;
|
6746
|
-
secured?: boolean | undefined;
|
6747
6599
|
placeholder?: TranslationConfig | undefined;
|
6748
6600
|
helperText?: TranslationConfig | undefined;
|
6749
6601
|
hideLabel?: boolean | undefined;
|
@@ -6782,7 +6634,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6782
6634
|
type: "DISPLAY_ON_REVIEW";
|
6783
6635
|
conditional: import(".").JSONSchema;
|
6784
6636
|
})[] | undefined;
|
6785
|
-
secured?: boolean | undefined;
|
6786
6637
|
placeholder?: {
|
6787
6638
|
id: string;
|
6788
6639
|
description: string;
|
@@ -6822,7 +6673,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6822
6673
|
}>>;
|
6823
6674
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
6824
6675
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6825
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6826
6676
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6827
6677
|
id: string;
|
6828
6678
|
description: string;
|
@@ -6882,7 +6732,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6882
6732
|
type: "DISPLAY_ON_REVIEW";
|
6883
6733
|
conditional: import(".").JSONSchema;
|
6884
6734
|
})[] | undefined;
|
6885
|
-
secured?: boolean | undefined;
|
6886
6735
|
placeholder?: TranslationConfig | undefined;
|
6887
6736
|
helperText?: TranslationConfig | undefined;
|
6888
6737
|
hideLabel?: boolean | undefined;
|
@@ -6917,7 +6766,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6917
6766
|
type: "DISPLAY_ON_REVIEW";
|
6918
6767
|
conditional: import(".").JSONSchema;
|
6919
6768
|
})[] | undefined;
|
6920
|
-
secured?: boolean | undefined;
|
6921
6769
|
placeholder?: {
|
6922
6770
|
id: string;
|
6923
6771
|
description: string;
|
@@ -6941,7 +6789,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6941
6789
|
}>>;
|
6942
6790
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
6943
6791
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6944
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6945
6792
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6946
6793
|
id: string;
|
6947
6794
|
description: string;
|
@@ -7027,7 +6874,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7027
6874
|
type: "DISPLAY_ON_REVIEW";
|
7028
6875
|
conditional: import(".").JSONSchema;
|
7029
6876
|
})[] | undefined;
|
7030
|
-
secured?: boolean | undefined;
|
7031
6877
|
placeholder?: TranslationConfig | undefined;
|
7032
6878
|
helperText?: TranslationConfig | undefined;
|
7033
6879
|
hideLabel?: boolean | undefined;
|
@@ -7068,7 +6914,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7068
6914
|
type: "DISPLAY_ON_REVIEW";
|
7069
6915
|
conditional: import(".").JSONSchema;
|
7070
6916
|
})[] | undefined;
|
7071
|
-
secured?: boolean | undefined;
|
7072
6917
|
placeholder?: {
|
7073
6918
|
id: string;
|
7074
6919
|
description: string;
|
@@ -7092,7 +6937,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7092
6937
|
}>>;
|
7093
6938
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
7094
6939
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7095
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7096
6940
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7097
6941
|
id: string;
|
7098
6942
|
description: string;
|
@@ -7151,7 +6995,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7151
6995
|
type: "DISPLAY_ON_REVIEW";
|
7152
6996
|
conditional: import(".").JSONSchema;
|
7153
6997
|
})[] | undefined;
|
7154
|
-
secured?: boolean | undefined;
|
7155
6998
|
placeholder?: TranslationConfig | undefined;
|
7156
6999
|
helperText?: TranslationConfig | undefined;
|
7157
7000
|
hideLabel?: boolean | undefined;
|
@@ -7185,7 +7028,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7185
7028
|
type: "DISPLAY_ON_REVIEW";
|
7186
7029
|
conditional: import(".").JSONSchema;
|
7187
7030
|
})[] | undefined;
|
7188
|
-
secured?: boolean | undefined;
|
7189
7031
|
placeholder?: {
|
7190
7032
|
id: string;
|
7191
7033
|
description: string;
|
@@ -7208,7 +7050,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7208
7050
|
}>>;
|
7209
7051
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
7210
7052
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7211
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7212
7053
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7213
7054
|
id: string;
|
7214
7055
|
description: string;
|
@@ -7268,7 +7109,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7268
7109
|
type: "DISPLAY_ON_REVIEW";
|
7269
7110
|
conditional: import(".").JSONSchema;
|
7270
7111
|
})[] | undefined;
|
7271
|
-
secured?: boolean | undefined;
|
7272
7112
|
placeholder?: TranslationConfig | undefined;
|
7273
7113
|
helperText?: TranslationConfig | undefined;
|
7274
7114
|
hideLabel?: boolean | undefined;
|
@@ -7303,7 +7143,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7303
7143
|
type: "DISPLAY_ON_REVIEW";
|
7304
7144
|
conditional: import(".").JSONSchema;
|
7305
7145
|
})[] | undefined;
|
7306
|
-
secured?: boolean | undefined;
|
7307
7146
|
placeholder?: {
|
7308
7147
|
id: string;
|
7309
7148
|
description: string;
|
@@ -7327,7 +7166,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7327
7166
|
}>>;
|
7328
7167
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
7329
7168
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7330
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7331
7169
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7332
7170
|
id: string;
|
7333
7171
|
description: string;
|
@@ -7387,7 +7225,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7387
7225
|
type: "DISPLAY_ON_REVIEW";
|
7388
7226
|
conditional: import(".").JSONSchema;
|
7389
7227
|
})[] | undefined;
|
7390
|
-
secured?: boolean | undefined;
|
7391
7228
|
placeholder?: TranslationConfig | undefined;
|
7392
7229
|
helperText?: TranslationConfig | undefined;
|
7393
7230
|
hideLabel?: boolean | undefined;
|
@@ -7422,7 +7259,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7422
7259
|
type: "DISPLAY_ON_REVIEW";
|
7423
7260
|
conditional: import(".").JSONSchema;
|
7424
7261
|
})[] | undefined;
|
7425
|
-
secured?: boolean | undefined;
|
7426
7262
|
placeholder?: {
|
7427
7263
|
id: string;
|
7428
7264
|
description: string;
|
@@ -7446,7 +7282,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7446
7282
|
}>>;
|
7447
7283
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
7448
7284
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7449
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7450
7285
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7451
7286
|
id: string;
|
7452
7287
|
description: string;
|
@@ -7506,7 +7341,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7506
7341
|
type: "DISPLAY_ON_REVIEW";
|
7507
7342
|
conditional: import(".").JSONSchema;
|
7508
7343
|
})[] | undefined;
|
7509
|
-
secured?: boolean | undefined;
|
7510
7344
|
placeholder?: TranslationConfig | undefined;
|
7511
7345
|
helperText?: TranslationConfig | undefined;
|
7512
7346
|
hideLabel?: boolean | undefined;
|
@@ -7541,7 +7375,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7541
7375
|
type: "DISPLAY_ON_REVIEW";
|
7542
7376
|
conditional: import(".").JSONSchema;
|
7543
7377
|
})[] | undefined;
|
7544
|
-
secured?: boolean | undefined;
|
7545
7378
|
placeholder?: {
|
7546
7379
|
id: string;
|
7547
7380
|
description: string;
|
@@ -7565,7 +7398,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7565
7398
|
}>>;
|
7566
7399
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
7567
7400
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7568
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7569
7401
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7570
7402
|
id: string;
|
7571
7403
|
description: string;
|
@@ -7645,7 +7477,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7645
7477
|
type: "DISPLAY_ON_REVIEW";
|
7646
7478
|
conditional: import(".").JSONSchema;
|
7647
7479
|
})[] | undefined;
|
7648
|
-
secured?: boolean | undefined;
|
7649
7480
|
placeholder?: TranslationConfig | undefined;
|
7650
7481
|
helperText?: TranslationConfig | undefined;
|
7651
7482
|
hideLabel?: boolean | undefined;
|
@@ -7685,7 +7516,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7685
7516
|
type: "DISPLAY_ON_REVIEW";
|
7686
7517
|
conditional: import(".").JSONSchema;
|
7687
7518
|
})[] | undefined;
|
7688
|
-
secured?: boolean | undefined;
|
7689
7519
|
placeholder?: {
|
7690
7520
|
id: string;
|
7691
7521
|
description: string;
|
@@ -7713,7 +7543,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7713
7543
|
}>>;
|
7714
7544
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
7715
7545
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7716
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7717
7546
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7718
7547
|
id: string;
|
7719
7548
|
description: string;
|
@@ -7780,7 +7609,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7780
7609
|
type: "DISPLAY_ON_REVIEW";
|
7781
7610
|
conditional: import(".").JSONSchema;
|
7782
7611
|
})[] | undefined;
|
7783
|
-
secured?: boolean | undefined;
|
7784
7612
|
placeholder?: TranslationConfig | undefined;
|
7785
7613
|
helperText?: TranslationConfig | undefined;
|
7786
7614
|
hideLabel?: boolean | undefined;
|
@@ -7818,7 +7646,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7818
7646
|
type: "DISPLAY_ON_REVIEW";
|
7819
7647
|
conditional: import(".").JSONSchema;
|
7820
7648
|
})[] | undefined;
|
7821
|
-
secured?: boolean | undefined;
|
7822
7649
|
placeholder?: {
|
7823
7650
|
id: string;
|
7824
7651
|
description: string;
|
@@ -7845,7 +7672,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7845
7672
|
}>>;
|
7846
7673
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
7847
7674
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7848
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7849
7675
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7850
7676
|
id: string;
|
7851
7677
|
description: string;
|
@@ -7956,7 +7782,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7956
7782
|
type: "DISPLAY_ON_REVIEW";
|
7957
7783
|
conditional: import(".").JSONSchema;
|
7958
7784
|
})[] | undefined;
|
7959
|
-
secured?: boolean | undefined;
|
7960
7785
|
placeholder?: TranslationConfig | undefined;
|
7961
7786
|
helperText?: TranslationConfig | undefined;
|
7962
7787
|
hideLabel?: boolean | undefined;
|
@@ -8004,7 +7829,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8004
7829
|
type: "DISPLAY_ON_REVIEW";
|
8005
7830
|
conditional: import(".").JSONSchema;
|
8006
7831
|
})[] | undefined;
|
8007
|
-
secured?: boolean | undefined;
|
8008
7832
|
placeholder?: {
|
8009
7833
|
id: string;
|
8010
7834
|
description: string;
|
@@ -8037,7 +7861,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8037
7861
|
}>>;
|
8038
7862
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
8039
7863
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
8040
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
8041
7864
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
8042
7865
|
id: string;
|
8043
7866
|
description: string;
|
@@ -8172,7 +7995,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8172
7995
|
type: "DISPLAY_ON_REVIEW";
|
8173
7996
|
conditional: import(".").JSONSchema;
|
8174
7997
|
})[] | undefined;
|
8175
|
-
secured?: boolean | undefined;
|
8176
7998
|
placeholder?: TranslationConfig | undefined;
|
8177
7999
|
helperText?: TranslationConfig | undefined;
|
8178
8000
|
hideLabel?: boolean | undefined;
|
@@ -8227,7 +8049,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8227
8049
|
type: "DISPLAY_ON_REVIEW";
|
8228
8050
|
conditional: import(".").JSONSchema;
|
8229
8051
|
})[] | undefined;
|
8230
|
-
secured?: boolean | undefined;
|
8231
8052
|
placeholder?: {
|
8232
8053
|
id: string;
|
8233
8054
|
description: string;
|