@opencrvs/toolkit 1.8.0-rc.f7e4aad → 1.8.0-rc.f807e0d

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 (39) hide show
  1. package/dist/commons/api/router.d.ts +1822 -10136
  2. package/dist/commons/conditionals/conditionals.d.ts +1 -12
  3. package/dist/commons/conditionals/validate.d.ts +8 -0
  4. package/dist/commons/events/ActionConfig.d.ts +15960 -3820
  5. package/dist/commons/events/ActionDocument.d.ts +1951 -904
  6. package/dist/commons/events/ActionInput.d.ts +1680 -780
  7. package/dist/commons/events/ActionType.d.ts +0 -2
  8. package/dist/commons/events/AdvancedSearchConfig.d.ts +113 -68
  9. package/dist/commons/events/CompositeFieldValue.d.ts +9 -9
  10. package/dist/commons/events/CountryConfigQueryInput.d.ts +1215 -813
  11. package/dist/commons/events/Draft.d.ts +144 -72
  12. package/dist/commons/events/EventConfig.d.ts +6459 -1250
  13. package/dist/commons/events/EventDocument.d.ts +1236 -588
  14. package/dist/commons/events/EventIndex.d.ts +609 -268
  15. package/dist/commons/events/EventMetadata.d.ts +9 -7
  16. package/dist/commons/events/FieldConfig.d.ts +1635 -67
  17. package/dist/commons/events/FieldType.d.ts +7 -1
  18. package/dist/commons/events/FieldTypeMapping.d.ts +57 -25
  19. package/dist/commons/events/FieldValue.d.ts +45 -16
  20. package/dist/commons/events/FormConfig.d.ts +6488 -1370
  21. package/dist/commons/events/PageConfig.d.ts +1380 -70
  22. package/dist/commons/events/User.d.ts +9 -3
  23. package/dist/commons/events/WorkqueueColumnConfig.d.ts +7 -7
  24. package/dist/commons/events/WorkqueueConfig.d.ts +2459 -1519
  25. package/dist/commons/events/defineConfig.d.ts +971 -58
  26. package/dist/commons/events/event.d.ts +19 -19
  27. package/dist/commons/events/field.d.ts +17 -1
  28. package/dist/commons/events/test.utils.d.ts +45 -20
  29. package/dist/commons/events/utils.d.ts +3323 -267
  30. package/dist/conditionals/index.js +23 -39
  31. package/dist/events/index.js +1208 -928
  32. package/dist/scopes/index.d.ts +92 -6
  33. package/dist/scopes/index.js +38 -9
  34. package/package.json +6 -4
  35. package/tsconfig.json +1 -1
  36. package/dist/commons/conditionals/conditionals.test.d.ts +0 -2
  37. package/dist/commons/conditionals/validate-address.test.d.ts +0 -2
  38. package/dist/commons/conditionals/validate.test.d.ts +0 -2
  39. package/dist/commons/events/utils.test.d.ts +0 -2
@@ -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;
@@ -56,6 +57,16 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
56
57
  hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
57
58
  }, {
58
59
  type: z.ZodLiteral<"ADDRESS">;
60
+ configuration: z.ZodOptional<z.ZodObject<{
61
+ lineSeparator: z.ZodOptional<z.ZodString>;
62
+ fields: z.ZodOptional<z.ZodArray<z.ZodEnum<["number", "country", "province", "addressType", "district", "urbanOrRural", "town", "residentialArea", "street", "zipCode", "village", "state", "district2", "cityOrTown", "addressLine1", "addressLine2", "addressLine3", "postcodeOrZip"]>, "many">>;
63
+ }, "strip", z.ZodTypeAny, {
64
+ lineSeparator?: string | undefined;
65
+ fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
66
+ }, {
67
+ lineSeparator?: string | undefined;
68
+ fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
69
+ }>>;
59
70
  defaultValue: z.ZodOptional<z.ZodUnion<[z.ZodDiscriminatedUnion<"urbanOrRural", [z.ZodObject<z.objectUtil.extendShape<{
60
71
  country: z.ZodString;
61
72
  addressType: z.ZodLiteral<"DOMESTIC">;
@@ -165,6 +176,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
165
176
  type: "DISPLAY_ON_REVIEW";
166
177
  conditional: import(".").JSONSchema;
167
178
  })[] | undefined;
179
+ secured?: boolean | undefined;
168
180
  placeholder?: TranslationConfig | undefined;
169
181
  helperText?: TranslationConfig | undefined;
170
182
  hideLabel?: boolean | undefined;
@@ -197,6 +209,10 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
197
209
  addressLine3?: string | undefined;
198
210
  postcodeOrZip?: string | undefined;
199
211
  } | undefined;
212
+ configuration?: {
213
+ lineSeparator?: string | undefined;
214
+ fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
215
+ } | undefined;
200
216
  }, {
201
217
  type: "ADDRESS";
202
218
  id: string;
@@ -227,6 +243,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
227
243
  type: "DISPLAY_ON_REVIEW";
228
244
  conditional: import(".").JSONSchema;
229
245
  })[] | undefined;
246
+ secured?: boolean | undefined;
230
247
  placeholder?: {
231
248
  id: string;
232
249
  description: string;
@@ -267,6 +284,10 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
267
284
  addressLine3?: string | undefined;
268
285
  postcodeOrZip?: string | undefined;
269
286
  } | undefined;
287
+ configuration?: {
288
+ lineSeparator?: string | undefined;
289
+ fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
290
+ } | undefined;
270
291
  }>, z.ZodObject<z.objectUtil.extendShape<{
271
292
  id: z.ZodString;
272
293
  parent: z.ZodOptional<z.ZodObject<{
@@ -278,6 +299,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
278
299
  }>>;
279
300
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
280
301
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
302
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
281
303
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
282
304
  id: string;
283
305
  description: string;
@@ -369,6 +391,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
369
391
  type: "DISPLAY_ON_REVIEW";
370
392
  conditional: import(".").JSONSchema;
371
393
  })[] | undefined;
394
+ secured?: boolean | undefined;
372
395
  placeholder?: TranslationConfig | undefined;
373
396
  helperText?: TranslationConfig | undefined;
374
397
  hideLabel?: boolean | undefined;
@@ -409,6 +432,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
409
432
  type: "DISPLAY_ON_REVIEW";
410
433
  conditional: import(".").JSONSchema;
411
434
  })[] | undefined;
435
+ secured?: boolean | undefined;
412
436
  placeholder?: {
413
437
  id: string;
414
438
  description: string;
@@ -446,6 +470,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
446
470
  }>>;
447
471
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
448
472
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
473
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
449
474
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
450
475
  id: string;
451
476
  description: string;
@@ -537,6 +562,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
537
562
  type: "DISPLAY_ON_REVIEW";
538
563
  conditional: import(".").JSONSchema;
539
564
  })[] | undefined;
565
+ secured?: boolean | undefined;
540
566
  placeholder?: TranslationConfig | undefined;
541
567
  helperText?: TranslationConfig | undefined;
542
568
  hideLabel?: boolean | undefined;
@@ -577,6 +603,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
577
603
  type: "DISPLAY_ON_REVIEW";
578
604
  conditional: import(".").JSONSchema;
579
605
  })[] | undefined;
606
+ secured?: boolean | undefined;
580
607
  placeholder?: {
581
608
  id: string;
582
609
  description: string;
@@ -614,6 +641,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
614
641
  }>>;
615
642
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
616
643
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
644
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
617
645
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
618
646
  id: string;
619
647
  description: string;
@@ -708,6 +736,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
708
736
  type: "DISPLAY_ON_REVIEW";
709
737
  conditional: import(".").JSONSchema;
710
738
  })[] | undefined;
739
+ secured?: boolean | undefined;
711
740
  placeholder?: TranslationConfig | undefined;
712
741
  helperText?: TranslationConfig | undefined;
713
742
  hideLabel?: boolean | undefined;
@@ -749,6 +778,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
749
778
  type: "DISPLAY_ON_REVIEW";
750
779
  conditional: import(".").JSONSchema;
751
780
  })[] | undefined;
781
+ secured?: boolean | undefined;
752
782
  placeholder?: {
753
783
  id: string;
754
784
  description: string;
@@ -787,6 +817,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
787
817
  }>>;
788
818
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
789
819
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
820
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
790
821
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
791
822
  id: string;
792
823
  description: string;
@@ -861,6 +892,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
861
892
  type: "DISPLAY_ON_REVIEW";
862
893
  conditional: import(".").JSONSchema;
863
894
  })[] | undefined;
895
+ secured?: boolean | undefined;
864
896
  placeholder?: TranslationConfig | undefined;
865
897
  helperText?: TranslationConfig | undefined;
866
898
  hideLabel?: boolean | undefined;
@@ -898,6 +930,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
898
930
  type: "DISPLAY_ON_REVIEW";
899
931
  conditional: import(".").JSONSchema;
900
932
  })[] | undefined;
933
+ secured?: boolean | undefined;
901
934
  placeholder?: {
902
935
  id: string;
903
936
  description: string;
@@ -928,6 +961,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
928
961
  }>>;
929
962
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
930
963
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
964
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
931
965
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
932
966
  id: string;
933
967
  description: string;
@@ -964,7 +998,16 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
964
998
  hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
965
999
  }, {
966
1000
  type: z.ZodLiteral<"DATE_RANGE">;
967
- defaultValue: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>>;
1001
+ defaultValue: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
1002
+ start: z.ZodString;
1003
+ end: z.ZodString;
1004
+ }, "strip", z.ZodTypeAny, {
1005
+ start: string;
1006
+ end: string;
1007
+ }, {
1008
+ start: string;
1009
+ end: string;
1010
+ }>, z.ZodString]>>;
968
1011
  configuration: z.ZodOptional<z.ZodObject<{
969
1012
  notice: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
970
1013
  id: string;
@@ -1002,10 +1045,14 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
1002
1045
  type: "DISPLAY_ON_REVIEW";
1003
1046
  conditional: import(".").JSONSchema;
1004
1047
  })[] | undefined;
1048
+ secured?: boolean | undefined;
1005
1049
  placeholder?: TranslationConfig | undefined;
1006
1050
  helperText?: TranslationConfig | undefined;
1007
1051
  hideLabel?: boolean | undefined;
1008
- defaultValue?: string | [string, string] | undefined;
1052
+ defaultValue?: string | {
1053
+ start: string;
1054
+ end: string;
1055
+ } | undefined;
1009
1056
  configuration?: {
1010
1057
  notice?: TranslationConfig | undefined;
1011
1058
  } | undefined;
@@ -1039,6 +1086,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
1039
1086
  type: "DISPLAY_ON_REVIEW";
1040
1087
  conditional: import(".").JSONSchema;
1041
1088
  })[] | undefined;
1089
+ secured?: boolean | undefined;
1042
1090
  placeholder?: {
1043
1091
  id: string;
1044
1092
  description: string;
@@ -1050,7 +1098,10 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
1050
1098
  defaultMessage: string;
1051
1099
  } | undefined;
1052
1100
  hideLabel?: boolean | undefined;
1053
- defaultValue?: string | [string, string] | undefined;
1101
+ defaultValue?: string | {
1102
+ start: string;
1103
+ end: string;
1104
+ } | undefined;
1054
1105
  configuration?: {
1055
1106
  notice?: {
1056
1107
  id: string;
@@ -1069,6 +1120,156 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
1069
1120
  }>>;
1070
1121
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
1071
1122
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1123
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1124
+ placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
1125
+ id: string;
1126
+ description: string;
1127
+ defaultMessage: string;
1128
+ }>>;
1129
+ validation: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodObject<{
1130
+ validator: z.ZodType<import(".").JSONSchema, z.ZodTypeDef, import(".").JSONSchema>;
1131
+ message: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
1132
+ id: string;
1133
+ description: string;
1134
+ defaultMessage: string;
1135
+ }>;
1136
+ }, "strip", z.ZodTypeAny, {
1137
+ message: TranslationConfig;
1138
+ validator: import(".").JSONSchema;
1139
+ }, {
1140
+ message: {
1141
+ id: string;
1142
+ description: string;
1143
+ defaultMessage: string;
1144
+ };
1145
+ validator: import(".").JSONSchema;
1146
+ }>, "many">>>;
1147
+ label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
1148
+ id: string;
1149
+ description: string;
1150
+ defaultMessage: string;
1151
+ }>;
1152
+ helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
1153
+ id: string;
1154
+ description: string;
1155
+ defaultMessage: string;
1156
+ }>>;
1157
+ hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1158
+ }, {
1159
+ type: z.ZodLiteral<"SELECT_DATE_RANGE">;
1160
+ defaultValue: z.ZodOptional<z.ZodEnum<["last7Days", "last30Days", "last90Days", "last365Days"]>>;
1161
+ options: z.ZodArray<z.ZodObject<{
1162
+ value: z.ZodEnum<["last7Days", "last30Days", "last90Days", "last365Days"]>;
1163
+ label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
1164
+ id: string;
1165
+ description: string;
1166
+ defaultMessage: string;
1167
+ }>;
1168
+ }, "strip", z.ZodTypeAny, {
1169
+ value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
1170
+ label: TranslationConfig;
1171
+ }, {
1172
+ value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
1173
+ label: {
1174
+ id: string;
1175
+ description: string;
1176
+ defaultMessage: string;
1177
+ };
1178
+ }>, "many">;
1179
+ }>, "strip", z.ZodTypeAny, {
1180
+ type: "SELECT_DATE_RANGE";
1181
+ id: string;
1182
+ options: {
1183
+ value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
1184
+ label: TranslationConfig;
1185
+ }[];
1186
+ label: TranslationConfig;
1187
+ parent?: {
1188
+ $$field: string;
1189
+ } | undefined;
1190
+ validation?: {
1191
+ message: TranslationConfig;
1192
+ validator: import(".").JSONSchema;
1193
+ }[] | undefined;
1194
+ required?: boolean | undefined;
1195
+ conditionals?: ({
1196
+ type: "SHOW";
1197
+ conditional: import(".").JSONSchema;
1198
+ } | {
1199
+ type: "ENABLE";
1200
+ conditional: import(".").JSONSchema;
1201
+ } | {
1202
+ type: "DISPLAY_ON_REVIEW";
1203
+ conditional: import(".").JSONSchema;
1204
+ })[] | undefined;
1205
+ secured?: boolean | undefined;
1206
+ placeholder?: TranslationConfig | undefined;
1207
+ helperText?: TranslationConfig | undefined;
1208
+ hideLabel?: boolean | undefined;
1209
+ defaultValue?: "last7Days" | "last30Days" | "last90Days" | "last365Days" | undefined;
1210
+ }, {
1211
+ type: "SELECT_DATE_RANGE";
1212
+ id: string;
1213
+ options: {
1214
+ value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
1215
+ label: {
1216
+ id: string;
1217
+ description: string;
1218
+ defaultMessage: string;
1219
+ };
1220
+ }[];
1221
+ label: {
1222
+ id: string;
1223
+ description: string;
1224
+ defaultMessage: string;
1225
+ };
1226
+ parent?: {
1227
+ $$field: string;
1228
+ } | undefined;
1229
+ validation?: {
1230
+ message: {
1231
+ id: string;
1232
+ description: string;
1233
+ defaultMessage: string;
1234
+ };
1235
+ validator: import(".").JSONSchema;
1236
+ }[] | undefined;
1237
+ required?: boolean | undefined;
1238
+ conditionals?: ({
1239
+ type: "SHOW";
1240
+ conditional: import(".").JSONSchema;
1241
+ } | {
1242
+ type: "ENABLE";
1243
+ conditional: import(".").JSONSchema;
1244
+ } | {
1245
+ type: "DISPLAY_ON_REVIEW";
1246
+ conditional: import(".").JSONSchema;
1247
+ })[] | undefined;
1248
+ secured?: boolean | undefined;
1249
+ placeholder?: {
1250
+ id: string;
1251
+ description: string;
1252
+ defaultMessage: string;
1253
+ } | undefined;
1254
+ helperText?: {
1255
+ id: string;
1256
+ description: string;
1257
+ defaultMessage: string;
1258
+ } | undefined;
1259
+ hideLabel?: boolean | undefined;
1260
+ defaultValue?: "last7Days" | "last30Days" | "last90Days" | "last365Days" | undefined;
1261
+ }>, z.ZodObject<z.objectUtil.extendShape<{
1262
+ id: z.ZodString;
1263
+ parent: z.ZodOptional<z.ZodObject<{
1264
+ $$field: z.ZodString;
1265
+ }, "strip", z.ZodTypeAny, {
1266
+ $$field: string;
1267
+ }, {
1268
+ $$field: string;
1269
+ }>>;
1270
+ conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
1271
+ required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1272
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1072
1273
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
1073
1274
  id: string;
1074
1275
  description: string;
@@ -1150,6 +1351,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
1150
1351
  type: "DISPLAY_ON_REVIEW";
1151
1352
  conditional: import(".").JSONSchema;
1152
1353
  })[] | undefined;
1354
+ secured?: boolean | undefined;
1153
1355
  placeholder?: TranslationConfig | undefined;
1154
1356
  helperText?: TranslationConfig | undefined;
1155
1357
  hideLabel?: boolean | undefined;
@@ -1184,6 +1386,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
1184
1386
  type: "DISPLAY_ON_REVIEW";
1185
1387
  conditional: import(".").JSONSchema;
1186
1388
  })[] | undefined;
1389
+ secured?: boolean | undefined;
1187
1390
  placeholder?: {
1188
1391
  id: string;
1189
1392
  description: string;
@@ -1212,6 +1415,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
1212
1415
  }>>;
1213
1416
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
1214
1417
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1418
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1215
1419
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
1216
1420
  id: string;
1217
1421
  description: string;
@@ -1310,6 +1514,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
1310
1514
  type: "DISPLAY_ON_REVIEW";
1311
1515
  conditional: import(".").JSONSchema;
1312
1516
  })[] | undefined;
1517
+ secured?: boolean | undefined;
1313
1518
  placeholder?: TranslationConfig | undefined;
1314
1519
  helperText?: TranslationConfig | undefined;
1315
1520
  hideLabel?: boolean | undefined;
@@ -1357,6 +1562,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
1357
1562
  type: "DISPLAY_ON_REVIEW";
1358
1563
  conditional: import(".").JSONSchema;
1359
1564
  })[] | undefined;
1565
+ secured?: boolean | undefined;
1360
1566
  placeholder?: {
1361
1567
  id: string;
1362
1568
  description: string;
@@ -1385,6 +1591,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
1385
1591
  }>>;
1386
1592
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
1387
1593
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1594
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1388
1595
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
1389
1596
  id: string;
1390
1597
  description: string;
@@ -1472,6 +1679,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
1472
1679
  type: "DISPLAY_ON_REVIEW";
1473
1680
  conditional: import(".").JSONSchema;
1474
1681
  })[] | undefined;
1682
+ secured?: boolean | undefined;
1475
1683
  placeholder?: TranslationConfig | undefined;
1476
1684
  helperText?: TranslationConfig | undefined;
1477
1685
  hideLabel?: boolean | undefined;
@@ -1511,6 +1719,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
1511
1719
  type: "DISPLAY_ON_REVIEW";
1512
1720
  conditional: import(".").JSONSchema;
1513
1721
  })[] | undefined;
