@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
@@ -20,6 +20,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
20
20
  }>>;
21
21
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
22
22
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
23
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
23
24
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
24
25
  id: string;
25
26
  description: string;
@@ -143,6 +144,13 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
143
144
  addressLine3?: string | undefined;
144
145
  postcodeOrZip?: string | undefined;
145
146
  }>]>>;
147
+ configuration: z.ZodOptional<z.ZodObject<{
148
+ searchMode: z.ZodOptional<z.ZodBoolean>;
149
+ }, "strip", z.ZodTypeAny, {
150
+ searchMode?: boolean | undefined;
151
+ }, {
152
+ searchMode?: boolean | undefined;
153
+ }>>;
146
154
  }>, "strip", z.ZodTypeAny, {
147
155
  type: "ADDRESS";
148
156
  id: string;
@@ -165,6 +173,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
165
173
  type: "DISPLAY_ON_REVIEW";
166
174
  conditional: import(".").JSONSchema;
167
175
  })[] | undefined;
176
+ secured?: boolean | undefined;
168
177
  placeholder?: TranslationConfig | undefined;
169
178
  helperText?: TranslationConfig | undefined;
170
179
  hideLabel?: boolean | undefined;
@@ -197,6 +206,9 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
197
206
  addressLine3?: string | undefined;
198
207
  postcodeOrZip?: string | undefined;
199
208
  } | undefined;
209
+ configuration?: {
210
+ searchMode?: boolean | undefined;
211
+ } | undefined;
200
212
  }, {
201
213
  type: "ADDRESS";
202
214
  id: string;
@@ -227,6 +239,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
227
239
  type: "DISPLAY_ON_REVIEW";
228
240
  conditional: import(".").JSONSchema;
229
241
  })[] | undefined;
242
+ secured?: boolean | undefined;
230
243
  placeholder?: {
231
244
  id: string;
232
245
  description: string;
@@ -267,6 +280,9 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
267
280
  addressLine3?: string | undefined;
268
281
  postcodeOrZip?: string | undefined;
269
282
  } | undefined;
283
+ configuration?: {
284
+ searchMode?: boolean | undefined;
285
+ } | undefined;
270
286
  }>, z.ZodObject<z.objectUtil.extendShape<{
271
287
  id: z.ZodString;
272
288
  parent: z.ZodOptional<z.ZodObject<{
@@ -278,6 +294,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
278
294
  }>>;
279
295
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
280
296
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
297
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
281
298
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
282
299
  id: string;
283
300
  description: string;
@@ -369,6 +386,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
369
386
  type: "DISPLAY_ON_REVIEW";
370
387
  conditional: import(".").JSONSchema;
371
388
  })[] | undefined;
389
+ secured?: boolean | undefined;
372
390
  placeholder?: TranslationConfig | undefined;
373
391
  helperText?: TranslationConfig | undefined;
374
392
  hideLabel?: boolean | undefined;
@@ -409,6 +427,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
409
427
  type: "DISPLAY_ON_REVIEW";
410
428
  conditional: import(".").JSONSchema;
411
429
  })[] | undefined;
430
+ secured?: boolean | undefined;
412
431
  placeholder?: {
413
432
  id: string;
414
433
  description: string;
@@ -446,6 +465,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
446
465
  }>>;
447
466
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
448
467
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
468
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
449
469
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
450
470
  id: string;
451
471
  description: string;
@@ -537,6 +557,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
537
557
  type: "DISPLAY_ON_REVIEW";
538
558
  conditional: import(".").JSONSchema;
539
559
  })[] | undefined;
560
+ secured?: boolean | undefined;
540
561
  placeholder?: TranslationConfig | undefined;
541
562
  helperText?: TranslationConfig | undefined;
542
563
  hideLabel?: boolean | undefined;
@@ -577,6 +598,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
577
598
  type: "DISPLAY_ON_REVIEW";
578
599
  conditional: import(".").JSONSchema;
579
600
  })[] | undefined;
601
+ secured?: boolean | undefined;
580
602
  placeholder?: {
581
603
  id: string;
582
604
  description: string;
@@ -614,6 +636,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
614
636
  }>>;
615
637
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
616
638
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
639
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
617
640
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
618
641
  id: string;
619
642
  description: string;
@@ -708,6 +731,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
708
731
  type: "DISPLAY_ON_REVIEW";
709
732
  conditional: import(".").JSONSchema;
710
733
  })[] | undefined;
734
+ secured?: boolean | undefined;
711
735
  placeholder?: TranslationConfig | undefined;
712
736
  helperText?: TranslationConfig | undefined;
713
737
  hideLabel?: boolean | undefined;
@@ -749,6 +773,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
749
773
  type: "DISPLAY_ON_REVIEW";
750
774
  conditional: import(".").JSONSchema;
751
775
  })[] | undefined;
776
+ secured?: boolean | undefined;
752
777
  placeholder?: {
753
778
  id: string;
754
779
  description: string;
@@ -787,6 +812,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
787
812
  }>>;
788
813
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
789
814
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
815
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
790
816
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
791
817
  id: string;
792
818
  description: string;
@@ -861,6 +887,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
861
887
  type: "DISPLAY_ON_REVIEW";
862
888
  conditional: import(".").JSONSchema;
863
889
  })[] | undefined;
890
+ secured?: boolean | undefined;
864
891
  placeholder?: TranslationConfig | undefined;
865
892
  helperText?: TranslationConfig | undefined;
866
893
  hideLabel?: boolean | undefined;
@@ -898,6 +925,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
898
925
  type: "DISPLAY_ON_REVIEW";
899
926
  conditional: import(".").JSONSchema;
900
927
  })[] | undefined;
928
+ secured?: boolean | undefined;
901
929
  placeholder?: {
902
930
  id: string;
903
931
  description: string;
@@ -928,6 +956,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
928
956
  }>>;
929
957
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
930
958
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
959
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
931
960
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
932
961
  id: string;
933
962
  description: string;
@@ -964,7 +993,16 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
964
993
  hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
965
994
  }, {
966
995
  type: z.ZodLiteral<"DATE_RANGE">;
967
- defaultValue: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>>;
996
+ defaultValue: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
997
+ start: z.ZodString;
998
+ end: z.ZodString;
999
+ }, "strip", z.ZodTypeAny, {
1000
+ start: string;
1001
+ end: string;
1002
+ }, {
1003
+ start: string;
1004
+ end: string;
1005
+ }>, z.ZodString]>>;
968
1006
  configuration: z.ZodOptional<z.ZodObject<{
969
1007
  notice: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
970
1008
  id: string;
@@ -1002,10 +1040,14 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
1002
1040
  type: "DISPLAY_ON_REVIEW";
1003
1041
  conditional: import(".").JSONSchema;
1004
1042
  })[] | undefined;
1043
+ secured?: boolean | undefined;
1005
1044
  placeholder?: TranslationConfig | undefined;
1006
1045
  helperText?: TranslationConfig | undefined;
1007
1046
  hideLabel?: boolean | undefined;
1008
- defaultValue?: string | [string, string] | undefined;
1047
+ defaultValue?: string | {
1048
+ start: string;
1049
+ end: string;
1050
+ } | undefined;
1009
1051
  configuration?: {
1010
1052
  notice?: TranslationConfig | undefined;
1011
1053
  } | undefined;
@@ -1039,6 +1081,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
1039
1081
  type: "DISPLAY_ON_REVIEW";
1040
1082
  conditional: import(".").JSONSchema;
1041
1083
  })[] | undefined;
1084
+ secured?: boolean | undefined;
1042
1085
  placeholder?: {
1043
1086
  id: string;
1044
1087
  description: string;
@@ -1050,7 +1093,10 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
1050
1093
  defaultMessage: string;
1051
1094
  } | undefined;
1052
1095
  hideLabel?: boolean | undefined;
1053
- defaultValue?: string | [string, string] | undefined;
1096
+ defaultValue?: string | {
1097
+ start: string;
1098
+ end: string;
1099
+ } | undefined;
1054
1100
  configuration?: {
1055
1101
  notice?: {
1056
1102
  id: string;
@@ -1069,6 +1115,156 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
1069
1115
  }>>;
1070
1116
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
1071
1117
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1118
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1119
+ placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
1120
+ id: string;
1121
+ description: string;
1122
+ defaultMessage: string;
1123
+ }>>;
1124
+ validation: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodObject<{
1125
+ validator: z.ZodType<import(".").JSONSchema, z.ZodTypeDef, import(".").JSONSchema>;
1126
+ message: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
1127
+ id: string;
1128
+ description: string;
1129
+ defaultMessage: string;
1130
+ }>;
1131
+ }, "strip", z.ZodTypeAny, {
1132
+ message: TranslationConfig;
1133
+ validator: import(".").JSONSchema;
1134
+ }, {
1135
+ message: {
1136
+ id: string;
1137
+ description: string;
1138
+ defaultMessage: string;
1139
+ };
1140
+ validator: import(".").JSONSchema;
1141
+ }>, "many">>>;
1142
+ label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
1143
+ id: string;
1144
+ description: string;
1145
+ defaultMessage: string;
1146
+ }>;
1147
+ helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
1148
+ id: string;
1149
+ description: string;
1150
+ defaultMessage: string;
1151
+ }>>;
1152
+ hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1153
+ }, {
1154
+ type: z.ZodLiteral<"SELECT_DATE_RANGE">;
1155
+ defaultValue: z.ZodOptional<z.ZodEnum<["last7Days", "last30Days", "last90Days", "last365Days"]>>;
1156
+ options: z.ZodArray<z.ZodObject<{
1157
+ value: z.ZodEnum<["last7Days", "last30Days", "last90Days", "last365Days"]>;
1158
+ label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
1159
+ id: string;
1160
+ description: string;
1161
+ defaultMessage: string;
1162
+ }>;
1163
+ }, "strip", z.ZodTypeAny, {
1164
+ value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
1165
+ label: TranslationConfig;
1166
+ }, {
1167
+ value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
1168
+ label: {
1169
+ id: string;
1170
+ description: string;
1171
+ defaultMessage: string;
1172
+ };
1173
+ }>, "many">;
1174
+ }>, "strip", z.ZodTypeAny, {
1175
+ type: "SELECT_DATE_RANGE";
1176
+ id: string;
1177
+ options: {
1178
+ value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
1179
+ label: TranslationConfig;
1180
+ }[];
1181
+ label: TranslationConfig;
1182
+ parent?: {
1183
+ $$field: string;
1184
+ } | undefined;
1185
+ validation?: {
1186
+ message: TranslationConfig;
1187
+ validator: import(".").JSONSchema;
1188
+ }[] | undefined;
1189
+ required?: boolean | undefined;
1190
+ conditionals?: ({
1191
+ type: "SHOW";
1192
+ conditional: import(".").JSONSchema;
1193
+ } | {
1194
+ type: "ENABLE";
1195
+ conditional: import(".").JSONSchema;
1196
+ } | {
1197
+ type: "DISPLAY_ON_REVIEW";
1198
+ conditional: import(".").JSONSchema;
1199
+ })[] | undefined;
1200
+ secured?: boolean | undefined;
1201
+ placeholder?: TranslationConfig | undefined;
1202
+ helperText?: TranslationConfig | undefined;
1203
+ hideLabel?: boolean | undefined;
1204
+ defaultValue?: "last7Days" | "last30Days" | "last90Days" | "last365Days" | undefined;
1205
+ }, {
1206
+ type: "SELECT_DATE_RANGE";
1207
+ id: string;
1208
+ options: {
1209
+ value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
1210
+ label: {
1211
+ id: string;
1212
+ description: string;
1213
+ defaultMessage: string;
1214
+ };
1215
+ }[];
1216
+ label: {
1217
+ id: string;
1218
+ description: string;
1219
+ defaultMessage: string;
1220
+ };
1221
+ parent?: {
1222
+ $$field: string;
1223
+ } | undefined;
1224
+ validation?: {
1225
+ message: {
1226
+ id: string;
1227
+ description: string;
1228
+ defaultMessage: string;
1229
+ };
1230
+ validator: import(".").JSONSchema;
1231
+ }[] | undefined;
1232
+ required?: boolean | undefined;
1233
+ conditionals?: ({
1234
+ type: "SHOW";
1235
+ conditional: import(".").JSONSchema;
1236
+ } | {
1237
+ type: "ENABLE";
1238
+ conditional: import(".").JSONSchema;
1239
+ } | {
1240
+ type: "DISPLAY_ON_REVIEW";
1241
+ conditional: import(".").JSONSchema;
1242
+ })[] | undefined;
1243
+ secured?: boolean | undefined;
1244
+ placeholder?: {
1245
+ id: string;
1246
+ description: string;
1247
+ defaultMessage: string;
1248
+ } | undefined;
1249
+ helperText?: {
1250
+ id: string;
1251
+ description: string;
1252
+ defaultMessage: string;
1253
+ } | undefined;
1254
+ hideLabel?: boolean | undefined;
1255
+ defaultValue?: "last7Days" | "last30Days" | "last90Days" | "last365Days" | undefined;
1256
+ }>, z.ZodObject<z.objectUtil.extendShape<{
1257
+ id: z.ZodString;
1258
+ parent: z.ZodOptional<z.ZodObject<{
1259
+ $$field: z.ZodString;
1260
+ }, "strip", z.ZodTypeAny, {
1261
+ $$field: string;
1262
+ }, {
1263
+ $$field: string;
1264
+ }>>;
1265
+ conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
1266
+ required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1267
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1072
1268
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
1073
1269
  id: string;
1074
1270
  description: string;
@@ -1150,6 +1346,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
1150
1346
  type: "DISPLAY_ON_REVIEW";
1151
1347
  conditional: import(".").JSONSchema;
1152
1348
  })[] | undefined;
1349
+ secured?: boolean | undefined;
1153
1350
  placeholder?: TranslationConfig | undefined;
1154
1351
  helperText?: TranslationConfig | undefined;
1155
1352
  hideLabel?: boolean | undefined;
@@ -1184,6 +1381,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
1184
1381
  type: "DISPLAY_ON_REVIEW";
1185
1382
  conditional: import(".").JSONSchema;
1186
1383
  })[] | undefined;
1384
+ secured?: boolean | undefined;
1187
1385
  placeholder?: {
1188
1386
  id: string;
1189
1387
  description: string;
@@ -1212,6 +1410,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
1212
1410
  }>>;
1213
1411
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
1214
1412
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1413
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1215
1414
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
1216
1415
  id: string;
1217
1416
  description: string;
@@ -1310,6 +1509,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
1310
1509
  type: "DISPLAY_ON_REVIEW";
1311
1510
  conditional: import(".").JSONSchema;
1312
1511
  })[] | undefined;
1512
+ secured?: boolean | undefined;
1313
1513
  placeholder?: TranslationConfig | undefined;
1314
1514
  helperText?: TranslationConfig | undefined;
1315
1515
  hideLabel?: boolean | undefined;
@@ -1357,6 +1557,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
1357
1557
  type: "DISPLAY_ON_REVIEW";
1358
1558
  conditional: import(".").JSONSchema;
1359
1559
  })[] | undefined;
1560
+ secured?: boolean | undefined;
1360
1561
  placeholder?: {
1361
1562
  id: string;
1362
1563
  description: string;
@@ -1385,6 +1586,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
1385
1586
  }>>;
1386
1587
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
1387
1588
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1589
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1388
1590
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
1389
1591
  id: string;
1390
1592
  description: string;
@@ -1472,6 +1674,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
1472
1674
  type: "DISPLAY_ON_REVIEW";
1473
1675
  conditional: import(".").JSONSchema;
1474
1676
  })[] | undefined;
1677
+ secured?: boolean | undefined;
1475
1678
  placeholder?: TranslationConfig | undefined;
1476
1679
  helperText?: TranslationConfig | undefined;
1477
1680
  hideLabel?: boolean | undefined;
@@ -1511,6 +1714,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
1511
1714
  type: "DISPLAY_ON_REVIEW";
1512
1715
  conditional: import(".").JSONSchema;
1513
1716
  })[] | undefined;
