@opencrvs/toolkit 1.8.0-rc.f8aa0c5 → 1.8.0-rc.f8be155

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 (30) hide show
  1. package/dist/commons/api/router.d.ts +9861 -5350
  2. package/dist/commons/events/ActionConfig.d.ts +0 -2856
  3. package/dist/commons/events/ActionDocument.d.ts +706 -805
  4. package/dist/commons/events/ActionInput.d.ts +602 -602
  5. package/dist/commons/events/AdvancedSearchConfig.d.ts +18 -222
  6. package/dist/commons/events/CompositeFieldValue.d.ts +6 -6
  7. package/dist/commons/events/CountryConfigQueryInput.d.ts +412 -1160
  8. package/dist/commons/events/Draft.d.ts +54 -59
  9. package/dist/commons/events/EventConfig.d.ts +0 -1564
  10. package/dist/commons/events/EventDocument.d.ts +441 -516
  11. package/dist/commons/events/EventIndex.d.ts +210 -630
  12. package/dist/commons/events/EventMetadata.d.ts +7 -49
  13. package/dist/commons/events/FieldConfig.d.ts +0 -198
  14. package/dist/commons/events/FieldTypeMapping.d.ts +16 -16
  15. package/dist/commons/events/FieldValue.d.ts +12 -12
  16. package/dist/commons/events/FormConfig.d.ts +0 -1200
  17. package/dist/commons/events/PageConfig.d.ts +0 -288
  18. package/dist/commons/events/WorkqueueColumnConfig.d.ts +11 -11
  19. package/dist/commons/events/WorkqueueConfig.d.ts +750 -3247
  20. package/dist/commons/events/defineConfig.d.ts +0 -316
  21. package/dist/commons/events/field.d.ts +0 -5
  22. package/dist/commons/events/index.d.ts +0 -1
  23. package/dist/commons/events/scopes.d.ts +2 -1
  24. package/dist/commons/events/test.utils.d.ts +15 -37
  25. package/dist/commons/events/utils.d.ts +9 -466
  26. package/dist/conditionals/index.js +17 -20
  27. package/dist/events/index.js +654 -1053
  28. package/dist/scopes/index.d.ts +7 -96
  29. package/dist/scopes/index.js +26 -105
  30. package/package.json +3 -3
@@ -8,25 +8,6 @@ export declare const FieldReference: z.ZodObject<{
8
8
  }, {
9
9
  $$field: string;
10
10
  }>;
11
- export declare const ValidationConfig: z.ZodObject<{
12
- validator: z.ZodType<import(".").JSONSchema, z.ZodTypeDef, import(".").JSONSchema>;
13
- message: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
14
- id: string;
15
- description: string;
16
- defaultMessage: string;
17
- }>;
18
- }, "strip", z.ZodTypeAny, {
19
- message: TranslationConfig;
20
- validator: import(".").JSONSchema;
21
- }, {
22
- message: {
23
- id: string;
24
- description: string;
25
- defaultMessage: string;
26
- };
27
- validator: import(".").JSONSchema;
28
- }>;
29
- export type ValidationConfig = z.infer<typeof ValidationConfig>;
30
11
  declare const BaseField: z.ZodObject<{
31
12
  id: z.ZodString;
32
13
  parent: z.ZodOptional<z.ZodObject<{
@@ -38,7 +19,6 @@ declare const BaseField: z.ZodObject<{
38
19
  }>>;
39
20
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
40
21
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
41
- secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
42
22
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
43
23
  id: string;
44
24
  description: string;
@@ -94,7 +74,6 @@ declare const BaseField: z.ZodObject<{
94
74
  type: "DISPLAY_ON_REVIEW";
95
75
  conditional: import(".").JSONSchema;
96
76
  })[] | undefined;
97
- secured?: boolean | undefined;
98
77
  placeholder?: TranslationConfig | undefined;
99
78
  helperText?: TranslationConfig | undefined;
100
79
  hideLabel?: boolean | undefined;
@@ -127,7 +106,6 @@ declare const BaseField: z.ZodObject<{
127
106
  type: "DISPLAY_ON_REVIEW";
128
107
  conditional: import(".").JSONSchema;
129
108
  })[] | undefined;
130
- secured?: boolean | undefined;
131
109
  placeholder?: {
132
110
  id: string;
133
111
  description: string;
@@ -152,7 +130,6 @@ declare const Divider: z.ZodObject<z.objectUtil.extendShape<{
152
130
  }>>;
153
131
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
154
132
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
155
- secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
156
133
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
157
134
  id: string;
158
135
  description: string;
@@ -211,7 +188,6 @@ declare const Divider: z.ZodObject<z.objectUtil.extendShape<{
211
188
  type: "DISPLAY_ON_REVIEW";
212
189
  conditional: import(".").JSONSchema;
213
190
  })[] | undefined;
214
- secured?: boolean | undefined;
215
191
  placeholder?: TranslationConfig | undefined;
216
192
  helperText?: TranslationConfig | undefined;
217
193
  hideLabel?: boolean | undefined;
@@ -245,7 +221,6 @@ declare const Divider: z.ZodObject<z.objectUtil.extendShape<{
245
221
  type: "DISPLAY_ON_REVIEW";
246
222
  conditional: import(".").JSONSchema;
247
223
  })[] | undefined;
248
- secured?: boolean | undefined;
249
224
  placeholder?: {
250
225
  id: string;
251
226
  description: string;
@@ -270,7 +245,6 @@ declare const TextField: z.ZodObject<z.objectUtil.extendShape<{
270
245
  }>>;
271
246
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
272
247
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
273
- secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
274
248
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
275
249
  id: string;
276
250
  description: string;
@@ -362,7 +336,6 @@ declare const TextField: z.ZodObject<z.objectUtil.extendShape<{
362
336
  type: "DISPLAY_ON_REVIEW";
363
337
  conditional: import(".").JSONSchema;
364
338
  })[] | undefined;
365
- secured?: boolean | undefined;
366
339
  placeholder?: TranslationConfig | undefined;
367
340
  helperText?: TranslationConfig | undefined;
368
341
  hideLabel?: boolean | undefined;
@@ -403,7 +376,6 @@ declare const TextField: z.ZodObject<z.objectUtil.extendShape<{
403
376
  type: "DISPLAY_ON_REVIEW";
404
377
  conditional: import(".").JSONSchema;
405
378
  })[] | undefined;
406
- secured?: boolean | undefined;
407
379
  placeholder?: {
408
380
  id: string;
409
381
  description: string;
@@ -443,7 +415,6 @@ declare const NumberField: z.ZodObject<z.objectUtil.extendShape<{
443
415
  }>>;
444
416
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
445
417
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
446
- secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
447
418
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
448
419
  id: string;
449
420
  description: string;
@@ -535,7 +506,6 @@ declare const NumberField: z.ZodObject<z.objectUtil.extendShape<{
535
506
  type: "DISPLAY_ON_REVIEW";
536
507
  conditional: import(".").JSONSchema;
537
508
  })[] | undefined;
538
- secured?: boolean | undefined;
539
509
  placeholder?: TranslationConfig | undefined;
540
510
  helperText?: TranslationConfig | undefined;
541
511
  hideLabel?: boolean | undefined;
@@ -576,7 +546,6 @@ declare const NumberField: z.ZodObject<z.objectUtil.extendShape<{
576
546
  type: "DISPLAY_ON_REVIEW";
577
547
  conditional: import(".").JSONSchema;
578
548
  })[] | undefined;
579
- secured?: boolean | undefined;
580
549
  placeholder?: {
581
550
  id: string;
582
551
  description: string;
@@ -615,7 +584,6 @@ declare const TextAreaField: z.ZodObject<z.objectUtil.extendShape<{
615
584
  }>>;
616
585
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
617
586
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
618
- secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
619
587
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
620
588
  id: string;
621
589
  description: string;
@@ -710,7 +678,6 @@ declare const TextAreaField: z.ZodObject<z.objectUtil.extendShape<{
710
678
  type: "DISPLAY_ON_REVIEW";
711
679
  conditional: import(".").JSONSchema;
712
680
  })[] | undefined;