1722
+ secured?: boolean | undefined;
1514
1723
  placeholder?: {
1515
1724
  id: string;
1516
1725
  description: string;
@@ -1539,6 +1748,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
1539
1748
  }>>;
1540
1749
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
1541
1750
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1751
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1542
1752
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
1543
1753
  id: string;
1544
1754
  description: string;
@@ -1598,6 +1808,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
1598
1808
  type: "DISPLAY_ON_REVIEW";
1599
1809
  conditional: import(".").JSONSchema;
1600
1810
  })[] | undefined;
1811
+ secured?: boolean | undefined;
1601
1812
  placeholder?: TranslationConfig | undefined;
1602
1813
  helperText?: TranslationConfig | undefined;
1603
1814
  hideLabel?: boolean | undefined;
@@ -1632,6 +1843,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
1632
1843
  type: "DISPLAY_ON_REVIEW";
1633
1844
  conditional: import(".").JSONSchema;
1634
1845
  })[] | undefined;
1846
+ secured?: boolean | undefined;
1635
1847
  placeholder?: {
1636
1848
  id: string;
1637
1849
  description: string;
@@ -1655,6 +1867,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
1655
1867
  }>>;
1656
1868
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
1657
1869
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1870
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1658
1871
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
1659
1872
  id: string;
1660
1873
  description: string;
@@ -1736,6 +1949,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
1736
1949
  type: "DISPLAY_ON_REVIEW";
1737
1950
  conditional: import(".").JSONSchema;
1738
1951
  })[] | undefined;
1952
+ secured?: boolean | undefined;
1739
1953
  placeholder?: TranslationConfig | undefined;
1740
1954
  helperText?: TranslationConfig | undefined;
1741
1955
  hideLabel?: boolean | undefined;
@@ -1778,6 +1992,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
1778
1992
  type: "DISPLAY_ON_REVIEW";
1779
1993
  conditional: import(".").JSONSchema;
1780
1994
  })[] | undefined;
1995
+ secured?: boolean | undefined;
1781
1996
  placeholder?: {
1782
1997
  id: string;
1783
1998
  description: string;
@@ -1801,6 +2016,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
1801
2016
  }>>;
1802
2017
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
1803
2018
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2019
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1804
2020
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
1805
2021
  id: string;
1806
2022
  description: string;
@@ -1838,16 +2054,114 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
1838
2054
  }, {
1839
2055
  type: z.ZodLiteral<"NAME">;
1840
2056
  defaultValue: z.ZodOptional<z.ZodObject<{
1841
- firstname: z.ZodString;
1842
- surname: z.ZodString;
2057
+ firstname: z.ZodOptional<z.ZodString>;
2058
+ middlename: z.ZodOptional<z.ZodString>;
2059
+ surname: z.ZodOptional<z.ZodString>;
1843
2060
  }, "strip", z.ZodTypeAny, {
1844
- firstname: string;
1845
- surname: string;
2061
+ firstname?: string | undefined;
2062
+ surname?: string | undefined;
2063
+ middlename?: string | undefined;
1846
2064
  }, {
1847
- firstname: string;
1848
- surname: string;
2065
+ firstname?: string | undefined;
2066
+ surname?: string | undefined;
2067
+ middlename?: string | undefined;
1849
2068
  }>>;
1850
- configuration: z.ZodOptional<z.ZodObject<{
2069
+ configuration: z.ZodOptional<z.ZodDefault<z.ZodObject<{
2070
+ name: z.ZodOptional<z.ZodDefault<z.ZodObject<{
2071
+ firstname: z.ZodOptional<z.ZodObject<{
2072
+ required: z.ZodBoolean;
2073
+ label: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
2074
+ id: string;
2075
+ description: string;
2076
+ defaultMessage: string;
2077
+ }>>;
2078
+ }, "strip", z.ZodTypeAny, {
2079
+ required: boolean;
2080
+ label?: TranslationConfig | undefined;
2081
+ }, {
2082
+ required: boolean;
2083
+ label?: {
2084
+ id: string;
2085
+ description: string;
2086
+ defaultMessage: string;
2087
+ } | undefined;
2088
+ }>>;
2089
+ middlename: z.ZodOptional<z.ZodObject<{
2090
+ required: z.ZodBoolean;
2091
+ label: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
2092
+ id: string;
2093
+ description: string;
2094
+ defaultMessage: string;
2095
+ }>>;
2096
+ }, "strip", z.ZodTypeAny, {
2097
+ required: boolean;
2098
+ label?: TranslationConfig | undefined;
2099
+ }, {
2100
+ required: boolean;
2101
+ label?: {
2102
+ id: string;
2103
+ description: string;
2104
+ defaultMessage: string;
2105
+ } | undefined;
2106
+ }>>;
2107
+ surname: z.ZodOptional<z.ZodObject<{
2108
+ required: z.ZodBoolean;
2109
+ label: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
2110
+ id: string;
2111
+ description: string;
2112
+ defaultMessage: string;
2113
+ }>>;
2114
+ }, "strip", z.ZodTypeAny, {
2115
+ required: boolean;
2116
+ label?: TranslationConfig | undefined;
2117
+ }, {
2118
+ required: boolean;
2119
+ label?: {
2120
+ id: string;
2121
+ description: string;
2122
+ defaultMessage: string;
2123
+ } | undefined;
2124
+ }>>;
2125
+ }, "strip", z.ZodTypeAny, {
2126
+ firstname?: {
2127
+ required: boolean;
2128
+ label?: TranslationConfig | undefined;
2129
+ } | undefined;
2130
+ surname?: {
2131
+ required: boolean;
2132
+ label?: TranslationConfig | undefined;
2133
+ } | undefined;
2134
+ middlename?: {
2135
+ required: boolean;
2136
+ label?: TranslationConfig | undefined;
2137
+ } | undefined;
2138
+ }, {
2139
+ firstname?: {
2140
+ required: boolean;
2141
+ label?: {
2142
+ id: string;
2143
+ description: string;
2144
+ defaultMessage: string;
2145
+ } | undefined;
2146
+ } | undefined;
2147
+ surname?: {
2148
+ required: boolean;
2149
+ label?: {
2150
+ id: string;
2151
+ description: string;
2152
+ defaultMessage: string;
2153
+ } | undefined;
2154
+ } | undefined;
2155
+ middlename?: {
2156
+ required: boolean;
2157
+ label?: {
2158
+ id: string;
2159
+ description: string;
2160
+ defaultMessage: string;
2161
+ } | undefined;
2162
+ } | undefined;
2163
+ }>>>;
2164
+ order: z.ZodOptional<z.ZodArray<z.ZodEnum<["firstname", "middlename", "surname"]>, "many">>;
1851
2165
  maxLength: z.ZodOptional<z.ZodNumber>;
1852
2166
  prefix: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
1853
2167
  id: string;
@@ -1860,10 +2174,52 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
1860
2174
  defaultMessage: string;
1861
2175
  }>>;
1862
2176
  }, "strip", z.ZodTypeAny, {
2177
+ name?: {
2178
+ firstname?: {
2179
+ required: boolean;
2180
+ label?: TranslationConfig | undefined;
2181
+ } | undefined;
2182
+ surname?: {
2183
+ required: boolean;
2184
+ label?: TranslationConfig | undefined;
2185
+ } | undefined;
2186
+ middlename?: {
2187
+ required: boolean;
2188
+ label?: TranslationConfig | undefined;
2189
+ } | undefined;
2190
+ } | undefined;
2191
+ order?: ("firstname" | "surname" | "middlename")[] | undefined;
1863
2192
  maxLength?: number | undefined;
1864
2193
  prefix?: TranslationConfig | undefined;
1865
2194
  postfix?: TranslationConfig | undefined;
1866
2195
  }, {
2196
+ name?: {
2197
+ firstname?: {
2198
+ required: boolean;
2199
+ label?: {
2200
+ id: string;
2201
+ description: string;
2202
+ defaultMessage: string;
2203
+ } | undefined;
2204
+ } | undefined;
2205
+ surname?: {
2206
+ required: boolean;
2207
+ label?: {
2208
+ id: string;
2209
+ description: string;
2210
+ defaultMessage: string;
2211
+ } | undefined;
2212
+ } | undefined;
2213
+ middlename?: {
2214
+ required: boolean;
2215
+ label?: {
2216
+ id: string;
2217
+ description: string;
2218
+ defaultMessage: string;
2219
+ } | undefined;
2220
+ } | undefined;
2221
+ } | undefined;
2222
+ order?: ("firstname" | "surname" | "middlename")[] | undefined;
1867
2223
  maxLength?: number | undefined;
1868
2224
  prefix?: {
1869
2225
  id: string;
@@ -1875,7 +2231,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
1875
2231
  description: string;
1876
2232
  defaultMessage: string;
1877
2233
  } | undefined;
1878
- }>>;
2234
+ }>>>;
1879
2235
  }>, "strip", z.ZodTypeAny, {
1880
2236
  type: "NAME";
1881
2237
  id: string;
@@ -1898,14 +2254,31 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
1898
2254
  type: "DISPLAY_ON_REVIEW";
1899
2255
  conditional: import(".").JSONSchema;
1900
2256
  })[] | undefined;
2257
+ secured?: boolean | undefined;
1901
2258
  placeholder?: TranslationConfig | undefined;
1902
2259
  helperText?: TranslationConfig | undefined;
1903
2260
  hideLabel?: boolean | undefined;
1904
2261
  defaultValue?: {
1905
- firstname: string;
1906
- surname: string;
2262
+ firstname?: string | undefined;
2263
+ surname?: string | undefined;
2264
+ middlename?: string | undefined;
1907
2265
  } | undefined;
1908
2266
  configuration?: {
2267
+ name?: {
2268
+ firstname?: {
2269
+ required: boolean;
2270
+ label?: TranslationConfig | undefined;
2271
+ } | undefined;
2272
+ surname?: {
2273
+ required: boolean;
2274
+ label?: TranslationConfig | undefined;
2275
+ } | undefined;
2276
+ middlename?: {
2277
+ required: boolean;
2278
+ label?: TranslationConfig | undefined;
2279
+ } | undefined;
2280
+ } | undefined;
2281
+ order?: ("firstname" | "surname" | "middlename")[] | undefined;
1909
2282
  maxLength?: number | undefined;
1910
2283
  prefix?: TranslationConfig | undefined;
1911
2284
  postfix?: TranslationConfig | undefined;
@@ -1940,6 +2313,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
1940
2313
  type: "DISPLAY_ON_REVIEW";
1941
2314
  conditional: import(".").JSONSchema;
1942
2315
  })[] | undefined;
2316
+ secured?: boolean | undefined;
1943
2317
  placeholder?: {
1944
2318
  id: string;
1945
2319
  description: string;
@@ -1952,10 +2326,38 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
1952
2326
  } | undefined;
1953
2327
  hideLabel?: boolean | undefined;
1954
2328
  defaultValue?: {
1955
- firstname: string;
1956
- surname: string;
2329
+ firstname?: string | undefined;
2330
+ surname?: string | undefined;
2331
+ middlename?: string | undefined;
1957
2332
  } | undefined;
1958
2333
  configuration?: {
2334
+ name?: {
2335
+ firstname?: {
2336
+ required: boolean;
2337
+ label?: {
2338
+ id: string;
2339
+ description: string;
2340
+ defaultMessage: string;
2341
+ } | undefined;
2342
+ } | undefined;
2343
+ surname?: {
2344
+ required: boolean;
2345
+ label?: {
2346
+ id: string;
2347
+ description: string;
2348
+ defaultMessage: string;
2349
+ } | undefined;
2350
+ } | undefined;
2351
+ middlename?: {
2352
+ required: boolean;
2353
+ label?: {
2354
+ id: string;
2355
+ description: string;
2356
+ defaultMessage: string;
2357
+ } | undefined;
2358
+ } | undefined;
2359
+ } | undefined;
2360
+ order?: ("firstname" | "surname" | "middlename")[] | undefined;
1959
2361
  maxLength?: number | undefined;
1960
2362
  prefix?: {
1961
2363
  id: string;
@@ -1979,6 +2381,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
1979
2381
  }>>;
1980
2382
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
1981
2383
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2384
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1982
2385
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
1983
2386
  id: string;
1984
2387
  description: string;
@@ -2038,6 +2441,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
2038
2441
  type: "DISPLAY_ON_REVIEW";
2039
2442
  conditional: import(".").JSONSchema;
2040
2443
  })[] | undefined;
2444
+ secured?: boolean | undefined;
2041
2445
  placeholder?: TranslationConfig | undefined;
2042
2446
  helperText?: TranslationConfig | undefined;
2043
2447
  hideLabel?: boolean | undefined;
@@ -2072,6 +2476,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
2072
2476
  type: "DISPLAY_ON_REVIEW";
2073
2477
  conditional: import(".").JSONSchema;
2074
2478
  })[] | undefined;
2479
+ secured?: boolean | undefined;
2075
2480
  placeholder?: {
2076
2481
  id: string;
2077
2482
  description: string;
@@ -2095,6 +2500,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
2095
2500
  }>>;
2096
2501
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
2097
2502
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2503
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2098
2504
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
2099
2505
  id: string;
2100
2506
  description: string;
@@ -2154,6 +2560,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
2154
2560
  type: "DISPLAY_ON_REVIEW";
2155
2561
  conditional: import(".").JSONSchema;
2156
2562
  })[] | undefined;
2563
+ secured?: boolean | undefined;
2157
2564
  placeholder?: TranslationConfig | undefined;
2158
2565
  helperText?: TranslationConfig | undefined;
2159
2566
  hideLabel?: boolean | undefined;
@@ -2188,6 +2595,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
2188
2595
  type: "DISPLAY_ON_REVIEW";
2189
2596
  conditional: import(".").JSONSchema;
2190
2597
  })[] | undefined;
2598
+ secured?: boolean | undefined;
2191
2599
  placeholder?: {
2192
2600
  id: string;
2193
2601
  description: string;
@@ -2211,6 +2619,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
2211
2619
  }>>;
2212
2620
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
2213
2621
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2622
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2214
2623
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
2215
2624
  id: string;
2216
2625
  description: string;
@@ -2270,6 +2679,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
2270
2679
  type: "DISPLAY_ON_REVIEW";
2271
2680
  conditional: import(".").JSONSchema;
2272
2681
  })[] | undefined;
2682
+ secured?: boolean | undefined;
2273
2683
  placeholder?: TranslationConfig | undefined;
2274
2684
  helperText?: TranslationConfig | undefined;
2275
2685
  hideLabel?: boolean | undefined;
@@ -2304,6 +2714,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
2304
2714
  type: "DISPLAY_ON_REVIEW";
2305
2715
  conditional: import(".").JSONSchema;
2306
2716
  })[] | undefined;
2717
+ secured?: boolean | undefined;
2307
2718
  placeholder?: {
2308
2719
  id: string;
2309
2720
  description: string;
@@ -2327,6 +2738,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
2327
2738
  }>>;
2328
2739
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
2329
2740
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2741
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2330
2742
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
2331
2743
  id: string;
2332
2744
  description: string;
@@ -2364,16 +2776,16 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
2364
2776
  }, {
2365
2777
  type: z.ZodLiteral<"FILE">;
2366
2778
  defaultValue: z.ZodOptional<z.ZodObject<{
2367
- filename: z.ZodString;
2779
+ path: z.ZodEffects<z.ZodString, string, string>;
2368
2780
  originalFilename: z.ZodString;
2369
2781
  type: z.ZodString;
2370
2782
  }, "strip", z.ZodTypeAny, {
2371
2783
  type: string;
2372
- filename: string;
2784
+ path: string;
2373
2785
  originalFilename: string;
2374
2786
  }, {
2375
2787
  type: string;
2376
- filename: string;
2788
+ path: string;
2377
2789
  originalFilename: string;
2378
2790
  }>>;
2379
2791
  configuration: z.ZodDefault<z.ZodObject<{
@@ -2440,12 +2852,13 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
2440
2852
  type: "DISPLAY_ON_REVIEW";
2441
2853
  conditional: import(".").JSONSchema;
2442
2854
  })[] | undefined;
2855
+ secured?: boolean | undefined;
2443
2856
  placeholder?: TranslationConfig | undefined;
2444
2857
  helperText?: TranslationConfig | undefined;
2445
2858
  hideLabel?: boolean | undefined;
2446
2859
  defaultValue?: {
2447
2860
  type: string;
2448
- filename: string;
2861
+ path: string;
2449
2862
  originalFilename: string;
2450
2863
  } | undefined;
2451
2864
  }, {
@@ -2478,6 +2891,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
2478
2891
  type: "DISPLAY_ON_REVIEW";
2479
2892
  conditional: import(".").JSONSchema;
2480
2893
  })[] | undefined;
2894
+ secured?: boolean | undefined;
2481
2895
  placeholder?: {
2482
2896
  id: string;
2483
2897
  description: string;
@@ -2491,7 +2905,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
2491
2905
  hideLabel?: boolean | undefined;
2492
2906
  defaultValue?: {
2493
2907
  type: string;
2494
- filename: string;
2908
+ path: string;
2495
2909
  originalFilename: string;
2496
2910
  } | undefined;
2497
2911
  configuration?: {
@@ -2517,6 +2931,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
2517
2931
  }>>;
2518
2932
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
2519
2933
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2934
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2520
2935
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
2521
2936
  id: string;
2522
2937
  description: string;
@@ -2576,6 +2991,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
2576
2991
  type: "DISPLAY_ON_REVIEW";
2577
2992
  conditional: import(".").JSONSchema;
2578
2993
  })[] | undefined;
2994
+ secured?: boolean | undefined;
2579
2995
  placeholder?: TranslationConfig | undefined;
2580
2996
  helperText?: TranslationConfig | undefined;
2581
2997
  hideLabel?: boolean | undefined;
@@ -2610,6 +3026,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
2610
3026
  type: "DISPLAY_ON_REVIEW";
2611
3027
  conditional: import(".").JSONSchema;
2612
3028
  })[] | undefined;
3029
+ secured?: boolean | undefined;
2613
3030
  placeholder?: {
2614
3031
  id: string;
2615
3032
  description: string;
@@ -2633,6 +3050,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
2633
3050
  }>>;
2634
3051
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
2635
3052
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3053
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2636
3054
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
2637
3055
  id: string;
2638
3056
  description: string;
@@ -2718,6 +3136,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
2718
3136
  type: "DISPLAY_ON_REVIEW";
2719
3137
  conditional: import(".").JSONSchema;
2720
3138
  })[] | undefined;
3139
+ secured?: boolean | undefined;
2721
3140
  placeholder?: TranslationConfig | undefined;
2722
3141
  helperText?: TranslationConfig | undefined;
2723
3142
  hideLabel?: boolean | undefined;
@@ -2758,6 +3177,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
2758
3177
  type: "DISPLAY_ON_REVIEW";
2759
3178
  conditional: import(".").JSONSchema;
2760
3179
  })[] | undefined;
3180
+ secured?: boolean | undefined;
2761
3181
  placeholder?: {
2762
3182
  id: string;
2763
3183
  description: string;
@@ -2781,6 +3201,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
2781
3201
  }>>;
2782
3202
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
2783
3203
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3204
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2784
3205
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
2785
3206
  id: string;
2786
3207
  description: string;
@@ -2839,6 +3260,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
2839
3260
  type: "DISPLAY_ON_REVIEW";