1717
+ secured?: boolean | undefined;
1514
1718
  placeholder?: {
1515
1719
  id: string;
1516
1720
  description: string;
@@ -1539,6 +1743,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
1539
1743
  }>>;
1540
1744
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
1541
1745
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1746
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1542
1747
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
1543
1748
  id: string;
1544
1749
  description: string;
@@ -1598,6 +1803,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
1598
1803
  type: "DISPLAY_ON_REVIEW";
1599
1804
  conditional: import(".").JSONSchema;
1600
1805
  })[] | undefined;
1806
+ secured?: boolean | undefined;
1601
1807
  placeholder?: TranslationConfig | undefined;
1602
1808
  helperText?: TranslationConfig | undefined;
1603
1809
  hideLabel?: boolean | undefined;
@@ -1632,6 +1838,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
1632
1838
  type: "DISPLAY_ON_REVIEW";
1633
1839
  conditional: import(".").JSONSchema;
1634
1840
  })[] | undefined;
1841
+ secured?: boolean | undefined;
1635
1842
  placeholder?: {
1636
1843
  id: string;
1637
1844
  description: string;
@@ -1655,6 +1862,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
1655
1862
  }>>;
1656
1863
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
1657
1864
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1865
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1658
1866
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
1659
1867
  id: string;
1660
1868
  description: string;
@@ -1736,6 +1944,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
1736
1944
  type: "DISPLAY_ON_REVIEW";
1737
1945
  conditional: import(".").JSONSchema;
1738
1946
  })[] | undefined;
1947
+ secured?: boolean | undefined;
1739
1948
  placeholder?: TranslationConfig | undefined;
1740
1949
  helperText?: TranslationConfig | undefined;
1741
1950
  hideLabel?: boolean | undefined;
@@ -1778,6 +1987,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
1778
1987
  type: "DISPLAY_ON_REVIEW";
1779
1988
  conditional: import(".").JSONSchema;
1780
1989
  })[] | undefined;
1990
+ secured?: boolean | undefined;
1781
1991
  placeholder?: {
1782
1992
  id: string;
1783
1993
  description: string;
@@ -1801,6 +2011,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
1801
2011
  }>>;
1802
2012
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
1803
2013
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2014
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1804
2015
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
1805
2016
  id: string;
1806
2017
  description: string;
@@ -1859,10 +2070,14 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
1859
2070
  description: string;
1860
2071
  defaultMessage: string;
1861
2072
  }>>;
2073
+ includeMiddlename: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2074
+ searchMode: z.ZodOptional<z.ZodBoolean>;
1862
2075
  }, "strip", z.ZodTypeAny, {
1863
2076
  maxLength?: number | undefined;
1864
2077
  prefix?: TranslationConfig | undefined;
1865
2078
  postfix?: TranslationConfig | undefined;
2079
+ includeMiddlename?: boolean | undefined;
2080
+ searchMode?: boolean | undefined;
1866
2081
  }, {
1867
2082
  maxLength?: number | undefined;
1868
2083
  prefix?: {
@@ -1875,6 +2090,8 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
1875
2090
  description: string;
1876
2091
  defaultMessage: string;
1877
2092
  } | undefined;
2093
+ includeMiddlename?: boolean | undefined;
2094
+ searchMode?: boolean | undefined;
1878
2095
  }>>;
1879
2096
  }>, "strip", z.ZodTypeAny, {
1880
2097
  type: "NAME";
@@ -1898,6 +2115,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
1898
2115
  type: "DISPLAY_ON_REVIEW";
1899
2116
  conditional: import(".").JSONSchema;
1900
2117
  })[] | undefined;
2118
+ secured?: boolean | undefined;
1901
2119
  placeholder?: TranslationConfig | undefined;
1902
2120
  helperText?: TranslationConfig | undefined;
1903
2121
  hideLabel?: boolean | undefined;
@@ -1909,6 +2127,8 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
1909
2127
  maxLength?: number | undefined;
1910
2128
  prefix?: TranslationConfig | undefined;
1911
2129
  postfix?: TranslationConfig | undefined;
2130
+ includeMiddlename?: boolean | undefined;
2131
+ searchMode?: boolean | undefined;
1912
2132
  } | undefined;
1913
2133
  }, {
1914
2134
  type: "NAME";
@@ -1940,6 +2160,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
1940
2160
  type: "DISPLAY_ON_REVIEW";
1941
2161
  conditional: import(".").JSONSchema;
1942
2162
  })[] | undefined;
2163
+ secured?: boolean | undefined;
1943
2164
  placeholder?: {
1944
2165
  id: string;
1945
2166
  description: string;
@@ -1967,6 +2188,8 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
1967
2188
  description: string;
1968
2189
  defaultMessage: string;
1969
2190
  } | undefined;
2191
+ includeMiddlename?: boolean | undefined;
2192
+ searchMode?: boolean | undefined;
1970
2193
  } | undefined;
1971
2194
  }>, z.ZodObject<z.objectUtil.extendShape<{
1972
2195
  id: z.ZodString;
@@ -1979,6 +2202,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
1979
2202
  }>>;
1980
2203
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
1981
2204
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2205
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1982
2206
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
1983
2207
  id: string;
1984
2208
  description: string;
@@ -2038,6 +2262,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
2038
2262
  type: "DISPLAY_ON_REVIEW";
2039
2263
  conditional: import(".").JSONSchema;
2040
2264
  })[] | undefined;
2265
+ secured?: boolean | undefined;
2041
2266
  placeholder?: TranslationConfig | undefined;
2042
2267
  helperText?: TranslationConfig | undefined;
2043
2268
  hideLabel?: boolean | undefined;
@@ -2072,6 +2297,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
2072
2297
  type: "DISPLAY_ON_REVIEW";
2073
2298
  conditional: import(".").JSONSchema;
2074
2299
  })[] | undefined;
2300
+ secured?: boolean | undefined;
2075
2301
  placeholder?: {
2076
2302
  id: string;
2077
2303
  description: string;
@@ -2095,6 +2321,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
2095
2321
  }>>;
2096
2322
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
2097
2323
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2324
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2098
2325
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
2099
2326
  id: string;
2100
2327
  description: string;
@@ -2154,6 +2381,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
2154
2381
  type: "DISPLAY_ON_REVIEW";
2155
2382
  conditional: import(".").JSONSchema;
2156
2383
  })[] | undefined;
2384
+ secured?: boolean | undefined;
2157
2385
  placeholder?: TranslationConfig | undefined;
2158
2386
  helperText?: TranslationConfig | undefined;
2159
2387
  hideLabel?: boolean | undefined;
@@ -2188,6 +2416,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
2188
2416
  type: "DISPLAY_ON_REVIEW";
2189
2417
  conditional: import(".").JSONSchema;
2190
2418
  })[] | undefined;
2419
+ secured?: boolean | undefined;
2191
2420
  placeholder?: {
2192
2421
  id: string;
2193
2422
  description: string;
@@ -2211,6 +2440,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
2211
2440
  }>>;
2212
2441
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
2213
2442
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2443
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2214
2444
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
2215
2445
  id: string;
2216
2446
  description: string;
@@ -2270,6 +2500,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
2270
2500
  type: "DISPLAY_ON_REVIEW";
2271
2501
  conditional: import(".").JSONSchema;
2272
2502
  })[] | undefined;
2503
+ secured?: boolean | undefined;
2273
2504
  placeholder?: TranslationConfig | undefined;
2274
2505
  helperText?: TranslationConfig | undefined;
2275
2506
  hideLabel?: boolean | undefined;
@@ -2304,6 +2535,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
2304
2535
  type: "DISPLAY_ON_REVIEW";
2305
2536
  conditional: import(".").JSONSchema;
2306
2537
  })[] | undefined;
2538
+ secured?: boolean | undefined;
2307
2539
  placeholder?: {
2308
2540
  id: string;
2309
2541
  description: string;
@@ -2327,6 +2559,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
2327
2559
  }>>;
2328
2560
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
2329
2561
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2562
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2330
2563
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
2331
2564
  id: string;
2332
2565
  description: string;
@@ -2364,16 +2597,16 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
2364
2597
  }, {
2365
2598
  type: z.ZodLiteral<"FILE">;
2366
2599
  defaultValue: z.ZodOptional<z.ZodObject<{
2367
- filename: z.ZodString;
2600
+ path: z.ZodEffects<z.ZodString, string, string>;
2368
2601
  originalFilename: z.ZodString;
2369
2602
  type: z.ZodString;
2370
2603
  }, "strip", z.ZodTypeAny, {
2371
2604
  type: string;
2372
- filename: string;
2605
+ path: string;
2373
2606
  originalFilename: string;
2374
2607
  }, {
2375
2608
  type: string;
2376
- filename: string;
2609
+ path: string;
2377
2610
  originalFilename: string;
2378
2611
  }>>;
2379
2612
  configuration: z.ZodDefault<z.ZodObject<{
@@ -2440,12 +2673,13 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
2440
2673
  type: "DISPLAY_ON_REVIEW";
2441
2674
  conditional: import(".").JSONSchema;
2442
2675
  })[] | undefined;
2676
+ secured?: boolean | undefined;
2443
2677
  placeholder?: TranslationConfig | undefined;
2444
2678
  helperText?: TranslationConfig | undefined;
2445
2679
  hideLabel?: boolean | undefined;
2446
2680
  defaultValue?: {
2447
2681
  type: string;
2448
- filename: string;
2682
+ path: string;
2449
2683
  originalFilename: string;
2450
2684
  } | undefined;
2451
2685
  }, {
@@ -2478,6 +2712,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
2478
2712
  type: "DISPLAY_ON_REVIEW";
2479
2713
  conditional: import(".").JSONSchema;
2480
2714
  })[] | undefined;
2715
+ secured?: boolean | undefined;
2481
2716
  placeholder?: {
2482
2717
  id: string;
2483
2718
  description: string;
@@ -2491,7 +2726,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
2491
2726
  hideLabel?: boolean | undefined;
2492
2727
  defaultValue?: {
2493
2728
  type: string;
2494
- filename: string;
2729
+ path: string;
2495
2730
  originalFilename: string;
2496
2731
  } | undefined;
2497
2732
  configuration?: {
@@ -2517,6 +2752,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
2517
2752
  }>>;
2518
2753
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
2519
2754
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2755
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2520
2756
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
2521
2757
  id: string;
2522
2758
  description: string;
@@ -2576,6 +2812,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
2576
2812
  type: "DISPLAY_ON_REVIEW";
2577
2813
  conditional: import(".").JSONSchema;
2578
2814
  })[] | undefined;
2815
+ secured?: boolean | undefined;
2579
2816
  placeholder?: TranslationConfig | undefined;
2580
2817
  helperText?: TranslationConfig | undefined;
2581
2818
  hideLabel?: boolean | undefined;
@@ -2610,6 +2847,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
2610
2847
  type: "DISPLAY_ON_REVIEW";
2611
2848
  conditional: import(".").JSONSchema;
2612
2849
  })[] | undefined;
2850
+ secured?: boolean | undefined;
2613
2851
  placeholder?: {
2614
2852
  id: string;
2615
2853
  description: string;
@@ -2633,6 +2871,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
2633
2871
  }>>;
2634
2872
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
2635
2873
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2874
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2636
2875
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
2637
2876
  id: string;
2638
2877
  description: string;
@@ -2718,6 +2957,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
2718
2957
  type: "DISPLAY_ON_REVIEW";
2719
2958
  conditional: import(".").JSONSchema;
2720
2959
  })[] | undefined;
2960
+ secured?: boolean | undefined;
2721
2961
  placeholder?: TranslationConfig | undefined;
2722
2962
  helperText?: TranslationConfig | undefined;
2723
2963
  hideLabel?: boolean | undefined;
@@ -2758,6 +2998,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
2758
2998
  type: "DISPLAY_ON_REVIEW";
2759
2999
  conditional: import(".").JSONSchema;
2760
3000
  })[] | undefined;
3001
+ secured?: boolean | undefined;
2761
3002
  placeholder?: {
2762
3003
  id: string;
2763
3004
  description: string;
@@ -2781,6 +3022,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
2781
3022
  }>>;
2782
3023
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
2783
3024
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3025
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2784
3026
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
2785
3027
  id: string;
2786
3028
  description: string;
@@ -2839,6 +3081,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
2839
3081
  type: "DISPLAY_ON_REVIEW";
2840
3082
  conditional: import(".").JSONSchema;
2841
3083
  })[] | undefined;
3084
+ secured?: boolean | undefined;
2842
3085
  placeholder?: TranslationConfig | undefined;
2843
3086
  helperText?: TranslationConfig | undefined;
2844
3087
  hideLabel?: boolean | undefined;
@@ -2872,6 +3115,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
2872
3115
  type: "DISPLAY_ON_REVIEW";
2873
3116
  conditional: import(".").JSONSchema;
2874
3117
  })[] | undefined;
3118
+ secured?: boolean | undefined;
2875
3119
  placeholder?: {
2876
3120
  id: string;
2877
3121
  description: string;
@@ -2894,6 +3138,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
2894
3138
  }>>;
2895
3139
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
2896
3140
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3141
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2897
3142
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
2898
3143
  id: string;
2899
3144
  description: string;
@@ -2953,6 +3198,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
2953
3198
  type: "DISPLAY_ON_REVIEW";
2954
3199
  conditional: import(".").JSONSchema;
2955
3200
  })[] | undefined;
3201
+ secured?: boolean | undefined;
2956
3202
  placeholder?: TranslationConfig | undefined;
2957
3203
  helperText?: TranslationConfig | undefined;
2958
3204
  hideLabel?: boolean | undefined;
@@ -2987,6 +3233,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
2987
3233
  type: "DISPLAY_ON_REVIEW";
2988
3234
  conditional: import(".").JSONSchema;
2989
3235
  })[] | undefined;
3236
+ secured?: boolean | undefined;
2990
3237
  placeholder?: {
2991
3238
  id: string;
2992
3239
  description: string;
@@ -3010,6 +3257,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
3010
3257
  }>>;
3011
3258
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
3012
3259
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3260
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3013
3261
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
3014
3262
  id: string;
3015
3263
  description: string;
@@ -3069,6 +3317,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
3069
3317
  type: "DISPLAY_ON_REVIEW";
3070
3318
  conditional: import(".").JSONSchema;
3071
3319
  })[] | undefined;
3320
+ secured?: boolean | undefined;
3072
3321
  placeholder?: TranslationConfig | undefined;
3073
3322
  helperText?: TranslationConfig | undefined;
3074
3323
  hideLabel?: boolean | undefined;
@@ -3103,6 +3352,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
3103
3352
  type: "DISPLAY_ON_REVIEW";
3104
3353
  conditional: import(".").JSONSchema;
3105
3354
  })[] | undefined;
3355
+ secured?: boolean | undefined;
3106
3356
  placeholder?: {
3107
3357
  id: string;
3108
3358
  description: string;
@@ -3126,6 +3376,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
3126
3376
  }>>;
3127
3377
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
3128
3378
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3379
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3129
3380
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
3130
3381
  id: string;
3131
3382
  description: string;
@@ -3185,6 +3436,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
3185
3436
  type: "DISPLAY_ON_REVIEW";
3186
3437
  conditional: import(".").JSONSchema;
3187
3438
  })[] | undefined;
3439
+ secured?: boolean | undefined;
3188
3440
  placeholder?: TranslationConfig | undefined;
3189
3441
  helperText?: TranslationConfig | undefined;
3190
3442
  hideLabel?: boolean | undefined;
@@ -3219,6 +3471,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
3219
3471
  type: "DISPLAY_ON_REVIEW";
3220
3472
  conditional: import(".").JSONSchema;
3221
3473
  })[] | undefined;
3474
+ secured?: boolean | undefined;
3222
3475
  placeholder?: {
3223
3476
  id: string;
3224
3477
  description: string;
@@ -3242,6 +3495,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
3242
3495
  }>>;
3243
3496
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
3244
3497
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3498
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3245
3499
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
3246
3500
  id: string;
3247
3501
  description: string;