713
- secured?: boolean | undefined;
714
681
  placeholder?: TranslationConfig | undefined;
715
682
  helperText?: TranslationConfig | undefined;
716
683
  hideLabel?: boolean | undefined;
@@ -752,7 +719,6 @@ declare const TextAreaField: z.ZodObject<z.objectUtil.extendShape<{
752
719
  type: "DISPLAY_ON_REVIEW";
753
720
  conditional: import(".").JSONSchema;
754
721
  })[] | undefined;
755
- secured?: boolean | undefined;
756
722
  placeholder?: {
757
723
  id: string;
758
724
  description: string;
@@ -796,7 +762,6 @@ declare const SignatureField: z.ZodObject<z.objectUtil.extendShape<{
796
762
  }>>;
797
763
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
798
764
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
799
- secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
800
765
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
801
766
  id: string;
802
767
  description: string;
@@ -876,7 +841,6 @@ declare const SignatureField: z.ZodObject<z.objectUtil.extendShape<{
876
841
  type: "DISPLAY_ON_REVIEW";
877
842
  conditional: import(".").JSONSchema;
878
843
  })[] | undefined;
879
- secured?: boolean | undefined;
880
844
  placeholder?: TranslationConfig | undefined;
881
845
  helperText?: TranslationConfig | undefined;
882
846
  hideLabel?: boolean | undefined;
@@ -916,7 +880,6 @@ declare const SignatureField: z.ZodObject<z.objectUtil.extendShape<{
916
880
  type: "DISPLAY_ON_REVIEW";
917
881
  conditional: import(".").JSONSchema;
918
882
  })[] | undefined;
919
- secured?: boolean | undefined;
920
883
  placeholder?: {
921
884
  id: string;
922
885
  description: string;
@@ -946,7 +909,6 @@ export declare const EmailField: z.ZodObject<z.objectUtil.extendShape<{
946
909
  }>>;
947
910
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
948
911
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
949
- secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
950
912
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
951
913
  id: string;
952
914
  description: string;
@@ -1013,7 +975,6 @@ export declare const EmailField: z.ZodObject<z.objectUtil.extendShape<{
1013
975
  type: "DISPLAY_ON_REVIEW";
1014
976
  conditional: import(".").JSONSchema;
1015
977
  })[] | undefined;
1016
- secured?: boolean | undefined;
1017
978
  placeholder?: TranslationConfig | undefined;
1018
979
  helperText?: TranslationConfig | undefined;
1019
980
  hideLabel?: boolean | undefined;
@@ -1051,7 +1012,6 @@ export declare const EmailField: z.ZodObject<z.objectUtil.extendShape<{
1051
1012
  type: "DISPLAY_ON_REVIEW";
1052
1013
  conditional: import(".").JSONSchema;
1053
1014
  })[] | undefined;
1054
- secured?: boolean | undefined;
1055
1015
  placeholder?: {
1056
1016
  id: string;
1057
1017
  description: string;
@@ -1080,7 +1040,6 @@ declare const DateField: z.ZodObject<z.objectUtil.extendShape<{
1080
1040
  }>>;
1081
1041
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
1082
1042
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1083
- secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1084
1043
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
1085
1044
  id: string;
1086
1045
  description: string;
@@ -1155,7 +1114,6 @@ declare const DateField: z.ZodObject<z.objectUtil.extendShape<{
1155
1114
  type: "DISPLAY_ON_REVIEW";
1156
1115
  conditional: import(".").JSONSchema;
1157
1116
  })[] | undefined;
1158
- secured?: boolean | undefined;
1159
1117
  placeholder?: TranslationConfig | undefined;
1160
1118
  helperText?: TranslationConfig | undefined;
1161
1119
  hideLabel?: boolean | undefined;
@@ -1193,7 +1151,6 @@ declare const DateField: z.ZodObject<z.objectUtil.extendShape<{
1193
1151
  type: "DISPLAY_ON_REVIEW";
1194
1152
  conditional: import(".").JSONSchema;
1195
1153
  })[] | undefined;
1196
- secured?: boolean | undefined;
1197
1154
  placeholder?: {
1198
1155
  id: string;
1199
1156
  description: string;
@@ -1226,7 +1183,6 @@ declare const DateRangeField: z.ZodObject<z.objectUtil.extendShape<{
1226
1183
  }>>;
1227
1184
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
1228
1185
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1229
- secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1230
1186
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
1231
1187
  id: string;
1232
1188
  description: string;
@@ -1301,7 +1257,6 @@ declare const DateRangeField: z.ZodObject<z.objectUtil.extendShape<{
1301
1257
  type: "DISPLAY_ON_REVIEW";
1302
1258
  conditional: import(".").JSONSchema;
1303
1259
  })[] | undefined;
1304
- secured?: boolean | undefined;
1305
1260
  placeholder?: TranslationConfig | undefined;
1306
1261
  helperText?: TranslationConfig | undefined;
1307
1262
  hideLabel?: boolean | undefined;
@@ -1339,7 +1294,6 @@ declare const DateRangeField: z.ZodObject<z.objectUtil.extendShape<{
1339
1294
  type: "DISPLAY_ON_REVIEW";
1340
1295
  conditional: import(".").JSONSchema;
1341
1296
  })[] | undefined;
1342
- secured?: boolean | undefined;
1343
1297
  placeholder?: {
1344
1298
  id: string;
1345
1299
  description: string;
@@ -1374,7 +1328,6 @@ declare const Paragraph: z.ZodObject<z.objectUtil.extendShape<{
1374
1328
  }>>;
1375
1329
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
1376
1330
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1377
- secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1378
1331
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
1379
1332
  id: string;
1380
1333
  description: string;
@@ -1456,7 +1409,6 @@ declare const Paragraph: z.ZodObject<z.objectUtil.extendShape<{
1456
1409
  type: "DISPLAY_ON_REVIEW";
1457
1410
  conditional: import(".").JSONSchema;
1458
1411
  })[] | undefined;
1459
- secured?: boolean | undefined;
1460
1412
  placeholder?: TranslationConfig | undefined;
1461
1413
  helperText?: TranslationConfig | undefined;
1462
1414
  hideLabel?: boolean | undefined;
@@ -1491,7 +1443,6 @@ declare const Paragraph: z.ZodObject<z.objectUtil.extendShape<{
1491
1443
  type: "DISPLAY_ON_REVIEW";
1492
1444
  conditional: import(".").JSONSchema;
1493
1445
  })[] | undefined;
1494
- secured?: boolean | undefined;
1495
1446
  placeholder?: {
1496
1447
  id: string;
1497
1448
  description: string;
@@ -1522,7 +1473,6 @@ declare const PageHeader: z.ZodObject<z.objectUtil.extendShape<{
1522
1473
  }>>;
1523
1474
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
1524
1475
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1525
- secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1526
1476
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
1527
1477
  id: string;
1528
1478
  description: string;
@@ -1582,7 +1532,6 @@ declare const PageHeader: z.ZodObject<z.objectUtil.extendShape<{
1582
1532
  type: "DISPLAY_ON_REVIEW";
1583
1533
  conditional: import(".").JSONSchema;
1584
1534
  })[] | undefined;
1585
- secured?: boolean | undefined;
1586
1535
  placeholder?: TranslationConfig | undefined;
1587
1536
  helperText?: TranslationConfig | undefined;
1588
1537
  hideLabel?: boolean | undefined;
@@ -1617,7 +1566,6 @@ declare const PageHeader: z.ZodObject<z.objectUtil.extendShape<{
1617
1566
  type: "DISPLAY_ON_REVIEW";
1618
1567
  conditional: import(".").JSONSchema;
1619
1568
  })[] | undefined;
1620
- secured?: boolean | undefined;
1621
1569
  placeholder?: {
1622
1570
  id: string;
1623
1571
  description: string;
@@ -1643,7 +1591,6 @@ declare const File: z.ZodObject<z.objectUtil.extendShape<{
1643
1591
  }>>;
1644
1592
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
1645
1593
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1646
- secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1647
1594
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
1648
1595
  id: string;
1649
1596
  description: string;
@@ -1757,7 +1704,6 @@ declare const File: z.ZodObject<z.objectUtil.extendShape<{
1757
1704
  type: "DISPLAY_ON_REVIEW";
1758
1705
  conditional: import(".").JSONSchema;
1759
1706
  })[] | undefined;