2840
3261
  conditional: import(".").JSONSchema;
2841
3262
  })[] | undefined;
3263
+ secured?: boolean | undefined;
2842
3264
  placeholder?: TranslationConfig | undefined;
2843
3265
  helperText?: TranslationConfig | undefined;
2844
3266
  hideLabel?: boolean | undefined;
@@ -2872,6 +3294,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
2872
3294
  type: "DISPLAY_ON_REVIEW";
2873
3295
  conditional: import(".").JSONSchema;
2874
3296
  })[] | undefined;
3297
+ secured?: boolean | undefined;
2875
3298
  placeholder?: {
2876
3299
  id: string;
2877
3300
  description: string;
@@ -2894,6 +3317,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
2894
3317
  }>>;
2895
3318
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
2896
3319
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3320
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2897
3321
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
2898
3322
  id: string;
2899
3323
  description: string;
@@ -2931,6 +3355,13 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
2931
3355
  }, {
2932
3356
  type: z.ZodLiteral<"LOCATION">;
2933
3357
  defaultValue: z.ZodOptional<z.ZodString>;
3358
+ configuration: z.ZodOptional<z.ZodObject<{
3359
+ searchableResource: z.ZodOptional<z.ZodArray<z.ZodEnum<["locations", "facilities", "offices"]>, "many">>;
3360
+ }, "strip", z.ZodTypeAny, {
3361
+ searchableResource?: ("locations" | "facilities" | "offices")[] | undefined;
3362
+ }, {
3363
+ searchableResource?: ("locations" | "facilities" | "offices")[] | undefined;
3364
+ }>>;
2934
3365
  }>, "strip", z.ZodTypeAny, {
2935
3366
  type: "LOCATION";
2936
3367
  id: string;
@@ -2953,10 +3384,14 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
2953
3384
  type: "DISPLAY_ON_REVIEW";
2954
3385
  conditional: import(".").JSONSchema;
2955
3386
  })[] | undefined;
3387
+ secured?: boolean | undefined;
2956
3388
  placeholder?: TranslationConfig | undefined;
2957
3389
  helperText?: TranslationConfig | undefined;
2958
3390
  hideLabel?: boolean | undefined;
2959
3391
  defaultValue?: string | undefined;
3392
+ configuration?: {
3393
+ searchableResource?: ("locations" | "facilities" | "offices")[] | undefined;
3394
+ } | undefined;
2960
3395
  }, {
2961
3396
  type: "LOCATION";
2962
3397
  id: string;
@@ -2987,6 +3422,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
2987
3422
  type: "DISPLAY_ON_REVIEW";
2988
3423
  conditional: import(".").JSONSchema;
2989
3424
  })[] | undefined;
3425
+ secured?: boolean | undefined;
2990
3426
  placeholder?: {
2991
3427
  id: string;
2992
3428
  description: string;
@@ -2999,6 +3435,9 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
2999
3435
  } | undefined;
3000
3436
  hideLabel?: boolean | undefined;
3001
3437
  defaultValue?: string | undefined;
3438
+ configuration?: {
3439
+ searchableResource?: ("locations" | "facilities" | "offices")[] | undefined;
3440
+ } | undefined;
3002
3441
  }>, z.ZodObject<z.objectUtil.extendShape<{
3003
3442
  id: z.ZodString;
3004
3443
  parent: z.ZodOptional<z.ZodObject<{
@@ -3010,6 +3449,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
3010
3449
  }>>;
3011
3450
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
3012
3451
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3452
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3013
3453
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
3014
3454
  id: string;
3015
3455
  description: string;
@@ -3069,6 +3509,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
3069
3509
  type: "DISPLAY_ON_REVIEW";
3070
3510
  conditional: import(".").JSONSchema;
3071
3511
  })[] | undefined;
3512
+ secured?: boolean | undefined;
3072
3513
  placeholder?: TranslationConfig | undefined;
3073
3514
  helperText?: TranslationConfig | undefined;
3074
3515
  hideLabel?: boolean | undefined;
@@ -3103,6 +3544,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
3103
3544
  type: "DISPLAY_ON_REVIEW";
3104
3545
  conditional: import(".").JSONSchema;
3105
3546
  })[] | undefined;
3547
+ secured?: boolean | undefined;
3106
3548
  placeholder?: {
3107
3549
  id: string;
3108
3550
  description: string;
@@ -3126,6 +3568,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
3126
3568
  }>>;
3127
3569
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
3128
3570
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3571
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3129
3572
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
3130
3573
  id: string;
3131
3574
  description: string;
@@ -3185,6 +3628,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
3185
3628
  type: "DISPLAY_ON_REVIEW";
3186
3629
  conditional: import(".").JSONSchema;
3187
3630
  })[] | undefined;
3631
+ secured?: boolean | undefined;
3188
3632
  placeholder?: TranslationConfig | undefined;
3189
3633
  helperText?: TranslationConfig | undefined;
3190
3634
  hideLabel?: boolean | undefined;
@@ -3219,6 +3663,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
3219
3663
  type: "DISPLAY_ON_REVIEW";
3220
3664
  conditional: import(".").JSONSchema;
3221
3665
  })[] | undefined;
3666
+ secured?: boolean | undefined;
3222
3667
  placeholder?: {
3223
3668
  id: string;
3224
3669
  description: string;
@@ -3242,6 +3687,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
3242
3687
  }>>;
3243
3688
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
3244
3689
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3690
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3245
3691
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
3246
3692
  id: string;
3247
3693
  description: string;
@@ -3321,6 +3767,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
3321
3767
  type: "DISPLAY_ON_REVIEW";
3322
3768
  conditional: import(".").JSONSchema;
3323
3769
  })[] | undefined;
3770
+ secured?: boolean | undefined;
3324
3771
  placeholder?: TranslationConfig | undefined;
3325
3772
  helperText?: TranslationConfig | undefined;
3326
3773
  hideLabel?: boolean | undefined;
@@ -3360,6 +3807,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
3360
3807
  type: "DISPLAY_ON_REVIEW";
3361
3808
  conditional: import(".").JSONSchema;
3362
3809
  })[] | undefined;
3810
+ secured?: boolean | undefined;
3363
3811
  placeholder?: {
3364
3812
  id: string;
3365
3813
  description: string;
@@ -3387,6 +3835,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
3387
3835
  }>>;
3388
3836
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
3389
3837
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3838
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3390
3839
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
3391
3840
  id: string;
3392
3841
  description: string;
@@ -3453,6 +3902,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
3453
3902
  type: "DISPLAY_ON_REVIEW";
3454
3903
  conditional: import(".").JSONSchema;
3455
3904
  })[] | undefined;
3905
+ secured?: boolean | undefined;
3456
3906
  placeholder?: TranslationConfig | undefined;
3457
3907
  helperText?: TranslationConfig | undefined;
3458
3908
  hideLabel?: boolean | undefined;
@@ -3490,6 +3940,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
3490
3940
  type: "DISPLAY_ON_REVIEW";
3491
3941
  conditional: import(".").JSONSchema;
3492
3942
  })[] | undefined;
3943
+ secured?: boolean | undefined;
3493
3944
  placeholder?: {
3494
3945
  id: string;
3495
3946
  description: string;
@@ -3516,6 +3967,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
3516
3967
  }>>;
3517
3968
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
3518
3969
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3970
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3519
3971
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
3520
3972
  id: string;
3521
3973
  description: string;
@@ -3571,19 +4023,19 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
3571
4023
  };
3572
4024
  }>, "many">;
3573
4025
  defaultValue: z.ZodOptional<z.ZodArray<z.ZodObject<{
3574
- filename: z.ZodString;
4026
+ path: z.ZodEffects<z.ZodString, string, string>;
3575
4027
  originalFilename: z.ZodString;
3576
4028
  type: z.ZodString;
3577
4029
  option: z.ZodString;
3578
4030
  }, "strip", z.ZodTypeAny, {
3579
4031
  type: string;
3580
4032
  option: string;
3581
- filename: string;
4033
+ path: string;
3582
4034
  originalFilename: string;
3583
4035
  }, {
3584
4036
  type: string;
3585
4037
  option: string;
3586
- filename: string;
4038
+ path: string;
3587
4039
  originalFilename: string;
3588
4040
  }>, "many">>;
3589
4041
  configuration: z.ZodDefault<z.ZodObject<{
@@ -3626,13 +4078,14 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
3626
4078
  type: "DISPLAY_ON_REVIEW";
3627
4079
  conditional: import(".").JSONSchema;
3628
4080
  })[] | undefined;
4081
+ secured?: boolean | undefined;
3629
4082
  placeholder?: TranslationConfig | undefined;
3630
4083
  helperText?: TranslationConfig | undefined;
3631
4084
  hideLabel?: boolean | undefined;
3632
4085
  defaultValue?: {
3633
4086
  type: string;
3634
4087
  option: string;
3635
- filename: string;
4088
+ path: string;
3636
4089
  originalFilename: string;
3637
4090
  }[] | undefined;
3638
4091
  }, {
@@ -3673,6 +4126,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
3673
4126
  type: "DISPLAY_ON_REVIEW";
3674
4127
  conditional: import(".").JSONSchema;
3675
4128
  })[] | undefined;
4129
+ secured?: boolean | undefined;
3676
4130
  placeholder?: {
3677
4131
  id: string;
3678
4132
  description: string;
@@ -3687,7 +4141,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
3687
4141
  defaultValue?: {
3688
4142
  type: string;
3689
4143
  option: string;
3690
- filename: string;
4144
+ path: string;
3691
4145
  originalFilename: string;
3692
4146
  }[] | undefined;
3693
4147
  configuration?: {
@@ -3705,6 +4159,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
3705
4159
  }>>;
3706
4160
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
3707
4161
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
4162
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3708
4163
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
3709
4164
  id: string;
3710
4165
  description: string;
@@ -3839,6 +4294,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
3839
4294
  type: "DISPLAY_ON_REVIEW";
3840
4295
  conditional: import(".").JSONSchema;
3841
4296
  })[] | undefined;
4297
+ secured?: boolean | undefined;
3842
4298
  placeholder?: TranslationConfig | undefined;
3843
4299
  helperText?: TranslationConfig | undefined;
3844
4300
  hideLabel?: boolean | undefined;
@@ -3893,6 +4349,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
3893
4349
  type: "DISPLAY_ON_REVIEW";
3894
4350
  conditional: import(".").JSONSchema;
3895
4351
  })[] | undefined;
4352
+ secured?: boolean | undefined;
3896
4353
  placeholder?: {
3897
4354
  id: string;
3898
4355
  description: string;
@@ -3934,6 +4391,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
3934
4391
  type: "DISPLAY_ON_REVIEW";
3935
4392
  conditional: import(".").JSONSchema;
3936
4393
  })[] | undefined;
4394
+ secured?: boolean | undefined;
3937
4395
  placeholder?: TranslationConfig | undefined;
3938
4396
  helperText?: TranslationConfig | undefined;
3939
4397
  hideLabel?: boolean | undefined;
@@ -3959,6 +4417,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
3959
4417
  type: "DISPLAY_ON_REVIEW";
3960
4418
  conditional: import(".").JSONSchema;
3961
4419
  })[] | undefined;
4420
+ secured?: boolean | undefined;
3962
4421
  placeholder?: TranslationConfig | undefined;
3963
4422
  helperText?: TranslationConfig | undefined;
3964
4423
  hideLabel?: boolean | undefined;
@@ -3991,6 +4450,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
3991
4450
  type: "DISPLAY_ON_REVIEW";
3992
4451
  conditional: import(".").JSONSchema;
3993
4452
  })[] | undefined;
4453
+ secured?: boolean | undefined;
3994
4454
  placeholder?: TranslationConfig | undefined;
3995
4455
  helperText?: TranslationConfig | undefined;
3996
4456
  hideLabel?: boolean | undefined;
@@ -4023,6 +4483,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
4023
4483
  type: "DISPLAY_ON_REVIEW";
4024
4484
  conditional: import(".").JSONSchema;
4025
4485
  })[] | undefined;
4486
+ secured?: boolean | undefined;
4026
4487
  placeholder?: TranslationConfig | undefined;
4027
4488
  helperText?: TranslationConfig | undefined;
4028
4489
  hideLabel?: boolean | undefined;
@@ -4061,6 +4522,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
4061
4522
  type: "DISPLAY_ON_REVIEW";
4062
4523
  conditional: import(".").JSONSchema;
4063
4524
  })[] | undefined;
4525
+ secured?: boolean | undefined;
4064
4526
  placeholder?: TranslationConfig | undefined;
4065
4527
  helperText?: TranslationConfig | undefined;
4066
4528
  hideLabel?: boolean | undefined;
@@ -4087,6 +4549,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
4087
4549
  type: "DISPLAY_ON_REVIEW";
4088
4550
  conditional: import(".").JSONSchema;
4089
4551
  })[] | undefined;
4552
+ secured?: boolean | undefined;
4090
4553
  placeholder?: TranslationConfig | undefined;
4091
4554
  helperText?: TranslationConfig | undefined;
4092
4555
  hideLabel?: boolean | undefined;
@@ -4116,6 +4579,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
4116
4579
  type: "DISPLAY_ON_REVIEW";
4117
4580
  conditional: import(".").JSONSchema;
4118
4581
  })[] | undefined;
4582
+ secured?: boolean | undefined;
4119
4583
  placeholder?: TranslationConfig | undefined;
4120
4584
  helperText?: TranslationConfig | undefined;
4121
4585
  hideLabel?: boolean | undefined;
@@ -4145,10 +4609,14 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
4145
4609
  type: "DISPLAY_ON_REVIEW";
4146
4610
  conditional: import(".").JSONSchema;
4147
4611
  })[] | undefined;
4612
+ secured?: boolean | undefined;
4148
4613
  placeholder?: TranslationConfig | undefined;
4149
4614
  helperText?: TranslationConfig | undefined;
4150
4615
  hideLabel?: boolean | undefined;
4151
- defaultValue?: string | [string, string] | undefined;
4616
+ defaultValue?: string | {
4617
+ start: string;
4618
+ end: string;
4619
+ } | undefined;
4152
4620
  configuration?: {
4153
4621
  notice?: TranslationConfig | undefined;
4154
4622
  } | undefined;
@@ -4179,6 +4647,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
4179
4647
  type: "DISPLAY_ON_REVIEW";
4180
4648
  conditional: import(".").JSONSchema;
4181
4649
  })[] | undefined;
4650
+ secured?: boolean | undefined;
4182
4651
  placeholder?: TranslationConfig | undefined;
4183
4652
  helperText?: TranslationConfig | undefined;
4184
4653
  hideLabel?: boolean | undefined;
@@ -4205,6 +4674,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
4205
4674
  type: "DISPLAY_ON_REVIEW";
4206
4675
  conditional: import(".").JSONSchema;
4207
4676
  })[] | undefined;
4677
+ secured?: boolean | undefined;
4208
4678
  placeholder?: TranslationConfig | undefined;
4209
4679
  helperText?: TranslationConfig | undefined;
4210
4680
  hideLabel?: boolean | undefined;
@@ -4239,12 +4709,13 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
4239
4709
  type: "DISPLAY_ON_REVIEW";
4240
4710
  conditional: import(".").JSONSchema;
4241
4711
  })[] | undefined;
4712
+ secured?: boolean | undefined;
4242
4713
  placeholder?: TranslationConfig | undefined;
4243
4714
  helperText?: TranslationConfig | undefined;
4244
4715
  hideLabel?: boolean | undefined;
4245
4716
  defaultValue?: {
4246
4717
  type: string;
4247
- filename: string;
4718
+ path: string;
4248
4719
  originalFilename: string;
4249
4720
  } | undefined;
4250
4721
  } | {
@@ -4273,6 +4744,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
4273
4744
  type: "DISPLAY_ON_REVIEW";
4274
4745
  conditional: import(".").JSONSchema;
4275
4746
  })[] | undefined;
4747
+ secured?: boolean | undefined;
4276
4748
  placeholder?: TranslationConfig | undefined;
4277
4749
  helperText?: TranslationConfig | undefined;
4278
4750
  hideLabel?: boolean | undefined;
@@ -4310,6 +4782,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
4310
4782
  type: "DISPLAY_ON_REVIEW";
4311
4783
  conditional: import(".").JSONSchema;
4312
4784
  })[] | undefined;
4785
+ secured?: boolean | undefined;
4313
4786
  placeholder?: TranslationConfig | undefined;
4314
4787
  helperText?: TranslationConfig | undefined;
4315
4788
  hideLabel?: boolean | undefined;
@@ -4340,10 +4813,42 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
4340
4813
  type: "DISPLAY_ON_REVIEW";
4341
4814
  conditional: import(".").JSONSchema;
4342
4815
  })[] | undefined;
4816
+ secured?: boolean | undefined;
4343
4817
  placeholder?: TranslationConfig | undefined;
4344
4818
  helperText?: TranslationConfig | undefined;
4345
4819
  hideLabel?: boolean | undefined;
4346
4820
  defaultValue?: string | undefined;
4821
+ } | {
4822
+ type: "SELECT_DATE_RANGE";
4823
+ id: string;
4824
+ options: {
4825
+ value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
4826
+ label: TranslationConfig;
4827
+ }[];
4828
+ label: TranslationConfig;
4829
+ parent?: {
4830
+ $$field: string;
4831
+ } | undefined;
4832
+ validation?: {
4833
+ message: TranslationConfig;
4834
+ validator: import(".").JSONSchema;
4835
+ }[] | undefined;
4836
+ required?: boolean | undefined;
4837
+ conditionals?: ({
4838
+ type: "SHOW";
4839
+ conditional: import(".").JSONSchema;
4840
+ } | {
4841
+ type: "ENABLE";
4842
+ conditional: import(".").JSONSchema;
4843
+ } | {
4844
+ type: "DISPLAY_ON_REVIEW";
4845
+ conditional: import(".").JSONSchema;
4846
+ })[] | undefined;
4847
+ secured?: boolean | undefined;
4848
+ placeholder?: TranslationConfig | undefined;
4849
+ helperText?: TranslationConfig | undefined;
4850
+ hideLabel?: boolean | undefined;
4851
+ defaultValue?: "last7Days" | "last30Days" | "last90Days" | "last365Days" | undefined;
4347
4852
  } | {
4348
4853
  type: "NAME";
4349
4854
  id: string;
@@ -4366,14 +4871,31 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
4366
4871
  type: "DISPLAY_ON_REVIEW";
4367
4872
  conditional: import(".").JSONSchema;
4368
4873
  })[] | undefined;
4874
+ secured?: boolean | undefined;
4369
4875
  placeholder?: TranslationConfig | undefined;
4370
4876
  helperText?: TranslationConfig | undefined;
4371
4877
  hideLabel?: boolean | undefined;
4372
4878
  defaultValue?: {
4373
- firstname: string;
4374
- surname: string;
4879
+ firstname?: string | undefined;
4880
+ surname?: string | undefined;
4881
+ middlename?: string | undefined;
4375
4882
  } | undefined;
