@opencrvs/toolkit 1.8.0-rc.fb8e005 → 1.8.0-rc.fbababd
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 +8621 -5643
- package/dist/commons/events/ActionConfig.d.ts +18584 -33488
- package/dist/commons/events/ActionDocument.d.ts +1083 -1182
- package/dist/commons/events/ActionInput.d.ts +726 -726
- 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 +412 -1160
- package/dist/commons/events/CreatedAtLocation.d.ts +2 -1
- package/dist/commons/events/Draft.d.ts +71 -76
- package/dist/commons/events/EventConfig.d.ts +17504 -27573
- package/dist/commons/events/EventDocument.d.ts +707 -782
- package/dist/commons/events/EventIndex.d.ts +224 -639
- package/dist/commons/events/EventMetadata.d.ts +31 -73
- package/dist/commons/events/FieldConfig.d.ts +37 -198
- 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 +66 -1200
- package/dist/commons/events/PageConfig.d.ts +18 -288
- package/dist/commons/events/WorkqueueColumnConfig.d.ts +11 -11
- package/dist/commons/events/WorkqueueConfig.d.ts +740 -3237
- package/dist/commons/events/defineConfig.d.ts +1589 -3532
- package/dist/commons/events/field.d.ts +0 -5
- package/dist/commons/events/index.d.ts +0 -1
- package/dist/commons/events/scopes.d.ts +3 -2
- package/dist/commons/events/test.utils.d.ts +17 -40
- package/dist/commons/events/transactions.d.ts +1 -1
- package/dist/commons/events/utils.d.ts +1604 -3684
- package/dist/conditionals/index.js +17 -20
- package/dist/events/index.js +1323 -1695
- package/dist/scopes/index.d.ts +1 -4
- package/dist/scopes/index.js +17 -67
- 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;
|
@@ -1363,6 +1317,29 @@ declare const DateRangeField: z.ZodObject<z.objectUtil.extendShape<{
|
|
1363
1317
|
export type DateRangeField = z.infer<typeof DateRangeField>;
|
1364
1318
|
declare const HtmlFontVariant: z.ZodEnum<["reg12", "reg14", "reg16", "reg18", "h4", "h3", "h2", "h1"]>;
|
1365
1319
|
export type HtmlFontVariant = z.infer<typeof HtmlFontVariant>;
|
1320
|
+
declare const ParagraphConfiguration: z.ZodDefault<z.ZodObject<{
|
1321
|
+
styles: z.ZodOptional<z.ZodObject<{
|
1322
|
+
fontVariant: z.ZodOptional<z.ZodEnum<["reg12", "reg14", "reg16", "reg18", "h4", "h3", "h2", "h1"]>>;
|
1323
|
+
hint: z.ZodOptional<z.ZodBoolean>;
|
1324
|
+
}, "strip", z.ZodTypeAny, {
|
1325
|
+
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
1326
|
+
hint?: boolean | undefined;
|
1327
|
+
}, {
|
1328
|
+
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
1329
|
+
hint?: boolean | undefined;
|
1330
|
+
}>>;
|
1331
|
+
}, "strip", z.ZodTypeAny, {
|
1332
|
+
styles?: {
|
1333
|
+
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
1334
|
+
hint?: boolean | undefined;
|
1335
|
+
} | undefined;
|
1336
|
+
}, {
|
1337
|
+
styles?: {
|
1338
|
+
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
1339
|
+
hint?: boolean | undefined;
|
1340
|
+
} | undefined;
|
1341
|
+
}>>;
|
1342
|
+
export type ParagraphConfiguration = z.infer<typeof ParagraphConfiguration>;
|
1366
1343
|
declare const Paragraph: z.ZodObject<z.objectUtil.extendShape<{
|
1367
1344
|
id: z.ZodString;
|
1368
1345
|
parent: z.ZodOptional<z.ZodObject<{
|
@@ -1374,7 +1351,6 @@ declare const Paragraph: z.ZodObject<z.objectUtil.extendShape<{
|
|
1374
1351
|
}>>;
|
1375
1352
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
1376
1353
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
1377
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
1378
1354
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
1379
1355
|
id: string;
|
1380
1356
|
description: string;
|
@@ -1415,18 +1391,23 @@ declare const Paragraph: z.ZodObject<z.objectUtil.extendShape<{
|
|
1415
1391
|
configuration: z.ZodDefault<z.ZodObject<{
|
1416
1392
|
styles: z.ZodOptional<z.ZodObject<{
|
1417
1393
|
fontVariant: z.ZodOptional<z.ZodEnum<["reg12", "reg14", "reg16", "reg18", "h4", "h3", "h2", "h1"]>>;
|
1394
|
+
hint: z.ZodOptional<z.ZodBoolean>;
|
1418
1395
|
}, "strip", z.ZodTypeAny, {
|
1419
1396
|
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
1397
|
+
hint?: boolean | undefined;
|
1420
1398
|
}, {
|
1421
1399
|
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
1400
|
+
hint?: boolean | undefined;
|
1422
1401
|
}>>;
|
1423
1402
|
}, "strip", z.ZodTypeAny, {
|
1424
1403
|
styles?: {
|
1425
1404
|
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
1405
|
+
hint?: boolean | undefined;
|
1426
1406
|
} | undefined;
|
1427
1407
|
}, {
|
1428
1408
|
styles?: {
|
1429
1409
|
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
1410
|
+
hint?: boolean | undefined;
|
1430
1411
|
} | undefined;
|
1431
1412
|
}>>;
|
1432
1413
|
}>, "strip", z.ZodTypeAny, {
|
@@ -1436,6 +1417,7 @@ declare const Paragraph: z.ZodObject<z.objectUtil.extendShape<{
|
|
1436
1417
|
configuration: {
|
1437
1418
|
styles?: {
|
1438
1419
|
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
1420
|
+
hint?: boolean | undefined;
|
1439
1421
|
} | undefined;
|
1440
1422
|
};
|
1441
1423
|
parent?: {
|
@@ -1456,7 +1438,6 @@ declare const Paragraph: z.ZodObject<z.objectUtil.extendShape<{
|
|
1456
1438
|
type: "DISPLAY_ON_REVIEW";
|
1457
1439
|
conditional: import(".").JSONSchema;
|
1458
1440
|
})[] | undefined;
|
1459
|
-
secured?: boolean | undefined;
|
1460
1441
|
placeholder?: TranslationConfig | undefined;
|
1461
1442
|
helperText?: TranslationConfig | undefined;
|
1462
1443
|
hideLabel?: boolean | undefined;
|
@@ -1491,7 +1472,6 @@ declare const Paragraph: z.ZodObject<z.objectUtil.extendShape<{
|
|
1491
1472
|
type: "DISPLAY_ON_REVIEW";
|
1492
1473
|
conditional: import(".").JSONSchema;
|
1493
1474
|
})[] | undefined;
|
1494
|
-
secured?: boolean | undefined;
|
1495
1475
|
placeholder?: {
|
1496
1476
|
id: string;
|
1497
1477
|
description: string;
|
@@ -1507,6 +1487,7 @@ declare const Paragraph: z.ZodObject<z.objectUtil.extendShape<{
|
|
1507
1487
|
configuration?: {
|
1508
1488
|
styles?: {
|
1509
1489
|
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
1490
|
+
hint?: boolean | undefined;
|
1510
1491
|
} | undefined;
|
1511
1492
|
} | undefined;
|
1512
1493
|
}>;
|
@@ -1522,7 +1503,6 @@ declare const PageHeader: z.ZodObject<z.objectUtil.extendShape<{
|
|
1522
1503
|
}>>;
|
1523
1504
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
1524
1505
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
1525
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
1526
1506
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
1527
1507
|
id: string;
|
1528
1508
|
description: string;
|
@@ -1582,7 +1562,6 @@ declare const PageHeader: z.ZodObject<z.objectUtil.extendShape<{
|
|
1582
1562
|
type: "DISPLAY_ON_REVIEW";
|
1583
1563
|
conditional: import(".").JSONSchema;
|
1584
1564
|
})[] | undefined;
|
1585
|
-
secured?: boolean | undefined;
|
1586
1565
|
placeholder?: TranslationConfig | undefined;
|
1587
1566
|
helperText?: TranslationConfig | undefined;
|
1588
1567
|
hideLabel?: boolean | undefined;
|
@@ -1617,7 +1596,6 @@ declare const PageHeader: z.ZodObject<z.objectUtil.extendShape<{
|
|
1617
1596
|
type: "DISPLAY_ON_REVIEW";
|
1618
1597
|
conditional: import(".").JSONSchema;
|
1619
1598
|
})[] | undefined;
|
1620
|
-
secured?: boolean | undefined;
|
1621
1599
|
placeholder?: {
|
1622
1600
|
id: string;
|
1623
1601
|
description: string;
|
@@ -1643,7 +1621,6 @@ declare const File: z.ZodObject<z.objectUtil.extendShape<{
|
|
1643
1621
|
}>>;
|
1644
1622
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
1645
1623
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
1646
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
1647
1624
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
1648
1625
|
id: string;
|
1649
1626
|
description: string;
|
@@ -1757,7 +1734,6 @@ declare const File: z.ZodObject<z.objectUtil.extendShape<{
|
|
1757
1734
|
type: "DISPLAY_ON_REVIEW";
|
1758
1735
|
conditional: import(".").JSONSchema;
|
1759
1736
|
})[] | undefined;
|
1760
|
-
secured?: boolean | undefined;
|
1761
1737
|
placeholder?: TranslationConfig | undefined;
|
1762
1738
|
helperText?: TranslationConfig | undefined;
|
1763
1739
|
hideLabel?: boolean | undefined;
|
@@ -1796,7 +1772,6 @@ declare const File: z.ZodObject<z.objectUtil.extendShape<{
|
|
1796
1772
|
type: "DISPLAY_ON_REVIEW";
|
1797
1773
|
conditional: import(".").JSONSchema;
|
1798
1774
|
})[] | undefined;
|
1799
|
-
secured?: boolean | undefined;
|
1800
1775
|
placeholder?: {
|
1801
1776
|
id: string;
|
1802
1777
|
description: string;
|
@@ -1856,7 +1831,6 @@ declare const RadioGroup: z.ZodObject<z.objectUtil.extendShape<{
|
|
1856
1831
|
}>>;
|
1857
1832
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
1858
1833
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
1859
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
1860
1834
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
1861
1835
|
id: string;
|
1862
1836
|
description: string;
|
@@ -1955,7 +1929,6 @@ declare const RadioGroup: z.ZodObject<z.objectUtil.extendShape<{
|
|
1955
1929
|
type: "DISPLAY_ON_REVIEW";
|
1956
1930
|
conditional: import(".").JSONSchema;
|
1957
1931
|
})[] | undefined;
|
1958
|
-
secured?: boolean | undefined;
|
1959
1932
|
placeholder?: TranslationConfig | undefined;
|
1960
1933
|
helperText?: TranslationConfig | undefined;
|
1961
1934
|
hideLabel?: boolean | undefined;
|
@@ -2003,7 +1976,6 @@ declare const RadioGroup: z.ZodObject<z.objectUtil.extendShape<{
|
|
2003
1976
|
type: "DISPLAY_ON_REVIEW";
|
2004
1977
|
conditional: import(".").JSONSchema;
|
2005
1978
|
})[] | undefined;
|
2006
|
-
secured?: boolean | undefined;
|
2007
1979
|
placeholder?: {
|
2008
1980
|
id: string;
|
2009
1981
|
description: string;
|
@@ -2034,7 +2006,6 @@ declare const BulletList: z.ZodObject<z.objectUtil.extendShape<{
|
|
2034
2006
|
}>>;
|
2035
2007
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
2036
2008
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2037
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2038
2009
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2039
2010
|
id: string;
|
2040
2011
|
description: string;
|
@@ -2122,7 +2093,6 @@ declare const BulletList: z.ZodObject<z.objectUtil.extendShape<{
|
|
2122
2093
|
type: "DISPLAY_ON_REVIEW";
|
2123
2094
|
conditional: import(".").JSONSchema;
|
2124
2095
|
})[] | undefined;
|
2125
|
-
secured?: boolean | undefined;
|
2126
2096
|
placeholder?: TranslationConfig | undefined;
|
2127
2097
|
helperText?: TranslationConfig | undefined;
|
2128
2098
|
hideLabel?: boolean | undefined;
|
@@ -2162,7 +2132,6 @@ declare const BulletList: z.ZodObject<z.objectUtil.extendShape<{
|
|
2162
2132
|
type: "DISPLAY_ON_REVIEW";
|
2163
2133
|
conditional: import(".").JSONSchema;
|
2164
2134
|
})[] | undefined;
|
2165
|
-
secured?: boolean | undefined;
|
2166
2135
|
placeholder?: {
|
2167
2136
|
id: string;
|
2168
2137
|
description: string;
|
@@ -2193,7 +2162,6 @@ declare const Select: z.ZodObject<z.objectUtil.extendShape<{
|
|
2193
2162
|
}>>;
|
2194
2163
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
2195
2164
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2196
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2197
2165
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2198
2166
|
id: string;
|
2199
2167
|
description: string;
|
@@ -2275,7 +2243,6 @@ declare const Select: z.ZodObject<z.objectUtil.extendShape<{
|
|
2275
2243
|
type: "DISPLAY_ON_REVIEW";
|
2276
2244
|
conditional: import(".").JSONSchema;
|
2277
2245
|
})[] | undefined;
|
2278
|
-
secured?: boolean | undefined;
|
2279
2246
|
placeholder?: TranslationConfig | undefined;
|
2280
2247
|
helperText?: TranslationConfig | undefined;
|
2281
2248
|
hideLabel?: boolean | undefined;
|
@@ -2318,7 +2285,6 @@ declare const Select: z.ZodObject<z.objectUtil.extendShape<{
|
|
2318
2285
|
type: "DISPLAY_ON_REVIEW";
|
2319
2286
|
conditional: import(".").JSONSchema;
|
2320
2287
|
})[] | undefined;
|
2321
|
-
secured?: boolean | undefined;
|
2322
2288
|
placeholder?: {
|
2323
2289
|
id: string;
|
2324
2290
|
description: string;
|
@@ -2343,7 +2309,6 @@ declare const NameField: z.ZodObject<z.objectUtil.extendShape<{
|
|
2343
2309
|
}>>;
|
2344
2310
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
2345
2311
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2346
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2347
2312
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2348
2313
|
id: string;
|
2349
2314
|
description: string;
|
@@ -2402,14 +2367,10 @@ declare const NameField: z.ZodObject<z.objectUtil.extendShape<{
|
|
2402
2367
|
description: string;
|
2403
2368
|
defaultMessage: string;
|
2404
2369
|
}>>;
|
2405
|
-
includeMiddlename: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2406
|
-
searchMode: z.ZodOptional<z.ZodBoolean>;
|
2407
2370
|
}, "strip", z.ZodTypeAny, {
|
2408
2371
|
maxLength?: number | undefined;
|
2409
2372
|
prefix?: TranslationConfig | undefined;
|
2410
2373
|
postfix?: TranslationConfig | undefined;
|
2411
|
-
includeMiddlename?: boolean | undefined;
|
2412
|
-
searchMode?: boolean | undefined;
|
2413
2374
|
}, {
|
2414
2375
|
maxLength?: number | undefined;
|
2415
2376
|
prefix?: {
|
@@ -2422,8 +2383,6 @@ declare const NameField: z.ZodObject<z.objectUtil.extendShape<{
|
|
2422
2383
|
description: string;
|
2423
2384
|
defaultMessage: string;
|
2424
2385
|
} | undefined;
|
2425
|
-
includeMiddlename?: boolean | undefined;
|
2426
|
-
searchMode?: boolean | undefined;
|
2427
2386
|
}>>;
|
2428
2387
|
}>, "strip", z.ZodTypeAny, {
|
2429
2388
|
type: "NAME";
|
@@ -2447,7 +2406,6 @@ declare const NameField: z.ZodObject<z.objectUtil.extendShape<{
|
|
2447
2406
|
type: "DISPLAY_ON_REVIEW";
|
2448
2407
|
conditional: import(".").JSONSchema;
|
2449
2408
|
})[] | undefined;
|
2450
|
-
secured?: boolean | undefined;
|
2451
2409
|
placeholder?: TranslationConfig | undefined;
|
2452
2410
|
helperText?: TranslationConfig | undefined;
|
2453
2411
|
hideLabel?: boolean | undefined;
|
@@ -2459,8 +2417,6 @@ declare const NameField: z.ZodObject<z.objectUtil.extendShape<{
|
|
2459
2417
|
maxLength?: number | undefined;
|
2460
2418
|
prefix?: TranslationConfig | undefined;
|
2461
2419
|
postfix?: TranslationConfig | undefined;
|
2462
|
-
includeMiddlename?: boolean | undefined;
|
2463
|
-
searchMode?: boolean | undefined;
|
2464
2420
|
} | undefined;
|
2465
2421
|
}, {
|
2466
2422
|
type: "NAME";
|
@@ -2492,7 +2448,6 @@ declare const NameField: z.ZodObject<z.objectUtil.extendShape<{
|
|
2492
2448
|
type: "DISPLAY_ON_REVIEW";
|
2493
2449
|
conditional: import(".").JSONSchema;
|
2494
2450
|
})[] | undefined;
|
2495
|
-
secured?: boolean | undefined;
|
2496
2451
|
placeholder?: {
|
2497
2452
|
id: string;
|
2498
2453
|
description: string;
|
@@ -2520,8 +2475,6 @@ declare const NameField: z.ZodObject<z.objectUtil.extendShape<{
|
|
2520
2475
|
description: string;
|
2521
2476
|
defaultMessage: string;
|
2522
2477
|
} | undefined;
|
2523
|
-
includeMiddlename?: boolean | undefined;
|
2524
|
-
searchMode?: boolean | undefined;
|
2525
2478
|
} | undefined;
|
2526
2479
|
}>;
|
2527
2480
|
declare const PhoneField: z.ZodObject<z.objectUtil.extendShape<{
|
@@ -2535,7 +2488,6 @@ declare const PhoneField: z.ZodObject<z.objectUtil.extendShape<{
|
|
2535
2488
|
}>>;
|
2536
2489
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
2537
2490
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2538
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2539
2491
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2540
2492
|
id: string;
|
2541
2493
|
description: string;
|
@@ -2595,7 +2547,6 @@ declare const PhoneField: z.ZodObject<z.objectUtil.extendShape<{
|
|
2595
2547
|
type: "DISPLAY_ON_REVIEW";
|
2596
2548
|
conditional: import(".").JSONSchema;
|
2597
2549
|
})[] | undefined;
|
2598
|
-
secured?: boolean | undefined;
|
2599
2550
|
placeholder?: TranslationConfig | undefined;
|
2600
2551
|
helperText?: TranslationConfig | undefined;
|
2601
2552
|
hideLabel?: boolean | undefined;
|
@@ -2630,7 +2581,6 @@ declare const PhoneField: z.ZodObject<z.objectUtil.extendShape<{
|
|
2630
2581
|
type: "DISPLAY_ON_REVIEW";
|
2631
2582
|
conditional: import(".").JSONSchema;
|
2632
2583
|
})[] | undefined;
|
2633
|
-
secured?: boolean | undefined;
|
2634
2584
|
placeholder?: {
|
2635
2585
|
id: string;
|
2636
2586
|
description: string;
|
@@ -2655,7 +2605,6 @@ declare const IdField: z.ZodObject<z.objectUtil.extendShape<{
|
|
2655
2605
|
}>>;
|
2656
2606
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
2657
2607
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2658
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2659
2608
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2660
2609
|
id: string;
|
2661
2610
|
description: string;
|
@@ -2715,7 +2664,6 @@ declare const IdField: z.ZodObject<z.objectUtil.extendShape<{
|
|
2715
2664
|
type: "DISPLAY_ON_REVIEW";
|
2716
2665
|
conditional: import(".").JSONSchema;
|
2717
2666
|
})[] | undefined;
|
2718
|
-
secured?: boolean | undefined;
|
2719
2667
|
placeholder?: TranslationConfig | undefined;
|
2720
2668
|
helperText?: TranslationConfig | undefined;
|
2721
2669
|
hideLabel?: boolean | undefined;
|
@@ -2750,7 +2698,6 @@ declare const IdField: z.ZodObject<z.objectUtil.extendShape<{
|
|
2750
2698
|
type: "DISPLAY_ON_REVIEW";
|
2751
2699
|
conditional: import(".").JSONSchema;
|
2752
2700
|
})[] | undefined;
|
2753
|
-
secured?: boolean | undefined;
|
2754
2701
|
placeholder?: {
|
2755
2702
|
id: string;
|
2756
2703
|
description: string;
|
@@ -2775,7 +2722,6 @@ declare const Checkbox: z.ZodObject<z.objectUtil.extendShape<{
|
|
2775
2722
|
}>>;
|
2776
2723
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
2777
2724
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2778
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2779
2725
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2780
2726
|
id: string;
|
2781
2727
|
description: string;
|
@@ -2835,7 +2781,6 @@ declare const Checkbox: z.ZodObject<z.objectUtil.extendShape<{
|
|
2835
2781
|
type: "DISPLAY_ON_REVIEW";
|
2836
2782
|
conditional: import(".").JSONSchema;
|
2837
2783
|
})[] | undefined;
|
2838
|
-
secured?: boolean | undefined;
|
2839
2784
|
placeholder?: TranslationConfig | undefined;
|
2840
2785
|
helperText?: TranslationConfig | undefined;
|
2841
2786
|
hideLabel?: boolean | undefined;
|
@@ -2870,7 +2815,6 @@ declare const Checkbox: z.ZodObject<z.objectUtil.extendShape<{
|
|
2870
2815
|
type: "DISPLAY_ON_REVIEW";
|
2871
2816
|
conditional: import(".").JSONSchema;
|
2872
2817
|
})[] | undefined;
|
2873
|
-
secured?: boolean | undefined;
|
2874
2818
|
placeholder?: {
|
2875
2819
|
id: string;
|
2876
2820
|
description: string;
|
@@ -2896,7 +2840,6 @@ declare const Country: z.ZodObject<z.objectUtil.extendShape<{
|
|
2896
2840
|
}>>;
|
2897
2841
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
2898
2842
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2899
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2900
2843
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2901
2844
|
id: string;
|
2902
2845
|
description: string;
|
@@ -2956,7 +2899,6 @@ declare const Country: z.ZodObject<z.objectUtil.extendShape<{
|
|
2956
2899
|
type: "DISPLAY_ON_REVIEW";
|
2957
2900
|
conditional: import(".").JSONSchema;
|
2958
2901
|
})[] | undefined;
|
2959
|
-
secured?: boolean | undefined;
|
2960
2902
|
placeholder?: TranslationConfig | undefined;
|
2961
2903
|
helperText?: TranslationConfig | undefined;
|
2962
2904
|
hideLabel?: boolean | undefined;
|
@@ -2991,7 +2933,6 @@ declare const Country: z.ZodObject<z.objectUtil.extendShape<{
|
|
2991
2933
|
type: "DISPLAY_ON_REVIEW";
|
2992
2934
|
conditional: import(".").JSONSchema;
|
2993
2935
|
})[] | undefined;
|
2994
|
-
secured?: boolean | undefined;
|
2995
2936
|
placeholder?: {
|
2996
2937
|
id: string;
|
2997
2938
|
description: string;
|
@@ -3038,7 +2979,6 @@ declare const AdministrativeArea: z.ZodObject<z.objectUtil.extendShape<{
|
|
3038
2979
|
}>>;
|
3039
2980
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
3040
2981
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
3041
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
3042
2982
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
3043
2983
|
id: string;
|
3044
2984
|
description: string;
|
@@ -3124,7 +3064,6 @@ declare const AdministrativeArea: z.ZodObject<z.objectUtil.extendShape<{
|
|
3124
3064
|
type: "DISPLAY_ON_REVIEW";
|
3125
3065
|
conditional: import(".").JSONSchema;
|
3126
3066
|
})[] | undefined;
|
3127
|
-
secured?: boolean | undefined;
|
3128
3067
|
placeholder?: TranslationConfig | undefined;
|
3129
3068
|
helperText?: TranslationConfig | undefined;
|
3130
3069
|
hideLabel?: boolean | undefined;
|
@@ -3165,7 +3104,6 @@ declare const AdministrativeArea: z.ZodObject<z.objectUtil.extendShape<{
|
|
3165
3104
|
type: "DISPLAY_ON_REVIEW";
|
3166
3105
|
conditional: import(".").JSONSchema;
|
3167
3106
|
})[] | undefined;
|
3168
|
-
secured?: boolean | undefined;
|
3169
3107
|
placeholder?: {
|
3170
3108
|
id: string;
|
3171
3109
|
description: string;
|
@@ -3191,7 +3129,6 @@ declare const Location: z.ZodObject<z.objectUtil.extendShape<{
|
|
3191
3129
|
}>>;
|
3192
3130
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
3193
3131
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
3194
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
3195
3132
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
3196
3133
|
id: string;
|
3197
3134
|
description: string;
|
@@ -3251,7 +3188,6 @@ declare const Location: z.ZodObject<z.objectUtil.extendShape<{
|
|
3251
3188
|
type: "DISPLAY_ON_REVIEW";
|
3252
3189
|
conditional: import(".").JSONSchema;
|
3253
3190
|
})[] | undefined;
|
3254
|
-
secured?: boolean | undefined;
|
3255
3191
|
placeholder?: TranslationConfig | undefined;
|
3256
3192
|
helperText?: TranslationConfig | undefined;
|
3257
3193
|
hideLabel?: boolean | undefined;
|
@@ -3286,7 +3222,6 @@ declare const Location: z.ZodObject<z.objectUtil.extendShape<{
|
|
3286
3222
|
type: "DISPLAY_ON_REVIEW";
|
3287
3223
|
conditional: import(".").JSONSchema;
|
3288
3224
|
})[] | undefined;
|
3289
|
-
secured?: boolean | undefined;
|
3290
3225
|
placeholder?: {
|
3291
3226
|
id: string;
|
3292
3227
|
description: string;
|
@@ -3312,7 +3247,6 @@ declare const FileUploadWithOptions: z.ZodObject<z.objectUtil.extendShape<{
|
|
3312
3247
|
}>>;
|
3313
3248
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
3314
3249
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
3315
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
3316
3250
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
3317
3251
|
id: string;
|
3318
3252
|
description: string;
|
@@ -3423,7 +3357,6 @@ declare const FileUploadWithOptions: z.ZodObject<z.objectUtil.extendShape<{
|
|
3423
3357
|
type: "DISPLAY_ON_REVIEW";
|
3424
3358
|
conditional: import(".").JSONSchema;
|
3425
3359
|
})[] | undefined;
|
3426
|
-
secured?: boolean | undefined;
|
3427
3360
|
placeholder?: TranslationConfig | undefined;
|
3428
3361
|
helperText?: TranslationConfig | undefined;
|
3429
3362
|
hideLabel?: boolean | undefined;
|
@@ -3471,7 +3404,6 @@ declare const FileUploadWithOptions: z.ZodObject<z.objectUtil.extendShape<{
|
|
3471
3404
|
type: "DISPLAY_ON_REVIEW";
|
3472
3405
|
conditional: import(".").JSONSchema;
|
3473
3406
|
})[] | undefined;
|
3474
|
-
secured?: boolean | undefined;
|
3475
3407
|
placeholder?: {
|
3476
3408
|
id: string;
|
3477
3409
|
description: string;
|
@@ -3506,7 +3438,6 @@ declare const Facility: z.ZodObject<z.objectUtil.extendShape<{
|
|
3506
3438
|
}>>;
|
3507
3439
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
3508
3440
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
3509
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
3510
3441
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
3511
3442
|
id: string;
|
3512
3443
|
description: string;
|
@@ -3566,7 +3497,6 @@ declare const Facility: z.ZodObject<z.objectUtil.extendShape<{
|
|
3566
3497
|
type: "DISPLAY_ON_REVIEW";
|
3567
3498
|
conditional: import(".").JSONSchema;
|
3568
3499
|
})[] | undefined;
|
3569
|
-
secured?: boolean | undefined;
|
3570
3500
|
placeholder?: TranslationConfig | undefined;
|
3571
3501
|
helperText?: TranslationConfig | undefined;
|
3572
3502
|
hideLabel?: boolean | undefined;
|
@@ -3601,7 +3531,6 @@ declare const Facility: z.ZodObject<z.objectUtil.extendShape<{
|
|
3601
3531
|
type: "DISPLAY_ON_REVIEW";
|
3602
3532
|
conditional: import(".").JSONSchema;
|
3603
3533
|
})[] | undefined;
|
3604
|
-
secured?: boolean | undefined;
|
3605
3534
|
placeholder?: {
|
3606
3535
|
id: string;
|
3607
3536
|
description: string;
|
@@ -3627,7 +3556,6 @@ declare const Office: z.ZodObject<z.objectUtil.extendShape<{
|
|
3627
3556
|
}>>;
|
3628
3557
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
3629
3558
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
3630
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
3631
3559
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
3632
3560
|
id: string;
|
3633
3561
|
description: string;
|
@@ -3687,7 +3615,6 @@ declare const Office: z.ZodObject<z.objectUtil.extendShape<{
|
|
3687
3615
|
type: "DISPLAY_ON_REVIEW";
|
3688
3616
|
conditional: import(".").JSONSchema;
|
3689
3617
|
})[] | undefined;
|
3690
|
-
secured?: boolean | undefined;
|
3691
3618
|
placeholder?: TranslationConfig | undefined;
|
3692
3619
|
helperText?: TranslationConfig | undefined;
|
3693
3620
|
hideLabel?: boolean | undefined;
|
@@ -3722,7 +3649,6 @@ declare const Office: z.ZodObject<z.objectUtil.extendShape<{
|
|
3722
3649
|
type: "DISPLAY_ON_REVIEW";
|
3723
3650
|
conditional: import(".").JSONSchema;
|
3724
3651
|
})[] | undefined;
|
3725
|
-
secured?: boolean | undefined;
|
3726
3652
|
placeholder?: {
|
3727
3653
|
id: string;
|
3728
3654
|
description: string;
|
@@ -3748,7 +3674,6 @@ declare const Address: z.ZodObject<z.objectUtil.extendShape<{
|
|
3748
3674
|
}>>;
|
3749
3675
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
3750
3676
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
3751
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
3752
3677
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
3753
3678
|
id: string;
|
3754
3679
|
description: string;
|
@@ -3894,7 +3819,6 @@ declare const Address: z.ZodObject<z.objectUtil.extendShape<{
|
|
3894
3819
|
type: "DISPLAY_ON_REVIEW";
|
3895
3820
|
conditional: import(".").JSONSchema;
|
3896
3821
|
})[] | undefined;
|
3897
|
-
secured?: boolean | undefined;
|
3898
3822
|
placeholder?: TranslationConfig | undefined;
|
3899
3823
|
helperText?: TranslationConfig | undefined;
|
3900
3824
|
hideLabel?: boolean | undefined;
|
@@ -3957,7 +3881,6 @@ declare const Address: z.ZodObject<z.objectUtil.extendShape<{
|
|
3957
3881
|
type: "DISPLAY_ON_REVIEW";
|
3958
3882
|
conditional: import(".").JSONSchema;
|
3959
3883
|
})[] | undefined;
|
3960
|
-
secured?: boolean | undefined;
|
3961
3884
|
placeholder?: {
|
3962
3885
|
id: string;
|
3963
3886
|
description: string;
|
@@ -4043,7 +3966,6 @@ declare const DataField: z.ZodObject<z.objectUtil.extendShape<{
|
|
4043
3966
|
}>>;
|
4044
3967
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
4045
3968
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4046
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4047
3969
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
4048
3970
|
id: string;
|
4049
3971
|
description: string;
|
@@ -4178,7 +4100,6 @@ declare const DataField: z.ZodObject<z.objectUtil.extendShape<{
|
|
4178
4100
|
type: "DISPLAY_ON_REVIEW";
|
4179
4101
|
conditional: import(".").JSONSchema;
|
4180
4102
|
})[] | undefined;
|
4181
|
-
secured?: boolean | undefined;
|
4182
4103
|
placeholder?: TranslationConfig | undefined;
|
4183
4104
|
helperText?: TranslationConfig | undefined;
|
4184
4105
|
hideLabel?: boolean | undefined;
|
@@ -4233,7 +4154,6 @@ declare const DataField: z.ZodObject<z.objectUtil.extendShape<{
|
|
4233
4154
|
type: "DISPLAY_ON_REVIEW";
|
4234
4155
|
conditional: import(".").JSONSchema;
|
4235
4156
|
})[] | undefined;
|
4236
|
-
secured?: boolean | undefined;
|
4237
4157
|
placeholder?: {
|
4238
4158
|
id: string;
|
4239
4159
|
description: string;
|
@@ -4267,7 +4187,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4267
4187
|
}>>;
|
4268
4188
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
4269
4189
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4270
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4271
4190
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
4272
4191
|
id: string;
|
4273
4192
|
description: string;
|
@@ -4413,7 +4332,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4413
4332
|
type: "DISPLAY_ON_REVIEW";
|
4414
4333
|
conditional: import(".").JSONSchema;
|
4415
4334
|
})[] | undefined;
|
4416
|
-
secured?: boolean | undefined;
|
4417
4335
|
placeholder?: TranslationConfig | undefined;
|
4418
4336
|
helperText?: TranslationConfig | undefined;
|
4419
4337
|
hideLabel?: boolean | undefined;
|
@@ -4476,7 +4394,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4476
4394
|
type: "DISPLAY_ON_REVIEW";
|
4477
4395
|
conditional: import(".").JSONSchema;
|
4478
4396
|
})[] | undefined;
|
4479
|
-
secured?: boolean | undefined;
|
4480
4397
|
placeholder?: {
|
4481
4398
|
id: string;
|
4482
4399
|
description: string;
|
@@ -4528,7 +4445,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4528
4445
|
}>>;
|
4529
4446
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
4530
4447
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4531
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4532
4448
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
4533
4449
|
id: string;
|
4534
4450
|
description: string;
|
@@ -4620,7 +4536,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4620
4536
|
type: "DISPLAY_ON_REVIEW";
|
4621
4537
|
conditional: import(".").JSONSchema;
|
4622
4538
|
})[] | undefined;
|
4623
|
-
secured?: boolean | undefined;
|
4624
4539
|
placeholder?: TranslationConfig | undefined;
|
4625
4540
|
helperText?: TranslationConfig | undefined;
|
4626
4541
|
hideLabel?: boolean | undefined;
|
@@ -4661,7 +4576,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4661
4576
|
type: "DISPLAY_ON_REVIEW";
|
4662
4577
|
conditional: import(".").JSONSchema;
|
4663
4578
|
})[] | undefined;
|
4664
|
-
secured?: boolean | undefined;
|
4665
4579
|
placeholder?: {
|
4666
4580
|
id: string;
|
4667
4581
|
description: string;
|
@@ -4699,7 +4613,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4699
4613
|
}>>;
|
4700
4614
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
4701
4615
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4702
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4703
4616
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
4704
4617
|
id: string;
|
4705
4618
|
description: string;
|
@@ -4791,7 +4704,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4791
4704
|
type: "DISPLAY_ON_REVIEW";
|
4792
4705
|
conditional: import(".").JSONSchema;
|
4793
4706
|
})[] | undefined;
|
4794
|
-
secured?: boolean | undefined;
|
4795
4707
|
placeholder?: TranslationConfig | undefined;
|
4796
4708
|
helperText?: TranslationConfig | undefined;
|
4797
4709
|
hideLabel?: boolean | undefined;
|
@@ -4832,7 +4744,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4832
4744
|
type: "DISPLAY_ON_REVIEW";
|
4833
4745
|
conditional: import(".").JSONSchema;
|
4834
4746
|
})[] | undefined;
|
4835
|
-
secured?: boolean | undefined;
|
4836
4747
|
placeholder?: {
|
4837
4748
|
id: string;
|
4838
4749
|
description: string;
|
@@ -4870,7 +4781,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4870
4781
|
}>>;
|
4871
4782
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
4872
4783
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4873
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4874
4784
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
4875
4785
|
id: string;
|
4876
4786
|
description: string;
|
@@ -4965,7 +4875,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4965
4875
|
type: "DISPLAY_ON_REVIEW";
|
4966
4876
|
conditional: import(".").JSONSchema;
|
4967
4877
|
})[] | undefined;
|
4968
|
-
secured?: boolean | undefined;
|
4969
4878
|
placeholder?: TranslationConfig | undefined;
|
4970
4879
|
helperText?: TranslationConfig | undefined;
|
4971
4880
|
hideLabel?: boolean | undefined;
|
@@ -5007,7 +4916,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5007
4916
|
type: "DISPLAY_ON_REVIEW";
|
5008
4917
|
conditional: import(".").JSONSchema;
|
5009
4918
|
})[] | undefined;
|
5010
|
-
secured?: boolean | undefined;
|
5011
4919
|
placeholder?: {
|
5012
4920
|
id: string;
|
5013
4921
|
description: string;
|
@@ -5046,7 +4954,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5046
4954
|
}>>;
|
5047
4955
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
5048
4956
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5049
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5050
4957
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5051
4958
|
id: string;
|
5052
4959
|
description: string;
|
@@ -5121,7 +5028,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5121
5028
|
type: "DISPLAY_ON_REVIEW";
|
5122
5029
|
conditional: import(".").JSONSchema;
|
5123
5030
|
})[] | undefined;
|
5124
|
-
secured?: boolean | undefined;
|
5125
5031
|
placeholder?: TranslationConfig | undefined;
|
5126
5032
|
helperText?: TranslationConfig | undefined;
|
5127
5033
|
hideLabel?: boolean | undefined;
|
@@ -5159,7 +5065,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5159
5065
|
type: "DISPLAY_ON_REVIEW";
|
5160
5066
|
conditional: import(".").JSONSchema;
|
5161
5067
|
})[] | undefined;
|
5162
|
-
secured?: boolean | undefined;
|
5163
5068
|
placeholder?: {
|
5164
5069
|
id: string;
|
5165
5070
|
description: string;
|
@@ -5190,7 +5095,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5190
5095
|
}>>;
|
5191
5096
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
5192
5097
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5193
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5194
5098
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5195
5099
|
id: string;
|
5196
5100
|
description: string;
|
@@ -5265,7 +5169,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5265
5169
|
type: "DISPLAY_ON_REVIEW";
|
5266
5170
|
conditional: import(".").JSONSchema;
|
5267
5171
|
})[] | undefined;
|
5268
|
-
secured?: boolean | undefined;
|
5269
5172
|
placeholder?: TranslationConfig | undefined;
|
5270
5173
|
helperText?: TranslationConfig | undefined;
|
5271
5174
|
hideLabel?: boolean | undefined;
|
@@ -5303,7 +5206,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5303
5206
|
type: "DISPLAY_ON_REVIEW";
|
5304
5207
|
conditional: import(".").JSONSchema;
|
5305
5208
|
})[] | undefined;
|
5306
|
-
secured?: boolean | undefined;
|
5307
5209
|
placeholder?: {
|
5308
5210
|
id: string;
|
5309
5211
|
description: string;
|
@@ -5334,7 +5236,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5334
5236
|
}>>;
|
5335
5237
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
5336
5238
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5337
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5338
5239
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5339
5240
|
id: string;
|
5340
5241
|
description: string;
|
@@ -5375,18 +5276,23 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5375
5276
|
configuration: z.ZodDefault<z.ZodObject<{
|
5376
5277
|
styles: z.ZodOptional<z.ZodObject<{
|
5377
5278
|
fontVariant: z.ZodOptional<z.ZodEnum<["reg12", "reg14", "reg16", "reg18", "h4", "h3", "h2", "h1"]>>;
|
5279
|
+
hint: z.ZodOptional<z.ZodBoolean>;
|
5378
5280
|
}, "strip", z.ZodTypeAny, {
|
5379
5281
|
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
5282
|
+
hint?: boolean | undefined;
|
5380
5283
|
}, {
|
5381
5284
|
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
5285
|
+
hint?: boolean | undefined;
|
5382
5286
|
}>>;
|
5383
5287
|
}, "strip", z.ZodTypeAny, {
|
5384
5288
|
styles?: {
|
5385
5289
|
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
5290
|
+
hint?: boolean | undefined;
|
5386
5291
|
} | undefined;
|
5387
5292
|
}, {
|
5388
5293
|
styles?: {
|
5389
5294
|
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
5295
|
+
hint?: boolean | undefined;
|
5390
5296
|
} | undefined;
|
5391
5297
|
}>>;
|
5392
5298
|
}>, "strip", z.ZodTypeAny, {
|
@@ -5396,6 +5302,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5396
5302
|
configuration: {
|
5397
5303
|
styles?: {
|
5398
5304
|
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
5305
|
+
hint?: boolean | undefined;
|
5399
5306
|
} | undefined;
|
5400
5307
|
};
|
5401
5308
|
parent?: {
|
@@ -5416,7 +5323,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5416
5323
|
type: "DISPLAY_ON_REVIEW";
|
5417
5324
|
conditional: import(".").JSONSchema;
|
5418
5325
|
})[] | undefined;
|
5419
|
-
secured?: boolean | undefined;
|
5420
5326
|
placeholder?: TranslationConfig | undefined;
|
5421
5327
|
helperText?: TranslationConfig | undefined;
|
5422
5328
|
hideLabel?: boolean | undefined;
|
@@ -5451,7 +5357,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5451
5357
|
type: "DISPLAY_ON_REVIEW";
|
5452
5358
|
conditional: import(".").JSONSchema;
|
5453
5359
|
})[] | undefined;
|
5454
|
-
secured?: boolean | undefined;
|
5455
5360
|
placeholder?: {
|
5456
5361
|
id: string;
|
5457
5362
|
description: string;
|
@@ -5467,6 +5372,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5467
5372
|
configuration?: {
|
5468
5373
|
styles?: {
|
5469
5374
|
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
5375
|
+
hint?: boolean | undefined;
|
5470
5376
|
} | undefined;
|
5471
5377
|
} | undefined;
|
5472
5378
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
@@ -5480,7 +5386,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5480
5386
|
}>>;
|
5481
5387
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
5482
5388
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5483
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5484
5389
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5485
5390
|
id: string;
|
5486
5391
|
description: string;
|
@@ -5579,7 +5484,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5579
5484
|
type: "DISPLAY_ON_REVIEW";
|
5580
5485
|
conditional: import(".").JSONSchema;
|
5581
5486
|
})[] | undefined;
|
5582
|
-
secured?: boolean | undefined;
|
5583
5487
|
placeholder?: TranslationConfig | undefined;
|
5584
5488
|
helperText?: TranslationConfig | undefined;
|
5585
5489
|
hideLabel?: boolean | undefined;
|
@@ -5627,7 +5531,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5627
5531
|
type: "DISPLAY_ON_REVIEW";
|
5628
5532
|
conditional: import(".").JSONSchema;
|
5629
5533
|
})[] | undefined;
|
5630
|
-
secured?: boolean | undefined;
|
5631
5534
|
placeholder?: {
|
5632
5535
|
id: string;
|
5633
5536
|
description: string;
|
@@ -5656,7 +5559,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5656
5559
|
}>>;
|
5657
5560
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
5658
5561
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5659
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5660
5562
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5661
5563
|
id: string;
|
5662
5564
|
description: string;
|
@@ -5744,7 +5646,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5744
5646
|
type: "DISPLAY_ON_REVIEW";
|
5745
5647
|
conditional: import(".").JSONSchema;
|
5746
5648
|
})[] | undefined;
|
5747
|
-
secured?: boolean | undefined;
|
5748
5649
|
placeholder?: TranslationConfig | undefined;
|
5749
5650
|
helperText?: TranslationConfig | undefined;
|
5750
5651
|
hideLabel?: boolean | undefined;
|
@@ -5784,7 +5685,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5784
5685
|
type: "DISPLAY_ON_REVIEW";
|
5785
5686
|
conditional: import(".").JSONSchema;
|
5786
5687
|
})[] | undefined;
|
5787
|
-
secured?: boolean | undefined;
|
5788
5688
|
placeholder?: {
|
5789
5689
|
id: string;
|
5790
5690
|
description: string;
|
@@ -5813,7 +5713,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5813
5713
|
}>>;
|
5814
5714
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
5815
5715
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5816
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5817
5716
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5818
5717
|
id: string;
|
5819
5718
|
description: string;
|
@@ -5873,7 +5772,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5873
5772
|
type: "DISPLAY_ON_REVIEW";
|
5874
5773
|
conditional: import(".").JSONSchema;
|
5875
5774
|
})[] | undefined;
|
5876
|
-
secured?: boolean | undefined;
|
5877
5775
|
placeholder?: TranslationConfig | undefined;
|
5878
5776
|
helperText?: TranslationConfig | undefined;
|
5879
5777
|
hideLabel?: boolean | undefined;
|
@@ -5908,7 +5806,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5908
5806
|
type: "DISPLAY_ON_REVIEW";
|
5909
5807
|
conditional: import(".").JSONSchema;
|
5910
5808
|
})[] | undefined;
|
5911
|
-
secured?: boolean | undefined;
|
5912
5809
|
placeholder?: {
|
5913
5810
|
id: string;
|
5914
5811
|
description: string;
|
@@ -5932,7 +5829,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5932
5829
|
}>>;
|
5933
5830
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
5934
5831
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5935
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5936
5832
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5937
5833
|
id: string;
|
5938
5834
|
description: string;
|
@@ -6014,7 +5910,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6014
5910
|
type: "DISPLAY_ON_REVIEW";
|
6015
5911
|
conditional: import(".").JSONSchema;
|
6016
5912
|
})[] | undefined;
|
6017
|
-
secured?: boolean | undefined;
|
6018
5913
|
placeholder?: TranslationConfig | undefined;
|
6019
5914
|
helperText?: TranslationConfig | undefined;
|
6020
5915
|
hideLabel?: boolean | undefined;
|
@@ -6057,7 +5952,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6057
5952
|
type: "DISPLAY_ON_REVIEW";
|
6058
5953
|
conditional: import(".").JSONSchema;
|
6059
5954
|
})[] | undefined;
|
6060
|
-
secured?: boolean | undefined;
|
6061
5955
|
placeholder?: {
|
6062
5956
|
id: string;
|
6063
5957
|
description: string;
|
@@ -6081,7 +5975,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6081
5975
|
}>>;
|
6082
5976
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
6083
5977
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6084
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6085
5978
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6086
5979
|
id: string;
|
6087
5980
|
description: string;
|
@@ -6140,14 +6033,10 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6140
6033
|
description: string;
|
6141
6034
|
defaultMessage: string;
|
6142
6035
|
}>>;
|
6143
|
-
includeMiddlename: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6144
|
-
searchMode: z.ZodOptional<z.ZodBoolean>;
|
6145
6036
|
}, "strip", z.ZodTypeAny, {
|
6146
6037
|
maxLength?: number | undefined;
|
6147
6038
|
prefix?: TranslationConfig | undefined;
|
6148
6039
|
postfix?: TranslationConfig | undefined;
|
6149
|
-
includeMiddlename?: boolean | undefined;
|
6150
|
-
searchMode?: boolean | undefined;
|
6151
6040
|
}, {
|
6152
6041
|
maxLength?: number | undefined;
|
6153
6042
|
prefix?: {
|
@@ -6160,8 +6049,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6160
6049
|
description: string;
|
6161
6050
|
defaultMessage: string;
|
6162
6051
|
} | undefined;
|
6163
|
-
includeMiddlename?: boolean | undefined;
|
6164
|
-
searchMode?: boolean | undefined;
|
6165
6052
|
}>>;
|
6166
6053
|
}>, "strip", z.ZodTypeAny, {
|
6167
6054
|
type: "NAME";
|
@@ -6185,7 +6072,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6185
6072
|
type: "DISPLAY_ON_REVIEW";
|
6186
6073
|
conditional: import(".").JSONSchema;
|
6187
6074
|
})[] | undefined;
|
6188
|
-
secured?: boolean | undefined;
|
6189
6075
|
placeholder?: TranslationConfig | undefined;
|
6190
6076
|
helperText?: TranslationConfig | undefined;
|
6191
6077
|
hideLabel?: boolean | undefined;
|
@@ -6197,8 +6083,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6197
6083
|
maxLength?: number | undefined;
|
6198
6084
|
prefix?: TranslationConfig | undefined;
|
6199
6085
|
postfix?: TranslationConfig | undefined;
|
6200
|
-
includeMiddlename?: boolean | undefined;
|
6201
|
-
searchMode?: boolean | undefined;
|
6202
6086
|
} | undefined;
|
6203
6087
|
}, {
|
6204
6088
|
type: "NAME";
|
@@ -6230,7 +6114,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6230
6114
|
type: "DISPLAY_ON_REVIEW";
|
6231
6115
|
conditional: import(".").JSONSchema;
|
6232
6116
|
})[] | undefined;
|
6233
|
-
secured?: boolean | undefined;
|
6234
6117
|
placeholder?: {
|
6235
6118
|
id: string;
|
6236
6119
|
description: string;
|
@@ -6258,8 +6141,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6258
6141
|
description: string;
|
6259
6142
|
defaultMessage: string;
|
6260
6143
|
} | undefined;
|
6261
|
-
includeMiddlename?: boolean | undefined;
|
6262
|
-
searchMode?: boolean | undefined;
|
6263
6144
|
} | undefined;
|
6264
6145
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
6265
6146
|
id: z.ZodString;
|
@@ -6272,7 +6153,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6272
6153
|
}>>;
|
6273
6154
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
6274
6155
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6275
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6276
6156
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6277
6157
|
id: string;
|
6278
6158
|
description: string;
|
@@ -6332,7 +6212,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6332
6212
|
type: "DISPLAY_ON_REVIEW";
|
6333
6213
|
conditional: import(".").JSONSchema;
|
6334
6214
|
})[] | undefined;
|
6335
|
-
secured?: boolean | undefined;
|
6336
6215
|
placeholder?: TranslationConfig | undefined;
|
6337
6216
|
helperText?: TranslationConfig | undefined;
|
6338
6217
|
hideLabel?: boolean | undefined;
|
@@ -6367,7 +6246,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6367
6246
|
type: "DISPLAY_ON_REVIEW";
|
6368
6247
|
conditional: import(".").JSONSchema;
|
6369
6248
|
})[] | undefined;
|
6370
|
-
secured?: boolean | undefined;
|
6371
6249
|
placeholder?: {
|
6372
6250
|
id: string;
|
6373
6251
|
description: string;
|
@@ -6391,7 +6269,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6391
6269
|
}>>;
|
6392
6270
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
6393
6271
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6394
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6395
6272
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6396
6273
|
id: string;
|
6397
6274
|
description: string;
|
@@ -6451,7 +6328,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6451
6328
|
type: "DISPLAY_ON_REVIEW";
|
6452
6329
|
conditional: import(".").JSONSchema;
|
6453
6330
|
})[] | undefined;
|
6454
|
-
secured?: boolean | undefined;
|
6455
6331
|
placeholder?: TranslationConfig | undefined;
|
6456
6332
|
helperText?: TranslationConfig | undefined;
|
6457
6333
|
hideLabel?: boolean | undefined;
|
@@ -6486,7 +6362,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6486
6362
|
type: "DISPLAY_ON_REVIEW";
|
6487
6363
|
conditional: import(".").JSONSchema;
|
6488
6364
|
})[] | undefined;
|
6489
|
-
secured?: boolean | undefined;
|
6490
6365
|
placeholder?: {
|
6491
6366
|
id: string;
|
6492
6367
|
description: string;
|
@@ -6510,7 +6385,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6510
6385
|
}>>;
|
6511
6386
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
6512
6387
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6513
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6514
6388
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6515
6389
|
id: string;
|
6516
6390
|
description: string;
|
@@ -6570,7 +6444,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6570
6444
|
type: "DISPLAY_ON_REVIEW";
|
6571
6445
|
conditional: import(".").JSONSchema;
|
6572
6446
|
})[] | undefined;
|
6573
|
-
secured?: boolean | undefined;
|
6574
6447
|
placeholder?: TranslationConfig | undefined;
|
6575
6448
|
helperText?: TranslationConfig | undefined;
|
6576
6449
|
hideLabel?: boolean | undefined;
|
@@ -6605,7 +6478,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6605
6478
|
type: "DISPLAY_ON_REVIEW";
|
6606
6479
|
conditional: import(".").JSONSchema;
|
6607
6480
|
})[] | undefined;
|
6608
|
-
secured?: boolean | undefined;
|
6609
6481
|
placeholder?: {
|
6610
6482
|
id: string;
|
6611
6483
|
description: string;
|
@@ -6629,7 +6501,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6629
6501
|
}>>;
|
6630
6502
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
6631
6503
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6632
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6633
6504
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6634
6505
|
id: string;
|
6635
6506
|
description: string;
|
@@ -6743,7 +6614,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6743
6614
|
type: "DISPLAY_ON_REVIEW";
|
6744
6615
|
conditional: import(".").JSONSchema;
|
6745
6616
|
})[] | undefined;
|
6746
|
-
secured?: boolean | undefined;
|
6747
6617
|
placeholder?: TranslationConfig | undefined;
|
6748
6618
|
helperText?: TranslationConfig | undefined;
|
6749
6619
|
hideLabel?: boolean | undefined;
|
@@ -6782,7 +6652,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6782
6652
|
type: "DISPLAY_ON_REVIEW";
|
6783
6653
|
conditional: import(".").JSONSchema;
|
6784
6654
|
})[] | undefined;
|
6785
|
-
secured?: boolean | undefined;
|
6786
6655
|
placeholder?: {
|
6787
6656
|
id: string;
|
6788
6657
|
description: string;
|
@@ -6822,7 +6691,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6822
6691
|
}>>;
|
6823
6692
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
6824
6693
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6825
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6826
6694
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6827
6695
|
id: string;
|
6828
6696
|
description: string;
|
@@ -6882,7 +6750,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6882
6750
|
type: "DISPLAY_ON_REVIEW";
|
6883
6751
|
conditional: import(".").JSONSchema;
|
6884
6752
|
})[] | undefined;
|
6885
|
-
secured?: boolean | undefined;
|
6886
6753
|
placeholder?: TranslationConfig | undefined;
|
6887
6754
|
helperText?: TranslationConfig | undefined;
|
6888
6755
|
hideLabel?: boolean | undefined;
|
@@ -6917,7 +6784,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6917
6784
|
type: "DISPLAY_ON_REVIEW";
|
6918
6785
|
conditional: import(".").JSONSchema;
|
6919
6786
|
})[] | undefined;
|
6920
|
-
secured?: boolean | undefined;
|
6921
6787
|
placeholder?: {
|
6922
6788
|
id: string;
|
6923
6789
|
description: string;
|
@@ -6941,7 +6807,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6941
6807
|
}>>;
|
6942
6808
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
6943
6809
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6944
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6945
6810
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6946
6811
|
id: string;
|
6947
6812
|
description: string;
|
@@ -7027,7 +6892,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7027
6892
|
type: "DISPLAY_ON_REVIEW";
|
7028
6893
|
conditional: import(".").JSONSchema;
|
7029
6894
|
})[] | undefined;
|
7030
|
-
secured?: boolean | undefined;
|
7031
6895
|
placeholder?: TranslationConfig | undefined;
|
7032
6896
|
helperText?: TranslationConfig | undefined;
|
7033
6897
|
hideLabel?: boolean | undefined;
|
@@ -7068,7 +6932,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7068
6932
|
type: "DISPLAY_ON_REVIEW";
|
7069
6933
|
conditional: import(".").JSONSchema;
|
7070
6934
|
})[] | undefined;
|
7071
|
-
secured?: boolean | undefined;
|
7072
6935
|
placeholder?: {
|
7073
6936
|
id: string;
|
7074
6937
|
description: string;
|
@@ -7092,7 +6955,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7092
6955
|
}>>;
|
7093
6956
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
7094
6957
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7095
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7096
6958
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7097
6959
|
id: string;
|
7098
6960
|
description: string;
|
@@ -7151,7 +7013,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7151
7013
|
type: "DISPLAY_ON_REVIEW";
|
7152
7014
|
conditional: import(".").JSONSchema;
|
7153
7015
|
})[] | undefined;
|
7154
|
-
secured?: boolean | undefined;
|
7155
7016
|
placeholder?: TranslationConfig | undefined;
|
7156
7017
|
helperText?: TranslationConfig | undefined;
|
7157
7018
|
hideLabel?: boolean | undefined;
|
@@ -7185,7 +7046,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7185
7046
|
type: "DISPLAY_ON_REVIEW";
|
7186
7047
|
conditional: import(".").JSONSchema;
|
7187
7048
|
})[] | undefined;
|
7188
|
-
secured?: boolean | undefined;
|
7189
7049
|
placeholder?: {
|
7190
7050
|
id: string;
|
7191
7051
|
description: string;
|
@@ -7208,7 +7068,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7208
7068
|
}>>;
|
7209
7069
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
7210
7070
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7211
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7212
7071
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7213
7072
|
id: string;
|
7214
7073
|
description: string;
|
@@ -7268,7 +7127,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7268
7127
|
type: "DISPLAY_ON_REVIEW";
|
7269
7128
|
conditional: import(".").JSONSchema;
|
7270
7129
|
})[] | undefined;
|
7271
|
-
secured?: boolean | undefined;
|
7272
7130
|
placeholder?: TranslationConfig | undefined;
|
7273
7131
|
helperText?: TranslationConfig | undefined;
|
7274
7132
|
hideLabel?: boolean | undefined;
|
@@ -7303,7 +7161,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7303
7161
|
type: "DISPLAY_ON_REVIEW";
|
7304
7162
|
conditional: import(".").JSONSchema;
|
7305
7163
|
})[] | undefined;
|
7306
|
-
secured?: boolean | undefined;
|
7307
7164
|
placeholder?: {
|
7308
7165
|
id: string;
|
7309
7166
|
description: string;
|
@@ -7327,7 +7184,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7327
7184
|
}>>;
|
7328
7185
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
7329
7186
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7330
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7331
7187
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7332
7188
|
id: string;
|
7333
7189
|
description: string;
|
@@ -7387,7 +7243,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7387
7243
|
type: "DISPLAY_ON_REVIEW";
|
7388
7244
|
conditional: import(".").JSONSchema;
|
7389
7245
|
})[] | undefined;
|
7390
|
-
secured?: boolean | undefined;
|
7391
7246
|
placeholder?: TranslationConfig | undefined;
|
7392
7247
|
helperText?: TranslationConfig | undefined;
|
7393
7248
|
hideLabel?: boolean | undefined;
|
@@ -7422,7 +7277,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7422
7277
|
type: "DISPLAY_ON_REVIEW";
|
7423
7278
|
conditional: import(".").JSONSchema;
|
7424
7279
|
})[] | undefined;
|
7425
|
-
secured?: boolean | undefined;
|
7426
7280
|
placeholder?: {
|
7427
7281
|
id: string;
|
7428
7282
|
description: string;
|
@@ -7446,7 +7300,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7446
7300
|
}>>;
|
7447
7301
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
7448
7302
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7449
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7450
7303
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7451
7304
|
id: string;
|
7452
7305
|
description: string;
|
@@ -7506,7 +7359,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7506
7359
|
type: "DISPLAY_ON_REVIEW";
|
7507
7360
|
conditional: import(".").JSONSchema;
|
7508
7361
|
})[] | undefined;
|
7509
|
-
secured?: boolean | undefined;
|
7510
7362
|
placeholder?: TranslationConfig | undefined;
|
7511
7363
|
helperText?: TranslationConfig | undefined;
|
7512
7364
|
hideLabel?: boolean | undefined;
|
@@ -7541,7 +7393,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7541
7393
|
type: "DISPLAY_ON_REVIEW";
|
7542
7394
|
conditional: import(".").JSONSchema;
|
7543
7395
|
})[] | undefined;
|
7544
|
-
secured?: boolean | undefined;
|
7545
7396
|
placeholder?: {
|
7546
7397
|
id: string;
|
7547
7398
|
description: string;
|
@@ -7565,7 +7416,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7565
7416
|
}>>;
|
7566
7417
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
7567
7418
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7568
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7569
7419
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7570
7420
|
id: string;
|
7571
7421
|
description: string;
|
@@ -7645,7 +7495,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7645
7495
|
type: "DISPLAY_ON_REVIEW";
|
7646
7496
|
conditional: import(".").JSONSchema;
|
7647
7497
|
})[] | undefined;
|
7648
|
-
secured?: boolean | undefined;
|
7649
7498
|
placeholder?: TranslationConfig | undefined;
|
7650
7499
|
helperText?: TranslationConfig | undefined;
|
7651
7500
|
hideLabel?: boolean | undefined;
|
@@ -7685,7 +7534,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7685
7534
|
type: "DISPLAY_ON_REVIEW";
|
7686
7535
|
conditional: import(".").JSONSchema;
|
7687
7536
|
})[] | undefined;
|
7688
|
-
secured?: boolean | undefined;
|
7689
7537
|
placeholder?: {
|
7690
7538
|
id: string;
|
7691
7539
|
description: string;
|
@@ -7713,7 +7561,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7713
7561
|
}>>;
|
7714
7562
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
7715
7563
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7716
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7717
7564
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7718
7565
|
id: string;
|
7719
7566
|
description: string;
|
@@ -7780,7 +7627,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7780
7627
|
type: "DISPLAY_ON_REVIEW";
|
7781
7628
|
conditional: import(".").JSONSchema;
|
7782
7629
|
})[] | undefined;
|
7783
|
-
secured?: boolean | undefined;
|
7784
7630
|
placeholder?: TranslationConfig | undefined;
|
7785
7631
|
helperText?: TranslationConfig | undefined;
|
7786
7632
|
hideLabel?: boolean | undefined;
|
@@ -7818,7 +7664,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7818
7664
|
type: "DISPLAY_ON_REVIEW";
|
7819
7665
|
conditional: import(".").JSONSchema;
|
7820
7666
|
})[] | undefined;
|
7821
|
-
secured?: boolean | undefined;
|
7822
7667
|
placeholder?: {
|
7823
7668
|
id: string;
|
7824
7669
|
description: string;
|
@@ -7845,7 +7690,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7845
7690
|
}>>;
|
7846
7691
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
7847
7692
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7848
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7849
7693
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7850
7694
|
id: string;
|
7851
7695
|
description: string;
|
@@ -7956,7 +7800,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7956
7800
|
type: "DISPLAY_ON_REVIEW";
|
7957
7801
|
conditional: import(".").JSONSchema;
|
7958
7802
|
})[] | undefined;
|
7959
|
-
secured?: boolean | undefined;
|
7960
7803
|
placeholder?: TranslationConfig | undefined;
|
7961
7804
|
helperText?: TranslationConfig | undefined;
|
7962
7805
|
hideLabel?: boolean | undefined;
|
@@ -8004,7 +7847,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8004
7847
|
type: "DISPLAY_ON_REVIEW";
|
8005
7848
|
conditional: import(".").JSONSchema;
|
8006
7849
|
})[] | undefined;
|
8007
|
-
secured?: boolean | undefined;
|
8008
7850
|
placeholder?: {
|
8009
7851
|
id: string;
|
8010
7852
|
description: string;
|
@@ -8037,7 +7879,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8037
7879
|
}>>;
|
8038
7880
|
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
8039
7881
|
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
8040
|
-
secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
8041
7882
|
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
8042
7883
|
id: string;
|
8043
7884
|
description: string;
|
@@ -8172,7 +8013,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8172
8013
|
type: "DISPLAY_ON_REVIEW";
|
8173
8014
|
conditional: import(".").JSONSchema;
|
8174
8015
|
})[] | undefined;
|
8175
|
-
secured?: boolean | undefined;
|
8176
8016
|
placeholder?: TranslationConfig | undefined;
|
8177
8017
|
helperText?: TranslationConfig | undefined;
|
8178
8018
|
hideLabel?: boolean | undefined;
|
@@ -8227,7 +8067,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8227
8067
|
type: "DISPLAY_ON_REVIEW";
|
8228
8068
|
conditional: import(".").JSONSchema;
|
8229
8069
|
})[] | undefined;
|
8230
|
-
secured?: boolean | undefined;
|
8231
8070
|
placeholder?: {
|
8232
8071
|
id: string;
|
8233
8072
|
description: string;
|