1760
- secured?: boolean | undefined;
1761
1707
  placeholder?: TranslationConfig | undefined;
1762
1708
  helperText?: TranslationConfig | undefined;
1763
1709
  hideLabel?: boolean | undefined;
@@ -1796,7 +1742,6 @@ declare const File: z.ZodObject<z.objectUtil.extendShape<{
1796
1742
  type: "DISPLAY_ON_REVIEW";
1797
1743
  conditional: import(".").JSONSchema;
1798
1744
  })[] | undefined;
1799
- secured?: boolean | undefined;
1800
1745
  placeholder?: {
1801
1746
  id: string;
1802
1747
  description: string;
@@ -1856,7 +1801,6 @@ declare const RadioGroup: z.ZodObject<z.objectUtil.extendShape<{
1856
1801
  }>>;
1857
1802
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
1858
1803
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1859
- secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1860
1804
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
1861
1805
  id: string;
1862
1806
  description: string;
@@ -1955,7 +1899,6 @@ declare const RadioGroup: z.ZodObject<z.objectUtil.extendShape<{
1955
1899
  type: "DISPLAY_ON_REVIEW";
1956
1900
  conditional: import(".").JSONSchema;
1957
1901
  })[] | undefined;
1958
- secured?: boolean | undefined;
1959
1902
  placeholder?: TranslationConfig | undefined;
1960
1903
  helperText?: TranslationConfig | undefined;
1961
1904
  hideLabel?: boolean | undefined;
@@ -2003,7 +1946,6 @@ declare const RadioGroup: z.ZodObject<z.objectUtil.extendShape<{
2003
1946
  type: "DISPLAY_ON_REVIEW";
2004
1947
  conditional: import(".").JSONSchema;
2005
1948
  })[] | undefined;
2006
- secured?: boolean | undefined;
2007
1949
  placeholder?: {
2008
1950
  id: string;
2009
1951
  description: string;
@@ -2034,7 +1976,6 @@ declare const BulletList: z.ZodObject<z.objectUtil.extendShape<{
2034
1976
  }>>;
2035
1977
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
2036
1978
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2037
- secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2038
1979
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
2039
1980
  id: string;
2040
1981
  description: string;
@@ -2122,7 +2063,6 @@ declare const BulletList: z.ZodObject<z.objectUtil.extendShape<{
2122
2063
  type: "DISPLAY_ON_REVIEW";
2123
2064
  conditional: import(".").JSONSchema;
2124
2065
  })[] | undefined;
2125
- secured?: boolean | undefined;
2126
2066
  placeholder?: TranslationConfig | undefined;
2127
2067
  helperText?: TranslationConfig | undefined;
2128
2068
  hideLabel?: boolean | undefined;
@@ -2162,7 +2102,6 @@ declare const BulletList: z.ZodObject<z.objectUtil.extendShape<{
2162
2102
  type: "DISPLAY_ON_REVIEW";
2163
2103
  conditional: import(".").JSONSchema;
2164
2104
  })[] | undefined;
2165
- secured?: boolean | undefined;
2166
2105
  placeholder?: {
2167
2106
  id: string;
2168
2107
  description: string;
@@ -2193,7 +2132,6 @@ declare const Select: z.ZodObject<z.objectUtil.extendShape<{
2193
2132
  }>>;
2194
2133
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
2195
2134
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2196
- secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2197
2135
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
2198
2136
  id: string;
2199
2137
  description: string;
@@ -2275,7 +2213,6 @@ declare const Select: z.ZodObject<z.objectUtil.extendShape<{
2275
2213
  type: "DISPLAY_ON_REVIEW";
2276
2214
  conditional: import(".").JSONSchema;
2277
2215
  })[] | undefined;
2278
- secured?: boolean | undefined;
2279
2216
  placeholder?: TranslationConfig | undefined;
2280
2217
  helperText?: TranslationConfig | undefined;
2281
2218
  hideLabel?: boolean | undefined;
@@ -2318,7 +2255,6 @@ declare const Select: z.ZodObject<z.objectUtil.extendShape<{
2318
2255
  type: "DISPLAY_ON_REVIEW";
2319
2256
  conditional: import(".").JSONSchema;
2320
2257
  })[] | undefined;
2321
- secured?: boolean | undefined;
2322
2258
  placeholder?: {
2323
2259
  id: string;
2324
2260
  description: string;
@@ -2343,7 +2279,6 @@ declare const NameField: z.ZodObject<z.objectUtil.extendShape<{
2343
2279
  }>>;
2344
2280
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
2345
2281
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2346
- secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2347
2282
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
2348
2283
  id: string;
2349
2284
  description: string;
@@ -2402,14 +2337,10 @@ declare const NameField: z.ZodObject<z.objectUtil.extendShape<{
2402
2337
  description: string;
2403
2338
  defaultMessage: string;
2404
2339
  }>>;
2405
- includeMiddlename: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2406
- searchMode: z.ZodOptional<z.ZodBoolean>;
2407
2340
  }, "strip", z.ZodTypeAny, {
2408
2341
  maxLength?: number | undefined;
2409
2342
  prefix?: TranslationConfig | undefined;
2410
2343
  postfix?: TranslationConfig | undefined;
2411
- includeMiddlename?: boolean | undefined;
2412
- searchMode?: boolean | undefined;
2413
2344
  }, {
2414
2345
  maxLength?: number | undefined;
2415
2346
  prefix?: {
@@ -2422,8 +2353,6 @@ declare const NameField: z.ZodObject<z.objectUtil.extendShape<{
2422
2353
  description: string;
2423
2354
  defaultMessage: string;
2424
2355
  } | undefined;
2425
- includeMiddlename?: boolean | undefined;
2426
- searchMode?: boolean | undefined;
2427
2356
  }>>;
2428
2357
  }>, "strip", z.ZodTypeAny, {
2429
2358
  type: "NAME";
@@ -2447,7 +2376,6 @@ declare const NameField: z.ZodObject<z.objectUtil.extendShape<{
2447
2376
  type: "DISPLAY_ON_REVIEW";
2448
2377
  conditional: import(".").JSONSchema;
2449
2378
  })[] | undefined;
2450
- secured?: boolean | undefined;
2451
2379
  placeholder?: TranslationConfig | undefined;
2452
2380
  helperText?: TranslationConfig | undefined;
2453
2381
  hideLabel?: boolean | undefined;
@@ -2459,8 +2387,6 @@ declare const NameField: z.ZodObject<z.objectUtil.extendShape<{
2459
2387
  maxLength?: number | undefined;
2460
2388
  prefix?: TranslationConfig | undefined;
2461
2389
  postfix?: TranslationConfig | undefined;
2462
- includeMiddlename?: boolean | undefined;
2463
- searchMode?: boolean | undefined;
2464
2390
  } | undefined;
2465
2391
  }, {
2466
2392
  type: "NAME";
@@ -2492,7 +2418,6 @@ declare const NameField: z.ZodObject<z.objectUtil.extendShape<{
2492
2418
  type: "DISPLAY_ON_REVIEW";
2493
2419
  conditional: import(".").JSONSchema;
2494
2420
  })[] | undefined;
2495
- secured?: boolean | undefined;
2496
2421
  placeholder?: {
2497
2422
  id: string;
2498
2423
  description: string;
@@ -2520,8 +2445,6 @@ declare const NameField: z.ZodObject<z.objectUtil.extendShape<{
2520
2445
  description: string;
2521
2446
  defaultMessage: string;
2522
2447
  } | undefined;
2523
- includeMiddlename?: boolean | undefined;
2524
- searchMode?: boolean | undefined;
2525
2448
  } | undefined;
2526
2449
  }>;