4376
4883
  configuration?: {
4884
+ name?: {
4885
+ firstname?: {
4886
+ required: boolean;
4887
+ label?: TranslationConfig | undefined;
4888
+ } | undefined;
4889
+ surname?: {
4890
+ required: boolean;
4891
+ label?: TranslationConfig | undefined;
4892
+ } | undefined;
4893
+ middlename?: {
4894
+ required: boolean;
4895
+ label?: TranslationConfig | undefined;
4896
+ } | undefined;
4897
+ } | undefined;
4898
+ order?: ("firstname" | "surname" | "middlename")[] | undefined;
4377
4899
  maxLength?: number | undefined;
4378
4900
  prefix?: TranslationConfig | undefined;
4379
4901
  postfix?: TranslationConfig | undefined;
@@ -4400,6 +4922,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
4400
4922
  type: "DISPLAY_ON_REVIEW";
4401
4923
  conditional: import(".").JSONSchema;
4402
4924
  })[] | undefined;
4925
+ secured?: boolean | undefined;
4403
4926
  placeholder?: TranslationConfig | undefined;
4404
4927
  helperText?: TranslationConfig | undefined;
4405
4928
  hideLabel?: boolean | undefined;
@@ -4426,6 +4949,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
4426
4949
  type: "DISPLAY_ON_REVIEW";
4427
4950
  conditional: import(".").JSONSchema;
4428
4951
  })[] | undefined;
4952
+ secured?: boolean | undefined;
4429
4953
  placeholder?: TranslationConfig | undefined;
4430
4954
  helperText?: TranslationConfig | undefined;
4431
4955
  hideLabel?: boolean | undefined;
@@ -4452,6 +4976,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
4452
4976
  type: "DISPLAY_ON_REVIEW";
4453
4977
  conditional: import(".").JSONSchema;
4454
4978
  })[] | undefined;
4979
+ secured?: boolean | undefined;
4455
4980
  placeholder?: TranslationConfig | undefined;
4456
4981
  helperText?: TranslationConfig | undefined;
4457
4982
  hideLabel?: boolean | undefined;
@@ -4478,6 +5003,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
4478
5003
  type: "DISPLAY_ON_REVIEW";
4479
5004
  conditional: import(".").JSONSchema;
4480
5005
  })[] | undefined;
5006
+ secured?: boolean | undefined;
4481
5007
  placeholder?: TranslationConfig | undefined;
4482
5008
  helperText?: TranslationConfig | undefined;
4483
5009
  hideLabel?: boolean | undefined;
@@ -4510,6 +5036,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
4510
5036
  type: "DISPLAY_ON_REVIEW";
4511
5037
  conditional: import(".").JSONSchema;
4512
5038
  })[] | undefined;
5039
+ secured?: boolean | undefined;
4513
5040
  placeholder?: TranslationConfig | undefined;
4514
5041
  helperText?: TranslationConfig | undefined;
4515
5042
  hideLabel?: boolean | undefined;
@@ -4536,10 +5063,14 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
4536
5063
  type: "DISPLAY_ON_REVIEW";
4537
5064
  conditional: import(".").JSONSchema;
4538
5065
  })[] | undefined;
5066
+ secured?: boolean | undefined;
4539
5067
  placeholder?: TranslationConfig | undefined;
4540
5068
  helperText?: TranslationConfig | undefined;
4541
5069
  hideLabel?: boolean | undefined;
4542
5070
  defaultValue?: string | undefined;
5071
+ configuration?: {
5072
+ searchableResource?: ("locations" | "facilities" | "offices")[] | undefined;
5073
+ } | undefined;
4543
5074
  } | {
4544
5075
  type: "FILE_WITH_OPTIONS";
4545
5076
  id: string;
@@ -4570,13 +5101,14 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
4570
5101
  type: "DISPLAY_ON_REVIEW";
4571
5102
  conditional: import(".").JSONSchema;
4572
5103
  })[] | undefined;
5104
+ secured?: boolean | undefined;
4573
5105
  placeholder?: TranslationConfig | undefined;
4574
5106
  helperText?: TranslationConfig | undefined;
4575
5107
  hideLabel?: boolean | undefined;
4576
5108
  defaultValue?: {
4577
5109
  type: string;
4578
5110
  option: string;
4579
- filename: string;
5111
+ path: string;
4580
5112
  originalFilename: string;
4581
5113
  }[] | undefined;
4582
5114
  } | {
@@ -4601,6 +5133,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
4601
5133
  type: "DISPLAY_ON_REVIEW";
4602
5134
  conditional: import(".").JSONSchema;
4603
5135
  })[] | undefined;
5136
+ secured?: boolean | undefined;
4604
5137
  placeholder?: TranslationConfig | undefined;
4605
5138
  helperText?: TranslationConfig | undefined;
4606
5139
  hideLabel?: boolean | undefined;
@@ -4627,6 +5160,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
4627
5160
  type: "DISPLAY_ON_REVIEW";
4628
5161
  conditional: import(".").JSONSchema;
4629
5162
  })[] | undefined;
5163
+ secured?: boolean | undefined;
4630
5164
  placeholder?: TranslationConfig | undefined;
4631
5165
  helperText?: TranslationConfig | undefined;
4632
5166
  hideLabel?: boolean | undefined;
@@ -4653,6 +5187,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
4653
5187
  type: "DISPLAY_ON_REVIEW";
4654
5188
  conditional: import(".").JSONSchema;
4655
5189
  })[] | undefined;
5190
+ secured?: boolean | undefined;
4656
5191
  placeholder?: TranslationConfig | undefined;
4657
5192
  helperText?: TranslationConfig | undefined;
4658
5193
  hideLabel?: boolean | undefined;
@@ -4685,6 +5220,10 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
4685
5220
  addressLine3?: string | undefined;
4686
5221
  postcodeOrZip?: string | undefined;
4687
5222
  } | undefined;
5223
+ configuration?: {
5224
+ lineSeparator?: string | undefined;
5225
+ fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
5226
+ } | undefined;
4688
5227
  } | {
4689
5228
  type: "DATA";
4690
5229
  id: string;
@@ -4716,6 +5255,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
4716
5255
  type: "DISPLAY_ON_REVIEW";
4717
5256
  conditional: import(".").JSONSchema;
4718
5257
  })[] | undefined;
5258
+ secured?: boolean | undefined;
4719
5259
  placeholder?: TranslationConfig | undefined;
4720
5260
  helperText?: TranslationConfig | undefined;
4721
5261
  hideLabel?: boolean | undefined;
@@ -4758,6 +5298,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
4758
5298
  type: "DISPLAY_ON_REVIEW";
4759
5299
  conditional: import(".").JSONSchema;
4760
5300
  })[] | undefined;
5301
+ secured?: boolean | undefined;
4761
5302
  placeholder?: {
4762
5303
  id: string;
4763
5304
  description: string;
@@ -4799,6 +5340,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
4799
5340
  type: "DISPLAY_ON_REVIEW";
4800
5341
  conditional: import(".").JSONSchema;
4801
5342
  })[] | undefined;
5343
+ secured?: boolean | undefined;
4802
5344
  placeholder?: {
4803
5345
  id: string;
4804
5346
  description: string;
@@ -4855,6 +5397,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
4855
5397
  type: "DISPLAY_ON_REVIEW";
4856
5398
  conditional: import(".").JSONSchema;
4857
5399
  })[] | undefined;
5400
+ secured?: boolean | undefined;
4858
5401
  placeholder?: {
4859
5402
  id: string;
4860
5403
  description: string;
@@ -4911,6 +5454,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
4911
5454
  type: "DISPLAY_ON_REVIEW";
4912
5455
  conditional: import(".").JSONSchema;
4913
5456
  })[] | undefined;
5457
+ secured?: boolean | undefined;
4914
5458
  placeholder?: {
4915
5459
  id: string;
4916
5460
  description: string;
@@ -4973,6 +5517,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
4973
5517
  type: "DISPLAY_ON_REVIEW";
4974
5518
  conditional: import(".").JSONSchema;
4975
5519
  })[] | undefined;
5520
+ secured?: boolean | undefined;
4976
5521
  placeholder?: {
4977
5522
  id: string;
4978
5523
  description: string;
@@ -5019,6 +5564,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
5019
5564
  type: "DISPLAY_ON_REVIEW";
5020
5565
  conditional: import(".").JSONSchema;
5021
5566
  })[] | undefined;
5567
+ secured?: boolean | undefined;
5022
5568
  placeholder?: {
5023
5569
  id: string;
5024
5570
  description: string;
@@ -5064,6 +5610,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
5064
5610
  type: "DISPLAY_ON_REVIEW";
5065
5611
  conditional: import(".").JSONSchema;
5066
5612
  })[] | undefined;
5613
+ secured?: boolean | undefined;
5067
5614
  placeholder?: {
5068
5615
  id: string;
5069
5616
  description: string;
@@ -5113,6 +5660,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
5113
5660
  type: "DISPLAY_ON_REVIEW";
5114
5661
  conditional: import(".").JSONSchema;
5115
5662
  })[] | undefined;
5663
+ secured?: boolean | undefined;
5116
5664
  placeholder?: {
5117
5665
  id: string;
5118
5666
  description: string;
@@ -5124,7 +5672,10 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
5124
5672
  defaultMessage: string;
5125
5673
  } | undefined;
5126
5674
  hideLabel?: boolean | undefined;
5127
- defaultValue?: string | [string, string] | undefined;
5675
+ defaultValue?: string | {
5676
+ start: string;
5677
+ end: string;
5678
+ } | undefined;
5128
5679
  configuration?: {
5129
5680
  notice?: {
5130
5681
  id: string;
@@ -5162,6 +5713,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
5162
5713
  type: "DISPLAY_ON_REVIEW";
5163
5714
  conditional: import(".").JSONSchema;
5164
5715
  })[] | undefined;
5716
+ secured?: boolean | undefined;
5165
5717
  placeholder?: {
5166
5718
  id: string;
5167
5719
  description: string;
@@ -5209,6 +5761,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
5209
5761
  type: "DISPLAY_ON_REVIEW";
5210
5762
  conditional: import(".").JSONSchema;
5211
5763
  })[] | undefined;
5764
+ secured?: boolean | undefined;
5212
5765
  placeholder?: {
5213
5766
  id: string;
5214
5767
  description: string;
@@ -5251,6 +5804,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
5251
5804
  type: "DISPLAY_ON_REVIEW";
5252
5805
  conditional: import(".").JSONSchema;
5253
5806
  })[] | undefined;
5807
+ secured?: boolean | undefined;
5254
5808
  placeholder?: {
5255
5809
  id: string;
5256
5810
  description: string;
@@ -5264,7 +5818,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
5264
5818
  hideLabel?: boolean | undefined;
5265
5819
  defaultValue?: {
5266
5820
  type: string;
5267
- filename: string;
5821
+ path: string;
5268
5822
  originalFilename: string;
5269
5823
  } | undefined;
5270
5824
  configuration?: {
@@ -5317,6 +5871,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
5317
5871
  type: "DISPLAY_ON_REVIEW";
5318
5872
  conditional: import(".").JSONSchema;
5319
5873
  })[] | undefined;
5874
+ secured?: boolean | undefined;
5320
5875
  placeholder?: {
5321
5876
  id: string;
5322
5877
  description: string;
@@ -5369,6 +5924,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
5369
5924
  type: "DISPLAY_ON_REVIEW";
5370
5925
  conditional: import(".").JSONSchema;
5371
5926
  })[] | undefined;
5927
+ secured?: boolean | undefined;
5372
5928
  placeholder?: {
5373
5929
  id: string;
5374
5930
  description: string;
@@ -5424,6 +5980,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
5424
5980
  type: "DISPLAY_ON_REVIEW";
5425
5981
  conditional: import(".").JSONSchema;
5426
5982
  })[] | undefined;
5983
+ secured?: boolean | undefined;
5427
5984
  placeholder?: {
5428
5985
  id: string;
5429
5986
  description: string;
@@ -5436,6 +5993,57 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
5436
5993
  } | undefined;
5437
5994
  hideLabel?: boolean | undefined;
5438
5995
  defaultValue?: string | undefined;
5996
+ } | {
5997
+ type: "SELECT_DATE_RANGE";
5998
+ id: string;
5999
+ options: {
6000
+ value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
6001
+ label: {
6002
+ id: string;
6003
+ description: string;
6004
+ defaultMessage: string;
6005
+ };
6006
+ }[];
6007
+ label: {
6008
+ id: string;
6009
+ description: string;
6010
+ defaultMessage: string;
6011
+ };
6012
+ parent?: {
6013
+ $$field: string;
6014
+ } | undefined;
6015
+ validation?: {
6016
+ message: {
6017
+ id: string;
6018
+ description: string;
6019
+ defaultMessage: string;
6020
+ };
6021
+ validator: import(".").JSONSchema;
6022
+ }[] | undefined;
6023
+ required?: boolean | undefined;
6024
+ conditionals?: ({
6025
+ type: "SHOW";
6026
+ conditional: import(".").JSONSchema;
6027
+ } | {
6028
+ type: "ENABLE";
6029
+ conditional: import(".").JSONSchema;
6030
+ } | {
6031
+ type: "DISPLAY_ON_REVIEW";
6032
+ conditional: import(".").JSONSchema;
6033
+ })[] | undefined;
6034
+ secured?: boolean | undefined;
6035
+ placeholder?: {
6036
+ id: string;
6037
+ description: string;
6038
+ defaultMessage: string;
6039
+ } | undefined;
6040
+ helperText?: {
6041
+ id: string;
6042
+ description: string;
6043
+ defaultMessage: string;
6044
+ } | undefined;
6045
+ hideLabel?: boolean | undefined;
6046
+ defaultValue?: "last7Days" | "last30Days" | "last90Days" | "last365Days" | undefined;
5439
6047
  } | {
5440
6048
  type: "NAME";
5441
6049
  id: string;
@@ -5466,6 +6074,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
5466
6074
  type: "DISPLAY_ON_REVIEW";
5467
6075
  conditional: import(".").JSONSchema;
5468
6076
  })[] | undefined;
6077
+ secured?: boolean | undefined;
5469
6078
  placeholder?: {
5470
6079
  id: string;
5471
6080
  description: string;
@@ -5478,10 +6087,38 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
5478
6087
  } | undefined;
5479
6088
  hideLabel?: boolean | undefined;
5480
6089
  defaultValue?: {
5481
- firstname: string;
5482
- surname: string;
6090
+ firstname?: string | undefined;
6091
+ surname?: string | undefined;
6092
+ middlename?: string | undefined;
5483
6093
  } | undefined;
5484
6094
  configuration?: {
6095
+ name?: {
6096
+ firstname?: {
6097
+ required: boolean;
6098
+ label?: {
6099
+ id: string;
6100
+ description: string;
6101
+ defaultMessage: string;
6102
+ } | undefined;
6103
+ } | undefined;
6104
+ surname?: {
6105
+ required: boolean;
6106
+ label?: {
6107
+ id: string;
6108
+ description: string;
6109
+ defaultMessage: string;
6110
+ } | undefined;
6111
+ } | undefined;
6112
+ middlename?: {
6113
+ required: boolean;
6114
+ label?: {
6115
+ id: string;
6116
+ description: string;
6117
+ defaultMessage: string;
6118
+ } | undefined;
6119
+ } | undefined;
6120
+ } | undefined;
6121
+ order?: ("firstname" | "surname" | "middlename")[] | undefined;
5485
6122
  maxLength?: number | undefined;
5486
6123
  prefix?: {
5487
6124
  id: string;
@@ -5524,6 +6161,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
5524
6161
  type: "DISPLAY_ON_REVIEW";
5525
6162
  conditional: import(".").JSONSchema;
5526
6163
  })[] | undefined;
6164
+ secured?: boolean | undefined;
5527
6165
  placeholder?: {
5528
6166
  id: string;
5529
6167
  description: string;
@@ -5566,6 +6204,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
5566
6204
  type: "DISPLAY_ON_REVIEW";
5567
6205
  conditional: import(".").JSONSchema;
5568
6206
  })[] | undefined;
6207
+ secured?: boolean | undefined;
5569
6208
  placeholder?: {
5570
6209
  id: string;
5571
6210
  description: string;
@@ -5608,6 +6247,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
5608
6247
  type: "DISPLAY_ON_REVIEW";
5609
6248
  conditional: import(".").JSONSchema;
5610
6249
  })[] | undefined;
6250
+ secured?: boolean | undefined;
5611
6251
  placeholder?: {
5612
6252
  id: string;
5613
6253
  description: string;
@@ -5650,6 +6290,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
5650
6290
  type: "DISPLAY_ON_REVIEW";
5651
6291
  conditional: import(".").JSONSchema;
5652
6292
  })[] | undefined;
6293
+ secured?: boolean | undefined;
5653
6294
  placeholder?: {
5654
6295
  id: string;
5655
6296
  description: string;
@@ -5698,6 +6339,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
5698
6339
  type: "DISPLAY_ON_REVIEW";
5699
6340
  conditional: import(".").JSONSchema;
5700
6341
  })[] | undefined;
6342
+ secured?: boolean | undefined;
5701
6343
  placeholder?: {
5702
6344
  id: string;
5703
6345
  description: string;
@@ -5740,6 +6382,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
5740
6382
  type: "DISPLAY_ON_REVIEW";
5741
6383
  conditional: import(".").JSONSchema;
5742
6384
  })[] | undefined;
6385
+ secured?: boolean | undefined;
5743
6386
  placeholder?: {
5744
6387
  id: string;
5745
6388
  description: string;
@@ -5752,6 +6395,9 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
5752
6395
  } | undefined;
5753
6396
  hideLabel?: boolean | undefined;
5754
6397
  defaultValue?: string | undefined;
6398
+ configuration?: {
6399
+ searchableResource?: ("locations" | "facilities" | "offices")[] | undefined;
6400
+ } | undefined;
5755
6401
  } | {
5756
6402
  type: "FILE_WITH_OPTIONS";
5757
6403
  id: string;
@@ -5790,6 +6436,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
5790
6436
  type: "DISPLAY_ON_REVIEW";
5791
6437
  conditional: import(".").JSONSchema;
5792
6438
  })[] | undefined;
6439
+ secured?: boolean | undefined;
5793
6440
  placeholder?: {
5794
6441
  id: string;
5795
6442
  description: string;
@@ -5804,7 +6451,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
5804
6451
  defaultValue?: {
5805
6452
  type: string;
5806
6453
  option: string;
5807
- filename: string;
6454
+ path: string;
5808
6455
  originalFilename: string;
5809
6456
  }[] | undefined;
5810
6457
  configuration?: {
@@ -5841,6 +6488,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
5841
6488
  type: "DISPLAY_ON_REVIEW";
5842
6489
  conditional: import(".").JSONSchema;
5843
6490
  })[] | undefined;
6491
+ secured?: boolean | undefined;
5844
6492
  placeholder?: {
5845
6493
  id: string;
5846
6494
  description: string;
@@ -5883,6 +6531,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
5883
6531
  type: "DISPLAY_ON_REVIEW";
5884
6532
  conditional: import(".").JSONSchema;
5885
6533
  })[] | undefined;
6534
+ secured?: boolean | undefined;
5886
6535
  placeholder?: {
5887
6536
  id: string;
5888
6537
  description: string;
@@ -5925,6 +6574,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
5925
6574
  type: "DISPLAY_ON_REVIEW";
5926
6575
  conditional: import(".").JSONSchema;
5927
6576
  })[] | undefined;