@@ -3321,6 +3575,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
3321
3575
  type: "DISPLAY_ON_REVIEW";
3322
3576
  conditional: import(".").JSONSchema;
3323
3577
  })[] | undefined;
3578
+ secured?: boolean | undefined;
3324
3579
  placeholder?: TranslationConfig | undefined;
3325
3580
  helperText?: TranslationConfig | undefined;
3326
3581
  hideLabel?: boolean | undefined;
@@ -3360,6 +3615,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
3360
3615
  type: "DISPLAY_ON_REVIEW";
3361
3616
  conditional: import(".").JSONSchema;
3362
3617
  })[] | undefined;
3618
+ secured?: boolean | undefined;
3363
3619
  placeholder?: {
3364
3620
  id: string;
3365
3621
  description: string;
@@ -3387,6 +3643,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
3387
3643
  }>>;
3388
3644
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
3389
3645
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3646
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3390
3647
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
3391
3648
  id: string;
3392
3649
  description: string;
@@ -3453,6 +3710,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
3453
3710
  type: "DISPLAY_ON_REVIEW";
3454
3711
  conditional: import(".").JSONSchema;
3455
3712
  })[] | undefined;
3713
+ secured?: boolean | undefined;
3456
3714
  placeholder?: TranslationConfig | undefined;
3457
3715
  helperText?: TranslationConfig | undefined;
3458
3716
  hideLabel?: boolean | undefined;
@@ -3490,6 +3748,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
3490
3748
  type: "DISPLAY_ON_REVIEW";
3491
3749
  conditional: import(".").JSONSchema;
3492
3750
  })[] | undefined;
3751
+ secured?: boolean | undefined;
3493
3752
  placeholder?: {
3494
3753
  id: string;
3495
3754
  description: string;
@@ -3516,6 +3775,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
3516
3775
  }>>;
3517
3776
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
3518
3777
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3778
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3519
3779
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
3520
3780
  id: string;
3521
3781
  description: string;
@@ -3571,19 +3831,19 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
3571
3831
  };
3572
3832
  }>, "many">;
3573
3833
  defaultValue: z.ZodOptional<z.ZodArray<z.ZodObject<{
3574
- filename: z.ZodString;
3834
+ path: z.ZodEffects<z.ZodString, string, string>;
3575
3835
  originalFilename: z.ZodString;
3576
3836
  type: z.ZodString;
3577
3837
  option: z.ZodString;
3578
3838
  }, "strip", z.ZodTypeAny, {
3579
3839
  type: string;
3580
3840
  option: string;
3581
- filename: string;
3841
+ path: string;
3582
3842
  originalFilename: string;
3583
3843
  }, {
3584
3844
  type: string;
3585
3845
  option: string;
3586
- filename: string;
3846
+ path: string;
3587
3847
  originalFilename: string;
3588
3848
  }>, "many">>;
3589
3849
  configuration: z.ZodDefault<z.ZodObject<{
@@ -3626,13 +3886,14 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
3626
3886
  type: "DISPLAY_ON_REVIEW";
3627
3887
  conditional: import(".").JSONSchema;
3628
3888
  })[] | undefined;
3889
+ secured?: boolean | undefined;
3629
3890
  placeholder?: TranslationConfig | undefined;
3630
3891
  helperText?: TranslationConfig | undefined;
3631
3892
  hideLabel?: boolean | undefined;
3632
3893
  defaultValue?: {
3633
3894
  type: string;
3634
3895
  option: string;
3635
- filename: string;
3896
+ path: string;
3636
3897
  originalFilename: string;
3637
3898
  }[] | undefined;
3638
3899
  }, {
@@ -3673,6 +3934,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
3673
3934
  type: "DISPLAY_ON_REVIEW";
3674
3935
  conditional: import(".").JSONSchema;
3675
3936
  })[] | undefined;
3937
+ secured?: boolean | undefined;
3676
3938
  placeholder?: {
3677
3939
  id: string;
3678
3940
  description: string;
@@ -3687,7 +3949,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
3687
3949
  defaultValue?: {
3688
3950
  type: string;
3689
3951
  option: string;
3690
- filename: string;
3952
+ path: string;
3691
3953
  originalFilename: string;
3692
3954
  }[] | undefined;
3693
3955
  configuration?: {
@@ -3705,6 +3967,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
3705
3967
  }>>;
3706
3968
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
3707
3969
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3970
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3708
3971
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
3709
3972
  id: string;
3710
3973
  description: string;
@@ -3839,6 +4102,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
3839
4102
  type: "DISPLAY_ON_REVIEW";
3840
4103
  conditional: import(".").JSONSchema;
3841
4104
  })[] | undefined;
4105
+ secured?: boolean | undefined;
3842
4106
  placeholder?: TranslationConfig | undefined;
3843
4107
  helperText?: TranslationConfig | undefined;
3844
4108
  hideLabel?: boolean | undefined;
@@ -3893,6 +4157,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
3893
4157
  type: "DISPLAY_ON_REVIEW";
3894
4158
  conditional: import(".").JSONSchema;
3895
4159
  })[] | undefined;
4160
+ secured?: boolean | undefined;
3896
4161
  placeholder?: {
3897
4162
  id: string;
3898
4163
  description: string;
@@ -3934,6 +4199,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
3934
4199
  type: "DISPLAY_ON_REVIEW";
3935
4200
  conditional: import(".").JSONSchema;
3936
4201
  })[] | undefined;
4202
+ secured?: boolean | undefined;
3937
4203
  placeholder?: TranslationConfig | undefined;
3938
4204
  helperText?: TranslationConfig | undefined;
3939
4205
  hideLabel?: boolean | undefined;
@@ -3959,6 +4225,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
3959
4225
  type: "DISPLAY_ON_REVIEW";
3960
4226
  conditional: import(".").JSONSchema;
3961
4227
  })[] | undefined;
4228
+ secured?: boolean | undefined;
3962
4229
  placeholder?: TranslationConfig | undefined;
3963
4230
  helperText?: TranslationConfig | undefined;
3964
4231
  hideLabel?: boolean | undefined;
@@ -3991,6 +4258,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
3991
4258
  type: "DISPLAY_ON_REVIEW";
3992
4259
  conditional: import(".").JSONSchema;
3993
4260
  })[] | undefined;
4261
+ secured?: boolean | undefined;
3994
4262
  placeholder?: TranslationConfig | undefined;
3995
4263
  helperText?: TranslationConfig | undefined;
3996
4264
  hideLabel?: boolean | undefined;
@@ -4023,6 +4291,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
4023
4291
  type: "DISPLAY_ON_REVIEW";
4024
4292
  conditional: import(".").JSONSchema;
4025
4293
  })[] | undefined;
4294
+ secured?: boolean | undefined;
4026
4295
  placeholder?: TranslationConfig | undefined;
4027
4296
  helperText?: TranslationConfig | undefined;
4028
4297
  hideLabel?: boolean | undefined;
@@ -4061,6 +4330,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
4061
4330
  type: "DISPLAY_ON_REVIEW";
4062
4331
  conditional: import(".").JSONSchema;
4063
4332
  })[] | undefined;
4333
+ secured?: boolean | undefined;
4064
4334
  placeholder?: TranslationConfig | undefined;
4065
4335
  helperText?: TranslationConfig | undefined;
4066
4336
  hideLabel?: boolean | undefined;
@@ -4087,6 +4357,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
4087
4357
  type: "DISPLAY_ON_REVIEW";
4088
4358
  conditional: import(".").JSONSchema;
4089
4359
  })[] | undefined;
4360
+ secured?: boolean | undefined;
4090
4361
  placeholder?: TranslationConfig | undefined;
4091
4362
  helperText?: TranslationConfig | undefined;
4092
4363
  hideLabel?: boolean | undefined;
@@ -4116,6 +4387,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
4116
4387
  type: "DISPLAY_ON_REVIEW";
4117
4388
  conditional: import(".").JSONSchema;
4118
4389
  })[] | undefined;
4390
+ secured?: boolean | undefined;
4119
4391
  placeholder?: TranslationConfig | undefined;
4120
4392
  helperText?: TranslationConfig | undefined;
4121
4393
  hideLabel?: boolean | undefined;
@@ -4145,10 +4417,14 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
4145
4417
  type: "DISPLAY_ON_REVIEW";
4146
4418
  conditional: import(".").JSONSchema;
4147
4419
  })[] | undefined;
4420
+ secured?: boolean | undefined;
4148
4421
  placeholder?: TranslationConfig | undefined;
4149
4422
  helperText?: TranslationConfig | undefined;
4150
4423
  hideLabel?: boolean | undefined;
4151
- defaultValue?: string | [string, string] | undefined;
4424
+ defaultValue?: string | {
4425
+ start: string;
4426
+ end: string;
4427
+ } | undefined;
4152
4428
  configuration?: {
4153
4429
  notice?: TranslationConfig | undefined;
4154
4430
  } | undefined;
@@ -4179,6 +4455,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
4179
4455
  type: "DISPLAY_ON_REVIEW";
4180
4456
  conditional: import(".").JSONSchema;
4181
4457
  })[] | undefined;
4458
+ secured?: boolean | undefined;
4182
4459
  placeholder?: TranslationConfig | undefined;
4183
4460
  helperText?: TranslationConfig | undefined;
4184
4461
  hideLabel?: boolean | undefined;
@@ -4205,6 +4482,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
4205
4482
  type: "DISPLAY_ON_REVIEW";
4206
4483
  conditional: import(".").JSONSchema;
4207
4484
  })[] | undefined;
4485
+ secured?: boolean | undefined;
4208
4486
  placeholder?: TranslationConfig | undefined;
4209
4487
  helperText?: TranslationConfig | undefined;
4210
4488
  hideLabel?: boolean | undefined;
@@ -4239,12 +4517,13 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
4239
4517
  type: "DISPLAY_ON_REVIEW";
4240
4518
  conditional: import(".").JSONSchema;
4241
4519
  })[] | undefined;
4520
+ secured?: boolean | undefined;
4242
4521
  placeholder?: TranslationConfig | undefined;
4243
4522
  helperText?: TranslationConfig | undefined;
4244
4523
  hideLabel?: boolean | undefined;
4245
4524
  defaultValue?: {
4246
4525
  type: string;
4247
- filename: string;
4526
+ path: string;
4248
4527
  originalFilename: string;
4249
4528
  } | undefined;
4250
4529
  } | {
@@ -4273,6 +4552,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
4273
4552
  type: "DISPLAY_ON_REVIEW";
4274
4553
  conditional: import(".").JSONSchema;
4275
4554
  })[] | undefined;
4555
+ secured?: boolean | undefined;
4276
4556
  placeholder?: TranslationConfig | undefined;
4277
4557
  helperText?: TranslationConfig | undefined;
4278
4558
  hideLabel?: boolean | undefined;
@@ -4310,6 +4590,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
4310
4590
  type: "DISPLAY_ON_REVIEW";
4311
4591
  conditional: import(".").JSONSchema;
4312
4592
  })[] | undefined;
4593
+ secured?: boolean | undefined;
4313
4594
  placeholder?: TranslationConfig | undefined;
4314
4595
  helperText?: TranslationConfig | undefined;
4315
4596
  hideLabel?: boolean | undefined;
@@ -4340,10 +4621,42 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
4340
4621
  type: "DISPLAY_ON_REVIEW";
4341
4622
  conditional: import(".").JSONSchema;
4342
4623
  })[] | undefined;
4624
+ secured?: boolean | undefined;
4343
4625
  placeholder?: TranslationConfig | undefined;
4344
4626
  helperText?: TranslationConfig | undefined;
4345
4627
  hideLabel?: boolean | undefined;
4346
4628
  defaultValue?: string | undefined;
4629
+ } | {
4630
+ type: "SELECT_DATE_RANGE";
4631
+ id: string;
4632
+ options: {
4633
+ value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
4634
+ label: TranslationConfig;
4635
+ }[];
4636
+ label: TranslationConfig;
4637
+ parent?: {
4638
+ $$field: string;
4639
+ } | undefined;
4640
+ validation?: {
4641
+ message: TranslationConfig;
4642
+ validator: import(".").JSONSchema;
4643
+ }[] | undefined;
4644
+ required?: boolean | undefined;
4645
+ conditionals?: ({
4646
+ type: "SHOW";
4647
+ conditional: import(".").JSONSchema;
4648
+ } | {
4649
+ type: "ENABLE";
4650
+ conditional: import(".").JSONSchema;
4651
+ } | {
4652
+ type: "DISPLAY_ON_REVIEW";
4653
+ conditional: import(".").JSONSchema;
4654
+ })[] | undefined;
4655
+ secured?: boolean | undefined;
4656
+ placeholder?: TranslationConfig | undefined;
4657
+ helperText?: TranslationConfig | undefined;
4658
+ hideLabel?: boolean | undefined;
4659
+ defaultValue?: "last7Days" | "last30Days" | "last90Days" | "last365Days" | undefined;
4347
4660
  } | {
4348
4661
  type: "NAME";
4349
4662
  id: string;
@@ -4366,6 +4679,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
4366
4679
  type: "DISPLAY_ON_REVIEW";
4367
4680
  conditional: import(".").JSONSchema;
4368
4681
  })[] | undefined;
4682
+ secured?: boolean | undefined;
4369
4683
  placeholder?: TranslationConfig | undefined;
4370
4684
  helperText?: TranslationConfig | undefined;
4371
4685
  hideLabel?: boolean | undefined;
@@ -4377,6 +4691,8 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
4377
4691
  maxLength?: number | undefined;
4378
4692
  prefix?: TranslationConfig | undefined;
4379
4693
  postfix?: TranslationConfig | undefined;
4694
+ includeMiddlename?: boolean | undefined;
4695
+ searchMode?: boolean | undefined;
4380
4696
  } | undefined;
4381
4697
  } | {
4382
4698
  type: "PHONE";
@@ -4400,6 +4716,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
4400
4716
  type: "DISPLAY_ON_REVIEW";
4401
4717
  conditional: import(".").JSONSchema;
4402
4718
  })[] | undefined;
4719
+ secured?: boolean | undefined;
4403
4720
  placeholder?: TranslationConfig | undefined;
4404
4721
  helperText?: TranslationConfig | undefined;
4405
4722
  hideLabel?: boolean | undefined;
@@ -4426,6 +4743,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
4426
4743
  type: "DISPLAY_ON_REVIEW";
4427
4744
  conditional: import(".").JSONSchema;
4428
4745
  })[] | undefined;
4746
+ secured?: boolean | undefined;
4429
4747
  placeholder?: TranslationConfig | undefined;
4430
4748
  helperText?: TranslationConfig | undefined;
4431
4749
  hideLabel?: boolean | undefined;
@@ -4452,6 +4770,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
4452
4770
  type: "DISPLAY_ON_REVIEW";
4453
4771
  conditional: import(".").JSONSchema;
4454
4772
  })[] | undefined;
4773
+ secured?: boolean | undefined;
4455
4774
  placeholder?: TranslationConfig | undefined;
4456
4775
  helperText?: TranslationConfig | undefined;
4457
4776
  hideLabel?: boolean | undefined;
@@ -4478,6 +4797,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
4478
4797
  type: "DISPLAY_ON_REVIEW";
4479
4798
  conditional: import(".").JSONSchema;
4480
4799
  })[] | undefined;
4800
+ secured?: boolean | undefined;
4481
4801
  placeholder?: TranslationConfig | undefined;
4482
4802
  helperText?: TranslationConfig | undefined;
4483
4803
  hideLabel?: boolean | undefined;
@@ -4510,6 +4830,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
4510
4830
  type: "DISPLAY_ON_REVIEW";
4511
4831
  conditional: import(".").JSONSchema;
4512
4832
  })[] | undefined;
4833
+ secured?: boolean | undefined;
4513
4834
  placeholder?: TranslationConfig | undefined;
4514
4835
  helperText?: TranslationConfig | undefined;
4515
4836
  hideLabel?: boolean | undefined;
@@ -4536,6 +4857,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
4536
4857
  type: "DISPLAY_ON_REVIEW";
