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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (31) hide show
  1. package/dist/commons/api/router.d.ts +1335 -10468
  2. package/dist/commons/events/ActionConfig.d.ts +2600 -0
  3. package/dist/commons/events/ActionDocument.d.ts +1081 -1087
  4. package/dist/commons/events/ActionInput.d.ts +726 -726
  5. package/dist/commons/events/ActionType.d.ts +0 -2
  6. package/dist/commons/events/AdvancedSearchConfig.d.ts +222 -18
  7. package/dist/commons/events/CompositeFieldValue.d.ts +6 -6
  8. package/dist/commons/events/CountryConfigQueryInput.d.ts +1234 -572
  9. package/dist/commons/events/CreatedAtLocation.d.ts +1 -2
  10. package/dist/commons/events/Draft.d.ts +77 -77
  11. package/dist/commons/events/EventConfig.d.ts +1458 -0
  12. package/dist/commons/events/EventDocument.d.ts +706 -711
  13. package/dist/commons/events/EventIndex.d.ts +135 -151
  14. package/dist/commons/events/EventMetadata.d.ts +38 -29
  15. package/dist/commons/events/FieldConfig.d.ts +178 -0
  16. package/dist/commons/events/FieldTypeMapping.d.ts +16 -16
  17. package/dist/commons/events/FieldValue.d.ts +12 -12
  18. package/dist/commons/events/FormConfig.d.ts +1092 -0
  19. package/dist/commons/events/PageConfig.d.ts +260 -0
  20. package/dist/commons/events/User.d.ts +6 -3
  21. package/dist/commons/events/WorkqueueConfig.d.ts +2043 -1033
  22. package/dist/commons/events/defineConfig.d.ts +294 -0
  23. package/dist/commons/events/field.d.ts +5 -0
  24. package/dist/commons/events/test.utils.d.ts +30 -19
  25. package/dist/commons/events/transactions.d.ts +1 -1
  26. package/dist/commons/events/utils.d.ts +440 -15
  27. package/dist/conditionals/index.js +22 -18
  28. package/dist/events/index.js +303 -185
  29. package/dist/scopes/index.d.ts +92 -6
  30. package/dist/scopes/index.js +38 -9
  31. package/package.json +3 -3
@@ -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;
@@ -165,6 +166,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
165
166
  type: "DISPLAY_ON_REVIEW";
166
167
  conditional: import(".").JSONSchema;
167
168
  })[] | undefined;
169
+ secured?: boolean | undefined;
168
170
  placeholder?: TranslationConfig | undefined;
169
171
  helperText?: TranslationConfig | undefined;
170
172
  hideLabel?: boolean | undefined;
@@ -227,6 +229,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
227
229
  type: "DISPLAY_ON_REVIEW";
228
230
  conditional: import(".").JSONSchema;
229
231
  })[] | undefined;
232
+ secured?: boolean | undefined;
230
233
  placeholder?: {
231
234
  id: string;
232
235
  description: string;
@@ -278,6 +281,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
278
281
  }>>;
279
282
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
280
283
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
284
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
281
285
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
282
286
  id: string;
283
287
  description: string;
@@ -369,6 +373,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
369
373
  type: "DISPLAY_ON_REVIEW";
370
374
  conditional: import(".").JSONSchema;
371
375
  })[] | undefined;
376
+ secured?: boolean | undefined;
372
377
  placeholder?: TranslationConfig | undefined;
373
378
  helperText?: TranslationConfig | undefined;
374
379
  hideLabel?: boolean | undefined;
@@ -409,6 +414,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
409
414
  type: "DISPLAY_ON_REVIEW";
410
415
  conditional: import(".").JSONSchema;
411
416
  })[] | undefined;
417
+ secured?: boolean | undefined;
412
418
  placeholder?: {
413
419
  id: string;
414
420
  description: string;
@@ -446,6 +452,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
446
452
  }>>;
447
453
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
448
454
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
455
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
449
456
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
450
457
  id: string;
451
458
  description: string;
@@ -537,6 +544,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
537
544
  type: "DISPLAY_ON_REVIEW";
538
545
  conditional: import(".").JSONSchema;
539
546
  })[] | undefined;
547
+ secured?: boolean | undefined;
540
548
  placeholder?: TranslationConfig | undefined;
541
549
  helperText?: TranslationConfig | undefined;
542
550
  hideLabel?: boolean | undefined;
@@ -577,6 +585,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
577
585
  type: "DISPLAY_ON_REVIEW";
578
586
  conditional: import(".").JSONSchema;
579
587
  })[] | undefined;
588
+ secured?: boolean | undefined;
580
589
  placeholder?: {
581
590
  id: string;
582
591
  description: string;
@@ -614,6 +623,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
614
623
  }>>;
615
624
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
616
625
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
626
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
617
627
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
618
628
  id: string;
619
629
  description: string;
@@ -708,6 +718,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
708
718
  type: "DISPLAY_ON_REVIEW";
709
719
  conditional: import(".").JSONSchema;
710
720
  })[] | undefined;
721
+ secured?: boolean | undefined;
711
722
  placeholder?: TranslationConfig | undefined;
712
723
  helperText?: TranslationConfig | undefined;
713
724
  hideLabel?: boolean | undefined;
@@ -749,6 +760,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
749
760
  type: "DISPLAY_ON_REVIEW";
750
761
  conditional: import(".").JSONSchema;
751
762
  })[] | undefined;
763
+ secured?: boolean | undefined;
752
764
  placeholder?: {
753
765
  id: string;
754
766
  description: string;
@@ -787,6 +799,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
787
799
  }>>;
788
800
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
789
801
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
802
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
790
803
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
791
804
  id: string;
792
805
  description: string;
@@ -861,6 +874,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
861
874
  type: "DISPLAY_ON_REVIEW";
862
875
  conditional: import(".").JSONSchema;
863
876
  })[] | undefined;
877
+ secured?: boolean | undefined;
864
878
  placeholder?: TranslationConfig | undefined;
865
879
  helperText?: TranslationConfig | undefined;
866
880
  hideLabel?: boolean | undefined;
@@ -898,6 +912,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
898
912
  type: "DISPLAY_ON_REVIEW";
899
913
  conditional: import(".").JSONSchema;
900
914
  })[] | undefined;
915
+ secured?: boolean | undefined;
901
916
  placeholder?: {
902
917
  id: string;
903
918
  description: string;
@@ -928,6 +943,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
928
943
  }>>;
929
944
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
930
945
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
946
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
931
947
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
932
948
  id: string;
933
949
  description: string;
@@ -1002,6 +1018,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
1002
1018
  type: "DISPLAY_ON_REVIEW";
1003
1019
  conditional: import(".").JSONSchema;
1004
1020
  })[] | undefined;
1021
+ secured?: boolean | undefined;
1005
1022
  placeholder?: TranslationConfig | undefined;
1006
1023
  helperText?: TranslationConfig | undefined;
1007
1024
  hideLabel?: boolean | undefined;
@@ -1039,6 +1056,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
1039
1056
  type: "DISPLAY_ON_REVIEW";
1040
1057
  conditional: import(".").JSONSchema;
1041
1058
  })[] | undefined;
1059
+ secured?: boolean | undefined;
1042
1060
  placeholder?: {
1043
1061
  id: string;
1044
1062
  description: string;
@@ -1069,6 +1087,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
1069
1087
  }>>;
1070
1088
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
1071
1089
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1090
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1072
1091
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
1073
1092
  id: string;
1074
1093
  description: string;
@@ -1150,6 +1169,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
1150
1169
  type: "DISPLAY_ON_REVIEW";
1151
1170
  conditional: import(".").JSONSchema;
1152
1171
  })[] | undefined;
1172
+ secured?: boolean | undefined;
1153
1173
  placeholder?: TranslationConfig | undefined;
1154
1174
  helperText?: TranslationConfig | undefined;
1155
1175
  hideLabel?: boolean | undefined;
@@ -1184,6 +1204,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
1184
1204
  type: "DISPLAY_ON_REVIEW";
1185
1205
  conditional: import(".").JSONSchema;
1186
1206
  })[] | undefined;
1207
+ secured?: boolean | undefined;
1187
1208
  placeholder?: {
1188
1209
  id: string;
1189
1210
  description: string;
@@ -1212,6 +1233,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
1212
1233
  }>>;
1213
1234
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
1214
1235
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1236
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1215
1237
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
1216
1238
  id: string;
1217
1239
  description: string;
@@ -1310,6 +1332,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
1310
1332
  type: "DISPLAY_ON_REVIEW";
1311
1333
  conditional: import(".").JSONSchema;
1312
1334
  })[] | undefined;
1335
+ secured?: boolean | undefined;
1313
1336
  placeholder?: TranslationConfig | undefined;
1314
1337
  helperText?: TranslationConfig | undefined;
1315
1338
  hideLabel?: boolean | undefined;
@@ -1357,6 +1380,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
1357
1380
  type: "DISPLAY_ON_REVIEW";
1358
1381
  conditional: import(".").JSONSchema;
1359
1382
  })[] | undefined;
1383
+ secured?: boolean | undefined;
1360
1384
  placeholder?: {
1361
1385
  id: string;
1362
1386
  description: string;
@@ -1385,6 +1409,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
1385
1409
  }>>;
1386
1410
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
1387
1411
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1412
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1388
1413
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
1389
1414
  id: string;
1390
1415
  description: string;
@@ -1472,6 +1497,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
1472
1497
  type: "DISPLAY_ON_REVIEW";
1473
1498
  conditional: import(".").JSONSchema;
1474
1499
  })[] | undefined;
1500
+ secured?: boolean | undefined;
1475
1501
  placeholder?: TranslationConfig | undefined;
1476
1502
  helperText?: TranslationConfig | undefined;
1477
1503
  hideLabel?: boolean | undefined;
@@ -1511,6 +1537,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
1511
1537
  type: "DISPLAY_ON_REVIEW";
1512
1538
  conditional: import(".").JSONSchema;
1513
1539
  })[] | undefined;
1540
+ secured?: boolean | undefined;
1514
1541
  placeholder?: {
1515
1542
  id: string;
1516
1543
  description: string;
@@ -1539,6 +1566,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
1539
1566
  }>>;
1540
1567
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
1541
1568
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1569
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1542
1570
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
1543
1571
  id: string;
1544
1572
  description: string;
@@ -1598,6 +1626,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
1598
1626
  type: "DISPLAY_ON_REVIEW";
1599
1627
  conditional: import(".").JSONSchema;
1600
1628
  })[] | undefined;
1629
+ secured?: boolean | undefined;
1601
1630
  placeholder?: TranslationConfig | undefined;
1602
1631
  helperText?: TranslationConfig | undefined;
1603
1632
  hideLabel?: boolean | undefined;
@@ -1632,6 +1661,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
1632
1661
  type: "DISPLAY_ON_REVIEW";
1633
1662
  conditional: import(".").JSONSchema;
1634
1663
  })[] | undefined;
1664
+ secured?: boolean | undefined;
1635
1665
  placeholder?: {
1636
1666
  id: string;
1637
1667
  description: string;
@@ -1655,6 +1685,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
1655
1685
  }>>;
1656
1686
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
1657
1687
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1688
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1658
1689
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
1659
1690
  id: string;
1660
1691
  description: string;
@@ -1736,6 +1767,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
1736
1767
  type: "DISPLAY_ON_REVIEW";
1737
1768
  conditional: import(".").JSONSchema;