2527
2450
  declare const PhoneField: z.ZodObject<z.objectUtil.extendShape<{
@@ -2535,7 +2458,6 @@ declare const PhoneField: z.ZodObject<z.objectUtil.extendShape<{
2535
2458
  }>>;
2536
2459
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
2537
2460
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2538
- secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2539
2461
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
2540
2462
  id: string;
2541
2463
  description: string;
@@ -2595,7 +2517,6 @@ declare const PhoneField: z.ZodObject<z.objectUtil.extendShape<{
2595
2517
  type: "DISPLAY_ON_REVIEW";
2596
2518
  conditional: import(".").JSONSchema;
2597
2519
  })[] | undefined;
2598
- secured?: boolean | undefined;
2599
2520
  placeholder?: TranslationConfig | undefined;
2600
2521
  helperText?: TranslationConfig | undefined;
2601
2522
  hideLabel?: boolean | undefined;
@@ -2630,7 +2551,6 @@ declare const PhoneField: z.ZodObject<z.objectUtil.extendShape<{
2630
2551
  type: "DISPLAY_ON_REVIEW";
2631
2552
  conditional: import(".").JSONSchema;
2632
2553
  })[] | undefined;
2633
- secured?: boolean | undefined;
2634
2554
  placeholder?: {
2635
2555
  id: string;
2636
2556
  description: string;
@@ -2655,7 +2575,6 @@ declare const IdField: z.ZodObject<z.objectUtil.extendShape<{
2655
2575
  }>>;
2656
2576
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
2657
2577
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2658
- secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2659
2578
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
2660
2579
  id: string;
2661
2580
  description: string;
@@ -2715,7 +2634,6 @@ declare const IdField: z.ZodObject<z.objectUtil.extendShape<{
2715
2634
  type: "DISPLAY_ON_REVIEW";
2716
2635
  conditional: import(".").JSONSchema;
2717
2636
  })[] | undefined;
2718
- secured?: boolean | undefined;
2719
2637
  placeholder?: TranslationConfig | undefined;
2720
2638
  helperText?: TranslationConfig | undefined;
2721
2639
  hideLabel?: boolean | undefined;
@@ -2750,7 +2668,6 @@ declare const IdField: z.ZodObject<z.objectUtil.extendShape<{
2750
2668
  type: "DISPLAY_ON_REVIEW";
2751
2669
  conditional: import(".").JSONSchema;
2752
2670
  })[] | undefined;
2753
- secured?: boolean | undefined;
2754
2671
  placeholder?: {
2755
2672
  id: string;
2756
2673
  description: string;
@@ -2775,7 +2692,6 @@ declare const Checkbox: z.ZodObject<z.objectUtil.extendShape<{
2775
2692
  }>>;
2776
2693
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
2777
2694
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2778
- secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2779
2695
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
2780
2696
  id: string;
2781
2697
  description: string;
@@ -2835,7 +2751,6 @@ declare const Checkbox: z.ZodObject<z.objectUtil.extendShape<{
2835
2751
  type: "DISPLAY_ON_REVIEW";
2836
2752
  conditional: import(".").JSONSchema;
2837
2753
  })[] | undefined;
2838
- secured?: boolean | undefined;
2839
2754
  placeholder?: TranslationConfig | undefined;
2840
2755
  helperText?: TranslationConfig | undefined;
2841
2756
  hideLabel?: boolean | undefined;
@@ -2870,7 +2785,6 @@ declare const Checkbox: z.ZodObject<z.objectUtil.extendShape<{
2870
2785
  type: "DISPLAY_ON_REVIEW";
2871
2786
  conditional: import(".").JSONSchema;
2872
2787
  })[] | undefined;
2873
- secured?: boolean | undefined;
2874
2788
  placeholder?: {
2875
2789
  id: string;
2876
2790
  description: string;
@@ -2896,7 +2810,6 @@ declare const Country: z.ZodObject<z.objectUtil.extendShape<{
2896
2810
  }>>;
2897
2811
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
2898
2812
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2899
- secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2900
2813
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
2901
2814
  id: string;
2902
2815
  description: string;
@@ -2956,7 +2869,6 @@ declare const Country: z.ZodObject<z.objectUtil.extendShape<{
2956
2869
  type: "DISPLAY_ON_REVIEW";
2957
2870
  conditional: import(".").JSONSchema;
2958
2871
  })[] | undefined;
2959
- secured?: boolean | undefined;
2960
2872
  placeholder?: TranslationConfig | undefined;
2961
2873
  helperText?: TranslationConfig | undefined;
2962
2874
  hideLabel?: boolean | undefined;
@@ -2991,7 +2903,6 @@ declare const Country: z.ZodObject<z.objectUtil.extendShape<{
2991
2903
  type: "DISPLAY_ON_REVIEW";
2992
2904
  conditional: import(".").JSONSchema;
2993
2905
  })[] | undefined;
2994
- secured?: boolean | undefined;
2995
2906
  placeholder?: {
2996
2907
  id: string;
2997
2908
  description: string;
@@ -3038,7 +2949,6 @@ declare const AdministrativeArea: z.ZodObject<z.objectUtil.extendShape<{
3038
2949
  }>>;
3039
2950
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
3040
2951
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3041
- secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3042
2952
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
3043
2953
  id: string;
3044
2954
  description: string;
@@ -3124,7 +3034,6 @@ declare const AdministrativeArea: z.ZodObject<z.objectUtil.extendShape<{
3124
3034
  type: "DISPLAY_ON_REVIEW";
3125
3035
  conditional: import(".").JSONSchema;
3126
3036
  })[] | undefined;
3127
- secured?: boolean | undefined;
3128
3037
  placeholder?: TranslationConfig | undefined;
3129
3038
  helperText?: TranslationConfig | undefined;
3130
3039
  hideLabel?: boolean | undefined;
@@ -3165,7 +3074,6 @@ declare const AdministrativeArea: z.ZodObject<z.objectUtil.extendShape<{
3165
3074
  type: "DISPLAY_ON_REVIEW";
3166
3075
  conditional: import(".").JSONSchema;
3167
3076
  })[] | undefined;
3168
- secured?: boolean | undefined;
3169
3077
  placeholder?: {
3170
3078
  id: string;
3171
3079
  description: string;
@@ -3191,7 +3099,6 @@ declare const Location: z.ZodObject<z.objectUtil.extendShape<{
3191
3099
  }>>;
3192
3100
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
3193
3101
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3194
- secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3195
3102
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
3196
3103
  id: string;
3197
3104
  description: string;
@@ -3251,7 +3158,6 @@ declare const Location: z.ZodObject<z.objectUtil.extendShape<{
3251
3158
  type: "DISPLAY_ON_REVIEW";
3252
3159
  conditional: import(".").JSONSchema;
3253
3160
  })[] | undefined;
3254
- secured?: boolean | undefined;
3255
3161
  placeholder?: TranslationConfig | undefined;
3256
3162
  helperText?: TranslationConfig | undefined;
3257
3163
  hideLabel?: boolean | undefined;
@@ -3286,7 +3192,6 @@ declare const Location: z.ZodObject<z.objectUtil.extendShape<{
3286
3192
  type: "DISPLAY_ON_REVIEW";
3287
3193
  conditional: import(".").JSONSchema;
3288
3194
  })[] | undefined;
3289
- secured?: boolean | undefined;
3290
3195
  placeholder?: {
3291
3196
  id: string;
3292
3197
  description: string;
@@ -3312,7 +3217,6 @@ declare const FileUploadWithOptions: z.ZodObject<z.objectUtil.extendShape<{
3312
3217
  }>>;
3313
3218
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
3314
3219
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3315
- secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3316
3220
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
3317
3221
  id: string;
3318
3222
  description: string;
@@ -3423,7 +3327,6 @@ declare const FileUploadWithOptions: z.ZodObject<z.objectUtil.extendShape<{
3423
3327
  type: "DISPLAY_ON_REVIEW";
3424
3328
  conditional: import(".").JSONSchema;
3425
3329
  })[] | undefined;
3426
- secured?: boolean | undefined;
3427
3330
  placeholder?: TranslationConfig | undefined;
3428
3331
  helperText?: TranslationConfig | undefined;