4537
4858
  conditional: import(".").JSONSchema;
4538
4859
  })[] | undefined;
4860
+ secured?: boolean | undefined;
4539
4861
  placeholder?: TranslationConfig | undefined;
4540
4862
  helperText?: TranslationConfig | undefined;
4541
4863
  hideLabel?: boolean | undefined;
@@ -4570,13 +4892,14 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
4570
4892
  type: "DISPLAY_ON_REVIEW";
4571
4893
  conditional: import(".").JSONSchema;
4572
4894
  })[] | undefined;
4895
+ secured?: boolean | undefined;
4573
4896
  placeholder?: TranslationConfig | undefined;
4574
4897
  helperText?: TranslationConfig | undefined;
4575
4898
  hideLabel?: boolean | undefined;
4576
4899
  defaultValue?: {
4577
4900
  type: string;
4578
4901
  option: string;
4579
- filename: string;
4902
+ path: string;
4580
4903
  originalFilename: string;
4581
4904
  }[] | undefined;
4582
4905
  } | {
@@ -4601,6 +4924,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
4601
4924
  type: "DISPLAY_ON_REVIEW";
4602
4925
  conditional: import(".").JSONSchema;
4603
4926
  })[] | undefined;
4927
+ secured?: boolean | undefined;
4604
4928
  placeholder?: TranslationConfig | undefined;
4605
4929
  helperText?: TranslationConfig | undefined;
4606
4930
  hideLabel?: boolean | undefined;
@@ -4627,6 +4951,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
4627
4951
  type: "DISPLAY_ON_REVIEW";
4628
4952
  conditional: import(".").JSONSchema;
4629
4953
  })[] | undefined;
4954
+ secured?: boolean | undefined;
4630
4955
  placeholder?: TranslationConfig | undefined;
4631
4956
  helperText?: TranslationConfig | undefined;
4632
4957
  hideLabel?: boolean | undefined;
@@ -4653,6 +4978,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
4653
4978
  type: "DISPLAY_ON_REVIEW";
4654
4979
  conditional: import(".").JSONSchema;
4655
4980
  })[] | undefined;
4981
+ secured?: boolean | undefined;
4656
4982
  placeholder?: TranslationConfig | undefined;
4657
4983
  helperText?: TranslationConfig | undefined;
4658
4984
  hideLabel?: boolean | undefined;
@@ -4685,6 +5011,9 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
4685
5011
  addressLine3?: string | undefined;
4686
5012
  postcodeOrZip?: string | undefined;
4687
5013
  } | undefined;
5014
+ configuration?: {
5015
+ searchMode?: boolean | undefined;
5016
+ } | undefined;
4688
5017
  } | {
4689
5018
  type: "DATA";
4690
5019
  id: string;
@@ -4716,6 +5045,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
4716
5045
  type: "DISPLAY_ON_REVIEW";
4717
5046
  conditional: import(".").JSONSchema;
4718
5047
  })[] | undefined;
5048
+ secured?: boolean | undefined;
4719
5049
  placeholder?: TranslationConfig | undefined;
4720
5050
  helperText?: TranslationConfig | undefined;
4721
5051
  hideLabel?: boolean | undefined;
@@ -4758,6 +5088,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
4758
5088
  type: "DISPLAY_ON_REVIEW";
4759
5089
  conditional: import(".").JSONSchema;
4760
5090
  })[] | undefined;
5091
+ secured?: boolean | undefined;
4761
5092
  placeholder?: {
4762
5093
  id: string;
4763
5094
  description: string;
@@ -4799,6 +5130,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
4799
5130
  type: "DISPLAY_ON_REVIEW";
4800
5131
  conditional: import(".").JSONSchema;
4801
5132
  })[] | undefined;
5133
+ secured?: boolean | undefined;
4802
5134
  placeholder?: {
4803
5135
  id: string;
4804
5136
  description: string;
@@ -4855,6 +5187,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
4855
5187
  type: "DISPLAY_ON_REVIEW";
4856
5188
  conditional: import(".").JSONSchema;
4857
5189
  })[] | undefined;
5190
+ secured?: boolean | undefined;
4858
5191
  placeholder?: {
4859
5192
  id: string;
4860
5193
  description: string;
@@ -4911,6 +5244,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
4911
5244
  type: "DISPLAY_ON_REVIEW";
4912
5245
  conditional: import(".").JSONSchema;
4913
5246
  })[] | undefined;
5247
+ secured?: boolean | undefined;
4914
5248
  placeholder?: {
4915
5249
  id: string;
4916
5250
  description: string;
@@ -4973,6 +5307,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
4973
5307
  type: "DISPLAY_ON_REVIEW";
4974
5308
  conditional: import(".").JSONSchema;
4975
5309
  })[] | undefined;
5310
+ secured?: boolean | undefined;
4976
5311
  placeholder?: {
4977
5312
  id: string;
4978
5313
  description: string;
@@ -5019,6 +5354,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
5019
5354
  type: "DISPLAY_ON_REVIEW";
5020
5355
  conditional: import(".").JSONSchema;
5021
5356
  })[] | undefined;
5357
+ secured?: boolean | undefined;
5022
5358
  placeholder?: {
5023
5359
  id: string;
5024
5360
  description: string;
@@ -5064,6 +5400,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
5064
5400
  type: "DISPLAY_ON_REVIEW";
5065
5401
  conditional: import(".").JSONSchema;
5066
5402
  })[] | undefined;
5403
+ secured?: boolean | undefined;
5067
5404
  placeholder?: {
5068
5405
  id: string;
5069
5406
  description: string;
@@ -5113,6 +5450,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
5113
5450
  type: "DISPLAY_ON_REVIEW";
5114
5451
  conditional: import(".").JSONSchema;
5115
5452
  })[] | undefined;
5453
+ secured?: boolean | undefined;
5116
5454
  placeholder?: {
5117
5455
  id: string;
5118
5456
  description: string;
@@ -5124,7 +5462,10 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
5124
5462
  defaultMessage: string;
5125
5463
  } | undefined;
5126
5464
  hideLabel?: boolean | undefined;
5127
- defaultValue?: string | [string, string] | undefined;
5465
+ defaultValue?: string | {
5466
+ start: string;
5467
+ end: string;
5468
+ } | undefined;
5128
5469
  configuration?: {
5129
5470
  notice?: {
5130
5471
  id: string;
@@ -5162,6 +5503,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
5162
5503
  type: "DISPLAY_ON_REVIEW";
5163
5504
  conditional: import(".").JSONSchema;
5164
5505
  })[] | undefined;
5506
+ secured?: boolean | undefined;
5165
5507
  placeholder?: {
5166
5508
  id: string;
5167
5509
  description: string;
@@ -5209,6 +5551,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
5209
5551
  type: "DISPLAY_ON_REVIEW";
5210
5552
  conditional: import(".").JSONSchema;
5211
5553
  })[] | undefined;
5554
+ secured?: boolean | undefined;
5212
5555
  placeholder?: {
5213
5556
  id: string;
5214
5557
  description: string;
@@ -5251,6 +5594,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
5251
5594
  type: "DISPLAY_ON_REVIEW";
5252
5595
  conditional: import(".").JSONSchema;
5253
5596
  })[] | undefined;
5597
+ secured?: boolean | undefined;
5254
5598
  placeholder?: {
5255
5599
  id: string;
5256
5600
  description: string;
@@ -5264,7 +5608,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
5264
5608
  hideLabel?: boolean | undefined;
5265
5609
  defaultValue?: {
5266
5610
  type: string;
5267
- filename: string;
5611
+ path: string;
5268
5612
  originalFilename: string;
5269
5613
  } | undefined;
5270
5614
  configuration?: {
@@ -5317,6 +5661,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
5317
5661
  type: "DISPLAY_ON_REVIEW";
5318
5662
  conditional: import(".").JSONSchema;
5319
5663
  })[] | undefined;
5664
+ secured?: boolean | undefined;
5320
5665
  placeholder?: {
5321
5666
  id: string;
5322
5667
  description: string;
@@ -5369,6 +5714,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
5369
5714
  type: "DISPLAY_ON_REVIEW";
5370
5715
  conditional: import(".").JSONSchema;
5371
5716
  })[] | undefined;
5717
+ secured?: boolean | undefined;
5372
5718
  placeholder?: {
5373
5719
  id: string;
5374
5720
  description: string;
@@ -5424,6 +5770,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
5424
5770
  type: "DISPLAY_ON_REVIEW";
5425
5771
  conditional: import(".").JSONSchema;
5426
5772
  })[] | undefined;
5773
+ secured?: boolean | undefined;
5427
5774
  placeholder?: {
5428
5775
  id: string;
5429
5776
  description: string;
@@ -5436,6 +5783,57 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
5436
5783
  } | undefined;
5437
5784
  hideLabel?: boolean | undefined;
5438
5785
  defaultValue?: string | undefined;
5786
+ } | {
5787
+ type: "SELECT_DATE_RANGE";
5788
+ id: string;
5789
+ options: {
5790
+ value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
5791
+ label: {
5792
+ id: string;
5793
+ description: string;
5794
+ defaultMessage: string;
5795
+ };
5796
+ }[];
5797
+ label: {
5798
+ id: string;
5799
+ description: string;
5800
+ defaultMessage: string;
5801
+ };
5802
+ parent?: {
5803
+ $$field: string;
5804
+ } | undefined;
5805
+ validation?: {
5806
+ message: {
5807
+ id: string;
5808
+ description: string;
5809
+ defaultMessage: string;
5810
+ };
5811
+ validator: import(".").JSONSchema;
5812
+ }[] | undefined;
5813
+ required?: boolean | undefined;
5814
+ conditionals?: ({
5815
+ type: "SHOW";
5816
+ conditional: import(".").JSONSchema;
5817
+ } | {
5818
+ type: "ENABLE";
5819
+ conditional: import(".").JSONSchema;
5820
+ } | {
5821
+ type: "DISPLAY_ON_REVIEW";
5822
+ conditional: import(".").JSONSchema;
5823
+ })[] | undefined;
5824
+ secured?: boolean | undefined;
5825
+ placeholder?: {
5826
+ id: string;
5827
+ description: string;
5828
+ defaultMessage: string;
5829
+ } | undefined;
5830
+ helperText?: {
5831
+ id: string;
5832
+ description: string;
5833
+ defaultMessage: string;
5834
+ } | undefined;
5835
+ hideLabel?: boolean | undefined;
5836
+ defaultValue?: "last7Days" | "last30Days" | "last90Days" | "last365Days" | undefined;
5439
5837
  } | {
5440
5838
  type: "NAME";
5441
5839
  id: string;
@@ -5466,6 +5864,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
5466
5864
  type: "DISPLAY_ON_REVIEW";
5467
5865
  conditional: import(".").JSONSchema;
5468
5866
  })[] | undefined;
5867
+ secured?: boolean | undefined;
5469
5868
  placeholder?: {
5470
5869
  id: string;
5471
5870
  description: string;
@@ -5493,6 +5892,8 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
5493
5892
  description: string;
5494
5893
  defaultMessage: string;
5495
5894
  } | undefined;
5895
+ includeMiddlename?: boolean | undefined;
5896
+ searchMode?: boolean | undefined;
5496
5897
  } | undefined;
5497
5898
  } | {
5498
5899
  type: "PHONE";
@@ -5524,6 +5925,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
5524
5925
  type: "DISPLAY_ON_REVIEW";
5525
5926
  conditional: import(".").JSONSchema;
5526
5927
  })[] | undefined;
5928
+ secured?: boolean | undefined;
5527
5929
  placeholder?: {
5528
5930
  id: string;
5529
5931
  description: string;
@@ -5566,6 +5968,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
5566
5968
  type: "DISPLAY_ON_REVIEW";
5567
5969
  conditional: import(".").JSONSchema;
5568
5970
  })[] | undefined;
5971
+ secured?: boolean | undefined;
5569
5972
  placeholder?: {
5570
5973
  id: string;
5571
5974
  description: string;
@@ -5608,6 +6011,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
5608
6011
  type: "DISPLAY_ON_REVIEW";
5609
6012
  conditional: import(".").JSONSchema;
5610
6013
  })[] | undefined;
6014
+ secured?: boolean | undefined;
5611
6015
  placeholder?: {
5612
6016
  id: string;
5613
6017
  description: string;
@@ -5650,6 +6054,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
5650
6054
  type: "DISPLAY_ON_REVIEW";
5651
6055
  conditional: import(".").JSONSchema;
5652
6056
  })[] | undefined;
6057
+ secured?: boolean | undefined;
5653
6058
  placeholder?: {
5654
6059
  id: string;
5655
6060
  description: string;
@@ -5698,6 +6103,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
5698
6103
  type: "DISPLAY_ON_REVIEW";
5699
6104
  conditional: import(".").JSONSchema;
5700
6105
  })[] | undefined;
6106
+ secured?: boolean | undefined;
5701
6107
  placeholder?: {
5702
6108
  id: string;
5703
6109
  description: string;
@@ -5740,6 +6146,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
5740
6146
  type: "DISPLAY_ON_REVIEW";
5741
6147
  conditional: import(".").JSONSchema;
5742
6148
  })[] | undefined;
6149
+ secured?: boolean | undefined;
5743
6150
  placeholder?: {
5744
6151
  id: string;
5745
6152
  description: string;
@@ -5790,6 +6197,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
5790
6197
  type: "DISPLAY_ON_REVIEW";
5791
6198
  conditional: import(".").JSONSchema;
5792
6199
  })[] | undefined;
6200
+ secured?: boolean | undefined;
5793
6201
  placeholder?: {
5794
6202
  id: string;
5795
6203
  description: string;
@@ -5804,7 +6212,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
5804
6212
  defaultValue?: {
5805
6213
  type: string;
5806
6214
  option: string;
5807
- filename: string;
6215
+ path: string;
5808
6216
  originalFilename: string;
5809
6217
  }[] | undefined;
5810
6218
  configuration?: {
@@ -5841,6 +6249,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
5841
6249
  type: "DISPLAY_ON_REVIEW";
5842
6250
  conditional: import(".").JSONSchema;
5843
6251
  })[] | undefined;
6252
+ secured?: boolean | undefined;
5844
6253
  placeholder?: {
5845
6254
  id: string;
5846
6255
  description: string;
@@ -5883,6 +6292,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
5883
6292
  type: "DISPLAY_ON_REVIEW";
5884
6293
  conditional: import(".").JSONSchema;
5885
6294
  })[] | undefined;
6295
+ secured?: boolean | undefined;
5886
6296
  placeholder?: {
5887
6297
  id: string;
5888
6298
  description: string;
@@ -5925,6 +6335,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
5925
6335
  type: "DISPLAY_ON_REVIEW";
5926
6336
  conditional: import(".").JSONSchema;
5927
6337
  })[] | undefined;
6338
+ secured?: boolean | undefined;
5928
6339
  placeholder?: {
5929
6340
  id: string;
5930
6341
  description: string;
@@ -5965,6 +6376,9 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
5965
6376
  addressLine3?: string | undefined;
5966
6377
  postcodeOrZip?: string | undefined;
5967
6378
  } | undefined;
6379
+ configuration?: {
6380
+ searchMode?: boolean | undefined;
6381
+ } | undefined;
5968
6382
  } | {
5969
6383
  type: "DATA";
5970
6384
  id: string;
@@ -6016,6 +6430,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
6016
6430
  type: "DISPLAY_ON_REVIEW";
6017
6431
  conditional: import(".").JSONSchema;
6018
6432
  })[] | undefined;
6433
+ secured?: boolean | undefined;
6019
6434
  placeholder?: {
6020
6435
  id: string;
6021
6436
  description: string;
@@ -6163,6 +6578,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
6163
6578
  }>>;
6164
6579
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
6165
6580
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
6581
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
6166
6582
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
6167
6583
  id: string;
6168
6584
  description: string;
@@ -6286,6 +6702,13 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
6286
6702
  addressLine3?: string | undefined;
6287
6703
  postcodeOrZip?: string | undefined;
6288
6704
  }>]>>;
