@opencrvs/toolkit 1.8.0-rc.fd8a78f → 1.8.0-rc.fde35f6

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 (35) hide show
  1. package/dist/commons/api/router.d.ts +3117 -11206
  2. package/dist/commons/conditionals/conditionals.d.ts +0 -12
  3. package/dist/commons/events/ActionConfig.d.ts +12032 -3972
  4. package/dist/commons/events/ActionDocument.d.ts +3029 -1886
  5. package/dist/commons/events/ActionInput.d.ts +2406 -1506
  6. package/dist/commons/events/AdvancedSearchConfig.d.ts +304 -51
  7. package/dist/commons/events/CompositeFieldValue.d.ts +15 -15
  8. package/dist/commons/events/CountryConfigQueryInput.d.ts +1891 -741
  9. package/dist/commons/events/CreatedAtLocation.d.ts +1 -2
  10. package/dist/commons/events/Draft.d.ts +213 -136
  11. package/dist/commons/events/EventConfig.d.ts +4770 -755
  12. package/dist/commons/events/EventDocument.d.ts +1942 -1219
  13. package/dist/commons/events/EventIndex.d.ts +897 -263
  14. package/dist/commons/events/EventMetadata.d.ts +73 -31
  15. package/dist/commons/events/FieldConfig.d.ts +607 -30
  16. package/dist/commons/events/FieldType.d.ts +2 -1
  17. package/dist/commons/events/FieldTypeMapping.d.ts +73 -41
  18. package/dist/commons/events/FieldValue.d.ts +57 -28
  19. package/dist/commons/events/FormConfig.d.ts +4685 -1295
  20. package/dist/commons/events/PageConfig.d.ts +868 -38
  21. package/dist/commons/events/User.d.ts +6 -3
  22. package/dist/commons/events/WorkqueueColumnConfig.d.ts +11 -11
  23. package/dist/commons/events/WorkqueueConfig.d.ts +4490 -1177
  24. package/dist/commons/events/defineConfig.d.ts +759 -34
  25. package/dist/commons/events/event.d.ts +15 -10
  26. package/dist/commons/events/field.d.ts +17 -0
  27. package/dist/commons/events/scopes.d.ts +1 -2
  28. package/dist/commons/events/test.utils.d.ts +83 -36
  29. package/dist/commons/events/transactions.d.ts +1 -1
  30. package/dist/commons/events/utils.d.ts +2926 -88
  31. package/dist/conditionals/index.js +22 -51
  32. package/dist/events/index.js +1550 -1048
  33. package/dist/scopes/index.d.ts +96 -7
  34. package/dist/scopes/index.js +105 -26
  35. 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;
@@ -1172,7 +1215,10 @@ declare const DateField: z.ZodObject<z.objectUtil.extendShape<{
1172
1215
  } | undefined;
1173
1216
  }>;
1174
1217
  export type DateField = z.infer<typeof DateField>;
