@opencrvs/toolkit 1.8.0-rc.ff0a1b5 → 1.8.0-rc.ff0b26c
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.
- package/dist/commons/api/router.d.ts +2923 -7
- package/dist/commons/events/ActionConfig.d.ts +8022 -1007
- package/dist/commons/events/AdvancedSearchConfig.d.ts +603 -12
- package/dist/commons/events/EventConfig.d.ts +3622 -113
- package/dist/commons/events/EventIndex.d.ts +318 -45
- package/dist/commons/events/EventMetadata.d.ts +1 -0
- package/dist/commons/events/FieldConfig.d.ts +517 -0
- package/dist/commons/events/FormConfig.d.ts +3641 -467
- package/dist/commons/events/PageConfig.d.ts +782 -0
- package/dist/commons/events/WorkqueueConfig.d.ts +344 -52
- package/dist/commons/events/defineConfig.d.ts +253 -1
- package/dist/commons/events/event.d.ts +35 -8
- package/dist/commons/events/field.d.ts +21 -7
- package/dist/commons/events/scopes.d.ts +20 -1
- package/dist/commons/events/test.utils.d.ts +3 -3
- package/dist/commons/events/utils.d.ts +115 -0
- package/dist/events/index.js +429 -121
- package/dist/scopes/index.d.ts +94 -6
- package/dist/scopes/index.js +42 -21
- package/package.json +1 -1
@@ -49,6 +49,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
49
49
|
description: string;
|
50
50
|
defaultMessage: string;
|
51
51
|
}>;
|
52
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
53
|
+
id: string;
|
54
|
+
description: string;
|
55
|
+
defaultMessage: string;
|
56
|
+
}>>;
|
52
57
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
53
58
|
}, {
|
54
59
|
type: z.ZodLiteral<"ADDRESS">;
|
@@ -191,6 +196,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
191
196
|
conditional: import(".").JSONSchema;
|
192
197
|
})[] | undefined;
|
193
198
|
placeholder?: TranslationConfig | undefined;
|
199
|
+
helperText?: TranslationConfig | undefined;
|
194
200
|
hideLabel?: boolean | undefined;
|
195
201
|
}, {
|
196
202
|
type: "ADDRESS";
|
@@ -256,6 +262,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
256
262
|
description: string;
|
257
263
|
defaultMessage: string;
|
258
264
|
} | undefined;
|
265
|
+
helperText?: {
|
266
|
+
id: string;
|
267
|
+
description: string;
|
268
|
+
defaultMessage: string;
|
269
|
+
} | undefined;
|
259
270
|
hideLabel?: boolean | undefined;
|
260
271
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
261
272
|
id: z.ZodString;
|
@@ -297,6 +308,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
297
308
|
description: string;
|
298
309
|
defaultMessage: string;
|
299
310
|
}>;
|
311
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
312
|
+
id: string;
|
313
|
+
description: string;
|
314
|
+
defaultMessage: string;
|
315
|
+
}>>;
|
300
316
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
301
317
|
}, {
|
302
318
|
type: z.ZodLiteral<"TEXT">;
|
@@ -357,6 +373,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
357
373
|
conditional: import(".").JSONSchema;
|
358
374
|
})[] | undefined;
|
359
375
|
placeholder?: TranslationConfig | undefined;
|
376
|
+
helperText?: TranslationConfig | undefined;
|
360
377
|
hideLabel?: boolean | undefined;
|
361
378
|
configuration?: {
|
362
379
|
type?: "text" | "password" | undefined;
|
@@ -400,6 +417,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
400
417
|
description: string;
|
401
418
|
defaultMessage: string;
|
402
419
|
} | undefined;
|
420
|
+
helperText?: {
|
421
|
+
id: string;
|
422
|
+
description: string;
|
423
|
+
defaultMessage: string;
|
424
|
+
} | undefined;
|
403
425
|
hideLabel?: boolean | undefined;
|
404
426
|
configuration?: {
|
405
427
|
type?: "text" | "password" | undefined;
|
@@ -455,6 +477,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
455
477
|
description: string;
|
456
478
|
defaultMessage: string;
|
457
479
|
}>;
|
480
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
481
|
+
id: string;
|
482
|
+
description: string;
|
483
|
+
defaultMessage: string;
|
484
|
+
}>>;
|
458
485
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
459
486
|
}, {
|
460
487
|
type: z.ZodLiteral<"NUMBER">;
|
@@ -515,6 +542,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
515
542
|
conditional: import(".").JSONSchema;
|
516
543
|
})[] | undefined;
|
517
544
|
placeholder?: TranslationConfig | undefined;
|
545
|
+
helperText?: TranslationConfig | undefined;
|
518
546
|
hideLabel?: boolean | undefined;
|
519
547
|
configuration?: {
|
520
548
|
prefix?: TranslationConfig | undefined;
|
@@ -558,6 +586,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
558
586
|
description: string;
|
559
587
|
defaultMessage: string;
|
560
588
|
} | undefined;
|
589
|
+
helperText?: {
|
590
|
+
id: string;
|
591
|
+
description: string;
|
592
|
+
defaultMessage: string;
|
593
|
+
} | undefined;
|
561
594
|
hideLabel?: boolean | undefined;
|
562
595
|
configuration?: {
|
563
596
|
prefix?: {
|
@@ -613,6 +646,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
613
646
|
description: string;
|
614
647
|
defaultMessage: string;
|
615
648
|
}>;
|
649
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
650
|
+
id: string;
|
651
|
+
description: string;
|
652
|
+
defaultMessage: string;
|
653
|
+
}>>;
|
616
654
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
617
655
|
}, {
|
618
656
|
type: z.ZodLiteral<"TEXTAREA">;
|
@@ -676,6 +714,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
676
714
|
conditional: import(".").JSONSchema;
|
677
715
|
})[] | undefined;
|
678
716
|
placeholder?: TranslationConfig | undefined;
|
717
|
+
helperText?: TranslationConfig | undefined;
|
679
718
|
hideLabel?: boolean | undefined;
|
680
719
|
configuration?: {
|
681
720
|
maxLength?: number | undefined;
|
@@ -720,6 +759,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
720
759
|
description: string;
|
721
760
|
defaultMessage: string;
|
722
761
|
} | undefined;
|
762
|
+
helperText?: {
|
763
|
+
id: string;
|
764
|
+
description: string;
|
765
|
+
defaultMessage: string;
|
766
|
+
} | undefined;
|
723
767
|
hideLabel?: boolean | undefined;
|
724
768
|
configuration?: {
|
725
769
|
maxLength?: number | undefined;
|
@@ -776,6 +820,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
776
820
|
description: string;
|
777
821
|
defaultMessage: string;
|
778
822
|
}>;
|
823
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
824
|
+
id: string;
|
825
|
+
description: string;
|
826
|
+
defaultMessage: string;
|
827
|
+
}>>;
|
779
828
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
780
829
|
}, {
|
781
830
|
type: z.ZodLiteral<"DATE">;
|
@@ -819,6 +868,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
819
868
|
conditional: import(".").JSONSchema;
|
820
869
|
})[] | undefined;
|
821
870
|
placeholder?: TranslationConfig | undefined;
|
871
|
+
helperText?: TranslationConfig | undefined;
|
822
872
|
hideLabel?: boolean | undefined;
|
823
873
|
configuration?: {
|
824
874
|
notice?: TranslationConfig | undefined;
|
@@ -859,6 +909,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
859
909
|
description: string;
|
860
910
|
defaultMessage: string;
|
861
911
|
} | undefined;
|
912
|
+
helperText?: {
|
913
|
+
id: string;
|
914
|
+
description: string;
|
915
|
+
defaultMessage: string;
|
916
|
+
} | undefined;
|
862
917
|
hideLabel?: boolean | undefined;
|
863
918
|
configuration?: {
|
864
919
|
notice?: {
|
@@ -907,6 +962,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
907
962
|
description: string;
|
908
963
|
defaultMessage: string;
|
909
964
|
}>;
|
965
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
966
|
+
id: string;
|
967
|
+
description: string;
|
968
|
+
defaultMessage: string;
|
969
|
+
}>>;
|
910
970
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
911
971
|
}, {
|
912
972
|
type: z.ZodLiteral<"DATE_RANGE">;
|
@@ -950,6 +1010,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
950
1010
|
conditional: import(".").JSONSchema;
|
951
1011
|
})[] | undefined;
|
952
1012
|
placeholder?: TranslationConfig | undefined;
|
1013
|
+
helperText?: TranslationConfig | undefined;
|
953
1014
|
hideLabel?: boolean | undefined;
|
954
1015
|
configuration?: {
|
955
1016
|
notice?: TranslationConfig | undefined;
|
@@ -990,6 +1051,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
990
1051
|
description: string;
|
991
1052
|
defaultMessage: string;
|
992
1053
|
} | undefined;
|
1054
|
+
helperText?: {
|
1055
|
+
id: string;
|
1056
|
+
description: string;
|
1057
|
+
defaultMessage: string;
|
1058
|
+
} | undefined;
|
993
1059
|
hideLabel?: boolean | undefined;
|
994
1060
|
configuration?: {
|
995
1061
|
notice?: {
|
@@ -1038,6 +1104,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
1038
1104
|
description: string;
|
1039
1105
|
defaultMessage: string;
|
1040
1106
|
}>;
|
1107
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
1108
|
+
id: string;
|
1109
|
+
description: string;
|
1110
|
+
defaultMessage: string;
|
1111
|
+
}>>;
|
1041
1112
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
1042
1113
|
}, {
|
1043
1114
|
type: z.ZodLiteral<"PARAGRAPH">;
|
@@ -1088,6 +1159,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
1088
1159
|
conditional: import(".").JSONSchema;
|
1089
1160
|
})[] | undefined;
|
1090
1161
|
placeholder?: TranslationConfig | undefined;
|
1162
|
+
helperText?: TranslationConfig | undefined;
|
1091
1163
|
hideLabel?: boolean | undefined;
|
1092
1164
|
}, {
|
1093
1165
|
type: "PARAGRAPH";
|
@@ -1125,6 +1197,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
1125
1197
|
description: string;
|
1126
1198
|
defaultMessage: string;
|
1127
1199
|
} | undefined;
|
1200
|
+
helperText?: {
|
1201
|
+
id: string;
|
1202
|
+
description: string;
|
1203
|
+
defaultMessage: string;
|
1204
|
+
} | undefined;
|
1128
1205
|
hideLabel?: boolean | undefined;
|
1129
1206
|
configuration?: {
|
1130
1207
|
styles?: {
|
@@ -1171,6 +1248,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
1171
1248
|
description: string;
|
1172
1249
|
defaultMessage: string;
|
1173
1250
|
}>;
|
1251
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
1252
|
+
id: string;
|
1253
|
+
description: string;
|
1254
|
+
defaultMessage: string;
|
1255
|
+
}>>;
|
1174
1256
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
1175
1257
|
}, {
|
1176
1258
|
type: z.ZodLiteral<"RADIO_GROUP">;
|
@@ -1238,6 +1320,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
1238
1320
|
conditional: import(".").JSONSchema;
|
1239
1321
|
})[] | undefined;
|
1240
1322
|
placeholder?: TranslationConfig | undefined;
|
1323
|
+
helperText?: TranslationConfig | undefined;
|
1241
1324
|
hideLabel?: boolean | undefined;
|
1242
1325
|
configuration?: {
|
1243
1326
|
styles?: {
|
@@ -1288,6 +1371,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
1288
1371
|
description: string;
|
1289
1372
|
defaultMessage: string;
|
1290
1373
|
} | undefined;
|
1374
|
+
helperText?: {
|
1375
|
+
id: string;
|
1376
|
+
description: string;
|
1377
|
+
defaultMessage: string;
|
1378
|
+
} | undefined;
|
1291
1379
|
hideLabel?: boolean | undefined;
|
1292
1380
|
configuration?: {
|
1293
1381
|
styles?: {
|
@@ -1334,6 +1422,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
1334
1422
|
description: string;
|
1335
1423
|
defaultMessage: string;
|
1336
1424
|
}>;
|
1425
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
1426
|
+
id: string;
|
1427
|
+
description: string;
|
1428
|
+
defaultMessage: string;
|
1429
|
+
}>>;
|
1337
1430
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
1338
1431
|
}, {
|
1339
1432
|
type: z.ZodLiteral<"BULLET_LIST">;
|
@@ -1390,6 +1483,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
1390
1483
|
conditional: import(".").JSONSchema;
|
1391
1484
|
})[] | undefined;
|
1392
1485
|
placeholder?: TranslationConfig | undefined;
|
1486
|
+
helperText?: TranslationConfig | undefined;
|
1393
1487
|
hideLabel?: boolean | undefined;
|
1394
1488
|
}, {
|
1395
1489
|
type: "BULLET_LIST";
|
@@ -1432,6 +1526,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
1432
1526
|
description: string;
|
1433
1527
|
defaultMessage: string;
|
1434
1528
|
} | undefined;
|
1529
|
+
helperText?: {
|
1530
|
+
id: string;
|
1531
|
+
description: string;
|
1532
|
+
defaultMessage: string;
|
1533
|
+
} | undefined;
|
1435
1534
|
hideLabel?: boolean | undefined;
|
1436
1535
|
configuration?: {
|
1437
1536
|
styles?: {
|
@@ -1478,6 +1577,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
1478
1577
|
description: string;
|
1479
1578
|
defaultMessage: string;
|
1480
1579
|
}>;
|
1580
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
1581
|
+
id: string;
|
1582
|
+
description: string;
|
1583
|
+
defaultMessage: string;
|
1584
|
+
}>>;
|
1481
1585
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
1482
1586
|
}, {
|
1483
1587
|
type: z.ZodLiteral<"PAGE_HEADER">;
|
@@ -1506,6 +1610,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
1506
1610
|
conditional: import(".").JSONSchema;
|
1507
1611
|
})[] | undefined;
|
1508
1612
|
placeholder?: TranslationConfig | undefined;
|
1613
|
+
helperText?: TranslationConfig | undefined;
|
1509
1614
|
hideLabel?: boolean | undefined;
|
1510
1615
|
}, {
|
1511
1616
|
type: "PAGE_HEADER";
|
@@ -1543,6 +1648,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
1543
1648
|
description: string;
|
1544
1649
|
defaultMessage: string;
|
1545
1650
|
} | undefined;
|
1651
|
+
helperText?: {
|
1652
|
+
id: string;
|
1653
|
+
description: string;
|
1654
|
+
defaultMessage: string;
|
1655
|
+
} | undefined;
|
1546
1656
|
hideLabel?: boolean | undefined;
|
1547
1657
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
1548
1658
|
id: z.ZodString;
|
@@ -1584,6 +1694,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
1584
1694
|
description: string;
|
1585
1695
|
defaultMessage: string;
|
1586
1696
|
}>;
|
1697
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
1698
|
+
id: string;
|
1699
|
+
description: string;
|
1700
|
+
defaultMessage: string;
|
1701
|
+
}>>;
|
1587
1702
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
1588
1703
|
}, {
|
1589
1704
|
type: z.ZodLiteral<"SELECT">;
|
@@ -1634,6 +1749,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
1634
1749
|
conditional: import(".").JSONSchema;
|
1635
1750
|
})[] | undefined;
|
1636
1751
|
placeholder?: TranslationConfig | undefined;
|
1752
|
+
helperText?: TranslationConfig | undefined;
|
1637
1753
|
hideLabel?: boolean | undefined;
|
1638
1754
|
}, {
|
1639
1755
|
type: "SELECT";
|
@@ -1679,6 +1795,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
1679
1795
|
description: string;
|
1680
1796
|
defaultMessage: string;
|
1681
1797
|
} | undefined;
|
1798
|
+
helperText?: {
|
1799
|
+
id: string;
|
1800
|
+
description: string;
|
1801
|
+
defaultMessage: string;
|
1802
|
+
} | undefined;
|
1682
1803
|
hideLabel?: boolean | undefined;
|
1683
1804
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
1684
1805
|
id: z.ZodString;
|
@@ -1720,6 +1841,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
1720
1841
|
description: string;
|
1721
1842
|
defaultMessage: string;
|
1722
1843
|
}>;
|
1844
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
1845
|
+
id: string;
|
1846
|
+
description: string;
|
1847
|
+
defaultMessage: string;
|
1848
|
+
}>>;
|
1723
1849
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
1724
1850
|
}, {
|
1725
1851
|
type: z.ZodLiteral<"CHECKBOX">;
|
@@ -1748,6 +1874,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
1748
1874
|
conditional: import(".").JSONSchema;
|
1749
1875
|
})[] | undefined;
|
1750
1876
|
placeholder?: TranslationConfig | undefined;
|
1877
|
+
helperText?: TranslationConfig | undefined;
|
1751
1878
|
hideLabel?: boolean | undefined;
|
1752
1879
|
}, {
|
1753
1880
|
type: "CHECKBOX";
|
@@ -1785,6 +1912,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
1785
1912
|
description: string;
|
1786
1913
|
defaultMessage: string;
|
1787
1914
|
} | undefined;
|
1915
|
+
helperText?: {
|
1916
|
+
id: string;
|
1917
|
+
description: string;
|
1918
|
+
defaultMessage: string;
|
1919
|
+
} | undefined;
|
1788
1920
|
hideLabel?: boolean | undefined;
|
1789
1921
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
1790
1922
|
id: z.ZodString;
|
@@ -1826,6 +1958,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
1826
1958
|
description: string;
|
1827
1959
|
defaultMessage: string;
|
1828
1960
|
}>;
|
1961
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
1962
|
+
id: string;
|
1963
|
+
description: string;
|
1964
|
+
defaultMessage: string;
|
1965
|
+
}>>;
|
1829
1966
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
1830
1967
|
}, {
|
1831
1968
|
type: z.ZodLiteral<"FILE">;
|
@@ -1895,6 +2032,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
1895
2032
|
conditional: import(".").JSONSchema;
|
1896
2033
|
})[] | undefined;
|
1897
2034
|
placeholder?: TranslationConfig | undefined;
|
2035
|
+
helperText?: TranslationConfig | undefined;
|
1898
2036
|
hideLabel?: boolean | undefined;
|
1899
2037
|
}, {
|
1900
2038
|
type: "FILE";
|
@@ -1932,6 +2070,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
1932
2070
|
description: string;
|
1933
2071
|
defaultMessage: string;
|
1934
2072
|
} | undefined;
|
2073
|
+
helperText?: {
|
2074
|
+
id: string;
|
2075
|
+
description: string;
|
2076
|
+
defaultMessage: string;
|
2077
|
+
} | undefined;
|
1935
2078
|
hideLabel?: boolean | undefined;
|
1936
2079
|
configuration?: {
|
1937
2080
|
maxFileSize?: number | undefined;
|
@@ -1985,6 +2128,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
1985
2128
|
description: string;
|
1986
2129
|
defaultMessage: string;
|
1987
2130
|
}>;
|
2131
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2132
|
+
id: string;
|
2133
|
+
description: string;
|
2134
|
+
defaultMessage: string;
|
2135
|
+
}>>;
|
1988
2136
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
1989
2137
|
}, {
|
1990
2138
|
type: z.ZodLiteral<"COUNTRY">;
|
@@ -2013,6 +2161,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
2013
2161
|
conditional: import(".").JSONSchema;
|
2014
2162
|
})[] | undefined;
|
2015
2163
|
placeholder?: TranslationConfig | undefined;
|
2164
|
+
helperText?: TranslationConfig | undefined;
|
2016
2165
|
hideLabel?: boolean | undefined;
|
2017
2166
|
}, {
|
2018
2167
|
type: "COUNTRY";
|
@@ -2050,6 +2199,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
2050
2199
|
description: string;
|
2051
2200
|
defaultMessage: string;
|
2052
2201
|
} | undefined;
|
2202
|
+
helperText?: {
|
2203
|
+
id: string;
|
2204
|
+
description: string;
|
2205
|
+
defaultMessage: string;
|
2206
|
+
} | undefined;
|
2053
2207
|
hideLabel?: boolean | undefined;
|
2054
2208
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
2055
2209
|
id: z.ZodString;
|
@@ -2091,6 +2245,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
2091
2245
|
description: string;
|
2092
2246
|
defaultMessage: string;
|
2093
2247
|
}>;
|
2248
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2249
|
+
id: string;
|
2250
|
+
description: string;
|
2251
|
+
defaultMessage: string;
|
2252
|
+
}>>;
|
2094
2253
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2095
2254
|
}, {
|
2096
2255
|
type: z.ZodLiteral<"ADMINISTRATIVE_AREA">;
|
@@ -2145,6 +2304,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
2145
2304
|
conditional: import(".").JSONSchema;
|
2146
2305
|
})[] | undefined;
|
2147
2306
|
placeholder?: TranslationConfig | undefined;
|
2307
|
+
helperText?: TranslationConfig | undefined;
|
2148
2308
|
hideLabel?: boolean | undefined;
|
2149
2309
|
}, {
|
2150
2310
|
type: "ADMINISTRATIVE_AREA";
|
@@ -2188,6 +2348,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
2188
2348
|
description: string;
|
2189
2349
|
defaultMessage: string;
|
2190
2350
|
} | undefined;
|
2351
|
+
helperText?: {
|
2352
|
+
id: string;
|
2353
|
+
description: string;
|
2354
|
+
defaultMessage: string;
|
2355
|
+
} | undefined;
|
2191
2356
|
hideLabel?: boolean | undefined;
|
2192
2357
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
2193
2358
|
id: z.ZodString;
|
@@ -2229,6 +2394,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
2229
2394
|
description: string;
|
2230
2395
|
defaultMessage: string;
|
2231
2396
|
}>;
|
2397
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2398
|
+
id: string;
|
2399
|
+
description: string;
|
2400
|
+
defaultMessage: string;
|
2401
|
+
}>>;
|
2232
2402
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2233
2403
|
}, {
|
2234
2404
|
type: z.ZodLiteral<"DIVIDER">;
|
@@ -2256,6 +2426,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
2256
2426
|
conditional: import(".").JSONSchema;
|
2257
2427
|
})[] | undefined;
|
2258
2428
|
placeholder?: TranslationConfig | undefined;
|
2429
|
+
helperText?: TranslationConfig | undefined;
|
2259
2430
|
hideLabel?: boolean | undefined;
|
2260
2431
|
}, {
|
2261
2432
|
type: "DIVIDER";
|
@@ -2293,6 +2464,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
2293
2464
|
description: string;
|
2294
2465
|
defaultMessage: string;
|
2295
2466
|
} | undefined;
|
2467
|
+
helperText?: {
|
2468
|
+
id: string;
|
2469
|
+
description: string;
|
2470
|
+
defaultMessage: string;
|
2471
|
+
} | undefined;
|
2296
2472
|
hideLabel?: boolean | undefined;
|
2297
2473
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
2298
2474
|
id: z.ZodString;
|
@@ -2334,6 +2510,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
2334
2510
|
description: string;
|
2335
2511
|
defaultMessage: string;
|
2336
2512
|
}>;
|
2513
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2514
|
+
id: string;
|
2515
|
+
description: string;
|
2516
|
+
defaultMessage: string;
|
2517
|
+
}>>;
|
2337
2518
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2338
2519
|
}, {
|
2339
2520
|
type: z.ZodLiteral<"LOCATION">;
|
@@ -2362,6 +2543,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
2362
2543
|
conditional: import(".").JSONSchema;
|
2363
2544
|
})[] | undefined;
|
2364
2545
|
placeholder?: TranslationConfig | undefined;
|
2546
|
+
helperText?: TranslationConfig | undefined;
|
2365
2547
|
hideLabel?: boolean | undefined;
|
2366
2548
|
}, {
|
2367
2549
|
type: "LOCATION";
|
@@ -2399,6 +2581,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
2399
2581
|
description: string;
|
2400
2582
|
defaultMessage: string;
|
2401
2583
|
} | undefined;
|
2584
|
+
helperText?: {
|
2585
|
+
id: string;
|
2586
|
+
description: string;
|
2587
|
+
defaultMessage: string;
|
2588
|
+
} | undefined;
|
2402
2589
|
hideLabel?: boolean | undefined;
|
2403
2590
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
2404
2591
|
id: z.ZodString;
|
@@ -2440,6 +2627,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
2440
2627
|
description: string;
|
2441
2628
|
defaultMessage: string;
|
2442
2629
|
}>;
|
2630
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2631
|
+
id: string;
|
2632
|
+
description: string;
|
2633
|
+
defaultMessage: string;
|
2634
|
+
}>>;
|
2443
2635
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2444
2636
|
}, {
|
2445
2637
|
type: z.ZodLiteral<"FACILITY">;
|
@@ -2468,6 +2660,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
2468
2660
|
conditional: import(".").JSONSchema;
|
2469
2661
|
})[] | undefined;
|
2470
2662
|
placeholder?: TranslationConfig | undefined;
|
2663
|
+
helperText?: TranslationConfig | undefined;
|
2471
2664
|
hideLabel?: boolean | undefined;
|
2472
2665
|
}, {
|
2473
2666
|
type: "FACILITY";
|
@@ -2505,6 +2698,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
2505
2698
|
description: string;
|
2506
2699
|
defaultMessage: string;
|
2507
2700
|
} | undefined;
|
2701
|
+
helperText?: {
|
2702
|
+
id: string;
|
2703
|
+
description: string;
|
2704
|
+
defaultMessage: string;
|
2705
|
+
} | undefined;
|
2508
2706
|
hideLabel?: boolean | undefined;
|
2509
2707
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
2510
2708
|
id: z.ZodString;
|
@@ -2546,6 +2744,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
2546
2744
|
description: string;
|
2547
2745
|
defaultMessage: string;
|
2548
2746
|
}>;
|
2747
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2748
|
+
id: string;
|
2749
|
+
description: string;
|
2750
|
+
defaultMessage: string;
|
2751
|
+
}>>;
|
2549
2752
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2550
2753
|
}, {
|
2551
2754
|
type: z.ZodLiteral<"OFFICE">;
|
@@ -2574,6 +2777,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
2574
2777
|
conditional: import(".").JSONSchema;
|
2575
2778
|
})[] | undefined;
|
2576
2779
|
placeholder?: TranslationConfig | undefined;
|
2780
|
+
helperText?: TranslationConfig | undefined;
|
2577
2781
|
hideLabel?: boolean | undefined;
|
2578
2782
|
}, {
|
2579
2783
|
type: "OFFICE";
|
@@ -2611,6 +2815,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
2611
2815
|
description: string;
|
2612
2816
|
defaultMessage: string;
|
2613
2817
|
} | undefined;
|
2818
|
+
helperText?: {
|
2819
|
+
id: string;
|
2820
|
+
description: string;
|
2821
|
+
defaultMessage: string;
|
2822
|
+
} | undefined;
|
2614
2823
|
hideLabel?: boolean | undefined;
|
2615
2824
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
2616
2825
|
id: z.ZodString;
|
@@ -2652,6 +2861,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
2652
2861
|
description: string;
|
2653
2862
|
defaultMessage: string;
|
2654
2863
|
}>;
|
2864
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2865
|
+
id: string;
|
2866
|
+
description: string;
|
2867
|
+
defaultMessage: string;
|
2868
|
+
}>>;
|
2655
2869
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2656
2870
|
}, {
|
2657
2871
|
type: z.ZodLiteral<"SIGNATURE">;
|
@@ -2699,6 +2913,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
2699
2913
|
conditional: import(".").JSONSchema;
|
2700
2914
|
})[] | undefined;
|
2701
2915
|
placeholder?: TranslationConfig | undefined;
|
2916
|
+
helperText?: TranslationConfig | undefined;
|
2702
2917
|
hideLabel?: boolean | undefined;
|
2703
2918
|
}, {
|
2704
2919
|
type: "SIGNATURE";
|
@@ -2741,6 +2956,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
2741
2956
|
description: string;
|
2742
2957
|
defaultMessage: string;
|
2743
2958
|
} | undefined;
|
2959
|
+
helperText?: {
|
2960
|
+
id: string;
|
2961
|
+
description: string;
|
2962
|
+
defaultMessage: string;
|
2963
|
+
} | undefined;
|
2744
2964
|
hideLabel?: boolean | undefined;
|
2745
2965
|
configuration?: {
|
2746
2966
|
maxFileSize?: number | undefined;
|
@@ -2786,6 +3006,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
2786
3006
|
description: string;
|
2787
3007
|
defaultMessage: string;
|
2788
3008
|
}>;
|
3009
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
3010
|
+
id: string;
|
3011
|
+
description: string;
|
3012
|
+
defaultMessage: string;
|
3013
|
+
}>>;
|
2789
3014
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2790
3015
|
}, {
|
2791
3016
|
type: z.ZodLiteral<"EMAIL">;
|
@@ -2821,6 +3046,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
2821
3046
|
conditional: import(".").JSONSchema;
|
2822
3047
|
})[] | undefined;
|
2823
3048
|
placeholder?: TranslationConfig | undefined;
|
3049
|
+
helperText?: TranslationConfig | undefined;
|
2824
3050
|
hideLabel?: boolean | undefined;
|
2825
3051
|
configuration?: {
|
2826
3052
|
maxLength?: number | undefined;
|
@@ -2861,6 +3087,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
2861
3087
|
description: string;
|
2862
3088
|
defaultMessage: string;
|
2863
3089
|
} | undefined;
|
3090
|
+
helperText?: {
|
3091
|
+
id: string;
|
3092
|
+
description: string;
|
3093
|
+
defaultMessage: string;
|
3094
|
+
} | undefined;
|
2864
3095
|
hideLabel?: boolean | undefined;
|
2865
3096
|
configuration?: {
|
2866
3097
|
maxLength?: number | undefined;
|
@@ -2905,6 +3136,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
2905
3136
|
description: string;
|
2906
3137
|
defaultMessage: string;
|
2907
3138
|
}>;
|
3139
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
3140
|
+
id: string;
|
3141
|
+
description: string;
|
3142
|
+
defaultMessage: string;
|
3143
|
+
}>>;
|
2908
3144
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2909
3145
|
}, {
|
2910
3146
|
type: z.ZodLiteral<"FILE_WITH_OPTIONS">;
|
@@ -2968,6 +3204,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
2968
3204
|
conditional: import(".").JSONSchema;
|
2969
3205
|
})[] | undefined;
|
2970
3206
|
placeholder?: TranslationConfig | undefined;
|
3207
|
+
helperText?: TranslationConfig | undefined;
|
2971
3208
|
hideLabel?: boolean | undefined;
|
2972
3209
|
}, {
|
2973
3210
|
type: "FILE_WITH_OPTIONS";
|
@@ -3013,6 +3250,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
3013
3250
|
description: string;
|
3014
3251
|
defaultMessage: string;
|
3015
3252
|
} | undefined;
|
3253
|
+
helperText?: {
|
3254
|
+
id: string;
|
3255
|
+
description: string;
|
3256
|
+
defaultMessage: string;
|
3257
|
+
} | undefined;
|
3016
3258
|
hideLabel?: boolean | undefined;
|
3017
3259
|
configuration?: {
|
3018
3260
|
maxFileSize?: number | undefined;
|
@@ -3058,6 +3300,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
3058
3300
|
description: string;
|
3059
3301
|
defaultMessage: string;
|
3060
3302
|
}>;
|
3303
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
3304
|
+
id: string;
|
3305
|
+
description: string;
|
3306
|
+
defaultMessage: string;
|
3307
|
+
}>>;
|
3061
3308
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
3062
3309
|
}, {
|
3063
3310
|
type: z.ZodLiteral<"DATA">;
|
@@ -3161,6 +3408,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
3161
3408
|
conditional: import(".").JSONSchema;
|
3162
3409
|
})[] | undefined;
|
3163
3410
|
placeholder?: TranslationConfig | undefined;
|
3411
|
+
helperText?: TranslationConfig | undefined;
|
3164
3412
|
hideLabel?: boolean | undefined;
|
3165
3413
|
}, {
|
3166
3414
|
type: "DATA";
|
@@ -3219,6 +3467,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
3219
3467
|
description: string;
|
3220
3468
|
defaultMessage: string;
|
3221
3469
|
} | undefined;
|
3470
|
+
helperText?: {
|
3471
|
+
id: string;
|
3472
|
+
description: string;
|
3473
|
+
defaultMessage: string;
|
3474
|
+
} | undefined;
|
3222
3475
|
hideLabel?: boolean | undefined;
|
3223
3476
|
}>]>, "many">;
|
3224
3477
|
conditional: z.ZodOptional<z.ZodType<import(".").JSONSchema, z.ZodTypeDef, import(".").JSONSchema>>;
|
@@ -3252,6 +3505,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
3252
3505
|
conditional: import(".").JSONSchema;
|
3253
3506
|
})[] | undefined;
|
3254
3507
|
placeholder?: TranslationConfig | undefined;
|
3508
|
+
helperText?: TranslationConfig | undefined;
|
3255
3509
|
hideLabel?: boolean | undefined;
|
3256
3510
|
} | {
|
3257
3511
|
type: "TEXT";
|
@@ -3277,6 +3531,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
3277
3531
|
conditional: import(".").JSONSchema;
|
3278
3532
|
})[] | undefined;
|
3279
3533
|
placeholder?: TranslationConfig | undefined;
|
3534
|
+
helperText?: TranslationConfig | undefined;
|
3280
3535
|
hideLabel?: boolean | undefined;
|
3281
3536
|
configuration?: {
|
3282
3537
|
type?: "text" | "password" | undefined;
|
@@ -3308,6 +3563,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
3308
3563
|
conditional: import(".").JSONSchema;
|
3309
3564
|
})[] | undefined;
|
3310
3565
|
placeholder?: TranslationConfig | undefined;
|
3566
|
+
helperText?: TranslationConfig | undefined;
|
3311
3567
|
hideLabel?: boolean | undefined;
|
3312
3568
|
configuration?: {
|
3313
3569
|
prefix?: TranslationConfig | undefined;
|
@@ -3339,6 +3595,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
3339
3595
|
conditional: import(".").JSONSchema;
|
3340
3596
|
})[] | undefined;
|
3341
3597
|
placeholder?: TranslationConfig | undefined;
|
3598
|
+
helperText?: TranslationConfig | undefined;
|
3342
3599
|
hideLabel?: boolean | undefined;
|
3343
3600
|
configuration?: {
|
3344
3601
|
maxLength?: number | undefined;
|
@@ -3376,6 +3633,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
3376
3633
|
conditional: import(".").JSONSchema;
|
3377
3634
|
})[] | undefined;
|
3378
3635
|
placeholder?: TranslationConfig | undefined;
|
3636
|
+
helperText?: TranslationConfig | undefined;
|
3379
3637
|
hideLabel?: boolean | undefined;
|
3380
3638
|
} | {
|
3381
3639
|
type: "EMAIL";
|
@@ -3401,6 +3659,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
3401
3659
|
conditional: import(".").JSONSchema;
|
3402
3660
|
})[] | undefined;
|
3403
3661
|
placeholder?: TranslationConfig | undefined;
|
3662
|
+
helperText?: TranslationConfig | undefined;
|
3404
3663
|
hideLabel?: boolean | undefined;
|
3405
3664
|
configuration?: {
|
3406
3665
|
maxLength?: number | undefined;
|
@@ -3429,6 +3688,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
3429
3688
|
conditional: import(".").JSONSchema;
|
3430
3689
|
})[] | undefined;
|
3431
3690
|
placeholder?: TranslationConfig | undefined;
|
3691
|
+
helperText?: TranslationConfig | undefined;
|
3432
3692
|
hideLabel?: boolean | undefined;
|
3433
3693
|
configuration?: {
|
3434
3694
|
notice?: TranslationConfig | undefined;
|
@@ -3457,6 +3717,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
3457
3717
|
conditional: import(".").JSONSchema;
|
3458
3718
|
})[] | undefined;
|
3459
3719
|
placeholder?: TranslationConfig | undefined;
|
3720
|
+
helperText?: TranslationConfig | undefined;
|
3460
3721
|
hideLabel?: boolean | undefined;
|
3461
3722
|
configuration?: {
|
3462
3723
|
notice?: TranslationConfig | undefined;
|
@@ -3490,6 +3751,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
3490
3751
|
conditional: import(".").JSONSchema;
|
3491
3752
|
})[] | undefined;
|
3492
3753
|
placeholder?: TranslationConfig | undefined;
|
3754
|
+
helperText?: TranslationConfig | undefined;
|
3493
3755
|
hideLabel?: boolean | undefined;
|
3494
3756
|
} | {
|
3495
3757
|
type: "PAGE_HEADER";
|
@@ -3515,6 +3777,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
3515
3777
|
conditional: import(".").JSONSchema;
|
3516
3778
|
})[] | undefined;
|
3517
3779
|
placeholder?: TranslationConfig | undefined;
|
3780
|
+
helperText?: TranslationConfig | undefined;
|
3518
3781
|
hideLabel?: boolean | undefined;
|
3519
3782
|
} | {
|
3520
3783
|
type: "FILE";
|
@@ -3548,6 +3811,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
3548
3811
|
conditional: import(".").JSONSchema;
|
3549
3812
|
})[] | undefined;
|
3550
3813
|
placeholder?: TranslationConfig | undefined;
|
3814
|
+
helperText?: TranslationConfig | undefined;
|
3551
3815
|
hideLabel?: boolean | undefined;
|
3552
3816
|
} | {
|
3553
3817
|
type: "RADIO_GROUP";
|
@@ -3577,6 +3841,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
3577
3841
|
conditional: import(".").JSONSchema;
|
3578
3842
|
})[] | undefined;
|
3579
3843
|
placeholder?: TranslationConfig | undefined;
|
3844
|
+
helperText?: TranslationConfig | undefined;
|
3580
3845
|
hideLabel?: boolean | undefined;
|
3581
3846
|
configuration?: {
|
3582
3847
|
styles?: {
|
@@ -3613,6 +3878,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
3613
3878
|
conditional: import(".").JSONSchema;
|
3614
3879
|
})[] | undefined;
|
3615
3880
|
placeholder?: TranslationConfig | undefined;
|
3881
|
+
helperText?: TranslationConfig | undefined;
|
3616
3882
|
hideLabel?: boolean | undefined;
|
3617
3883
|
} | {
|
3618
3884
|
type: "SELECT";
|
@@ -3642,6 +3908,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
3642
3908
|
conditional: import(".").JSONSchema;
|
3643
3909
|
})[] | undefined;
|
3644
3910
|
placeholder?: TranslationConfig | undefined;
|
3911
|
+
helperText?: TranslationConfig | undefined;
|
3645
3912
|
hideLabel?: boolean | undefined;
|
3646
3913
|
} | {
|
3647
3914
|
type: "CHECKBOX";
|
@@ -3667,6 +3934,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
3667
3934
|
conditional: import(".").JSONSchema;
|
3668
3935
|
})[] | undefined;
|
3669
3936
|
placeholder?: TranslationConfig | undefined;
|
3937
|
+
helperText?: TranslationConfig | undefined;
|
3670
3938
|
hideLabel?: boolean | undefined;
|
3671
3939
|
} | {
|
3672
3940
|
type: "COUNTRY";
|
@@ -3692,6 +3960,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
3692
3960
|
conditional: import(".").JSONSchema;
|
3693
3961
|
})[] | undefined;
|
3694
3962
|
placeholder?: TranslationConfig | undefined;
|
3963
|
+
helperText?: TranslationConfig | undefined;
|
3695
3964
|
hideLabel?: boolean | undefined;
|
3696
3965
|
} | {
|
3697
3966
|
type: "ADMINISTRATIVE_AREA";
|
@@ -3723,6 +3992,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
3723
3992
|
conditional: import(".").JSONSchema;
|
3724
3993
|
})[] | undefined;
|
3725
3994
|
placeholder?: TranslationConfig | undefined;
|
3995
|
+
helperText?: TranslationConfig | undefined;
|
3726
3996
|
hideLabel?: boolean | undefined;
|
3727
3997
|
} | {
|
3728
3998
|
type: "LOCATION";
|
@@ -3748,6 +4018,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
3748
4018
|
conditional: import(".").JSONSchema;
|
3749
4019
|
})[] | undefined;
|
3750
4020
|
placeholder?: TranslationConfig | undefined;
|
4021
|
+
helperText?: TranslationConfig | undefined;
|
3751
4022
|
hideLabel?: boolean | undefined;
|
3752
4023
|
} | {
|
3753
4024
|
type: "FILE_WITH_OPTIONS";
|
@@ -3781,6 +4052,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
3781
4052
|
conditional: import(".").JSONSchema;
|
3782
4053
|
})[] | undefined;
|
3783
4054
|
placeholder?: TranslationConfig | undefined;
|
4055
|
+
helperText?: TranslationConfig | undefined;
|
3784
4056
|
hideLabel?: boolean | undefined;
|
3785
4057
|
} | {
|
3786
4058
|
type: "FACILITY";
|
@@ -3806,6 +4078,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
3806
4078
|
conditional: import(".").JSONSchema;
|
3807
4079
|
})[] | undefined;
|
3808
4080
|
placeholder?: TranslationConfig | undefined;
|
4081
|
+
helperText?: TranslationConfig | undefined;
|
3809
4082
|
hideLabel?: boolean | undefined;
|
3810
4083
|
} | {
|
3811
4084
|
type: "OFFICE";
|
@@ -3831,6 +4104,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
3831
4104
|
conditional: import(".").JSONSchema;
|
3832
4105
|
})[] | undefined;
|
3833
4106
|
placeholder?: TranslationConfig | undefined;
|
4107
|
+
helperText?: TranslationConfig | undefined;
|
3834
4108
|
hideLabel?: boolean | undefined;
|
3835
4109
|
} | {
|
3836
4110
|
type: "ADDRESS";
|
@@ -3884,6 +4158,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
3884
4158
|
conditional: import(".").JSONSchema;
|
3885
4159
|
})[] | undefined;
|
3886
4160
|
placeholder?: TranslationConfig | undefined;
|
4161
|
+
helperText?: TranslationConfig | undefined;
|
3887
4162
|
hideLabel?: boolean | undefined;
|
3888
4163
|
} | {
|
3889
4164
|
type: "DATA";
|
@@ -3918,6 +4193,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
3918
4193
|
conditional: import(".").JSONSchema;
|
3919
4194
|
})[] | undefined;
|
3920
4195
|
placeholder?: TranslationConfig | undefined;
|
4196
|
+
helperText?: TranslationConfig | undefined;
|
3921
4197
|
hideLabel?: boolean | undefined;
|
3922
4198
|
})[];
|
3923
4199
|
conditional?: import(".").JSONSchema | undefined;
|
@@ -3964,6 +4240,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
3964
4240
|
description: string;
|
3965
4241
|
defaultMessage: string;
|
3966
4242
|
} | undefined;
|
4243
|
+
helperText?: {
|
4244
|
+
id: string;
|
4245
|
+
description: string;
|
4246
|
+
defaultMessage: string;
|
4247
|
+
} | undefined;
|
3967
4248
|
hideLabel?: boolean | undefined;
|
3968
4249
|
} | {
|
3969
4250
|
type: "TEXT";
|
@@ -4001,6 +4282,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
4001
4282
|
description: string;
|
4002
4283
|
defaultMessage: string;
|
4003
4284
|
} | undefined;
|
4285
|
+
helperText?: {
|
4286
|
+
id: string;
|
4287
|
+
description: string;
|
4288
|
+
defaultMessage: string;
|
4289
|
+
} | undefined;
|
4004
4290
|
hideLabel?: boolean | undefined;
|
4005
4291
|
configuration?: {
|
4006
4292
|
type?: "text" | "password" | undefined;
|
@@ -4052,6 +4338,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
4052
4338
|
description: string;
|
4053
4339
|
defaultMessage: string;
|
4054
4340
|
} | undefined;
|
4341
|
+
helperText?: {
|
4342
|
+
id: string;
|
4343
|
+
description: string;
|
4344
|
+
defaultMessage: string;
|
4345
|
+
} | undefined;
|
4055
4346
|
hideLabel?: boolean | undefined;
|
4056
4347
|
configuration?: {
|
4057
4348
|
prefix?: {
|
@@ -4103,6 +4394,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
4103
4394
|
description: string;
|
4104
4395
|
defaultMessage: string;
|
4105
4396
|
} | undefined;
|
4397
|
+
helperText?: {
|
4398
|
+
id: string;
|
4399
|
+
description: string;
|
4400
|
+
defaultMessage: string;
|
4401
|
+
} | undefined;
|
4106
4402
|
hideLabel?: boolean | undefined;
|
4107
4403
|
configuration?: {
|
4108
4404
|
maxLength?: number | undefined;
|
@@ -4160,6 +4456,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
4160
4456
|
description: string;
|
4161
4457
|
defaultMessage: string;
|
4162
4458
|
} | undefined;
|
4459
|
+
helperText?: {
|
4460
|
+
id: string;
|
4461
|
+
description: string;
|
4462
|
+
defaultMessage: string;
|
4463
|
+
} | undefined;
|
4163
4464
|
hideLabel?: boolean | undefined;
|
4164
4465
|
configuration?: {
|
4165
4466
|
maxFileSize?: number | undefined;
|
@@ -4201,6 +4502,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
4201
4502
|
description: string;
|
4202
4503
|
defaultMessage: string;
|
4203
4504
|
} | undefined;
|
4505
|
+
helperText?: {
|
4506
|
+
id: string;
|
4507
|
+
description: string;
|
4508
|
+
defaultMessage: string;
|
4509
|
+
} | undefined;
|
4204
4510
|
hideLabel?: boolean | undefined;
|
4205
4511
|
configuration?: {
|
4206
4512
|
maxLength?: number | undefined;
|
@@ -4241,6 +4547,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
4241
4547
|
description: string;
|
4242
4548
|
defaultMessage: string;
|
4243
4549
|
} | undefined;
|
4550
|
+
helperText?: {
|
4551
|
+
id: string;
|
4552
|
+
description: string;
|
4553
|
+
defaultMessage: string;
|
4554
|
+
} | undefined;
|
4244
4555
|
hideLabel?: boolean | undefined;
|
4245
4556
|
configuration?: {
|
4246
4557
|
notice?: {
|
@@ -4285,6 +4596,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
4285
4596
|
description: string;
|
4286
4597
|
defaultMessage: string;
|
4287
4598
|
} | undefined;
|
4599
|
+
helperText?: {
|
4600
|
+
id: string;
|
4601
|
+
description: string;
|
4602
|
+
defaultMessage: string;
|
4603
|
+
} | undefined;
|
4288
4604
|
hideLabel?: boolean | undefined;
|
4289
4605
|
configuration?: {
|
4290
4606
|
notice?: {
|
@@ -4329,6 +4645,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
4329
4645
|
description: string;
|
4330
4646
|
defaultMessage: string;
|
4331
4647
|
} | undefined;
|
4648
|
+
helperText?: {
|
4649
|
+
id: string;
|
4650
|
+
description: string;
|
4651
|
+
defaultMessage: string;
|
4652
|
+
} | undefined;
|
4332
4653
|
hideLabel?: boolean | undefined;
|
4333
4654
|
configuration?: {
|
4334
4655
|
styles?: {
|
@@ -4371,6 +4692,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
4371
4692
|
description: string;
|
4372
4693
|
defaultMessage: string;
|
4373
4694
|
} | undefined;
|
4695
|
+
helperText?: {
|
4696
|
+
id: string;
|
4697
|
+
description: string;
|
4698
|
+
defaultMessage: string;
|
4699
|
+
} | undefined;
|
4374
4700
|
hideLabel?: boolean | undefined;
|
4375
4701
|
} | {
|
4376
4702
|
type: "FILE";
|
@@ -4408,6 +4734,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
4408
4734
|
description: string;
|
4409
4735
|
defaultMessage: string;
|
4410
4736
|
} | undefined;
|
4737
|
+
helperText?: {
|
4738
|
+
id: string;
|
4739
|
+
description: string;
|
4740
|
+
defaultMessage: string;
|
4741
|
+
} | undefined;
|
4411
4742
|
hideLabel?: boolean | undefined;
|
4412
4743
|
configuration?: {
|
4413
4744
|
maxFileSize?: number | undefined;
|
@@ -4465,6 +4796,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
4465
4796
|
description: string;
|
4466
4797
|
defaultMessage: string;
|
4467
4798
|
} | undefined;
|
4799
|
+
helperText?: {
|
4800
|
+
id: string;
|
4801
|
+
description: string;
|
4802
|
+
defaultMessage: string;
|
4803
|
+
} | undefined;
|
4468
4804
|
hideLabel?: boolean | undefined;
|
4469
4805
|
configuration?: {
|
4470
4806
|
styles?: {
|
@@ -4512,6 +4848,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
4512
4848
|
description: string;
|
4513
4849
|
defaultMessage: string;
|
4514
4850
|
} | undefined;
|
4851
|
+
helperText?: {
|
4852
|
+
id: string;
|
4853
|
+
description: string;
|
4854
|
+
defaultMessage: string;
|
4855
|
+
} | undefined;
|
4515
4856
|
hideLabel?: boolean | undefined;
|
4516
4857
|
configuration?: {
|
4517
4858
|
styles?: {
|
@@ -4562,6 +4903,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
4562
4903
|
description: string;
|
4563
4904
|
defaultMessage: string;
|
4564
4905
|
} | undefined;
|
4906
|
+
helperText?: {
|
4907
|
+
id: string;
|
4908
|
+
description: string;
|
4909
|
+
defaultMessage: string;
|
4910
|
+
} | undefined;
|
4565
4911
|
hideLabel?: boolean | undefined;
|
4566
4912
|
} | {
|
4567
4913
|
type: "CHECKBOX";
|
@@ -4599,6 +4945,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
4599
4945
|
description: string;
|
4600
4946
|
defaultMessage: string;
|
4601
4947
|
} | undefined;
|
4948
|
+
helperText?: {
|
4949
|
+
id: string;
|
4950
|
+
description: string;
|
4951
|
+
defaultMessage: string;
|
4952
|
+
} | undefined;
|
4602
4953
|
hideLabel?: boolean | undefined;
|
4603
4954
|
} | {
|
4604
4955
|
type: "COUNTRY";
|
@@ -4636,6 +4987,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
4636
4987
|
description: string;
|
4637
4988
|
defaultMessage: string;
|
4638
4989
|
} | undefined;
|
4990
|
+
helperText?: {
|
4991
|
+
id: string;
|
4992
|
+
description: string;
|
4993
|
+
defaultMessage: string;
|
4994
|
+
} | undefined;
|
4639
4995
|
hideLabel?: boolean | undefined;
|
4640
4996
|
} | {
|
4641
4997
|
type: "ADMINISTRATIVE_AREA";
|
@@ -4679,6 +5035,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
4679
5035
|
description: string;
|
4680
5036
|
defaultMessage: string;
|
4681
5037
|
} | undefined;
|
5038
|
+
helperText?: {
|
5039
|
+
id: string;
|
5040
|
+
description: string;
|
5041
|
+
defaultMessage: string;
|
5042
|
+
} | undefined;
|
4682
5043
|
hideLabel?: boolean | undefined;
|
4683
5044
|
} | {
|
4684
5045
|
type: "LOCATION";
|
@@ -4716,6 +5077,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
4716
5077
|
description: string;
|
4717
5078
|
defaultMessage: string;
|
4718
5079
|
} | undefined;
|
5080
|
+
helperText?: {
|
5081
|
+
id: string;
|
5082
|
+
description: string;
|
5083
|
+
defaultMessage: string;
|
5084
|
+
} | undefined;
|
4719
5085
|
hideLabel?: boolean | undefined;
|
4720
5086
|
} | {
|
4721
5087
|
type: "FILE_WITH_OPTIONS";
|
@@ -4761,6 +5127,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
4761
5127
|
description: string;
|
4762
5128
|
defaultMessage: string;
|
4763
5129
|
} | undefined;
|
5130
|
+
helperText?: {
|
5131
|
+
id: string;
|
5132
|
+
description: string;
|
5133
|
+
defaultMessage: string;
|
5134
|
+
} | undefined;
|
4764
5135
|
hideLabel?: boolean | undefined;
|
4765
5136
|
configuration?: {
|
4766
5137
|
maxFileSize?: number | undefined;
|
@@ -4802,6 +5173,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
4802
5173
|
description: string;
|
4803
5174
|
defaultMessage: string;
|
4804
5175
|
} | undefined;
|
5176
|
+
helperText?: {
|
5177
|
+
id: string;
|
5178
|
+
description: string;
|
5179
|
+
defaultMessage: string;
|
5180
|
+
} | undefined;
|
4805
5181
|
hideLabel?: boolean | undefined;
|
4806
5182
|
} | {
|
4807
5183
|
type: "OFFICE";
|
@@ -4839,6 +5215,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
4839
5215
|
description: string;
|
4840
5216
|
defaultMessage: string;
|
4841
5217
|
} | undefined;
|
5218
|
+
helperText?: {
|
5219
|
+
id: string;
|
5220
|
+
description: string;
|
5221
|
+
defaultMessage: string;
|
5222
|
+
} | undefined;
|
4842
5223
|
hideLabel?: boolean | undefined;
|
4843
5224
|
} | {
|
4844
5225
|
type: "ADDRESS";
|
@@ -4904,6 +5285,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
4904
5285
|
description: string;
|
4905
5286
|
defaultMessage: string;
|
4906
5287
|
} | undefined;
|
5288
|
+
helperText?: {
|
5289
|
+
id: string;
|
5290
|
+
description: string;
|
5291
|
+
defaultMessage: string;
|
5292
|
+
} | undefined;
|
4907
5293
|
hideLabel?: boolean | undefined;
|
4908
5294
|
} | {
|
4909
5295
|
type: "DATA";
|
@@ -4962,6 +5348,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
4962
5348
|
description: string;
|
4963
5349
|
defaultMessage: string;
|
4964
5350
|
} | undefined;
|
5351
|
+
helperText?: {
|
5352
|
+
id: string;
|
5353
|
+
description: string;
|
5354
|
+
defaultMessage: string;
|
5355
|
+
} | undefined;
|
4965
5356
|
hideLabel?: boolean | undefined;
|
4966
5357
|
})[];
|
4967
5358
|
type?: "FORM" | undefined;
|
@@ -5128,6 +5519,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
5128
5519
|
description: string;
|
5129
5520
|
defaultMessage: string;
|
5130
5521
|
}>;
|
5522
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5523
|
+
id: string;
|
5524
|
+
description: string;
|
5525
|
+
defaultMessage: string;
|
5526
|
+
}>>;
|
5131
5527
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5132
5528
|
}, {
|
5133
5529
|
type: z.ZodLiteral<"ADDRESS">;
|
@@ -5270,6 +5666,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
5270
5666
|
conditional: import(".").JSONSchema;
|
5271
5667
|
})[] | undefined;
|
5272
5668
|
placeholder?: TranslationConfig | undefined;
|
5669
|
+
helperText?: TranslationConfig | undefined;
|
5273
5670
|
hideLabel?: boolean | undefined;
|
5274
5671
|
}, {
|
5275
5672
|
type: "ADDRESS";
|
@@ -5335,6 +5732,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
5335
5732
|
description: string;
|
5336
5733
|
defaultMessage: string;
|
5337
5734
|
} | undefined;
|
5735
|
+
helperText?: {
|
5736
|
+
id: string;
|
5737
|
+
description: string;
|
5738
|
+
defaultMessage: string;
|
5739
|
+
} | undefined;
|
5338
5740
|
hideLabel?: boolean | undefined;
|
5339
5741
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
5340
5742
|
id: z.ZodString;
|
@@ -5376,6 +5778,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
5376
5778
|
description: string;
|
5377
5779
|
defaultMessage: string;
|
5378
5780
|
}>;
|
5781
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5782
|
+
id: string;
|
5783
|
+
description: string;
|
5784
|
+
defaultMessage: string;
|
5785
|
+
}>>;
|
5379
5786
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5380
5787
|
}, {
|
5381
5788
|
type: z.ZodLiteral<"TEXT">;
|
@@ -5436,6 +5843,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
5436
5843
|
conditional: import(".").JSONSchema;
|
5437
5844
|
})[] | undefined;
|
5438
5845
|
placeholder?: TranslationConfig | undefined;
|
5846
|
+
helperText?: TranslationConfig | undefined;
|
5439
5847
|
hideLabel?: boolean | undefined;
|
5440
5848
|
configuration?: {
|
5441
5849
|
type?: "text" | "password" | undefined;
|
@@ -5479,6 +5887,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
5479
5887
|
description: string;
|
5480
5888
|
defaultMessage: string;
|
5481
5889
|
} | undefined;
|
5890
|
+
helperText?: {
|
5891
|
+
id: string;
|
5892
|
+
description: string;
|
5893
|
+
defaultMessage: string;
|
5894
|
+
} | undefined;
|
5482
5895
|
hideLabel?: boolean | undefined;
|
5483
5896
|
configuration?: {
|
5484
5897
|
type?: "text" | "password" | undefined;
|
@@ -5534,6 +5947,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
5534
5947
|
description: string;
|
5535
5948
|
defaultMessage: string;
|
5536
5949
|
}>;
|
5950
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5951
|
+
id: string;
|
5952
|
+
description: string;
|
5953
|
+
defaultMessage: string;
|
5954
|
+
}>>;
|
5537
5955
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5538
5956
|
}, {
|
5539
5957
|
type: z.ZodLiteral<"NUMBER">;
|
@@ -5594,6 +6012,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
5594
6012
|
conditional: import(".").JSONSchema;
|
5595
6013
|
})[] | undefined;
|
5596
6014
|
placeholder?: TranslationConfig | undefined;
|
6015
|
+
helperText?: TranslationConfig | undefined;
|
5597
6016
|
hideLabel?: boolean | undefined;
|
5598
6017
|
configuration?: {
|
5599
6018
|
prefix?: TranslationConfig | undefined;
|
@@ -5637,6 +6056,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
5637
6056
|
description: string;
|
5638
6057
|
defaultMessage: string;
|
5639
6058
|
} | undefined;
|
6059
|
+
helperText?: {
|
6060
|
+
id: string;
|
6061
|
+
description: string;
|
6062
|
+
defaultMessage: string;
|
6063
|
+
} | undefined;
|
5640
6064
|
hideLabel?: boolean | undefined;
|
5641
6065
|
configuration?: {
|
5642
6066
|
prefix?: {
|
@@ -5692,6 +6116,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
5692
6116
|
description: string;
|
5693
6117
|
defaultMessage: string;
|
5694
6118
|
}>;
|
6119
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6120
|
+
id: string;
|
6121
|
+
description: string;
|
6122
|
+
defaultMessage: string;
|
6123
|
+
}>>;
|
5695
6124
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5696
6125
|
}, {
|
5697
6126
|
type: z.ZodLiteral<"TEXTAREA">;
|
@@ -5755,6 +6184,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
5755
6184
|
conditional: import(".").JSONSchema;
|
5756
6185
|
})[] | undefined;
|
5757
6186
|
placeholder?: TranslationConfig | undefined;
|
6187
|
+
helperText?: TranslationConfig | undefined;
|
5758
6188
|
hideLabel?: boolean | undefined;
|
5759
6189
|
configuration?: {
|
5760
6190
|
maxLength?: number | undefined;
|
@@ -5799,6 +6229,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
5799
6229
|
description: string;
|
5800
6230
|
defaultMessage: string;
|
5801
6231
|
} | undefined;
|
6232
|
+
helperText?: {
|
6233
|
+
id: string;
|
6234
|
+
description: string;
|
6235
|
+
defaultMessage: string;
|
6236
|
+
} | undefined;
|
5802
6237
|
hideLabel?: boolean | undefined;
|
5803
6238
|
configuration?: {
|
5804
6239
|
maxLength?: number | undefined;
|
@@ -5855,6 +6290,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
5855
6290
|
description: string;
|
5856
6291
|
defaultMessage: string;
|
5857
6292
|
}>;
|
6293
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6294
|
+
id: string;
|
6295
|
+
description: string;
|
6296
|
+
defaultMessage: string;
|
6297
|
+
}>>;
|
5858
6298
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5859
6299
|
}, {
|
5860
6300
|
type: z.ZodLiteral<"DATE">;
|
@@ -5898,6 +6338,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
5898
6338
|
conditional: import(".").JSONSchema;
|
5899
6339
|
})[] | undefined;
|
5900
6340
|
placeholder?: TranslationConfig | undefined;
|
6341
|
+
helperText?: TranslationConfig | undefined;
|
5901
6342
|
hideLabel?: boolean | undefined;
|
5902
6343
|
configuration?: {
|
5903
6344
|
notice?: TranslationConfig | undefined;
|
@@ -5938,6 +6379,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
5938
6379
|
description: string;
|
5939
6380
|
defaultMessage: string;
|
5940
6381
|
} | undefined;
|
6382
|
+
helperText?: {
|
6383
|
+
id: string;
|
6384
|
+
description: string;
|
6385
|
+
defaultMessage: string;
|
6386
|
+
} | undefined;
|
5941
6387
|
hideLabel?: boolean | undefined;
|
5942
6388
|
configuration?: {
|
5943
6389
|
notice?: {
|
@@ -5986,6 +6432,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
5986
6432
|
description: string;
|
5987
6433
|
defaultMessage: string;
|
5988
6434
|
}>;
|
6435
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6436
|
+
id: string;
|
6437
|
+
description: string;
|
6438
|
+
defaultMessage: string;
|
6439
|
+
}>>;
|
5989
6440
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5990
6441
|
}, {
|
5991
6442
|
type: z.ZodLiteral<"DATE_RANGE">;
|
@@ -6029,6 +6480,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
6029
6480
|
conditional: import(".").JSONSchema;
|
6030
6481
|
})[] | undefined;
|
6031
6482
|
placeholder?: TranslationConfig | undefined;
|
6483
|
+
helperText?: TranslationConfig | undefined;
|
6032
6484
|
hideLabel?: boolean | undefined;
|
6033
6485
|
configuration?: {
|
6034
6486
|
notice?: TranslationConfig | undefined;
|
@@ -6069,6 +6521,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
6069
6521
|
description: string;
|
6070
6522
|
defaultMessage: string;
|
6071
6523
|
} | undefined;
|
6524
|
+
helperText?: {
|
6525
|
+
id: string;
|
6526
|
+
description: string;
|
6527
|
+
defaultMessage: string;
|
6528
|
+
} | undefined;
|
6072
6529
|
hideLabel?: boolean | undefined;
|
6073
6530
|
configuration?: {
|
6074
6531
|
notice?: {
|
@@ -6117,6 +6574,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
6117
6574
|
description: string;
|
6118
6575
|
defaultMessage: string;
|
6119
6576
|
}>;
|
6577
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6578
|
+
id: string;
|
6579
|
+
description: string;
|
6580
|
+
defaultMessage: string;
|
6581
|
+
}>>;
|
6120
6582
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6121
6583
|
}, {
|
6122
6584
|
type: z.ZodLiteral<"PARAGRAPH">;
|
@@ -6167,6 +6629,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
6167
6629
|
conditional: import(".").JSONSchema;
|
6168
6630
|
})[] | undefined;
|
6169
6631
|
placeholder?: TranslationConfig | undefined;
|
6632
|
+
helperText?: TranslationConfig | undefined;
|
6170
6633
|
hideLabel?: boolean | undefined;
|
6171
6634
|
}, {
|
6172
6635
|
type: "PARAGRAPH";
|
@@ -6204,6 +6667,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
6204
6667
|
description: string;
|
6205
6668
|
defaultMessage: string;
|
6206
6669
|
} | undefined;
|
6670
|
+
helperText?: {
|
6671
|
+
id: string;
|
6672
|
+
description: string;
|
6673
|
+
defaultMessage: string;
|
6674
|
+
} | undefined;
|
6207
6675
|
hideLabel?: boolean | undefined;
|
6208
6676
|
configuration?: {
|
6209
6677
|
styles?: {
|
@@ -6250,6 +6718,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
6250
6718
|
description: string;
|
6251
6719
|
defaultMessage: string;
|
6252
6720
|
}>;
|
6721
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6722
|
+
id: string;
|
6723
|
+
description: string;
|
6724
|
+
defaultMessage: string;
|
6725
|
+
}>>;
|
6253
6726
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6254
6727
|
}, {
|
6255
6728
|
type: z.ZodLiteral<"RADIO_GROUP">;
|
@@ -6317,6 +6790,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
6317
6790
|
conditional: import(".").JSONSchema;
|
6318
6791
|
})[] | undefined;
|
6319
6792
|
placeholder?: TranslationConfig | undefined;
|
6793
|
+
helperText?: TranslationConfig | undefined;
|
6320
6794
|
hideLabel?: boolean | undefined;
|
6321
6795
|
configuration?: {
|
6322
6796
|
styles?: {
|
@@ -6367,6 +6841,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
6367
6841
|
description: string;
|
6368
6842
|
defaultMessage: string;
|
6369
6843
|
} | undefined;
|
6844
|
+
helperText?: {
|
6845
|
+
id: string;
|
6846
|
+
description: string;
|
6847
|
+
defaultMessage: string;
|
6848
|
+
} | undefined;
|
6370
6849
|
hideLabel?: boolean | undefined;
|
6371
6850
|
configuration?: {
|
6372
6851
|
styles?: {
|
@@ -6413,6 +6892,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
6413
6892
|
description: string;
|
6414
6893
|
defaultMessage: string;
|
6415
6894
|
}>;
|
6895
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6896
|
+
id: string;
|
6897
|
+
description: string;
|
6898
|
+
defaultMessage: string;
|
6899
|
+
}>>;
|
6416
6900
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6417
6901
|
}, {
|
6418
6902
|
type: z.ZodLiteral<"BULLET_LIST">;
|
@@ -6469,6 +6953,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
6469
6953
|
conditional: import(".").JSONSchema;
|
6470
6954
|
})[] | undefined;
|
6471
6955
|
placeholder?: TranslationConfig | undefined;
|
6956
|
+
helperText?: TranslationConfig | undefined;
|
6472
6957
|
hideLabel?: boolean | undefined;
|
6473
6958
|
}, {
|
6474
6959
|
type: "BULLET_LIST";
|
@@ -6511,6 +6996,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
6511
6996
|
description: string;
|
6512
6997
|
defaultMessage: string;
|
6513
6998
|
} | undefined;
|
6999
|
+
helperText?: {
|
7000
|
+
id: string;
|
7001
|
+
description: string;
|
7002
|
+
defaultMessage: string;
|
7003
|
+
} | undefined;
|
6514
7004
|
hideLabel?: boolean | undefined;
|
6515
7005
|
configuration?: {
|
6516
7006
|
styles?: {
|
@@ -6557,6 +7047,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
6557
7047
|
description: string;
|
6558
7048
|
defaultMessage: string;
|
6559
7049
|
}>;
|
7050
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7051
|
+
id: string;
|
7052
|
+
description: string;
|
7053
|
+
defaultMessage: string;
|
7054
|
+
}>>;
|
6560
7055
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6561
7056
|
}, {
|
6562
7057
|
type: z.ZodLiteral<"PAGE_HEADER">;
|
@@ -6585,6 +7080,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
6585
7080
|
conditional: import(".").JSONSchema;
|
6586
7081
|
})[] | undefined;
|
6587
7082
|
placeholder?: TranslationConfig | undefined;
|
7083
|
+
helperText?: TranslationConfig | undefined;
|
6588
7084
|
hideLabel?: boolean | undefined;
|
6589
7085
|
}, {
|
6590
7086
|
type: "PAGE_HEADER";
|
@@ -6622,6 +7118,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
6622
7118
|
description: string;
|
6623
7119
|
defaultMessage: string;
|
6624
7120
|
} | undefined;
|
7121
|
+
helperText?: {
|
7122
|
+
id: string;
|
7123
|
+
description: string;
|
7124
|
+
defaultMessage: string;
|
7125
|
+
} | undefined;
|
6625
7126
|
hideLabel?: boolean | undefined;
|
6626
7127
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
6627
7128
|
id: z.ZodString;
|
@@ -6663,6 +7164,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
6663
7164
|
description: string;
|
6664
7165
|
defaultMessage: string;
|
6665
7166
|
}>;
|
7167
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7168
|
+
id: string;
|
7169
|
+
description: string;
|
7170
|
+
defaultMessage: string;
|
7171
|
+
}>>;
|
6666
7172
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6667
7173
|
}, {
|
6668
7174
|
type: z.ZodLiteral<"SELECT">;
|
@@ -6713,6 +7219,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
6713
7219
|
conditional: import(".").JSONSchema;
|
6714
7220
|
})[] | undefined;
|
6715
7221
|
placeholder?: TranslationConfig | undefined;
|
7222
|
+
helperText?: TranslationConfig | undefined;
|
6716
7223
|
hideLabel?: boolean | undefined;
|
6717
7224
|
}, {
|
6718
7225
|
type: "SELECT";
|
@@ -6758,6 +7265,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
6758
7265
|
description: string;
|
6759
7266
|
defaultMessage: string;
|
6760
7267
|
} | undefined;
|
7268
|
+
helperText?: {
|
7269
|
+
id: string;
|
7270
|
+
description: string;
|
7271
|
+
defaultMessage: string;
|
7272
|
+
} | undefined;
|
6761
7273
|
hideLabel?: boolean | undefined;
|
6762
7274
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
6763
7275
|
id: z.ZodString;
|
@@ -6799,6 +7311,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
6799
7311
|
description: string;
|
6800
7312
|
defaultMessage: string;
|
6801
7313
|
}>;
|
7314
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7315
|
+
id: string;
|
7316
|
+
description: string;
|
7317
|
+
defaultMessage: string;
|
7318
|
+
}>>;
|
6802
7319
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6803
7320
|
}, {
|
6804
7321
|
type: z.ZodLiteral<"CHECKBOX">;
|
@@ -6827,6 +7344,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
6827
7344
|
conditional: import(".").JSONSchema;
|
6828
7345
|
})[] | undefined;
|
6829
7346
|
placeholder?: TranslationConfig | undefined;
|
7347
|
+
helperText?: TranslationConfig | undefined;
|
6830
7348
|
hideLabel?: boolean | undefined;
|
6831
7349
|
}, {
|
6832
7350
|
type: "CHECKBOX";
|
@@ -6864,6 +7382,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
6864
7382
|
description: string;
|
6865
7383
|
defaultMessage: string;
|
6866
7384
|
} | undefined;
|
7385
|
+
helperText?: {
|
7386
|
+
id: string;
|
7387
|
+
description: string;
|
7388
|
+
defaultMessage: string;
|
7389
|
+
} | undefined;
|
6867
7390
|
hideLabel?: boolean | undefined;
|
6868
7391
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
6869
7392
|
id: z.ZodString;
|
@@ -6905,6 +7428,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
6905
7428
|
description: string;
|
6906
7429
|
defaultMessage: string;
|
6907
7430
|
}>;
|
7431
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7432
|
+
id: string;
|
7433
|
+
description: string;
|
7434
|
+
defaultMessage: string;
|
7435
|
+
}>>;
|
6908
7436
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6909
7437
|
}, {
|
6910
7438
|
type: z.ZodLiteral<"FILE">;
|
@@ -6974,6 +7502,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
6974
7502
|
conditional: import(".").JSONSchema;
|
6975
7503
|
})[] | undefined;
|
6976
7504
|
placeholder?: TranslationConfig | undefined;
|
7505
|
+
helperText?: TranslationConfig | undefined;
|
6977
7506
|
hideLabel?: boolean | undefined;
|
6978
7507
|
}, {
|
6979
7508
|
type: "FILE";
|
@@ -7011,6 +7540,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
7011
7540
|
description: string;
|
7012
7541
|
defaultMessage: string;
|
7013
7542
|
} | undefined;
|
7543
|
+
helperText?: {
|
7544
|
+
id: string;
|
7545
|
+
description: string;
|
7546
|
+
defaultMessage: string;
|
7547
|
+
} | undefined;
|
7014
7548
|
hideLabel?: boolean | undefined;
|
7015
7549
|
configuration?: {
|
7016
7550
|
maxFileSize?: number | undefined;
|
@@ -7064,6 +7598,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
7064
7598
|
description: string;
|
7065
7599
|
defaultMessage: string;
|
7066
7600
|
}>;
|
7601
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7602
|
+
id: string;
|
7603
|
+
description: string;
|
7604
|
+
defaultMessage: string;
|
7605
|
+
}>>;
|
7067
7606
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7068
7607
|
}, {
|
7069
7608
|
type: z.ZodLiteral<"COUNTRY">;
|
@@ -7092,6 +7631,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
7092
7631
|
conditional: import(".").JSONSchema;
|
7093
7632
|
})[] | undefined;
|
7094
7633
|
placeholder?: TranslationConfig | undefined;
|
7634
|
+
helperText?: TranslationConfig | undefined;
|
7095
7635
|
hideLabel?: boolean | undefined;
|
7096
7636
|
}, {
|
7097
7637
|
type: "COUNTRY";
|
@@ -7129,6 +7669,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
7129
7669
|
description: string;
|
7130
7670
|
defaultMessage: string;
|
7131
7671
|
} | undefined;
|
7672
|
+
helperText?: {
|
7673
|
+
id: string;
|
7674
|
+
description: string;
|
7675
|
+
defaultMessage: string;
|
7676
|
+
} | undefined;
|
7132
7677
|
hideLabel?: boolean | undefined;
|
7133
7678
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
7134
7679
|
id: z.ZodString;
|
@@ -7170,6 +7715,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
7170
7715
|
description: string;
|
7171
7716
|
defaultMessage: string;
|
7172
7717
|
}>;
|
7718
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7719
|
+
id: string;
|
7720
|
+
description: string;
|
7721
|
+
defaultMessage: string;
|
7722
|
+
}>>;
|
7173
7723
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7174
7724
|
}, {
|
7175
7725
|
type: z.ZodLiteral<"ADMINISTRATIVE_AREA">;
|
@@ -7224,6 +7774,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
7224
7774
|
conditional: import(".").JSONSchema;
|
7225
7775
|
})[] | undefined;
|
7226
7776
|
placeholder?: TranslationConfig | undefined;
|
7777
|
+
helperText?: TranslationConfig | undefined;
|
7227
7778
|
hideLabel?: boolean | undefined;
|
7228
7779
|
}, {
|
7229
7780
|
type: "ADMINISTRATIVE_AREA";
|
@@ -7267,6 +7818,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
7267
7818
|
description: string;
|
7268
7819
|
defaultMessage: string;
|
7269
7820
|
} | undefined;
|
7821
|
+
helperText?: {
|
7822
|
+
id: string;
|
7823
|
+
description: string;
|
7824
|
+
defaultMessage: string;
|
7825
|
+
} | undefined;
|
7270
7826
|
hideLabel?: boolean | undefined;
|
7271
7827
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
7272
7828
|
id: z.ZodString;
|
@@ -7308,6 +7864,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
7308
7864
|
description: string;
|
7309
7865
|
defaultMessage: string;
|
7310
7866
|
}>;
|
7867
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7868
|
+
id: string;
|
7869
|
+
description: string;
|
7870
|
+
defaultMessage: string;
|
7871
|
+
}>>;
|
7311
7872
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7312
7873
|
}, {
|
7313
7874
|
type: z.ZodLiteral<"DIVIDER">;
|
@@ -7335,6 +7896,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
7335
7896
|
conditional: import(".").JSONSchema;
|
7336
7897
|
})[] | undefined;
|
7337
7898
|
placeholder?: TranslationConfig | undefined;
|
7899
|
+
helperText?: TranslationConfig | undefined;
|
7338
7900
|
hideLabel?: boolean | undefined;
|
7339
7901
|
}, {
|
7340
7902
|
type: "DIVIDER";
|
@@ -7372,6 +7934,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
7372
7934
|
description: string;
|
7373
7935
|
defaultMessage: string;
|
7374
7936
|
} | undefined;
|
7937
|
+
helperText?: {
|
7938
|
+
id: string;
|
7939
|
+
description: string;
|
7940
|
+
defaultMessage: string;
|
7941
|
+
} | undefined;
|
7375
7942
|
hideLabel?: boolean | undefined;
|
7376
7943
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
7377
7944
|
id: z.ZodString;
|
@@ -7413,6 +7980,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
7413
7980
|
description: string;
|
7414
7981
|
defaultMessage: string;
|
7415
7982
|
}>;
|
7983
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7984
|
+
id: string;
|
7985
|
+
description: string;
|
7986
|
+
defaultMessage: string;
|
7987
|
+
}>>;
|
7416
7988
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7417
7989
|
}, {
|
7418
7990
|
type: z.ZodLiteral<"LOCATION">;
|
@@ -7441,6 +8013,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
7441
8013
|
conditional: import(".").JSONSchema;
|
7442
8014
|
})[] | undefined;
|
7443
8015
|
placeholder?: TranslationConfig | undefined;
|
8016
|
+
helperText?: TranslationConfig | undefined;
|
7444
8017
|
hideLabel?: boolean | undefined;
|
7445
8018
|
}, {
|
7446
8019
|
type: "LOCATION";
|
@@ -7478,6 +8051,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
7478
8051
|
description: string;
|
7479
8052
|
defaultMessage: string;
|
7480
8053
|
} | undefined;
|
8054
|
+
helperText?: {
|
8055
|
+
id: string;
|
8056
|
+
description: string;
|
8057
|
+
defaultMessage: string;
|
8058
|
+
} | undefined;
|
7481
8059
|
hideLabel?: boolean | undefined;
|
7482
8060
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
7483
8061
|
id: z.ZodString;
|
@@ -7519,6 +8097,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
7519
8097
|
description: string;
|
7520
8098
|
defaultMessage: string;
|
7521
8099
|
}>;
|
8100
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
8101
|
+
id: string;
|
8102
|
+
description: string;
|
8103
|
+
defaultMessage: string;
|
8104
|
+
}>>;
|
7522
8105
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7523
8106
|
}, {
|
7524
8107
|
type: z.ZodLiteral<"FACILITY">;
|
@@ -7547,6 +8130,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
7547
8130
|
conditional: import(".").JSONSchema;
|
7548
8131
|
})[] | undefined;
|
7549
8132
|
placeholder?: TranslationConfig | undefined;
|
8133
|
+
helperText?: TranslationConfig | undefined;
|
7550
8134
|
hideLabel?: boolean | undefined;
|
7551
8135
|
}, {
|
7552
8136
|
type: "FACILITY";
|
@@ -7584,6 +8168,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
7584
8168
|
description: string;
|
7585
8169
|
defaultMessage: string;
|
7586
8170
|
} | undefined;
|
8171
|
+
helperText?: {
|
8172
|
+
id: string;
|
8173
|
+
description: string;
|
8174
|
+
defaultMessage: string;
|
8175
|
+
} | undefined;
|
7587
8176
|
hideLabel?: boolean | undefined;
|
7588
8177
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
7589
8178
|
id: z.ZodString;
|
@@ -7625,6 +8214,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
7625
8214
|
description: string;
|
7626
8215
|
defaultMessage: string;
|
7627
8216
|
}>;
|
8217
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
8218
|
+
id: string;
|
8219
|
+
description: string;
|
8220
|
+
defaultMessage: string;
|
8221
|
+
}>>;
|
7628
8222
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7629
8223
|
}, {
|
7630
8224
|
type: z.ZodLiteral<"OFFICE">;
|
@@ -7653,6 +8247,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
7653
8247
|
conditional: import(".").JSONSchema;
|
7654
8248
|
})[] | undefined;
|
7655
8249
|
placeholder?: TranslationConfig | undefined;
|
8250
|
+
helperText?: TranslationConfig | undefined;
|
7656
8251
|
hideLabel?: boolean | undefined;
|
7657
8252
|
}, {
|
7658
8253
|
type: "OFFICE";
|
@@ -7690,6 +8285,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
7690
8285
|
description: string;
|
7691
8286
|
defaultMessage: string;
|
7692
8287
|
} | undefined;
|
8288
|
+
helperText?: {
|
8289
|
+
id: string;
|
8290
|
+
description: string;
|
8291
|
+
defaultMessage: string;
|
8292
|
+
} | undefined;
|
7693
8293
|
hideLabel?: boolean | undefined;
|
7694
8294
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
7695
8295
|
id: z.ZodString;
|
@@ -7731,6 +8331,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
7731
8331
|
description: string;
|
7732
8332
|
defaultMessage: string;
|
7733
8333
|
}>;
|
8334
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
8335
|
+
id: string;
|
8336
|
+
description: string;
|
8337
|
+
defaultMessage: string;
|
8338
|
+
}>>;
|
7734
8339
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7735
8340
|
}, {
|
7736
8341
|
type: z.ZodLiteral<"SIGNATURE">;
|
@@ -7778,6 +8383,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
7778
8383
|
conditional: import(".").JSONSchema;
|
7779
8384
|
})[] | undefined;
|
7780
8385
|
placeholder?: TranslationConfig | undefined;
|
8386
|
+
helperText?: TranslationConfig | undefined;
|
7781
8387
|
hideLabel?: boolean | undefined;
|
7782
8388
|
}, {
|
7783
8389
|
type: "SIGNATURE";
|
@@ -7820,6 +8426,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
7820
8426
|
description: string;
|
7821
8427
|
defaultMessage: string;
|
7822
8428
|
} | undefined;
|
8429
|
+
helperText?: {
|
8430
|
+
id: string;
|
8431
|
+
description: string;
|
8432
|
+
defaultMessage: string;
|
8433
|
+
} | undefined;
|
7823
8434
|
hideLabel?: boolean | undefined;
|
7824
8435
|
configuration?: {
|
7825
8436
|
maxFileSize?: number | undefined;
|
@@ -7865,6 +8476,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
7865
8476
|
description: string;
|
7866
8477
|
defaultMessage: string;
|
7867
8478
|
}>;
|
8479
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
8480
|
+
id: string;
|
8481
|
+
description: string;
|
8482
|
+
defaultMessage: string;
|
8483
|
+
}>>;
|
7868
8484
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7869
8485
|
}, {
|
7870
8486
|
type: z.ZodLiteral<"EMAIL">;
|
@@ -7900,6 +8516,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
7900
8516
|
conditional: import(".").JSONSchema;
|
7901
8517
|
})[] | undefined;
|
7902
8518
|
placeholder?: TranslationConfig | undefined;
|
8519
|
+
helperText?: TranslationConfig | undefined;
|
7903
8520
|
hideLabel?: boolean | undefined;
|
7904
8521
|
configuration?: {
|
7905
8522
|
maxLength?: number | undefined;
|
@@ -7940,6 +8557,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
7940
8557
|
description: string;
|
7941
8558
|
defaultMessage: string;
|
7942
8559
|
} | undefined;
|
8560
|
+
helperText?: {
|
8561
|
+
id: string;
|
8562
|
+
description: string;
|
8563
|
+
defaultMessage: string;
|
8564
|
+
} | undefined;
|
7943
8565
|
hideLabel?: boolean | undefined;
|
7944
8566
|
configuration?: {
|
7945
8567
|
maxLength?: number | undefined;
|
@@ -7984,6 +8606,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
7984
8606
|
description: string;
|
7985
8607
|
defaultMessage: string;
|
7986
8608
|
}>;
|
8609
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
8610
|
+
id: string;
|
8611
|
+
description: string;
|
8612
|
+
defaultMessage: string;
|
8613
|
+
}>>;
|
7987
8614
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7988
8615
|
}, {
|
7989
8616
|
type: z.ZodLiteral<"FILE_WITH_OPTIONS">;
|
@@ -8047,6 +8674,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
8047
8674
|
conditional: import(".").JSONSchema;
|
8048
8675
|
})[] | undefined;
|
8049
8676
|
placeholder?: TranslationConfig | undefined;
|
8677
|
+
helperText?: TranslationConfig | undefined;
|
8050
8678
|
hideLabel?: boolean | undefined;
|
8051
8679
|
}, {
|
8052
8680
|
type: "FILE_WITH_OPTIONS";
|
@@ -8092,6 +8720,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
8092
8720
|
description: string;
|
8093
8721
|
defaultMessage: string;
|
8094
8722
|
} | undefined;
|
8723
|
+
helperText?: {
|
8724
|
+
id: string;
|
8725
|
+
description: string;
|
8726
|
+
defaultMessage: string;
|
8727
|
+
} | undefined;
|
8095
8728
|
hideLabel?: boolean | undefined;
|
8096
8729
|
configuration?: {
|
8097
8730
|
maxFileSize?: number | undefined;
|
@@ -8137,6 +8770,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
8137
8770
|
description: string;
|
8138
8771
|
defaultMessage: string;
|
8139
8772
|
}>;
|
8773
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
8774
|
+
id: string;
|
8775
|
+
description: string;
|
8776
|
+
defaultMessage: string;
|
8777
|
+
}>>;
|
8140
8778
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
8141
8779
|
}, {
|
8142
8780
|
type: z.ZodLiteral<"DATA">;
|
@@ -8240,6 +8878,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
8240
8878
|
conditional: import(".").JSONSchema;
|
8241
8879
|
})[] | undefined;
|
8242
8880
|
placeholder?: TranslationConfig | undefined;
|
8881
|
+
helperText?: TranslationConfig | undefined;
|
8243
8882
|
hideLabel?: boolean | undefined;
|
8244
8883
|
}, {
|
8245
8884
|
type: "DATA";
|
@@ -8298,6 +8937,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
8298
8937
|
description: string;
|
8299
8938
|
defaultMessage: string;
|
8300
8939
|
} | undefined;
|
8940
|
+
helperText?: {
|
8941
|
+
id: string;
|
8942
|
+
description: string;
|
8943
|
+
defaultMessage: string;
|
8944
|
+
} | undefined;
|
8301
8945
|
hideLabel?: boolean | undefined;
|
8302
8946
|
}>]>, "many">;
|
8303
8947
|
conditional: z.ZodOptional<z.ZodType<import(".").JSONSchema, z.ZodTypeDef, import(".").JSONSchema>>;
|
@@ -8457,6 +9101,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
8457
9101
|
conditional: import(".").JSONSchema;
|
8458
9102
|
})[] | undefined;
|
8459
9103
|
placeholder?: TranslationConfig | undefined;
|
9104
|
+
helperText?: TranslationConfig | undefined;
|
8460
9105
|
hideLabel?: boolean | undefined;
|
8461
9106
|
} | {
|
8462
9107
|
type: "TEXT";
|
@@ -8482,6 +9127,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
8482
9127
|
conditional: import(".").JSONSchema;
|
8483
9128
|
})[] | undefined;
|
8484
9129
|
placeholder?: TranslationConfig | undefined;
|
9130
|
+
helperText?: TranslationConfig | undefined;
|
8485
9131
|
hideLabel?: boolean | undefined;
|
8486
9132
|
configuration?: {
|
8487
9133
|
type?: "text" | "password" | undefined;
|
@@ -8513,6 +9159,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
8513
9159
|
conditional: import(".").JSONSchema;
|
8514
9160
|
})[] | undefined;
|
8515
9161
|
placeholder?: TranslationConfig | undefined;
|
9162
|
+
helperText?: TranslationConfig | undefined;
|
8516
9163
|
hideLabel?: boolean | undefined;
|
8517
9164
|
configuration?: {
|
8518
9165
|
prefix?: TranslationConfig | undefined;
|
@@ -8544,6 +9191,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
8544
9191
|
conditional: import(".").JSONSchema;
|
8545
9192
|
})[] | undefined;
|
8546
9193
|
placeholder?: TranslationConfig | undefined;
|
9194
|
+
helperText?: TranslationConfig | undefined;
|
8547
9195
|
hideLabel?: boolean | undefined;
|
8548
9196
|
configuration?: {
|
8549
9197
|
maxLength?: number | undefined;
|
@@ -8581,6 +9229,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
8581
9229
|
conditional: import(".").JSONSchema;
|
8582
9230
|
})[] | undefined;
|
8583
9231
|
placeholder?: TranslationConfig | undefined;
|
9232
|
+
helperText?: TranslationConfig | undefined;
|
8584
9233
|
hideLabel?: boolean | undefined;
|
8585
9234
|
} | {
|
8586
9235
|
type: "EMAIL";
|
@@ -8606,6 +9255,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
8606
9255
|
conditional: import(".").JSONSchema;
|
8607
9256
|
})[] | undefined;
|
8608
9257
|
placeholder?: TranslationConfig | undefined;
|
9258
|
+
helperText?: TranslationConfig | undefined;
|
8609
9259
|
hideLabel?: boolean | undefined;
|
8610
9260
|
configuration?: {
|
8611
9261
|
maxLength?: number | undefined;
|
@@ -8634,6 +9284,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
8634
9284
|
conditional: import(".").JSONSchema;
|
8635
9285
|
})[] | undefined;
|
8636
9286
|
placeholder?: TranslationConfig | undefined;
|
9287
|
+
helperText?: TranslationConfig | undefined;
|
8637
9288
|
hideLabel?: boolean | undefined;
|
8638
9289
|
configuration?: {
|
8639
9290
|
notice?: TranslationConfig | undefined;
|
@@ -8662,6 +9313,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
8662
9313
|
conditional: import(".").JSONSchema;
|
8663
9314
|
})[] | undefined;
|
8664
9315
|
placeholder?: TranslationConfig | undefined;
|
9316
|
+
helperText?: TranslationConfig | undefined;
|
8665
9317
|
hideLabel?: boolean | undefined;
|
8666
9318
|
configuration?: {
|
8667
9319
|
notice?: TranslationConfig | undefined;
|
@@ -8695,6 +9347,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
8695
9347
|
conditional: import(".").JSONSchema;
|
8696
9348
|
})[] | undefined;
|
8697
9349
|
placeholder?: TranslationConfig | undefined;
|
9350
|
+
helperText?: TranslationConfig | undefined;
|
8698
9351
|
hideLabel?: boolean | undefined;
|
8699
9352
|
} | {
|
8700
9353
|
type: "PAGE_HEADER";
|
@@ -8720,6 +9373,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
8720
9373
|
conditional: import(".").JSONSchema;
|
8721
9374
|
})[] | undefined;
|
8722
9375
|
placeholder?: TranslationConfig | undefined;
|
9376
|
+
helperText?: TranslationConfig | undefined;
|
8723
9377
|
hideLabel?: boolean | undefined;
|
8724
9378
|
} | {
|
8725
9379
|
type: "FILE";
|
@@ -8753,6 +9407,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
8753
9407
|
conditional: import(".").JSONSchema;
|
8754
9408
|
})[] | undefined;
|
8755
9409
|
placeholder?: TranslationConfig | undefined;
|
9410
|
+
helperText?: TranslationConfig | undefined;
|
8756
9411
|
hideLabel?: boolean | undefined;
|
8757
9412
|
} | {
|
8758
9413
|
type: "RADIO_GROUP";
|
@@ -8782,6 +9437,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
8782
9437
|
conditional: import(".").JSONSchema;
|
8783
9438
|
})[] | undefined;
|
8784
9439
|
placeholder?: TranslationConfig | undefined;
|
9440
|
+
helperText?: TranslationConfig | undefined;
|
8785
9441
|
hideLabel?: boolean | undefined;
|
8786
9442
|
configuration?: {
|
8787
9443
|
styles?: {
|
@@ -8818,6 +9474,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
8818
9474
|
conditional: import(".").JSONSchema;
|
8819
9475
|
})[] | undefined;
|
8820
9476
|
placeholder?: TranslationConfig | undefined;
|
9477
|
+
helperText?: TranslationConfig | undefined;
|
8821
9478
|
hideLabel?: boolean | undefined;
|
8822
9479
|
} | {
|
8823
9480
|
type: "SELECT";
|
@@ -8847,6 +9504,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
8847
9504
|
conditional: import(".").JSONSchema;
|
8848
9505
|
})[] | undefined;
|
8849
9506
|
placeholder?: TranslationConfig | undefined;
|
9507
|
+
helperText?: TranslationConfig | undefined;
|
8850
9508
|
hideLabel?: boolean | undefined;
|
8851
9509
|
} | {
|
8852
9510
|
type: "CHECKBOX";
|
@@ -8872,6 +9530,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
8872
9530
|
conditional: import(".").JSONSchema;
|
8873
9531
|
})[] | undefined;
|
8874
9532
|
placeholder?: TranslationConfig | undefined;
|
9533
|
+
helperText?: TranslationConfig | undefined;
|
8875
9534
|
hideLabel?: boolean | undefined;
|
8876
9535
|
} | {
|
8877
9536
|
type: "COUNTRY";
|
@@ -8897,6 +9556,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
8897
9556
|
conditional: import(".").JSONSchema;
|
8898
9557
|
})[] | undefined;
|
8899
9558
|
placeholder?: TranslationConfig | undefined;
|
9559
|
+
helperText?: TranslationConfig | undefined;
|
8900
9560
|
hideLabel?: boolean | undefined;
|
8901
9561
|
} | {
|
8902
9562
|
type: "ADMINISTRATIVE_AREA";
|
@@ -8928,6 +9588,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
8928
9588
|
conditional: import(".").JSONSchema;
|
8929
9589
|
})[] | undefined;
|
8930
9590
|
placeholder?: TranslationConfig | undefined;
|
9591
|
+
helperText?: TranslationConfig | undefined;
|
8931
9592
|
hideLabel?: boolean | undefined;
|
8932
9593
|
} | {
|
8933
9594
|
type: "LOCATION";
|
@@ -8953,6 +9614,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
8953
9614
|
conditional: import(".").JSONSchema;
|
8954
9615
|
})[] | undefined;
|
8955
9616
|
placeholder?: TranslationConfig | undefined;
|
9617
|
+
helperText?: TranslationConfig | undefined;
|
8956
9618
|
hideLabel?: boolean | undefined;
|
8957
9619
|
} | {
|
8958
9620
|
type: "FILE_WITH_OPTIONS";
|
@@ -8986,6 +9648,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
8986
9648
|
conditional: import(".").JSONSchema;
|
8987
9649
|
})[] | undefined;
|
8988
9650
|
placeholder?: TranslationConfig | undefined;
|
9651
|
+
helperText?: TranslationConfig | undefined;
|
8989
9652
|
hideLabel?: boolean | undefined;
|
8990
9653
|
} | {
|
8991
9654
|
type: "FACILITY";
|
@@ -9011,6 +9674,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
9011
9674
|
conditional: import(".").JSONSchema;
|
9012
9675
|
})[] | undefined;
|
9013
9676
|
placeholder?: TranslationConfig | undefined;
|
9677
|
+
helperText?: TranslationConfig | undefined;
|
9014
9678
|
hideLabel?: boolean | undefined;
|
9015
9679
|
} | {
|
9016
9680
|
type: "OFFICE";
|
@@ -9036,6 +9700,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
9036
9700
|
conditional: import(".").JSONSchema;
|
9037
9701
|
})[] | undefined;
|
9038
9702
|
placeholder?: TranslationConfig | undefined;
|
9703
|
+
helperText?: TranslationConfig | undefined;
|
9039
9704
|
hideLabel?: boolean | undefined;
|
9040
9705
|
} | {
|
9041
9706
|
type: "ADDRESS";
|
@@ -9089,6 +9754,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
9089
9754
|
conditional: import(".").JSONSchema;
|
9090
9755
|
})[] | undefined;
|
9091
9756
|
placeholder?: TranslationConfig | undefined;
|
9757
|
+
helperText?: TranslationConfig | undefined;
|
9092
9758
|
hideLabel?: boolean | undefined;
|
9093
9759
|
} | {
|
9094
9760
|
type: "DATA";
|
@@ -9123,6 +9789,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
9123
9789
|
conditional: import(".").JSONSchema;
|
9124
9790
|
})[] | undefined;
|
9125
9791
|
placeholder?: TranslationConfig | undefined;
|
9792
|
+
helperText?: TranslationConfig | undefined;
|
9126
9793
|
hideLabel?: boolean | undefined;
|
9127
9794
|
})[];
|
9128
9795
|
conditional?: import(".").JSONSchema | undefined;
|
@@ -9198,6 +9865,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
9198
9865
|
description: string;
|
9199
9866
|
defaultMessage: string;
|
9200
9867
|
} | undefined;
|
9868
|
+
helperText?: {
|
9869
|
+
id: string;
|
9870
|
+
description: string;
|
9871
|
+
defaultMessage: string;
|
9872
|
+
} | undefined;
|
9201
9873
|
hideLabel?: boolean | undefined;
|
9202
9874
|
} | {
|
9203
9875
|
type: "TEXT";
|
@@ -9235,6 +9907,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
9235
9907
|
description: string;
|
9236
9908
|
defaultMessage: string;
|
9237
9909
|
} | undefined;
|
9910
|
+
helperText?: {
|
9911
|
+
id: string;
|
9912
|
+
description: string;
|
9913
|
+
defaultMessage: string;
|
9914
|
+
} | undefined;
|
9238
9915
|
hideLabel?: boolean | undefined;
|
9239
9916
|
configuration?: {
|
9240
9917
|
type?: "text" | "password" | undefined;
|
@@ -9286,6 +9963,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
9286
9963
|
description: string;
|
9287
9964
|
defaultMessage: string;
|
9288
9965
|
} | undefined;
|
9966
|
+
helperText?: {
|
9967
|
+
id: string;
|
9968
|
+
description: string;
|
9969
|
+
defaultMessage: string;
|
9970
|
+
} | undefined;
|
9289
9971
|
hideLabel?: boolean | undefined;
|
9290
9972
|
configuration?: {
|
9291
9973
|
prefix?: {
|
@@ -9337,6 +10019,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
9337
10019
|
description: string;
|
9338
10020
|
defaultMessage: string;
|
9339
10021
|
} | undefined;
|
10022
|
+
helperText?: {
|
10023
|
+
id: string;
|
10024
|
+
description: string;
|
10025
|
+
defaultMessage: string;
|
10026
|
+
} | undefined;
|
9340
10027
|
hideLabel?: boolean | undefined;
|
9341
10028
|
configuration?: {
|
9342
10029
|
maxLength?: number | undefined;
|
@@ -9394,6 +10081,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
9394
10081
|
description: string;
|
9395
10082
|
defaultMessage: string;
|
9396
10083
|
} | undefined;
|
10084
|
+
helperText?: {
|
10085
|
+
id: string;
|
10086
|
+
description: string;
|
10087
|
+
defaultMessage: string;
|
10088
|
+
} | undefined;
|
9397
10089
|
hideLabel?: boolean | undefined;
|
9398
10090
|
configuration?: {
|
9399
10091
|
maxFileSize?: number | undefined;
|
@@ -9435,6 +10127,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
9435
10127
|
description: string;
|
9436
10128
|
defaultMessage: string;
|
9437
10129
|
} | undefined;
|
10130
|
+
helperText?: {
|
10131
|
+
id: string;
|
10132
|
+
description: string;
|
10133
|
+
defaultMessage: string;
|
10134
|
+
} | undefined;
|
9438
10135
|
hideLabel?: boolean | undefined;
|
9439
10136
|
configuration?: {
|
9440
10137
|
maxLength?: number | undefined;
|
@@ -9475,6 +10172,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
9475
10172
|
description: string;
|
9476
10173
|
defaultMessage: string;
|
9477
10174
|
} | undefined;
|
10175
|
+
helperText?: {
|
10176
|
+
id: string;
|
10177
|
+
description: string;
|
10178
|
+
defaultMessage: string;
|
10179
|
+
} | undefined;
|
9478
10180
|
hideLabel?: boolean | undefined;
|
9479
10181
|
configuration?: {
|
9480
10182
|
notice?: {
|
@@ -9519,6 +10221,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
9519
10221
|
description: string;
|
9520
10222
|
defaultMessage: string;
|
9521
10223
|
} | undefined;
|
10224
|
+
helperText?: {
|
10225
|
+
id: string;
|
10226
|
+
description: string;
|
10227
|
+
defaultMessage: string;
|
10228
|
+
} | undefined;
|
9522
10229
|
hideLabel?: boolean | undefined;
|
9523
10230
|
configuration?: {
|
9524
10231
|
notice?: {
|
@@ -9563,6 +10270,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
9563
10270
|
description: string;
|
9564
10271
|
defaultMessage: string;
|
9565
10272
|
} | undefined;
|
10273
|
+
helperText?: {
|
10274
|
+
id: string;
|
10275
|
+
description: string;
|
10276
|
+
defaultMessage: string;
|
10277
|
+
} | undefined;
|
9566
10278
|
hideLabel?: boolean | undefined;
|
9567
10279
|
configuration?: {
|
9568
10280
|
styles?: {
|
@@ -9605,6 +10317,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
9605
10317
|
description: string;
|
9606
10318
|
defaultMessage: string;
|
9607
10319
|
} | undefined;
|
10320
|
+
helperText?: {
|
10321
|
+
id: string;
|
10322
|
+
description: string;
|
10323
|
+
defaultMessage: string;
|
10324
|
+
} | undefined;
|
9608
10325
|
hideLabel?: boolean | undefined;
|
9609
10326
|
} | {
|
9610
10327
|
type: "FILE";
|
@@ -9642,6 +10359,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
9642
10359
|
description: string;
|
9643
10360
|
defaultMessage: string;
|
9644
10361
|
} | undefined;
|
10362
|
+
helperText?: {
|
10363
|
+
id: string;
|
10364
|
+
description: string;
|
10365
|
+
defaultMessage: string;
|
10366
|
+
} | undefined;
|
9645
10367
|
hideLabel?: boolean | undefined;
|
9646
10368
|
configuration?: {
|
9647
10369
|
maxFileSize?: number | undefined;
|
@@ -9699,6 +10421,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
9699
10421
|
description: string;
|
9700
10422
|
defaultMessage: string;
|
9701
10423
|
} | undefined;
|
10424
|
+
helperText?: {
|
10425
|
+
id: string;
|
10426
|
+
description: string;
|
10427
|
+
defaultMessage: string;
|
10428
|
+
} | undefined;
|
9702
10429
|
hideLabel?: boolean | undefined;
|
9703
10430
|
configuration?: {
|
9704
10431
|
styles?: {
|
@@ -9746,6 +10473,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
9746
10473
|
description: string;
|
9747
10474
|
defaultMessage: string;
|
9748
10475
|
} | undefined;
|
10476
|
+
helperText?: {
|
10477
|
+
id: string;
|
10478
|
+
description: string;
|
10479
|
+
defaultMessage: string;
|
10480
|
+
} | undefined;
|
9749
10481
|
hideLabel?: boolean | undefined;
|
9750
10482
|
configuration?: {
|
9751
10483
|
styles?: {
|
@@ -9796,6 +10528,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
9796
10528
|
description: string;
|
9797
10529
|
defaultMessage: string;
|
9798
10530
|
} | undefined;
|
10531
|
+
helperText?: {
|
10532
|
+
id: string;
|
10533
|
+
description: string;
|
10534
|
+
defaultMessage: string;
|
10535
|
+
} | undefined;
|
9799
10536
|
hideLabel?: boolean | undefined;
|
9800
10537
|
} | {
|
9801
10538
|
type: "CHECKBOX";
|
@@ -9833,6 +10570,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
9833
10570
|
description: string;
|
9834
10571
|
defaultMessage: string;
|
9835
10572
|
} | undefined;
|
10573
|
+
helperText?: {
|
10574
|
+
id: string;
|
10575
|
+
description: string;
|
10576
|
+
defaultMessage: string;
|
10577
|
+
} | undefined;
|
9836
10578
|
hideLabel?: boolean | undefined;
|
9837
10579
|
} | {
|
9838
10580
|
type: "COUNTRY";
|
@@ -9870,6 +10612,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
9870
10612
|
description: string;
|
9871
10613
|
defaultMessage: string;
|
9872
10614
|
} | undefined;
|
10615
|
+
helperText?: {
|
10616
|
+
id: string;
|
10617
|
+
description: string;
|
10618
|
+
defaultMessage: string;
|
10619
|
+
} | undefined;
|
9873
10620
|
hideLabel?: boolean | undefined;
|
9874
10621
|
} | {
|
9875
10622
|
type: "ADMINISTRATIVE_AREA";
|
@@ -9913,6 +10660,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
9913
10660
|
description: string;
|
9914
10661
|
defaultMessage: string;
|
9915
10662
|
} | undefined;
|
10663
|
+
helperText?: {
|
10664
|
+
id: string;
|
10665
|
+
description: string;
|
10666
|
+
defaultMessage: string;
|
10667
|
+
} | undefined;
|
9916
10668
|
hideLabel?: boolean | undefined;
|
9917
10669
|
} | {
|
9918
10670
|
type: "LOCATION";
|
@@ -9950,6 +10702,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
9950
10702
|
description: string;
|
9951
10703
|
defaultMessage: string;
|
9952
10704
|
} | undefined;
|
10705
|
+
helperText?: {
|
10706
|
+
id: string;
|
10707
|
+
description: string;
|
10708
|
+
defaultMessage: string;
|
10709
|
+
} | undefined;
|
9953
10710
|
hideLabel?: boolean | undefined;
|
9954
10711
|
} | {
|
9955
10712
|
type: "FILE_WITH_OPTIONS";
|
@@ -9995,6 +10752,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
9995
10752
|
description: string;
|
9996
10753
|
defaultMessage: string;
|
9997
10754
|
} | undefined;
|
10755
|
+
helperText?: {
|
10756
|
+
id: string;
|
10757
|
+
description: string;
|
10758
|
+
defaultMessage: string;
|
10759
|
+
} | undefined;
|
9998
10760
|
hideLabel?: boolean | undefined;
|
9999
10761
|
configuration?: {
|
10000
10762
|
maxFileSize?: number | undefined;
|
@@ -10036,6 +10798,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
10036
10798
|
description: string;
|
10037
10799
|
defaultMessage: string;
|
10038
10800
|
} | undefined;
|
10801
|
+
helperText?: {
|
10802
|
+
id: string;
|
10803
|
+
description: string;
|
10804
|
+
defaultMessage: string;
|
10805
|
+
} | undefined;
|
10039
10806
|
hideLabel?: boolean | undefined;
|
10040
10807
|
} | {
|
10041
10808
|
type: "OFFICE";
|
@@ -10073,6 +10840,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
10073
10840
|
description: string;
|
10074
10841
|
defaultMessage: string;
|
10075
10842
|
} | undefined;
|
10843
|
+
helperText?: {
|
10844
|
+
id: string;
|
10845
|
+
description: string;
|
10846
|
+
defaultMessage: string;
|
10847
|
+
} | undefined;
|
10076
10848
|
hideLabel?: boolean | undefined;
|
10077
10849
|
} | {
|
10078
10850
|
type: "ADDRESS";
|
@@ -10138,6 +10910,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
10138
10910
|
description: string;
|
10139
10911
|
defaultMessage: string;
|
10140
10912
|
} | undefined;
|
10913
|
+
helperText?: {
|
10914
|
+
id: string;
|
10915
|
+
description: string;
|
10916
|
+
defaultMessage: string;
|
10917
|
+
} | undefined;
|
10141
10918
|
hideLabel?: boolean | undefined;
|
10142
10919
|
} | {
|
10143
10920
|
type: "DATA";
|
@@ -10196,6 +10973,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
10196
10973
|
description: string;
|
10197
10974
|
defaultMessage: string;
|
10198
10975
|
} | undefined;
|
10976
|
+
helperText?: {
|
10977
|
+
id: string;
|
10978
|
+
description: string;
|
10979
|
+
defaultMessage: string;
|
10980
|
+
} | undefined;
|
10199
10981
|
hideLabel?: boolean | undefined;
|
10200
10982
|
})[];
|
10201
10983
|
conditional?: import(".").JSONSchema | undefined;
|