6577
+ secured?: boolean | undefined;
5928
6578
  placeholder?: {
5929
6579
  id: string;
5930
6580
  description: string;
@@ -5965,6 +6615,10 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
5965
6615
  addressLine3?: string | undefined;
5966
6616
  postcodeOrZip?: string | undefined;
5967
6617
  } | undefined;
6618
+ configuration?: {
6619
+ lineSeparator?: string | undefined;
6620
+ fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
6621
+ } | undefined;
5968
6622
  } | {
5969
6623
  type: "DATA";
5970
6624
  id: string;
@@ -6016,6 +6670,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
6016
6670
  type: "DISPLAY_ON_REVIEW";
6017
6671
  conditional: import(".").JSONSchema;
6018
6672
  })[] | undefined;
6673
+ secured?: boolean | undefined;
6019
6674
  placeholder?: {
6020
6675
  id: string;
6021
6676
  description: string;
@@ -6163,6 +6818,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
6163
6818
  }>>;
6164
6819
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
6165
6820
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
6821
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
6166
6822
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
6167
6823
  id: string;
6168
6824
  description: string;
@@ -6199,6 +6855,16 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
6199
6855
  hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
6200
6856
  }, {
6201
6857
  type: z.ZodLiteral<"ADDRESS">;
6858
+ configuration: z.ZodOptional<z.ZodObject<{
6859
+ lineSeparator: z.ZodOptional<z.ZodString>;
6860
+ fields: z.ZodOptional<z.ZodArray<z.ZodEnum<["number", "country", "province", "addressType", "district", "urbanOrRural", "town", "residentialArea", "street", "zipCode", "village", "state", "district2", "cityOrTown", "addressLine1", "addressLine2", "addressLine3", "postcodeOrZip"]>, "many">>;
6861
+ }, "strip", z.ZodTypeAny, {
6862
+ lineSeparator?: string | undefined;
6863
+ fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
6864
+ }, {
6865
+ lineSeparator?: string | undefined;
6866
+ fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
6867
+ }>>;
6202
6868
  defaultValue: z.ZodOptional<z.ZodUnion<[z.ZodDiscriminatedUnion<"urbanOrRural", [z.ZodObject<z.objectUtil.extendShape<{
6203
6869
  country: z.ZodString;
6204
6870
  addressType: z.ZodLiteral<"DOMESTIC">;
@@ -6308,6 +6974,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
6308
6974
  type: "DISPLAY_ON_REVIEW";
6309
6975
  conditional: import(".").JSONSchema;
6310
6976
  })[] | undefined;
6977
+ secured?: boolean | undefined;
6311
6978
  placeholder?: TranslationConfig | undefined;
6312
6979
  helperText?: TranslationConfig | undefined;
6313
6980
  hideLabel?: boolean | undefined;
@@ -6340,6 +7007,10 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
6340
7007
  addressLine3?: string | undefined;
6341
7008
  postcodeOrZip?: string | undefined;
6342
7009
  } | undefined;
7010
+ configuration?: {
7011
+ lineSeparator?: string | undefined;
7012
+ fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
7013
+ } | undefined;
6343
7014
  }, {
6344
7015
  type: "ADDRESS";
6345
7016
  id: string;
@@ -6370,6 +7041,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
6370
7041
  type: "DISPLAY_ON_REVIEW";
6371
7042
  conditional: import(".").JSONSchema;
6372
7043
  })[] | undefined;
7044
+ secured?: boolean | undefined;
6373
7045
  placeholder?: {
6374
7046
  id: string;
6375
7047
  description: string;
@@ -6410,6 +7082,10 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
6410
7082
  addressLine3?: string | undefined;
6411
7083
  postcodeOrZip?: string | undefined;
6412
7084
  } | undefined;
7085
+ configuration?: {
7086
+ lineSeparator?: string | undefined;
7087
+ fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
7088
+ } | undefined;
6413
7089
  }>, z.ZodObject<z.objectUtil.extendShape<{
6414
7090
  id: z.ZodString;
6415
7091
  parent: z.ZodOptional<z.ZodObject<{
@@ -6421,6 +7097,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
6421
7097
  }>>;
6422
7098
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
6423
7099
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7100
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
6424
7101
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
6425
7102
  id: string;
6426
7103
  description: string;
@@ -6512,6 +7189,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
6512
7189
  type: "DISPLAY_ON_REVIEW";
6513
7190
  conditional: import(".").JSONSchema;
6514
7191
  })[] | undefined;
7192
+ secured?: boolean | undefined;
6515
7193
  placeholder?: TranslationConfig | undefined;
6516
7194
  helperText?: TranslationConfig | undefined;
6517
7195
  hideLabel?: boolean | undefined;
@@ -6552,6 +7230,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
6552
7230
  type: "DISPLAY_ON_REVIEW";
6553
7231
  conditional: import(".").JSONSchema;
6554
7232
  })[] | undefined;
7233
+ secured?: boolean | undefined;
6555
7234
  placeholder?: {
6556
7235
  id: string;
6557
7236
  description: string;
@@ -6589,6 +7268,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
6589
7268
  }>>;
6590
7269
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
6591
7270
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7271
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
6592
7272
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
6593
7273
  id: string;
6594
7274
  description: string;
@@ -6680,6 +7360,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
6680
7360
  type: "DISPLAY_ON_REVIEW";
6681
7361
  conditional: import(".").JSONSchema;
6682
7362
  })[] | undefined;
7363
+ secured?: boolean | undefined;
6683
7364
  placeholder?: TranslationConfig | undefined;
6684
7365
  helperText?: TranslationConfig | undefined;
6685
7366
  hideLabel?: boolean | undefined;
@@ -6720,6 +7401,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
6720
7401
  type: "DISPLAY_ON_REVIEW";
6721
7402
  conditional: import(".").JSONSchema;
6722
7403
  })[] | undefined;
7404
+ secured?: boolean | undefined;
6723
7405
  placeholder?: {
6724
7406
  id: string;
6725
7407
  description: string;
@@ -6757,6 +7439,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
6757
7439
  }>>;
6758
7440
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
6759
7441
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7442
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
6760
7443
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
6761
7444
  id: string;
6762
7445
  description: string;
@@ -6851,6 +7534,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
6851
7534
  type: "DISPLAY_ON_REVIEW";
6852
7535
  conditional: import(".").JSONSchema;
6853
7536
  })[] | undefined;
7537
+ secured?: boolean | undefined;
6854
7538
  placeholder?: TranslationConfig | undefined;
6855
7539
  helperText?: TranslationConfig | undefined;
6856
7540
  hideLabel?: boolean | undefined;
@@ -6892,6 +7576,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
6892
7576
  type: "DISPLAY_ON_REVIEW";
6893
7577
  conditional: import(".").JSONSchema;
6894
7578
  })[] | undefined;
7579
+ secured?: boolean | undefined;
6895
7580
  placeholder?: {
6896
7581
  id: string;
6897
7582
  description: string;
@@ -6930,6 +7615,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
6930
7615
  }>>;
6931
7616
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
6932
7617
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7618
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
6933
7619
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
6934
7620
  id: string;
6935
7621
  description: string;
@@ -7004,6 +7690,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
7004
7690
  type: "DISPLAY_ON_REVIEW";
7005
7691
  conditional: import(".").JSONSchema;
7006
7692
  })[] | undefined;
7693
+ secured?: boolean | undefined;
7007
7694
  placeholder?: TranslationConfig | undefined;
7008
7695
  helperText?: TranslationConfig | undefined;
7009
7696
  hideLabel?: boolean | undefined;
@@ -7041,6 +7728,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
7041
7728
  type: "DISPLAY_ON_REVIEW";
7042
7729
  conditional: import(".").JSONSchema;
7043
7730
  })[] | undefined;
7731
+ secured?: boolean | undefined;
7044
7732
  placeholder?: {
7045
7733
  id: string;
7046
7734
  description: string;
@@ -7071,6 +7759,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
7071
7759
  }>>;
7072
7760
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
7073
7761
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7762
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7074
7763
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
7075
7764
  id: string;
7076
7765
  description: string;
@@ -7107,7 +7796,16 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
7107
7796
  hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7108
7797
  }, {
7109
7798
  type: z.ZodLiteral<"DATE_RANGE">;
7110
- defaultValue: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>>;
7799
+ defaultValue: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
7800
+ start: z.ZodString;
7801
+ end: z.ZodString;
7802
+ }, "strip", z.ZodTypeAny, {
7803
+ start: string;
7804
+ end: string;
7805
+ }, {
7806
+ start: string;
7807
+ end: string;
7808
+ }>, z.ZodString]>>;
7111
7809
  configuration: z.ZodOptional<z.ZodObject<{
7112
7810
  notice: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
7113
7811
  id: string;
@@ -7145,10 +7843,14 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
7145
7843
  type: "DISPLAY_ON_REVIEW";
7146
7844
  conditional: import(".").JSONSchema;
7147
7845
  })[] | undefined;
7846
+ secured?: boolean | undefined;
7148
7847
  placeholder?: TranslationConfig | undefined;
7149
7848
  helperText?: TranslationConfig | undefined;
7150
7849
  hideLabel?: boolean | undefined;
7151
- defaultValue?: string | [string, string] | undefined;
7850
+ defaultValue?: string | {
7851
+ start: string;
7852
+ end: string;
7853
+ } | undefined;
7152
7854
  configuration?: {
7153
7855
  notice?: TranslationConfig | undefined;
7154
7856
  } | undefined;
@@ -7182,6 +7884,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
7182
7884
  type: "DISPLAY_ON_REVIEW";
7183
7885
  conditional: import(".").JSONSchema;
7184
7886
  })[] | undefined;
7887
+ secured?: boolean | undefined;
7185
7888
  placeholder?: {
7186
7889
  id: string;
7187
7890
  description: string;
@@ -7193,7 +7896,10 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
7193
7896
  defaultMessage: string;
7194
7897
  } | undefined;
7195
7898
  hideLabel?: boolean | undefined;
7196
- defaultValue?: string | [string, string] | undefined;
7899
+ defaultValue?: string | {
7900
+ start: string;
7901
+ end: string;
7902
+ } | undefined;
7197
7903
  configuration?: {
7198
7904
  notice?: {
7199
7905
  id: string;
@@ -7212,6 +7918,156 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
7212
7918
  }>>;
7213
7919
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
7214
7920
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7921
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7922
+ placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
7923
+ id: string;
7924
+ description: string;
7925
+ defaultMessage: string;
7926
+ }>>;
7927
+ validation: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodObject<{
7928
+ validator: z.ZodType<import(".").JSONSchema, z.ZodTypeDef, import(".").JSONSchema>;
7929
+ message: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
7930
+ id: string;
7931
+ description: string;
7932
+ defaultMessage: string;
7933
+ }>;
7934
+ }, "strip", z.ZodTypeAny, {
7935
+ message: TranslationConfig;
7936
+ validator: import(".").JSONSchema;
7937
+ }, {
7938
+ message: {
7939
+ id: string;
7940
+ description: string;
7941
+ defaultMessage: string;
7942
+ };
7943
+ validator: import(".").JSONSchema;
7944
+ }>, "many">>>;
7945
+ label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
7946
+ id: string;
7947
+ description: string;
7948
+ defaultMessage: string;
7949
+ }>;
7950
+ helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
7951
+ id: string;
7952
+ description: string;
7953
+ defaultMessage: string;
7954
+ }>>;
7955
+ hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7956
+ }, {
7957
+ type: z.ZodLiteral<"SELECT_DATE_RANGE">;
7958
+ defaultValue: z.ZodOptional<z.ZodEnum<["last7Days", "last30Days", "last90Days", "last365Days"]>>;
7959
+ options: z.ZodArray<z.ZodObject<{
7960
+ value: z.ZodEnum<["last7Days", "last30Days", "last90Days", "last365Days"]>;
7961
+ label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
7962
+ id: string;
7963
+ description: string;
7964
+ defaultMessage: string;
7965
+ }>;
7966
+ }, "strip", z.ZodTypeAny, {
7967
+ value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
7968
+ label: TranslationConfig;
7969
+ }, {
7970
+ value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
7971
+ label: {
7972
+ id: string;
7973
+ description: string;
7974
+ defaultMessage: string;
7975
+ };
7976
+ }>, "many">;
7977
+ }>, "strip", z.ZodTypeAny, {
7978
+ type: "SELECT_DATE_RANGE";
7979
+ id: string;
7980
+ options: {
7981
+ value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
7982
+ label: TranslationConfig;
7983
+ }[];
7984
+ label: TranslationConfig;
7985
+ parent?: {
7986
+ $$field: string;
7987
+ } | undefined;
7988
+ validation?: {
7989
+ message: TranslationConfig;
7990
+ validator: import(".").JSONSchema;
7991
+ }[] | undefined;
7992
+ required?: boolean | undefined;
7993
+ conditionals?: ({
7994
+ type: "SHOW";
7995
+ conditional: import(".").JSONSchema;
7996
+ } | {
7997
+ type: "ENABLE";
7998
+ conditional: import(".").JSONSchema;
7999
+ } | {
8000
+ type: "DISPLAY_ON_REVIEW";
8001
+ conditional: import(".").JSONSchema;
8002
+ })[] | undefined;
8003
+ secured?: boolean | undefined;
8004
+ placeholder?: TranslationConfig | undefined;
8005
+ helperText?: TranslationConfig | undefined;
8006
+ hideLabel?: boolean | undefined;
8007
+ defaultValue?: "last7Days" | "last30Days" | "last90Days" | "last365Days" | undefined;
8008
+ }, {
8009
+ type: "SELECT_DATE_RANGE";
8010
+ id: string;
8011
+ options: {
8012
+ value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
8013
+ label: {
8014
+ id: string;
8015
+ description: string;
8016
+ defaultMessage: string;
8017
+ };
8018
+ }[];
8019
+ label: {
8020
+ id: string;
8021
+ description: string;
8022
+ defaultMessage: string;
8023
+ };
8024
+ parent?: {
8025
+ $$field: string;
8026
+ } | undefined;
8027
+ validation?: {
8028
+ message: {
8029
+ id: string;
8030
+ description: string;
8031
+ defaultMessage: string;
8032
+ };
8033
+ validator: import(".").JSONSchema;
8034
+ }[] | undefined;
8035
+ required?: boolean | undefined;
8036
+ conditionals?: ({
8037
+ type: "SHOW";
8038
+ conditional: import(".").JSONSchema;
8039
+ } | {
8040
+ type: "ENABLE";
8041
+ conditional: import(".").JSONSchema;
8042
+ } | {
8043
+ type: "DISPLAY_ON_REVIEW";
8044
+ conditional: import(".").JSONSchema;
8045
+ })[] | undefined;
8046
+ secured?: boolean | undefined;
8047
+ placeholder?: {
8048
+ id: string;
8049
+ description: string;
8050
+ defaultMessage: string;
8051
+ } | undefined;
8052
+ helperText?: {
8053
+ id: string;
8054
+ description: string;
8055
+ defaultMessage: string;
8056
+ } | undefined;
8057
+ hideLabel?: boolean | undefined;
8058
+ defaultValue?: "last7Days" | "last30Days" | "last90Days" | "last365Days" | undefined;
8059
+ }>, z.ZodObject<z.objectUtil.extendShape<{
8060
+ id: z.ZodString;
8061
+ parent: z.ZodOptional<z.ZodObject<{
8062
+ $$field: z.ZodString;
8063
+ }, "strip", z.ZodTypeAny, {
8064
+ $$field: string;
8065
+ }, {
8066
+ $$field: string;
8067
+ }>>;
8068
+ conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
8069
+ required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
8070
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7215
8071
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
7216
8072
  id: string;
7217
8073
  description: string;
@@ -7293,6 +8149,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
7293
8149
  type: "DISPLAY_ON_REVIEW";
7294
8150
  conditional: import(".").JSONSchema;
7295
8151
  })[] | undefined;
8152
+ secured?: boolean | undefined;
7296
8153
  placeholder?: TranslationConfig | undefined;
7297
8154
  helperText?: TranslationConfig | undefined;
7298
8155
  hideLabel?: boolean | undefined;
@@ -7327,6 +8184,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
7327
8184
  type: "DISPLAY_ON_REVIEW";
7328
8185
  conditional: import(".").JSONSchema;
7329
8186
  })[] | undefined;
8187
+ secured?: boolean | undefined;
7330
8188
  placeholder?: {
7331
8189
  id: string;
7332
8190
  description: string;
@@ -7355,6 +8213,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
7355
8213
  }>>;
7356
8214
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
7357
8215
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
8216
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7358
8217
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
7359
8218
  id: string;
7360
8219
  description: string;
@@ -7453,6 +8312,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
7453
8312
  type: "DISPLAY_ON_REVIEW";
7454
8313
  conditional: import(".").JSONSchema;
7455
8314
  })[] | undefined;
8315
+ secured?: boolean | undefined;
7456
8316
  placeholder?: TranslationConfig | undefined;
7457
8317
  helperText?: TranslationConfig | undefined;
7458
8318
  hideLabel?: boolean | undefined;
@@ -7500,6 +8360,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
7500
8360
  type: "DISPLAY_ON_REVIEW";
7501
8361
  conditional: import(".").JSONSchema;
7502
8362
  })[] | undefined;
8363
+ secured?: boolean | undefined;
7503
8364
  placeholder?: {
7504
8365
  id: string;
7505
8366
  description: string;
@@ -7528,6 +8389,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
7528
8389
  }>>;
7529
8390
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
7530
8391
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
8392
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7531
8393
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
7532
8394
  id: string;
7533
8395
  description: string;
@@ -7615,6 +8477,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
7615
8477
  type: "DISPLAY_ON_REVIEW";
7616
8478
  conditional: import(".").JSONSchema;
7617
8479
  })[] | undefined;
8480
+ secured?: boolean | undefined;
7618
8481
  placeholder?: TranslationConfig | undefined;
7619
8482
  helperText?: TranslationConfig | undefined;
7620
8483
  hideLabel?: boolean | undefined;
@@ -7654,6 +8517,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
7654
8517
  type: "DISPLAY_ON_REVIEW";
7655
8518
  conditional: import(".").JSONSchema;
7656
8519
  })[] | undefined;
8520
+ secured?: boolean | undefined;
7657
8521
  placeholder?: {
7658
8522
  id: string;
7659
8523
  description: string;
@@ -7682,6 +8546,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
7682
8546
  }>>;
7683
8547
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
7684
8548
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
8549
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7685
8550
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
7686
8551
  id: string;
7687
8552
  description: string;
@@ -7741,6 +8606,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
7741
8606
  type: "DISPLAY_ON_REVIEW";
7742
8607
  conditional: import(".").JSONSchema;
7743
8608
  })[] | undefined;
8609
+ secured?: boolean | undefined;
7744
8610
  placeholder?: TranslationConfig | undefined;
7745
8611
  helperText?: TranslationConfig | undefined;
7746
8612
  hideLabel?: boolean | undefined;
@@ -7775,6 +8641,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
7775
8641
  type: "DISPLAY_ON_REVIEW";
7776
8642
  conditional: import(".").JSONSchema;
7777
8643
  })[] | undefined;
8644
+ secured?: boolean | undefined;
7778
8645
  placeholder?: {
7779
8646
  id: string;
7780
8647
  description: string;
@@ -7798,6 +8665,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
7798
8665
  }>>;
7799
8666
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
7800
8667
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
8668
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7801
8669
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
7802
8670
  id: string;