1738
1769
  })[] | undefined;
1770
+ secured?: boolean | undefined;
1739
1771
  placeholder?: TranslationConfig | undefined;
1740
1772
  helperText?: TranslationConfig | undefined;
1741
1773
  hideLabel?: boolean | undefined;
@@ -1778,6 +1810,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
1778
1810
  type: "DISPLAY_ON_REVIEW";
1779
1811
  conditional: import(".").JSONSchema;
1780
1812
  })[] | undefined;
1813
+ secured?: boolean | undefined;
1781
1814
  placeholder?: {
1782
1815
  id: string;
1783
1816
  description: string;
@@ -1801,6 +1834,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
1801
1834
  }>>;
1802
1835
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
1803
1836
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1837
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1804
1838
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
1805
1839
  id: string;
1806
1840
  description: string;
@@ -1898,6 +1932,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
1898
1932
  type: "DISPLAY_ON_REVIEW";
1899
1933
  conditional: import(".").JSONSchema;
1900
1934
  })[] | undefined;
1935
+ secured?: boolean | undefined;
1901
1936
  placeholder?: TranslationConfig | undefined;
1902
1937
  helperText?: TranslationConfig | undefined;
1903
1938
  hideLabel?: boolean | undefined;
@@ -1940,6 +1975,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
1940
1975
  type: "DISPLAY_ON_REVIEW";
1941
1976
  conditional: import(".").JSONSchema;
1942
1977
  })[] | undefined;
1978
+ secured?: boolean | undefined;
1943
1979
  placeholder?: {
1944
1980
  id: string;
1945
1981
  description: string;
@@ -1979,6 +2015,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
1979
2015
  }>>;
1980
2016
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
1981
2017
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2018
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1982
2019
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
1983
2020
  id: string;
1984
2021
  description: string;
@@ -2038,6 +2075,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
2038
2075
  type: "DISPLAY_ON_REVIEW";
2039
2076
  conditional: import(".").JSONSchema;
2040
2077
  })[] | undefined;
2078
+ secured?: boolean | undefined;
2041
2079
  placeholder?: TranslationConfig | undefined;
2042
2080
  helperText?: TranslationConfig | undefined;
2043
2081
  hideLabel?: boolean | undefined;
@@ -2072,6 +2110,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
2072
2110
  type: "DISPLAY_ON_REVIEW";
2073
2111
  conditional: import(".").JSONSchema;
2074
2112
  })[] | undefined;
2113
+ secured?: boolean | undefined;
2075
2114
  placeholder?: {
2076
2115
  id: string;
2077
2116
  description: string;
@@ -2095,6 +2134,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
2095
2134
  }>>;
2096
2135
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
2097
2136
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2137
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2098
2138
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
2099
2139
  id: string;
2100
2140
  description: string;
@@ -2154,6 +2194,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
2154
2194
  type: "DISPLAY_ON_REVIEW";
2155
2195
  conditional: import(".").JSONSchema;
2156
2196
  })[] | undefined;
2197
+ secured?: boolean | undefined;
2157
2198
  placeholder?: TranslationConfig | undefined;
2158
2199
  helperText?: TranslationConfig | undefined;
2159
2200
  hideLabel?: boolean | undefined;
@@ -2188,6 +2229,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
2188
2229
  type: "DISPLAY_ON_REVIEW";
2189
2230
  conditional: import(".").JSONSchema;
2190
2231
  })[] | undefined;
2232
+ secured?: boolean | undefined;
2191
2233
  placeholder?: {
2192
2234
  id: string;
2193
2235
  description: string;
@@ -2211,6 +2253,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
2211
2253
  }>>;
2212
2254
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
2213
2255
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2256
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2214
2257
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
2215
2258
  id: string;
2216
2259
  description: string;
@@ -2270,6 +2313,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
2270
2313
  type: "DISPLAY_ON_REVIEW";
2271
2314
  conditional: import(".").JSONSchema;
2272
2315
  })[] | undefined;
2316
+ secured?: boolean | undefined;
2273
2317
  placeholder?: TranslationConfig | undefined;
2274
2318
  helperText?: TranslationConfig | undefined;
2275
2319
  hideLabel?: boolean | undefined;
@@ -2304,6 +2348,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
2304
2348
  type: "DISPLAY_ON_REVIEW";
2305
2349
  conditional: import(".").JSONSchema;
2306
2350
  })[] | undefined;
2351
+ secured?: boolean | undefined;
2307
2352
  placeholder?: {
2308
2353
  id: string;
2309
2354
  description: string;
@@ -2327,6 +2372,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
2327
2372
  }>>;
2328
2373
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
2329
2374
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2375
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2330
2376
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
2331
2377
  id: string;
2332
2378
  description: string;
@@ -2440,6 +2486,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
2440
2486
  type: "DISPLAY_ON_REVIEW";
2441
2487
  conditional: import(".").JSONSchema;
2442
2488
  })[] | undefined;
2489
+ secured?: boolean | undefined;
2443
2490
  placeholder?: TranslationConfig | undefined;
2444
2491
  helperText?: TranslationConfig | undefined;
2445
2492
  hideLabel?: boolean | undefined;
@@ -2478,6 +2525,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
2478
2525
  type: "DISPLAY_ON_REVIEW";
2479
2526
  conditional: import(".").JSONSchema;
2480
2527
  })[] | undefined;
2528
+ secured?: boolean | undefined;
2481
2529
  placeholder?: {
2482
2530
  id: string;
2483
2531
  description: string;
@@ -2517,6 +2565,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
2517
2565
  }>>;
2518
2566
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
2519
2567
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2568
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2520
2569
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
2521
2570
  id: string;
2522
2571
  description: string;
@@ -2576,6 +2625,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
2576
2625
  type: "DISPLAY_ON_REVIEW";
2577
2626
  conditional: import(".").JSONSchema;
2578
2627
  })[] | undefined;
2628
+ secured?: boolean | undefined;
2579
2629
  placeholder?: TranslationConfig | undefined;
2580
2630
  helperText?: TranslationConfig | undefined;
2581
2631
  hideLabel?: boolean | undefined;
@@ -2610,6 +2660,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
2610
2660
  type: "DISPLAY_ON_REVIEW";
2611
2661
  conditional: import(".").JSONSchema;
2612
2662
  })[] | undefined;
2663
+ secured?: boolean | undefined;
2613
2664
  placeholder?: {
2614
2665
  id: string;
2615
2666
  description: string;
@@ -2633,6 +2684,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
2633
2684
  }>>;
2634
2685
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
2635
2686
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2687
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2636
2688
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
2637
2689
  id: string;
2638
2690
  description: string;
@@ -2718,6 +2770,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
2718
2770
  type: "DISPLAY_ON_REVIEW";
2719
2771
  conditional: import(".").JSONSchema;
2720
2772
  })[] | undefined;
2773
+ secured?: boolean | undefined;
2721
2774
  placeholder?: TranslationConfig | undefined;
2722
2775
  helperText?: TranslationConfig | undefined;
2723
2776
  hideLabel?: boolean | undefined;
@@ -2758,6 +2811,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
2758
2811
  type: "DISPLAY_ON_REVIEW";
2759
2812
  conditional: import(".").JSONSchema;
2760
2813
  })[] | undefined;
2814
+ secured?: boolean | undefined;
2761
2815
  placeholder?: {
2762
2816
  id: string;
2763
2817
  description: string;
@@ -2781,6 +2835,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
2781
2835
  }>>;
2782
2836
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
2783
2837
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2838
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2784
2839
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
2785
2840
  id: string;
2786
2841
  description: string;
@@ -2839,6 +2894,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
2839
2894
  type: "DISPLAY_ON_REVIEW";
2840
2895
  conditional: import(".").JSONSchema;
2841
2896
  })[] | undefined;
2897
+ secured?: boolean | undefined;
2842
2898
  placeholder?: TranslationConfig | undefined;
2843
2899
  helperText?: TranslationConfig | undefined;
2844
2900
  hideLabel?: boolean | undefined;
@@ -2872,6 +2928,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
2872
2928
  type: "DISPLAY_ON_REVIEW";
2873
2929
  conditional: import(".").JSONSchema;
2874
2930
  })[] | undefined;
2931
+ secured?: boolean | undefined;
2875
2932
  placeholder?: {
2876
2933
  id: string;
2877
2934
  description: string;
@@ -2894,6 +2951,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
2894
2951
  }>>;
2895
2952
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
2896
2953
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2954
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
2897
2955
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
2898
2956
  id: string;
2899
2957
  description: string;
@@ -2953,6 +3011,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
2953
3011
  type: "DISPLAY_ON_REVIEW";
2954
3012
  conditional: import(".").JSONSchema;
2955
3013
  })[] | undefined;
3014
+ secured?: boolean | undefined;
2956
3015
  placeholder?: TranslationConfig | undefined;
2957
3016
  helperText?: TranslationConfig | undefined;
2958
3017
  hideLabel?: boolean | undefined;
@@ -2987,6 +3046,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
2987
3046
  type: "DISPLAY_ON_REVIEW";
2988
3047
  conditional: import(".").JSONSchema;
2989
3048
  })[] | undefined;
3049
+ secured?: boolean | undefined;
2990
3050
  placeholder?: {
2991
3051
  id: string;
2992
3052
  description: string;
@@ -3010,6 +3070,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
3010
3070
  }>>;
3011
3071
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
3012
3072
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3073
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3013
3074
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
3014
3075
  id: string;
3015
3076
  description: string;
@@ -3069,6 +3130,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
3069
3130
  type: "DISPLAY_ON_REVIEW";
3070
3131
  conditional: import(".").JSONSchema;
3071
3132
  })[] | undefined;
3133
+ secured?: boolean | undefined;
3072
3134
  placeholder?: TranslationConfig | undefined;
3073
3135
  helperText?: TranslationConfig | undefined;
3074
3136
  hideLabel?: boolean | undefined;
@@ -3103,6 +3165,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
3103
3165
  type: "DISPLAY_ON_REVIEW";
3104
3166
  conditional: import(".").JSONSchema;
3105
3167
  })[] | undefined;
3168
+ secured?: boolean | undefined;
3106
3169
  placeholder?: {
3107
3170
  id: string;
3108
3171
  description: string;
@@ -3126,6 +3189,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
3126
3189
  }>>;
3127
3190
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
3128
3191
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3192
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3129
3193
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
3130
3194
  id: string;
3131
3195
  description: string;
@@ -3185,6 +3249,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
3185
3249
  type: "DISPLAY_ON_REVIEW";
3186
3250
  conditional: import(".").JSONSchema;
3187
3251
  })[] | undefined;
3252
+ secured?: boolean | undefined;
3188
3253
  placeholder?: TranslationConfig | undefined;
3189
3254
  helperText?: TranslationConfig | undefined;
3190
3255
  hideLabel?: boolean | undefined;
@@ -3219,6 +3284,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
3219
3284
  type: "DISPLAY_ON_REVIEW";
3220
3285
  conditional: import(".").JSONSchema;
3221
3286
  })[] | undefined;
3287
+ secured?: boolean | undefined;
3222
3288
  placeholder?: {
3223
3289
  id: string;
3224
3290
  description: string;
@@ -3242,6 +3308,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
3242
3308
  }>>;
3243
3309
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
3244
3310
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3311
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3245
3312
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
3246
3313
  id: string;
3247
3314
  description: string;
@@ -3321,6 +3388,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
3321
3388
  type: "DISPLAY_ON_REVIEW";