6705
+ configuration: z.ZodOptional<z.ZodObject<{
6706
+ searchMode: z.ZodOptional<z.ZodBoolean>;
6707
+ }, "strip", z.ZodTypeAny, {
6708
+ searchMode?: boolean | undefined;
6709
+ }, {
6710
+ searchMode?: boolean | undefined;
6711
+ }>>;
6289
6712
  }>, "strip", z.ZodTypeAny, {
6290
6713
  type: "ADDRESS";
6291
6714
  id: string;
@@ -6308,6 +6731,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
6308
6731
  type: "DISPLAY_ON_REVIEW";
6309
6732
  conditional: import(".").JSONSchema;
6310
6733
  })[] | undefined;
6734
+ secured?: boolean | undefined;
6311
6735
  placeholder?: TranslationConfig | undefined;
6312
6736
  helperText?: TranslationConfig | undefined;
6313
6737
  hideLabel?: boolean | undefined;
@@ -6340,6 +6764,9 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
6340
6764
  addressLine3?: string | undefined;
6341
6765
  postcodeOrZip?: string | undefined;
6342
6766
  } | undefined;
6767
+ configuration?: {
6768
+ searchMode?: boolean | undefined;
6769
+ } | undefined;
6343
6770
  }, {
6344
6771
  type: "ADDRESS";
6345
6772
  id: string;
@@ -6370,6 +6797,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
6370
6797
  type: "DISPLAY_ON_REVIEW";
6371
6798
  conditional: import(".").JSONSchema;
6372
6799
  })[] | undefined;
6800
+ secured?: boolean | undefined;
6373
6801
  placeholder?: {
6374
6802
  id: string;
6375
6803
  description: string;
@@ -6410,6 +6838,9 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
6410
6838
  addressLine3?: string | undefined;
6411
6839
  postcodeOrZip?: string | undefined;
6412
6840
  } | undefined;
6841
+ configuration?: {
6842
+ searchMode?: boolean | undefined;
6843
+ } | undefined;
6413
6844
  }>, z.ZodObject<z.objectUtil.extendShape<{
6414
6845
  id: z.ZodString;
6415
6846
  parent: z.ZodOptional<z.ZodObject<{
@@ -6421,6 +6852,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
6421
6852
  }>>;
6422
6853
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
6423
6854
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
6855
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
6424
6856
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
6425
6857
  id: string;
6426
6858
  description: string;
@@ -6512,6 +6944,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
6512
6944
  type: "DISPLAY_ON_REVIEW";
6513
6945
  conditional: import(".").JSONSchema;
6514
6946
  })[] | undefined;
6947
+ secured?: boolean | undefined;
6515
6948
  placeholder?: TranslationConfig | undefined;
6516
6949
  helperText?: TranslationConfig | undefined;
6517
6950
  hideLabel?: boolean | undefined;
@@ -6552,6 +6985,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
6552
6985
  type: "DISPLAY_ON_REVIEW";
6553
6986
  conditional: import(".").JSONSchema;
6554
6987
  })[] | undefined;
6988
+ secured?: boolean | undefined;
6555
6989
  placeholder?: {
6556
6990
  id: string;
6557
6991
  description: string;
@@ -6589,6 +7023,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
6589
7023
  }>>;
6590
7024
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
6591
7025
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7026
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
6592
7027
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
6593
7028
  id: string;
6594
7029
  description: string;
@@ -6680,6 +7115,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
6680
7115
  type: "DISPLAY_ON_REVIEW";
6681
7116
  conditional: import(".").JSONSchema;
6682
7117
  })[] | undefined;
7118
+ secured?: boolean | undefined;
6683
7119
  placeholder?: TranslationConfig | undefined;
6684
7120
  helperText?: TranslationConfig | undefined;
6685
7121
  hideLabel?: boolean | undefined;
@@ -6720,6 +7156,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
6720
7156
  type: "DISPLAY_ON_REVIEW";
6721
7157
  conditional: import(".").JSONSchema;
6722
7158
  })[] | undefined;
7159
+ secured?: boolean | undefined;
6723
7160
  placeholder?: {
6724
7161
  id: string;
6725
7162
  description: string;
@@ -6757,6 +7194,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
6757
7194
  }>>;
6758
7195
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
6759
7196
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7197
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
6760
7198
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
6761
7199
  id: string;
6762
7200
  description: string;
@@ -6851,6 +7289,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
6851
7289
  type: "DISPLAY_ON_REVIEW";
6852
7290
  conditional: import(".").JSONSchema;
6853
7291
  })[] | undefined;
7292
+ secured?: boolean | undefined;
6854
7293
  placeholder?: TranslationConfig | undefined;
6855
7294
  helperText?: TranslationConfig | undefined;
6856
7295
  hideLabel?: boolean | undefined;
@@ -6892,6 +7331,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
6892
7331
  type: "DISPLAY_ON_REVIEW";
6893
7332
  conditional: import(".").JSONSchema;
6894
7333
  })[] | undefined;
7334
+ secured?: boolean | undefined;
6895
7335
  placeholder?: {
6896
7336
  id: string;
6897
7337
  description: string;
@@ -6930,6 +7370,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
6930
7370
  }>>;
6931
7371
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
6932
7372
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7373
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
6933
7374
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
6934
7375
  id: string;
6935
7376
  description: string;
@@ -7004,6 +7445,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
7004
7445
  type: "DISPLAY_ON_REVIEW";
7005
7446
  conditional: import(".").JSONSchema;
7006
7447
  })[] | undefined;
7448
+ secured?: boolean | undefined;
7007
7449
  placeholder?: TranslationConfig | undefined;
7008
7450
  helperText?: TranslationConfig | undefined;
7009
7451
  hideLabel?: boolean | undefined;
@@ -7041,6 +7483,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
7041
7483
  type: "DISPLAY_ON_REVIEW";
7042
7484
  conditional: import(".").JSONSchema;
7043
7485
  })[] | undefined;
7486
+ secured?: boolean | undefined;
7044
7487
  placeholder?: {
7045
7488
  id: string;
7046
7489
  description: string;
@@ -7071,6 +7514,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
7071
7514
  }>>;
7072
7515
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
7073
7516
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7517
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7074
7518
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
7075
7519
  id: string;
7076
7520
  description: string;
@@ -7107,7 +7551,16 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
7107
7551
  hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7108
7552
  }, {
7109
7553
  type: z.ZodLiteral<"DATE_RANGE">;
7110
- defaultValue: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>>;
7554
+ defaultValue: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
7555
+ start: z.ZodString;
7556
+ end: z.ZodString;
7557
+ }, "strip", z.ZodTypeAny, {
7558
+ start: string;
7559
+ end: string;
7560
+ }, {
7561
+ start: string;
7562
+ end: string;
7563
+ }>, z.ZodString]>>;
7111
7564
  configuration: z.ZodOptional<z.ZodObject<{
7112
7565
  notice: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
7113
7566
  id: string;
@@ -7145,10 +7598,14 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
7145
7598
  type: "DISPLAY_ON_REVIEW";
7146
7599
  conditional: import(".").JSONSchema;
7147
7600
  })[] | undefined;
7601
+ secured?: boolean | undefined;
7148
7602
  placeholder?: TranslationConfig | undefined;
7149
7603
  helperText?: TranslationConfig | undefined;
7150
7604
  hideLabel?: boolean | undefined;
7151
- defaultValue?: string | [string, string] | undefined;
7605
+ defaultValue?: string | {
7606
+ start: string;
7607
+ end: string;
7608
+ } | undefined;
7152
7609
  configuration?: {
7153
7610
  notice?: TranslationConfig | undefined;
7154
7611
  } | undefined;
@@ -7182,6 +7639,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
7182
7639
  type: "DISPLAY_ON_REVIEW";
7183
7640
  conditional: import(".").JSONSchema;
7184
7641
  })[] | undefined;
7642
+ secured?: boolean | undefined;
7185
7643
  placeholder?: {
7186
7644
  id: string;
7187
7645
  description: string;
@@ -7193,7 +7651,10 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
7193
7651
  defaultMessage: string;
7194
7652
  } | undefined;
7195
7653
  hideLabel?: boolean | undefined;
7196
- defaultValue?: string | [string, string] | undefined;
7654
+ defaultValue?: string | {
7655
+ start: string;
7656
+ end: string;
7657
+ } | undefined;
7197
7658
  configuration?: {
7198
7659
  notice?: {
7199
7660
  id: string;
@@ -7212,6 +7673,156 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
7212
7673
  }>>;
7213
7674
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
7214
7675
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7676
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7677
+ placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
7678
+ id: string;
7679
+ description: string;
7680
+ defaultMessage: string;
7681
+ }>>;
7682
+ validation: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodObject<{
7683
+ validator: z.ZodType<import(".").JSONSchema, z.ZodTypeDef, import(".").JSONSchema>;
7684
+ message: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
7685
+ id: string;
7686
+ description: string;
7687
+ defaultMessage: string;
7688
+ }>;
7689
+ }, "strip", z.ZodTypeAny, {
7690
+ message: TranslationConfig;
7691
+ validator: import(".").JSONSchema;
7692
+ }, {
7693
+ message: {
7694
+ id: string;
7695
+ description: string;
7696
+ defaultMessage: string;
7697
+ };
7698
+ validator: import(".").JSONSchema;
7699
+ }>, "many">>>;
7700
+ label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
7701
+ id: string;
7702
+ description: string;
7703
+ defaultMessage: string;
7704
+ }>;
7705
+ helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
7706
+ id: string;
7707
+ description: string;
7708
+ defaultMessage: string;
7709
+ }>>;
7710
+ hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7711
+ }, {
7712
+ type: z.ZodLiteral<"SELECT_DATE_RANGE">;
7713
+ defaultValue: z.ZodOptional<z.ZodEnum<["last7Days", "last30Days", "last90Days", "last365Days"]>>;
7714
+ options: z.ZodArray<z.ZodObject<{
7715
+ value: z.ZodEnum<["last7Days", "last30Days", "last90Days", "last365Days"]>;
7716
+ label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
7717
+ id: string;
7718
+ description: string;
7719
+ defaultMessage: string;
7720
+ }>;
7721
+ }, "strip", z.ZodTypeAny, {
7722
+ value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
7723
+ label: TranslationConfig;
7724
+ }, {
7725
+ value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
7726
+ label: {
7727
+ id: string;
7728
+ description: string;
7729
+ defaultMessage: string;
7730
+ };
7731
+ }>, "many">;
7732
+ }>, "strip", z.ZodTypeAny, {
7733
+ type: "SELECT_DATE_RANGE";
7734
+ id: string;
7735
+ options: {
7736
+ value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
7737
+ label: TranslationConfig;
7738
+ }[];
7739
+ label: TranslationConfig;
7740
+ parent?: {
7741
+ $$field: string;
7742
+ } | undefined;
7743
+ validation?: {
7744
+ message: TranslationConfig;
7745
+ validator: import(".").JSONSchema;
7746
+ }[] | undefined;
7747
+ required?: boolean | undefined;
7748
+ conditionals?: ({
7749
+ type: "SHOW";
7750
+ conditional: import(".").JSONSchema;
7751
+ } | {
7752
+ type: "ENABLE";
7753
+ conditional: import(".").JSONSchema;
7754
+ } | {
7755
+ type: "DISPLAY_ON_REVIEW";
7756
+ conditional: import(".").JSONSchema;
7757
+ })[] | undefined;
7758
+ secured?: boolean | undefined;
7759
+ placeholder?: TranslationConfig | undefined;
7760
+ helperText?: TranslationConfig | undefined;
7761
+ hideLabel?: boolean | undefined;
7762
+ defaultValue?: "last7Days" | "last30Days" | "last90Days" | "last365Days" | undefined;
7763
+ }, {
7764
+ type: "SELECT_DATE_RANGE";
7765
+ id: string;
7766
+ options: {
7767
+ value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
7768
+ label: {
7769
+ id: string;
7770
+ description: string;
7771
+ defaultMessage: string;
7772
+ };
7773
+ }[];
7774
+ label: {
7775
+ id: string;
7776
+ description: string;
7777
+ defaultMessage: string;
7778
+ };
7779
+ parent?: {
7780
+ $$field: string;
7781
+ } | undefined;
7782
+ validation?: {
7783
+ message: {
7784
+ id: string;
7785
+ description: string;
7786
+ defaultMessage: string;
7787
+ };
7788
+ validator: import(".").JSONSchema;
7789
+ }[] | undefined;
7790
+ required?: boolean | undefined;
7791
+ conditionals?: ({
7792
+ type: "SHOW";
7793
+ conditional: import(".").JSONSchema;
7794
+ } | {
7795
+ type: "ENABLE";
7796
+ conditional: import(".").JSONSchema;
7797
+ } | {
7798
+ type: "DISPLAY_ON_REVIEW";
7799
+ conditional: import(".").JSONSchema;
7800
+ })[] | undefined;
7801
+ secured?: boolean | undefined;
7802
+ placeholder?: {
7803
+ id: string;
7804
+ description: string;
7805
+ defaultMessage: string;
7806
+ } | undefined;
7807
+ helperText?: {
7808
+ id: string;
7809
+ description: string;
7810
+ defaultMessage: string;
7811
+ } | undefined;
7812
+ hideLabel?: boolean | undefined;
7813
+ defaultValue?: "last7Days" | "last30Days" | "last90Days" | "last365Days" | undefined;
7814
+ }>, z.ZodObject<z.objectUtil.extendShape<{
7815
+ id: z.ZodString;
7816
+ parent: z.ZodOptional<z.ZodObject<{
7817
+ $$field: z.ZodString;
7818
+ }, "strip", z.ZodTypeAny, {
7819
+ $$field: string;
7820
+ }, {
7821
+ $$field: string;
7822
+ }>>;
7823
+ conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
7824
+ required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7825
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7215
7826
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
7216
7827
  id: string;
7217
7828
  description: string;
@@ -7293,6 +7904,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
7293
7904
  type: "DISPLAY_ON_REVIEW";
7294
7905
  conditional: import(".").JSONSchema;
7295
7906
  })[] | undefined;
7907
+ secured?: boolean | undefined;
7296
7908
  placeholder?: TranslationConfig | undefined;
7297
7909
  helperText?: TranslationConfig | undefined;
7298
7910
  hideLabel?: boolean | undefined;
@@ -7327,6 +7939,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
7327
7939
  type: "DISPLAY_ON_REVIEW";
7328
7940
  conditional: import(".").JSONSchema;
7329
7941
  })[] | undefined;
7942
+ secured?: boolean | undefined;
7330
7943
  placeholder?: {
7331
7944
  id: string;
7332
7945
  description: string;
@@ -7355,6 +7968,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
7355
7968
  }>>;
7356
7969
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
7357
7970
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7971
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7358
7972
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
7359
7973
  id: string;
7360
7974
  description: string;
@@ -7453,6 +8067,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
7453
8067
  type: "DISPLAY_ON_REVIEW";
7454
8068
  conditional: import(".").JSONSchema;
7455
8069
  })[] | undefined;
8070
+ secured?: boolean | undefined;
7456
8071
  placeholder?: TranslationConfig | undefined;
7457
8072
  helperText?: TranslationConfig | undefined;
7458
8073
  hideLabel?: boolean | undefined;
@@ -7500,6 +8115,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
7500
8115
  type: "DISPLAY_ON_REVIEW";
7501
8116
  conditional: import(".").JSONSchema;
7502
8117
  })[] | undefined;
8118
+ secured?: boolean | undefined;
7503
8119
  placeholder?: {
7504
8120
  id: string;
7505
8121
  description: string;
@@ -7528,6 +8144,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
7528
8144
  }>>;
7529
8145
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
7530
8146
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
8147
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7531
8148
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
7532
8149
  id: string;
7533
8150
  description: string;
@@ -7615,6 +8232,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
7615
8232
  type: "DISPLAY_ON_REVIEW";
7616
8233
  conditional: import(".").JSONSchema;
7617
8234
  })[] | undefined;
8235
+ secured?: boolean | undefined;
7618
8236
  placeholder?: TranslationConfig | undefined;