7803
8671
  description: string;
@@ -7879,6 +8747,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
7879
8747
  type: "DISPLAY_ON_REVIEW";
7880
8748
  conditional: import(".").JSONSchema;
7881
8749
  })[] | undefined;
8750
+ secured?: boolean | undefined;
7882
8751
  placeholder?: TranslationConfig | undefined;
7883
8752
  helperText?: TranslationConfig | undefined;
7884
8753
  hideLabel?: boolean | undefined;
@@ -7921,6 +8790,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
7921
8790
  type: "DISPLAY_ON_REVIEW";
7922
8791
  conditional: import(".").JSONSchema;
7923
8792
  })[] | undefined;
8793
+ secured?: boolean | undefined;
7924
8794
  placeholder?: {
7925
8795
  id: string;
7926
8796
  description: string;
@@ -7944,6 +8814,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
7944
8814
  }>>;
7945
8815
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
7946
8816
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
8817
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7947
8818
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
7948
8819
  id: string;
7949
8820
  description: string;
@@ -7981,16 +8852,114 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
7981
8852
  }, {
7982
8853
  type: z.ZodLiteral<"NAME">;
7983
8854
  defaultValue: z.ZodOptional<z.ZodObject<{
7984
- firstname: z.ZodString;
7985
- surname: z.ZodString;
8855
+ firstname: z.ZodOptional<z.ZodString>;
8856
+ middlename: z.ZodOptional<z.ZodString>;
8857
+ surname: z.ZodOptional<z.ZodString>;
7986
8858
  }, "strip", z.ZodTypeAny, {
7987
- firstname: string;
7988
- surname: string;
8859
+ firstname?: string | undefined;
8860
+ surname?: string | undefined;
8861
+ middlename?: string | undefined;
7989
8862
  }, {
7990
- firstname: string;
7991
- surname: string;
8863
+ firstname?: string | undefined;
8864
+ surname?: string | undefined;
8865
+ middlename?: string | undefined;
7992
8866
  }>>;
7993
- configuration: z.ZodOptional<z.ZodObject<{
8867
+ configuration: z.ZodOptional<z.ZodDefault<z.ZodObject<{
8868
+ name: z.ZodOptional<z.ZodDefault<z.ZodObject<{
8869
+ firstname: z.ZodOptional<z.ZodObject<{
8870
+ required: z.ZodBoolean;
8871
+ label: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
8872
+ id: string;
8873
+ description: string;
8874
+ defaultMessage: string;
8875
+ }>>;
8876
+ }, "strip", z.ZodTypeAny, {
8877
+ required: boolean;
8878
+ label?: TranslationConfig | undefined;
8879
+ }, {
8880
+ required: boolean;
8881
+ label?: {
8882
+ id: string;
8883
+ description: string;
8884
+ defaultMessage: string;
8885
+ } | undefined;
8886
+ }>>;
8887
+ middlename: z.ZodOptional<z.ZodObject<{
8888
+ required: z.ZodBoolean;
8889
+ label: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
8890
+ id: string;
8891
+ description: string;
8892
+ defaultMessage: string;
8893
+ }>>;
8894
+ }, "strip", z.ZodTypeAny, {
8895
+ required: boolean;
8896
+ label?: TranslationConfig | undefined;
8897
+ }, {
8898
+ required: boolean;
8899
+ label?: {
8900
+ id: string;
8901
+ description: string;
8902
+ defaultMessage: string;
8903
+ } | undefined;
8904
+ }>>;
8905
+ surname: z.ZodOptional<z.ZodObject<{
8906
+ required: z.ZodBoolean;
8907
+ label: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
8908
+ id: string;
8909
+ description: string;
8910
+ defaultMessage: string;
8911
+ }>>;
8912
+ }, "strip", z.ZodTypeAny, {
8913
+ required: boolean;
8914
+ label?: TranslationConfig | undefined;
8915
+ }, {
8916
+ required: boolean;
8917
+ label?: {
8918
+ id: string;
8919
+ description: string;
8920
+ defaultMessage: string;
8921
+ } | undefined;
8922
+ }>>;
8923
+ }, "strip", z.ZodTypeAny, {
8924
+ firstname?: {
8925
+ required: boolean;
8926
+ label?: TranslationConfig | undefined;
8927
+ } | undefined;
8928
+ surname?: {
8929
+ required: boolean;
8930
+ label?: TranslationConfig | undefined;
8931
+ } | undefined;
8932
+ middlename?: {
8933
+ required: boolean;
8934
+ label?: TranslationConfig | undefined;
8935
+ } | undefined;
8936
+ }, {
8937
+ firstname?: {
8938
+ required: boolean;
8939
+ label?: {
8940
+ id: string;
8941
+ description: string;
8942
+ defaultMessage: string;
8943
+ } | undefined;
8944
+ } | undefined;
8945
+ surname?: {
8946
+ required: boolean;
8947
+ label?: {
8948
+ id: string;
8949
+ description: string;
8950
+ defaultMessage: string;
8951
+ } | undefined;
8952
+ } | undefined;
8953
+ middlename?: {
8954
+ required: boolean;
8955
+ label?: {
8956
+ id: string;
8957
+ description: string;
8958
+ defaultMessage: string;
8959
+ } | undefined;
8960
+ } | undefined;
8961
+ }>>>;
8962
+ order: z.ZodOptional<z.ZodArray<z.ZodEnum<["firstname", "middlename", "surname"]>, "many">>;
7994
8963
  maxLength: z.ZodOptional<z.ZodNumber>;
7995
8964
  prefix: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
7996
8965
  id: string;
@@ -8003,10 +8972,52 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
8003
8972
  defaultMessage: string;
8004
8973
  }>>;
8005
8974
  }, "strip", z.ZodTypeAny, {
8975
+ name?: {
8976
+ firstname?: {
8977
+ required: boolean;
8978
+ label?: TranslationConfig | undefined;
8979
+ } | undefined;
8980
+ surname?: {
8981
+ required: boolean;
8982
+ label?: TranslationConfig | undefined;
8983
+ } | undefined;
8984
+ middlename?: {
8985
+ required: boolean;
8986
+ label?: TranslationConfig | undefined;
8987
+ } | undefined;
8988
+ } | undefined;
8989
+ order?: ("firstname" | "surname" | "middlename")[] | undefined;
8006
8990
  maxLength?: number | undefined;
8007
8991
  prefix?: TranslationConfig | undefined;
8008
8992
  postfix?: TranslationConfig | undefined;
8009
8993
  }, {
8994
+ name?: {
8995
+ firstname?: {
8996
+ required: boolean;
8997
+ label?: {
8998
+ id: string;
8999
+ description: string;
9000
+ defaultMessage: string;
9001
+ } | undefined;
9002
+ } | undefined;
9003
+ surname?: {
9004
+ required: boolean;
9005
+ label?: {
9006
+ id: string;
9007
+ description: string;
9008
+ defaultMessage: string;
9009
+ } | undefined;
9010
+ } | undefined;
9011
+ middlename?: {
9012
+ required: boolean;
9013
+ label?: {
9014
+ id: string;
9015
+ description: string;
9016
+ defaultMessage: string;
9017
+ } | undefined;
9018
+ } | undefined;
9019
+ } | undefined;
9020
+ order?: ("firstname" | "surname" | "middlename")[] | undefined;
8010
9021
  maxLength?: number | undefined;
8011
9022
  prefix?: {
8012
9023
  id: string;
@@ -8018,7 +9029,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
8018
9029
  description: string;
8019
9030
  defaultMessage: string;
8020
9031
  } | undefined;
8021
- }>>;
9032
+ }>>>;
8022
9033
  }>, "strip", z.ZodTypeAny, {
8023
9034
  type: "NAME";
8024
9035
  id: string;
@@ -8041,14 +9052,31 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
8041
9052
  type: "DISPLAY_ON_REVIEW";
8042
9053
  conditional: import(".").JSONSchema;
8043
9054
  })[] | undefined;
9055
+ secured?: boolean | undefined;
8044
9056
  placeholder?: TranslationConfig | undefined;
8045
9057
  helperText?: TranslationConfig | undefined;
8046
9058
  hideLabel?: boolean | undefined;
8047
9059
  defaultValue?: {
8048
- firstname: string;
8049
- surname: string;
9060
+ firstname?: string | undefined;
9061
+ surname?: string | undefined;
9062
+ middlename?: string | undefined;
8050
9063
  } | undefined;
8051
9064
  configuration?: {
9065
+ name?: {
9066
+ firstname?: {
9067
+ required: boolean;
9068
+ label?: TranslationConfig | undefined;
9069
+ } | undefined;
9070
+ surname?: {
9071
+ required: boolean;
9072
+ label?: TranslationConfig | undefined;
9073
+ } | undefined;
9074
+ middlename?: {
9075
+ required: boolean;
9076
+ label?: TranslationConfig | undefined;
9077
+ } | undefined;
9078
+ } | undefined;
9079
+ order?: ("firstname" | "surname" | "middlename")[] | undefined;
8052
9080
  maxLength?: number | undefined;
8053
9081
  prefix?: TranslationConfig | undefined;
8054
9082
  postfix?: TranslationConfig | undefined;
@@ -8083,6 +9111,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
8083
9111
  type: "DISPLAY_ON_REVIEW";
8084
9112
  conditional: import(".").JSONSchema;
8085
9113
  })[] | undefined;
9114
+ secured?: boolean | undefined;
8086
9115
  placeholder?: {
8087
9116
  id: string;
8088
9117
  description: string;
@@ -8095,10 +9124,38 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
8095
9124
  } | undefined;
8096
9125
  hideLabel?: boolean | undefined;
8097
9126
  defaultValue?: {
8098
- firstname: string;
8099
- surname: string;
9127
+ firstname?: string | undefined;
9128
+ surname?: string | undefined;
9129
+ middlename?: string | undefined;
8100
9130
  } | undefined;
8101
9131
  configuration?: {
9132
+ name?: {
9133
+ firstname?: {
9134
+ required: boolean;
9135
+ label?: {
9136
+ id: string;
9137
+ description: string;
9138
+ defaultMessage: string;
9139
+ } | undefined;
9140
+ } | undefined;
9141
+ surname?: {
9142
+ required: boolean;
9143
+ label?: {
9144
+ id: string;
9145
+ description: string;
9146
+ defaultMessage: string;
9147
+ } | undefined;
9148
+ } | undefined;
9149
+ middlename?: {
9150
+ required: boolean;
9151
+ label?: {
9152
+ id: string;
9153
+ description: string;
9154
+ defaultMessage: string;
9155
+ } | undefined;
9156
+ } | undefined;
9157
+ } | undefined;
9158
+ order?: ("firstname" | "surname" | "middlename")[] | undefined;
8102
9159
  maxLength?: number | undefined;
8103
9160
  prefix?: {
8104
9161
  id: string;
@@ -8122,6 +9179,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
8122
9179
  }>>;
8123
9180
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
8124
9181
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
9182
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
8125
9183
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
8126
9184
  id: string;
8127
9185
  description: string;
@@ -8181,6 +9239,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
8181
9239
  type: "DISPLAY_ON_REVIEW";
8182
9240
  conditional: import(".").JSONSchema;
8183
9241
  })[] | undefined;
9242
+ secured?: boolean | undefined;
8184
9243
  placeholder?: TranslationConfig | undefined;
8185
9244
  helperText?: TranslationConfig | undefined;
8186
9245
  hideLabel?: boolean | undefined;
@@ -8215,6 +9274,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
8215
9274
  type: "DISPLAY_ON_REVIEW";
8216
9275
  conditional: import(".").JSONSchema;
8217
9276
  })[] | undefined;
9277
+ secured?: boolean | undefined;
8218
9278
  placeholder?: {
8219
9279
  id: string;
8220
9280
  description: string;
@@ -8238,6 +9298,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
8238
9298
  }>>;
8239
9299
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
8240
9300
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
9301
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
8241
9302
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
8242
9303
  id: string;
8243
9304
  description: string;
@@ -8297,6 +9358,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
8297
9358
  type: "DISPLAY_ON_REVIEW";
8298
9359
  conditional: import(".").JSONSchema;
8299
9360
  })[] | undefined;
9361
+ secured?: boolean | undefined;
8300
9362
  placeholder?: TranslationConfig | undefined;
8301
9363
  helperText?: TranslationConfig | undefined;
8302
9364
  hideLabel?: boolean | undefined;
@@ -8331,6 +9393,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
8331
9393
  type: "DISPLAY_ON_REVIEW";
8332
9394
  conditional: import(".").JSONSchema;
8333
9395
  })[] | undefined;
9396
+ secured?: boolean | undefined;
8334
9397
  placeholder?: {
8335
9398
  id: string;
8336
9399
  description: string;
@@ -8354,6 +9417,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
8354
9417
  }>>;
8355
9418
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
8356
9419
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
9420
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
8357
9421
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
8358
9422
  id: string;
8359
9423
  description: string;
@@ -8413,6 +9477,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
8413
9477
  type: "DISPLAY_ON_REVIEW";
8414
9478
  conditional: import(".").JSONSchema;
8415
9479
  })[] | undefined;
9480
+ secured?: boolean | undefined;
8416
9481
  placeholder?: TranslationConfig | undefined;
8417
9482
  helperText?: TranslationConfig | undefined;
8418
9483
  hideLabel?: boolean | undefined;
@@ -8447,6 +9512,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
8447
9512
  type: "DISPLAY_ON_REVIEW";
8448
9513
  conditional: import(".").JSONSchema;
8449
9514
  })[] | undefined;
9515
+ secured?: boolean | undefined;
8450
9516
  placeholder?: {
8451
9517
  id: string;
8452
9518
  description: string;
@@ -8470,6 +9536,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
8470
9536
  }>>;
8471
9537
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
8472
9538
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
9539
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
8473
9540
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
8474
9541
  id: string;
8475
9542
  description: string;
@@ -8507,16 +9574,16 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
8507
9574
  }, {
8508
9575
  type: z.ZodLiteral<"FILE">;
8509
9576
  defaultValue: z.ZodOptional<z.ZodObject<{
8510
- filename: z.ZodString;
9577
+ path: z.ZodEffects<z.ZodString, string, string>;
8511
9578
  originalFilename: z.ZodString;
8512
9579
  type: z.ZodString;
8513
9580
  }, "strip", z.ZodTypeAny, {
8514
9581
  type: string;
8515
- filename: string;
9582
+ path: string;
8516
9583
  originalFilename: string;
8517
9584
  }, {
8518
9585
  type: string;
8519
- filename: string;
9586
+ path: string;
8520
9587
  originalFilename: string;
8521
9588
  }>>;
8522
9589
  configuration: z.ZodDefault<z.ZodObject<{
@@ -8583,12 +9650,13 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
8583
9650
  type: "DISPLAY_ON_REVIEW";
8584
9651
  conditional: import(".").JSONSchema;
8585
9652
  })[] | undefined;
9653
+ secured?: boolean | undefined;
8586
9654
  placeholder?: TranslationConfig | undefined;
8587
9655
  helperText?: TranslationConfig | undefined;
8588
9656
  hideLabel?: boolean | undefined;
8589
9657
  defaultValue?: {
8590
9658
  type: string;
8591
- filename: string;
9659
+ path: string;
8592
9660
  originalFilename: string;
8593
9661
  } | undefined;
8594
9662
  }, {
@@ -8621,6 +9689,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
8621
9689
  type: "DISPLAY_ON_REVIEW";
8622
9690
  conditional: import(".").JSONSchema;
8623
9691
  })[] | undefined;
9692
+ secured?: boolean | undefined;
8624
9693
  placeholder?: {
8625
9694
  id: string;
8626
9695
  description: string;
@@ -8634,7 +9703,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
8634
9703
  hideLabel?: boolean | undefined;
8635
9704
  defaultValue?: {
8636
9705
  type: string;
8637
- filename: string;
9706
+ path: string;
8638
9707
  originalFilename: string;
8639
9708
  } | undefined;
8640
9709
  configuration?: {
@@ -8660,6 +9729,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
8660
9729
  }>>;
8661
9730
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
8662
9731
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
9732
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
8663
9733
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
8664
9734
  id: string;
8665
9735
  description: string;
@@ -8719,6 +9789,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
8719
9789
  type: "DISPLAY_ON_REVIEW";
8720
9790
  conditional: import(".").JSONSchema;
8721
9791
  })[] | undefined;
9792
+ secured?: boolean | undefined;
8722
9793
  placeholder?: TranslationConfig | undefined;
8723
9794
  helperText?: TranslationConfig | undefined;
8724
9795
  hideLabel?: boolean | undefined;
@@ -8753,6 +9824,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
8753
9824
  type: "DISPLAY_ON_REVIEW";
8754
9825
  conditional: import(".").JSONSchema;
8755
9826
  })[] | undefined;
9827
+ secured?: boolean | undefined;
8756
9828
  placeholder?: {
8757
9829
  id: string;
8758
9830
  description: string;
@@ -8776,6 +9848,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
8776
9848
  }>>;
8777
9849
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
8778
9850
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
9851
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
8779
9852
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
8780
9853
  id: string;
8781
9854
  description: string;
@@ -8861,6 +9934,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
8861
9934
  type: "DISPLAY_ON_REVIEW";
8862
9935
  conditional: import(".").JSONSchema;
8863
9936
  })[] | undefined;
9937
+ secured?: boolean | undefined;
8864
9938
  placeholder?: TranslationConfig | undefined;
8865
9939
  helperText?: TranslationConfig | undefined;
8866
9940
  hideLabel?: boolean | undefined;
@@ -8901,6 +9975,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
8901
9975
  type: "DISPLAY_ON_REVIEW";
8902
9976
  conditional: import(".").JSONSchema;
8903
9977
  })[] | undefined;
9978
+ secured?: boolean | undefined;
8904
9979
  placeholder?: {
8905
9980
  id: string;
8906
9981
  description: string;
@@ -8924,6 +9999,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
8924
9999
  }>>;
8925
10000
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
8926
10001
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
10002
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
8927
10003
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
8928
10004
  id: string;
8929
10005
  description: string;
@@ -8982,6 +10058,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
8982
10058
  type: "DISPLAY_ON_REVIEW";
8983
10059
  conditional: import(".").JSONSchema;
8984
10060
  })[] | undefined;
10061
+ secured?: boolean | undefined;
8985
10062
  placeholder?: TranslationConfig | undefined;
8986
10063
  helperText?: TranslationConfig | undefined;
8987
10064
  hideLabel?: boolean | undefined;
@@ -9015,6 +10092,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
9015
10092
  type: "DISPLAY_ON_REVIEW";
9016
10093
  conditional: import(".").JSONSchema;
9017
10094
  })[] | undefined;
10095
+ secured?: boolean | undefined;
9018
10096
  placeholder?: {
9019
10097
  id: string;
9020
10098
  description: string;
@@ -9037,6 +10115,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
9037
10115
  }>>;
9038
10116
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
9039
10117
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
10118
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
9040
10119
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
9041
10120
  id: string;
9042
10121
  description: string;