3322
3389
  conditional: import(".").JSONSchema;
3323
3390
  })[] | undefined;
3391
+ secured?: boolean | undefined;
3324
3392
  placeholder?: TranslationConfig | undefined;
3325
3393
  helperText?: TranslationConfig | undefined;
3326
3394
  hideLabel?: boolean | undefined;
@@ -3360,6 +3428,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
3360
3428
  type: "DISPLAY_ON_REVIEW";
3361
3429
  conditional: import(".").JSONSchema;
3362
3430
  })[] | undefined;
3431
+ secured?: boolean | undefined;
3363
3432
  placeholder?: {
3364
3433
  id: string;
3365
3434
  description: string;
@@ -3387,6 +3456,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
3387
3456
  }>>;
3388
3457
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
3389
3458
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3459
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3390
3460
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
3391
3461
  id: string;
3392
3462
  description: string;
@@ -3453,6 +3523,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
3453
3523
  type: "DISPLAY_ON_REVIEW";
3454
3524
  conditional: import(".").JSONSchema;
3455
3525
  })[] | undefined;
3526
+ secured?: boolean | undefined;
3456
3527
  placeholder?: TranslationConfig | undefined;
3457
3528
  helperText?: TranslationConfig | undefined;
3458
3529
  hideLabel?: boolean | undefined;
@@ -3490,6 +3561,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
3490
3561
  type: "DISPLAY_ON_REVIEW";
3491
3562
  conditional: import(".").JSONSchema;
3492
3563
  })[] | undefined;
3564
+ secured?: boolean | undefined;
3493
3565
  placeholder?: {
3494
3566
  id: string;
3495
3567
  description: string;
@@ -3516,6 +3588,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
3516
3588
  }>>;
3517
3589
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
3518
3590
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3591
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3519
3592
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
3520
3593
  id: string;
3521
3594
  description: string;
@@ -3626,6 +3699,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
3626
3699
  type: "DISPLAY_ON_REVIEW";
3627
3700
  conditional: import(".").JSONSchema;
3628
3701
  })[] | undefined;
3702
+ secured?: boolean | undefined;
3629
3703
  placeholder?: TranslationConfig | undefined;
3630
3704
  helperText?: TranslationConfig | undefined;
3631
3705
  hideLabel?: boolean | undefined;
@@ -3673,6 +3747,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
3673
3747
  type: "DISPLAY_ON_REVIEW";
3674
3748
  conditional: import(".").JSONSchema;
3675
3749
  })[] | undefined;
3750
+ secured?: boolean | undefined;
3676
3751
  placeholder?: {
3677
3752
  id: string;
3678
3753
  description: string;
@@ -3705,6 +3780,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
3705
3780
  }>>;
3706
3781
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
3707
3782
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3783
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
3708
3784
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
3709
3785
  id: string;
3710
3786
  description: string;
@@ -3839,6 +3915,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
3839
3915
  type: "DISPLAY_ON_REVIEW";
3840
3916
  conditional: import(".").JSONSchema;
3841
3917
  })[] | undefined;
3918
+ secured?: boolean | undefined;
3842
3919
  placeholder?: TranslationConfig | undefined;
3843
3920
  helperText?: TranslationConfig | undefined;
3844
3921
  hideLabel?: boolean | undefined;
@@ -3893,6 +3970,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
3893
3970
  type: "DISPLAY_ON_REVIEW";
3894
3971
  conditional: import(".").JSONSchema;
3895
3972
  })[] | undefined;
3973
+ secured?: boolean | undefined;
3896
3974
  placeholder?: {
3897
3975
  id: string;
3898
3976
  description: string;
@@ -3934,6 +4012,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
3934
4012
  type: "DISPLAY_ON_REVIEW";
3935
4013
  conditional: import(".").JSONSchema;
3936
4014
  })[] | undefined;
4015
+ secured?: boolean | undefined;
3937
4016
  placeholder?: TranslationConfig | undefined;
3938
4017
  helperText?: TranslationConfig | undefined;
3939
4018
  hideLabel?: boolean | undefined;
@@ -3959,6 +4038,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
3959
4038
  type: "DISPLAY_ON_REVIEW";
3960
4039
  conditional: import(".").JSONSchema;
3961
4040
  })[] | undefined;
4041
+ secured?: boolean | undefined;
3962
4042
  placeholder?: TranslationConfig | undefined;
3963
4043
  helperText?: TranslationConfig | undefined;
3964
4044
  hideLabel?: boolean | undefined;
@@ -3991,6 +4071,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
3991
4071
  type: "DISPLAY_ON_REVIEW";
3992
4072
  conditional: import(".").JSONSchema;
3993
4073
  })[] | undefined;
4074
+ secured?: boolean | undefined;
3994
4075
  placeholder?: TranslationConfig | undefined;
3995
4076
  helperText?: TranslationConfig | undefined;
3996
4077
  hideLabel?: boolean | undefined;
@@ -4023,6 +4104,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
4023
4104
  type: "DISPLAY_ON_REVIEW";
4024
4105
  conditional: import(".").JSONSchema;
4025
4106
  })[] | undefined;
4107
+ secured?: boolean | undefined;
4026
4108
  placeholder?: TranslationConfig | undefined;
4027
4109
  helperText?: TranslationConfig | undefined;
4028
4110
  hideLabel?: boolean | undefined;
@@ -4061,6 +4143,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
4061
4143
  type: "DISPLAY_ON_REVIEW";
4062
4144
  conditional: import(".").JSONSchema;
4063
4145
  })[] | undefined;
4146
+ secured?: boolean | undefined;
4064
4147
  placeholder?: TranslationConfig | undefined;
4065
4148
  helperText?: TranslationConfig | undefined;
4066
4149
  hideLabel?: boolean | undefined;
@@ -4087,6 +4170,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
4087
4170
  type: "DISPLAY_ON_REVIEW";
4088
4171
  conditional: import(".").JSONSchema;
4089
4172
  })[] | undefined;
4173
+ secured?: boolean | undefined;
4090
4174
  placeholder?: TranslationConfig | undefined;
4091
4175
  helperText?: TranslationConfig | undefined;
4092
4176
  hideLabel?: boolean | undefined;
@@ -4116,6 +4200,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
4116
4200
  type: "DISPLAY_ON_REVIEW";
4117
4201
  conditional: import(".").JSONSchema;
4118
4202
  })[] | undefined;
4203
+ secured?: boolean | undefined;
4119
4204
  placeholder?: TranslationConfig | undefined;
4120
4205
  helperText?: TranslationConfig | undefined;
4121
4206
  hideLabel?: boolean | undefined;
@@ -4145,6 +4230,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
4145
4230
  type: "DISPLAY_ON_REVIEW";
4146
4231
  conditional: import(".").JSONSchema;
4147
4232
  })[] | undefined;
4233
+ secured?: boolean | undefined;
4148
4234
  placeholder?: TranslationConfig | undefined;
4149
4235
  helperText?: TranslationConfig | undefined;
4150
4236
  hideLabel?: boolean | undefined;
@@ -4179,6 +4265,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
4179
4265
  type: "DISPLAY_ON_REVIEW";
4180
4266
  conditional: import(".").JSONSchema;
4181
4267
  })[] | undefined;
4268
+ secured?: boolean | undefined;
4182
4269
  placeholder?: TranslationConfig | undefined;
4183
4270
  helperText?: TranslationConfig | undefined;
4184
4271
  hideLabel?: boolean | undefined;
@@ -4205,6 +4292,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
4205
4292
  type: "DISPLAY_ON_REVIEW";
4206
4293
  conditional: import(".").JSONSchema;
4207
4294
  })[] | undefined;
4295
+ secured?: boolean | undefined;
4208
4296
  placeholder?: TranslationConfig | undefined;
4209
4297
  helperText?: TranslationConfig | undefined;
4210
4298
  hideLabel?: boolean | undefined;
@@ -4239,6 +4327,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
4239
4327
  type: "DISPLAY_ON_REVIEW";
4240
4328
  conditional: import(".").JSONSchema;
4241
4329
  })[] | undefined;
4330
+ secured?: boolean | undefined;
4242
4331
  placeholder?: TranslationConfig | undefined;
4243
4332
  helperText?: TranslationConfig | undefined;
4244
4333
  hideLabel?: boolean | undefined;
@@ -4273,6 +4362,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
4273
4362
  type: "DISPLAY_ON_REVIEW";
4274
4363
  conditional: import(".").JSONSchema;
4275
4364
  })[] | undefined;
4365
+ secured?: boolean | undefined;
4276
4366
  placeholder?: TranslationConfig | undefined;
4277
4367
  helperText?: TranslationConfig | undefined;
4278
4368
  hideLabel?: boolean | undefined;
@@ -4310,6 +4400,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
4310
4400
  type: "DISPLAY_ON_REVIEW";
4311
4401
  conditional: import(".").JSONSchema;
4312
4402
  })[] | undefined;
4403
+ secured?: boolean | undefined;
4313
4404
  placeholder?: TranslationConfig | undefined;
4314
4405
  helperText?: TranslationConfig | undefined;
4315
4406
  hideLabel?: boolean | undefined;
@@ -4340,6 +4431,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
4340
4431
  type: "DISPLAY_ON_REVIEW";
4341
4432
  conditional: import(".").JSONSchema;
4342
4433
  })[] | undefined;
4434
+ secured?: boolean | undefined;
4343
4435
  placeholder?: TranslationConfig | undefined;
4344
4436
  helperText?: TranslationConfig | undefined;
4345
4437
  hideLabel?: boolean | undefined;
@@ -4366,6 +4458,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
4366
4458
  type: "DISPLAY_ON_REVIEW";
4367
4459
  conditional: import(".").JSONSchema;
4368
4460
  })[] | undefined;
4461
+ secured?: boolean | undefined;
4369
4462
  placeholder?: TranslationConfig | undefined;
4370
4463
  helperText?: TranslationConfig | undefined;
4371
4464
  hideLabel?: boolean | undefined;
@@ -4400,6 +4493,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
4400
4493
  type: "DISPLAY_ON_REVIEW";
4401
4494
  conditional: import(".").JSONSchema;
4402
4495
  })[] | undefined;
4496
+ secured?: boolean | undefined;
4403
4497
  placeholder?: TranslationConfig | undefined;
4404
4498
  helperText?: TranslationConfig | undefined;
4405
4499
  hideLabel?: boolean | undefined;
@@ -4426,6 +4520,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
4426
4520
  type: "DISPLAY_ON_REVIEW";
4427
4521
  conditional: import(".").JSONSchema;
4428
4522
  })[] | undefined;
4523
+ secured?: boolean | undefined;
4429
4524
  placeholder?: TranslationConfig | undefined;
4430
4525
  helperText?: TranslationConfig | undefined;
4431
4526
  hideLabel?: boolean | undefined;
@@ -4452,6 +4547,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
4452
4547
  type: "DISPLAY_ON_REVIEW";
4453
4548
  conditional: import(".").JSONSchema;
4454
4549
  })[] | undefined;
4550
+ secured?: boolean | undefined;
4455
4551
  placeholder?: TranslationConfig | undefined;
4456
4552
  helperText?: TranslationConfig | undefined;
4457
4553
  hideLabel?: boolean | undefined;
@@ -4478,6 +4574,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
4478
4574
  type: "DISPLAY_ON_REVIEW";
4479
4575
  conditional: import(".").JSONSchema;