3429
3332
  hideLabel?: boolean | undefined;
@@ -3471,7 +3374,6 @@ declare const FileUploadWithOptions: z.ZodObject<z.objectUtil.extendShape<{
3471
3374
  type: "DISPLAY_ON_REVIEW";
3472
3375
  conditional: import(".").JSONSchema;
3473
3376
  })[] | undefined;
3474
- secured?: boolean | undefined;
3475
3377
  placeholder?: {
3476
3378
  id: string;
3477
3379
  description: string;
@@ -3506,7 +3408,6 @@ declare const Facility: z.ZodObject<z.objectUtil.extendShape<{
3506
3408
  }>>;
3507
3409
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
3508
3410
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3509
- secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3510
3411
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
3511
3412
  id: string;
3512
3413
  description: string;
@@ -3566,7 +3467,6 @@ declare const Facility: z.ZodObject<z.objectUtil.extendShape<{
3566
3467
  type: "DISPLAY_ON_REVIEW";
3567
3468
  conditional: import(".").JSONSchema;
3568
3469
  })[] | undefined;
3569
- secured?: boolean | undefined;
3570
3470
  placeholder?: TranslationConfig | undefined;
3571
3471
  helperText?: TranslationConfig | undefined;
3572
3472
  hideLabel?: boolean | undefined;
@@ -3601,7 +3501,6 @@ declare const Facility: z.ZodObject<z.objectUtil.extendShape<{
3601
3501
  type: "DISPLAY_ON_REVIEW";
3602
3502
  conditional: import(".").JSONSchema;
3603
3503
  })[] | undefined;
3604
- secured?: boolean | undefined;
3605
3504
  placeholder?: {
3606
3505
  id: string;
3607
3506
  description: string;
@@ -3627,7 +3526,6 @@ declare const Office: z.ZodObject<z.objectUtil.extendShape<{
3627
3526
  }>>;
3628
3527
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
3629
3528
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3630
- secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3631
3529
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
3632
3530
  id: string;
3633
3531
  description: string;
@@ -3687,7 +3585,6 @@ declare const Office: z.ZodObject<z.objectUtil.extendShape<{
3687
3585
  type: "DISPLAY_ON_REVIEW";
3688
3586
  conditional: import(".").JSONSchema;
3689
3587
  })[] | undefined;
3690
- secured?: boolean | undefined;
3691
3588
  placeholder?: TranslationConfig | undefined;
3692
3589
  helperText?: TranslationConfig | undefined;
3693
3590
  hideLabel?: boolean | undefined;
@@ -3722,7 +3619,6 @@ declare const Office: z.ZodObject<z.objectUtil.extendShape<{
3722
3619
  type: "DISPLAY_ON_REVIEW";
3723
3620
  conditional: import(".").JSONSchema;
3724
3621
  })[] | undefined;
3725
- secured?: boolean | undefined;
3726
3622
  placeholder?: {
3727
3623
  id: string;
3728
3624
  description: string;
@@ -3748,7 +3644,6 @@ declare const Address: z.ZodObject<z.objectUtil.extendShape<{
3748
3644
  }>>;
3749
3645
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
3750
3646
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3751
- secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3752
3647
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
3753
3648
  id: string;
3754
3649
  description: string;
@@ -3894,7 +3789,6 @@ declare const Address: z.ZodObject<z.objectUtil.extendShape<{
3894
3789
  type: "DISPLAY_ON_REVIEW";
3895
3790
  conditional: import(".").JSONSchema;
3896
3791
  })[] | undefined;
3897
- secured?: boolean | undefined;
3898
3792
  placeholder?: TranslationConfig | undefined;
3899
3793
  helperText?: TranslationConfig | undefined;
3900
3794
  hideLabel?: boolean | undefined;
@@ -3957,7 +3851,6 @@ declare const Address: z.ZodObject<z.objectUtil.extendShape<{
3957
3851
  type: "DISPLAY_ON_REVIEW";
3958
3852
  conditional: import(".").JSONSchema;
3959
3853
  })[] | undefined;
3960
- secured?: boolean | undefined;
3961
3854
  placeholder?: {
3962
3855
  id: string;
3963
3856
  description: string;
@@ -4043,7 +3936,6 @@ declare const DataField: z.ZodObject<z.objectUtil.extendShape<{
4043
3936
  }>>;
4044
3937
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
4045
3938
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
4046
- secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
4047
3939
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
4048
3940
  id: string;
4049
3941
  description: string;
@@ -4178,7 +4070,6 @@ declare const DataField: z.ZodObject<z.objectUtil.extendShape<{
4178
4070
  type: "DISPLAY_ON_REVIEW";
4179
4071
  conditional: import(".").JSONSchema;
4180
4072
  })[] | undefined;
4181
- secured?: boolean | undefined;
4182
4073
  placeholder?: TranslationConfig | undefined;
4183
4074
  helperText?: TranslationConfig | undefined;
4184
4075
  hideLabel?: boolean | undefined;
@@ -4233,7 +4124,6 @@ declare const DataField: z.ZodObject<z.objectUtil.extendShape<{
4233
4124
  type: "DISPLAY_ON_REVIEW";
4234
4125
  conditional: import(".").JSONSchema;
4235
4126
  })[] | undefined;
4236
- secured?: boolean | undefined;
4237
4127
  placeholder?: {
4238
4128
  id: string;
4239
4129
  description: string;
@@ -4267,7 +4157,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
4267
4157
  }>>;
4268
4158
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
4269
4159
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
4270
- secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
4271
4160
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
4272
4161
  id: string;
4273
4162
  description: string;
@@ -4413,7 +4302,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
4413
4302
  type: "DISPLAY_ON_REVIEW";
4414
4303
  conditional: import(".").JSONSchema;
4415
4304
  })[] | undefined;
4416
- secured?: boolean | undefined;
4417
4305
  placeholder?: TranslationConfig | undefined;
4418
4306
  helperText?: TranslationConfig | undefined;
4419
4307
  hideLabel?: boolean | undefined;
@@ -4476,7 +4364,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
4476
4364
  type: "DISPLAY_ON_REVIEW";
4477
4365
  conditional: import(".").JSONSchema;
4478
4366
  })[] | undefined;
4479
- secured?: boolean | undefined;
4480
4367
  placeholder?: {
4481
4368
  id: string;
4482
4369
  description: string;
@@ -4528,7 +4415,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
4528
4415
  }>>;
4529
4416
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
4530
4417
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
4531
- secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
4532
4418
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
4533
4419
  id: string;
4534
4420
  description: string;
@@ -4620,7 +4506,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
4620
4506
  type: "DISPLAY_ON_REVIEW";
4621
4507
  conditional: import(".").JSONSchema;
4622
4508
  })[] | undefined;
4623
- secured?: boolean | undefined;
4624
4509
  placeholder?: TranslationConfig | undefined;
4625
4510
  helperText?: TranslationConfig | undefined;
4626
4511
  hideLabel?: boolean | undefined;
@@ -4661,7 +4546,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
4661
4546
  type: "DISPLAY_ON_REVIEW";
4662
4547
  conditional: import(".").JSONSchema;
4663
4548
  })[] | undefined;
4664
- secured?: boolean | undefined;
4665
4549
  placeholder?: {
4666
4550
  id: string;
4667
4551
  description: string;
@@ -4699,7 +4583,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
4699
4583
  }>>;
4700
4584
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
4701
4585
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
4702
- secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
4703
4586
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
4704
4587
  id: string;
4705
4588
  description: string;
@@ -4791,7 +4674,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
4791
4674
  type: "DISPLAY_ON_REVIEW";
4792
4675
  conditional: import(".").JSONSchema;
4793
4676
  })[] | undefined;
4794
- secured?: boolean | undefined;
4795
4677
  placeholder?: TranslationConfig | undefined;
4796
4678
  helperText?: TranslationConfig | undefined;
4797
4679
  hideLabel?: boolean | undefined;
@@ -4832,7 +4714,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
4832
4714
  type: "DISPLAY_ON_REVIEW";
4833
4715
  conditional: import(".").JSONSchema;
4834
4716
  })[] | undefined;