@@ -9074,6 +10153,13 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
9074
10153
  }, {
9075
10154
  type: z.ZodLiteral<"LOCATION">;
9076
10155
  defaultValue: z.ZodOptional<z.ZodString>;
10156
+ configuration: z.ZodOptional<z.ZodObject<{
10157
+ searchableResource: z.ZodOptional<z.ZodArray<z.ZodEnum<["locations", "facilities", "offices"]>, "many">>;
10158
+ }, "strip", z.ZodTypeAny, {
10159
+ searchableResource?: ("locations" | "facilities" | "offices")[] | undefined;
10160
+ }, {
10161
+ searchableResource?: ("locations" | "facilities" | "offices")[] | undefined;
10162
+ }>>;
9077
10163
  }>, "strip", z.ZodTypeAny, {
9078
10164
  type: "LOCATION";
9079
10165
  id: string;
@@ -9096,10 +10182,14 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
9096
10182
  type: "DISPLAY_ON_REVIEW";
9097
10183
  conditional: import(".").JSONSchema;
9098
10184
  })[] | undefined;
10185
+ secured?: boolean | undefined;
9099
10186
  placeholder?: TranslationConfig | undefined;
9100
10187
  helperText?: TranslationConfig | undefined;
9101
10188
  hideLabel?: boolean | undefined;
9102
10189
  defaultValue?: string | undefined;
10190
+ configuration?: {
10191
+ searchableResource?: ("locations" | "facilities" | "offices")[] | undefined;
10192
+ } | undefined;
9103
10193
  }, {
9104
10194
  type: "LOCATION";
9105
10195
  id: string;
@@ -9130,6 +10220,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
9130
10220
  type: "DISPLAY_ON_REVIEW";
9131
10221
  conditional: import(".").JSONSchema;
9132
10222
  })[] | undefined;
10223
+ secured?: boolean | undefined;
9133
10224
  placeholder?: {
9134
10225
  id: string;
9135
10226
  description: string;
@@ -9142,6 +10233,9 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
9142
10233
  } | undefined;
9143
10234
  hideLabel?: boolean | undefined;
9144
10235
  defaultValue?: string | undefined;
10236
+ configuration?: {
10237
+ searchableResource?: ("locations" | "facilities" | "offices")[] | undefined;
10238
+ } | undefined;
9145
10239
  }>, z.ZodObject<z.objectUtil.extendShape<{
9146
10240
  id: z.ZodString;
9147
10241
  parent: z.ZodOptional<z.ZodObject<{
@@ -9153,6 +10247,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
9153
10247
  }>>;
9154
10248
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
9155
10249
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
10250
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
9156
10251
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
9157
10252
  id: string;
9158
10253
  description: string;
@@ -9212,6 +10307,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
9212
10307
  type: "DISPLAY_ON_REVIEW";
9213
10308
  conditional: import(".").JSONSchema;
9214
10309
  })[] | undefined;
10310
+ secured?: boolean | undefined;
9215
10311
  placeholder?: TranslationConfig | undefined;
9216
10312
  helperText?: TranslationConfig | undefined;
9217
10313
  hideLabel?: boolean | undefined;
@@ -9246,6 +10342,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
9246
10342
  type: "DISPLAY_ON_REVIEW";
9247
10343
  conditional: import(".").JSONSchema;
9248
10344
  })[] | undefined;
10345
+ secured?: boolean | undefined;
9249
10346
  placeholder?: {
9250
10347
  id: string;
9251
10348
  description: string;
@@ -9269,6 +10366,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
9269
10366
  }>>;
9270
10367
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
9271
10368
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
10369
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
9272
10370
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
9273
10371
  id: string;
9274
10372
  description: string;
@@ -9328,6 +10426,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
9328
10426
  type: "DISPLAY_ON_REVIEW";
9329
10427
  conditional: import(".").JSONSchema;
9330
10428
  })[] | undefined;
10429
+ secured?: boolean | undefined;
9331
10430
  placeholder?: TranslationConfig | undefined;
9332
10431
  helperText?: TranslationConfig | undefined;
9333
10432
  hideLabel?: boolean | undefined;
@@ -9362,6 +10461,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
9362
10461
  type: "DISPLAY_ON_REVIEW";
9363
10462
  conditional: import(".").JSONSchema;
9364
10463
  })[] | undefined;
10464
+ secured?: boolean | undefined;
9365
10465
  placeholder?: {
9366
10466
  id: string;
9367
10467
  description: string;
@@ -9385,6 +10485,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
9385
10485
  }>>;
9386
10486
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
9387
10487
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
10488
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
9388
10489
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
9389
10490
  id: string;
9390
10491
  description: string;
@@ -9464,6 +10565,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
9464
10565
  type: "DISPLAY_ON_REVIEW";
9465
10566
  conditional: import(".").JSONSchema;
9466
10567
  })[] | undefined;
10568
+ secured?: boolean | undefined;
9467
10569
  placeholder?: TranslationConfig | undefined;
9468
10570
  helperText?: TranslationConfig | undefined;
9469
10571
  hideLabel?: boolean | undefined;
@@ -9503,6 +10605,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
9503
10605
  type: "DISPLAY_ON_REVIEW";
9504
10606
  conditional: import(".").JSONSchema;
9505
10607
  })[] | undefined;
10608
+ secured?: boolean | undefined;
9506
10609
  placeholder?: {
9507
10610
  id: string;
9508
10611
  description: string;
@@ -9530,6 +10633,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
9530
10633
  }>>;
9531
10634
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
9532
10635
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
10636
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
9533
10637
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
9534
10638
  id: string;
9535
10639
  description: string;
@@ -9596,6 +10700,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
9596
10700
  type: "DISPLAY_ON_REVIEW";
9597
10701
  conditional: import(".").JSONSchema;
9598
10702
  })[] | undefined;
10703
+ secured?: boolean | undefined;
9599
10704
  placeholder?: TranslationConfig | undefined;
9600
10705
  helperText?: TranslationConfig | undefined;
9601
10706
  hideLabel?: boolean | undefined;
@@ -9633,6 +10738,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
9633
10738
  type: "DISPLAY_ON_REVIEW";
9634
10739
  conditional: import(".").JSONSchema;
9635
10740
  })[] | undefined;
10741
+ secured?: boolean | undefined;
9636
10742
  placeholder?: {
9637
10743
  id: string;
9638
10744
  description: string;
@@ -9659,6 +10765,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
9659
10765
  }>>;
9660
10766
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
9661
10767
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
10768
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
9662
10769
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
9663
10770
  id: string;
9664
10771
  description: string;
@@ -9714,19 +10821,19 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
9714
10821
  };
9715
10822
  }>, "many">;
9716
10823
  defaultValue: z.ZodOptional<z.ZodArray<z.ZodObject<{
9717
- filename: z.ZodString;
10824
+ path: z.ZodEffects<z.ZodString, string, string>;
9718
10825
  originalFilename: z.ZodString;
9719
10826
  type: z.ZodString;
9720
10827
  option: z.ZodString;
9721
10828
  }, "strip", z.ZodTypeAny, {
9722
10829
  type: string;
9723
10830
  option: string;
9724
- filename: string;
10831
+ path: string;
9725
10832
  originalFilename: string;
9726
10833
  }, {
9727
10834
  type: string;
9728
10835
  option: string;
9729
- filename: string;
10836
+ path: string;
9730
10837
  originalFilename: string;
9731
10838
  }>, "many">>;
9732
10839
  configuration: z.ZodDefault<z.ZodObject<{
@@ -9769,13 +10876,14 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
9769
10876
  type: "DISPLAY_ON_REVIEW";
9770
10877
  conditional: import(".").JSONSchema;
9771
10878
  })[] | undefined;
10879
+ secured?: boolean | undefined;
9772
10880
  placeholder?: TranslationConfig | undefined;
9773
10881
  helperText?: TranslationConfig | undefined;
9774
10882
  hideLabel?: boolean | undefined;
9775
10883
  defaultValue?: {
9776
10884
  type: string;
9777
10885
  option: string;
9778
- filename: string;
10886
+ path: string;
9779
10887
  originalFilename: string;
9780
10888
  }[] | undefined;
9781
10889
  }, {
@@ -9816,6 +10924,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
9816
10924
  type: "DISPLAY_ON_REVIEW";
9817
10925
  conditional: import(".").JSONSchema;
9818
10926
  })[] | undefined;
10927
+ secured?: boolean | undefined;
9819
10928
  placeholder?: {
9820
10929
  id: string;
9821
10930
  description: string;
@@ -9830,7 +10939,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
9830
10939
  defaultValue?: {
9831
10940
  type: string;
9832
10941
  option: string;
9833
- filename: string;
10942
+ path: string;
9834
10943
  originalFilename: string;
9835
10944
  }[] | undefined;
9836
10945
  configuration?: {
@@ -9848,6 +10957,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
9848
10957
  }>>;
9849
10958
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
9850
10959
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
10960
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
9851
10961
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
9852
10962
  id: string;
9853
10963
  description: string;
@@ -9982,6 +11092,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
9982
11092
  type: "DISPLAY_ON_REVIEW";
9983
11093
  conditional: import(".").JSONSchema;
9984
11094
  })[] | undefined;
11095
+ secured?: boolean | undefined;
9985
11096
  placeholder?: TranslationConfig | undefined;
9986
11097
  helperText?: TranslationConfig | undefined;
9987
11098
  hideLabel?: boolean | undefined;
@@ -10036,6 +11147,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
10036
11147
  type: "DISPLAY_ON_REVIEW";
10037
11148
  conditional: import(".").JSONSchema;
10038
11149
  })[] | undefined;
11150
+ secured?: boolean | undefined;
10039
11151
  placeholder?: {
10040
11152
  id: string;
10041
11153
  description: string;
@@ -10203,6 +11315,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
10203
11315
  type: "DISPLAY_ON_REVIEW";
10204
11316
  conditional: import(".").JSONSchema;
10205
11317
  })[] | undefined;
11318
+ secured?: boolean | undefined;
10206
11319
  placeholder?: TranslationConfig | undefined;
10207
11320
  helperText?: TranslationConfig | undefined;
10208
11321
  hideLabel?: boolean | undefined;
@@ -10228,6 +11341,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
10228
11341
  type: "DISPLAY_ON_REVIEW";
10229
11342
  conditional: import(".").JSONSchema;
10230
11343
  })[] | undefined;
11344
+ secured?: boolean | undefined;
10231
11345
  placeholder?: TranslationConfig | undefined;
10232
11346
  helperText?: TranslationConfig | undefined;
10233
11347
  hideLabel?: boolean | undefined;
@@ -10260,6 +11374,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
10260
11374
  type: "DISPLAY_ON_REVIEW";
10261
11375
  conditional: import(".").JSONSchema;
10262
11376
  })[] | undefined;
11377
+ secured?: boolean | undefined;
10263
11378
  placeholder?: TranslationConfig | undefined;
10264
11379
  helperText?: TranslationConfig | undefined;
10265
11380
  hideLabel?: boolean | undefined;
@@ -10292,6 +11407,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
10292
11407
  type: "DISPLAY_ON_REVIEW";
10293
11408
  conditional: import(".").JSONSchema;
10294
11409
  })[] | undefined;
11410
+ secured?: boolean | undefined;
10295
11411
  placeholder?: TranslationConfig | undefined;
10296
11412
  helperText?: TranslationConfig | undefined;
10297
11413
  hideLabel?: boolean | undefined;
@@ -10330,6 +11446,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
10330
11446
  type: "DISPLAY_ON_REVIEW";
10331
11447
  conditional: import(".").JSONSchema;
10332
11448
  })[] | undefined;
11449
+ secured?: boolean | undefined;
10333
11450
  placeholder?: TranslationConfig | undefined;
10334
11451
  helperText?: TranslationConfig | undefined;
10335
11452
  hideLabel?: boolean | undefined;
@@ -10356,6 +11473,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
10356
11473
  type: "DISPLAY_ON_REVIEW";
10357
11474
  conditional: import(".").JSONSchema;
10358
11475
  })[] | undefined;
11476
+ secured?: boolean | undefined;
10359
11477
  placeholder?: TranslationConfig | undefined;
10360
11478
  helperText?: TranslationConfig | undefined;
10361
11479
  hideLabel?: boolean | undefined;
@@ -10385,6 +11503,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
10385
11503
  type: "DISPLAY_ON_REVIEW";
10386
11504
  conditional: import(".").JSONSchema;
10387
11505
  })[] | undefined;
11506
+ secured?: boolean | undefined;
10388
11507
  placeholder?: TranslationConfig | undefined;
10389
11508
  helperText?: TranslationConfig | undefined;
10390
11509
  hideLabel?: boolean | undefined;
@@ -10414,10 +11533,14 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
10414
11533
  type: "DISPLAY_ON_REVIEW";
10415
11534
  conditional: import(".").JSONSchema;
10416
11535
  })[] | undefined;
11536
+ secured?: boolean | undefined;
10417
11537
  placeholder?: TranslationConfig | undefined;
10418
11538
  helperText?: TranslationConfig | undefined;
10419
11539
  hideLabel?: boolean | undefined;
10420
- defaultValue?: string | [string, string] | undefined;
11540
+ defaultValue?: string | {
11541
+ start: string;
11542
+ end: string;
11543
+ } | undefined;
10421
11544
  configuration?: {
10422
11545
  notice?: TranslationConfig | undefined;
10423
11546
  } | undefined;
@@ -10448,6 +11571,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
10448
11571
  type: "DISPLAY_ON_REVIEW";
10449
11572
  conditional: import(".").JSONSchema;
10450
11573
  })[] | undefined;
11574
+ secured?: boolean | undefined;
10451
11575
  placeholder?: TranslationConfig | undefined;
10452
11576
  helperText?: TranslationConfig | undefined;
10453
11577
  hideLabel?: boolean | undefined;
@@ -10474,6 +11598,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
10474
11598
  type: "DISPLAY_ON_REVIEW";
10475
11599
  conditional: import(".").JSONSchema;
10476
11600
  })[] | undefined;
11601
+ secured?: boolean | undefined;
10477
11602
  placeholder?: TranslationConfig | undefined;
10478
11603
  helperText?: TranslationConfig | undefined;
10479
11604
  hideLabel?: boolean | undefined;
@@ -10508,12 +11633,13 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
10508
11633
  type: "DISPLAY_ON_REVIEW";
10509
11634
  conditional: import(".").JSONSchema;
10510
11635
  })[] | undefined;
11636
+ secured?: boolean | undefined;
10511
11637
  placeholder?: TranslationConfig | undefined;
10512
11638
  helperText?: TranslationConfig | undefined;
10513
11639
  hideLabel?: boolean | undefined;
10514
11640
  defaultValue?: {
10515
11641
  type: string;
10516
- filename: string;
11642
+ path: string;
10517
11643
  originalFilename: string;
10518
11644
  } | undefined;
10519
11645
  } | {
@@ -10542,6 +11668,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
10542
11668
  type: "DISPLAY_ON_REVIEW";
10543
11669
  conditional: import(".").JSONSchema;
10544
11670
  })[] | undefined;
11671
+ secured?: boolean | undefined;
10545
11672
  placeholder?: TranslationConfig | undefined;
10546
11673
  helperText?: TranslationConfig | undefined;
10547
11674
  hideLabel?: boolean | undefined;
@@ -10579,6 +11706,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
10579
11706
  type: "DISPLAY_ON_REVIEW";
10580
11707
  conditional: import(".").JSONSchema;
10581
11708
  })[] | undefined;
11709
+ secured?: boolean | undefined;
10582
11710
  placeholder?: TranslationConfig | undefined;
10583
11711
  helperText?: TranslationConfig | undefined;
10584
11712
  hideLabel?: boolean | undefined;
@@ -10609,10 +11737,42 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
10609
11737
  type: "DISPLAY_ON_REVIEW";
10610
11738
  conditional: import(".").JSONSchema;
10611
11739
  })[] | undefined;
11740
+ secured?: boolean | undefined;
10612
11741
  placeholder?: TranslationConfig | undefined;
10613
11742
  helperText?: TranslationConfig | undefined;
10614
11743
  hideLabel?: boolean | undefined;
10615
11744
  defaultValue?: string | undefined;
11745
+ } | {
11746
+ type: "SELECT_DATE_RANGE";
11747
+ id: string;
11748
+ options: {
11749
+ value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
11750
+ label: TranslationConfig;
11751
+ }[];
11752
+ label: TranslationConfig;
11753
+ parent?: {
11754
+ $$field: string;
11755
+ } | undefined;
11756
+ validation?: {
11757
+ message: TranslationConfig;
11758
+ validator: import(".").JSONSchema;
11759
+ }[] | undefined;
11760
+ required?: boolean | undefined;
11761
+ conditionals?: ({
11762
+ type: "SHOW";
11763
+ conditional: import(".").JSONSchema;
11764
+ } | {
11765
+ type: "ENABLE";
11766
+ conditional: import(".").JSONSchema;
11767
+ } | {
11768
+ type: "DISPLAY_ON_REVIEW";
11769
+ conditional: import(".").JSONSchema;
11770
+ })[] | undefined;
11771
+ secured?: boolean | undefined;
11772
+ placeholder?: TranslationConfig | undefined;
11773
+ helperText?: TranslationConfig | undefined;
11774
+ hideLabel?: boolean | undefined;
11775
+ defaultValue?: "last7Days" | "last30Days" | "last90Days" | "last365Days" | undefined;
10616
11776
  } | {
10617
11777
  type: "NAME";
10618
11778
  id: string;
@@ -10635,14 +11795,31 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
10635
11795
  type: "DISPLAY_ON_REVIEW";
10636
11796
  conditional: import(".").JSONSchema;
10637
11797
  })[] | undefined;
11798
+ secured?: boolean | undefined;
10638
11799
  placeholder?: TranslationConfig | undefined;
10639
11800
  helperText?: TranslationConfig | undefined;
10640
11801
  hideLabel?: boolean | undefined;
10641
11802
  defaultValue?: {
10642
- firstname: string;
10643
- surname: string;
11803
+ firstname?: string | undefined;
11804
+ surname?: string | undefined;
11805
+ middlename?: string | undefined;
10644
11806
  } | undefined;
10645
11807
  configuration?: {
11808
+ name?: {
11809
+ firstname?: {
11810
+ required: boolean;
11811
+ label?: TranslationConfig | undefined;
11812
+ } | undefined;
11813
+ surname?: {
11814
+ required: boolean;
11815
+ label?: TranslationConfig | undefined;
11816
+ } | undefined;
11817
+ middlename?: {
11818
+ required: boolean;
11819
+ label?: TranslationConfig | undefined;
11820
+ } | undefined;
11821
+ } | undefined;
11822
+ order?: ("firstname" | "surname" | "middlename")[] | undefined;
10646
11823
  maxLength?: number | undefined;
10647
11824
  prefix?: TranslationConfig | undefined;
10648
11825
  postfix?: TranslationConfig | undefined;
@@ -10669,6 +11846,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
10669
11846
  type: "DISPLAY_ON_REVIEW";
10670
11847
  conditional: import(".").JSONSchema;
10671
11848
  })[] | undefined;
11849
+ secured?: boolean | undefined;
10672
11850
  placeholder?: TranslationConfig | undefined;
10673
11851
  helperText?: TranslationConfig | undefined;
10674
11852
  hideLabel?: boolean | undefined;
@@ -10695,6 +11873,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
10695
11873
  type: "DISPLAY_ON_REVIEW";
10696
11874
  conditional: import(".").JSONSchema;
10697
11875
  })[] | undefined;