1175
- declare const DateRangeField: z.ZodObject<z.objectUtil.extendShape<{
1218
+ /**
1219
+ * For internal use only. Needed for search functionality.
1220
+ */
1221
+ export declare const DateRangeField: z.ZodObject<z.objectUtil.extendShape<{
1176
1222
  id: z.ZodString;
1177
1223
  parent: z.ZodOptional<z.ZodObject<{
1178
1224
  $$field: z.ZodString;
@@ -1183,6 +1229,7 @@ declare const DateRangeField: z.ZodObject<z.objectUtil.extendShape<{
1183
1229
  }>>;
1184
1230
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
1185
1231
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1232
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1186
1233
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
1187
1234
  id: string;
1188
1235
  description: string;
@@ -1219,7 +1266,16 @@ declare const DateRangeField: z.ZodObject<z.objectUtil.extendShape<{
1219
1266
  hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1220
1267
  }, {
1221
1268
  type: z.ZodLiteral<"DATE_RANGE">;
1222
- defaultValue: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>>;
1269
+ defaultValue: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
1270
+ start: z.ZodString;
1271
+ end: z.ZodString;
1272
+ }, "strip", z.ZodTypeAny, {
1273
+ start: string;
1274
+ end: string;
1275
+ }, {
1276
+ start: string;
1277
+ end: string;
1278
+ }>, z.ZodString]>>;
1223
1279
  configuration: z.ZodOptional<z.ZodObject<{
1224
1280
  notice: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
1225
1281
  id: string;
@@ -1257,10 +1313,14 @@ declare const DateRangeField: z.ZodObject<z.objectUtil.extendShape<{
1257
1313
  type: "DISPLAY_ON_REVIEW";
1258
1314
  conditional: import(".").JSONSchema;
1259
1315
  })[] | undefined;
1316
+ secured?: boolean | undefined;
1260
1317
  placeholder?: TranslationConfig | undefined;
1261
1318
  helperText?: TranslationConfig | undefined;
1262
1319
  hideLabel?: boolean | undefined;
1263
- defaultValue?: string | [string, string] | undefined;
1320
+ defaultValue?: string | {
1321
+ start: string;
1322
+ end: string;
1323
+ } | undefined;
1264
1324
  configuration?: {
1265
1325
  notice?: TranslationConfig | undefined;
1266
1326
  } | undefined;
@@ -1294,6 +1354,7 @@ declare const DateRangeField: z.ZodObject<z.objectUtil.extendShape<{
1294
1354
  type: "DISPLAY_ON_REVIEW";
1295
1355
  conditional: import(".").JSONSchema;
1296
1356
  })[] | undefined;
1357
+ secured?: boolean | undefined;
1297
1358
  placeholder?: {
1298
1359
  id: string;
1299
1360
  description: string;
@@ -1305,7 +1366,10 @@ declare const DateRangeField: z.ZodObject<z.objectUtil.extendShape<{
1305
1366
  defaultMessage: string;
1306
1367
  } | undefined;
1307
1368
  hideLabel?: boolean | undefined;
1308
- defaultValue?: string | [string, string] | undefined;
1369
+ defaultValue?: string | {
1370
+ start: string;
1371
+ end: string;
1372
+ } | undefined;
1309
1373
  configuration?: {
1310
1374
  notice?: {
1311
1375
  id: string;
@@ -1328,6 +1392,7 @@ declare const Paragraph: z.ZodObject<z.objectUtil.extendShape<{
1328
1392
  }>>;
1329
1393
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
1330
1394
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1395
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1331
1396
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
1332
1397
  id: string;
1333
1398
  description: string;
@@ -1409,6 +1474,7 @@ declare const Paragraph: z.ZodObject<z.objectUtil.extendShape<{
1409
1474
  type: "DISPLAY_ON_REVIEW";
1410
1475
  conditional: import(".").JSONSchema;
1411
1476
  })[] | undefined;
1477
+ secured?: boolean | undefined;
1412
1478
  placeholder?: TranslationConfig | undefined;
1413
1479
  helperText?: TranslationConfig | undefined;
1414
1480
  hideLabel?: boolean | undefined;
@@ -1443,6 +1509,7 @@ declare const Paragraph: z.ZodObject<z.objectUtil.extendShape<{
1443
1509
  type: "DISPLAY_ON_REVIEW";
1444
1510
  conditional: import(".").JSONSchema;
1445
1511
  })[] | undefined;
1512
+ secured?: boolean | undefined;
1446
1513
  placeholder?: {
1447
1514
  id: string;
1448
1515
  description: string;
@@ -1473,6 +1540,7 @@ declare const PageHeader: z.ZodObject<z.objectUtil.extendShape<{
1473
1540
  }>>;
1474
1541
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
1475
1542
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1543
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1476
1544
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
1477
1545
  id: string;
1478
1546
  description: string;
@@ -1532,6 +1600,7 @@ declare const PageHeader: z.ZodObject<z.objectUtil.extendShape<{
1532
1600
  type: "DISPLAY_ON_REVIEW";
1533
1601
  conditional: import(".").JSONSchema;
1534
1602
  })[] | undefined;
1603
+ secured?: boolean | undefined;
1535
1604
  placeholder?: TranslationConfig | undefined;
1536
1605
  helperText?: TranslationConfig | undefined;
1537
1606
  hideLabel?: boolean | undefined;
@@ -1566,6 +1635,7 @@ declare const PageHeader: z.ZodObject<z.objectUtil.extendShape<{
1566
1635
  type: "DISPLAY_ON_REVIEW";
1567
1636
  conditional: import(".").JSONSchema;
1568
1637
  })[] | undefined;
1638
+ secured?: boolean | undefined;
1569
1639
  placeholder?: {
1570
1640
  id: string;
1571
1641
  description: string;
@@ -1591,6 +1661,7 @@ declare const File: z.ZodObject<z.objectUtil.extendShape<{
1591
1661
  }>>;
1592
1662
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
1593
1663
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1664
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1594
1665
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
1595
1666
  id: string;
1596
1667
  description: string;
@@ -1628,16 +1699,16 @@ declare const File: z.ZodObject<z.objectUtil.extendShape<{
1628
1699
  }, {
1629
1700
  type: z.ZodLiteral<"FILE">;
1630
1701
  defaultValue: z.ZodOptional<z.ZodObject<{
1631
- filename: z.ZodString;
1702
+ path: z.ZodEffects<z.ZodString, string, string>;
1632
1703
  originalFilename: z.ZodString;
1633
1704
  type: z.ZodString;
1634
1705
  }, "strip", z.ZodTypeAny, {
1635
1706
  type: string;
1636
- filename: string;
1707
+ path: string;
1637
1708
  originalFilename: string;
1638
1709
  }, {
1639
1710
  type: string;
1640
- filename: string;
1711
+ path: string;
1641
1712
  originalFilename: string;
1642
1713
  }>>;
1643
1714
  configuration: z.ZodDefault<z.ZodObject<{
@@ -1704,12 +1775,13 @@ declare const File: z.ZodObject<z.objectUtil.extendShape<{
1704
1775
  type: "DISPLAY_ON_REVIEW";
1705
1776
  conditional: import(".").JSONSchema;
1706
1777
  })[] | undefined;
1778
+ secured?: boolean | undefined;
1707
1779
  placeholder?: TranslationConfig | undefined;
1708
1780
  helperText?: TranslationConfig | undefined;
1709
1781
  hideLabel?: boolean | undefined;
1710
1782
  defaultValue?: {
1711
1783
  type: string;
1712
- filename: string;
1784
+ path: string;
1713
1785
  originalFilename: string;
1714
1786
  } | undefined;
1715
1787
  }, {
@@ -1742,6 +1814,7 @@ declare const File: z.ZodObject<z.objectUtil.extendShape<{
1742
1814
  type: "DISPLAY_ON_REVIEW";
1743
1815
  conditional: import(".").JSONSchema;
1744
1816
  })[] | undefined;
1817
+ secured?: boolean | undefined;
1745
1818
  placeholder?: {
1746
1819
  id: string;
1747
1820
  description: string;
@@ -1755,7 +1828,7 @@ declare const File: z.ZodObject<z.objectUtil.extendShape<{
1755
1828
  hideLabel?: boolean | undefined;
1756
1829
  defaultValue?: {
1757
1830
  type: string;
1758
- filename: string;
1831
+ path: string;
1759
1832
  originalFilename: string;
1760
1833
  } | undefined;
1761
1834
  configuration?: {
@@ -1801,6 +1874,7 @@ declare const RadioGroup: z.ZodObject<z.objectUtil.extendShape<{
1801
1874
  }>>;
1802
1875
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
1803
1876
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1877
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1804
1878
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
1805
1879
  id: string;
1806
1880
  description: string;
@@ -1899,6 +1973,7 @@ declare const RadioGroup: z.ZodObject<z.objectUtil.extendShape<{
1899
1973
  type: "DISPLAY_ON_REVIEW";
1900
1974
  conditional: import(".").JSONSchema;
1901
1975
  })[] | undefined;
1976
+ secured?: boolean | undefined;
1902
1977
  placeholder?: TranslationConfig | undefined;
1903
1978
  helperText?: TranslationConfig | undefined;
1904
1979
  hideLabel?: boolean | undefined;
@@ -1946,6 +2021,7 @@ declare const RadioGroup: z.ZodObject<z.objectUtil.extendShape<{
1946
2021
  type: "DISPLAY_ON_REVIEW";
1947
2022
  conditional: import(".").JSONSchema;
1948
2023
  })[] | undefined;
2024
+ secured?: boolean | undefined;
1949
2025
  placeholder?: {
1950
2026
  id: string;
1951
2027
  description: string;
@@ -1976,6 +2052,7 @@ declare const BulletList: z.ZodObject<z.objectUtil.extendShape<{
1976
2052
  }>>;
1977
2053
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
1978
2054
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2055
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1979
2056
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
1980
2057
  id: string;
1981
2058
  description: string;
@@ -2063,6 +2140,7 @@ declare const BulletList: z.ZodObject<z.objectUtil.extendShape<{
2063
2140
  type: "DISPLAY_ON_REVIEW";
2064
2141
  conditional: import(".").JSONSchema;
2065
2142
  })[] | undefined;
2143
+ secured?: boolean | undefined;
2066
2144
  placeholder?: TranslationConfig | undefined;
2067
2145
  helperText?: TranslationConfig | undefined;
2068
2146
  hideLabel?: boolean | undefined;
@@ -2102,6 +2180,7 @@ declare const BulletList: z.ZodObject<z.objectUtil.extendShape<{
2102
2180
  type: "DISPLAY_ON_REVIEW";
2103
2181
  conditional: import(".").JSONSchema;
2104
2182
  })[] | undefined;
2183
+ secured?: boolean | undefined;
2105
2184
  placeholder?: {
2106
2185
  id: string;
2107
2186
  description: string;
@@ -2132,6 +2211,7 @@ declare const Select: z.ZodObject<z.objectUtil.extendShape<{
2132
2211
  }>>;
2133
2212
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
2134
2213
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2214
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2135
2215
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
2136
2216
  id: string;
2137
2217
  description: string;
@@ -2213,6 +2293,7 @@ declare const Select: z.ZodObject<z.objectUtil.extendShape<{
2213
2293
  type: "DISPLAY_ON_REVIEW";
2214
2294
  conditional: import(".").JSONSchema;
2215
2295
  })[] | undefined;
2296
+ secured?: boolean | undefined;
2216
2297
  placeholder?: TranslationConfig | undefined;
2217
2298
  helperText?: TranslationConfig | undefined;
2218
2299
  hideLabel?: boolean | undefined;
@@ -2255,6 +2336,7 @@ declare const Select: z.ZodObject<z.objectUtil.extendShape<{
2255
2336
  type: "DISPLAY_ON_REVIEW";
2256
2337
  conditional: import(".").JSONSchema;
2257
2338
  })[] | undefined;
2339
+ secured?: boolean | undefined;
2258
2340
  placeholder?: {
2259
2341
  id: string;
2260
2342
  description: string;
@@ -2268,6 +2350,179 @@ declare const Select: z.ZodObject<z.objectUtil.extendShape<{
2268
2350
  hideLabel?: boolean | undefined;
2269
2351
  defaultValue?: string | undefined;
2270
2352
  }>;
2353
+ export declare const SelectDateRangeOption: z.ZodObject<{
2354
+ value: z.ZodEnum<["last7Days", "last30Days", "last90Days", "last365Days"]>;
2355
+ label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
2356
+ id: string;
2357
+ description: string;
2358
+ defaultMessage: string;
2359
+ }>;
2360
+ }, "strip", z.ZodTypeAny, {
2361
+ value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
2362
+ label: TranslationConfig;
2363
+ }, {
2364
+ value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
2365
+ label: {
2366
+ id: string;
2367
+ description: string;
2368
+ defaultMessage: string;
2369
+ };
2370
+ }>;
2371
+ export type SelectDateRangeOption = z.infer<typeof SelectDateRangeOption>;
2372
+ /**
2373
+ * For internal use only. Needed for search functionality.
2374
+ */
2375
+ export declare const SelectDateRangeField: z.ZodObject<z.objectUtil.extendShape<{
2376
+ id: z.ZodString;
2377
+ parent: z.ZodOptional<z.ZodObject<{
2378
+ $$field: z.ZodString;
2379
+ }, "strip", z.ZodTypeAny, {
2380
+ $$field: string;
2381
+ }, {
2382
+ $$field: string;
2383
+ }>>;
2384
+ conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
2385
+ required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2386
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2387
+ placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
2388
+ id: string;
2389
+ description: string;
2390
+ defaultMessage: string;
2391
+ }>>;
2392
+ validation: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodObject<{
2393
+ validator: z.ZodType<import(".").JSONSchema, z.ZodTypeDef, import(".").JSONSchema>;
2394
+ message: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
2395
+ id: string;
2396
+ description: string;
2397
+ defaultMessage: string;
2398
+ }>;
2399
+ }, "strip", z.ZodTypeAny, {
2400
+ message: TranslationConfig;
2401
+ validator: import(".").JSONSchema;
2402
+ }, {
2403
+ message: {
2404
+ id: string;
2405
+ description: string;
2406
+ defaultMessage: string;
2407
+ };
2408
+ validator: import(".").JSONSchema;
2409
+ }>, "many">>>;
2410
+ label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
2411
+ id: string;
2412
+ description: string;
2413
+ defaultMessage: string;
2414
+ }>;
2415
+ helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
2416
+ id: string;
2417
+ description: string;
2418
+ defaultMessage: string;
2419
+ }>>;
2420
+ hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2421
+ }, {
2422
+ type: z.ZodLiteral<"SELECT_DATE_RANGE">;
2423
+ defaultValue: z.ZodOptional<z.ZodEnum<["last7Days", "last30Days", "last90Days", "last365Days"]>>;
2424
+ options: z.ZodArray<z.ZodObject<{
2425
+ value: z.ZodEnum<["last7Days", "last30Days", "last90Days", "last365Days"]>;
2426
+ label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
2427
+ id: string;
2428
+ description: string;
2429
+ defaultMessage: string;
2430
+ }>;
2431
+ }, "strip", z.ZodTypeAny, {
2432
+ value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
2433
+ label: TranslationConfig;
2434
+ }, {
2435
+ value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
2436
+ label: {
2437
+ id: string;
2438
+ description: string;
2439
+ defaultMessage: string;
2440
+ };
2441
+ }>, "many">;
2442
+ }>, "strip", z.ZodTypeAny, {
2443
+ type: "SELECT_DATE_RANGE";
2444
+ id: string;
2445
+ options: {
2446
+ value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
2447
+ label: TranslationConfig;
2448
+ }[];
2449
+ label: TranslationConfig;
2450
+ parent?: {
2451
+ $$field: string;
2452
+ } | undefined;
2453
+ validation?: {
2454
+ message: TranslationConfig;
2455
+ validator: import(".").JSONSchema;
2456
+ }[] | undefined;
2457
+ required?: boolean | undefined;
2458
+ conditionals?: ({
2459
+ type: "SHOW";
2460
+ conditional: import(".").JSONSchema;
2461
+ } | {
2462
+ type: "ENABLE";
2463
+ conditional: import(".").JSONSchema;
2464
+ } | {
2465
+ type: "DISPLAY_ON_REVIEW";
2466
+ conditional: import(".").JSONSchema;
2467
+ })[] | undefined;
2468
+ secured?: boolean | undefined;
2469
+ placeholder?: TranslationConfig | undefined;
2470
+ helperText?: TranslationConfig | undefined;
2471
+ hideLabel?: boolean | undefined;
2472
+ defaultValue?: "last7Days" | "last30Days" | "last90Days" | "last365Days" | undefined;
2473
+ }, {
2474
+ type: "SELECT_DATE_RANGE";
2475
+ id: string;
2476
+ options: {
2477
+ value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
2478
+ label: {
2479
+ id: string;
2480
+ description: string;
2481
+ defaultMessage: string;
2482
+ };
2483
+ }[];
2484
+ label: {
2485
+ id: string;
2486
+ description: string;
2487
+ defaultMessage: string;
2488
+ };
2489
+ parent?: {
2490
+ $$field: string;
2491
+ } | undefined;
2492
+ validation?: {
2493
+ message: {
2494
+ id: string;
2495
+ description: string;
2496
+ defaultMessage: string;
2497
+ };
2498
+ validator: import(".").JSONSchema;
2499
+ }[] | undefined;
2500
+ required?: boolean | undefined;
2501
+ conditionals?: ({
2502
+ type: "SHOW";
2503
+ conditional: import(".").JSONSchema;
2504
+ } | {
2505
+ type: "ENABLE";
2506
+ conditional: import(".").JSONSchema;
2507
+ } | {
2508
+ type: "DISPLAY_ON_REVIEW";
2509
+ conditional: import(".").JSONSchema;
2510
+ })[] | undefined;
2511
+ secured?: boolean | undefined;
2512
+ placeholder?: {
2513
+ id: string;
2514
+ description: string;
2515
+ defaultMessage: string;
2516
+ } | undefined;
2517
+ helperText?: {
2518
+ id: string;
2519
+ description: string;
2520
+ defaultMessage: string;
2521
+ } | undefined;
2522
+ hideLabel?: boolean | undefined;
2523
+ defaultValue?: "last7Days" | "last30Days" | "last90Days" | "last365Days" | undefined;
2524
+ }>;
2525
+ export type SelectDateRangeField = z.infer<typeof SelectDateRangeField>;
2271
2526
  declare const NameField: z.ZodObject<z.objectUtil.extendShape<{
2272
2527
  id: z.ZodString;
2273
2528
  parent: z.ZodOptional<z.ZodObject<{
@@ -2279,6 +2534,7 @@ declare const NameField: z.ZodObject<z.objectUtil.extendShape<{
2279
2534
  }>>;
2280
2535
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
2281
2536
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2537
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2282
2538
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
2283
2539
  id: string;
2284
2540
  description: string;
@@ -2337,10 +2593,14 @@ declare const NameField: z.ZodObject<z.objectUtil.extendShape<{
2337
2593
  description: string;
2338
2594
  defaultMessage: string;
2339
2595
  }>>;
2596
+ includeMiddlename: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2597
+ searchMode: z.ZodOptional<z.ZodBoolean>;
2340
2598
  }, "strip", z.ZodTypeAny, {
2341
2599
  maxLength?: number | undefined;
2342
2600
  prefix?: TranslationConfig | undefined;
2343
2601
  postfix?: TranslationConfig | undefined;
2602
+ includeMiddlename?: boolean | undefined;
2603
+ searchMode?: boolean | undefined;
2344
2604
  }, {
2345
2605
  maxLength?: number | undefined;
2346
2606
  prefix?: {
@@ -2353,6 +2613,8 @@ declare const NameField: z.ZodObject<z.objectUtil.extendShape<{
2353
2613
  description: string;
2354
2614
  defaultMessage: string;
2355
2615
  } | undefined;
2616
+ includeMiddlename?: boolean | undefined;
2617
+ searchMode?: boolean | undefined;
2356
2618
  }>>;
2357
2619
  }>, "strip", z.ZodTypeAny, {
2358
2620
  type: "NAME";
@@ -2376,6 +2638,7 @@ declare const NameField: z.ZodObject<z.objectUtil.extendShape<{
2376
2638
  type: "DISPLAY_ON_REVIEW";
2377
2639
  conditional: import(".").JSONSchema;
2378
2640
  })[] | undefined;
2641
+ secured?: boolean | undefined;
2379
2642
  placeholder?: TranslationConfig | undefined;
2380
2643
  helperText?: TranslationConfig | undefined;
2381
2644
  hideLabel?: boolean | undefined;
@@ -2387,6 +2650,8 @@ declare const NameField: z.ZodObject<z.objectUtil.extendShape<{
2387
2650
  maxLength?: number | undefined;
2388
2651
  prefix?: TranslationConfig | undefined;
2389
2652
  postfix?: TranslationConfig | undefined;
2653
+ includeMiddlename?: boolean | undefined;
2654
+ searchMode?: boolean | undefined;
2390
2655
  } | undefined;
2391
2656
  }, {
2392
2657
  type: "NAME";
@@ -2418,6 +2683,7 @@ declare const NameField: z.ZodObject<z.objectUtil.extendShape<{
2418
2683
  type: "DISPLAY_ON_REVIEW";
2419
2684
  conditional: import(".").JSONSchema;
2420
2685
  })[] | undefined;