4835
- secured?: boolean | undefined;
4836
4717
  placeholder?: {
4837
4718
  id: string;
4838
4719
  description: string;
@@ -4870,7 +4751,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
4870
4751
  }>>;
4871
4752
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
4872
4753
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
4873
- secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
4874
4754
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
4875
4755
  id: string;
4876
4756
  description: string;
@@ -4965,7 +4845,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
4965
4845
  type: "DISPLAY_ON_REVIEW";
4966
4846
  conditional: import(".").JSONSchema;
4967
4847
  })[] | undefined;
4968
- secured?: boolean | undefined;
4969
4848
  placeholder?: TranslationConfig | undefined;
4970
4849
  helperText?: TranslationConfig | undefined;
4971
4850
  hideLabel?: boolean | undefined;
@@ -5007,7 +4886,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
5007
4886
  type: "DISPLAY_ON_REVIEW";
5008
4887
  conditional: import(".").JSONSchema;
5009
4888
  })[] | undefined;
5010
- secured?: boolean | undefined;
5011
4889
  placeholder?: {
5012
4890
  id: string;
5013
4891
  description: string;
@@ -5046,7 +4924,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
5046
4924
  }>>;
5047
4925
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
5048
4926
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
5049
- secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
5050
4927
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
5051
4928
  id: string;
5052
4929
  description: string;
@@ -5121,7 +4998,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
5121
4998
  type: "DISPLAY_ON_REVIEW";
5122
4999
  conditional: import(".").JSONSchema;
5123
5000
  })[] | undefined;
5124
- secured?: boolean | undefined;
5125
5001
  placeholder?: TranslationConfig | undefined;
5126
5002
  helperText?: TranslationConfig | undefined;
5127
5003
  hideLabel?: boolean | undefined;
@@ -5159,7 +5035,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
5159
5035
  type: "DISPLAY_ON_REVIEW";
5160
5036
  conditional: import(".").JSONSchema;
5161
5037
  })[] | undefined;
5162
- secured?: boolean | undefined;
5163
5038
  placeholder?: {
5164
5039
  id: string;
5165
5040
  description: string;
@@ -5190,7 +5065,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
5190
5065
  }>>;
5191
5066
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
5192
5067
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
5193
- secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
5194
5068
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
5195
5069
  id: string;
5196
5070
  description: string;
@@ -5265,7 +5139,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
5265
5139
  type: "DISPLAY_ON_REVIEW";
5266
5140
  conditional: import(".").JSONSchema;
5267
5141
  })[] | undefined;
5268
- secured?: boolean | undefined;
5269
5142
  placeholder?: TranslationConfig | undefined;
5270
5143
  helperText?: TranslationConfig | undefined;
5271
5144
  hideLabel?: boolean | undefined;
@@ -5303,7 +5176,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
5303
5176
  type: "DISPLAY_ON_REVIEW";
5304
5177
  conditional: import(".").JSONSchema;
5305
5178
  })[] | undefined;
5306
- secured?: boolean | undefined;
5307
5179
  placeholder?: {
5308
5180
  id: string;
5309
5181
  description: string;
@@ -5334,7 +5206,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
5334
5206
  }>>;
5335
5207
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
5336
5208
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
5337
- secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
5338
5209
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
5339
5210
  id: string;
5340
5211
  description: string;
@@ -5416,7 +5287,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
5416
5287
  type: "DISPLAY_ON_REVIEW";
5417
5288
  conditional: import(".").JSONSchema;
5418
5289
  })[] | undefined;
5419
- secured?: boolean | undefined;
5420
5290
  placeholder?: TranslationConfig | undefined;
5421
5291
  helperText?: TranslationConfig | undefined;
5422
5292
  hideLabel?: boolean | undefined;
@@ -5451,7 +5321,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
5451
5321
  type: "DISPLAY_ON_REVIEW";
5452
5322
  conditional: import(".").JSONSchema;
5453
5323
  })[] | undefined;
5454
- secured?: boolean | undefined;
5455
5324
  placeholder?: {
5456
5325
  id: string;
5457
5326
  description: string;
@@ -5480,7 +5349,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
5480
5349
  }>>;
5481
5350
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
5482
5351
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
5483
- secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
5484
5352
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
5485
5353
  id: string;
5486
5354
  description: string;
@@ -5579,7 +5447,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
5579
5447
  type: "DISPLAY_ON_REVIEW";
5580
5448
  conditional: import(".").JSONSchema;
5581
5449
  })[] | undefined;
5582
- secured?: boolean | undefined;
5583
5450
  placeholder?: TranslationConfig | undefined;
5584
5451
  helperText?: TranslationConfig | undefined;
5585
5452
  hideLabel?: boolean | undefined;
@@ -5627,7 +5494,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
5627
5494
  type: "DISPLAY_ON_REVIEW";
5628
5495
  conditional: import(".").JSONSchema;
5629
5496
  })[] | undefined;
5630
- secured?: boolean | undefined;
5631
5497
  placeholder?: {
5632
5498
  id: string;
5633
5499
  description: string;
@@ -5656,7 +5522,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
5656
5522
  }>>;
5657
5523
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
5658
5524
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
5659
- secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
5660
5525
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
5661
5526
  id: string;
5662
5527
  description: string;
@@ -5744,7 +5609,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
5744
5609
  type: "DISPLAY_ON_REVIEW";
5745
5610
  conditional: import(".").JSONSchema;
5746
5611
  })[] | undefined;
5747
- secured?: boolean | undefined;
5748
5612
  placeholder?: TranslationConfig | undefined;
5749
5613
  helperText?: TranslationConfig | undefined;
5750
5614
  hideLabel?: boolean | undefined;
@@ -5784,7 +5648,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
5784
5648
  type: "DISPLAY_ON_REVIEW";
5785
5649
  conditional: import(".").JSONSchema;
5786
5650
  })[] | undefined;
5787
- secured?: boolean | undefined;
5788
5651
  placeholder?: {
5789
5652
  id: string;
5790
5653
  description: string;
@@ -5813,7 +5676,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
5813
5676
  }>>;
5814
5677
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
5815
5678
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
5816
- secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
5817
5679
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
5818
5680
  id: string;
5819
5681
  description: string;
@@ -5873,7 +5735,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
5873
5735
  type: "DISPLAY_ON_REVIEW";
5874
5736
  conditional: import(".").JSONSchema;
5875
5737
  })[] | undefined;
5876
- secured?: boolean | undefined;
5877
5738
  placeholder?: TranslationConfig | undefined;
5878
5739
  helperText?: TranslationConfig | undefined;
5879
5740
  hideLabel?: boolean | undefined;
@@ -5908,7 +5769,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
5908
5769
  type: "DISPLAY_ON_REVIEW";
5909
5770
  conditional: import(".").JSONSchema;
5910
5771
  })[] | undefined;
5911
- secured?: boolean | undefined;
5912
5772
  placeholder?: {
5913
5773
  id: string;
5914
5774
  description: string;
@@ -5932,7 +5792,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
5932
5792
  }>>;
5933
5793
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
5934
5794
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
5935
- secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
5936
5795
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
5937
5796
  id: string;
5938
5797
  description: string;
@@ -6014,7 +5873,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6014
5873
  type: "DISPLAY_ON_REVIEW";
6015
5874
  conditional: import(".").JSONSchema;
6016
5875
  })[] | undefined;
6017
- secured?: boolean | undefined;
6018
5876
  placeholder?: TranslationConfig | undefined;
6019
5877
  helperText?: TranslationConfig | undefined;
6020
5878
  hideLabel?: boolean | undefined;
@@ -6057,7 +5915,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6057
5915
  type: "DISPLAY_ON_REVIEW";
6058
5916
  conditional: import(".").JSONSchema;
6059
5917
  })[] | undefined;
6060
- secured?: boolean | undefined;
6061
5918
  placeholder?: {
6062
5919
  id: string;
6063
5920
  description: string;
@@ -6081,7 +5938,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6081
5938
  }>>;
6082
5939
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
6083
5940
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
6084
- secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
6085
5941
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
6086
5942
  id: string;