11876
+ secured?: boolean | undefined;
10698
11877
  placeholder?: TranslationConfig | undefined;
10699
11878
  helperText?: TranslationConfig | undefined;
10700
11879
  hideLabel?: boolean | undefined;
@@ -10721,6 +11900,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
10721
11900
  type: "DISPLAY_ON_REVIEW";
10722
11901
  conditional: import(".").JSONSchema;
10723
11902
  })[] | undefined;
11903
+ secured?: boolean | undefined;
10724
11904
  placeholder?: TranslationConfig | undefined;
10725
11905
  helperText?: TranslationConfig | undefined;
10726
11906
  hideLabel?: boolean | undefined;
@@ -10747,6 +11927,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
10747
11927
  type: "DISPLAY_ON_REVIEW";
10748
11928
  conditional: import(".").JSONSchema;
10749
11929
  })[] | undefined;
11930
+ secured?: boolean | undefined;
10750
11931
  placeholder?: TranslationConfig | undefined;
10751
11932
  helperText?: TranslationConfig | undefined;
10752
11933
  hideLabel?: boolean | undefined;
@@ -10779,6 +11960,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
10779
11960
  type: "DISPLAY_ON_REVIEW";
10780
11961
  conditional: import(".").JSONSchema;
10781
11962
  })[] | undefined;
11963
+ secured?: boolean | undefined;
10782
11964
  placeholder?: TranslationConfig | undefined;
10783
11965
  helperText?: TranslationConfig | undefined;
10784
11966
  hideLabel?: boolean | undefined;
@@ -10805,10 +11987,14 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
10805
11987
  type: "DISPLAY_ON_REVIEW";
10806
11988
  conditional: import(".").JSONSchema;
10807
11989
  })[] | undefined;
11990
+ secured?: boolean | undefined;
10808
11991
  placeholder?: TranslationConfig | undefined;
10809
11992
  helperText?: TranslationConfig | undefined;
10810
11993
  hideLabel?: boolean | undefined;
10811
11994
  defaultValue?: string | undefined;
11995
+ configuration?: {
11996
+ searchableResource?: ("locations" | "facilities" | "offices")[] | undefined;
11997
+ } | undefined;
10812
11998
  } | {
10813
11999
  type: "FILE_WITH_OPTIONS";
10814
12000
  id: string;
@@ -10839,13 +12025,14 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
10839
12025
  type: "DISPLAY_ON_REVIEW";
10840
12026
  conditional: import(".").JSONSchema;
10841
12027
  })[] | undefined;
12028
+ secured?: boolean | undefined;
10842
12029
  placeholder?: TranslationConfig | undefined;
10843
12030
  helperText?: TranslationConfig | undefined;
10844
12031
  hideLabel?: boolean | undefined;
10845
12032
  defaultValue?: {
10846
12033
  type: string;
10847
12034
  option: string;
10848
- filename: string;
12035
+ path: string;
10849
12036
  originalFilename: string;
10850
12037
  }[] | undefined;
10851
12038
  } | {
@@ -10870,6 +12057,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
10870
12057
  type: "DISPLAY_ON_REVIEW";
10871
12058
  conditional: import(".").JSONSchema;
10872
12059
  })[] | undefined;
12060
+ secured?: boolean | undefined;
10873
12061
  placeholder?: TranslationConfig | undefined;
10874
12062
  helperText?: TranslationConfig | undefined;
10875
12063
  hideLabel?: boolean | undefined;
@@ -10896,6 +12084,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
10896
12084
  type: "DISPLAY_ON_REVIEW";
10897
12085
  conditional: import(".").JSONSchema;
10898
12086
  })[] | undefined;
12087
+ secured?: boolean | undefined;
10899
12088
  placeholder?: TranslationConfig | undefined;
10900
12089
  helperText?: TranslationConfig | undefined;
10901
12090
  hideLabel?: boolean | undefined;
@@ -10922,6 +12111,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
10922
12111
  type: "DISPLAY_ON_REVIEW";
10923
12112
  conditional: import(".").JSONSchema;
10924
12113
  })[] | undefined;
12114
+ secured?: boolean | undefined;
10925
12115
  placeholder?: TranslationConfig | undefined;
10926
12116
  helperText?: TranslationConfig | undefined;
10927
12117
  hideLabel?: boolean | undefined;
@@ -10954,6 +12144,10 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
10954
12144
  addressLine3?: string | undefined;
10955
12145
  postcodeOrZip?: string | undefined;
10956
12146
  } | undefined;
12147
+ configuration?: {
12148
+ lineSeparator?: string | undefined;
12149
+ fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
12150
+ } | undefined;
10957
12151
  } | {
10958
12152
  type: "DATA";
10959
12153
  id: string;
@@ -10985,6 +12179,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
10985
12179
  type: "DISPLAY_ON_REVIEW";
10986
12180
  conditional: import(".").JSONSchema;
10987
12181
  })[] | undefined;
12182
+ secured?: boolean | undefined;
10988
12183
  placeholder?: TranslationConfig | undefined;
10989
12184
  helperText?: TranslationConfig | undefined;
10990
12185
  hideLabel?: boolean | undefined;
@@ -11056,6 +12251,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
11056
12251
  type: "DISPLAY_ON_REVIEW";
11057
12252
  conditional: import(".").JSONSchema;
11058
12253
  })[] | undefined;
12254
+ secured?: boolean | undefined;
11059
12255
  placeholder?: {
11060
12256
  id: string;
11061
12257
  description: string;
@@ -11097,6 +12293,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
11097
12293
  type: "DISPLAY_ON_REVIEW";
11098
12294
  conditional: import(".").JSONSchema;
11099
12295
  })[] | undefined;
12296
+ secured?: boolean | undefined;
11100
12297
  placeholder?: {
11101
12298
  id: string;
11102
12299
  description: string;
@@ -11153,6 +12350,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
11153
12350
  type: "DISPLAY_ON_REVIEW";
11154
12351
  conditional: import(".").JSONSchema;
11155
12352
  })[] | undefined;
12353
+ secured?: boolean | undefined;
11156
12354
  placeholder?: {
11157
12355
  id: string;
11158
12356
  description: string;
@@ -11209,6 +12407,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
11209
12407
  type: "DISPLAY_ON_REVIEW";
11210
12408
  conditional: import(".").JSONSchema;
11211
12409
  })[] | undefined;
12410
+ secured?: boolean | undefined;
11212
12411
  placeholder?: {
11213
12412
  id: string;
11214
12413
  description: string;
@@ -11271,6 +12470,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
11271
12470
  type: "DISPLAY_ON_REVIEW";
11272
12471
  conditional: import(".").JSONSchema;
11273
12472
  })[] | undefined;
12473
+ secured?: boolean | undefined;
11274
12474
  placeholder?: {
11275
12475
  id: string;
11276
12476
  description: string;
@@ -11317,6 +12517,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
11317
12517
  type: "DISPLAY_ON_REVIEW";
11318
12518
  conditional: import(".").JSONSchema;
11319
12519
  })[] | undefined;
12520
+ secured?: boolean | undefined;
11320
12521
  placeholder?: {
11321
12522
  id: string;
11322
12523
  description: string;
@@ -11362,6 +12563,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
11362
12563
  type: "DISPLAY_ON_REVIEW";
11363
12564
  conditional: import(".").JSONSchema;
11364
12565
  })[] | undefined;
12566
+ secured?: boolean | undefined;
11365
12567
  placeholder?: {
11366
12568
  id: string;
11367
12569
  description: string;
@@ -11411,6 +12613,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
11411
12613
  type: "DISPLAY_ON_REVIEW";
11412
12614
  conditional: import(".").JSONSchema;
11413
12615
  })[] | undefined;
12616
+ secured?: boolean | undefined;
11414
12617
  placeholder?: {
11415
12618
  id: string;
11416
12619
  description: string;
@@ -11422,7 +12625,10 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
11422
12625
  defaultMessage: string;
11423
12626
  } | undefined;
11424
12627
  hideLabel?: boolean | undefined;
11425
- defaultValue?: string | [string, string] | undefined;
12628
+ defaultValue?: string | {
12629
+ start: string;
12630
+ end: string;
12631
+ } | undefined;
11426
12632
  configuration?: {
11427
12633
  notice?: {
11428
12634
  id: string;
@@ -11460,6 +12666,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
11460
12666
  type: "DISPLAY_ON_REVIEW";
11461
12667
  conditional: import(".").JSONSchema;
11462
12668
  })[] | undefined;
12669
+ secured?: boolean | undefined;
11463
12670
  placeholder?: {
11464
12671
  id: string;
11465
12672
  description: string;
@@ -11507,6 +12714,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
11507
12714
  type: "DISPLAY_ON_REVIEW";
11508
12715
  conditional: import(".").JSONSchema;
11509
12716
  })[] | undefined;
12717
+ secured?: boolean | undefined;
11510
12718
  placeholder?: {
11511
12719
  id: string;
11512
12720
  description: string;
@@ -11549,6 +12757,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
11549
12757
  type: "DISPLAY_ON_REVIEW";
11550
12758
  conditional: import(".").JSONSchema;
11551
12759
  })[] | undefined;
12760
+ secured?: boolean | undefined;
11552
12761
  placeholder?: {
11553
12762
  id: string;
11554
12763
  description: string;
@@ -11562,7 +12771,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
11562
12771
  hideLabel?: boolean | undefined;
11563
12772
  defaultValue?: {
11564
12773
  type: string;
11565
- filename: string;
12774
+ path: string;
11566
12775
  originalFilename: string;
11567
12776
  } | undefined;
11568
12777
  configuration?: {
@@ -11615,6 +12824,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
11615
12824
  type: "DISPLAY_ON_REVIEW";
11616
12825
  conditional: import(".").JSONSchema;
11617
12826
  })[] | undefined;
12827
+ secured?: boolean | undefined;
11618
12828
  placeholder?: {
11619
12829
  id: string;
11620
12830
  description: string;
@@ -11667,6 +12877,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
11667
12877
  type: "DISPLAY_ON_REVIEW";
11668
12878
  conditional: import(".").JSONSchema;
11669
12879
  })[] | undefined;
12880
+ secured?: boolean | undefined;
11670
12881
  placeholder?: {
11671
12882
  id: string;
11672
12883
  description: string;
@@ -11722,6 +12933,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
11722
12933
  type: "DISPLAY_ON_REVIEW";
11723
12934
  conditional: import(".").JSONSchema;
11724
12935
  })[] | undefined;
12936
+ secured?: boolean | undefined;
11725
12937
  placeholder?: {
11726
12938
  id: string;
11727
12939
  description: string;
@@ -11734,6 +12946,57 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
11734
12946
  } | undefined;
11735
12947
  hideLabel?: boolean | undefined;
11736
12948
  defaultValue?: string | undefined;
12949
+ } | {
12950
+ type: "SELECT_DATE_RANGE";
12951
+ id: string;
12952
+ options: {
12953
+ value: "last7Days" | "last30Days" | "last90Days" | "last365Days";
12954
+ label: {
12955
+ id: string;
12956
+ description: string;
12957
+ defaultMessage: string;
12958
+ };
12959
+ }[];
12960
+ label: {
12961
+ id: string;
12962
+ description: string;
12963
+ defaultMessage: string;
12964
+ };
12965
+ parent?: {
12966
+ $$field: string;
12967
+ } | undefined;
12968
+ validation?: {
12969
+ message: {
12970
+ id: string;
12971
+ description: string;
12972
+ defaultMessage: string;
12973
+ };
12974
+ validator: import(".").JSONSchema;
12975
+ }[] | undefined;
12976
+ required?: boolean | undefined;
12977
+ conditionals?: ({
12978
+ type: "SHOW";
12979
+ conditional: import(".").JSONSchema;
12980
+ } | {
12981
+ type: "ENABLE";
12982
+ conditional: import(".").JSONSchema;
12983
+ } | {
12984
+ type: "DISPLAY_ON_REVIEW";
12985
+ conditional: import(".").JSONSchema;
12986
+ })[] | undefined;
12987
+ secured?: boolean | undefined;
12988
+ placeholder?: {
12989
+ id: string;
12990
+ description: string;
12991
+ defaultMessage: string;
12992
+ } | undefined;
12993
+ helperText?: {
12994
+ id: string;
12995
+ description: string;
12996
+ defaultMessage: string;
12997
+ } | undefined;
12998
+ hideLabel?: boolean | undefined;
12999
+ defaultValue?: "last7Days" | "last30Days" | "last90Days" | "last365Days" | undefined;
11737
13000
  } | {
11738
13001
  type: "NAME";
11739
13002
  id: string;
@@ -11764,6 +13027,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
11764
13027
  type: "DISPLAY_ON_REVIEW";
11765
13028
  conditional: import(".").JSONSchema;
11766
13029
  })[] | undefined;
13030
+ secured?: boolean | undefined;
11767
13031
  placeholder?: {
11768
13032
  id: string;
11769
13033
  description: string;
@@ -11776,10 +13040,38 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
11776
13040
  } | undefined;
11777
13041
  hideLabel?: boolean | undefined;
11778
13042
  defaultValue?: {
11779
- firstname: string;
11780
- surname: string;
13043
+ firstname?: string | undefined;
13044
+ surname?: string | undefined;
13045
+ middlename?: string | undefined;
11781
13046
  } | undefined;
11782
13047
  configuration?: {
13048
+ name?: {
13049
+ firstname?: {
13050
+ required: boolean;
13051
+ label?: {
13052
+ id: string;
13053
+ description: string;
13054
+ defaultMessage: string;
13055
+ } | undefined;
13056
+ } | undefined;
13057
+ surname?: {
13058
+ required: boolean;
13059
+ label?: {
13060
+ id: string;
13061
+ description: string;
13062
+ defaultMessage: string;
13063
+ } | undefined;
13064
+ } | undefined;
13065
+ middlename?: {
13066
+ required: boolean;
13067
+ label?: {
13068
+ id: string;
13069
+ description: string;
13070
+ defaultMessage: string;
13071
+ } | undefined;
13072
+ } | undefined;
13073
+ } | undefined;
13074
+ order?: ("firstname" | "surname" | "middlename")[] | undefined;
11783
13075
  maxLength?: number | undefined;
11784
13076
  prefix?: {
11785
13077
  id: string;
@@ -11822,6 +13114,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
11822
13114
  type: "DISPLAY_ON_REVIEW";
11823
13115
  conditional: import(".").JSONSchema;
11824
13116
  })[] | undefined;
13117
+ secured?: boolean | undefined;
11825
13118
  placeholder?: {
11826
13119
  id: string;
11827
13120
  description: string;
@@ -11864,6 +13157,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
11864
13157
  type: "DISPLAY_ON_REVIEW";
11865
13158
  conditional: import(".").JSONSchema;
11866
13159
  })[] | undefined;
13160
+ secured?: boolean | undefined;
11867
13161
  placeholder?: {
11868
13162
  id: string;
11869
13163
  description: string;
@@ -11906,6 +13200,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
11906
13200
  type: "DISPLAY_ON_REVIEW";
11907
13201
  conditional: import(".").JSONSchema;
11908
13202
  })[] | undefined;
13203
+ secured?: boolean | undefined;
11909
13204
  placeholder?: {
11910
13205
  id: string;
11911
13206
  description: string;
@@ -11948,6 +13243,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
11948
13243
  type: "DISPLAY_ON_REVIEW";
11949
13244
  conditional: import(".").JSONSchema;
11950
13245
  })[] | undefined;
13246
+ secured?: boolean | undefined;
11951
13247
  placeholder?: {
11952
13248
  id: string;
11953
13249
  description: string;
@@ -11996,6 +13292,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
11996
13292
  type: "DISPLAY_ON_REVIEW";
11997
13293
  conditional: import(".").JSONSchema;
11998
13294
  })[] | undefined;
13295
+ secured?: boolean | undefined;
11999
13296
  placeholder?: {
12000
13297
  id: string;
12001
13298
  description: string;
@@ -12038,6 +13335,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
12038
13335
  type: "DISPLAY_ON_REVIEW";
12039
13336
  conditional: import(".").JSONSchema;
12040
13337
  })[] | undefined;
13338
+ secured?: boolean | undefined;
12041
13339
  placeholder?: {
12042
13340
  id: string;
12043
13341
  description: string;
@@ -12050,6 +13348,9 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
12050
13348
  } | undefined;
12051
13349
  hideLabel?: boolean | undefined;
12052
13350
  defaultValue?: string | undefined;
13351
+ configuration?: {
13352
+ searchableResource?: ("locations" | "facilities" | "offices")[] | undefined;
13353
+ } | undefined;
12053
13354
  } | {
12054
13355
  type: "FILE_WITH_OPTIONS";
12055
13356
  id: string;
@@ -12088,6 +13389,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
12088
13389
  type: "DISPLAY_ON_REVIEW";
12089
13390
  conditional: import(".").JSONSchema;
12090
13391
  })[] | undefined;
13392
+ secured?: boolean | undefined;
12091
13393
  placeholder?: {
12092
13394
  id: string;
12093
13395
  description: string;
@@ -12102,7 +13404,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
12102
13404
  defaultValue?: {
12103
13405
  type: string;
12104
13406
  option: string;
12105
- filename: string;
13407
+ path: string;
12106
13408
  originalFilename: string;
12107
13409
  }[] | undefined;
12108
13410
  configuration?: {
@@ -12139,6 +13441,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
12139
13441
  type: "DISPLAY_ON_REVIEW";
12140
13442
  conditional: import(".").JSONSchema;
12141
13443
  })[] | undefined;
13444
+ secured?: boolean | undefined;
12142
13445
  placeholder?: {
12143
13446
  id: string;
12144
13447
  description: string;
@@ -12181,6 +13484,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
12181
13484
  type: "DISPLAY_ON_REVIEW";
12182
13485
  conditional: import(".").JSONSchema;
12183
13486
  })[] | undefined;
13487
+ secured?: boolean | undefined;
12184
13488
  placeholder?: {
12185
13489
  id: string;
12186
13490
  description: string;
@@ -12223,6 +13527,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
12223
13527
  type: "DISPLAY_ON_REVIEW";
12224
13528
  conditional: import(".").JSONSchema;
12225
13529
  })[] | undefined;
13530
+ secured?: boolean | undefined;
12226
13531
  placeholder?: {
12227
13532
  id: string;
12228
13533
  description: string;
@@ -12263,6 +13568,10 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
12263
13568
  addressLine3?: string | undefined;
12264
13569
  postcodeOrZip?: string | undefined;
12265
13570
  } | undefined;
13571
+ configuration?: {
13572
+ lineSeparator?: string | undefined;
13573
+ fields?: ("number" | "country" | "district" | "state" | "addressType" | "province" | "urbanOrRural" | "town" | "residentialArea" | "street" | "zipCode" | "village" | "district2" | "cityOrTown" | "addressLine1" | "addressLine2" | "addressLine3" | "postcodeOrZip")[] | undefined;
13574
+ } | undefined;
12266
13575
  } | {
12267
13576
  type: "DATA";
12268
13577
  id: string;
@@ -12314,6 +13623,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
12314
13623
  type: "DISPLAY_ON_REVIEW";
12315
13624
  conditional: import(".").JSONSchema;
12316
13625
  })[] | undefined;
13626
+ secured?: boolean | undefined;
12317
13627
  placeholder?: {
12318
13628
  id: string;
12319
13629
  description: string;