7619
8237
  helperText?: TranslationConfig | undefined;
7620
8238
  hideLabel?: boolean | undefined;
@@ -7654,6 +8272,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
7654
8272
  type: "DISPLAY_ON_REVIEW";
7655
8273
  conditional: import(".").JSONSchema;
7656
8274
  })[] | undefined;
8275
+ secured?: boolean | undefined;
7657
8276
  placeholder?: {
7658
8277
  id: string;
7659
8278
  description: string;
@@ -7682,6 +8301,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
7682
8301
  }>>;
7683
8302
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
7684
8303
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
8304
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7685
8305
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
7686
8306
  id: string;
7687
8307
  description: string;
@@ -7741,6 +8361,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
7741
8361
  type: "DISPLAY_ON_REVIEW";
7742
8362
  conditional: import(".").JSONSchema;
7743
8363
  })[] | undefined;
8364
+ secured?: boolean | undefined;
7744
8365
  placeholder?: TranslationConfig | undefined;
7745
8366
  helperText?: TranslationConfig | undefined;
7746
8367
  hideLabel?: boolean | undefined;
@@ -7775,6 +8396,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
7775
8396
  type: "DISPLAY_ON_REVIEW";
7776
8397
  conditional: import(".").JSONSchema;
7777
8398
  })[] | undefined;
8399
+ secured?: boolean | undefined;
7778
8400
  placeholder?: {
7779
8401
  id: string;
7780
8402
  description: string;
@@ -7798,6 +8420,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
7798
8420
  }>>;
7799
8421
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
7800
8422
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
8423
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7801
8424
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
7802
8425
  id: string;
7803
8426
  description: string;
@@ -7879,6 +8502,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
7879
8502
  type: "DISPLAY_ON_REVIEW";
7880
8503
  conditional: import(".").JSONSchema;
7881
8504
  })[] | undefined;
8505
+ secured?: boolean | undefined;
7882
8506
  placeholder?: TranslationConfig | undefined;
7883
8507
  helperText?: TranslationConfig | undefined;
7884
8508
  hideLabel?: boolean | undefined;
@@ -7921,6 +8545,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
7921
8545
  type: "DISPLAY_ON_REVIEW";
7922
8546
  conditional: import(".").JSONSchema;
7923
8547
  })[] | undefined;
8548
+ secured?: boolean | undefined;
7924
8549
  placeholder?: {
7925
8550
  id: string;
7926
8551
  description: string;
@@ -7944,6 +8569,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
7944
8569
  }>>;
7945
8570
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
7946
8571
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
8572
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7947
8573
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
7948
8574
  id: string;
7949
8575
  description: string;
@@ -8002,10 +8628,14 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
8002
8628
  description: string;
8003
8629
  defaultMessage: string;
8004
8630
  }>>;
8631
+ includeMiddlename: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
8632
+ searchMode: z.ZodOptional<z.ZodBoolean>;
8005
8633
  }, "strip", z.ZodTypeAny, {
8006
8634
  maxLength?: number | undefined;
8007
8635
  prefix?: TranslationConfig | undefined;
8008
8636
  postfix?: TranslationConfig | undefined;
8637
+ includeMiddlename?: boolean | undefined;
8638
+ searchMode?: boolean | undefined;
8009
8639
  }, {
8010
8640
  maxLength?: number | undefined;
8011
8641
  prefix?: {
@@ -8018,6 +8648,8 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
8018
8648
  description: string;
8019
8649
  defaultMessage: string;
8020
8650
  } | undefined;
8651
+ includeMiddlename?: boolean | undefined;
8652
+ searchMode?: boolean | undefined;
8021
8653
  }>>;
8022
8654
  }>, "strip", z.ZodTypeAny, {
8023
8655
  type: "NAME";
@@ -8041,6 +8673,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
8041
8673
  type: "DISPLAY_ON_REVIEW";
8042
8674
  conditional: import(".").JSONSchema;
8043
8675
  })[] | undefined;
8676
+ secured?: boolean | undefined;
8044
8677
  placeholder?: TranslationConfig | undefined;
8045
8678
  helperText?: TranslationConfig | undefined;
8046
8679
  hideLabel?: boolean | undefined;
@@ -8052,6 +8685,8 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
8052
8685
  maxLength?: number | undefined;
8053
8686
  prefix?: TranslationConfig | undefined;
8054
8687
  postfix?: TranslationConfig | undefined;
8688
+ includeMiddlename?: boolean | undefined;
8689
+ searchMode?: boolean | undefined;
8055
8690
  } | undefined;
8056
8691
  }, {
8057
8692
  type: "NAME";
@@ -8083,6 +8718,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
8083
8718
  type: "DISPLAY_ON_REVIEW";
8084
8719
  conditional: import(".").JSONSchema;
8085
8720
  })[] | undefined;
8721
+ secured?: boolean | undefined;
8086
8722
  placeholder?: {
8087
8723
  id: string;
8088
8724
  description: string;
@@ -8110,6 +8746,8 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
8110
8746
  description: string;
8111
8747
  defaultMessage: string;
8112
8748
  } | undefined;
8749
+ includeMiddlename?: boolean | undefined;
8750
+ searchMode?: boolean | undefined;
8113
8751
  } | undefined;
8114
8752
  }>, z.ZodObject<z.objectUtil.extendShape<{
8115
8753
  id: z.ZodString;
@@ -8122,6 +8760,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
8122
8760
  }>>;
8123
8761
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
8124
8762
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
8763
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
8125
8764
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
8126
8765
  id: string;
8127
8766
  description: string;
@@ -8181,6 +8820,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
8181
8820
  type: "DISPLAY_ON_REVIEW";
8182
8821
  conditional: import(".").JSONSchema;
8183
8822
  })[] | undefined;
8823
+ secured?: boolean | undefined;
8184
8824
  placeholder?: TranslationConfig | undefined;
8185
8825
  helperText?: TranslationConfig | undefined;
8186
8826
  hideLabel?: boolean | undefined;
@@ -8215,6 +8855,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
8215
8855
  type: "DISPLAY_ON_REVIEW";
8216
8856
  conditional: import(".").JSONSchema;
8217
8857
  })[] | undefined;
8858
+ secured?: boolean | undefined;
8218
8859
  placeholder?: {
8219
8860
  id: string;
8220
8861
  description: string;
@@ -8238,6 +8879,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
8238
8879
  }>>;
8239
8880
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
8240
8881
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
8882
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
8241
8883
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
8242
8884
  id: string;
8243
8885
  description: string;
@@ -8297,6 +8939,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
8297
8939
  type: "DISPLAY_ON_REVIEW";
8298
8940
  conditional: import(".").JSONSchema;
8299
8941
  })[] | undefined;
8942
+ secured?: boolean | undefined;
8300
8943
  placeholder?: TranslationConfig | undefined;
8301
8944
  helperText?: TranslationConfig | undefined;
8302
8945
  hideLabel?: boolean | undefined;
@@ -8331,6 +8974,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
8331
8974
  type: "DISPLAY_ON_REVIEW";
8332
8975
  conditional: import(".").JSONSchema;
8333
8976
  })[] | undefined;
8977
+ secured?: boolean | undefined;
8334
8978
  placeholder?: {
8335
8979
  id: string;
8336
8980
  description: string;
@@ -8354,6 +8998,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
8354
8998
  }>>;
8355
8999
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
8356
9000
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
9001
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
8357
9002
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
8358
9003
  id: string;
8359
9004
  description: string;
@@ -8413,6 +9058,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
8413
9058
  type: "DISPLAY_ON_REVIEW";
8414
9059
  conditional: import(".").JSONSchema;
8415
9060
  })[] | undefined;
9061
+ secured?: boolean | undefined;
8416
9062
  placeholder?: TranslationConfig | undefined;
8417
9063
  helperText?: TranslationConfig | undefined;
8418
9064
  hideLabel?: boolean | undefined;
@@ -8447,6 +9093,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
8447
9093
  type: "DISPLAY_ON_REVIEW";
8448
9094
  conditional: import(".").JSONSchema;
8449
9095
  })[] | undefined;
9096
+ secured?: boolean | undefined;
8450
9097
  placeholder?: {
8451
9098
  id: string;
8452
9099
  description: string;
@@ -8470,6 +9117,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
8470
9117
  }>>;
8471
9118
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
8472
9119
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
9120
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
8473
9121
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
8474
9122
  id: string;
8475
9123
  description: string;
@@ -8507,16 +9155,16 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
8507
9155
  }, {
8508
9156
  type: z.ZodLiteral<"FILE">;
8509
9157
  defaultValue: z.ZodOptional<z.ZodObject<{
8510
- filename: z.ZodString;
9158
+ path: z.ZodEffects<z.ZodString, string, string>;
8511
9159
  originalFilename: z.ZodString;
8512
9160
  type: z.ZodString;
8513
9161
  }, "strip", z.ZodTypeAny, {
8514
9162
  type: string;
8515
- filename: string;
9163
+ path: string;
8516
9164
  originalFilename: string;
8517
9165
  }, {
8518
9166
  type: string;
8519
- filename: string;
9167
+ path: string;
8520
9168
  originalFilename: string;
8521
9169
  }>>;
8522
9170
  configuration: z.ZodDefault<z.ZodObject<{
@@ -8583,12 +9231,13 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
8583
9231
  type: "DISPLAY_ON_REVIEW";
8584
9232
  conditional: import(".").JSONSchema;
8585
9233
  })[] | undefined;
9234
+ secured?: boolean | undefined;
8586
9235
  placeholder?: TranslationConfig | undefined;
8587
9236
  helperText?: TranslationConfig | undefined;
8588
9237
  hideLabel?: boolean | undefined;
8589
9238
  defaultValue?: {
8590
9239
  type: string;
8591
- filename: string;
9240
+ path: string;
8592
9241
  originalFilename: string;
8593
9242
  } | undefined;
8594
9243
  }, {
@@ -8621,6 +9270,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
8621
9270
  type: "DISPLAY_ON_REVIEW";
8622
9271
  conditional: import(".").JSONSchema;
8623
9272
  })[] | undefined;
9273
+ secured?: boolean | undefined;
8624
9274
  placeholder?: {
8625
9275
  id: string;
8626
9276
  description: string;
@@ -8634,7 +9284,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
8634
9284
  hideLabel?: boolean | undefined;
8635
9285
  defaultValue?: {
8636
9286
  type: string;
8637
- filename: string;
9287
+ path: string;
8638
9288
  originalFilename: string;
8639
9289
  } | undefined;
8640
9290
  configuration?: {
@@ -8660,6 +9310,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
8660
9310
  }>>;
8661
9311
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
8662
9312
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
9313
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
8663
9314
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
8664
9315
  id: string;
8665
9316
  description: string;
@@ -8719,6 +9370,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
8719
9370
  type: "DISPLAY_ON_REVIEW";
8720
9371
  conditional: import(".").JSONSchema;
8721
9372
  })[] | undefined;
9373
+ secured?: boolean | undefined;
8722
9374
  placeholder?: TranslationConfig | undefined;
8723
9375
  helperText?: TranslationConfig | undefined;
8724
9376
  hideLabel?: boolean | undefined;
@@ -8753,6 +9405,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
8753
9405
  type: "DISPLAY_ON_REVIEW";
8754
9406
  conditional: import(".").JSONSchema;
8755
9407
  })[] | undefined;
9408
+ secured?: boolean | undefined;
8756
9409
  placeholder?: {
8757
9410
  id: string;
8758
9411
  description: string;
@@ -8776,6 +9429,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
8776
9429
  }>>;
8777
9430
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
8778
9431
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
9432
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
8779
9433
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
8780
9434
  id: string;
8781
9435
  description: string;
@@ -8861,6 +9515,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
8861
9515
  type: "DISPLAY_ON_REVIEW";
8862
9516
  conditional: import(".").JSONSchema;
8863
9517
  })[] | undefined;
9518
+ secured?: boolean | undefined;
8864
9519
  placeholder?: TranslationConfig | undefined;
8865
9520
  helperText?: TranslationConfig | undefined;
8866
9521
  hideLabel?: boolean | undefined;
@@ -8901,6 +9556,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
8901
9556
  type: "DISPLAY_ON_REVIEW";
8902
9557
  conditional: import(".").JSONSchema;
8903
9558
  })[] | undefined;
9559
+ secured?: boolean | undefined;
8904
9560
  placeholder?: {
8905
9561
  id: string;
8906
9562
  description: string;
@@ -8924,6 +9580,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
8924
9580
  }>>;
8925
9581
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
8926
9582
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
9583
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
8927
9584
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
8928
9585
  id: string;
8929
9586
  description: string;
@@ -8982,6 +9639,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
8982
9639
  type: "DISPLAY_ON_REVIEW";
8983
9640
  conditional: import(".").JSONSchema;
8984
9641
  })[] | undefined;
9642
+ secured?: boolean | undefined;
8985
9643
  placeholder?: TranslationConfig | undefined;
8986
9644
  helperText?: TranslationConfig | undefined;
8987
9645
  hideLabel?: boolean | undefined;
@@ -9015,6 +9673,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
9015
9673
  type: "DISPLAY_ON_REVIEW";
9016
9674
  conditional: import(".").JSONSchema;
9017
9675
  })[] | undefined;
9676
+ secured?: boolean | undefined;
9018
9677
  placeholder?: {
9019
9678
  id: string;
9020
9679
  description: string;
@@ -9037,6 +9696,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
9037
9696
  }>>;
9038
9697
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
9039
9698
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
9699
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
9040
9700
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
9041
9701
  id: string;
9042
9702
  description: string;
@@ -9096,6 +9756,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
9096
9756
  type: "DISPLAY_ON_REVIEW";
9097
9757
  conditional: import(".").JSONSchema;
9098
9758
  })[] | undefined;
9759
+ secured?: boolean | undefined;
9099
9760
  placeholder?: TranslationConfig | undefined;
9100
9761
  helperText?: TranslationConfig | undefined;
9101
9762
  hideLabel?: boolean | undefined;
@@ -9130,6 +9791,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
9130
9791
  type: "DISPLAY_ON_REVIEW";
9131
9792
  conditional: import(".").JSONSchema;
9132
9793
  })[] | undefined;
9794
+ secured?: boolean | undefined;
9133
9795
  placeholder?: {
9134
9796
  id: string;
9135
9797
  description: string;
@@ -9153,6 +9815,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
9153
9815
  }>>;
9154
9816
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
9155
9817
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
9818
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
9156
9819
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
9157
9820
  id: string;
9158
9821
  description: string;
@@ -9212,6 +9875,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
9212
9875
  type: "DISPLAY_ON_REVIEW";
9213
9876
  conditional: import(".").JSONSchema;
9214
9877
  })[] | undefined;
9878
+ secured?: boolean | undefined;
9215
9879
  placeholder?: TranslationConfig | undefined;
9216
9880
  helperText?: TranslationConfig | undefined;
9217
9881
  hideLabel?: boolean | undefined;
@@ -9246,6 +9910,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
9246
9910
  type: "DISPLAY_ON_REVIEW";
9247
9911
  conditional: import(".").JSONSchema;
9248
9912
  })[] | undefined;
9913
+ secured?: boolean | undefined;
9249
9914
  placeholder?: {
9250
9915
  id: string;
9251
9916
  description: string;
@@ -9269,6 +9934,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
9269
9934
  }>>;
9270
9935
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
9271
9936
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
9937
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
9272
9938
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
9273
9939
  id: string;
9274
9940
  description: string;
@@ -9328,6 +9994,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
9328
9994
  type: "DISPLAY_ON_REVIEW";
9329
9995
  conditional: import(".").JSONSchema;
9330
9996
  })[] | undefined;
9997
+ secured?: boolean | undefined;
9331
9998
  placeholder?: TranslationConfig | undefined;
9332
9999
  helperText?: TranslationConfig | undefined;
9333
10000
  hideLabel?: boolean | undefined;
@@ -9362,6 +10029,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
9362
10029
  type: "DISPLAY_ON_REVIEW";
9363
10030
  conditional: import(".").JSONSchema;