6087
5943
  description: string;
@@ -6140,14 +5996,10 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6140
5996
  description: string;
6141
5997
  defaultMessage: string;
6142
5998
  }>>;
6143
- includeMiddlename: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
6144
- searchMode: z.ZodOptional<z.ZodBoolean>;
6145
5999
  }, "strip", z.ZodTypeAny, {
6146
6000
  maxLength?: number | undefined;
6147
6001
  prefix?: TranslationConfig | undefined;
6148
6002
  postfix?: TranslationConfig | undefined;
6149
- includeMiddlename?: boolean | undefined;
6150
- searchMode?: boolean | undefined;
6151
6003
  }, {
6152
6004
  maxLength?: number | undefined;
6153
6005
  prefix?: {
@@ -6160,8 +6012,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6160
6012
  description: string;
6161
6013
  defaultMessage: string;
6162
6014
  } | undefined;
6163
- includeMiddlename?: boolean | undefined;
6164
- searchMode?: boolean | undefined;
6165
6015
  }>>;
6166
6016
  }>, "strip", z.ZodTypeAny, {
6167
6017
  type: "NAME";
@@ -6185,7 +6035,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6185
6035
  type: "DISPLAY_ON_REVIEW";
6186
6036
  conditional: import(".").JSONSchema;
6187
6037
  })[] | undefined;
6188
- secured?: boolean | undefined;
6189
6038
  placeholder?: TranslationConfig | undefined;
6190
6039
  helperText?: TranslationConfig | undefined;
6191
6040
  hideLabel?: boolean | undefined;
@@ -6197,8 +6046,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6197
6046
  maxLength?: number | undefined;
6198
6047
  prefix?: TranslationConfig | undefined;
6199
6048
  postfix?: TranslationConfig | undefined;
6200
- includeMiddlename?: boolean | undefined;
6201
- searchMode?: boolean | undefined;
6202
6049
  } | undefined;
6203
6050
  }, {
6204
6051
  type: "NAME";
@@ -6230,7 +6077,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6230
6077
  type: "DISPLAY_ON_REVIEW";
6231
6078
  conditional: import(".").JSONSchema;
6232
6079
  })[] | undefined;
6233
- secured?: boolean | undefined;
6234
6080
  placeholder?: {
6235
6081
  id: string;
6236
6082
  description: string;
@@ -6258,8 +6104,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6258
6104
  description: string;
6259
6105
  defaultMessage: string;
6260
6106
  } | undefined;
6261
- includeMiddlename?: boolean | undefined;
6262
- searchMode?: boolean | undefined;
6263
6107
  } | undefined;
6264
6108
  }>, z.ZodObject<z.objectUtil.extendShape<{
6265
6109
  id: z.ZodString;
@@ -6272,7 +6116,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6272
6116
  }>>;
6273
6117
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
6274
6118
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
6275
- secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
6276
6119
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
6277
6120
  id: string;
6278
6121
  description: string;
@@ -6332,7 +6175,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6332
6175
  type: "DISPLAY_ON_REVIEW";
6333
6176
  conditional: import(".").JSONSchema;
6334
6177
  })[] | undefined;
6335
- secured?: boolean | undefined;
6336
6178
  placeholder?: TranslationConfig | undefined;
6337
6179
  helperText?: TranslationConfig | undefined;
6338
6180
  hideLabel?: boolean | undefined;
@@ -6367,7 +6209,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6367
6209
  type: "DISPLAY_ON_REVIEW";
6368
6210
  conditional: import(".").JSONSchema;
6369
6211
  })[] | undefined;
6370
- secured?: boolean | undefined;
6371
6212
  placeholder?: {
6372
6213
  id: string;
6373
6214
  description: string;
@@ -6391,7 +6232,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6391
6232
  }>>;
6392
6233
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
6393
6234
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
6394
- secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
6395
6235
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
6396
6236
  id: string;
6397
6237
  description: string;
@@ -6451,7 +6291,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6451
6291
  type: "DISPLAY_ON_REVIEW";
6452
6292
  conditional: import(".").JSONSchema;
6453
6293
  })[] | undefined;
6454
- secured?: boolean | undefined;
6455
6294
  placeholder?: TranslationConfig | undefined;
6456
6295
  helperText?: TranslationConfig | undefined;
6457
6296
  hideLabel?: boolean | undefined;
@@ -6486,7 +6325,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6486
6325
  type: "DISPLAY_ON_REVIEW";
6487
6326
  conditional: import(".").JSONSchema;
6488
6327
  })[] | undefined;
6489
- secured?: boolean | undefined;
6490
6328
  placeholder?: {
6491
6329
  id: string;
6492
6330
  description: string;
@@ -6510,7 +6348,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6510
6348
  }>>;
6511
6349
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
6512
6350
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
6513
- secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
6514
6351
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
6515
6352
  id: string;
6516
6353
  description: string;
@@ -6570,7 +6407,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6570
6407
  type: "DISPLAY_ON_REVIEW";
6571
6408
  conditional: import(".").JSONSchema;
6572
6409
  })[] | undefined;
6573
- secured?: boolean | undefined;
6574
6410
  placeholder?: TranslationConfig | undefined;
6575
6411
  helperText?: TranslationConfig | undefined;
6576
6412
  hideLabel?: boolean | undefined;
@@ -6605,7 +6441,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6605
6441
  type: "DISPLAY_ON_REVIEW";
6606
6442
  conditional: import(".").JSONSchema;
6607
6443
  })[] | undefined;
6608
- secured?: boolean | undefined;
6609
6444
  placeholder?: {
6610
6445
  id: string;
6611
6446
  description: string;
@@ -6629,7 +6464,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6629
6464
  }>>;
6630
6465
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
6631
6466
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
6632
- secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
6633
6467
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
6634
6468
  id: string;
6635
6469
  description: string;
@@ -6743,7 +6577,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6743
6577
  type: "DISPLAY_ON_REVIEW";
6744
6578
  conditional: import(".").JSONSchema;
6745
6579
  })[] | undefined;
6746
- secured?: boolean | undefined;
6747
6580
  placeholder?: TranslationConfig | undefined;
6748
6581
  helperText?: TranslationConfig | undefined;
6749
6582
  hideLabel?: boolean | undefined;
@@ -6782,7 +6615,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6782
6615
  type: "DISPLAY_ON_REVIEW";
6783
6616
  conditional: import(".").JSONSchema;
6784
6617
  })[] | undefined;
6785
- secured?: boolean | undefined;
6786
6618
  placeholder?: {
6787
6619
  id: string;
6788
6620
  description: string;
@@ -6822,7 +6654,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6822
6654
  }>>;
6823
6655
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
6824
6656
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
6825
- secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
6826
6657
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
6827
6658
  id: string;
6828
6659
  description: string;
@@ -6882,7 +6713,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6882
6713
  type: "DISPLAY_ON_REVIEW";
6883
6714
  conditional: import(".").JSONSchema;
6884
6715
  })[] | undefined;
6885
- secured?: boolean | undefined;
6886
6716
  placeholder?: TranslationConfig | undefined;
6887
6717
  helperText?: TranslationConfig | undefined;
6888
6718
  hideLabel?: boolean | undefined;
@@ -6917,7 +6747,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6917
6747
  type: "DISPLAY_ON_REVIEW";
6918
6748
  conditional: import(".").JSONSchema;
6919
6749
  })[] | undefined;
6920
- secured?: boolean | undefined;
6921
6750
  placeholder?: {
6922
6751
  id: string;
6923
6752
  description: string;
@@ -6941,7 +6770,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6941
6770
  }>>;
6942
6771
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
6943
6772
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
6944
- secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
6945
6773
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
6946
6774
  id: string;
6947
6775
  description: string;
@@ -7027,7 +6855,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7027
6855
  type: "DISPLAY_ON_REVIEW";
7028
6856
  conditional: import(".").JSONSchema;
7029
6857
  })[] | undefined;
7030
- secured?: boolean | undefined;
7031
6858
  placeholder?: TranslationConfig | undefined;
7032
6859
  helperText?: TranslationConfig | undefined;