4480
4576
  })[] | undefined;
4577
+ secured?: boolean | undefined;
4481
4578
  placeholder?: TranslationConfig | undefined;
4482
4579
  helperText?: TranslationConfig | undefined;
4483
4580
  hideLabel?: boolean | undefined;
@@ -4510,6 +4607,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
4510
4607
  type: "DISPLAY_ON_REVIEW";
4511
4608
  conditional: import(".").JSONSchema;
4512
4609
  })[] | undefined;
4610
+ secured?: boolean | undefined;
4513
4611
  placeholder?: TranslationConfig | undefined;
4514
4612
  helperText?: TranslationConfig | undefined;
4515
4613
  hideLabel?: boolean | undefined;
@@ -4536,6 +4634,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
4536
4634
  type: "DISPLAY_ON_REVIEW";
4537
4635
  conditional: import(".").JSONSchema;
4538
4636
  })[] | undefined;
4637
+ secured?: boolean | undefined;
4539
4638
  placeholder?: TranslationConfig | undefined;
4540
4639
  helperText?: TranslationConfig | undefined;
4541
4640
  hideLabel?: boolean | undefined;
@@ -4570,6 +4669,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
4570
4669
  type: "DISPLAY_ON_REVIEW";
4571
4670
  conditional: import(".").JSONSchema;
4572
4671
  })[] | undefined;
4672
+ secured?: boolean | undefined;
4573
4673
  placeholder?: TranslationConfig | undefined;
4574
4674
  helperText?: TranslationConfig | undefined;
4575
4675
  hideLabel?: boolean | undefined;
@@ -4601,6 +4701,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
4601
4701
  type: "DISPLAY_ON_REVIEW";
4602
4702
  conditional: import(".").JSONSchema;
4603
4703
  })[] | undefined;
4704
+ secured?: boolean | undefined;
4604
4705
  placeholder?: TranslationConfig | undefined;
4605
4706
  helperText?: TranslationConfig | undefined;
4606
4707
  hideLabel?: boolean | undefined;
@@ -4627,6 +4728,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
4627
4728
  type: "DISPLAY_ON_REVIEW";
4628
4729
  conditional: import(".").JSONSchema;
4629
4730
  })[] | undefined;
4731
+ secured?: boolean | undefined;
4630
4732
  placeholder?: TranslationConfig | undefined;
4631
4733
  helperText?: TranslationConfig | undefined;
4632
4734
  hideLabel?: boolean | undefined;
@@ -4653,6 +4755,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
4653
4755
  type: "DISPLAY_ON_REVIEW";
4654
4756
  conditional: import(".").JSONSchema;
4655
4757
  })[] | undefined;
4758
+ secured?: boolean | undefined;
4656
4759
  placeholder?: TranslationConfig | undefined;
4657
4760
  helperText?: TranslationConfig | undefined;
4658
4761
  hideLabel?: boolean | undefined;
@@ -4716,6 +4819,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
4716
4819
  type: "DISPLAY_ON_REVIEW";
4717
4820
  conditional: import(".").JSONSchema;
4718
4821
  })[] | undefined;
4822
+ secured?: boolean | undefined;
4719
4823
  placeholder?: TranslationConfig | undefined;
4720
4824
  helperText?: TranslationConfig | undefined;
4721
4825
  hideLabel?: boolean | undefined;
@@ -4758,6 +4862,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
4758
4862
  type: "DISPLAY_ON_REVIEW";
4759
4863
  conditional: import(".").JSONSchema;
4760
4864
  })[] | undefined;
4865
+ secured?: boolean | undefined;
4761
4866
  placeholder?: {
4762
4867
  id: string;
4763
4868
  description: string;
@@ -4799,6 +4904,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
4799
4904
  type: "DISPLAY_ON_REVIEW";
4800
4905
  conditional: import(".").JSONSchema;
4801
4906
  })[] | undefined;
4907
+ secured?: boolean | undefined;
4802
4908
  placeholder?: {
4803
4909
  id: string;
4804
4910
  description: string;
@@ -4855,6 +4961,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
4855
4961
  type: "DISPLAY_ON_REVIEW";
4856
4962
  conditional: import(".").JSONSchema;
4857
4963
  })[] | undefined;
4964
+ secured?: boolean | undefined;
4858
4965
  placeholder?: {
4859
4966
  id: string;
4860
4967
  description: string;
@@ -4911,6 +5018,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
4911
5018
  type: "DISPLAY_ON_REVIEW";
4912
5019
  conditional: import(".").JSONSchema;
4913
5020
  })[] | undefined;
5021
+ secured?: boolean | undefined;
4914
5022
  placeholder?: {
4915
5023
  id: string;
4916
5024
  description: string;
@@ -4973,6 +5081,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
4973
5081
  type: "DISPLAY_ON_REVIEW";
4974
5082
  conditional: import(".").JSONSchema;
4975
5083
  })[] | undefined;
5084
+ secured?: boolean | undefined;
4976
5085
  placeholder?: {
4977
5086
  id: string;
4978
5087
  description: string;
@@ -5019,6 +5128,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
5019
5128
  type: "DISPLAY_ON_REVIEW";
5020
5129
  conditional: import(".").JSONSchema;
5021
5130
  })[] | undefined;
5131
+ secured?: boolean | undefined;
5022
5132
  placeholder?: {
5023
5133
  id: string;
5024
5134
  description: string;
@@ -5064,6 +5174,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
5064
5174
  type: "DISPLAY_ON_REVIEW";
5065
5175
  conditional: import(".").JSONSchema;
5066
5176
  })[] | undefined;
5177
+ secured?: boolean | undefined;
5067
5178
  placeholder?: {
5068
5179
  id: string;
5069
5180
  description: string;
@@ -5113,6 +5224,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
5113
5224
  type: "DISPLAY_ON_REVIEW";
5114
5225
  conditional: import(".").JSONSchema;
5115
5226
  })[] | undefined;
5227
+ secured?: boolean | undefined;
5116
5228
  placeholder?: {
5117
5229
  id: string;
5118
5230
  description: string;
@@ -5162,6 +5274,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
5162
5274
  type: "DISPLAY_ON_REVIEW";
5163
5275
  conditional: import(".").JSONSchema;
5164
5276
  })[] | undefined;
5277
+ secured?: boolean | undefined;
5165
5278
  placeholder?: {
5166
5279
  id: string;
5167
5280
  description: string;
@@ -5209,6 +5322,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
5209
5322
  type: "DISPLAY_ON_REVIEW";
5210
5323
  conditional: import(".").JSONSchema;
5211
5324
  })[] | undefined;
5325
+ secured?: boolean | undefined;
5212
5326
  placeholder?: {
5213
5327
  id: string;
5214
5328
  description: string;
@@ -5251,6 +5365,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
5251
5365
  type: "DISPLAY_ON_REVIEW";
5252
5366
  conditional: import(".").JSONSchema;
5253
5367
  })[] | undefined;
5368
+ secured?: boolean | undefined;
5254
5369
  placeholder?: {
5255
5370
  id: string;
5256
5371
  description: string;
@@ -5317,6 +5432,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
5317
5432
  type: "DISPLAY_ON_REVIEW";
5318
5433
  conditional: import(".").JSONSchema;
5319
5434
  })[] | undefined;
5435
+ secured?: boolean | undefined;
5320
5436
  placeholder?: {
5321
5437
  id: string;
5322
5438
  description: string;
@@ -5369,6 +5485,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
5369
5485
  type: "DISPLAY_ON_REVIEW";
5370
5486
  conditional: import(".").JSONSchema;
5371
5487
  })[] | undefined;
5488
+ secured?: boolean | undefined;
5372
5489
  placeholder?: {
5373
5490
  id: string;
5374
5491
  description: string;
@@ -5424,6 +5541,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
5424
5541
  type: "DISPLAY_ON_REVIEW";
5425
5542
  conditional: import(".").JSONSchema;
5426
5543
  })[] | undefined;
5544
+ secured?: boolean | undefined;
5427
5545
  placeholder?: {
5428
5546
  id: string;
5429
5547
  description: string;
@@ -5466,6 +5584,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
5466
5584
  type: "DISPLAY_ON_REVIEW";
5467
5585
  conditional: import(".").JSONSchema;
5468
5586
  })[] | undefined;
5587
+ secured?: boolean | undefined;
5469
5588
  placeholder?: {
5470
5589
  id: string;
5471
5590
  description: string;
@@ -5524,6 +5643,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
5524
5643
  type: "DISPLAY_ON_REVIEW";
5525
5644
  conditional: import(".").JSONSchema;
5526
5645
  })[] | undefined;
5646
+ secured?: boolean | undefined;
5527
5647
  placeholder?: {
5528
5648
  id: string;
5529
5649
  description: string;
@@ -5566,6 +5686,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
5566
5686
  type: "DISPLAY_ON_REVIEW";
5567
5687
  conditional: import(".").JSONSchema;
5568
5688
  })[] | undefined;
5689
+ secured?: boolean | undefined;
5569
5690
  placeholder?: {
5570
5691
  id: string;
5571
5692
  description: string;
@@ -5608,6 +5729,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
5608
5729
  type: "DISPLAY_ON_REVIEW";
5609
5730
  conditional: import(".").JSONSchema;
5610
5731
  })[] | undefined;
5732
+ secured?: boolean | undefined;
5611
5733
  placeholder?: {
5612
5734
  id: string;
5613
5735
  description: string;
@@ -5650,6 +5772,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
5650
5772
  type: "DISPLAY_ON_REVIEW";
5651
5773
  conditional: import(".").JSONSchema;
5652
5774
  })[] | undefined;
5775
+ secured?: boolean | undefined;
5653
5776
  placeholder?: {
5654
5777
  id: string;
5655
5778
  description: string;
@@ -5698,6 +5821,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
5698
5821
  type: "DISPLAY_ON_REVIEW";
5699
5822
  conditional: import(".").JSONSchema;
5700
5823
  })[] | undefined;
5824
+ secured?: boolean | undefined;
5701
5825
  placeholder?: {
5702
5826
  id: string;
5703
5827
  description: string;
@@ -5740,6 +5864,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
5740
5864
  type: "DISPLAY_ON_REVIEW";
5741
5865
  conditional: import(".").JSONSchema;
5742
5866
  })[] | undefined;
5867
+ secured?: boolean | undefined;
5743
5868
  placeholder?: {
5744
5869
  id: string;
5745
5870
  description: string;
@@ -5790,6 +5915,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
5790
5915
  type: "DISPLAY_ON_REVIEW";
5791
5916
  conditional: import(".").JSONSchema;
5792
5917
  })[] | undefined;
5918
+ secured?: boolean | undefined;
5793
5919
  placeholder?: {
5794
5920
  id: string;
5795
5921
  description: string;
@@ -5841,6 +5967,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
5841
5967
  type: "DISPLAY_ON_REVIEW";
5842
5968
  conditional: import(".").JSONSchema;
5843
5969
  })[] | undefined;
5970
+ secured?: boolean | undefined;
5844
5971
  placeholder?: {
5845
5972
  id: string;
5846
5973
  description: string;
@@ -5883,6 +6010,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
5883
6010
  type: "DISPLAY_ON_REVIEW";
5884
6011
  conditional: import(".").JSONSchema;
5885
6012
  })[] | undefined;