9364
10031
  })[] | undefined;
10032
+ secured?: boolean | undefined;
9365
10033
  placeholder?: {
9366
10034
  id: string;
9367
10035
  description: string;
@@ -9385,6 +10053,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
9385
10053
  }>>;
9386
10054
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
9387
10055
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
10056
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
9388
10057
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
9389
10058
  id: string;
9390
10059
  description: string;
@@ -9464,6 +10133,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
9464
10133
  type: "DISPLAY_ON_REVIEW";
9465
10134
  conditional: import(".").JSONSchema;
9466
10135
  })[] | undefined;
10136
+ secured?: boolean | undefined;
9467
10137
  placeholder?: TranslationConfig | undefined;
9468
10138
  helperText?: TranslationConfig | undefined;
9469
10139
  hideLabel?: boolean | undefined;
@@ -9503,6 +10173,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
9503
10173
  type: "DISPLAY_ON_REVIEW";
9504
10174
  conditional: import(".").JSONSchema;
9505
10175
  })[] | undefined;
10176
+ secured?: boolean | undefined;
9506
10177
  placeholder?: {
9507
10178
  id: string;
9508
10179
  description: string;
@@ -9530,6 +10201,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
9530
10201
  }>>;
9531
10202
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
9532
10203
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
10204
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
9533
10205
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
9534
10206
  id: string;
9535
10207
  description: string;
@@ -9596,6 +10268,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
9596
10268
  type: "DISPLAY_ON_REVIEW";
9597
10269
  conditional: import(".").JSONSchema;
9598
10270
  })[] | undefined;
10271
+ secured?: boolean | undefined;
9599
10272
  placeholder?: TranslationConfig | undefined;
9600
10273
  helperText?: TranslationConfig | undefined;
9601
10274
  hideLabel?: boolean | undefined;
@@ -9633,6 +10306,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
9633
10306
  type: "DISPLAY_ON_REVIEW";
9634
10307
  conditional: import(".").JSONSchema;
9635
10308
  })[] | undefined;
10309
+ secured?: boolean | undefined;
9636
10310
  placeholder?: {
9637
10311
  id: string;
9638
10312
  description: string;
@@ -9659,6 +10333,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
9659
10333
  }>>;
9660
10334
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
9661
10335
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
10336
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
9662
10337
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
9663
10338
  id: string;
9664
10339
  description: string;
@@ -9714,19 +10389,19 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
9714
10389
  };
9715
10390
  }>, "many">;
9716
10391
  defaultValue: z.ZodOptional<z.ZodArray<z.ZodObject<{
9717
- filename: z.ZodString;
10392
+ path: z.ZodEffects<z.ZodString, string, string>;
9718
10393
  originalFilename: z.ZodString;
9719
10394
  type: z.ZodString;
9720
10395
  option: z.ZodString;
9721
10396
  }, "strip", z.ZodTypeAny, {
9722
10397
  type: string;
9723
10398
  option: string;
9724
- filename: string;
10399
+ path: string;
9725
10400
  originalFilename: string;
9726
10401
  }, {
9727
10402
  type: string;
9728
10403
  option: string;
9729
- filename: string;
10404
+ path: string;
9730
10405
  originalFilename: string;
9731
10406
  }>, "many">>;
9732
10407
  configuration: z.ZodDefault<z.ZodObject<{
@@ -9769,13 +10444,14 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
9769
10444
  type: "DISPLAY_ON_REVIEW";
9770
10445
  conditional: import(".").JSONSchema;
9771
10446
  })[] | undefined;
10447
+ secured?: boolean | undefined;
9772
10448
  placeholder?: TranslationConfig | undefined;
9773
10449
  helperText?: TranslationConfig | undefined;
9774
10450
  hideLabel?: boolean | undefined;
9775
10451
  defaultValue?: {
9776
10452
  type: string;
9777
10453
  option: string;
9778
- filename: string;
10454
+ path: string;
9779
10455
  originalFilename: string;
9780
10456
  }[] | undefined;
9781
10457
  }, {
@@ -9816,6 +10492,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
9816
10492
  type: "DISPLAY_ON_REVIEW";
9817
10493
  conditional: import(".").JSONSchema;
9818
10494
  })[] | undefined;
10495
+ secured?: boolean | undefined;
9819
10496
  placeholder?: {
9820
10497
  id: string;
9821
10498
  description: string;
@@ -9830,7 +10507,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
9830
10507
  defaultValue?: {
9831
10508
  type: string;
9832
10509
  option: string;
9833
- filename: string;
10510
+ path: string;
9834
10511
  originalFilename: string;
9835
10512
  }[] | undefined;
9836
10513
  configuration?: {
@@ -9848,6 +10525,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
9848
10525
  }>>;
9849
10526
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
9850
10527
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
10528
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
9851
10529
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
9852
10530
  id: string;
9853
10531
  description: string;
@@ -9982,6 +10660,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
9982
10660
  type: "DISPLAY_ON_REVIEW";
9983
10661
  conditional: import(".").JSONSchema;
9984
10662
  })[] | undefined;
10663
+ secured?: boolean | undefined;
9985
10664
  placeholder?: TranslationConfig | undefined;
9986
10665
  helperText?: TranslationConfig | undefined;
9987
10666
  hideLabel?: boolean | undefined;
@@ -10036,6 +10715,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
10036
10715
  type: "DISPLAY_ON_REVIEW";
10037
10716
  conditional: import(".").JSONSchema;
10038
10717
  })[] | undefined;
10718
+ secured?: boolean | undefined;
10039
10719
  placeholder?: {
10040
10720
  id: string;
10041
10721
  description: string;
@@ -10203,6 +10883,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
10203
10883
  type: "DISPLAY_ON_REVIEW";
10204
10884
  conditional: import(".").JSONSchema;
10205
10885
  })[] | undefined;
10886
+ secured?: boolean | undefined;
10206
10887
  placeholder?: TranslationConfig | undefined;
10207
10888
  helperText?: TranslationConfig | undefined;
10208
10889
  hideLabel?: boolean | undefined;
@@ -10228,6 +10909,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
10228
10909
  type: "DISPLAY_ON_REVIEW";
10229
10910
  conditional: import(".").JSONSchema;
10230
10911
  })[] | undefined;
10912
+ secured?: boolean | undefined;
10231
10913
  placeholder?: TranslationConfig | undefined;
10232
10914
  helperText?: TranslationConfig | undefined;
10233
10915
  hideLabel?: boolean | undefined;
@@ -10260,6 +10942,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
10260
10942
  type: "DISPLAY_ON_REVIEW";
10261
10943
  conditional: import(".").JSONSchema;
10262
10944
  })[] | undefined;
10945
+ secured?: boolean | undefined;
10263
10946
  placeholder?: TranslationConfig | undefined;
10264
10947
  helperText?: TranslationConfig | undefined;
10265
10948
  hideLabel?: boolean | undefined;
@@ -10292,6 +10975,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
10292
10975
  type: "DISPLAY_ON_REVIEW";
10293
10976
  conditional: import(".").JSONSchema;
10294
10977
  })[] | undefined;
10978
+ secured?: boolean | undefined;
10295
10979
  placeholder?: TranslationConfig | undefined;
10296
10980
  helperText?: TranslationConfig | undefined;
10297
10981
  hideLabel?: boolean | undefined;
@@ -10330,6 +11014,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
10330
11014
  type: "DISPLAY_ON_REVIEW";
10331
11015
  conditional: import(".").JSONSchema;
10332
11016
  })[] | undefined;
11017
+ secured?: boolean | undefined;
10333
11018
  placeholder?: TranslationConfig | undefined;
10334
11019
  helperText?: TranslationConfig | undefined;
10335
11020
  hideLabel?: boolean | undefined;
@@ -10356,6 +11041,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
10356
11041
  type: "DISPLAY_ON_REVIEW";
10357
11042
  conditional: import(".").JSONSchema;
10358
11043
  })[] | undefined;
11044
+ secured?: boolean | undefined;
10359
11045
  placeholder?: TranslationConfig | undefined;
10360
11046
  helperText?: TranslationConfig | undefined;
10361
11047
  hideLabel?: boolean | undefined;
@@ -10385,6 +11071,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
10385
11071
  type: "DISPLAY_ON_REVIEW";
10386
11072
  conditional: import(".").JSONSchema;
10387
11073
  })[] | undefined;
11074
+ secured?: boolean | undefined;
10388
11075
  placeholder?: TranslationConfig | undefined;
10389
11076
  helperText?: TranslationConfig | undefined;
10390
11077
  hideLabel?: boolean | undefined;
@@ -10414,10 +11101,14 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
10414
11101
  type: "DISPLAY_ON_REVIEW";
10415
11102
  conditional: import(".").JSONSchema;
10416
11103
  })[] | undefined;
11104
+ secured?: boolean | undefined;
10417
11105
  placeholder?: TranslationConfig | undefined;
10418
11106
  helperText?: TranslationConfig | undefined;
10419
11107
  hideLabel?: boolean | undefined;
10420
- defaultValue?: string | [string, string] | undefined;
11108
+ defaultValue?: string | {
11109
+ start: string;
11110
+ end: string;
11111
+ } | undefined;
10421
11112
  configuration?: {
10422
11113
  notice?: TranslationConfig | undefined;
10423
11114
  } | undefined;
@@ -10448,6 +11139,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
10448
11139
  type: "DISPLAY_ON_REVIEW";
10449
11140
  conditional: import(".").JSONSchema;
10450
11141
  })[] | undefined;
11142
+ secured?: boolean | undefined;
10451
11143
  placeholder?: TranslationConfig | undefined;
10452
11144
  helperText?: TranslationConfig | undefined;
10453
11145
  hideLabel?: boolean | undefined;
@@ -10474,6 +11166,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
10474
11166
  type: "DISPLAY_ON_REVIEW";
10475
11167
  conditional: import(".").JSONSchema;
10476
11168
  })[] | undefined;
11169
+ secured?: boolean | undefined;
10477
11170
  placeholder?: TranslationConfig | undefined;
10478
11171
  helperText?: TranslationConfig | undefined;
10479
11172
  hideLabel?: boolean | undefined;
@@ -10508,12 +11201,13 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
10508
11201
  type: "DISPLAY_ON_REVIEW";
10509
11202
  conditional: import(".").JSONSchema;
10510
11203
  })[] | undefined;
11204
+ secured?: boolean | undefined;
10511
11205
  placeholder?: TranslationConfig | undefined;
10512
11206
  helperText?: TranslationConfig | undefined;
10513
11207
  hideLabel?: boolean | undefined;
10514
11208
  defaultValue?: {
10515
11209
  type: string;
10516
- filename: string;
11210
+ path: string;
10517
11211
  originalFilename: string;
10518
11212
  } | undefined;
10519
11213
  } | {
@@ -10542,6 +11236,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
10542
11236
  type: "DISPLAY_ON_REVIEW";
10543
11237
  conditional: import(".").JSONSchema;
10544
11238
  })[] | undefined;
11239
+ secured?: boolean | undefined;
10545
11240
  placeholder?: TranslationConfig | undefined;
10546
11241
  helperText?: TranslationConfig | undefined;
10547
11242
  hideLabel?: boolean | undefined;
@@ -10579,6 +11274,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
10579
11274
  type: "DISPLAY_ON_REVIEW";
10580
11275
  conditional: import(".").JSONSchema;
10581
11276
  })[] | undefined;
11277
+ secured?: boolean | undefined;
10582
11278
  placeholder?: TranslationConfig | undefined;
10583
11279
  helperText?: TranslationConfig | undefined;
10584
11280
  hideLabel?: boolean | undefined;
@@ -10609,10 +11305,42 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
10609
11305
  type: "DISPLAY_ON_REVIEW";
10610
11306
  conditional: import(".").JSONSchema;
10611
11307
  })[] | undefined;
11308
+ secured?: boolean | undefined;
10612
11309
  placeholder?: TranslationConfig | undefined;
10613
11310
  helperText?: TranslationConfig | undefined;
10614
11311
  hideLabel?: boolean | undefined;
10615
11312
  defaultValue?: string | undefined;
11313
+ } | {
11314
+ type: "SELECT_DATE_RANGE";
11315
+ id: string;
11316
+ options: {
11317
+ value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
11318
+ label: TranslationConfig;
11319
+ }[];
11320
+ label: TranslationConfig;
11321
+ parent?: {
11322
+ $$field: string;
11323
+ } | undefined;
11324
+ validation?: {
11325
+ message: TranslationConfig;
11326
+ validator: import(".").JSONSchema;
11327
+ }[] | undefined;
11328
+ required?: boolean | undefined;
11329
+ conditionals?: ({
11330
+ type: "SHOW";
11331
+ conditional: import(".").JSONSchema;
11332
+ } | {
11333
+ type: "ENABLE";
11334
+ conditional: import(".").JSONSchema;
11335
+ } | {
11336
+ type: "DISPLAY_ON_REVIEW";
11337
+ conditional: import(".").JSONSchema;
11338
+ })[] | undefined;
11339
+ secured?: boolean | undefined;
11340
+ placeholder?: TranslationConfig | undefined;
11341
+ helperText?: TranslationConfig | undefined;
11342
+ hideLabel?: boolean | undefined;
11343
+ defaultValue?: "last7Days" | "last30Days" | "last90Days" | "last365Days" | undefined;
10616
11344
  } | {
10617
11345
  type: "NAME";
10618
11346
  id: string;
@@ -10635,6 +11363,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
10635
11363
  type: "DISPLAY_ON_REVIEW";
10636
11364
  conditional: import(".").JSONSchema;
10637
11365
  })[] | undefined;
11366
+ secured?: boolean | undefined;
10638
11367
  placeholder?: TranslationConfig | undefined;
10639
11368
  helperText?: TranslationConfig | undefined;
10640
11369
  hideLabel?: boolean | undefined;
@@ -10646,6 +11375,8 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
10646
11375
  maxLength?: number | undefined;
10647
11376
  prefix?: TranslationConfig | undefined;
10648
11377
  postfix?: TranslationConfig | undefined;
11378
+ includeMiddlename?: boolean | undefined;
11379
+ searchMode?: boolean | undefined;
10649
11380
  } | undefined;
10650
11381
  } | {
10651
11382
  type: "PHONE";
@@ -10669,6 +11400,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
10669
11400
  type: "DISPLAY_ON_REVIEW";
10670
11401
  conditional: import(".").JSONSchema;
10671
11402
  })[] | undefined;
11403
+ secured?: boolean | undefined;
10672
11404
  placeholder?: TranslationConfig | undefined;
10673
11405
  helperText?: TranslationConfig | undefined;
10674
11406
  hideLabel?: boolean | undefined;
@@ -10695,6 +11427,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
10695
11427
  type: "DISPLAY_ON_REVIEW";
10696
11428
  conditional: import(".").JSONSchema;
10697
11429
  })[] | undefined;
11430
+ secured?: boolean | undefined;
10698
11431
  placeholder?: TranslationConfig | undefined;
10699
11432
  helperText?: TranslationConfig | undefined;
10700
11433
  hideLabel?: boolean | undefined;
@@ -10721,6 +11454,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
10721
11454
  type: "DISPLAY_ON_REVIEW";
10722
11455
  conditional: import(".").JSONSchema;
10723
11456
  })[] | undefined;
11457
+ secured?: boolean | undefined;
10724
11458
  placeholder?: TranslationConfig | undefined;
10725
11459
  helperText?: TranslationConfig | undefined;
10726
11460
  hideLabel?: boolean | undefined;
@@ -10747,6 +11481,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
10747
11481
  type: "DISPLAY_ON_REVIEW";
10748
11482
  conditional: import(".").JSONSchema;
10749
11483
  })[] | undefined;
11484
+ secured?: boolean | undefined;
10750
11485
  placeholder?: TranslationConfig | undefined;
10751
11486
  helperText?: TranslationConfig | undefined;
10752
11487
  hideLabel?: boolean | undefined;
@@ -10779,6 +11514,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
10779
11514
  type: "DISPLAY_ON_REVIEW";