7033
6860
  hideLabel?: boolean | undefined;
@@ -7068,7 +6895,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7068
6895
  type: "DISPLAY_ON_REVIEW";
7069
6896
  conditional: import(".").JSONSchema;
7070
6897
  })[] | undefined;
7071
- secured?: boolean | undefined;
7072
6898
  placeholder?: {
7073
6899
  id: string;
7074
6900
  description: string;
@@ -7092,7 +6918,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7092
6918
  }>>;
7093
6919
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
7094
6920
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7095
- secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7096
6921
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
7097
6922
  id: string;
7098
6923
  description: string;
@@ -7151,7 +6976,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7151
6976
  type: "DISPLAY_ON_REVIEW";
7152
6977
  conditional: import(".").JSONSchema;
7153
6978
  })[] | undefined;
7154
- secured?: boolean | undefined;
7155
6979
  placeholder?: TranslationConfig | undefined;
7156
6980
  helperText?: TranslationConfig | undefined;
7157
6981
  hideLabel?: boolean | undefined;
@@ -7185,7 +7009,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7185
7009
  type: "DISPLAY_ON_REVIEW";
7186
7010
  conditional: import(".").JSONSchema;
7187
7011
  })[] | undefined;
7188
- secured?: boolean | undefined;
7189
7012
  placeholder?: {
7190
7013
  id: string;
7191
7014
  description: string;
@@ -7208,7 +7031,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7208
7031
  }>>;
7209
7032
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
7210
7033
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7211
- secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7212
7034
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
7213
7035
  id: string;
7214
7036
  description: string;
@@ -7268,7 +7090,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7268
7090
  type: "DISPLAY_ON_REVIEW";
7269
7091
  conditional: import(".").JSONSchema;
7270
7092
  })[] | undefined;
7271
- secured?: boolean | undefined;
7272
7093
  placeholder?: TranslationConfig | undefined;
7273
7094
  helperText?: TranslationConfig | undefined;
7274
7095
  hideLabel?: boolean | undefined;
@@ -7303,7 +7124,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7303
7124
  type: "DISPLAY_ON_REVIEW";
7304
7125
  conditional: import(".").JSONSchema;
7305
7126
  })[] | undefined;
7306
- secured?: boolean | undefined;
7307
7127
  placeholder?: {
7308
7128
  id: string;
7309
7129
  description: string;
@@ -7327,7 +7147,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7327
7147
  }>>;
7328
7148
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
7329
7149
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7330
- secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7331
7150
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
7332
7151
  id: string;
7333
7152
  description: string;
@@ -7387,7 +7206,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7387
7206
  type: "DISPLAY_ON_REVIEW";
7388
7207
  conditional: import(".").JSONSchema;
7389
7208
  })[] | undefined;
7390
- secured?: boolean | undefined;
7391
7209
  placeholder?: TranslationConfig | undefined;
7392
7210
  helperText?: TranslationConfig | undefined;
7393
7211
  hideLabel?: boolean | undefined;
@@ -7422,7 +7240,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7422
7240
  type: "DISPLAY_ON_REVIEW";
7423
7241
  conditional: import(".").JSONSchema;
7424
7242
  })[] | undefined;
7425
- secured?: boolean | undefined;
7426
7243
  placeholder?: {
7427
7244
  id: string;
7428
7245
  description: string;
@@ -7446,7 +7263,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7446
7263
  }>>;
7447
7264
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
7448
7265
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7449
- secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7450
7266
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
7451
7267
  id: string;
7452
7268
  description: string;
@@ -7506,7 +7322,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7506
7322
  type: "DISPLAY_ON_REVIEW";
7507
7323
  conditional: import(".").JSONSchema;
7508
7324
  })[] | undefined;
7509
- secured?: boolean | undefined;
7510
7325
  placeholder?: TranslationConfig | undefined;
7511
7326
  helperText?: TranslationConfig | undefined;
7512
7327
  hideLabel?: boolean | undefined;
@@ -7541,7 +7356,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7541
7356
  type: "DISPLAY_ON_REVIEW";
7542
7357
  conditional: import(".").JSONSchema;
7543
7358
  })[] | undefined;
7544
- secured?: boolean | undefined;
7545
7359
  placeholder?: {
7546
7360
  id: string;
7547
7361
  description: string;
@@ -7565,7 +7379,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7565
7379
  }>>;
7566
7380
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
7567
7381
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7568
- secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7569
7382
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
7570
7383
  id: string;
7571
7384
  description: string;
@@ -7645,7 +7458,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7645
7458
  type: "DISPLAY_ON_REVIEW";
7646
7459
  conditional: import(".").JSONSchema;
7647
7460
  })[] | undefined;
7648
- secured?: boolean | undefined;
7649
7461
  placeholder?: TranslationConfig | undefined;
7650
7462
  helperText?: TranslationConfig | undefined;
7651
7463
  hideLabel?: boolean | undefined;
@@ -7685,7 +7497,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7685
7497
  type: "DISPLAY_ON_REVIEW";
7686
7498
  conditional: import(".").JSONSchema;
7687
7499
  })[] | undefined;
7688
- secured?: boolean | undefined;
7689
7500
  placeholder?: {
7690
7501
  id: string;
7691
7502
  description: string;
@@ -7713,7 +7524,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7713
7524
  }>>;
7714
7525
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
7715
7526
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7716
- secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7717
7527
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
7718
7528
  id: string;
7719
7529
  description: string;
@@ -7780,7 +7590,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7780
7590
  type: "DISPLAY_ON_REVIEW";
7781
7591
  conditional: import(".").JSONSchema;
7782
7592
  })[] | undefined;
7783
- secured?: boolean | undefined;
7784
7593
  placeholder?: TranslationConfig | undefined;
7785
7594
  helperText?: TranslationConfig | undefined;
7786
7595
  hideLabel?: boolean | undefined;
@@ -7818,7 +7627,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7818
7627
  type: "DISPLAY_ON_REVIEW";
7819
7628
  conditional: import(".").JSONSchema;
7820
7629
  })[] | undefined;
7821
- secured?: boolean | undefined;
7822
7630
  placeholder?: {
7823
7631
  id: string;
7824
7632
  description: string;
@@ -7845,7 +7653,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7845
7653
  }>>;
7846
7654
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
7847
7655
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7848
- secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7849
7656
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
7850
7657
  id: string;
7851
7658
  description: string;
@@ -7956,7 +7763,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7956
7763
  type: "DISPLAY_ON_REVIEW";
7957
7764
  conditional: import(".").JSONSchema;
7958
7765
  })[] | undefined;
7959
- secured?: boolean | undefined;
7960
7766
  placeholder?: TranslationConfig | undefined;
7961
7767
  helperText?: TranslationConfig | undefined;
7962
7768
  hideLabel?: boolean | undefined;
@@ -8004,7 +7810,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8004
7810
  type: "DISPLAY_ON_REVIEW";
8005
7811
  conditional: import(".").JSONSchema;
8006
7812
  })[] | undefined;
8007
- secured?: boolean | undefined;
8008
7813
  placeholder?: {
8009
7814
  id: string;
8010
7815
  description: string;
@@ -8037,7 +7842,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8037
7842
  }>>;
8038
7843
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
8039
7844
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
8040
- secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
8041
7845
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
8042
7846
  id: string;
8043
7847
  description: string;
@@ -8172,7 +7976,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8172
7976
  type: "DISPLAY_ON_REVIEW";
8173
7977
  conditional: import(".").JSONSchema;
8174
7978
  })[] | undefined;
8175
- secured?: boolean | undefined;
8176
7979
  placeholder?: TranslationConfig | undefined;
8177
7980
  helperText?: TranslationConfig | undefined;
8178
7981
  hideLabel?: boolean | undefined;
@@ -8227,7 +8030,6 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8227
8030
  type: "DISPLAY_ON_REVIEW";
8228
8031
  conditional: import(".").JSONSchema;
8229
8032
  })[] | undefined;
8230
- secured?: boolean | undefined;
8231
8033
  placeholder?: {
8232
8034
  id: string;
8233
8035
  description: string;