6013
+ secured?: boolean | undefined;
5886
6014
  placeholder?: {
5887
6015
  id: string;
5888
6016
  description: string;
@@ -5925,6 +6053,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
5925
6053
  type: "DISPLAY_ON_REVIEW";
5926
6054
  conditional: import(".").JSONSchema;
5927
6055
  })[] | undefined;
6056
+ secured?: boolean | undefined;
5928
6057
  placeholder?: {
5929
6058
  id: string;
5930
6059
  description: string;
@@ -6016,6 +6145,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
6016
6145
  type: "DISPLAY_ON_REVIEW";
6017
6146
  conditional: import(".").JSONSchema;
6018
6147
  })[] | undefined;
6148
+ secured?: boolean | undefined;
6019
6149
  placeholder?: {
6020
6150
  id: string;
6021
6151
  description: string;
@@ -6163,6 +6293,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
6163
6293
  }>>;
6164
6294
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
6165
6295
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
6296
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
6166
6297
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
6167
6298
  id: string;
6168
6299
  description: string;
@@ -6308,6 +6439,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
6308
6439
  type: "DISPLAY_ON_REVIEW";
6309
6440
  conditional: import(".").JSONSchema;
6310
6441
  })[] | undefined;
6442
+ secured?: boolean | undefined;
6311
6443
  placeholder?: TranslationConfig | undefined;
6312
6444
  helperText?: TranslationConfig | undefined;
6313
6445
  hideLabel?: boolean | undefined;
@@ -6370,6 +6502,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
6370
6502
  type: "DISPLAY_ON_REVIEW";
6371
6503
  conditional: import(".").JSONSchema;
6372
6504
  })[] | undefined;
6505
+ secured?: boolean | undefined;
6373
6506
  placeholder?: {
6374
6507
  id: string;
6375
6508
  description: string;
@@ -6421,6 +6554,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
6421
6554
  }>>;
6422
6555
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
6423
6556
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
6557
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
6424
6558
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
6425
6559
  id: string;
6426
6560
  description: string;
@@ -6512,6 +6646,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
6512
6646
  type: "DISPLAY_ON_REVIEW";
6513
6647
  conditional: import(".").JSONSchema;
6514
6648
  })[] | undefined;
6649
+ secured?: boolean | undefined;
6515
6650
  placeholder?: TranslationConfig | undefined;
6516
6651
  helperText?: TranslationConfig | undefined;
6517
6652
  hideLabel?: boolean | undefined;
@@ -6552,6 +6687,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
6552
6687
  type: "DISPLAY_ON_REVIEW";
6553
6688
  conditional: import(".").JSONSchema;
6554
6689
  })[] | undefined;
6690
+ secured?: boolean | undefined;
6555
6691
  placeholder?: {
6556
6692
  id: string;
6557
6693
  description: string;
@@ -6589,6 +6725,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
6589
6725
  }>>;
6590
6726
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
6591
6727
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
6728
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
6592
6729
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
6593
6730
  id: string;
6594
6731
  description: string;
@@ -6680,6 +6817,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
6680
6817
  type: "DISPLAY_ON_REVIEW";
6681
6818
  conditional: import(".").JSONSchema;
6682
6819
  })[] | undefined;
6820
+ secured?: boolean | undefined;
6683
6821
  placeholder?: TranslationConfig | undefined;
6684
6822
  helperText?: TranslationConfig | undefined;
6685
6823
  hideLabel?: boolean | undefined;
@@ -6720,6 +6858,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
6720
6858
  type: "DISPLAY_ON_REVIEW";
6721
6859
  conditional: import(".").JSONSchema;
6722
6860
  })[] | undefined;
6861
+ secured?: boolean | undefined;
6723
6862
  placeholder?: {
6724
6863
  id: string;
6725
6864
  description: string;
@@ -6757,6 +6896,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
6757
6896
  }>>;
6758
6897
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
6759
6898
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
6899
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
6760
6900
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
6761
6901
  id: string;
6762
6902
  description: string;
@@ -6851,6 +6991,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
6851
6991
  type: "DISPLAY_ON_REVIEW";
6852
6992
  conditional: import(".").JSONSchema;
6853
6993
  })[] | undefined;
6994
+ secured?: boolean | undefined;
6854
6995
  placeholder?: TranslationConfig | undefined;
6855
6996
  helperText?: TranslationConfig | undefined;
6856
6997
  hideLabel?: boolean | undefined;
@@ -6892,6 +7033,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
6892
7033
  type: "DISPLAY_ON_REVIEW";
6893
7034
  conditional: import(".").JSONSchema;
6894
7035
  })[] | undefined;
7036
+ secured?: boolean | undefined;
6895
7037
  placeholder?: {
6896
7038
  id: string;
6897
7039
  description: string;
@@ -6930,6 +7072,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
6930
7072
  }>>;
6931
7073
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
6932
7074
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7075
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
6933
7076
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
6934
7077
  id: string;
6935
7078
  description: string;
@@ -7004,6 +7147,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
7004
7147
  type: "DISPLAY_ON_REVIEW";
7005
7148
  conditional: import(".").JSONSchema;
7006
7149
  })[] | undefined;
7150
+ secured?: boolean | undefined;
7007
7151
  placeholder?: TranslationConfig | undefined;
7008
7152
  helperText?: TranslationConfig | undefined;
7009
7153
  hideLabel?: boolean | undefined;
@@ -7041,6 +7185,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
7041
7185
  type: "DISPLAY_ON_REVIEW";
7042
7186
  conditional: import(".").JSONSchema;
7043
7187
  })[] | undefined;
7188
+ secured?: boolean | undefined;
7044
7189
  placeholder?: {
7045
7190
  id: string;
7046
7191
  description: string;
@@ -7071,6 +7216,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
7071
7216
  }>>;
7072
7217
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
7073
7218
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7219
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7074
7220
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
7075
7221
  id: string;
7076
7222
  description: string;
@@ -7145,6 +7291,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
7145
7291
  type: "DISPLAY_ON_REVIEW";
7146
7292
  conditional: import(".").JSONSchema;
7147
7293
  })[] | undefined;
7294
+ secured?: boolean | undefined;
7148
7295
  placeholder?: TranslationConfig | undefined;
7149
7296
  helperText?: TranslationConfig | undefined;
7150
7297
  hideLabel?: boolean | undefined;
@@ -7182,6 +7329,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
7182
7329
  type: "DISPLAY_ON_REVIEW";
7183
7330
  conditional: import(".").JSONSchema;
7184
7331
  })[] | undefined;
7332
+ secured?: boolean | undefined;
7185
7333
  placeholder?: {
7186
7334
  id: string;
7187
7335
  description: string;
@@ -7212,6 +7360,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
7212
7360
  }>>;
7213
7361
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
7214
7362
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7363
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7215
7364
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
7216
7365
  id: string;
7217
7366
  description: string;
@@ -7293,6 +7442,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
7293
7442
  type: "DISPLAY_ON_REVIEW";
7294
7443
  conditional: import(".").JSONSchema;
7295
7444
  })[] | undefined;
7445
+ secured?: boolean | undefined;
7296
7446
  placeholder?: TranslationConfig | undefined;
7297
7447
  helperText?: TranslationConfig | undefined;
7298
7448
  hideLabel?: boolean | undefined;
@@ -7327,6 +7477,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
7327
7477
  type: "DISPLAY_ON_REVIEW";
7328
7478
  conditional: import(".").JSONSchema;
7329
7479
  })[] | undefined;
7480
+ secured?: boolean | undefined;
7330
7481
  placeholder?: {
7331
7482
  id: string;
7332
7483
  description: string;
@@ -7355,6 +7506,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
7355
7506
  }>>;
7356
7507
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
7357
7508
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7509
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7358
7510
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
7359
7511
  id: string;
7360
7512
  description: string;
@@ -7453,6 +7605,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
7453
7605
  type: "DISPLAY_ON_REVIEW";
7454
7606
  conditional: import(".").JSONSchema;
7455
7607
  })[] | undefined;
7608
+ secured?: boolean | undefined;
7456
7609
  placeholder?: TranslationConfig | undefined;
7457
7610
  helperText?: TranslationConfig | undefined;
7458
7611
  hideLabel?: boolean | undefined;
@@ -7500,6 +7653,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
7500
7653
  type: "DISPLAY_ON_REVIEW";
7501
7654
  conditional: import(".").JSONSchema;
7502
7655
  })[] | undefined;
7656
+ secured?: boolean | undefined;
7503
7657
  placeholder?: {
7504
7658
  id: string;
7505
7659
  description: string;
@@ -7528,6 +7682,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
7528
7682
  }>>;
7529
7683
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
7530
7684
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7685
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7531
7686
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
7532
7687
  id: string;
7533
7688
  description: string;
@@ -7615,6 +7770,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
7615
7770
  type: "DISPLAY_ON_REVIEW";
7616
7771
  conditional: import(".").JSONSchema;
7617
7772
  })[] | undefined;
7773
+ secured?: boolean | undefined;
7618
7774
  placeholder?: TranslationConfig | undefined;
7619
7775
  helperText?: TranslationConfig | undefined;
7620
7776
  hideLabel?: boolean | undefined;
@@ -7654,6 +7810,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
7654
7810
  type: "DISPLAY_ON_REVIEW";
7655
7811
  conditional: import(".").JSONSchema;
7656
7812
  })[] | undefined;
7813
+ secured?: boolean | undefined;
7657
7814
  placeholder?: {
7658
7815
  id: string;
7659
7816
  description: string;
@@ -7682,6 +7839,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
7682
7839
  }>>;
7683
7840
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
7684
7841
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7842
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7685
7843
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
7686
7844
  id: string;
7687
7845
  description: string;
@@ -7741,6 +7899,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
7741
7899
  type: "DISPLAY_ON_REVIEW";
7742
7900
  conditional: import(".").JSONSchema;
7743
7901
  })[] | undefined;
7902
+ secured?: boolean | undefined;
7744
7903
  placeholder?: TranslationConfig | undefined;
7745
7904
  helperText?: TranslationConfig | undefined;
7746
7905
  hideLabel?: boolean | undefined;
@@ -7775,6 +7934,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
7775
7934
  type: "DISPLAY_ON_REVIEW";
7776
7935
  conditional: import(".").JSONSchema;
7777
7936
  })[] | undefined;
7937
+ secured?: boolean | undefined;
7778
7938
  placeholder?: {
7779
7939
  id: string;
7780
7940
  description: string;
@@ -7798,6 +7958,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
7798
7958
  }>>;
7799
7959
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
7800
7960
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7961
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7801
7962
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
7802
7963
  id: string;
7803
7964
  description: string;
@@ -7879,6 +8040,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
7879
8040
  type: "DISPLAY_ON_REVIEW";
7880
8041
  conditional: import(".").JSONSchema;
7881
8042
  })[] | undefined;
8043
+ secured?: boolean | undefined;
7882
8044
  placeholder?: TranslationConfig | undefined;
7883
8045
  helperText?: TranslationConfig | undefined;
7884
8046
  hideLabel?: boolean | undefined;
@@ -7921,6 +8083,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
7921
8083
  type: "DISPLAY_ON_REVIEW";
7922
8084
  conditional: import(".").JSONSchema;
7923
8085
  })[] | undefined;
8086
+ secured?: boolean | undefined;
7924
8087
  placeholder?: {
7925
8088
  id: string;
7926
8089
  description: string;
@@ -7944,6 +8107,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
7944
8107
  }>>;
7945
8108
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
7946
8109
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
8110
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
7947
8111
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
7948
8112
  id: string;