10780
11515
  conditional: import(".").JSONSchema;
10781
11516
  })[] | undefined;
11517
+ secured?: boolean | undefined;
10782
11518
  placeholder?: TranslationConfig | undefined;
10783
11519
  helperText?: TranslationConfig | undefined;
10784
11520
  hideLabel?: boolean | undefined;
@@ -10805,6 +11541,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
10805
11541
  type: "DISPLAY_ON_REVIEW";
10806
11542
  conditional: import(".").JSONSchema;
10807
11543
  })[] | undefined;
11544
+ secured?: boolean | undefined;
10808
11545
  placeholder?: TranslationConfig | undefined;
10809
11546
  helperText?: TranslationConfig | undefined;
10810
11547
  hideLabel?: boolean | undefined;
@@ -10839,13 +11576,14 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
10839
11576
  type: "DISPLAY_ON_REVIEW";
10840
11577
  conditional: import(".").JSONSchema;
10841
11578
  })[] | undefined;
11579
+ secured?: boolean | undefined;
10842
11580
  placeholder?: TranslationConfig | undefined;
10843
11581
  helperText?: TranslationConfig | undefined;
10844
11582
  hideLabel?: boolean | undefined;
10845
11583
  defaultValue?: {
10846
11584
  type: string;
10847
11585
  option: string;
10848
- filename: string;
11586
+ path: string;
10849
11587
  originalFilename: string;
10850
11588
  }[] | undefined;
10851
11589
  } | {
@@ -10870,6 +11608,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
10870
11608
  type: "DISPLAY_ON_REVIEW";
10871
11609
  conditional: import(".").JSONSchema;
10872
11610
  })[] | undefined;
11611
+ secured?: boolean | undefined;
10873
11612
  placeholder?: TranslationConfig | undefined;
10874
11613
  helperText?: TranslationConfig | undefined;
10875
11614
  hideLabel?: boolean | undefined;
@@ -10896,6 +11635,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
10896
11635
  type: "DISPLAY_ON_REVIEW";
10897
11636
  conditional: import(".").JSONSchema;
10898
11637
  })[] | undefined;
11638
+ secured?: boolean | undefined;
10899
11639
  placeholder?: TranslationConfig | undefined;
10900
11640
  helperText?: TranslationConfig | undefined;
10901
11641
  hideLabel?: boolean | undefined;
@@ -10922,6 +11662,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
10922
11662
  type: "DISPLAY_ON_REVIEW";
10923
11663
  conditional: import(".").JSONSchema;
10924
11664
  })[] | undefined;
11665
+ secured?: boolean | undefined;
10925
11666
  placeholder?: TranslationConfig | undefined;
10926
11667
  helperText?: TranslationConfig | undefined;
10927
11668
  hideLabel?: boolean | undefined;
@@ -10954,6 +11695,9 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
10954
11695
  addressLine3?: string | undefined;
10955
11696
  postcodeOrZip?: string | undefined;
10956
11697
  } | undefined;
11698
+ configuration?: {
11699
+ searchMode?: boolean | undefined;
11700
+ } | undefined;
10957
11701
  } | {
10958
11702
  type: "DATA";
10959
11703
  id: string;
@@ -10985,6 +11729,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
10985
11729
  type: "DISPLAY_ON_REVIEW";
10986
11730
  conditional: import(".").JSONSchema;
10987
11731
  })[] | undefined;
11732
+ secured?: boolean | undefined;
10988
11733
  placeholder?: TranslationConfig | undefined;
10989
11734
  helperText?: TranslationConfig | undefined;
10990
11735
  hideLabel?: boolean | undefined;
@@ -11056,6 +11801,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
11056
11801
  type: "DISPLAY_ON_REVIEW";
11057
11802
  conditional: import(".").JSONSchema;
11058
11803
  })[] | undefined;
11804
+ secured?: boolean | undefined;
11059
11805
  placeholder?: {
11060
11806
  id: string;
11061
11807
  description: string;
@@ -11097,6 +11843,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
11097
11843
  type: "DISPLAY_ON_REVIEW";
11098
11844
  conditional: import(".").JSONSchema;
11099
11845
  })[] | undefined;
11846
+ secured?: boolean | undefined;
11100
11847
  placeholder?: {
11101
11848
  id: string;
11102
11849
  description: string;
@@ -11153,6 +11900,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
11153
11900
  type: "DISPLAY_ON_REVIEW";
11154
11901
  conditional: import(".").JSONSchema;
11155
11902
  })[] | undefined;
11903
+ secured?: boolean | undefined;
11156
11904
  placeholder?: {
11157
11905
  id: string;
11158
11906
  description: string;
@@ -11209,6 +11957,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
11209
11957
  type: "DISPLAY_ON_REVIEW";
11210
11958
  conditional: import(".").JSONSchema;
11211
11959
  })[] | undefined;
11960
+ secured?: boolean | undefined;
11212
11961
  placeholder?: {
11213
11962
  id: string;
11214
11963
  description: string;
@@ -11271,6 +12020,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
11271
12020
  type: "DISPLAY_ON_REVIEW";
11272
12021
  conditional: import(".").JSONSchema;
11273
12022
  })[] | undefined;
12023
+ secured?: boolean | undefined;
11274
12024
  placeholder?: {
11275
12025
  id: string;
11276
12026
  description: string;
@@ -11317,6 +12067,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
11317
12067
  type: "DISPLAY_ON_REVIEW";
11318
12068
  conditional: import(".").JSONSchema;
11319
12069
  })[] | undefined;
12070
+ secured?: boolean | undefined;
11320
12071
  placeholder?: {
11321
12072
  id: string;
11322
12073
  description: string;
@@ -11362,6 +12113,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
11362
12113
  type: "DISPLAY_ON_REVIEW";
11363
12114
  conditional: import(".").JSONSchema;
11364
12115
  })[] | undefined;
12116
+ secured?: boolean | undefined;
11365
12117
  placeholder?: {
11366
12118
  id: string;
11367
12119
  description: string;
@@ -11411,6 +12163,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
11411
12163
  type: "DISPLAY_ON_REVIEW";
11412
12164
  conditional: import(".").JSONSchema;
11413
12165
  })[] | undefined;
12166
+ secured?: boolean | undefined;
11414
12167
  placeholder?: {
11415
12168
  id: string;
11416
12169
  description: string;
@@ -11422,7 +12175,10 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
11422
12175
  defaultMessage: string;
11423
12176
  } | undefined;
11424
12177
  hideLabel?: boolean | undefined;
11425
- defaultValue?: string | [string, string] | undefined;
12178
+ defaultValue?: string | {
12179
+ start: string;
12180
+ end: string;
12181
+ } | undefined;
11426
12182
  configuration?: {
11427
12183
  notice?: {
11428
12184
  id: string;
@@ -11460,6 +12216,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
11460
12216
  type: "DISPLAY_ON_REVIEW";
11461
12217
  conditional: import(".").JSONSchema;
11462
12218
  })[] | undefined;
12219
+ secured?: boolean | undefined;
11463
12220
  placeholder?: {
11464
12221
  id: string;
11465
12222
  description: string;
@@ -11507,6 +12264,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
11507
12264
  type: "DISPLAY_ON_REVIEW";
11508
12265
  conditional: import(".").JSONSchema;
11509
12266
  })[] | undefined;
12267
+ secured?: boolean | undefined;
11510
12268
  placeholder?: {
11511
12269
  id: string;
11512
12270
  description: string;
@@ -11549,6 +12307,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
11549
12307
  type: "DISPLAY_ON_REVIEW";
11550
12308
  conditional: import(".").JSONSchema;
11551
12309
  })[] | undefined;
12310
+ secured?: boolean | undefined;
11552
12311
  placeholder?: {
11553
12312
  id: string;
11554
12313
  description: string;
@@ -11562,7 +12321,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
11562
12321
  hideLabel?: boolean | undefined;
11563
12322
  defaultValue?: {
11564
12323
  type: string;
11565
- filename: string;
12324
+ path: string;
11566
12325
  originalFilename: string;
11567
12326
  } | undefined;
11568
12327
  configuration?: {
@@ -11615,6 +12374,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
11615
12374
  type: "DISPLAY_ON_REVIEW";
11616
12375
  conditional: import(".").JSONSchema;
11617
12376
  })[] | undefined;
12377
+ secured?: boolean | undefined;
11618
12378
  placeholder?: {
11619
12379
  id: string;
11620
12380
  description: string;
@@ -11667,6 +12427,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
11667
12427
  type: "DISPLAY_ON_REVIEW";
11668
12428
  conditional: import(".").JSONSchema;
11669
12429
  })[] | undefined;
12430
+ secured?: boolean | undefined;
11670
12431
  placeholder?: {
11671
12432
  id: string;
11672
12433
  description: string;
@@ -11722,6 +12483,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
11722
12483
  type: "DISPLAY_ON_REVIEW";
11723
12484
  conditional: import(".").JSONSchema;
11724
12485
  })[] | undefined;
12486
+ secured?: boolean | undefined;
11725
12487
  placeholder?: {
11726
12488
  id: string;
11727
12489
  description: string;
@@ -11734,6 +12496,57 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
11734
12496
  } | undefined;
11735
12497
  hideLabel?: boolean | undefined;
11736
12498
  defaultValue?: string | undefined;
12499
+ } | {
12500
+ type: "SELECT_DATE_RANGE";
12501
+ id: string;
12502
+ options: {
12503
+ value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
12504
+ label: {
12505
+ id: string;
12506
+ description: string;
12507
+ defaultMessage: string;
12508
+ };
12509
+ }[];
12510
+ label: {
12511
+ id: string;
12512
+ description: string;
12513
+ defaultMessage: string;
12514
+ };
12515
+ parent?: {
12516
+ $$field: string;
12517
+ } | undefined;
12518
+ validation?: {
12519
+ message: {
12520
+ id: string;
12521
+ description: string;
12522
+ defaultMessage: string;
12523
+ };
12524
+ validator: import(".").JSONSchema;
12525
+ }[] | undefined;
12526
+ required?: boolean | undefined;
12527
+ conditionals?: ({
12528
+ type: "SHOW";
12529
+ conditional: import(".").JSONSchema;
12530
+ } | {
12531
+ type: "ENABLE";
12532
+ conditional: import(".").JSONSchema;
12533
+ } | {
12534
+ type: "DISPLAY_ON_REVIEW";
12535
+ conditional: import(".").JSONSchema;
12536
+ })[] | undefined;
12537
+ secured?: boolean | undefined;
12538
+ placeholder?: {
12539
+ id: string;
12540
+ description: string;
12541
+ defaultMessage: string;
12542
+ } | undefined;
12543
+ helperText?: {
12544
+ id: string;
12545
+ description: string;
12546
+ defaultMessage: string;
12547
+ } | undefined;
12548
+ hideLabel?: boolean | undefined;
12549
+ defaultValue?: "last7Days" | "last30Days" | "last90Days" | "last365Days" | undefined;
11737
12550
  } | {
11738
12551
  type: "NAME";
11739
12552
  id: string;
@@ -11764,6 +12577,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
11764
12577
  type: "DISPLAY_ON_REVIEW";
11765
12578
  conditional: import(".").JSONSchema;
11766
12579
  })[] | undefined;
12580
+ secured?: boolean | undefined;
11767
12581
  placeholder?: {
11768
12582
  id: string;
11769
12583
  description: string;
@@ -11791,6 +12605,8 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
11791
12605
  description: string;
11792
12606
  defaultMessage: string;
11793
12607
  } | undefined;
12608
+ includeMiddlename?: boolean | undefined;
12609
+ searchMode?: boolean | undefined;
11794
12610
  } | undefined;
11795
12611
  } | {
11796
12612
  type: "PHONE";
@@ -11822,6 +12638,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
11822
12638
  type: "DISPLAY_ON_REVIEW";
11823
12639
  conditional: import(".").JSONSchema;
11824
12640
  })[] | undefined;
12641
+ secured?: boolean | undefined;
11825
12642
  placeholder?: {
11826
12643
  id: string;
11827
12644
  description: string;
@@ -11864,6 +12681,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
11864
12681
  type: "DISPLAY_ON_REVIEW";
11865
12682
  conditional: import(".").JSONSchema;
11866
12683
  })[] | undefined;
12684
+ secured?: boolean | undefined;
11867
12685
  placeholder?: {
11868
12686
  id: string;
11869
12687
  description: string;
@@ -11906,6 +12724,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
11906
12724
  type: "DISPLAY_ON_REVIEW";
11907
12725
  conditional: import(".").JSONSchema;
11908
12726
  })[] | undefined;
12727
+ secured?: boolean | undefined;
11909
12728
  placeholder?: {
11910
12729
  id: string;
11911
12730
  description: string;
@@ -11948,6 +12767,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
11948
12767
  type: "DISPLAY_ON_REVIEW";
11949
12768
  conditional: import(".").JSONSchema;
11950
12769
  })[] | undefined;
12770
+ secured?: boolean | undefined;
11951
12771
  placeholder?: {
11952
12772
  id: string;
11953
12773
  description: string;
@@ -11996,6 +12816,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
11996
12816
  type: "DISPLAY_ON_REVIEW";
11997
12817
  conditional: import(".").JSONSchema;
11998
12818
  })[] | undefined;
12819
+ secured?: boolean | undefined;
11999
12820
  placeholder?: {
12000
12821
  id: string;
12001
12822
  description: string;
@@ -12038,6 +12859,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
12038
12859
  type: "DISPLAY_ON_REVIEW";
12039
12860
  conditional: import(".").JSONSchema;
12040
12861
  })[] | undefined;
12862
+ secured?: boolean | undefined;
12041
12863
  placeholder?: {
12042
12864
  id: string;
12043
12865
  description: string;
@@ -12088,6 +12910,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
12088
12910
  type: "DISPLAY_ON_REVIEW";
12089
12911
  conditional: import(".").JSONSchema;
12090
12912
  })[] | undefined;
12913
+ secured?: boolean | undefined;
12091
12914
  placeholder?: {
12092
12915
  id: string;
12093
12916
  description: string;
@@ -12102,7 +12925,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
12102
12925
  defaultValue?: {
12103
12926
  type: string;
12104
12927
  option: string;
12105
- filename: string;
12928
+ path: string;
12106
12929
  originalFilename: string;
12107
12930
  }[] | undefined;
12108
12931
  configuration?: {
@@ -12139,6 +12962,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
12139
12962
  type: "DISPLAY_ON_REVIEW";
12140
12963
  conditional: import(".").JSONSchema;
12141
12964
  })[] | undefined;
12965
+ secured?: boolean | undefined;
12142
12966
  placeholder?: {
12143
12967
  id: string;
12144
12968
  description: string;
@@ -12181,6 +13005,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
12181
13005
  type: "DISPLAY_ON_REVIEW";
12182
13006
  conditional: import(".").JSONSchema;
12183
13007
  })[] | undefined;
13008
+ secured?: boolean | undefined;
12184
13009
  placeholder?: {
12185
13010
  id: string;
12186
13011
  description: string;
@@ -12223,6 +13048,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
12223
13048
  type: "DISPLAY_ON_REVIEW";
12224
13049
  conditional: import(".").JSONSchema;
12225
13050
  })[] | undefined;
13051
+ secured?: boolean | undefined;
12226
13052
  placeholder?: {
12227
13053
  id: string;
12228
13054
  description: string;
@@ -12263,6 +13089,9 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
12263
13089
  addressLine3?: string | undefined;
12264
13090
  postcodeOrZip?: string | undefined;
12265
13091
  } | undefined;
13092
+ configuration?: {
13093
+ searchMode?: boolean | undefined;
13094
+ } | undefined;
12266
13095
  } | {
12267
13096
  type: "DATA";
12268
13097
  id: string;
@@ -12314,6 +13143,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
12314
13143
  type: "DISPLAY_ON_REVIEW";
12315
13144
  conditional: import(".").JSONSchema;
12316
13145
  })[] | undefined;
13146
+ secured?: boolean | undefined;
12317
13147
  placeholder?: {
12318
13148
  id: string;
12319
13149
  description: string;