2686
+ secured?: boolean | undefined;
2421
2687
  placeholder?: {
2422
2688
  id: string;
2423
2689
  description: string;
@@ -2445,6 +2711,8 @@ declare const NameField: z.ZodObject<z.objectUtil.extendShape<{
2445
2711
  description: string;
2446
2712
  defaultMessage: string;
2447
2713
  } | undefined;
2714
+ includeMiddlename?: boolean | undefined;
2715
+ searchMode?: boolean | undefined;
2448
2716
  } | undefined;
2449
2717
  }>;
2450
2718
  declare const PhoneField: z.ZodObject<z.objectUtil.extendShape<{
@@ -2458,6 +2726,7 @@ declare const PhoneField: z.ZodObject<z.objectUtil.extendShape<{
2458
2726
  }>>;
2459
2727
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
2460
2728
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2729
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2461
2730
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
2462
2731
  id: string;
2463
2732
  description: string;
@@ -2517,6 +2786,7 @@ declare const PhoneField: z.ZodObject<z.objectUtil.extendShape<{
2517
2786
  type: "DISPLAY_ON_REVIEW";
2518
2787
  conditional: import(".").JSONSchema;
2519
2788
  })[] | undefined;
2789
+ secured?: boolean | undefined;
2520
2790
  placeholder?: TranslationConfig | undefined;
2521
2791
  helperText?: TranslationConfig | undefined;
2522
2792
  hideLabel?: boolean | undefined;
@@ -2551,6 +2821,7 @@ declare const PhoneField: z.ZodObject<z.objectUtil.extendShape<{
2551
2821
  type: "DISPLAY_ON_REVIEW";
2552
2822
  conditional: import(".").JSONSchema;
2553
2823
  })[] | undefined;
2824
+ secured?: boolean | undefined;
2554
2825
  placeholder?: {
2555
2826
  id: string;
2556
2827
  description: string;
@@ -2575,6 +2846,7 @@ declare const IdField: z.ZodObject<z.objectUtil.extendShape<{
2575
2846
  }>>;
2576
2847
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
2577
2848
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2849
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2578
2850
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
2579
2851
  id: string;
2580
2852
  description: string;
@@ -2634,6 +2906,7 @@ declare const IdField: z.ZodObject<z.objectUtil.extendShape<{
2634
2906
  type: "DISPLAY_ON_REVIEW";
2635
2907
  conditional: import(".").JSONSchema;
2636
2908
  })[] | undefined;
2909
+ secured?: boolean | undefined;
2637
2910
  placeholder?: TranslationConfig | undefined;
2638
2911
  helperText?: TranslationConfig | undefined;
2639
2912
  hideLabel?: boolean | undefined;
@@ -2668,6 +2941,7 @@ declare const IdField: z.ZodObject<z.objectUtil.extendShape<{
2668
2941
  type: "DISPLAY_ON_REVIEW";
2669
2942
  conditional: import(".").JSONSchema;
2670
2943
  })[] | undefined;
2944
+ secured?: boolean | undefined;
2671
2945
  placeholder?: {
2672
2946
  id: string;
2673
2947
  description: string;
@@ -2692,6 +2966,7 @@ declare const Checkbox: z.ZodObject<z.objectUtil.extendShape<{
2692
2966
  }>>;
2693
2967
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
2694
2968
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2969
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2695
2970
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
2696
2971
  id: string;
2697
2972
  description: string;
@@ -2751,6 +3026,7 @@ declare const Checkbox: z.ZodObject<z.objectUtil.extendShape<{
2751
3026
  type: "DISPLAY_ON_REVIEW";
2752
3027
  conditional: import(".").JSONSchema;
2753
3028
  })[] | undefined;
3029
+ secured?: boolean | undefined;
2754
3030
  placeholder?: TranslationConfig | undefined;
2755
3031
  helperText?: TranslationConfig | undefined;
2756
3032
  hideLabel?: boolean | undefined;
@@ -2785,6 +3061,7 @@ declare const Checkbox: z.ZodObject<z.objectUtil.extendShape<{
2785
3061
  type: "DISPLAY_ON_REVIEW";
2786
3062
  conditional: import(".").JSONSchema;
2787
3063
  })[] | undefined;
3064
+ secured?: boolean | undefined;
2788
3065
  placeholder?: {
2789
3066
  id: string;
2790
3067
  description: string;
@@ -2810,6 +3087,7 @@ declare const Country: z.ZodObject<z.objectUtil.extendShape<{
2810
3087
  }>>;
2811
3088
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
2812
3089
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3090
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2813
3091
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
2814
3092
  id: string;
2815
3093
  description: string;
@@ -2869,6 +3147,7 @@ declare const Country: z.ZodObject<z.objectUtil.extendShape<{
2869
3147
  type: "DISPLAY_ON_REVIEW";
2870
3148
  conditional: import(".").JSONSchema;
2871
3149
  })[] | undefined;
3150
+ secured?: boolean | undefined;
2872
3151
  placeholder?: TranslationConfig | undefined;
2873
3152
  helperText?: TranslationConfig | undefined;
2874
3153
  hideLabel?: boolean | undefined;
@@ -2903,6 +3182,7 @@ declare const Country: z.ZodObject<z.objectUtil.extendShape<{
2903
3182
  type: "DISPLAY_ON_REVIEW";
2904
3183
  conditional: import(".").JSONSchema;
2905
3184
  })[] | undefined;
3185
+ secured?: boolean | undefined;
2906
3186
  placeholder?: {
2907
3187
  id: string;
2908
3188
  description: string;
@@ -2949,6 +3229,7 @@ declare const AdministrativeArea: z.ZodObject<z.objectUtil.extendShape<{
2949
3229
  }>>;
2950
3230
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
2951
3231
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3232
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2952
3233
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
2953
3234
  id: string;
2954
3235
  description: string;
@@ -3034,6 +3315,7 @@ declare const AdministrativeArea: z.ZodObject<z.objectUtil.extendShape<{
3034
3315
  type: "DISPLAY_ON_REVIEW";
3035
3316
  conditional: import(".").JSONSchema;
3036
3317
  })[] | undefined;
3318
+ secured?: boolean | undefined;
3037
3319
  placeholder?: TranslationConfig | undefined;
3038
3320
  helperText?: TranslationConfig | undefined;
3039
3321
  hideLabel?: boolean | undefined;
@@ -3074,6 +3356,7 @@ declare const AdministrativeArea: z.ZodObject<z.objectUtil.extendShape<{
3074
3356
  type: "DISPLAY_ON_REVIEW";
3075
3357
  conditional: import(".").JSONSchema;
3076
3358
  })[] | undefined;
