@opencrvs/toolkit 1.8.0-rc.fe7c504 → 1.8.0-rc.fe8c092
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 +10468 -1335
- package/dist/commons/events/ActionConfig.d.ts +0 -2600
- package/dist/commons/events/ActionDocument.d.ts +1087 -1081
- package/dist/commons/events/ActionInput.d.ts +726 -726
- package/dist/commons/events/ActionType.d.ts +2 -0
- package/dist/commons/events/AdvancedSearchConfig.d.ts +18 -222
- package/dist/commons/events/CompositeFieldValue.d.ts +6 -6
- package/dist/commons/events/CountryConfigQueryInput.d.ts +572 -1234
- package/dist/commons/events/CreatedAtLocation.d.ts +2 -1
- package/dist/commons/events/Draft.d.ts +77 -77
- package/dist/commons/events/EventConfig.d.ts +0 -1458
- package/dist/commons/events/EventDocument.d.ts +711 -706
- package/dist/commons/events/EventIndex.d.ts +151 -135
- package/dist/commons/events/EventMetadata.d.ts +29 -38
- package/dist/commons/events/FieldConfig.d.ts +0 -178
- 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 -1092
- package/dist/commons/events/PageConfig.d.ts +0 -260
- package/dist/commons/events/User.d.ts +3 -6
- package/dist/commons/events/WorkqueueConfig.d.ts +1028 -2038
- package/dist/commons/events/defineConfig.d.ts +0 -294
- package/dist/commons/events/field.d.ts +0 -5
- package/dist/commons/events/test.utils.d.ts +19 -30
- package/dist/commons/events/transactions.d.ts +1 -1
- package/dist/commons/events/utils.d.ts +15 -440
- package/dist/conditionals/index.js +18 -22
- package/dist/events/index.js +185 -303
- package/dist/scopes/index.d.ts +6 -92
- package/dist/scopes/index.js +9 -38
- package/package.json +3 -3
@@ -8,25 +8,6 @@ export declare const FieldReference: z.ZodObject<{
|
|
8
8
|
}, {
|
9
9
|
$$field: string;
|
10
10
|
}>;
|
11
|
-
export declare const ValidationConfig: z.ZodObject<{
|
12
|
-
validator: z.ZodType<import(".").JSONSchema, z.ZodTypeDef, import(".").JSONSchema>;
|
13
|
-
message: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
14
|
-
id: string;
|
15
|
-
description: string;
|
16
|
-
defaultMessage: string;
|
17
|
-
}>;
|
18
|
-
}, "strip", z.ZodTypeAny, {
|
19
|
-
message: TranslationConfig;
|
20
|
-
validator: import(".").JSONSchema;
|
21
|
-
}, {
|
22
|
-
message: {
|
23
|
-
id: string;
|
24
|
-
description: string;
|
25
|
-
defaultMessage: string;
|
26
|
-
};
|
27
|
-
validator: import(".").JSONSchema;
|
28
|
-
}>;
|
29
|
-
export type ValidationConfig = z.infer<typeof ValidationConfig>;
|
30
11
|
declare const BaseField: z.ZodObject<{
|
31
12
|
id: z.ZodString;
|
32
13
|
parent: z.ZodOptional<z.ZodObject<{
|
@@ -38,7 +19,6 @@ declare const BaseField: z.ZodObject<{
|
|
38
19
|
}>>;
|
39
20
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
40
21
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
41
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
42
22
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
43
23
|
id: string;
|
44
24
|
description: string;
|
@@ -94,7 +74,6 @@ declare const BaseField: z.ZodObject<{
|
|
94
74
|
type: "DISPLAY_ON_REVIEW";
|
95
75
|
conditional: import(".").JSONSchema;
|
96
76
|
})[] | undefined;
|
97
|
-
secured?: boolean | undefined;
|
98
77
|
placeholder?: TranslationConfig | undefined;
|
99
78
|
helperText?: TranslationConfig | undefined;
|
100
79
|
hideLabel?: boolean | undefined;
|
@@ -127,7 +106,6 @@ declare const BaseField: z.ZodObject<{
|
|
127
106
|
type: "DISPLAY_ON_REVIEW";
|
128
107
|
conditional: import(".").JSONSchema;
|
129
108
|
})[] | undefined;
|
130
|
-
secured?: boolean | undefined;
|
131
109
|
placeholder?: {
|
132
110
|
id: string;
|
133
111
|
description: string;
|
@@ -152,7 +130,6 @@ declare const Divider: z.ZodObject<z.objectUtil.extendShape<{
|
|
152
130
|
}>>;
|
153
131
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
154
132
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
155
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
156
133
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
157
134
|
id: string;
|
158
135
|
description: string;
|
@@ -211,7 +188,6 @@ declare const Divider: z.ZodObject<z.objectUtil.extendShape<{
|
|
211
188
|
type: "DISPLAY_ON_REVIEW";
|
212
189
|
conditional: import(".").JSONSchema;
|
213
190
|
})[] | undefined;
|
214
|
-
secured?: boolean | undefined;
|
215
191
|
placeholder?: TranslationConfig | undefined;
|
216
192
|
helperText?: TranslationConfig | undefined;
|
217
193
|
hideLabel?: boolean | undefined;
|
@@ -245,7 +221,6 @@ declare const Divider: z.ZodObject<z.objectUtil.extendShape<{
|
|
245
221
|
type: "DISPLAY_ON_REVIEW";
|
246
222
|
conditional: import(".").JSONSchema;
|
247
223
|
})[] | undefined;
|
248
|
-
secured?: boolean | undefined;
|
249
224
|
placeholder?: {
|
250
225
|
id: string;
|
251
226
|
description: string;
|
@@ -270,7 +245,6 @@ declare const TextField: z.ZodObject<z.objectUtil.extendShape<{
|
|
270
245
|
}>>;
|
271
246
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
272
247
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
273
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
274
248
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
275
249
|
id: string;
|
276
250
|
description: string;
|
@@ -362,7 +336,6 @@ declare const TextField: z.ZodObject<z.objectUtil.extendShape<{
|
|
362
336
|
type: "DISPLAY_ON_REVIEW";
|
363
337
|
conditional: import(".").JSONSchema;
|
364
338
|
})[] | undefined;
|
365
|
-
secured?: boolean | undefined;
|
366
339
|
placeholder?: TranslationConfig | undefined;
|
367
340
|
helperText?: TranslationConfig | undefined;
|
368
341
|
hideLabel?: boolean | undefined;
|
@@ -403,7 +376,6 @@ declare const TextField: z.ZodObject<z.objectUtil.extendShape<{
|
|
403
376
|
type: "DISPLAY_ON_REVIEW";
|
404
377
|
conditional: import(".").JSONSchema;
|
405
378
|
})[] | undefined;
|
406
|
-
secured?: boolean | undefined;
|
407
379
|
placeholder?: {
|
408
380
|
id: string;
|
409
381
|
description: string;
|
@@ -443,7 +415,6 @@ declare const NumberField: z.ZodObject<z.objectUtil.extendShape<{
|
|
443
415
|
}>>;
|
444
416
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
445
417
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
446
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
447
418
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
448
419
|
id: string;
|
449
420
|
description: string;
|
@@ -535,7 +506,6 @@ declare const NumberField: z.ZodObject<z.objectUtil.extendShape<{
|
|
535
506
|
type: "DISPLAY_ON_REVIEW";
|
536
507
|
conditional: import(".").JSONSchema;
|
537
508
|
})[] | undefined;
|
538
|
-
secured?: boolean | undefined;
|
539
509
|
placeholder?: TranslationConfig | undefined;
|
540
510
|
helperText?: TranslationConfig | undefined;
|
541
511
|
hideLabel?: boolean | undefined;
|
@@ -576,7 +546,6 @@ declare const NumberField: z.ZodObject<z.objectUtil.extendShape<{
|
|
576
546
|
type: "DISPLAY_ON_REVIEW";
|
577
547
|
conditional: import(".").JSONSchema;
|
578
548
|
})[] | undefined;
|
579
|
-
secured?: boolean | undefined;
|
580
549
|
placeholder?: {
|
581
550
|
id: string;
|
582
551
|
description: string;
|
@@ -615,7 +584,6 @@ declare const TextAreaField: z.ZodObject<z.objectUtil.extendShape<{
|
|
615
584
|
}>>;
|
616
585
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
617
586
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
618
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
619
587
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
620
588
|
id: string;
|
621
589
|
description: string;
|
@@ -710,7 +678,6 @@ declare const TextAreaField: z.ZodObject<z.objectUtil.extendShape<{
|
|
710
678
|
type: "DISPLAY_ON_REVIEW";
|
711
679
|
conditional: import(".").JSONSchema;
|
712
680
|
})[] | undefined;
|
713
|
-
secured?: boolean | undefined;
|
714
681
|
placeholder?: TranslationConfig | undefined;
|
715
682
|
helperText?: TranslationConfig | undefined;
|
716
683
|
hideLabel?: boolean | undefined;
|
@@ -752,7 +719,6 @@ declare const TextAreaField: z.ZodObject<z.objectUtil.extendShape<{
|
|
752
719
|
type: "DISPLAY_ON_REVIEW";
|
753
720
|
conditional: import(".").JSONSchema;
|
754
721
|
})[] | undefined;
|
755
|
-
secured?: boolean | undefined;
|
756
722
|
placeholder?: {
|
757
723
|
id: string;
|
758
724
|
description: string;
|
@@ -796,7 +762,6 @@ declare const SignatureField: z.ZodObject<z.objectUtil.extendShape<{
|
|
796
762
|
}>>;
|
797
763
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
798
764
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
799
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
800
765
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
801
766
|
id: string;
|
802
767
|
description: string;
|
@@ -876,7 +841,6 @@ declare const SignatureField: z.ZodObject<z.objectUtil.extendShape<{
|
|
876
841
|
type: "DISPLAY_ON_REVIEW";
|
877
842
|
conditional: import(".").JSONSchema;
|
878
843
|
})[] | undefined;
|
879
|
-
secured?: boolean | undefined;
|
880
844
|
placeholder?: TranslationConfig | undefined;
|
881
845
|
helperText?: TranslationConfig | undefined;
|
882
846
|
hideLabel?: boolean | undefined;
|
@@ -916,7 +880,6 @@ declare const SignatureField: z.ZodObject<z.objectUtil.extendShape<{
|
|
916
880
|
type: "DISPLAY_ON_REVIEW";
|
917
881
|
conditional: import(".").JSONSchema;
|
918
882
|
})[] | undefined;
|
919
|
-
secured?: boolean | undefined;
|
920
883
|
placeholder?: {
|
921
884
|
id: string;
|
922
885
|
description: string;
|
@@ -946,7 +909,6 @@ export declare const EmailField: z.ZodObject<z.objectUtil.extendShape<{
|
|
946
909
|
}>>;
|
947
910
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
948
911
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
949
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
950
912
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
951
913
|
id: string;
|
952
914
|
description: string;
|
@@ -1013,7 +975,6 @@ export declare const EmailField: z.ZodObject<z.objectUtil.extendShape<{
|
|
1013
975
|
type: "DISPLAY_ON_REVIEW";
|
1014
976
|
conditional: import(".").JSONSchema;
|
1015
977
|
})[] | undefined;
|
1016
|
-
secured?: boolean | undefined;
|
1017
978
|
placeholder?: TranslationConfig | undefined;
|
1018
979
|
helperText?: TranslationConfig | undefined;
|
1019
980
|
hideLabel?: boolean | undefined;
|
@@ -1051,7 +1012,6 @@ export declare const EmailField: z.ZodObject<z.objectUtil.extendShape<{
|
|
1051
1012
|
type: "DISPLAY_ON_REVIEW";
|
1052
1013
|
conditional: import(".").JSONSchema;
|
1053
1014
|
})[] | undefined;
|
1054
|
-
secured?: boolean | undefined;
|
1055
1015
|
placeholder?: {
|
1056
1016
|
id: string;
|
1057
1017
|
description: string;
|
@@ -1080,7 +1040,6 @@ declare const DateField: z.ZodObject<z.objectUtil.extendShape<{
|
|
1080
1040
|
}>>;
|
1081
1041
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
1082
1042
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
1083
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
1084
1043
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
1085
1044
|
id: string;
|
1086
1045
|
description: string;
|
@@ -1155,7 +1114,6 @@ declare const DateField: z.ZodObject<z.objectUtil.extendShape<{
|
|
1155
1114
|
type: "DISPLAY_ON_REVIEW";
|
1156
1115
|
conditional: import(".").JSONSchema;
|
1157
1116
|
})[] | undefined;
|
1158
|
-
secured?: boolean | undefined;
|
1159
1117
|
placeholder?: TranslationConfig | undefined;
|
1160
1118
|
helperText?: TranslationConfig | undefined;
|
1161
1119
|
hideLabel?: boolean | undefined;
|
@@ -1193,7 +1151,6 @@ declare const DateField: z.ZodObject<z.objectUtil.extendShape<{
|
|
1193
1151
|
type: "DISPLAY_ON_REVIEW";
|
1194
1152
|
conditional: import(".").JSONSchema;
|
1195
1153
|
})[] | undefined;
|
1196
|
-
secured?: boolean | undefined;
|
1197
1154
|
placeholder?: {
|
1198
1155
|
id: string;
|
1199
1156
|
description: string;
|
@@ -1226,7 +1183,6 @@ declare const DateRangeField: z.ZodObject<z.objectUtil.extendShape<{
|
|
1226
1183
|
}>>;
|
1227
1184
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
1228
1185
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
1229
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
1230
1186
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
1231
1187
|
id: string;
|
1232
1188
|
description: string;
|
@@ -1301,7 +1257,6 @@ declare const DateRangeField: z.ZodObject<z.objectUtil.extendShape<{
|
|
1301
1257
|
type: "DISPLAY_ON_REVIEW";
|
1302
1258
|
conditional: import(".").JSONSchema;
|
1303
1259
|
})[] | undefined;
|
1304
|
-
secured?: boolean | undefined;
|
1305
1260
|
placeholder?: TranslationConfig | undefined;
|
1306
1261
|
helperText?: TranslationConfig | undefined;
|
1307
1262
|
hideLabel?: boolean | undefined;
|
@@ -1339,7 +1294,6 @@ declare const DateRangeField: z.ZodObject<z.objectUtil.extendShape<{
|
|
1339
1294
|
type: "DISPLAY_ON_REVIEW";
|
1340
1295
|
conditional: import(".").JSONSchema;
|
1341
1296
|
})[] | undefined;
|
1342
|
-
secured?: boolean | undefined;
|
1343
1297
|
placeholder?: {
|
1344
1298
|
id: string;
|
1345
1299
|
description: string;
|
@@ -1374,7 +1328,6 @@ declare const Paragraph: z.ZodObject<z.objectUtil.extendShape<{
|
|
1374
1328
|
}>>;
|
1375
1329
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
1376
1330
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
1377
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
1378
1331
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
1379
1332
|
id: string;
|
1380
1333
|
description: string;
|
@@ -1456,7 +1409,6 @@ declare const Paragraph: z.ZodObject<z.objectUtil.extendShape<{
|
|
1456
1409
|
type: "DISPLAY_ON_REVIEW";
|
1457
1410
|
conditional: import(".").JSONSchema;
|
1458
1411
|
})[] | undefined;
|
1459
|
-
secured?: boolean | undefined;
|
1460
1412
|
placeholder?: TranslationConfig | undefined;
|
1461
1413
|
helperText?: TranslationConfig | undefined;
|
1462
1414
|
hideLabel?: boolean | undefined;
|
@@ -1491,7 +1443,6 @@ declare const Paragraph: z.ZodObject<z.objectUtil.extendShape<{
|
|
1491
1443
|
type: "DISPLAY_ON_REVIEW";
|
1492
1444
|
conditional: import(".").JSONSchema;
|
1493
1445
|
})[] | undefined;
|
1494
|
-
secured?: boolean | undefined;
|
1495
1446
|
placeholder?: {
|
1496
1447
|
id: string;
|
1497
1448
|
description: string;
|
@@ -1522,7 +1473,6 @@ declare const PageHeader: z.ZodObject<z.objectUtil.extendShape<{
|
|
1522
1473
|
}>>;
|
1523
1474
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
1524
1475
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
1525
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
1526
1476
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
1527
1477
|
id: string;
|
1528
1478
|
description: string;
|
@@ -1582,7 +1532,6 @@ declare const PageHeader: z.ZodObject<z.objectUtil.extendShape<{
|
|
1582
1532
|
type: "DISPLAY_ON_REVIEW";
|
1583
1533
|
conditional: import(".").JSONSchema;
|
1584
1534
|
})[] | undefined;
|
1585
|
-
secured?: boolean | undefined;
|
1586
1535
|
placeholder?: TranslationConfig | undefined;
|
1587
1536
|
helperText?: TranslationConfig | undefined;
|
1588
1537
|
hideLabel?: boolean | undefined;
|
@@ -1617,7 +1566,6 @@ declare const PageHeader: z.ZodObject<z.objectUtil.extendShape<{
|
|
1617
1566
|
type: "DISPLAY_ON_REVIEW";
|
1618
1567
|
conditional: import(".").JSONSchema;
|
1619
1568
|
})[] | undefined;
|
1620
|
-
secured?: boolean | undefined;
|
1621
1569
|
placeholder?: {
|
1622
1570
|
id: string;
|
1623
1571
|
description: string;
|
@@ -1643,7 +1591,6 @@ declare const File: z.ZodObject<z.objectUtil.extendShape<{
|
|
1643
1591
|
}>>;
|
1644
1592
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
1645
1593
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
1646
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
1647
1594
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
1648
1595
|
id: string;
|
1649
1596
|
description: string;
|
@@ -1757,7 +1704,6 @@ declare const File: z.ZodObject<z.objectUtil.extendShape<{
|
|
1757
1704
|
type: "DISPLAY_ON_REVIEW";
|
1758
1705
|
conditional: import(".").JSONSchema;
|
1759
1706
|
})[] | undefined;
|
1760
|
-
secured?: boolean | undefined;
|
1761
1707
|
placeholder?: TranslationConfig | undefined;
|
1762
1708
|
helperText?: TranslationConfig | undefined;
|
1763
1709
|
hideLabel?: boolean | undefined;
|
@@ -1796,7 +1742,6 @@ declare const File: z.ZodObject<z.objectUtil.extendShape<{
|
|
1796
1742
|
type: "DISPLAY_ON_REVIEW";
|
1797
1743
|
conditional: import(".").JSONSchema;
|
1798
1744
|
})[] | undefined;
|
1799
|
-
secured?: boolean | undefined;
|
1800
1745
|
placeholder?: {
|
1801
1746
|
id: string;
|
1802
1747
|
description: string;
|
@@ -1856,7 +1801,6 @@ declare const RadioGroup: z.ZodObject<z.objectUtil.extendShape<{
|
|
1856
1801
|
}>>;
|
1857
1802
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
1858
1803
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
1859
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
1860
1804
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
1861
1805
|
id: string;
|
1862
1806
|
description: string;
|
@@ -1955,7 +1899,6 @@ declare const RadioGroup: z.ZodObject<z.objectUtil.extendShape<{
|
|
1955
1899
|
type: "DISPLAY_ON_REVIEW";
|
1956
1900
|
conditional: import(".").JSONSchema;
|
1957
1901
|
})[] | undefined;
|
1958
|
-
secured?: boolean | undefined;
|
1959
1902
|
placeholder?: TranslationConfig | undefined;
|
1960
1903
|
helperText?: TranslationConfig | undefined;
|
1961
1904
|
hideLabel?: boolean | undefined;
|
@@ -2003,7 +1946,6 @@ declare const RadioGroup: z.ZodObject<z.objectUtil.extendShape<{
|
|
2003
1946
|
type: "DISPLAY_ON_REVIEW";
|
2004
1947
|
conditional: import(".").JSONSchema;
|
2005
1948
|
})[] | undefined;
|
2006
|
-
secured?: boolean | undefined;
|
2007
1949
|
placeholder?: {
|
2008
1950
|
id: string;
|
2009
1951
|
description: string;
|
@@ -2034,7 +1976,6 @@ declare const BulletList: z.ZodObject<z.objectUtil.extendShape<{
|
|
2034
1976
|
}>>;
|
2035
1977
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
2036
1978
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2037
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2038
1979
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2039
1980
|
id: string;
|
2040
1981
|
description: string;
|
@@ -2122,7 +2063,6 @@ declare const BulletList: z.ZodObject<z.objectUtil.extendShape<{
|
|
2122
2063
|
type: "DISPLAY_ON_REVIEW";
|
2123
2064
|
conditional: import(".").JSONSchema;
|
2124
2065
|
})[] | undefined;
|
2125
|
-
secured?: boolean | undefined;
|
2126
2066
|
placeholder?: TranslationConfig | undefined;
|
2127
2067
|
helperText?: TranslationConfig | undefined;
|
2128
2068
|
hideLabel?: boolean | undefined;
|
@@ -2162,7 +2102,6 @@ declare const BulletList: z.ZodObject<z.objectUtil.extendShape<{
|
|
2162
2102
|
type: "DISPLAY_ON_REVIEW";
|
2163
2103
|
conditional: import(".").JSONSchema;
|
2164
2104
|
})[] | undefined;
|
2165
|
-
secured?: boolean | undefined;
|
2166
2105
|
placeholder?: {
|
2167
2106
|
id: string;
|
2168
2107
|
description: string;
|
@@ -2193,7 +2132,6 @@ declare const Select: z.ZodObject<z.objectUtil.extendShape<{
|
|
2193
2132
|
}>>;
|
2194
2133
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
2195
2134
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2196
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2197
2135
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2198
2136
|
id: string;
|
2199
2137
|
description: string;
|
@@ -2275,7 +2213,6 @@ declare const Select: z.ZodObject<z.objectUtil.extendShape<{
|
|
2275
2213
|
type: "DISPLAY_ON_REVIEW";
|
2276
2214
|
conditional: import(".").JSONSchema;
|
2277
2215
|
})[] | undefined;
|
2278
|
-
secured?: boolean | undefined;
|
2279
2216
|
placeholder?: TranslationConfig | undefined;
|
2280
2217
|
helperText?: TranslationConfig | undefined;
|
2281
2218
|
hideLabel?: boolean | undefined;
|
@@ -2318,7 +2255,6 @@ declare const Select: z.ZodObject<z.objectUtil.extendShape<{
|
|
2318
2255
|
type: "DISPLAY_ON_REVIEW";
|
2319
2256
|
conditional: import(".").JSONSchema;
|
2320
2257
|
})[] | undefined;
|
2321
|
-
secured?: boolean | undefined;
|
2322
2258
|
placeholder?: {
|
2323
2259
|
id: string;
|
2324
2260
|
description: string;
|
@@ -2343,7 +2279,6 @@ declare const NameField: z.ZodObject<z.objectUtil.extendShape<{
|
|
2343
2279
|
}>>;
|
2344
2280
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
2345
2281
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2346
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2347
2282
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2348
2283
|
id: string;
|
2349
2284
|
description: string;
|
@@ -2441,7 +2376,6 @@ declare const NameField: z.ZodObject<z.objectUtil.extendShape<{
|
|
2441
2376
|
type: "DISPLAY_ON_REVIEW";
|
2442
2377
|
conditional: import(".").JSONSchema;
|
2443
2378
|
})[] | undefined;
|
2444
|
-
secured?: boolean | undefined;
|
2445
2379
|
placeholder?: TranslationConfig | undefined;
|
2446
2380
|
helperText?: TranslationConfig | undefined;
|
2447
2381
|
hideLabel?: boolean | undefined;
|
@@ -2484,7 +2418,6 @@ declare const NameField: z.ZodObject<z.objectUtil.extendShape<{
|
|
2484
2418
|
type: "DISPLAY_ON_REVIEW";
|
2485
2419
|
conditional: import(".").JSONSchema;
|
2486
2420
|
})[] | undefined;
|
2487
|
-
secured?: boolean | undefined;
|
2488
2421
|
placeholder?: {
|
2489
2422
|
id: string;
|
2490
2423
|
description: string;
|
@@ -2525,7 +2458,6 @@ declare const PhoneField: z.ZodObject<z.objectUtil.extendShape<{
|
|
2525
2458
|
}>>;
|
2526
2459
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
2527
2460
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2528
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2529
2461
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2530
2462
|
id: string;
|
2531
2463
|
description: string;
|
@@ -2585,7 +2517,6 @@ declare const PhoneField: z.ZodObject<z.objectUtil.extendShape<{
|
|
2585
2517
|
type: "DISPLAY_ON_REVIEW";
|
2586
2518
|
conditional: import(".").JSONSchema;
|
2587
2519
|
})[] | undefined;
|
2588
|
-
secured?: boolean | undefined;
|
2589
2520
|
placeholder?: TranslationConfig | undefined;
|
2590
2521
|
helperText?: TranslationConfig | undefined;
|
2591
2522
|
hideLabel?: boolean | undefined;
|
@@ -2620,7 +2551,6 @@ declare const PhoneField: z.ZodObject<z.objectUtil.extendShape<{
|
|
2620
2551
|
type: "DISPLAY_ON_REVIEW";
|
2621
2552
|
conditional: import(".").JSONSchema;
|
2622
2553
|
})[] | undefined;
|
2623
|
-
secured?: boolean | undefined;
|
2624
2554
|
placeholder?: {
|
2625
2555
|
id: string;
|
2626
2556
|
description: string;
|
@@ -2645,7 +2575,6 @@ declare const IdField: z.ZodObject<z.objectUtil.extendShape<{
|
|
2645
2575
|
}>>;
|
2646
2576
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
2647
2577
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2648
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2649
2578
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2650
2579
|
id: string;
|
2651
2580
|
description: string;
|
@@ -2705,7 +2634,6 @@ declare const IdField: z.ZodObject<z.objectUtil.extendShape<{
|
|
2705
2634
|
type: "DISPLAY_ON_REVIEW";
|
2706
2635
|
conditional: import(".").JSONSchema;
|
2707
2636
|
})[] | undefined;
|
2708
|
-
secured?: boolean | undefined;
|
2709
2637
|
placeholder?: TranslationConfig | undefined;
|
2710
2638
|
helperText?: TranslationConfig | undefined;
|
2711
2639
|
hideLabel?: boolean | undefined;
|
@@ -2740,7 +2668,6 @@ declare const IdField: z.ZodObject<z.objectUtil.extendShape<{
|
|
2740
2668
|
type: "DISPLAY_ON_REVIEW";
|
2741
2669
|
conditional: import(".").JSONSchema;
|
2742
2670
|
})[] | undefined;
|
2743
|
-
secured?: boolean | undefined;
|
2744
2671
|
placeholder?: {
|
2745
2672
|
id: string;
|
2746
2673
|
description: string;
|
@@ -2765,7 +2692,6 @@ declare const Checkbox: z.ZodObject<z.objectUtil.extendShape<{
|
|
2765
2692
|
}>>;
|
2766
2693
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
2767
2694
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2768
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2769
2695
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2770
2696
|
id: string;
|
2771
2697
|
description: string;
|
@@ -2825,7 +2751,6 @@ declare const Checkbox: z.ZodObject<z.objectUtil.extendShape<{
|
|
2825
2751
|
type: "DISPLAY_ON_REVIEW";
|
2826
2752
|
conditional: import(".").JSONSchema;
|
2827
2753
|
})[] | undefined;
|
2828
|
-
secured?: boolean | undefined;
|
2829
2754
|
placeholder?: TranslationConfig | undefined;
|
2830
2755
|
helperText?: TranslationConfig | undefined;
|
2831
2756
|
hideLabel?: boolean | undefined;
|
@@ -2860,7 +2785,6 @@ declare const Checkbox: z.ZodObject<z.objectUtil.extendShape<{
|
|
2860
2785
|
type: "DISPLAY_ON_REVIEW";
|
2861
2786
|
conditional: import(".").JSONSchema;
|
2862
2787
|
})[] | undefined;
|
2863
|
-
secured?: boolean | undefined;
|
2864
2788
|
placeholder?: {
|
2865
2789
|
id: string;
|
2866
2790
|
description: string;
|
@@ -2886,7 +2810,6 @@ declare const Country: z.ZodObject<z.objectUtil.extendShape<{
|
|
2886
2810
|
}>>;
|
2887
2811
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
2888
2812
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2889
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2890
2813
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2891
2814
|
id: string;
|
2892
2815
|
description: string;
|
@@ -2946,7 +2869,6 @@ declare const Country: z.ZodObject<z.objectUtil.extendShape<{
|
|
2946
2869
|
type: "DISPLAY_ON_REVIEW";
|
2947
2870
|
conditional: import(".").JSONSchema;
|
2948
2871
|
})[] | undefined;
|
2949
|
-
secured?: boolean | undefined;
|
2950
2872
|
placeholder?: TranslationConfig | undefined;
|
2951
2873
|
helperText?: TranslationConfig | undefined;
|
2952
2874
|
hideLabel?: boolean | undefined;
|
@@ -2981,7 +2903,6 @@ declare const Country: z.ZodObject<z.objectUtil.extendShape<{
|
|
2981
2903
|
type: "DISPLAY_ON_REVIEW";
|
2982
2904
|
conditional: import(".").JSONSchema;
|
2983
2905
|
})[] | undefined;
|
2984
|
-
secured?: boolean | undefined;
|
2985
2906
|
placeholder?: {
|
2986
2907
|
id: string;
|
2987
2908
|
description: string;
|
@@ -3028,7 +2949,6 @@ declare const AdministrativeArea: z.ZodObject<z.objectUtil.extendShape<{
|
|
3028
2949
|
}>>;
|
3029
2950
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
3030
2951
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
3031
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
3032
2952
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
3033
2953
|
id: string;
|
3034
2954
|
description: string;
|
@@ -3114,7 +3034,6 @@ declare const AdministrativeArea: z.ZodObject<z.objectUtil.extendShape<{
|
|
3114
3034
|
type: "DISPLAY_ON_REVIEW";
|
3115
3035
|
conditional: import(".").JSONSchema;
|
3116
3036
|
})[] | undefined;
|
3117
|
-
secured?: boolean | undefined;
|
3118
3037
|
placeholder?: TranslationConfig | undefined;
|
3119
3038
|
helperText?: TranslationConfig | undefined;
|
3120
3039
|
hideLabel?: boolean | undefined;
|
@@ -3155,7 +3074,6 @@ declare const AdministrativeArea: z.ZodObject<z.objectUtil.extendShape<{
|
|
3155
3074
|
type: "DISPLAY_ON_REVIEW";
|
3156
3075
|
conditional: import(".").JSONSchema;
|
3157
3076
|
})[] | undefined;
|
3158
|
-
secured?: boolean | undefined;
|
3159
3077
|
placeholder?: {
|
3160
3078
|
id: string;
|
3161
3079
|
description: string;
|
@@ -3181,7 +3099,6 @@ declare const Location: z.ZodObject<z.objectUtil.extendShape<{
|
|
3181
3099
|
}>>;
|
3182
3100
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
3183
3101
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
3184
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
3185
3102
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
3186
3103
|
id: string;
|
3187
3104
|
description: string;
|
@@ -3241,7 +3158,6 @@ declare const Location: z.ZodObject<z.objectUtil.extendShape<{
|
|
3241
3158
|
type: "DISPLAY_ON_REVIEW";
|
3242
3159
|
conditional: import(".").JSONSchema;
|
3243
3160
|
})[] | undefined;
|
3244
|
-
secured?: boolean | undefined;
|
3245
3161
|
placeholder?: TranslationConfig | undefined;
|
3246
3162
|
helperText?: TranslationConfig | undefined;
|
3247
3163
|
hideLabel?: boolean | undefined;
|
@@ -3276,7 +3192,6 @@ declare const Location: z.ZodObject<z.objectUtil.extendShape<{
|
|
3276
3192
|
type: "DISPLAY_ON_REVIEW";
|
3277
3193
|
conditional: import(".").JSONSchema;
|
3278
3194
|
})[] | undefined;
|
3279
|
-
secured?: boolean | undefined;
|
3280
3195
|
placeholder?: {
|
3281
3196
|
id: string;
|
3282
3197
|
description: string;
|
@@ -3302,7 +3217,6 @@ declare const FileUploadWithOptions: z.ZodObject<z.objectUtil.extendShape<{
|
|
3302
3217
|
}>>;
|
3303
3218
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
3304
3219
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
3305
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
3306
3220
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
3307
3221
|
id: string;
|
3308
3222
|
description: string;
|
@@ -3413,7 +3327,6 @@ declare const FileUploadWithOptions: z.ZodObject<z.objectUtil.extendShape<{
|
|
3413
3327
|
type: "DISPLAY_ON_REVIEW";
|
3414
3328
|
conditional: import(".").JSONSchema;
|
3415
3329
|
})[] | undefined;
|
3416
|
-
secured?: boolean | undefined;
|
3417
3330
|
placeholder?: TranslationConfig | undefined;
|
3418
3331
|
helperText?: TranslationConfig | undefined;
|
3419
3332
|
hideLabel?: boolean | undefined;
|
@@ -3461,7 +3374,6 @@ declare const FileUploadWithOptions: z.ZodObject<z.objectUtil.extendShape<{
|
|
3461
3374
|
type: "DISPLAY_ON_REVIEW";
|
3462
3375
|
conditional: import(".").JSONSchema;
|
3463
3376
|
})[] | undefined;
|
3464
|
-
secured?: boolean | undefined;
|
3465
3377
|
placeholder?: {
|
3466
3378
|
id: string;
|
3467
3379
|
description: string;
|
@@ -3496,7 +3408,6 @@ declare const Facility: z.ZodObject<z.objectUtil.extendShape<{
|
|
3496
3408
|
}>>;
|
3497
3409
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
3498
3410
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
3499
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
3500
3411
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
3501
3412
|
id: string;
|
3502
3413
|
description: string;
|
@@ -3556,7 +3467,6 @@ declare const Facility: z.ZodObject<z.objectUtil.extendShape<{
|
|
3556
3467
|
type: "DISPLAY_ON_REVIEW";
|
3557
3468
|
conditional: import(".").JSONSchema;
|
3558
3469
|
})[] | undefined;
|
3559
|
-
secured?: boolean | undefined;
|
3560
3470
|
placeholder?: TranslationConfig | undefined;
|
3561
3471
|
helperText?: TranslationConfig | undefined;
|
3562
3472
|
hideLabel?: boolean | undefined;
|
@@ -3591,7 +3501,6 @@ declare const Facility: z.ZodObject<z.objectUtil.extendShape<{
|
|
3591
3501
|
type: "DISPLAY_ON_REVIEW";
|
3592
3502
|
conditional: import(".").JSONSchema;
|
3593
3503
|
})[] | undefined;
|
3594
|
-
secured?: boolean | undefined;
|
3595
3504
|
placeholder?: {
|
3596
3505
|
id: string;
|
3597
3506
|
description: string;
|
@@ -3617,7 +3526,6 @@ declare const Office: z.ZodObject<z.objectUtil.extendShape<{
|
|
3617
3526
|
}>>;
|
3618
3527
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
3619
3528
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
3620
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
3621
3529
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
3622
3530
|
id: string;
|
3623
3531
|
description: string;
|
@@ -3677,7 +3585,6 @@ declare const Office: z.ZodObject<z.objectUtil.extendShape<{
|
|
3677
3585
|
type: "DISPLAY_ON_REVIEW";
|
3678
3586
|
conditional: import(".").JSONSchema;
|
3679
3587
|
})[] | undefined;
|
3680
|
-
secured?: boolean | undefined;
|
3681
3588
|
placeholder?: TranslationConfig | undefined;
|
3682
3589
|
helperText?: TranslationConfig | undefined;
|
3683
3590
|
hideLabel?: boolean | undefined;
|
@@ -3712,7 +3619,6 @@ declare const Office: z.ZodObject<z.objectUtil.extendShape<{
|
|
3712
3619
|
type: "DISPLAY_ON_REVIEW";
|
3713
3620
|
conditional: import(".").JSONSchema;
|
3714
3621
|
})[] | undefined;
|
3715
|
-
secured?: boolean | undefined;
|
3716
3622
|
placeholder?: {
|
3717
3623
|
id: string;
|
3718
3624
|
description: string;
|
@@ -3738,7 +3644,6 @@ declare const Address: z.ZodObject<z.objectUtil.extendShape<{
|
|
3738
3644
|
}>>;
|
3739
3645
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
3740
3646
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
3741
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
3742
3647
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
3743
3648
|
id: string;
|
3744
3649
|
description: string;
|
@@ -3884,7 +3789,6 @@ declare const Address: z.ZodObject<z.objectUtil.extendShape<{
|
|
3884
3789
|
type: "DISPLAY_ON_REVIEW";
|
3885
3790
|
conditional: import(".").JSONSchema;
|
3886
3791
|
})[] | undefined;
|
3887
|
-
secured?: boolean | undefined;
|
3888
3792
|
placeholder?: TranslationConfig | undefined;
|
3889
3793
|
helperText?: TranslationConfig | undefined;
|
3890
3794
|
hideLabel?: boolean | undefined;
|
@@ -3947,7 +3851,6 @@ declare const Address: z.ZodObject<z.objectUtil.extendShape<{
|
|
3947
3851
|
type: "DISPLAY_ON_REVIEW";
|
3948
3852
|
conditional: import(".").JSONSchema;
|
3949
3853
|
})[] | undefined;
|
3950
|
-
secured?: boolean | undefined;
|
3951
3854
|
placeholder?: {
|
3952
3855
|
id: string;
|
3953
3856
|
description: string;
|
@@ -4033,7 +3936,6 @@ declare const DataField: z.ZodObject<z.objectUtil.extendShape<{
|
|
4033
3936
|
}>>;
|
4034
3937
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
4035
3938
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4036
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4037
3939
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
4038
3940
|
id: string;
|
4039
3941
|
description: string;
|
@@ -4168,7 +4070,6 @@ declare const DataField: z.ZodObject<z.objectUtil.extendShape<{
|
|
4168
4070
|
type: "DISPLAY_ON_REVIEW";
|
4169
4071
|
conditional: import(".").JSONSchema;
|
4170
4072
|
})[] | undefined;
|
4171
|
-
secured?: boolean | undefined;
|
4172
4073
|
placeholder?: TranslationConfig | undefined;
|
4173
4074
|
helperText?: TranslationConfig | undefined;
|
4174
4075
|
hideLabel?: boolean | undefined;
|
@@ -4223,7 +4124,6 @@ declare const DataField: z.ZodObject<z.objectUtil.extendShape<{
|
|
4223
4124
|
type: "DISPLAY_ON_REVIEW";
|
4224
4125
|
conditional: import(".").JSONSchema;
|
4225
4126
|
})[] | undefined;
|
4226
|
-
secured?: boolean | undefined;
|
4227
4127
|
placeholder?: {
|
4228
4128
|
id: string;
|
4229
4129
|
description: string;
|
@@ -4257,7 +4157,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4257
4157
|
}>>;
|
4258
4158
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
4259
4159
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4260
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4261
4160
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
4262
4161
|
id: string;
|
4263
4162
|
description: string;
|
@@ -4403,7 +4302,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4403
4302
|
type: "DISPLAY_ON_REVIEW";
|
4404
4303
|
conditional: import(".").JSONSchema;
|
4405
4304
|
})[] | undefined;
|
4406
|
-
secured?: boolean | undefined;
|
4407
4305
|
placeholder?: TranslationConfig | undefined;
|
4408
4306
|
helperText?: TranslationConfig | undefined;
|
4409
4307
|
hideLabel?: boolean | undefined;
|
@@ -4466,7 +4364,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4466
4364
|
type: "DISPLAY_ON_REVIEW";
|
4467
4365
|
conditional: import(".").JSONSchema;
|
4468
4366
|
})[] | undefined;
|
4469
|
-
secured?: boolean | undefined;
|
4470
4367
|
placeholder?: {
|
4471
4368
|
id: string;
|
4472
4369
|
description: string;
|
@@ -4518,7 +4415,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4518
4415
|
}>>;
|
4519
4416
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
4520
4417
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4521
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4522
4418
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
4523
4419
|
id: string;
|
4524
4420
|
description: string;
|
@@ -4610,7 +4506,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4610
4506
|
type: "DISPLAY_ON_REVIEW";
|
4611
4507
|
conditional: import(".").JSONSchema;
|
4612
4508
|
})[] | undefined;
|
4613
|
-
secured?: boolean | undefined;
|
4614
4509
|
placeholder?: TranslationConfig | undefined;
|
4615
4510
|
helperText?: TranslationConfig | undefined;
|
4616
4511
|
hideLabel?: boolean | undefined;
|
@@ -4651,7 +4546,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4651
4546
|
type: "DISPLAY_ON_REVIEW";
|
4652
4547
|
conditional: import(".").JSONSchema;
|
4653
4548
|
})[] | undefined;
|
4654
|
-
secured?: boolean | undefined;
|
4655
4549
|
placeholder?: {
|
4656
4550
|
id: string;
|
4657
4551
|
description: string;
|
@@ -4689,7 +4583,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4689
4583
|
}>>;
|
4690
4584
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
4691
4585
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4692
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4693
4586
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
4694
4587
|
id: string;
|
4695
4588
|
description: string;
|
@@ -4781,7 +4674,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4781
4674
|
type: "DISPLAY_ON_REVIEW";
|
4782
4675
|
conditional: import(".").JSONSchema;
|
4783
4676
|
})[] | undefined;
|
4784
|
-
secured?: boolean | undefined;
|
4785
4677
|
placeholder?: TranslationConfig | undefined;
|
4786
4678
|
helperText?: TranslationConfig | undefined;
|
4787
4679
|
hideLabel?: boolean | undefined;
|
@@ -4822,7 +4714,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4822
4714
|
type: "DISPLAY_ON_REVIEW";
|
4823
4715
|
conditional: import(".").JSONSchema;
|
4824
4716
|
})[] | undefined;
|
4825
|
-
secured?: boolean | undefined;
|
4826
4717
|
placeholder?: {
|
4827
4718
|
id: string;
|
4828
4719
|
description: string;
|
@@ -4860,7 +4751,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4860
4751
|
}>>;
|
4861
4752
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
4862
4753
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4863
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4864
4754
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
4865
4755
|
id: string;
|
4866
4756
|
description: string;
|
@@ -4955,7 +4845,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4955
4845
|
type: "DISPLAY_ON_REVIEW";
|
4956
4846
|
conditional: import(".").JSONSchema;
|
4957
4847
|
})[] | undefined;
|
4958
|
-
secured?: boolean | undefined;
|
4959
4848
|
placeholder?: TranslationConfig | undefined;
|
4960
4849
|
helperText?: TranslationConfig | undefined;
|
4961
4850
|
hideLabel?: boolean | undefined;
|
@@ -4997,7 +4886,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4997
4886
|
type: "DISPLAY_ON_REVIEW";
|
4998
4887
|
conditional: import(".").JSONSchema;
|
4999
4888
|
})[] | undefined;
|
5000
|
-
secured?: boolean | undefined;
|
5001
4889
|
placeholder?: {
|
5002
4890
|
id: string;
|
5003
4891
|
description: string;
|
@@ -5036,7 +4924,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5036
4924
|
}>>;
|
5037
4925
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
5038
4926
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5039
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5040
4927
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5041
4928
|
id: string;
|
5042
4929
|
description: string;
|
@@ -5111,7 +4998,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5111
4998
|
type: "DISPLAY_ON_REVIEW";
|
5112
4999
|
conditional: import(".").JSONSchema;
|
5113
5000
|
})[] | undefined;
|
5114
|
-
secured?: boolean | undefined;
|
5115
5001
|
placeholder?: TranslationConfig | undefined;
|
5116
5002
|
helperText?: TranslationConfig | undefined;
|
5117
5003
|
hideLabel?: boolean | undefined;
|
@@ -5149,7 +5035,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5149
5035
|
type: "DISPLAY_ON_REVIEW";
|
5150
5036
|
conditional: import(".").JSONSchema;
|
5151
5037
|
})[] | undefined;
|
5152
|
-
secured?: boolean | undefined;
|
5153
5038
|
placeholder?: {
|
5154
5039
|
id: string;
|
5155
5040
|
description: string;
|
@@ -5180,7 +5065,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5180
5065
|
}>>;
|
5181
5066
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
5182
5067
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5183
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5184
5068
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5185
5069
|
id: string;
|
5186
5070
|
description: string;
|
@@ -5255,7 +5139,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5255
5139
|
type: "DISPLAY_ON_REVIEW";
|
5256
5140
|
conditional: import(".").JSONSchema;
|
5257
5141
|
})[] | undefined;
|
5258
|
-
secured?: boolean | undefined;
|
5259
5142
|
placeholder?: TranslationConfig | undefined;
|
5260
5143
|
helperText?: TranslationConfig | undefined;
|
5261
5144
|
hideLabel?: boolean | undefined;
|
@@ -5293,7 +5176,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5293
5176
|
type: "DISPLAY_ON_REVIEW";
|
5294
5177
|
conditional: import(".").JSONSchema;
|
5295
5178
|
})[] | undefined;
|
5296
|
-
secured?: boolean | undefined;
|
5297
5179
|
placeholder?: {
|
5298
5180
|
id: string;
|
5299
5181
|
description: string;
|
@@ -5324,7 +5206,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5324
5206
|
}>>;
|
5325
5207
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
5326
5208
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5327
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5328
5209
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5329
5210
|
id: string;
|
5330
5211
|
description: string;
|
@@ -5406,7 +5287,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5406
5287
|
type: "DISPLAY_ON_REVIEW";
|
5407
5288
|
conditional: import(".").JSONSchema;
|
5408
5289
|
})[] | undefined;
|
5409
|
-
secured?: boolean | undefined;
|
5410
5290
|
placeholder?: TranslationConfig | undefined;
|
5411
5291
|
helperText?: TranslationConfig | undefined;
|
5412
5292
|
hideLabel?: boolean | undefined;
|
@@ -5441,7 +5321,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5441
5321
|
type: "DISPLAY_ON_REVIEW";
|
5442
5322
|
conditional: import(".").JSONSchema;
|
5443
5323
|
})[] | undefined;
|
5444
|
-
secured?: boolean | undefined;
|
5445
5324
|
placeholder?: {
|
5446
5325
|
id: string;
|
5447
5326
|
description: string;
|
@@ -5470,7 +5349,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5470
5349
|
}>>;
|
5471
5350
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
5472
5351
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5473
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5474
5352
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5475
5353
|
id: string;
|
5476
5354
|
description: string;
|
@@ -5569,7 +5447,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5569
5447
|
type: "DISPLAY_ON_REVIEW";
|
5570
5448
|
conditional: import(".").JSONSchema;
|
5571
5449
|
})[] | undefined;
|
5572
|
-
secured?: boolean | undefined;
|
5573
5450
|
placeholder?: TranslationConfig | undefined;
|
5574
5451
|
helperText?: TranslationConfig | undefined;
|
5575
5452
|
hideLabel?: boolean | undefined;
|
@@ -5617,7 +5494,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5617
5494
|
type: "DISPLAY_ON_REVIEW";
|
5618
5495
|
conditional: import(".").JSONSchema;
|
5619
5496
|
})[] | undefined;
|
5620
|
-
secured?: boolean | undefined;
|
5621
5497
|
placeholder?: {
|
5622
5498
|
id: string;
|
5623
5499
|
description: string;
|
@@ -5646,7 +5522,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5646
5522
|
}>>;
|
5647
5523
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
5648
5524
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5649
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5650
5525
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5651
5526
|
id: string;
|
5652
5527
|
description: string;
|
@@ -5734,7 +5609,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5734
5609
|
type: "DISPLAY_ON_REVIEW";
|
5735
5610
|
conditional: import(".").JSONSchema;
|
5736
5611
|
})[] | undefined;
|
5737
|
-
secured?: boolean | undefined;
|
5738
5612
|
placeholder?: TranslationConfig | undefined;
|
5739
5613
|
helperText?: TranslationConfig | undefined;
|
5740
5614
|
hideLabel?: boolean | undefined;
|
@@ -5774,7 +5648,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5774
5648
|
type: "DISPLAY_ON_REVIEW";
|
5775
5649
|
conditional: import(".").JSONSchema;
|
5776
5650
|
})[] | undefined;
|
5777
|
-
secured?: boolean | undefined;
|
5778
5651
|
placeholder?: {
|
5779
5652
|
id: string;
|
5780
5653
|
description: string;
|
@@ -5803,7 +5676,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5803
5676
|
}>>;
|
5804
5677
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
5805
5678
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5806
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5807
5679
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5808
5680
|
id: string;
|
5809
5681
|
description: string;
|
@@ -5863,7 +5735,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5863
5735
|
type: "DISPLAY_ON_REVIEW";
|
5864
5736
|
conditional: import(".").JSONSchema;
|
5865
5737
|
})[] | undefined;
|
5866
|
-
secured?: boolean | undefined;
|
5867
5738
|
placeholder?: TranslationConfig | undefined;
|
5868
5739
|
helperText?: TranslationConfig | undefined;
|
5869
5740
|
hideLabel?: boolean | undefined;
|
@@ -5898,7 +5769,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5898
5769
|
type: "DISPLAY_ON_REVIEW";
|
5899
5770
|
conditional: import(".").JSONSchema;
|
5900
5771
|
})[] | undefined;
|
5901
|
-
secured?: boolean | undefined;
|
5902
5772
|
placeholder?: {
|
5903
5773
|
id: string;
|
5904
5774
|
description: string;
|
@@ -5922,7 +5792,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5922
5792
|
}>>;
|
5923
5793
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
5924
5794
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5925
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5926
5795
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5927
5796
|
id: string;
|
5928
5797
|
description: string;
|
@@ -6004,7 +5873,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6004
5873
|
type: "DISPLAY_ON_REVIEW";
|
6005
5874
|
conditional: import(".").JSONSchema;
|
6006
5875
|
})[] | undefined;
|
6007
|
-
secured?: boolean | undefined;
|
6008
5876
|
placeholder?: TranslationConfig | undefined;
|
6009
5877
|
helperText?: TranslationConfig | undefined;
|
6010
5878
|
hideLabel?: boolean | undefined;
|
@@ -6047,7 +5915,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6047
5915
|
type: "DISPLAY_ON_REVIEW";
|
6048
5916
|
conditional: import(".").JSONSchema;
|
6049
5917
|
})[] | undefined;
|
6050
|
-
secured?: boolean | undefined;
|
6051
5918
|
placeholder?: {
|
6052
5919
|
id: string;
|
6053
5920
|
description: string;
|
@@ -6071,7 +5938,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6071
5938
|
}>>;
|
6072
5939
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
6073
5940
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6074
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6075
5941
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6076
5942
|
id: string;
|
6077
5943
|
description: string;
|
@@ -6169,7 +6035,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6169
6035
|
type: "DISPLAY_ON_REVIEW";
|
6170
6036
|
conditional: import(".").JSONSchema;
|
6171
6037
|
})[] | undefined;
|
6172
|
-
secured?: boolean | undefined;
|
6173
6038
|
placeholder?: TranslationConfig | undefined;
|
6174
6039
|
helperText?: TranslationConfig | undefined;
|
6175
6040
|
hideLabel?: boolean | undefined;
|
@@ -6212,7 +6077,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6212
6077
|
type: "DISPLAY_ON_REVIEW";
|
6213
6078
|
conditional: import(".").JSONSchema;
|
6214
6079
|
})[] | undefined;
|
6215
|
-
secured?: boolean | undefined;
|
6216
6080
|
placeholder?: {
|
6217
6081
|
id: string;
|
6218
6082
|
description: string;
|
@@ -6252,7 +6116,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6252
6116
|
}>>;
|
6253
6117
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
6254
6118
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6255
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6256
6119
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6257
6120
|
id: string;
|
6258
6121
|
description: string;
|
@@ -6312,7 +6175,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6312
6175
|
type: "DISPLAY_ON_REVIEW";
|
6313
6176
|
conditional: import(".").JSONSchema;
|
6314
6177
|
})[] | undefined;
|
6315
|
-
secured?: boolean | undefined;
|
6316
6178
|
placeholder?: TranslationConfig | undefined;
|
6317
6179
|
helperText?: TranslationConfig | undefined;
|
6318
6180
|
hideLabel?: boolean | undefined;
|
@@ -6347,7 +6209,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6347
6209
|
type: "DISPLAY_ON_REVIEW";
|
6348
6210
|
conditional: import(".").JSONSchema;
|
6349
6211
|
})[] | undefined;
|
6350
|
-
secured?: boolean | undefined;
|
6351
6212
|
placeholder?: {
|
6352
6213
|
id: string;
|
6353
6214
|
description: string;
|
@@ -6371,7 +6232,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6371
6232
|
}>>;
|
6372
6233
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
6373
6234
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6374
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6375
6235
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6376
6236
|
id: string;
|
6377
6237
|
description: string;
|
@@ -6431,7 +6291,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6431
6291
|
type: "DISPLAY_ON_REVIEW";
|
6432
6292
|
conditional: import(".").JSONSchema;
|
6433
6293
|
})[] | undefined;
|
6434
|
-
secured?: boolean | undefined;
|
6435
6294
|
placeholder?: TranslationConfig | undefined;
|
6436
6295
|
helperText?: TranslationConfig | undefined;
|
6437
6296
|
hideLabel?: boolean | undefined;
|
@@ -6466,7 +6325,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6466
6325
|
type: "DISPLAY_ON_REVIEW";
|
6467
6326
|
conditional: import(".").JSONSchema;
|
6468
6327
|
})[] | undefined;
|
6469
|
-
secured?: boolean | undefined;
|
6470
6328
|
placeholder?: {
|
6471
6329
|
id: string;
|
6472
6330
|
description: string;
|
@@ -6490,7 +6348,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6490
6348
|
}>>;
|
6491
6349
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
6492
6350
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6493
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6494
6351
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6495
6352
|
id: string;
|
6496
6353
|
description: string;
|
@@ -6550,7 +6407,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6550
6407
|
type: "DISPLAY_ON_REVIEW";
|
6551
6408
|
conditional: import(".").JSONSchema;
|
6552
6409
|
})[] | undefined;
|
6553
|
-
secured?: boolean | undefined;
|
6554
6410
|
placeholder?: TranslationConfig | undefined;
|
6555
6411
|
helperText?: TranslationConfig | undefined;
|
6556
6412
|
hideLabel?: boolean | undefined;
|
@@ -6585,7 +6441,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6585
6441
|
type: "DISPLAY_ON_REVIEW";
|
6586
6442
|
conditional: import(".").JSONSchema;
|
6587
6443
|
})[] | undefined;
|
6588
|
-
secured?: boolean | undefined;
|
6589
6444
|
placeholder?: {
|
6590
6445
|
id: string;
|
6591
6446
|
description: string;
|
@@ -6609,7 +6464,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6609
6464
|
}>>;
|
6610
6465
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
6611
6466
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6612
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6613
6467
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6614
6468
|
id: string;
|
6615
6469
|
description: string;
|
@@ -6723,7 +6577,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6723
6577
|
type: "DISPLAY_ON_REVIEW";
|
6724
6578
|
conditional: import(".").JSONSchema;
|
6725
6579
|
})[] | undefined;
|
6726
|
-
secured?: boolean | undefined;
|
6727
6580
|
placeholder?: TranslationConfig | undefined;
|
6728
6581
|
helperText?: TranslationConfig | undefined;
|
6729
6582
|
hideLabel?: boolean | undefined;
|
@@ -6762,7 +6615,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6762
6615
|
type: "DISPLAY_ON_REVIEW";
|
6763
6616
|
conditional: import(".").JSONSchema;
|
6764
6617
|
})[] | undefined;
|
6765
|
-
secured?: boolean | undefined;
|
6766
6618
|
placeholder?: {
|
6767
6619
|
id: string;
|
6768
6620
|
description: string;
|
@@ -6802,7 +6654,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6802
6654
|
}>>;
|
6803
6655
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
6804
6656
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6805
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6806
6657
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6807
6658
|
id: string;
|
6808
6659
|
description: string;
|
@@ -6862,7 +6713,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6862
6713
|
type: "DISPLAY_ON_REVIEW";
|
6863
6714
|
conditional: import(".").JSONSchema;
|
6864
6715
|
})[] | undefined;
|
6865
|
-
secured?: boolean | undefined;
|
6866
6716
|
placeholder?: TranslationConfig | undefined;
|
6867
6717
|
helperText?: TranslationConfig | undefined;
|
6868
6718
|
hideLabel?: boolean | undefined;
|
@@ -6897,7 +6747,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6897
6747
|
type: "DISPLAY_ON_REVIEW";
|
6898
6748
|
conditional: import(".").JSONSchema;
|
6899
6749
|
})[] | undefined;
|
6900
|
-
secured?: boolean | undefined;
|
6901
6750
|
placeholder?: {
|
6902
6751
|
id: string;
|
6903
6752
|
description: string;
|
@@ -6921,7 +6770,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6921
6770
|
}>>;
|
6922
6771
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
6923
6772
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6924
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6925
6773
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6926
6774
|
id: string;
|
6927
6775
|
description: string;
|
@@ -7007,7 +6855,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7007
6855
|
type: "DISPLAY_ON_REVIEW";
|
7008
6856
|
conditional: import(".").JSONSchema;
|
7009
6857
|
})[] | undefined;
|
7010
|
-
secured?: boolean | undefined;
|
7011
6858
|
placeholder?: TranslationConfig | undefined;
|
7012
6859
|
helperText?: TranslationConfig | undefined;
|
7013
6860
|
hideLabel?: boolean | undefined;
|
@@ -7048,7 +6895,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7048
6895
|
type: "DISPLAY_ON_REVIEW";
|
7049
6896
|
conditional: import(".").JSONSchema;
|
7050
6897
|
})[] | undefined;
|
7051
|
-
secured?: boolean | undefined;
|
7052
6898
|
placeholder?: {
|
7053
6899
|
id: string;
|
7054
6900
|
description: string;
|
@@ -7072,7 +6918,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7072
6918
|
}>>;
|
7073
6919
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
7074
6920
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7075
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7076
6921
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7077
6922
|
id: string;
|
7078
6923
|
description: string;
|
@@ -7131,7 +6976,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7131
6976
|
type: "DISPLAY_ON_REVIEW";
|
7132
6977
|
conditional: import(".").JSONSchema;
|
7133
6978
|
})[] | undefined;
|
7134
|
-
secured?: boolean | undefined;
|
7135
6979
|
placeholder?: TranslationConfig | undefined;
|
7136
6980
|
helperText?: TranslationConfig | undefined;
|
7137
6981
|
hideLabel?: boolean | undefined;
|
@@ -7165,7 +7009,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7165
7009
|
type: "DISPLAY_ON_REVIEW";
|
7166
7010
|
conditional: import(".").JSONSchema;
|
7167
7011
|
})[] | undefined;
|
7168
|
-
secured?: boolean | undefined;
|
7169
7012
|
placeholder?: {
|
7170
7013
|
id: string;
|
7171
7014
|
description: string;
|
@@ -7188,7 +7031,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7188
7031
|
}>>;
|
7189
7032
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
7190
7033
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7191
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7192
7034
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7193
7035
|
id: string;
|
7194
7036
|
description: string;
|
@@ -7248,7 +7090,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7248
7090
|
type: "DISPLAY_ON_REVIEW";
|
7249
7091
|
conditional: import(".").JSONSchema;
|
7250
7092
|
})[] | undefined;
|
7251
|
-
secured?: boolean | undefined;
|
7252
7093
|
placeholder?: TranslationConfig | undefined;
|
7253
7094
|
helperText?: TranslationConfig | undefined;
|
7254
7095
|
hideLabel?: boolean | undefined;
|
@@ -7283,7 +7124,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7283
7124
|
type: "DISPLAY_ON_REVIEW";
|
7284
7125
|
conditional: import(".").JSONSchema;
|
7285
7126
|
})[] | undefined;
|
7286
|
-
secured?: boolean | undefined;
|
7287
7127
|
placeholder?: {
|
7288
7128
|
id: string;
|
7289
7129
|
description: string;
|
@@ -7307,7 +7147,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7307
7147
|
}>>;
|
7308
7148
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
7309
7149
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7310
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7311
7150
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7312
7151
|
id: string;
|
7313
7152
|
description: string;
|
@@ -7367,7 +7206,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7367
7206
|
type: "DISPLAY_ON_REVIEW";
|
7368
7207
|
conditional: import(".").JSONSchema;
|
7369
7208
|
})[] | undefined;
|
7370
|
-
secured?: boolean | undefined;
|
7371
7209
|
placeholder?: TranslationConfig | undefined;
|
7372
7210
|
helperText?: TranslationConfig | undefined;
|
7373
7211
|
hideLabel?: boolean | undefined;
|
@@ -7402,7 +7240,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7402
7240
|
type: "DISPLAY_ON_REVIEW";
|
7403
7241
|
conditional: import(".").JSONSchema;
|
7404
7242
|
})[] | undefined;
|
7405
|
-
secured?: boolean | undefined;
|
7406
7243
|
placeholder?: {
|
7407
7244
|
id: string;
|
7408
7245
|
description: string;
|
@@ -7426,7 +7263,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7426
7263
|
}>>;
|
7427
7264
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
7428
7265
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7429
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7430
7266
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7431
7267
|
id: string;
|
7432
7268
|
description: string;
|
@@ -7486,7 +7322,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7486
7322
|
type: "DISPLAY_ON_REVIEW";
|
7487
7323
|
conditional: import(".").JSONSchema;
|
7488
7324
|
})[] | undefined;
|
7489
|
-
secured?: boolean | undefined;
|
7490
7325
|
placeholder?: TranslationConfig | undefined;
|
7491
7326
|
helperText?: TranslationConfig | undefined;
|
7492
7327
|
hideLabel?: boolean | undefined;
|
@@ -7521,7 +7356,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7521
7356
|
type: "DISPLAY_ON_REVIEW";
|
7522
7357
|
conditional: import(".").JSONSchema;
|
7523
7358
|
})[] | undefined;
|
7524
|
-
secured?: boolean | undefined;
|
7525
7359
|
placeholder?: {
|
7526
7360
|
id: string;
|
7527
7361
|
description: string;
|
@@ -7545,7 +7379,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7545
7379
|
}>>;
|
7546
7380
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
7547
7381
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7548
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7549
7382
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7550
7383
|
id: string;
|
7551
7384
|
description: string;
|
@@ -7625,7 +7458,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7625
7458
|
type: "DISPLAY_ON_REVIEW";
|
7626
7459
|
conditional: import(".").JSONSchema;
|
7627
7460
|
})[] | undefined;
|
7628
|
-
secured?: boolean | undefined;
|
7629
7461
|
placeholder?: TranslationConfig | undefined;
|
7630
7462
|
helperText?: TranslationConfig | undefined;
|
7631
7463
|
hideLabel?: boolean | undefined;
|
@@ -7665,7 +7497,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7665
7497
|
type: "DISPLAY_ON_REVIEW";
|
7666
7498
|
conditional: import(".").JSONSchema;
|
7667
7499
|
})[] | undefined;
|
7668
|
-
secured?: boolean | undefined;
|
7669
7500
|
placeholder?: {
|
7670
7501
|
id: string;
|
7671
7502
|
description: string;
|
@@ -7693,7 +7524,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7693
7524
|
}>>;
|
7694
7525
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
7695
7526
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7696
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7697
7527
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7698
7528
|
id: string;
|
7699
7529
|
description: string;
|
@@ -7760,7 +7590,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7760
7590
|
type: "DISPLAY_ON_REVIEW";
|
7761
7591
|
conditional: import(".").JSONSchema;
|
7762
7592
|
})[] | undefined;
|
7763
|
-
secured?: boolean | undefined;
|
7764
7593
|
placeholder?: TranslationConfig | undefined;
|
7765
7594
|
helperText?: TranslationConfig | undefined;
|
7766
7595
|
hideLabel?: boolean | undefined;
|
@@ -7798,7 +7627,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7798
7627
|
type: "DISPLAY_ON_REVIEW";
|
7799
7628
|
conditional: import(".").JSONSchema;
|
7800
7629
|
})[] | undefined;
|
7801
|
-
secured?: boolean | undefined;
|
7802
7630
|
placeholder?: {
|
7803
7631
|
id: string;
|
7804
7632
|
description: string;
|
@@ -7825,7 +7653,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7825
7653
|
}>>;
|
7826
7654
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
7827
7655
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7828
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7829
7656
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7830
7657
|
id: string;
|
7831
7658
|
description: string;
|
@@ -7936,7 +7763,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7936
7763
|
type: "DISPLAY_ON_REVIEW";
|
7937
7764
|
conditional: import(".").JSONSchema;
|
7938
7765
|
})[] | undefined;
|
7939
|
-
secured?: boolean | undefined;
|
7940
7766
|
placeholder?: TranslationConfig | undefined;
|
7941
7767
|
helperText?: TranslationConfig | undefined;
|
7942
7768
|
hideLabel?: boolean | undefined;
|
@@ -7984,7 +7810,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7984
7810
|
type: "DISPLAY_ON_REVIEW";
|
7985
7811
|
conditional: import(".").JSONSchema;
|
7986
7812
|
})[] | undefined;
|
7987
|
-
secured?: boolean | undefined;
|
7988
7813
|
placeholder?: {
|
7989
7814
|
id: string;
|
7990
7815
|
description: string;
|
@@ -8017,7 +7842,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8017
7842
|
}>>;
|
8018
7843
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
8019
7844
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
8020
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
8021
7845
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
8022
7846
|
id: string;
|
8023
7847
|
description: string;
|
@@ -8152,7 +7976,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8152
7976
|
type: "DISPLAY_ON_REVIEW";
|
8153
7977
|
conditional: import(".").JSONSchema;
|
8154
7978
|
})[] | undefined;
|
8155
|
-
secured?: boolean | undefined;
|
8156
7979
|
placeholder?: TranslationConfig | undefined;
|
8157
7980
|
helperText?: TranslationConfig | undefined;
|
8158
7981
|
hideLabel?: boolean | undefined;
|
@@ -8207,7 +8030,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8207
8030
|
type: "DISPLAY_ON_REVIEW";
|
8208
8031
|
conditional: import(".").JSONSchema;
|
8209
8032
|
})[] | undefined;
|
8210
|
-
secured?: boolean | undefined;
|
8211
8033
|
placeholder?: {
|
8212
8034
|
id: string;
|
8213
8035
|
description: string;
|