7949
8113
  description: string;
@@ -8041,6 +8205,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
8041
8205
  type: "DISPLAY_ON_REVIEW";
8042
8206
  conditional: import(".").JSONSchema;
8043
8207
  })[] | undefined;
8208
+ secured?: boolean | undefined;
8044
8209
  placeholder?: TranslationConfig | undefined;
8045
8210
  helperText?: TranslationConfig | undefined;
8046
8211
  hideLabel?: boolean | undefined;
@@ -8083,6 +8248,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
8083
8248
  type: "DISPLAY_ON_REVIEW";
8084
8249
  conditional: import(".").JSONSchema;
8085
8250
  })[] | undefined;
8251
+ secured?: boolean | undefined;
8086
8252
  placeholder?: {
8087
8253
  id: string;
8088
8254
  description: string;
@@ -8122,6 +8288,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
8122
8288
  }>>;
8123
8289
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
8124
8290
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
8291
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
8125
8292
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
8126
8293
  id: string;
8127
8294
  description: string;
@@ -8181,6 +8348,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
8181
8348
  type: "DISPLAY_ON_REVIEW";
8182
8349
  conditional: import(".").JSONSchema;
8183
8350
  })[] | undefined;
8351
+ secured?: boolean | undefined;
8184
8352
  placeholder?: TranslationConfig | undefined;
8185
8353
  helperText?: TranslationConfig | undefined;
8186
8354
  hideLabel?: boolean | undefined;
@@ -8215,6 +8383,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
8215
8383
  type: "DISPLAY_ON_REVIEW";
8216
8384
  conditional: import(".").JSONSchema;
8217
8385
  })[] | undefined;
8386
+ secured?: boolean | undefined;
8218
8387
  placeholder?: {
8219
8388
  id: string;
8220
8389
  description: string;
@@ -8238,6 +8407,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
8238
8407
  }>>;
8239
8408
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
8240
8409
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
8410
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
8241
8411
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
8242
8412
  id: string;
8243
8413
  description: string;
@@ -8297,6 +8467,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
8297
8467
  type: "DISPLAY_ON_REVIEW";
8298
8468
  conditional: import(".").JSONSchema;
8299
8469
  })[] | undefined;
8470
+ secured?: boolean | undefined;
8300
8471
  placeholder?: TranslationConfig | undefined;
8301
8472
  helperText?: TranslationConfig | undefined;
8302
8473
  hideLabel?: boolean | undefined;
@@ -8331,6 +8502,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
8331
8502
  type: "DISPLAY_ON_REVIEW";
8332
8503
  conditional: import(".").JSONSchema;
8333
8504
  })[] | undefined;
8505
+ secured?: boolean | undefined;
8334
8506
  placeholder?: {
8335
8507
  id: string;
8336
8508
  description: string;
@@ -8354,6 +8526,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
8354
8526
  }>>;
8355
8527
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
8356
8528
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
8529
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
8357
8530
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
8358
8531
  id: string;
8359
8532
  description: string;
@@ -8413,6 +8586,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
8413
8586
  type: "DISPLAY_ON_REVIEW";
8414
8587
  conditional: import(".").JSONSchema;
8415
8588
  })[] | undefined;
8589
+ secured?: boolean | undefined;
8416
8590
  placeholder?: TranslationConfig | undefined;
8417
8591
  helperText?: TranslationConfig | undefined;
8418
8592
  hideLabel?: boolean | undefined;
@@ -8447,6 +8621,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
8447
8621
  type: "DISPLAY_ON_REVIEW";
8448
8622
  conditional: import(".").JSONSchema;
8449
8623
  })[] | undefined;
8624
+ secured?: boolean | undefined;
8450
8625
  placeholder?: {
8451
8626
  id: string;
8452
8627
  description: string;
@@ -8470,6 +8645,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
8470
8645
  }>>;
8471
8646
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
8472
8647
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
8648
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
8473
8649
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
8474
8650
  id: string;
8475
8651
  description: string;
@@ -8583,6 +8759,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
8583
8759
  type: "DISPLAY_ON_REVIEW";
8584
8760
  conditional: import(".").JSONSchema;
8585
8761
  })[] | undefined;
8762
+ secured?: boolean | undefined;
8586
8763
  placeholder?: TranslationConfig | undefined;
8587
8764
  helperText?: TranslationConfig | undefined;
8588
8765
  hideLabel?: boolean | undefined;
@@ -8621,6 +8798,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
8621
8798
  type: "DISPLAY_ON_REVIEW";
8622
8799
  conditional: import(".").JSONSchema;
8623
8800
  })[] | undefined;
8801
+ secured?: boolean | undefined;
8624
8802
  placeholder?: {
8625
8803
  id: string;
8626
8804
  description: string;
@@ -8660,6 +8838,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
8660
8838
  }>>;
8661
8839
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
8662
8840
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
8841
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
8663
8842
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
8664
8843
  id: string;
8665
8844
  description: string;
@@ -8719,6 +8898,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
8719
8898
  type: "DISPLAY_ON_REVIEW";
8720
8899
  conditional: import(".").JSONSchema;
8721
8900
  })[] | undefined;
8901
+ secured?: boolean | undefined;
8722
8902
  placeholder?: TranslationConfig | undefined;
8723
8903
  helperText?: TranslationConfig | undefined;
8724
8904
  hideLabel?: boolean | undefined;
@@ -8753,6 +8933,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
8753
8933
  type: "DISPLAY_ON_REVIEW";
8754
8934
  conditional: import(".").JSONSchema;
8755
8935
  })[] | undefined;
8936
+ secured?: boolean | undefined;
8756
8937
  placeholder?: {
8757
8938
  id: string;
8758
8939
  description: string;
@@ -8776,6 +8957,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
8776
8957
  }>>;
8777
8958
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
8778
8959
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
8960
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
8779
8961
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
8780
8962
  id: string;
8781
8963
  description: string;
@@ -8861,6 +9043,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
8861
9043
  type: "DISPLAY_ON_REVIEW";
8862
9044
  conditional: import(".").JSONSchema;
8863
9045
  })[] | undefined;
9046
+ secured?: boolean | undefined;
8864
9047
  placeholder?: TranslationConfig | undefined;
8865
9048
  helperText?: TranslationConfig | undefined;
8866
9049
  hideLabel?: boolean | undefined;
@@ -8901,6 +9084,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
8901
9084
  type: "DISPLAY_ON_REVIEW";
8902
9085
  conditional: import(".").JSONSchema;
8903
9086
  })[] | undefined;
9087
+ secured?: boolean | undefined;
8904
9088
  placeholder?: {
8905
9089
  id: string;
8906
9090
  description: string;
@@ -8924,6 +9108,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
8924
9108
  }>>;
8925
9109
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
8926
9110
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
9111
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
8927
9112
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
8928
9113
  id: string;
8929
9114
  description: string;
@@ -8982,6 +9167,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
8982
9167
  type: "DISPLAY_ON_REVIEW";
8983
9168
  conditional: import(".").JSONSchema;
8984
9169
  })[] | undefined;
9170
+ secured?: boolean | undefined;
8985
9171
  placeholder?: TranslationConfig | undefined;
8986
9172
  helperText?: TranslationConfig | undefined;
8987
9173
  hideLabel?: boolean | undefined;
@@ -9015,6 +9201,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
9015
9201
  type: "DISPLAY_ON_REVIEW";
9016
9202
  conditional: import(".").JSONSchema;
9017
9203
  })[] | undefined;
9204
+ secured?: boolean | undefined;
9018
9205
  placeholder?: {
9019
9206
  id: string;
9020
9207
  description: string;
@@ -9037,6 +9224,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
9037
9224
  }>>;
9038
9225
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
9039
9226
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
9227
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
9040
9228
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
9041
9229
  id: string;
9042
9230
  description: string;
@@ -9096,6 +9284,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
9096
9284
  type: "DISPLAY_ON_REVIEW";
9097
9285
  conditional: import(".").JSONSchema;
9098
9286
  })[] | undefined;
9287
+ secured?: boolean | undefined;
9099
9288
  placeholder?: TranslationConfig | undefined;
9100
9289
  helperText?: TranslationConfig | undefined;
9101
9290
  hideLabel?: boolean | undefined;
@@ -9130,6 +9319,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
9130
9319
  type: "DISPLAY_ON_REVIEW";
9131
9320
  conditional: import(".").JSONSchema;
9132
9321
  })[] | undefined;
9322
+ secured?: boolean | undefined;
9133
9323
  placeholder?: {
9134
9324
  id: string;
9135
9325
  description: string;
@@ -9153,6 +9343,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
9153
9343
  }>>;
9154
9344
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
9155
9345
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
9346
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
9156
9347
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
9157
9348
  id: string;
9158
9349
  description: string;
@@ -9212,6 +9403,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
9212
9403
  type: "DISPLAY_ON_REVIEW";
9213
9404
  conditional: import(".").JSONSchema;
9214
9405
  })[] | undefined;
9406
+ secured?: boolean | undefined;
9215
9407
  placeholder?: TranslationConfig | undefined;
9216
9408
  helperText?: TranslationConfig | undefined;
9217
9409
  hideLabel?: boolean | undefined;
@@ -9246,6 +9438,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
9246
9438
  type: "DISPLAY_ON_REVIEW";
9247
9439
  conditional: import(".").JSONSchema;
9248
9440
  })[] | undefined;
9441
+ secured?: boolean | undefined;
9249
9442
  placeholder?: {
9250
9443
  id: string;
9251
9444
  description: string;
@@ -9269,6 +9462,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
9269
9462
  }>>;
9270
9463
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
9271
9464
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
9465
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
9272
9466
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
9273
9467
  id: string;
9274
9468
  description: string;
@@ -9328,6 +9522,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
9328
9522
  type: "DISPLAY_ON_REVIEW";
9329
9523
  conditional: import(".").JSONSchema;
9330
9524
  })[] | undefined;
9525
+ secured?: boolean | undefined;
9331
9526
  placeholder?: TranslationConfig | undefined;
9332
9527
  helperText?: TranslationConfig | undefined;
9333
9528
  hideLabel?: boolean | undefined;
@@ -9362,6 +9557,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
9362
9557
  type: "DISPLAY_ON_REVIEW";
9363
9558
  conditional: import(".").JSONSchema;
9364
9559
  })[] | undefined;
9560
+ secured?: boolean | undefined;
9365
9561
  placeholder?: {
9366
9562
  id: string;
9367
9563
  description: string;
@@ -9385,6 +9581,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
9385
9581
  }>>;
9386
9582
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
9387
9583
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
9584
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
9388
9585
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
9389
9586
  id: string;
9390
9587
  description: string;
@@ -9464,6 +9661,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
9464
9661
  type: "DISPLAY_ON_REVIEW";
9465
9662
  conditional: import(".").JSONSchema;
9466
9663
  })[] | undefined;
9664
+ secured?: boolean | undefined;
9467
9665
  placeholder?: TranslationConfig | undefined;
9468
9666
  helperText?: TranslationConfig | undefined;
9469
9667
  hideLabel?: boolean | undefined;
@@ -9503,6 +9701,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
9503
9701
  type: "DISPLAY_ON_REVIEW";
9504
9702
  conditional: import(".").JSONSchema;
9505
9703
  })[] | undefined;
9704
+ secured?: boolean | undefined;
9506
9705
  placeholder?: {
9507
9706
  id: string;
9508
9707
  description: string;
@@ -9530,6 +9729,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
9530
9729
  }>>;