3359
+ secured?: boolean | undefined;
3077
3360
  placeholder?: {
3078
3361
  id: string;
3079
3362
  description: string;
@@ -3099,6 +3382,7 @@ declare const Location: z.ZodObject<z.objectUtil.extendShape<{
3099
3382
  }>>;
3100
3383
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
3101
3384
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3385
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3102
3386
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
3103
3387
  id: string;
3104
3388
  description: string;
@@ -3158,6 +3442,7 @@ declare const Location: z.ZodObject<z.objectUtil.extendShape<{
3158
3442
  type: "DISPLAY_ON_REVIEW";
3159
3443
  conditional: import(".").JSONSchema;
3160
3444
  })[] | undefined;
3445
+ secured?: boolean | undefined;
3161
3446
  placeholder?: TranslationConfig | undefined;
3162
3447
  helperText?: TranslationConfig | undefined;
3163
3448
  hideLabel?: boolean | undefined;
@@ -3192,6 +3477,7 @@ declare const Location: z.ZodObject<z.objectUtil.extendShape<{
3192
3477
  type: "DISPLAY_ON_REVIEW";
3193
3478
  conditional: import(".").JSONSchema;
3194
3479
  })[] | undefined;
3480
+ secured?: boolean | undefined;
3195
3481
  placeholder?: {
3196
3482
  id: string;
3197
3483
  description: string;
@@ -3217,6 +3503,7 @@ declare const FileUploadWithOptions: z.ZodObject<z.objectUtil.extendShape<{
3217
3503
  }>>;
3218
3504
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
3219
3505
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3506
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3220
3507
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
3221
3508
  id: string;
3222
3509
  description: string;
@@ -3272,19 +3559,19 @@ declare const FileUploadWithOptions: z.ZodObject<z.objectUtil.extendShape<{
3272
3559
  };
3273
3560
  }>, "many">;
3274
3561
  defaultValue: z.ZodOptional<z.ZodArray<z.ZodObject<{
3275
- filename: z.ZodString;
3562
+ path: z.ZodEffects<z.ZodString, string, string>;
3276
3563
  originalFilename: z.ZodString;
3277
3564
  type: z.ZodString;
3278
3565
  option: z.ZodString;
3279
3566
  }, "strip", z.ZodTypeAny, {
3280
3567
  type: string;
3281
3568
  option: string;
3282
- filename: string;
3569
+ path: string;
3283
3570
  originalFilename: string;
3284
3571
  }, {
3285
3572
  type: string;
3286
3573
  option: string;
3287
- filename: string;
3574
+ path: string;
3288
3575
  originalFilename: string;
3289
3576
  }>, "many">>;
3290
3577
  configuration: z.ZodDefault<z.ZodObject<{
@@ -3327,13 +3614,14 @@ declare const FileUploadWithOptions: z.ZodObject<z.objectUtil.extendShape<{
3327
3614
  type: "DISPLAY_ON_REVIEW";
3328
3615
  conditional: import(".").JSONSchema;
3329
3616
  })[] | undefined;
3617
+ secured?: boolean | undefined;
3330
3618
  placeholder?: TranslationConfig | undefined;
3331
3619
  helperText?: TranslationConfig | undefined;
3332
3620
  hideLabel?: boolean | undefined;
3333
3621
  defaultValue?: {
3334
3622
  type: string;
3335
3623
  option: string;
3336
- filename: string;
3624
+ path: string;
3337
3625
  originalFilename: string;
3338
3626
  }[] | undefined;
3339
3627
  }, {
@@ -3374,6 +3662,7 @@ declare const FileUploadWithOptions: z.ZodObject<z.objectUtil.extendShape<{
3374
3662
  type: "DISPLAY_ON_REVIEW";
3375
3663
  conditional: import(".").JSONSchema;
3376
3664
  })[] | undefined;
3665
+ secured?: boolean | undefined;
3377
3666
  placeholder?: {
3378
3667
  id: string;
3379
3668
  description: string;
@@ -3388,7 +3677,7 @@ declare const FileUploadWithOptions: z.ZodObject<z.objectUtil.extendShape<{
3388
3677
  defaultValue?: {
3389
3678
  type: string;
3390
3679
  option: string;
3391
- filename: string;
3680
+ path: string;
3392
3681
  originalFilename: string;
3393
3682
  }[] | undefined;
3394
3683
  configuration?: {
@@ -3408,6 +3697,7 @@ declare const Facility: z.ZodObject<z.objectUtil.extendShape<{
3408
3697
  }>>;
3409
3698
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
3410
3699
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3700
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3411
3701
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
3412
3702
  id: string;
3413
3703
  description: string;
@@ -3467,6 +3757,7 @@ declare const Facility: z.ZodObject<z.objectUtil.extendShape<{
3467
3757
  type: "DISPLAY_ON_REVIEW";
3468
3758
  conditional: import(".").JSONSchema;
3469
3759
  })[] | undefined;
3760
+ secured?: boolean | undefined;
3470
3761
  placeholder?: TranslationConfig | undefined;
3471
3762
  helperText?: TranslationConfig | undefined;
3472
3763
  hideLabel?: boolean | undefined;
@@ -3501,6 +3792,7 @@ declare const Facility: z.ZodObject<z.objectUtil.extendShape<{
3501
3792
  type: "DISPLAY_ON_REVIEW";
3502
3793
  conditional: import(".").JSONSchema;
3503
3794
  })[] | undefined;
3795
+ secured?: boolean | undefined;
3504
3796
  placeholder?: {
3505
3797
  id: string;
3506
3798
  description: string;
@@ -3526,6 +3818,7 @@ declare const Office: z.ZodObject<z.objectUtil.extendShape<{
3526
3818
  }>>;
3527
3819
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
3528
3820
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3821
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3529
3822
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
3530
3823
  id: string;
3531
3824
  description: string;
@@ -3585,6 +3878,7 @@ declare const Office: z.ZodObject<z.objectUtil.extendShape<{
3585
3878
  type: "DISPLAY_ON_REVIEW";
3586
3879
  conditional: import(".").JSONSchema;
3587
3880
  })[] | undefined;
3881
+ secured?: boolean | undefined;
3588
3882
  placeholder?: TranslationConfig | undefined;
3589
3883
  helperText?: TranslationConfig | undefined;
3590
3884
  hideLabel?: boolean | undefined;
@@ -3619,6 +3913,7 @@ declare const Office: z.ZodObject<z.objectUtil.extendShape<{
3619
3913
  type: "DISPLAY_ON_REVIEW";
3620
3914
  conditional: import(".").JSONSchema;
3621
3915
  })[] | undefined;
3916
+ secured?: boolean | undefined;
3622
3917
  placeholder?: {
3623
3918
  id: string;
3624
3919
  description: string;
@@ -3644,6 +3939,7 @@ declare const Address: z.ZodObject<z.objectUtil.extendShape<{
3644
3939
  }>>;
3645
3940
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
3646
3941
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3942
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3647
3943
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
3648
3944
  id: string;
3649
3945
  description: string;
@@ -3767,6 +4063,13 @@ declare const Address: z.ZodObject<z.objectUtil.extendShape<{
3767
4063
  addressLine3?: string | undefined;
3768
4064
  postcodeOrZip?: string | undefined;
3769
4065
  }>]>>;
4066
+ configuration: z.ZodOptional<z.ZodObject<{
4067
+ searchMode: z.ZodOptional<z.ZodBoolean>;
4068
+ }, "strip", z.ZodTypeAny, {
4069
+ searchMode?: boolean | undefined;
4070
+ }, {
4071
+ searchMode?: boolean | undefined;
4072
+ }>>;
3770
4073
  }>, "strip", z.ZodTypeAny, {
3771
4074
  type: "ADDRESS";
3772
4075
  id: string;
@@ -3789,6 +4092,7 @@ declare const Address: z.ZodObject<z.objectUtil.extendShape<{
3789
4092
  type: "DISPLAY_ON_REVIEW";
3790
4093
  conditional: import(".").JSONSchema;
3791
4094
  })[] | undefined;
4095
+ secured?: boolean | undefined;
3792
4096
  placeholder?: TranslationConfig | undefined;
3793
4097
  helperText?: TranslationConfig | undefined;
3794
4098
  hideLabel?: boolean | undefined;
@@ -3821,6 +4125,9 @@ declare const Address: z.ZodObject<z.objectUtil.extendShape<{
3821
4125
  addressLine3?: string | undefined;
3822
4126
  postcodeOrZip?: string | undefined;
3823
4127
  } | undefined;
4128
+ configuration?: {
4129
+ searchMode?: boolean | undefined;
4130
+ } | undefined;
3824
4131
  }, {
3825
4132
  type: "ADDRESS";
3826
4133
  id: string;
@@ -3851,6 +4158,7 @@ declare const Address: z.ZodObject<z.objectUtil.extendShape<{
3851
4158
  type: "DISPLAY_ON_REVIEW";
3852
4159
  conditional: import(".").JSONSchema;
3853
4160
  })[] | undefined;
4161
+ secured?: boolean | undefined;
3854
4162
  placeholder?: {
3855
4163
  id: string;
3856
4164
  description: string;
@@ -3891,6 +4199,9 @@ declare const Address: z.ZodObject<z.objectUtil.extendShape<{
3891
4199
  addressLine3?: string | undefined;
3892
4200
  postcodeOrZip?: string | undefined;
3893
4201
  } | undefined;
4202
+ configuration?: {
4203
+ searchMode?: boolean | undefined;
4204
+ } | undefined;
3894
4205
  }>;
3895
4206
  export declare const DataEntry: z.ZodUnion<[z.ZodObject<{
3896
4207
  label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
@@ -3936,6 +4247,7 @@ declare const DataField: z.ZodObject<z.objectUtil.extendShape<{
3936
4247
  }>>;
3937
4248
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
3938
4249
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
4250
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3939
4251
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
3940
4252
  id: string;
3941
4253
  description: string;
@@ -4070,6 +4382,7 @@ declare const DataField: z.ZodObject<z.objectUtil.extendShape<{
4070
4382
  type: "DISPLAY_ON_REVIEW";
4071
4383
  conditional: import(".").JSONSchema;
4072
4384
  })[] | undefined;
4385
+ secured?: boolean | undefined;
4073
4386
  placeholder?: TranslationConfig | undefined;
4074
4387
  helperText?: TranslationConfig | undefined;
4075
4388
  hideLabel?: boolean | undefined;
@@ -4124,6 +4437,7 @@ declare const DataField: z.ZodObject<z.objectUtil.extendShape<{
4124
4437
  type: "DISPLAY_ON_REVIEW";
4125
4438
  conditional: import(".").JSONSchema;
4126
4439
  })[] | undefined;
