@opencrvs/toolkit 1.8.0-rc.fe4d9d5 → 1.8.0-rc.fe7c504

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