9531
9730
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
9532
9731
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
9732
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
9533
9733
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
9534
9734
  id: string;
9535
9735
  description: string;
@@ -9596,6 +9796,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
9596
9796
  type: "DISPLAY_ON_REVIEW";
9597
9797
  conditional: import(".").JSONSchema;
9598
9798
  })[] | undefined;
9799
+ secured?: boolean | undefined;
9599
9800
  placeholder?: TranslationConfig | undefined;
9600
9801
  helperText?: TranslationConfig | undefined;
9601
9802
  hideLabel?: boolean | undefined;
@@ -9633,6 +9834,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
9633
9834
  type: "DISPLAY_ON_REVIEW";
9634
9835
  conditional: import(".").JSONSchema;
9635
9836
  })[] | undefined;
9837
+ secured?: boolean | undefined;
9636
9838
  placeholder?: {
9637
9839
  id: string;
9638
9840
  description: string;
@@ -9659,6 +9861,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
9659
9861
  }>>;
9660
9862
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
9661
9863
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
9864
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
9662
9865
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
9663
9866
  id: string;
9664
9867
  description: string;
@@ -9769,6 +9972,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
9769
9972
  type: "DISPLAY_ON_REVIEW";
9770
9973
  conditional: import(".").JSONSchema;
9771
9974
  })[] | undefined;
9975
+ secured?: boolean | undefined;
9772
9976
  placeholder?: TranslationConfig | undefined;
9773
9977
  helperText?: TranslationConfig | undefined;
9774
9978
  hideLabel?: boolean | undefined;
@@ -9816,6 +10020,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
9816
10020
  type: "DISPLAY_ON_REVIEW";
9817
10021
  conditional: import(".").JSONSchema;
9818
10022
  })[] | undefined;
10023
+ secured?: boolean | undefined;
9819
10024
  placeholder?: {
9820
10025
  id: string;
9821
10026
  description: string;
@@ -9848,6 +10053,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
9848
10053
  }>>;
9849
10054
  conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
9850
10055
  required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
10056
+ secured: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
9851
10057
  placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
9852
10058
  id: string;
9853
10059
  description: string;
@@ -9982,6 +10188,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
9982
10188
  type: "DISPLAY_ON_REVIEW";
9983
10189
  conditional: import(".").JSONSchema;
9984
10190
  })[] | undefined;
10191
+ secured?: boolean | undefined;
9985
10192
  placeholder?: TranslationConfig | undefined;
9986
10193
  helperText?: TranslationConfig | undefined;
9987
10194
  hideLabel?: boolean | undefined;
@@ -10036,6 +10243,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
10036
10243
  type: "DISPLAY_ON_REVIEW";
10037
10244
  conditional: import(".").JSONSchema;
10038
10245
  })[] | undefined;
10246
+ secured?: boolean | undefined;
10039
10247
  placeholder?: {
10040
10248
  id: string;
10041
10249
  description: string;
@@ -10203,6 +10411,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
10203
10411
  type: "DISPLAY_ON_REVIEW";
10204
10412
  conditional: import(".").JSONSchema;
10205
10413
  })[] | undefined;
10414
+ secured?: boolean | undefined;
10206
10415
  placeholder?: TranslationConfig | undefined;
10207
10416
  helperText?: TranslationConfig | undefined;
10208
10417
  hideLabel?: boolean | undefined;
@@ -10228,6 +10437,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
10228
10437
  type: "DISPLAY_ON_REVIEW";
10229
10438
  conditional: import(".").JSONSchema;
10230
10439
  })[] | undefined;
10440
+ secured?: boolean | undefined;
10231
10441
  placeholder?: TranslationConfig | undefined;
10232
10442
  helperText?: TranslationConfig | undefined;
10233
10443
  hideLabel?: boolean | undefined;
@@ -10260,6 +10470,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
10260
10470
  type: "DISPLAY_ON_REVIEW";
10261
10471
  conditional: import(".").JSONSchema;
10262
10472
  })[] | undefined;
10473
+ secured?: boolean | undefined;
10263
10474
  placeholder?: TranslationConfig | undefined;
10264
10475
  helperText?: TranslationConfig | undefined;
10265
10476
  hideLabel?: boolean | undefined;
@@ -10292,6 +10503,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
10292
10503
  type: "DISPLAY_ON_REVIEW";
10293
10504
  conditional: import(".").JSONSchema;
10294
10505
  })[] | undefined;
10506
+ secured?: boolean | undefined;
10295
10507
  placeholder?: TranslationConfig | undefined;
10296
10508
  helperText?: TranslationConfig | undefined;
10297
10509
  hideLabel?: boolean | undefined;
@@ -10330,6 +10542,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
10330
10542
  type: "DISPLAY_ON_REVIEW";
10331
10543
  conditional: import(".").JSONSchema;
10332
10544
  })[] | undefined;
10545
+ secured?: boolean | undefined;
10333
10546
  placeholder?: TranslationConfig | undefined;
10334
10547
  helperText?: TranslationConfig | undefined;
10335
10548
  hideLabel?: boolean | undefined;
@@ -10356,6 +10569,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
10356
10569
  type: "DISPLAY_ON_REVIEW";
10357
10570
  conditional: import(".").JSONSchema;
10358
10571
  })[] | undefined;
10572
+ secured?: boolean | undefined;
10359
10573
  placeholder?: TranslationConfig | undefined;
10360
10574
  helperText?: TranslationConfig | undefined;
10361
10575
  hideLabel?: boolean | undefined;
@@ -10385,6 +10599,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
10385
10599
  type: "DISPLAY_ON_REVIEW";
10386
10600
  conditional: import(".").JSONSchema;
10387
10601
  })[] | undefined;
10602
+ secured?: boolean | undefined;
10388
10603
  placeholder?: TranslationConfig | undefined;
10389
10604
  helperText?: TranslationConfig | undefined;
10390
10605
  hideLabel?: boolean | undefined;
@@ -10414,6 +10629,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
10414
10629
  type: "DISPLAY_ON_REVIEW";
10415
10630
  conditional: import(".").JSONSchema;
10416
10631
  })[] | undefined;
10632
+ secured?: boolean | undefined;
10417
10633
  placeholder?: TranslationConfig | undefined;
10418
10634
  helperText?: TranslationConfig | undefined;
10419
10635
  hideLabel?: boolean | undefined;
@@ -10448,6 +10664,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
10448
10664
  type: "DISPLAY_ON_REVIEW";
10449
10665
  conditional: import(".").JSONSchema;
10450
10666
  })[] | undefined;
10667
+ secured?: boolean | undefined;
10451
10668
  placeholder?: TranslationConfig | undefined;
10452
10669
  helperText?: TranslationConfig | undefined;
10453
10670
  hideLabel?: boolean | undefined;
@@ -10474,6 +10691,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
10474
10691
  type: "DISPLAY_ON_REVIEW";
10475
10692
  conditional: import(".").JSONSchema;
10476
10693
  })[] | undefined;
10694
+ secured?: boolean | undefined;
10477
10695
  placeholder?: TranslationConfig | undefined;
10478
10696
  helperText?: TranslationConfig | undefined;
10479
10697
  hideLabel?: boolean | undefined;
@@ -10508,6 +10726,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
10508
10726
  type: "DISPLAY_ON_REVIEW";
10509
10727
  conditional: import(".").JSONSchema;
10510
10728
  })[] | undefined;
10729
+ secured?: boolean | undefined;
10511
10730
  placeholder?: TranslationConfig | undefined;
10512
10731
  helperText?: TranslationConfig | undefined;
10513
10732
  hideLabel?: boolean | undefined;
@@ -10542,6 +10761,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
10542
10761
  type: "DISPLAY_ON_REVIEW";
10543
10762
  conditional: import(".").JSONSchema;
10544
10763
  })[] | undefined;
10764
+ secured?: boolean | undefined;
10545
10765
  placeholder?: TranslationConfig | undefined;
10546
10766
  helperText?: TranslationConfig | undefined;
10547
10767
  hideLabel?: boolean | undefined;
@@ -10579,6 +10799,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
10579
10799
  type: "DISPLAY_ON_REVIEW";
10580
10800
  conditional: import(".").JSONSchema;
10581
10801
  })[] | undefined;
10802
+ secured?: boolean | undefined;
10582
10803
  placeholder?: TranslationConfig | undefined;
10583
10804
  helperText?: TranslationConfig | undefined;
10584
10805
  hideLabel?: boolean | undefined;
@@ -10609,6 +10830,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
10609
10830
  type: "DISPLAY_ON_REVIEW";
10610
10831
  conditional: import(".").JSONSchema;
10611
10832
  })[] | undefined;
10833
+ secured?: boolean | undefined;
10612
10834
  placeholder?: TranslationConfig | undefined;
10613
10835
  helperText?: TranslationConfig | undefined;
10614
10836
  hideLabel?: boolean | undefined;
@@ -10635,6 +10857,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
10635
10857
  type: "DISPLAY_ON_REVIEW";
10636
10858
  conditional: import(".").JSONSchema;
10637
10859
  })[] | undefined;
10860
+ secured?: boolean | undefined;
10638
10861
  placeholder?: TranslationConfig | undefined;
10639
10862
  helperText?: TranslationConfig | undefined;
10640
10863
  hideLabel?: boolean | undefined;
@@ -10669,6 +10892,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
10669
10892
  type: "DISPLAY_ON_REVIEW";
10670
10893
  conditional: import(".").JSONSchema;
10671
10894
  })[] | undefined;
10895
+ secured?: boolean | undefined;
10672
10896
  placeholder?: TranslationConfig | undefined;
10673
10897
  helperText?: TranslationConfig | undefined;
10674
10898
  hideLabel?: boolean | undefined;
@@ -10695,6 +10919,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
10695
10919
  type: "DISPLAY_ON_REVIEW";
10696
10920
  conditional: import(".").JSONSchema;
10697
10921
  })[] | undefined;
10922
+ secured?: boolean | undefined;
10698
10923
  placeholder?: TranslationConfig | undefined;
10699
10924
  helperText?: TranslationConfig | undefined;
10700
10925
  hideLabel?: boolean | undefined;
@@ -10721,6 +10946,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
10721
10946
  type: "DISPLAY_ON_REVIEW";
10722
10947
  conditional: import(".").JSONSchema;
10723
10948
  })[] | undefined;
10949
+ secured?: boolean | undefined;
10724
10950
  placeholder?: TranslationConfig | undefined;
10725
10951
  helperText?: TranslationConfig | undefined;
10726
10952
  hideLabel?: boolean | undefined;
@@ -10747,6 +10973,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
10747
10973
  type: "DISPLAY_ON_REVIEW";
10748
10974
  conditional: import(".").JSONSchema;
10749
10975
  })[] | undefined;
10976
+ secured?: boolean | undefined;
10750
10977
  placeholder?: TranslationConfig | undefined;
10751
10978
  helperText?: TranslationConfig | undefined;
10752
10979
  hideLabel?: boolean | undefined;
@@ -10779,6 +11006,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
10779
11006
  type: "DISPLAY_ON_REVIEW";
10780
11007
  conditional: import(".").JSONSchema;
10781
11008
  })[] | undefined;
11009
+ secured?: boolean | undefined;
10782
11010
  placeholder?: TranslationConfig | undefined;
10783
11011
  helperText?: TranslationConfig | undefined;
10784
11012
  hideLabel?: boolean | undefined;