4440
+ secured?: boolean | undefined;
4127
4441
  placeholder?: {
4128
4442
  id: string;
4129
4443
  description: string;
@@ -4138,9 +4452,7 @@ declare const DataField: z.ZodObject<z.objectUtil.extendShape<{
4138
4452
  }>;
4139
4453
  export type DataField = z.infer<typeof DataField>;
4140
4454
  /** @knipignore */
4141
- export type AllFields = typeof Address | typeof TextField | typeof NumberField | typeof TextAreaField | typeof DateField | typeof DateRangeField | typeof Paragraph | typeof RadioGroup | typeof BulletList | typeof PageHeader | typeof Select | typeof NameField | typeof PhoneField | typeof IdField | typeof Checkbox | typeof File | typeof Country | typeof AdministrativeArea | typeof Divider | typeof Location | typeof Facility | typeof Office | typeof SignatureField | typeof EmailField | typeof FileUploadWithOptions | typeof DataField;
4142
- /** @knipignore */
4143
- export type Inferred = z.infer<typeof Address> | z.infer<typeof TextField> | z.infer<typeof NumberField> | z.infer<typeof TextAreaField> | z.infer<typeof DateField> | z.infer<typeof DateRangeField> | z.infer<typeof Paragraph> | z.infer<typeof RadioGroup> | z.infer<typeof BulletList> | z.infer<typeof PageHeader> | z.infer<typeof Select> | z.infer<typeof NameField> | z.infer<typeof PhoneField> | z.infer<typeof IdField> | z.infer<typeof Checkbox> | z.infer<typeof File> | z.infer<typeof FileUploadWithOptions> | z.infer<typeof Country> | z.infer<typeof AdministrativeArea> | z.infer<typeof Divider> | z.infer<typeof Location> | z.infer<typeof Facility> | z.infer<typeof Office> | z.infer<typeof SignatureField> | z.infer<typeof EmailField> | z.infer<typeof DataField>;
4455
+ export type Inferred = z.infer<typeof Address> | z.infer<typeof TextField> | z.infer<typeof NumberField> | z.infer<typeof TextAreaField> | z.infer<typeof DateField> | z.infer<typeof DateRangeField> | z.infer<typeof SelectDateRangeField> | z.infer<typeof Paragraph> | z.infer<typeof RadioGroup> | z.infer<typeof BulletList> | z.infer<typeof PageHeader> | z.infer<typeof Select> | z.infer<typeof NameField> | z.infer<typeof PhoneField> | z.infer<typeof IdField> | z.infer<typeof Checkbox> | z.infer<typeof File> | z.infer<typeof FileUploadWithOptions> | z.infer<typeof Country> | z.infer<typeof AdministrativeArea> | z.infer<typeof Divider> | z.infer<typeof Location> | z.infer<typeof Facility> | z.infer<typeof Office> | z.infer<typeof SignatureField> | z.infer<typeof EmailField> | z.infer<typeof DataField>;
4144
4456
  /** @knipignore */
4145
4457
  /**
4146
4458
  * This is the type that should be used for the input of the FieldConfig. Useful when config uses zod defaults.
@@ -4157,6 +4469,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
4157
4469
  }>>;
4158
4470
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
4159
4471
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
4472
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
4160
4473
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
4161
4474
  id: string;
4162
4475
  description: string;
@@ -4280,6 +4593,13 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
4280
4593
  addressLine3?: string | undefined;
4281
4594
  postcodeOrZip?: string | undefined;
4282
4595
  }>]>>;
4596
+ configuration: z.ZodOptional<z.ZodObject<{
4597
+ searchMode: z.ZodOptional<z.ZodBoolean>;
4598
+ }, "strip", z.ZodTypeAny, {
4599
+ searchMode?: boolean | undefined;
4600
+ }, {
4601
+ searchMode?: boolean | undefined;
4602
+ }>>;
4283
4603
  }>, "strip", z.ZodTypeAny, {
4284
4604
  type: "ADDRESS";
4285
4605
  id: string;
@@ -4302,6 +4622,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
4302
4622
  type: "DISPLAY_ON_REVIEW";
4303
4623
  conditional: import(".").JSONSchema;
4304
4624
  })[] | undefined;
4625
+ secured?: boolean | undefined;
4305
4626
  placeholder?: TranslationConfig | undefined;
4306
4627
  helperText?: TranslationConfig | undefined;
4307
4628
  hideLabel?: boolean | undefined;
@@ -4334,6 +4655,9 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
4334
4655
  addressLine3?: string | undefined;
4335
4656
  postcodeOrZip?: string | undefined;
4336
4657
  } | undefined;
4658
+ configuration?: {
4659
+ searchMode?: boolean | undefined;
4660
+ } | undefined;
4337
4661
  }, {
4338
4662
  type: "ADDRESS";
4339
4663
  id: string;
@@ -4364,6 +4688,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
4364
4688
  type: "DISPLAY_ON_REVIEW";
4365
4689
  conditional: import(".").JSONSchema;
4366
4690
  })[] | undefined;
4691
+ secured?: boolean | undefined;
4367
4692
  placeholder?: {
4368
4693
  id: string;
4369
4694
  description: string;
@@ -4404,6 +4729,9 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
4404
4729
  addressLine3?: string | undefined;
4405
4730
  postcodeOrZip?: string | undefined;
4406
4731
  } | undefined;
4732
+ configuration?: {
4733
+ searchMode?: boolean | undefined;
4734
+ } | undefined;
4407
4735
  }>, z.ZodObject<z.objectUtil.extendShape<{
4408
4736
  id: z.ZodString;
4409
4737
  parent: z.ZodOptional<z.ZodObject<{
@@ -4415,6 +4743,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
4415
4743
  }>>;
4416
4744
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
4417
4745
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
4746
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
4418
4747
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
4419
4748
  id: string;
4420
4749
  description: string;
@@ -4506,6 +4835,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
4506
4835
  type: "DISPLAY_ON_REVIEW";
4507
4836
  conditional: import(".").JSONSchema;
4508
4837
  })[] | undefined;
4838
+ secured?: boolean | undefined;
4509
4839
  placeholder?: TranslationConfig | undefined;
4510
4840
  helperText?: TranslationConfig | undefined;
4511
4841
  hideLabel?: boolean | undefined;
@@ -4546,6 +4876,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
4546
4876
  type: "DISPLAY_ON_REVIEW";
4547
4877
  conditional: import(".").JSONSchema;
4548
4878
  })[] | undefined;
4879
+ secured?: boolean | undefined;
4549
4880
  placeholder?: {
4550
4881
  id: string;
4551
4882
  description: string;
@@ -4583,6 +4914,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
4583
4914
  }>>;
4584
4915
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
4585
4916
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
4917
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
4586
4918
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
4587
4919
  id: string;
4588
4920
  description: string;
@@ -4674,6 +5006,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
4674
5006
  type: "DISPLAY_ON_REVIEW";
4675
5007
  conditional: import(".").JSONSchema;
4676
5008
  })[] | undefined;
5009
+ secured?: boolean | undefined;
4677
5010
  placeholder?: TranslationConfig | undefined;
4678
5011
  helperText?: TranslationConfig | undefined;
4679
5012
  hideLabel?: boolean | undefined;
@@ -4714,6 +5047,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
4714
5047
  type: "DISPLAY_ON_REVIEW";
4715
5048
  conditional: import(".").JSONSchema;
4716
5049
  })[] | undefined;
5050
+ secured?: boolean | undefined;
4717
5051
  placeholder?: {
4718
5052
  id: string;
4719
5053
  description: string;
@@ -4751,6 +5085,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
4751
5085
  }>>;
4752
5086
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
4753
5087
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
5088
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
4754
5089
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
4755
5090
  id: string;
4756
5091
  description: string;
@@ -4845,6 +5180,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
4845
5180
  type: "DISPLAY_ON_REVIEW";
4846
5181
  conditional: import(".").JSONSchema;
4847
5182
  })[] | undefined;
5183
+ secured?: boolean | undefined;
4848
5184
  placeholder?: TranslationConfig | undefined;
4849
5185
  helperText?: TranslationConfig | undefined;
4850
5186
  hideLabel?: boolean | undefined;
@@ -4886,6 +5222,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
4886
5222
  type: "DISPLAY_ON_REVIEW";
4887
5223
  conditional: import(".").JSONSchema;
4888
5224
  })[] | undefined;
5225
+ secured?: boolean | undefined;
4889
5226
  placeholder?: {
4890
5227
  id: string;
4891
5228
  description: string;
@@ -4924,6 +5261,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
4924
5261
  }>>;
4925
5262
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
4926
5263
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
5264
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
4927
5265
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
4928
5266
  id: string;
4929
5267
  description: string;
@@ -4998,6 +5336,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
4998
5336
  type: "DISPLAY_ON_REVIEW";
4999
5337
  conditional: import(".").JSONSchema;
5000
5338
  })[] | undefined;
5339
+ secured?: boolean | undefined;
5001
5340
  placeholder?: TranslationConfig | undefined;
5002
5341
  helperText?: TranslationConfig | undefined;
5003
5342
  hideLabel?: boolean | undefined;
@@ -5035,6 +5374,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
5035
5374
  type: "DISPLAY_ON_REVIEW";
5036
5375
  conditional: import(".").JSONSchema;
5037
5376
  })[] | undefined;
5377
+ secured?: boolean | undefined;
5038
5378
  placeholder?: {
5039
5379
  id: string;
5040
5380
  description: string;
@@ -5065,6 +5405,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
5065
5405
  }>>;
5066
5406
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
5067
5407
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
5408
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
5068
5409
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
5069
5410
  id: string;
5070
5411
  description: string;
@@ -5101,7 +5442,16 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
5101
5442
  hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
5102
5443
  }, {
5103
5444
  type: z.ZodLiteral<"DATE_RANGE">;
5104
- defaultValue: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>>;
5445
+ defaultValue: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
5446
+ start: z.ZodString;
5447
+ end: z.ZodString;
5448
+ }, "strip", z.ZodTypeAny, {
5449
+ start: string;
5450
+ end: string;
5451
+ }, {
5452
+ start: string;
5453
+ end: string;
5454
+ }>, z.ZodString]>>;
5105
5455
  configuration: z.ZodOptional<z.ZodObject<{
5106
5456
  notice: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
5107
5457
  id: string;
@@ -5139,10 +5489,14 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
5139
5489
  type: "DISPLAY_ON_REVIEW";
5140
5490
  conditional: import(".").JSONSchema;
5141
5491
  })[] | undefined;
5492
+ secured?: boolean | undefined;
5142
5493
  placeholder?: TranslationConfig | undefined;
5143
5494
  helperText?: TranslationConfig | undefined;
5144
5495
  hideLabel?: boolean | undefined;
5145
- defaultValue?: string | [string, string] | undefined;
5496
+ defaultValue?: string | {
5497
+ start: string;
5498
+ end: string;
5499
+ } | undefined;
5146
5500
  configuration?: {
5147
5501
  notice?: TranslationConfig | undefined;
5148
5502
  } | undefined;
@@ -5176,6 +5530,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
5176
5530
  type: "DISPLAY_ON_REVIEW";
5177
5531
  conditional: import(".").JSONSchema;
5178
5532
  })[] | undefined;
5533
+ secured?: boolean | undefined;
5179
5534
  placeholder?: {
5180
5535
  id: string;
5181
5536
  description: string;
@@ -5187,7 +5542,10 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
5187
5542
  defaultMessage: string;
5188
5543
  } | undefined;
5189
5544
  hideLabel?: boolean | undefined;
5190
- defaultValue?: string | [string, string] | undefined;
5545
+ defaultValue?: string | {
5546
+ start: string;
5547
+ end: string;
5548
+ } | undefined;
5191
5549
  configuration?: {
5192
5550
  notice?: {
5193
5551
  id: string;
@@ -5206,6 +5564,156 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
5206
5564
  }>>;
5207
5565
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
5208
5566
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
5567
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
5568
+ placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
5569
+ id: string;
5570
+ description: string;
5571
+ defaultMessage: string;
5572
+ }>>;
5573
+ validation: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodObject<{
5574
+ validator: z.ZodType<import(".").JSONSchema, z.ZodTypeDef, import(".").JSONSchema>;
5575
+ message: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
5576
+ id: string;
5577
+ description: string;
5578
+ defaultMessage: string;
5579
+ }>;
5580
+ }, "strip", z.ZodTypeAny, {
5581
+ message: TranslationConfig;
5582
+ validator: import(".").JSONSchema;
5583
+ }, {
5584
+ message: {
5585
+ id: string;
5586
+ description: string;
5587
+ defaultMessage: string;
5588
+ };
5589
+ validator: import(".").JSONSchema;
5590
+ }>, "many">>>;
5591
+ label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
5592
+ id: string;
5593
+ description: string;
5594
+ defaultMessage: string;
5595
+ }>;
5596
+ helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
5597
+ id: string;
5598
+ description: string;
5599
+ defaultMessage: string;
5600
+ }>>;
5601
+ hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
5602
+ }, {
5603
+ type: z.ZodLiteral<"SELECT_DATE_RANGE">;
5604
+ defaultValue: z.ZodOptional<z.ZodEnum<["last7Days", "last30Days", "last90Days", "last365Days"]>>;
5605
+ options: z.ZodArray<z.ZodObject<{
5606
+ value: z.ZodEnum<["last7Days", "last30Days", "last90Days", "last365Days"]>;
5607
+ label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
5608
+ id: string;
5609
+ description: string;
5610
+ defaultMessage: string;
5611
+ }>;
5612
+ }, "strip", z.ZodTypeAny, {
5613
+ value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
5614
+ label: TranslationConfig;
5615
+ }, {
5616
+ value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
5617
+ label: {
5618
+ id: string;
5619
+ description: string;
5620
+ defaultMessage: string;
5621
+ };
5622
+ }>, "many">;
5623
+ }>, "strip", z.ZodTypeAny, {
5624
+ type: "SELECT_DATE_RANGE";
5625
+ id: string;
5626
+ options: {
5627
+ value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
5628
+ label: TranslationConfig;
5629
+ }[];
5630
+ label: TranslationConfig;
5631
+ parent?: {
5632
+ $$field: string;
5633
+ } | undefined;
5634
+ validation?: {
5635
+ message: TranslationConfig;
5636
+ validator: import(".").JSONSchema;
5637
+ }[] | undefined;
5638
+ required?: boolean | undefined;
5639
+ conditionals?: ({
5640
+ type: "SHOW";
5641
+ conditional: import(".").JSONSchema;
5642
+ } | {
5643
+ type: "ENABLE";
5644
+ conditional: import(".").JSONSchema;
5645
+ } | {
5646
+ type: "DISPLAY_ON_REVIEW";
5647
+ conditional: import(".").JSONSchema;
5648
+ })[] | undefined;
5649
+ secured?: boolean | undefined;
5650
+ placeholder?: TranslationConfig | undefined;
5651
+ helperText?: TranslationConfig | undefined;
5652
+ hideLabel?: boolean | undefined;
5653
+ defaultValue?: "last7Days" | "last30Days" | "last90Days" | "last365Days" | undefined;
5654
+ }, {
5655
+ type: "SELECT_DATE_RANGE";
5656
+ id: string;
5657
+ options: {
5658
+ value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
5659
+ label: {
5660
+ id: string;
5661
+ description: string;
5662
+ defaultMessage: string;
5663
+ };
5664
+ }[];
5665
+ label: {
5666
+ id: string;
5667
+ description: string;
5668
+ defaultMessage: string;
5669
+ };
5670
+ parent?: {
5671
+ $$field: string;
5672
+ } | undefined;
5673
+ validation?: {
5674
+ message: {
5675
+ id: string;
5676
+ description: string;
5677
+ defaultMessage: string;
5678
+ };
5679
+ validator: import(".").JSONSchema;
5680
+ }[] | undefined;
5681
+ required?: boolean | undefined;
5682
+ conditionals?: ({
5683
+ type: "SHOW";
5684
+ conditional: import(".").JSONSchema;
5685
+ } | {
5686
+ type: "ENABLE";
5687
+ conditional: import(".").JSONSchema;
5688
+ } | {
5689
+ type: "DISPLAY_ON_REVIEW";
5690
+ conditional: import(".").JSONSchema;
5691
+ })[] | undefined;
5692
+ secured?: boolean | undefined;
5693
+ placeholder?: {
5694
+ id: string;
5695
+ description: string;
5696
+ defaultMessage: string;
5697
+ } | undefined;
5698
+ helperText?: {
5699
+ id: string;
5700
+ description: string;
5701
+ defaultMessage: string;
5702
+ } | undefined;
5703
+ hideLabel?: boolean | undefined;
5704
+ defaultValue?: "last7Days" | "last30Days" | "last90Days" | "last365Days" | undefined;
5705
+ }>, z.ZodObject<z.objectUtil.extendShape<{
5706
+ id: z.ZodString;
5707
+ parent: z.ZodOptional<z.ZodObject<{
5708
+ $$field: z.ZodString;
5709
+ }, "strip", z.ZodTypeAny, {
5710
+ $$field: string;
5711
+ }, {
5712
+ $$field: string;
5713
+ }>>;
5714
+ conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
5715
+ required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
5716
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
5209
5717
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
5210
5718
  id: string;
5211
5719
  description: string;
@@ -5287,6 +5795,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
5287
5795
  type: "DISPLAY_ON_REVIEW";
5288
5796
  conditional: import(".").JSONSchema;
5289
5797
  })[] | undefined;
5798
+ secured?: boolean | undefined;
5290
5799
  placeholder?: TranslationConfig | undefined;
5291
5800
  helperText?: TranslationConfig | undefined;
5292
5801
  hideLabel?: boolean | undefined;
@@ -5321,6 +5830,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
5321
5830
  type: "DISPLAY_ON_REVIEW";
5322
5831
  conditional: import(".").JSONSchema;
5323
5832
  })[] | undefined;
5833
+ secured?: boolean | undefined;
5324
5834
  placeholder?: {
5325
5835
  id: string;
5326
5836
  description: string;
@@ -5349,6 +5859,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
5349
5859
  }>>;
5350
5860
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
5351
5861
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
5862
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
5352
5863
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
5353
5864
  id: string;
5354
5865
  description: string;
@@ -5447,6 +5958,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
5447
5958
  type: "DISPLAY_ON_REVIEW";
5448
5959
  conditional: import(".").JSONSchema;
5449
5960
  })[] | undefined;
5961
+ secured?: boolean | undefined;
5450
5962
  placeholder?: TranslationConfig | undefined;
5451
5963
  helperText?: TranslationConfig | undefined;
5452
5964
  hideLabel?: boolean | undefined;
@@ -5494,6 +6006,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
5494
6006
  type: "DISPLAY_ON_REVIEW";
5495
6007
  conditional: import(".").JSONSchema;
5496
6008
  })[] | undefined;
6009
+ secured?: boolean | undefined;
5497
6010
  placeholder?: {
5498
6011
  id: string;
5499
6012
  description: string;
@@ -5522,6 +6035,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
5522
6035
  }>>;
5523
6036
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
5524
6037
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
6038
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
5525
6039
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
5526
6040
  id: string;
5527
6041
  description: string;
@@ -5609,6 +6123,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
5609
6123
  type: "DISPLAY_ON_REVIEW";
5610
6124
  conditional: import(".").JSONSchema;
5611
6125
  })[] | undefined;
6126
+ secured?: boolean | undefined;
5612
6127
  placeholder?: TranslationConfig | undefined;
5613
6128
  helperText?: TranslationConfig | undefined;
5614
6129
  hideLabel?: boolean | undefined;
@@ -5648,6 +6163,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
5648
6163
  type: "DISPLAY_ON_REVIEW";
5649
6164
  conditional: import(".").JSONSchema;
5650
6165
  })[] | undefined;
6166
+ secured?: boolean | undefined;
5651
6167
  placeholder?: {
5652
6168
  id: string;
5653
6169
  description: string;
@@ -5676,6 +6192,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
5676
6192
  }>>;
5677
6193
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
5678
6194
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
6195
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
5679
6196
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
5680
6197
  id: string;
5681
6198
  description: string;
@@ -5735,6 +6252,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
5735
6252
  type: "DISPLAY_ON_REVIEW";
5736
6253
  conditional: import(".").JSONSchema;
5737
6254
  })[] | undefined;
6255
+ secured?: boolean | undefined;
5738
6256
  placeholder?: TranslationConfig | undefined;
5739
6257
  helperText?: TranslationConfig | undefined;
5740
6258
  hideLabel?: boolean | undefined;
@@ -5769,6 +6287,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
5769
6287
  type: "DISPLAY_ON_REVIEW";
5770
6288
  conditional: import(".").JSONSchema;
5771
6289
  })[] | undefined;
6290
+ secured?: boolean | undefined;
5772
6291
  placeholder?: {
5773
6292
  id: string;
5774
6293
  description: string;
@@ -5792,6 +6311,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
5792
6311
  }>>;
5793
6312
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
5794
6313
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
6314
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
5795
6315
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
5796
6316
  id: string;
5797
6317
  description: string;
@@ -5873,6 +6393,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
5873
6393
  type: "DISPLAY_ON_REVIEW";
5874
6394
  conditional: import(".").JSONSchema;
5875
6395
  })[] | undefined;
6396
+ secured?: boolean | undefined;
5876
6397
  placeholder?: TranslationConfig | undefined;
5877
6398
  helperText?: TranslationConfig | undefined;
5878
6399
  hideLabel?: boolean | undefined;
@@ -5915,6 +6436,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
5915
6436
  type: "DISPLAY_ON_REVIEW";
5916
6437
  conditional: import(".").JSONSchema;
5917
6438
  })[] | undefined;
6439
+ secured?: boolean | undefined;
5918
6440
  placeholder?: {
5919
6441
  id: string;
5920
6442
  description: string;
@@ -5938,6 +6460,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
5938
6460
  }>>;
5939
6461
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
5940
6462
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
6463
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
5941
6464
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
5942
6465
  id: string;
5943
6466
  description: string;
@@ -5996,10 +6519,14 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
5996
6519
  description: string;
5997
6520
  defaultMessage: string;
5998
6521
  }>>;
6522
+ includeMiddlename: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
6523
+ searchMode: z.ZodOptional<z.ZodBoolean>;
5999
6524
  }, "strip", z.ZodTypeAny, {
6000
6525
  maxLength?: number | undefined;
6001
6526
  prefix?: TranslationConfig | undefined;
6002
6527
  postfix?: TranslationConfig | undefined;
6528
+ includeMiddlename?: boolean | undefined;
6529
+ searchMode?: boolean | undefined;
6003
6530
  }, {
6004
6531
  maxLength?: number | undefined;
6005
6532
  prefix?: {
@@ -6012,6 +6539,8 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6012
6539
  description: string;
6013
6540
  defaultMessage: string;
6014
6541
  } | undefined;
6542
+ includeMiddlename?: boolean | undefined;
6543
+ searchMode?: boolean | undefined;
6015
6544
  }>>;
6016
6545
  }>, "strip", z.ZodTypeAny, {
6017
6546
  type: "NAME";
@@ -6035,6 +6564,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6035
6564
  type: "DISPLAY_ON_REVIEW";
6036
6565
  conditional: import(".").JSONSchema;
6037
6566
  })[] | undefined;
6567
+ secured?: boolean | undefined;
6038
6568
  placeholder?: TranslationConfig | undefined;
6039
6569
  helperText?: TranslationConfig | undefined;
6040
6570
  hideLabel?: boolean | undefined;
@@ -6046,6 +6576,8 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6046
6576
  maxLength?: number | undefined;
6047
6577
  prefix?: TranslationConfig | undefined;
6048
6578
  postfix?: TranslationConfig | undefined;
6579
+ includeMiddlename?: boolean | undefined;
6580
+ searchMode?: boolean | undefined;
6049
6581
  } | undefined;
6050
6582
  }, {
6051
6583
  type: "NAME";
@@ -6077,6 +6609,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6077
6609
  type: "DISPLAY_ON_REVIEW";
6078
6610
  conditional: import(".").JSONSchema;
6079
6611
  })[] | undefined;
6612
+ secured?: boolean | undefined;
6080
6613
  placeholder?: {
6081
6614
  id: string;
6082
6615
  description: string;
@@ -6104,6 +6637,8 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6104
6637
  description: string;
6105
6638
  defaultMessage: string;
6106
6639
  } | undefined;
6640
+ includeMiddlename?: boolean | undefined;
6641
+ searchMode?: boolean | undefined;
6107
6642
  } | undefined;
6108
6643
  }>, z.ZodObject<z.objectUtil.extendShape<{
6109
6644
  id: z.ZodString;
@@ -6116,6 +6651,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6116
6651
  }>>;
6117
6652
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
6118
6653
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
6654
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
6119
6655
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
6120
6656
  id: string;
6121
6657
  description: string;
@@ -6175,6 +6711,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6175
6711
  type: "DISPLAY_ON_REVIEW";
6176
6712
  conditional: import(".").JSONSchema;
6177
6713
  })[] | undefined;
6714
+ secured?: boolean | undefined;
6178
6715
  placeholder?: TranslationConfig | undefined;
6179
6716
  helperText?: TranslationConfig | undefined;
6180
6717
  hideLabel?: boolean | undefined;
@@ -6209,6 +6746,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6209
6746
  type: "DISPLAY_ON_REVIEW";
6210
6747
  conditional: import(".").JSONSchema;
6211
6748
  })[] | undefined;
6749
+ secured?: boolean | undefined;
6212
6750
  placeholder?: {
6213
6751
  id: string;
6214
6752
  description: string;
@@ -6232,6 +6770,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6232
6770
  }>>;
6233
6771
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
6234
6772
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
6773
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
6235
6774
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
6236
6775
  id: string;
6237
6776
  description: string;
@@ -6291,6 +6830,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6291
6830
  type: "DISPLAY_ON_REVIEW";
6292
6831
  conditional: import(".").JSONSchema;
6293
6832
  })[] | undefined;
6833
+ secured?: boolean | undefined;
6294
6834
  placeholder?: TranslationConfig | undefined;
6295
6835
  helperText?: TranslationConfig | undefined;
6296
6836
  hideLabel?: boolean | undefined;
@@ -6325,6 +6865,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6325
6865
  type: "DISPLAY_ON_REVIEW";
6326
6866
  conditional: import(".").JSONSchema;
6327
6867
  })[] | undefined;
6868
+ secured?: boolean | undefined;
6328
6869
  placeholder?: {
6329
6870
  id: string;
6330
6871
  description: string;
@@ -6348,6 +6889,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6348
6889
  }>>;
6349
6890
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
6350
6891
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
6892
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
6351
6893
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
6352
6894
  id: string;
6353
6895
  description: string;
@@ -6407,6 +6949,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6407
6949
  type: "DISPLAY_ON_REVIEW";
6408
6950
  conditional: import(".").JSONSchema;
6409
6951
  })[] | undefined;
6952
+ secured?: boolean | undefined;
6410
6953
  placeholder?: TranslationConfig | undefined;
6411
6954
  helperText?: TranslationConfig | undefined;
6412
6955
  hideLabel?: boolean | undefined;
@@ -6441,6 +6984,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6441
6984
  type: "DISPLAY_ON_REVIEW";
6442
6985
  conditional: import(".").JSONSchema;
6443
6986
  })[] | undefined;
6987
+ secured?: boolean | undefined;
6444
6988
  placeholder?: {
6445
6989
  id: string;
6446
6990
  description: string;
@@ -6464,6 +7008,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6464
7008
  }>>;
6465
7009
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
6466
7010
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7011
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
6467
7012
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
6468
7013
  id: string;
6469
7014
  description: string;
@@ -6501,16 +7046,16 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6501
7046
  }, {
6502
7047
  type: z.ZodLiteral<"FILE">;
6503
7048
  defaultValue: z.ZodOptional<z.ZodObject<{
6504
- filename: z.ZodString;
7049
+ path: z.ZodEffects<z.ZodString, string, string>;
6505
7050
  originalFilename: z.ZodString;
6506
7051
  type: z.ZodString;
6507
7052
  }, "strip", z.ZodTypeAny, {
6508
7053
  type: string;
6509
- filename: string;
7054
+ path: string;
6510
7055
  originalFilename: string;
6511
7056
  }, {
6512
7057
  type: string;
6513
- filename: string;
7058
+ path: string;
6514
7059
  originalFilename: string;
6515
7060
  }>>;
6516
7061
  configuration: z.ZodDefault<z.ZodObject<{
@@ -6577,12 +7122,13 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6577
7122
  type: "DISPLAY_ON_REVIEW";
6578
7123
  conditional: import(".").JSONSchema;
6579
7124
  })[] | undefined;
7125
+ secured?: boolean | undefined;
6580
7126
  placeholder?: TranslationConfig | undefined;
6581
7127
  helperText?: TranslationConfig | undefined;
6582
7128
  hideLabel?: boolean | undefined;
6583
7129
  defaultValue?: {
6584
7130
  type: string;
6585
- filename: string;
7131
+ path: string;
6586
7132
  originalFilename: string;
6587
7133
  } | undefined;
6588
7134
  }, {
@@ -6615,6 +7161,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6615
7161
  type: "DISPLAY_ON_REVIEW";
6616
7162
  conditional: import(".").JSONSchema;
6617
7163
  })[] | undefined;
7164
+ secured?: boolean | undefined;
6618
7165
  placeholder?: {
6619
7166
  id: string;
6620
7167
  description: string;
@@ -6628,7 +7175,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6628
7175
  hideLabel?: boolean | undefined;
6629
7176
  defaultValue?: {
6630
7177
  type: string;
6631
- filename: string;
7178
+ path: string;
6632
7179
  originalFilename: string;
6633
7180
  } | undefined;
6634
7181
  configuration?: {
@@ -6654,6 +7201,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6654
7201
  }>>;
6655
7202
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
6656
7203
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7204
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
6657
7205
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
6658
7206
  id: string;
6659
7207
  description: string;
@@ -6713,6 +7261,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6713
7261
  type: "DISPLAY_ON_REVIEW";
6714
7262
  conditional: import(".").JSONSchema;
6715
7263
  })[] | undefined;
7264
+ secured?: boolean | undefined;
6716
7265
  placeholder?: TranslationConfig | undefined;
6717
7266
  helperText?: TranslationConfig | undefined;
6718
7267
  hideLabel?: boolean | undefined;
@@ -6747,6 +7296,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6747
7296
  type: "DISPLAY_ON_REVIEW";
6748
7297
  conditional: import(".").JSONSchema;
6749
7298
  })[] | undefined;
7299
+ secured?: boolean | undefined;
6750
7300
  placeholder?: {
6751
7301
  id: string;
6752
7302
  description: string;
@@ -6770,6 +7320,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6770
7320
  }>>;
6771
7321
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
6772
7322
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7323
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
6773
7324
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
6774
7325
  id: string;
6775
7326
  description: string;
@@ -6855,6 +7406,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6855
7406
  type: "DISPLAY_ON_REVIEW";
6856
7407
  conditional: import(".").JSONSchema;
6857
7408
  })[] | undefined;
7409
+ secured?: boolean | undefined;
6858
7410
  placeholder?: TranslationConfig | undefined;
6859
7411
  helperText?: TranslationConfig | undefined;
6860
7412
  hideLabel?: boolean | undefined;
@@ -6895,6 +7447,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6895
7447
  type: "DISPLAY_ON_REVIEW";
6896
7448
  conditional: import(".").JSONSchema;
6897
7449
  })[] | undefined;
7450
+ secured?: boolean | undefined;
6898
7451
  placeholder?: {
6899
7452
  id: string;
6900
7453
  description: string;
@@ -6918,6 +7471,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6918
7471
  }>>;
6919
7472
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
6920
7473
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7474
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
6921
7475
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
6922
7476
  id: string;
6923
7477
  description: string;
@@ -6976,6 +7530,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6976
7530
  type: "DISPLAY_ON_REVIEW";
6977
7531
  conditional: import(".").JSONSchema;
6978
7532
  })[] | undefined;
7533
+ secured?: boolean | undefined;
6979
7534
  placeholder?: TranslationConfig | undefined;
6980
7535
  helperText?: TranslationConfig | undefined;
6981
7536
  hideLabel?: boolean | undefined;
@@ -7009,6 +7564,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7009
7564
  type: "DISPLAY_ON_REVIEW";
7010
7565
  conditional: import(".").JSONSchema;
7011
7566
  })[] | undefined;
7567
+ secured?: boolean | undefined;
7012
7568
  placeholder?: {
7013
7569
  id: string;
7014
7570
  description: string;
@@ -7031,6 +7587,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7031
7587
  }>>;
7032
7588
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
7033
7589
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7590
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7034
7591
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
7035
7592
  id: string;
7036
7593
  description: string;
@@ -7090,6 +7647,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7090
7647
  type: "DISPLAY_ON_REVIEW";
7091
7648
  conditional: import(".").JSONSchema;
7092
7649
  })[] | undefined;
7650
+ secured?: boolean | undefined;
7093
7651
  placeholder?: TranslationConfig | undefined;
7094
7652
  helperText?: TranslationConfig | undefined;
7095
7653
  hideLabel?: boolean | undefined;
@@ -7124,6 +7682,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7124
7682
  type: "DISPLAY_ON_REVIEW";
7125
7683
  conditional: import(".").JSONSchema;
7126
7684
  })[] | undefined;
7685
+ secured?: boolean | undefined;
7127
7686
  placeholder?: {
7128
7687
  id: string;
7129
7688
  description: string;
@@ -7147,6 +7706,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7147
7706
  }>>;
7148
7707
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
7149
7708
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7709
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7150
7710
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
7151
7711
  id: string;
7152
7712
  description: string;
@@ -7206,6 +7766,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7206
7766
  type: "DISPLAY_ON_REVIEW";
7207
7767
  conditional: import(".").JSONSchema;
7208
7768
  })[] | undefined;
7769
+ secured?: boolean | undefined;
7209
7770
  placeholder?: TranslationConfig | undefined;
7210
7771
  helperText?: TranslationConfig | undefined;
7211
7772
  hideLabel?: boolean | undefined;
@@ -7240,6 +7801,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7240
7801
  type: "DISPLAY_ON_REVIEW";
7241
7802
  conditional: import(".").JSONSchema;
7242
7803
  })[] | undefined;
7804
+ secured?: boolean | undefined;
7243
7805
  placeholder?: {
7244
7806
  id: string;
7245
7807
  description: string;
@@ -7263,6 +7825,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7263
7825
  }>>;
7264
7826
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
7265
7827
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7828
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7266
7829
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
7267
7830
  id: string;
7268
7831
  description: string;
@@ -7322,6 +7885,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7322
7885
  type: "DISPLAY_ON_REVIEW";
7323
7886
  conditional: import(".").JSONSchema;
7324
7887
  })[] | undefined;
7888
+ secured?: boolean | undefined;
7325
7889
  placeholder?: TranslationConfig | undefined;
7326
7890
  helperText?: TranslationConfig | undefined;
7327
7891
  hideLabel?: boolean | undefined;
@@ -7356,6 +7920,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7356
7920
  type: "DISPLAY_ON_REVIEW";
7357
7921
  conditional: import(".").JSONSchema;
7358
7922
  })[] | undefined;
7923
+ secured?: boolean | undefined;
7359
7924
  placeholder?: {
7360
7925
  id: string;
7361
7926
  description: string;
@@ -7379,6 +7944,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7379
7944
  }>>;
7380
7945
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
7381
7946
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7947
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7382
7948
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
7383
7949
  id: string;
7384
7950
  description: string;
@@ -7458,6 +8024,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7458
8024
  type: "DISPLAY_ON_REVIEW";
7459
8025
  conditional: import(".").JSONSchema;
7460
8026
  })[] | undefined;
8027
+ secured?: boolean | undefined;
7461
8028
  placeholder?: TranslationConfig | undefined;
7462
8029
  helperText?: TranslationConfig | undefined;
7463
8030
  hideLabel?: boolean | undefined;
@@ -7497,6 +8064,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7497
8064
  type: "DISPLAY_ON_REVIEW";
7498
8065
  conditional: import(".").JSONSchema;
7499
8066
  })[] | undefined;
8067
+ secured?: boolean | undefined;
7500
8068
  placeholder?: {
7501
8069
  id: string;
7502
8070
  description: string;
@@ -7524,6 +8092,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7524
8092
  }>>;
7525
8093
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
7526
8094
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
8095
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7527
8096
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
7528
8097
  id: string;
7529
8098
  description: string;
@@ -7590,6 +8159,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7590
8159
  type: "DISPLAY_ON_REVIEW";
7591
8160
  conditional: import(".").JSONSchema;
7592
8161
  })[] | undefined;
8162
+ secured?: boolean | undefined;
7593
8163
  placeholder?: TranslationConfig | undefined;
7594
8164
  helperText?: TranslationConfig | undefined;
7595
8165
  hideLabel?: boolean | undefined;
@@ -7627,6 +8197,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7627
8197
  type: "DISPLAY_ON_REVIEW";
7628
8198
  conditional: import(".").JSONSchema;
7629
8199
  })[] | undefined;
8200
+ secured?: boolean | undefined;
7630
8201
  placeholder?: {
7631
8202
  id: string;
7632
8203
  description: string;
@@ -7653,6 +8224,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7653
8224
  }>>;
7654
8225
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
7655
8226
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
8227
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7656
8228
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
7657
8229
  id: string;
7658
8230
  description: string;
@@ -7708,19 +8280,19 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7708
8280
  };
7709
8281
  }>, "many">;
7710
8282
  defaultValue: z.ZodOptional<z.ZodArray<z.ZodObject<{
7711
- filename: z.ZodString;
8283
+ path: z.ZodEffects<z.ZodString, string, string>;
7712
8284
  originalFilename: z.ZodString;
7713
8285
  type: z.ZodString;
7714
8286
  option: z.ZodString;
7715
8287
  }, "strip", z.ZodTypeAny, {
7716
8288
  type: string;
7717
8289
  option: string;
7718
- filename: string;
8290
+ path: string;
7719
8291
  originalFilename: string;
7720
8292
  }, {
7721
8293
  type: string;
7722
8294
  option: string;
7723
- filename: string;
8295
+ path: string;
7724
8296
  originalFilename: string;
7725
8297
  }>, "many">>;
7726
8298
  configuration: z.ZodDefault<z.ZodObject<{
@@ -7763,13 +8335,14 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7763
8335
  type: "DISPLAY_ON_REVIEW";
7764
8336
  conditional: import(".").JSONSchema;
7765
8337
  })[] | undefined;
8338
+ secured?: boolean | undefined;
7766
8339
  placeholder?: TranslationConfig | undefined;
7767
8340
  helperText?: TranslationConfig | undefined;
7768
8341
  hideLabel?: boolean | undefined;
7769
8342
  defaultValue?: {
7770
8343
  type: string;
7771
8344
  option: string;
7772
- filename: string;
8345
+ path: string;
7773
8346
  originalFilename: string;
7774
8347
  }[] | undefined;
7775
8348
  }, {
@@ -7810,6 +8383,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7810
8383
  type: "DISPLAY_ON_REVIEW";
7811
8384
  conditional: import(".").JSONSchema;
7812
8385
  })[] | undefined;
8386
+ secured?: boolean | undefined;
7813
8387
  placeholder?: {
7814
8388
  id: string;
7815
8389
  description: string;
@@ -7824,7 +8398,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7824
8398
  defaultValue?: {
7825
8399
  type: string;
7826
8400
  option: string;
7827
- filename: string;
8401
+ path: string;
7828
8402
  originalFilename: string;
7829
8403
  }[] | undefined;
7830
8404
  configuration?: {
@@ -7842,6 +8416,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7842
8416
  }>>;
7843
8417
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
7844
8418
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
8419
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7845
8420
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
7846
8421
  id: string;
7847
8422
  description: string;
@@ -7976,6 +8551,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7976
8551
  type: "DISPLAY_ON_REVIEW";
7977
8552
  conditional: import(".").JSONSchema;
7978
8553
  })[] | undefined;
8554
+ secured?: boolean | undefined;
7979
8555
  placeholder?: TranslationConfig | undefined;
7980
8556
  helperText?: TranslationConfig | undefined;
7981
8557
  hideLabel?: boolean | undefined;
@@ -8030,6 +8606,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8030
8606
  type: "DISPLAY_ON_REVIEW";
8031
8607
  conditional: import(".").JSONSchema;
8032
8608
  })[] | undefined;
8609
+ secured?: boolean | undefined;
8033
8610
  placeholder?: {
8034
8611
  id: string;
8035
8612
  description: string;