@@ -10805,6 +11033,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
10805
11033
  type: "DISPLAY_ON_REVIEW";
10806
11034
  conditional: import(".").JSONSchema;
10807
11035
  })[] | undefined;
11036
+ secured?: boolean | undefined;
10808
11037
  placeholder?: TranslationConfig | undefined;
10809
11038
  helperText?: TranslationConfig | undefined;
10810
11039
  hideLabel?: boolean | undefined;
@@ -10839,6 +11068,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
10839
11068
  type: "DISPLAY_ON_REVIEW";
10840
11069
  conditional: import(".").JSONSchema;
10841
11070
  })[] | undefined;
11071
+ secured?: boolean | undefined;
10842
11072
  placeholder?: TranslationConfig | undefined;
10843
11073
  helperText?: TranslationConfig | undefined;
10844
11074
  hideLabel?: boolean | undefined;
@@ -10870,6 +11100,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
10870
11100
  type: "DISPLAY_ON_REVIEW";
10871
11101
  conditional: import(".").JSONSchema;
10872
11102
  })[] | undefined;
11103
+ secured?: boolean | undefined;
10873
11104
  placeholder?: TranslationConfig | undefined;
10874
11105
  helperText?: TranslationConfig | undefined;
10875
11106
  hideLabel?: boolean | undefined;
@@ -10896,6 +11127,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
10896
11127
  type: "DISPLAY_ON_REVIEW";
10897
11128
  conditional: import(".").JSONSchema;
10898
11129
  })[] | undefined;
11130
+ secured?: boolean | undefined;
10899
11131
  placeholder?: TranslationConfig | undefined;
10900
11132
  helperText?: TranslationConfig | undefined;
10901
11133
  hideLabel?: boolean | undefined;
@@ -10922,6 +11154,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
10922
11154
  type: "DISPLAY_ON_REVIEW";
10923
11155
  conditional: import(".").JSONSchema;
10924
11156
  })[] | undefined;
11157
+ secured?: boolean | undefined;
10925
11158
  placeholder?: TranslationConfig | undefined;
10926
11159
  helperText?: TranslationConfig | undefined;
10927
11160
  hideLabel?: boolean | undefined;
@@ -10985,6 +11218,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
10985
11218
  type: "DISPLAY_ON_REVIEW";
10986
11219
  conditional: import(".").JSONSchema;
10987
11220
  })[] | undefined;
11221
+ secured?: boolean | undefined;
10988
11222
  placeholder?: TranslationConfig | undefined;
10989
11223
  helperText?: TranslationConfig | undefined;
10990
11224
  hideLabel?: boolean | undefined;
@@ -11056,6 +11290,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
11056
11290
  type: "DISPLAY_ON_REVIEW";
11057
11291
  conditional: import(".").JSONSchema;
11058
11292
  })[] | undefined;
11293
+ secured?: boolean | undefined;
11059
11294
  placeholder?: {
11060
11295
  id: string;
11061
11296
  description: string;
@@ -11097,6 +11332,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
11097
11332
  type: "DISPLAY_ON_REVIEW";
11098
11333
  conditional: import(".").JSONSchema;
11099
11334
  })[] | undefined;
11335
+ secured?: boolean | undefined;
11100
11336
  placeholder?: {
11101
11337
  id: string;
11102
11338
  description: string;
@@ -11153,6 +11389,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
11153
11389
  type: "DISPLAY_ON_REVIEW";
11154
11390
  conditional: import(".").JSONSchema;
11155
11391
  })[] | undefined;
11392
+ secured?: boolean | undefined;
11156
11393
  placeholder?: {
11157
11394
  id: string;
11158
11395
  description: string;
@@ -11209,6 +11446,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
11209
11446
  type: "DISPLAY_ON_REVIEW";
11210
11447
  conditional: import(".").JSONSchema;
11211
11448
  })[] | undefined;
11449
+ secured?: boolean | undefined;
11212
11450
  placeholder?: {
11213
11451
  id: string;
11214
11452
  description: string;
@@ -11271,6 +11509,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
11271
11509
  type: "DISPLAY_ON_REVIEW";
11272
11510
  conditional: import(".").JSONSchema;
11273
11511
  })[] | undefined;
11512
+ secured?: boolean | undefined;
11274
11513
  placeholder?: {
11275
11514
  id: string;
11276
11515
  description: string;
@@ -11317,6 +11556,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
11317
11556
  type: "DISPLAY_ON_REVIEW";
11318
11557
  conditional: import(".").JSONSchema;
11319
11558
  })[] | undefined;
11559
+ secured?: boolean | undefined;
11320
11560
  placeholder?: {
11321
11561
  id: string;
11322
11562
  description: string;
@@ -11362,6 +11602,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
11362
11602
  type: "DISPLAY_ON_REVIEW";
11363
11603
  conditional: import(".").JSONSchema;
11364
11604
  })[] | undefined;
11605
+ secured?: boolean | undefined;
11365
11606
  placeholder?: {
11366
11607
  id: string;
11367
11608
  description: string;
@@ -11411,6 +11652,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
11411
11652
  type: "DISPLAY_ON_REVIEW";
11412
11653
  conditional: import(".").JSONSchema;
11413
11654
  })[] | undefined;
11655
+ secured?: boolean | undefined;
11414
11656
  placeholder?: {
11415
11657
  id: string;
11416
11658
  description: string;
@@ -11460,6 +11702,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
11460
11702
  type: "DISPLAY_ON_REVIEW";
11461
11703
  conditional: import(".").JSONSchema;
11462
11704
  })[] | undefined;
11705
+ secured?: boolean | undefined;
11463
11706
  placeholder?: {
11464
11707
  id: string;
11465
11708
  description: string;
@@ -11507,6 +11750,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
11507
11750
  type: "DISPLAY_ON_REVIEW";
11508
11751
  conditional: import(".").JSONSchema;
11509
11752
  })[] | undefined;
11753
+ secured?: boolean | undefined;
11510
11754
  placeholder?: {
11511
11755
  id: string;
11512
11756
  description: string;
@@ -11549,6 +11793,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
11549
11793
  type: "DISPLAY_ON_REVIEW";
11550
11794
  conditional: import(".").JSONSchema;
11551
11795
  })[] | undefined;
11796
+ secured?: boolean | undefined;
11552
11797
  placeholder?: {
11553
11798
  id: string;
11554
11799
  description: string;
@@ -11615,6 +11860,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
11615
11860
  type: "DISPLAY_ON_REVIEW";
11616
11861
  conditional: import(".").JSONSchema;
11617
11862
  })[] | undefined;
11863
+ secured?: boolean | undefined;
11618
11864
  placeholder?: {
11619
11865
  id: string;
11620
11866
  description: string;
@@ -11667,6 +11913,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
11667
11913
  type: "DISPLAY_ON_REVIEW";
11668
11914
  conditional: import(".").JSONSchema;
11669
11915
  })[] | undefined;
11916
+ secured?: boolean | undefined;
11670
11917
  placeholder?: {
11671
11918
  id: string;
11672
11919
  description: string;
@@ -11722,6 +11969,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
11722
11969
  type: "DISPLAY_ON_REVIEW";
11723
11970
  conditional: import(".").JSONSchema;
11724
11971
  })[] | undefined;
11972
+ secured?: boolean | undefined;
11725
11973
  placeholder?: {
11726
11974
  id: string;
11727
11975
  description: string;
@@ -11764,6 +12012,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
11764
12012
  type: "DISPLAY_ON_REVIEW";
11765
12013
  conditional: import(".").JSONSchema;
11766
12014
  })[] | undefined;
12015
+ secured?: boolean | undefined;
11767
12016
  placeholder?: {
11768
12017
  id: string;
11769
12018
  description: string;
@@ -11822,6 +12071,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
11822
12071
  type: "DISPLAY_ON_REVIEW";
11823
12072
  conditional: import(".").JSONSchema;
11824
12073
  })[] | undefined;
12074
+ secured?: boolean | undefined;
11825
12075
  placeholder?: {
11826
12076
  id: string;
11827
12077
  description: string;
@@ -11864,6 +12114,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
11864
12114
  type: "DISPLAY_ON_REVIEW";
11865
12115
  conditional: import(".").JSONSchema;
11866
12116
  })[] | undefined;
12117
+ secured?: boolean | undefined;
11867
12118
  placeholder?: {
11868
12119
  id: string;
11869
12120
  description: string;
@@ -11906,6 +12157,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
11906
12157
  type: "DISPLAY_ON_REVIEW";
11907
12158
  conditional: import(".").JSONSchema;
11908
12159
  })[] | undefined;
12160
+ secured?: boolean | undefined;
11909
12161
  placeholder?: {
11910
12162
  id: string;
11911
12163
  description: string;
@@ -11948,6 +12200,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
11948
12200
  type: "DISPLAY_ON_REVIEW";
11949
12201
  conditional: import(".").JSONSchema;
11950
12202
  })[] | undefined;
12203
+ secured?: boolean | undefined;
11951
12204
  placeholder?: {
11952
12205
  id: string;
11953
12206
  description: string;
@@ -11996,6 +12249,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
11996
12249
  type: "DISPLAY_ON_REVIEW";
11997
12250
  conditional: import(".").JSONSchema;
11998
12251
  })[] | undefined;
12252
+ secured?: boolean | undefined;
11999
12253
  placeholder?: {
12000
12254
  id: string;
12001
12255
  description: string;
@@ -12038,6 +12292,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
12038
12292
  type: "DISPLAY_ON_REVIEW";
12039
12293
  conditional: import(".").JSONSchema;
12040
12294
  })[] | undefined;
12295
+ secured?: boolean | undefined;
12041
12296
  placeholder?: {
12042
12297
  id: string;
12043
12298
  description: string;
@@ -12088,6 +12343,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
12088
12343
  type: "DISPLAY_ON_REVIEW";
12089
12344
  conditional: import(".").JSONSchema;
12090
12345
  })[] | undefined;
12346
+ secured?: boolean | undefined;
12091
12347
  placeholder?: {
12092
12348
  id: string;
12093
12349
  description: string;
@@ -12139,6 +12395,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
12139
12395
  type: "DISPLAY_ON_REVIEW";
12140
12396
  conditional: import(".").JSONSchema;
12141
12397
  })[] | undefined;
12398
+ secured?: boolean | undefined;
12142
12399
  placeholder?: {
12143
12400
  id: string;
12144
12401
  description: string;
@@ -12181,6 +12438,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
12181
12438
  type: "DISPLAY_ON_REVIEW";
12182
12439
  conditional: import(".").JSONSchema;
12183
12440
  })[] | undefined;
12441
+ secured?: boolean | undefined;
12184
12442
  placeholder?: {
12185
12443
  id: string;
12186
12444
  description: string;
@@ -12223,6 +12481,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
12223
12481
  type: "DISPLAY_ON_REVIEW";
12224
12482
  conditional: import(".").JSONSchema;
12225
12483
  })[] | undefined;
12484
+ secured?: boolean | undefined;
12226
12485
  placeholder?: {
12227
12486
  id: string;
12228
12487
  description: string;
@@ -12314,6 +12573,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
12314
12573
  type: "DISPLAY_ON_REVIEW";
12315
12574
  conditional: import(".").JSONSchema;
12316
12575
  })[] | undefined;
12576
+ secured?: boolean | undefined;
12317
12577
  placeholder?: {
12318
12578
  id: string;
12319
12579
  description: string;