@opencrvs/toolkit 1.8.0-rc.f9d33b7 → 1.8.0-rc.f9fb039
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 +920 -287
- package/dist/commons/events/ActionConfig.d.ts +12137 -1475
- package/dist/commons/events/ActionDocument.d.ts +433 -413
- package/dist/commons/events/ActionInput.d.ts +180 -180
- package/dist/commons/events/AdvancedSearchConfig.d.ts +212 -48
- package/dist/commons/events/Draft.d.ts +24 -26
- package/dist/commons/events/EventConfig.d.ts +6173 -1007
- package/dist/commons/events/EventDocument.d.ts +247 -312
- package/dist/commons/events/EventIndex.d.ts +710 -45
- package/dist/commons/events/EventMetadata.d.ts +263 -11
- package/dist/commons/events/FieldConfig.d.ts +850 -69
- package/dist/commons/events/FieldType.d.ts +3 -2
- package/dist/commons/events/FieldTypeMapping.d.ts +11 -4
- package/dist/commons/events/FieldValue.d.ts +6 -3
- package/dist/commons/events/FormConfig.d.ts +5749 -925
- package/dist/commons/events/PageConfig.d.ts +1191 -3
- package/dist/commons/events/WorkqueueConfig.d.ts +1362 -8
- package/dist/commons/events/defineConfig.d.ts +533 -3
- package/dist/commons/events/event.d.ts +37 -8
- package/dist/commons/events/field.d.ts +19 -10
- package/dist/commons/events/test.utils.d.ts +7 -7
- package/dist/commons/events/utils.d.ts +308 -21
- package/dist/events/index.js +1016 -724
- 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,153 @@ 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;
|
917
|
+
hideLabel?: boolean | undefined;
|
918
|
+
configuration?: {
|
919
|
+
notice?: {
|
920
|
+
id: string;
|
921
|
+
description: string;
|
922
|
+
defaultMessage: string;
|
923
|
+
} | undefined;
|
924
|
+
} | undefined;
|
925
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
926
|
+
id: z.ZodString;
|
927
|
+
defaultValue: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
928
|
+
parent: z.ZodOptional<z.ZodObject<{
|
929
|
+
_fieldId: z.ZodOptional<z.ZodString>;
|
930
|
+
}, "strip", z.ZodTypeAny, {
|
931
|
+
_fieldId?: string | undefined;
|
932
|
+
}, {
|
933
|
+
_fieldId?: string | undefined;
|
934
|
+
}>>;
|
935
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
936
|
+
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
937
|
+
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
938
|
+
id: string;
|
939
|
+
description: string;
|
940
|
+
defaultMessage: string;
|
941
|
+
}>>;
|
942
|
+
validation: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodObject<{
|
943
|
+
validator: z.ZodType<import(".").JSONSchema, z.ZodTypeDef, import(".").JSONSchema>;
|
944
|
+
message: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
945
|
+
id: string;
|
946
|
+
description: string;
|
947
|
+
defaultMessage: string;
|
948
|
+
}>;
|
949
|
+
}, "strip", z.ZodTypeAny, {
|
950
|
+
message: TranslationConfig;
|
951
|
+
validator: import(".").JSONSchema;
|
952
|
+
}, {
|
953
|
+
message: {
|
954
|
+
id: string;
|
955
|
+
description: string;
|
956
|
+
defaultMessage: string;
|
957
|
+
};
|
958
|
+
validator: import(".").JSONSchema;
|
959
|
+
}>, "many">>>;
|
960
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
961
|
+
id: string;
|
962
|
+
description: string;
|
963
|
+
defaultMessage: string;
|
964
|
+
}>;
|
965
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
966
|
+
id: string;
|
967
|
+
description: string;
|
968
|
+
defaultMessage: string;
|
969
|
+
}>>;
|
970
|
+
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
971
|
+
}, {
|
972
|
+
type: z.ZodLiteral<"DATE_RANGE">;
|
973
|
+
defaultValue: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>>;
|
974
|
+
configuration: z.ZodOptional<z.ZodObject<{
|
975
|
+
notice: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
976
|
+
id: string;
|
977
|
+
description: string;
|
978
|
+
defaultMessage: string;
|
979
|
+
}>>;
|
980
|
+
}, "strip", z.ZodTypeAny, {
|
981
|
+
notice?: TranslationConfig | undefined;
|
982
|
+
}, {
|
983
|
+
notice?: {
|
984
|
+
id: string;
|
985
|
+
description: string;
|
986
|
+
defaultMessage: string;
|
987
|
+
} | undefined;
|
988
|
+
}>>;
|
989
|
+
}>, "strip", z.ZodTypeAny, {
|
990
|
+
type: "DATE_RANGE";
|
991
|
+
id: string;
|
992
|
+
label: TranslationConfig;
|
993
|
+
parent?: {
|
994
|
+
_fieldId?: string | undefined;
|
995
|
+
} | undefined;
|
996
|
+
validation?: {
|
997
|
+
message: TranslationConfig;
|
998
|
+
validator: import(".").JSONSchema;
|
999
|
+
}[] | undefined;
|
1000
|
+
required?: boolean | undefined;
|
1001
|
+
defaultValue?: string | [string, string] | undefined;
|
1002
|
+
conditionals?: ({
|
1003
|
+
type: "SHOW";
|
1004
|
+
conditional: import(".").JSONSchema;
|
1005
|
+
} | {
|
1006
|
+
type: "ENABLE";
|
1007
|
+
conditional: import(".").JSONSchema;
|
1008
|
+
} | {
|
1009
|
+
type: "DISPLAY_ON_REVIEW";
|
1010
|
+
conditional: import(".").JSONSchema;
|
1011
|
+
})[] | undefined;
|
1012
|
+
placeholder?: TranslationConfig | undefined;
|
1013
|
+
helperText?: TranslationConfig | undefined;
|
1014
|
+
hideLabel?: boolean | undefined;
|
1015
|
+
configuration?: {
|
1016
|
+
notice?: TranslationConfig | undefined;
|
1017
|
+
} | undefined;
|
1018
|
+
}, {
|
1019
|
+
type: "DATE_RANGE";
|
1020
|
+
id: string;
|
1021
|
+
label: {
|
1022
|
+
id: string;
|
1023
|
+
description: string;
|
1024
|
+
defaultMessage: string;
|
1025
|
+
};
|
1026
|
+
parent?: {
|
1027
|
+
_fieldId?: string | undefined;
|
1028
|
+
} | undefined;
|
1029
|
+
validation?: {
|
1030
|
+
message: {
|
1031
|
+
id: string;
|
1032
|
+
description: string;
|
1033
|
+
defaultMessage: string;
|
1034
|
+
};
|
1035
|
+
validator: import(".").JSONSchema;
|
1036
|
+
}[] | undefined;
|
1037
|
+
required?: boolean | undefined;
|
1038
|
+
defaultValue?: string | [string, string] | undefined;
|
1039
|
+
conditionals?: ({
|
1040
|
+
type: "SHOW";
|
1041
|
+
conditional: import(".").JSONSchema;
|
1042
|
+
} | {
|
1043
|
+
type: "ENABLE";
|
1044
|
+
conditional: import(".").JSONSchema;
|
1045
|
+
} | {
|
1046
|
+
type: "DISPLAY_ON_REVIEW";
|
1047
|
+
conditional: import(".").JSONSchema;
|
1048
|
+
})[] | undefined;
|
1049
|
+
placeholder?: {
|
1050
|
+
id: string;
|
1051
|
+
description: string;
|
1052
|
+
defaultMessage: string;
|
1053
|
+
} | undefined;
|
1054
|
+
helperText?: {
|
1055
|
+
id: string;
|
1056
|
+
description: string;
|
1057
|
+
defaultMessage: string;
|
1058
|
+
} | undefined;
|
862
1059
|
hideLabel?: boolean | undefined;
|
863
1060
|
configuration?: {
|
864
1061
|
notice?: {
|
@@ -907,6 +1104,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
907
1104
|
description: string;
|
908
1105
|
defaultMessage: string;
|
909
1106
|
}>;
|
1107
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
1108
|
+
id: string;
|
1109
|
+
description: string;
|
1110
|
+
defaultMessage: string;
|
1111
|
+
}>>;
|
910
1112
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
911
1113
|
}, {
|
912
1114
|
type: z.ZodLiteral<"PARAGRAPH">;
|
@@ -957,6 +1159,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
957
1159
|
conditional: import(".").JSONSchema;
|
958
1160
|
})[] | undefined;
|
959
1161
|
placeholder?: TranslationConfig | undefined;
|
1162
|
+
helperText?: TranslationConfig | undefined;
|
960
1163
|
hideLabel?: boolean | undefined;
|
961
1164
|
}, {
|
962
1165
|
type: "PARAGRAPH";
|
@@ -994,6 +1197,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
994
1197
|
description: string;
|
995
1198
|
defaultMessage: string;
|
996
1199
|
} | undefined;
|
1200
|
+
helperText?: {
|
1201
|
+
id: string;
|
1202
|
+
description: string;
|
1203
|
+
defaultMessage: string;
|
1204
|
+
} | undefined;
|
997
1205
|
hideLabel?: boolean | undefined;
|
998
1206
|
configuration?: {
|
999
1207
|
styles?: {
|
@@ -1040,6 +1248,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
1040
1248
|
description: string;
|
1041
1249
|
defaultMessage: string;
|
1042
1250
|
}>;
|
1251
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
1252
|
+
id: string;
|
1253
|
+
description: string;
|
1254
|
+
defaultMessage: string;
|
1255
|
+
}>>;
|
1043
1256
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
1044
1257
|
}, {
|
1045
1258
|
type: z.ZodLiteral<"RADIO_GROUP">;
|
@@ -1107,6 +1320,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
1107
1320
|
conditional: import(".").JSONSchema;
|
1108
1321
|
})[] | undefined;
|
1109
1322
|
placeholder?: TranslationConfig | undefined;
|
1323
|
+
helperText?: TranslationConfig | undefined;
|
1110
1324
|
hideLabel?: boolean | undefined;
|
1111
1325
|
configuration?: {
|
1112
1326
|
styles?: {
|
@@ -1157,6 +1371,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
1157
1371
|
description: string;
|
1158
1372
|
defaultMessage: string;
|
1159
1373
|
} | undefined;
|
1374
|
+
helperText?: {
|
1375
|
+
id: string;
|
1376
|
+
description: string;
|
1377
|
+
defaultMessage: string;
|
1378
|
+
} | undefined;
|
1160
1379
|
hideLabel?: boolean | undefined;
|
1161
1380
|
configuration?: {
|
1162
1381
|
styles?: {
|
@@ -1203,6 +1422,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
1203
1422
|
description: string;
|
1204
1423
|
defaultMessage: string;
|
1205
1424
|
}>;
|
1425
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
1426
|
+
id: string;
|
1427
|
+
description: string;
|
1428
|
+
defaultMessage: string;
|
1429
|
+
}>>;
|
1206
1430
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
1207
1431
|
}, {
|
1208
1432
|
type: z.ZodLiteral<"BULLET_LIST">;
|
@@ -1259,6 +1483,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
1259
1483
|
conditional: import(".").JSONSchema;
|
1260
1484
|
})[] | undefined;
|
1261
1485
|
placeholder?: TranslationConfig | undefined;
|
1486
|
+
helperText?: TranslationConfig | undefined;
|
1262
1487
|
hideLabel?: boolean | undefined;
|
1263
1488
|
}, {
|
1264
1489
|
type: "BULLET_LIST";
|
@@ -1301,6 +1526,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
1301
1526
|
description: string;
|
1302
1527
|
defaultMessage: string;
|
1303
1528
|
} | undefined;
|
1529
|
+
helperText?: {
|
1530
|
+
id: string;
|
1531
|
+
description: string;
|
1532
|
+
defaultMessage: string;
|
1533
|
+
} | undefined;
|
1304
1534
|
hideLabel?: boolean | undefined;
|
1305
1535
|
configuration?: {
|
1306
1536
|
styles?: {
|
@@ -1347,6 +1577,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
1347
1577
|
description: string;
|
1348
1578
|
defaultMessage: string;
|
1349
1579
|
}>;
|
1580
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
1581
|
+
id: string;
|
1582
|
+
description: string;
|
1583
|
+
defaultMessage: string;
|
1584
|
+
}>>;
|
1350
1585
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
1351
1586
|
}, {
|
1352
1587
|
type: z.ZodLiteral<"PAGE_HEADER">;
|
@@ -1375,6 +1610,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
1375
1610
|
conditional: import(".").JSONSchema;
|
1376
1611
|
})[] | undefined;
|
1377
1612
|
placeholder?: TranslationConfig | undefined;
|
1613
|
+
helperText?: TranslationConfig | undefined;
|
1378
1614
|
hideLabel?: boolean | undefined;
|
1379
1615
|
}, {
|
1380
1616
|
type: "PAGE_HEADER";
|
@@ -1412,6 +1648,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
1412
1648
|
description: string;
|
1413
1649
|
defaultMessage: string;
|
1414
1650
|
} | undefined;
|
1651
|
+
helperText?: {
|
1652
|
+
id: string;
|
1653
|
+
description: string;
|
1654
|
+
defaultMessage: string;
|
1655
|
+
} | undefined;
|
1415
1656
|
hideLabel?: boolean | undefined;
|
1416
1657
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
1417
1658
|
id: z.ZodString;
|
@@ -1453,6 +1694,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
1453
1694
|
description: string;
|
1454
1695
|
defaultMessage: string;
|
1455
1696
|
}>;
|
1697
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
1698
|
+
id: string;
|
1699
|
+
description: string;
|
1700
|
+
defaultMessage: string;
|
1701
|
+
}>>;
|
1456
1702
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
1457
1703
|
}, {
|
1458
1704
|
type: z.ZodLiteral<"SELECT">;
|
@@ -1503,6 +1749,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
1503
1749
|
conditional: import(".").JSONSchema;
|
1504
1750
|
})[] | undefined;
|
1505
1751
|
placeholder?: TranslationConfig | undefined;
|
1752
|
+
helperText?: TranslationConfig | undefined;
|
1506
1753
|
hideLabel?: boolean | undefined;
|
1507
1754
|
}, {
|
1508
1755
|
type: "SELECT";
|
@@ -1548,6 +1795,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
1548
1795
|
description: string;
|
1549
1796
|
defaultMessage: string;
|
1550
1797
|
} | undefined;
|
1798
|
+
helperText?: {
|
1799
|
+
id: string;
|
1800
|
+
description: string;
|
1801
|
+
defaultMessage: string;
|
1802
|
+
} | undefined;
|
1551
1803
|
hideLabel?: boolean | undefined;
|
1552
1804
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
1553
1805
|
id: z.ZodString;
|
@@ -1589,6 +1841,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
1589
1841
|
description: string;
|
1590
1842
|
defaultMessage: string;
|
1591
1843
|
}>;
|
1844
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
1845
|
+
id: string;
|
1846
|
+
description: string;
|
1847
|
+
defaultMessage: string;
|
1848
|
+
}>>;
|
1592
1849
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
1593
1850
|
}, {
|
1594
1851
|
type: z.ZodLiteral<"CHECKBOX">;
|
@@ -1617,6 +1874,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
1617
1874
|
conditional: import(".").JSONSchema;
|
1618
1875
|
})[] | undefined;
|
1619
1876
|
placeholder?: TranslationConfig | undefined;
|
1877
|
+
helperText?: TranslationConfig | undefined;
|
1620
1878
|
hideLabel?: boolean | undefined;
|
1621
1879
|
}, {
|
1622
1880
|
type: "CHECKBOX";
|
@@ -1654,6 +1912,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
1654
1912
|
description: string;
|
1655
1913
|
defaultMessage: string;
|
1656
1914
|
} | undefined;
|
1915
|
+
helperText?: {
|
1916
|
+
id: string;
|
1917
|
+
description: string;
|
1918
|
+
defaultMessage: string;
|
1919
|
+
} | undefined;
|
1657
1920
|
hideLabel?: boolean | undefined;
|
1658
1921
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
1659
1922
|
id: z.ZodString;
|
@@ -1695,6 +1958,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
1695
1958
|
description: string;
|
1696
1959
|
defaultMessage: string;
|
1697
1960
|
}>;
|
1961
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
1962
|
+
id: string;
|
1963
|
+
description: string;
|
1964
|
+
defaultMessage: string;
|
1965
|
+
}>>;
|
1698
1966
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
1699
1967
|
}, {
|
1700
1968
|
type: z.ZodLiteral<"FILE">;
|
@@ -1764,6 +2032,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
1764
2032
|
conditional: import(".").JSONSchema;
|
1765
2033
|
})[] | undefined;
|
1766
2034
|
placeholder?: TranslationConfig | undefined;
|
2035
|
+
helperText?: TranslationConfig | undefined;
|
1767
2036
|
hideLabel?: boolean | undefined;
|
1768
2037
|
}, {
|
1769
2038
|
type: "FILE";
|
@@ -1801,6 +2070,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
1801
2070
|
description: string;
|
1802
2071
|
defaultMessage: string;
|
1803
2072
|
} | undefined;
|
2073
|
+
helperText?: {
|
2074
|
+
id: string;
|
2075
|
+
description: string;
|
2076
|
+
defaultMessage: string;
|
2077
|
+
} | undefined;
|
1804
2078
|
hideLabel?: boolean | undefined;
|
1805
2079
|
configuration?: {
|
1806
2080
|
maxFileSize?: number | undefined;
|
@@ -1854,6 +2128,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
1854
2128
|
description: string;
|
1855
2129
|
defaultMessage: string;
|
1856
2130
|
}>;
|
2131
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2132
|
+
id: string;
|
2133
|
+
description: string;
|
2134
|
+
defaultMessage: string;
|
2135
|
+
}>>;
|
1857
2136
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
1858
2137
|
}, {
|
1859
2138
|
type: z.ZodLiteral<"COUNTRY">;
|
@@ -1882,6 +2161,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
1882
2161
|
conditional: import(".").JSONSchema;
|
1883
2162
|
})[] | undefined;
|
1884
2163
|
placeholder?: TranslationConfig | undefined;
|
2164
|
+
helperText?: TranslationConfig | undefined;
|
1885
2165
|
hideLabel?: boolean | undefined;
|
1886
2166
|
}, {
|
1887
2167
|
type: "COUNTRY";
|
@@ -1919,6 +2199,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
1919
2199
|
description: string;
|
1920
2200
|
defaultMessage: string;
|
1921
2201
|
} | undefined;
|
2202
|
+
helperText?: {
|
2203
|
+
id: string;
|
2204
|
+
description: string;
|
2205
|
+
defaultMessage: string;
|
2206
|
+
} | undefined;
|
1922
2207
|
hideLabel?: boolean | undefined;
|
1923
2208
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
1924
2209
|
id: z.ZodString;
|
@@ -1960,6 +2245,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
1960
2245
|
description: string;
|
1961
2246
|
defaultMessage: string;
|
1962
2247
|
}>;
|
2248
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2249
|
+
id: string;
|
2250
|
+
description: string;
|
2251
|
+
defaultMessage: string;
|
2252
|
+
}>>;
|
1963
2253
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
1964
2254
|
}, {
|
1965
2255
|
type: z.ZodLiteral<"ADMINISTRATIVE_AREA">;
|
@@ -2014,6 +2304,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
2014
2304
|
conditional: import(".").JSONSchema;
|
2015
2305
|
})[] | undefined;
|
2016
2306
|
placeholder?: TranslationConfig | undefined;
|
2307
|
+
helperText?: TranslationConfig | undefined;
|
2017
2308
|
hideLabel?: boolean | undefined;
|
2018
2309
|
}, {
|
2019
2310
|
type: "ADMINISTRATIVE_AREA";
|
@@ -2057,6 +2348,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
2057
2348
|
description: string;
|
2058
2349
|
defaultMessage: string;
|
2059
2350
|
} | undefined;
|
2351
|
+
helperText?: {
|
2352
|
+
id: string;
|
2353
|
+
description: string;
|
2354
|
+
defaultMessage: string;
|
2355
|
+
} | undefined;
|
2060
2356
|
hideLabel?: boolean | undefined;
|
2061
2357
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
2062
2358
|
id: z.ZodString;
|
@@ -2098,6 +2394,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
2098
2394
|
description: string;
|
2099
2395
|
defaultMessage: string;
|
2100
2396
|
}>;
|
2397
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2398
|
+
id: string;
|
2399
|
+
description: string;
|
2400
|
+
defaultMessage: string;
|
2401
|
+
}>>;
|
2101
2402
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2102
2403
|
}, {
|
2103
2404
|
type: z.ZodLiteral<"DIVIDER">;
|
@@ -2125,6 +2426,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
2125
2426
|
conditional: import(".").JSONSchema;
|
2126
2427
|
})[] | undefined;
|
2127
2428
|
placeholder?: TranslationConfig | undefined;
|
2429
|
+
helperText?: TranslationConfig | undefined;
|
2128
2430
|
hideLabel?: boolean | undefined;
|
2129
2431
|
}, {
|
2130
2432
|
type: "DIVIDER";
|
@@ -2162,6 +2464,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
2162
2464
|
description: string;
|
2163
2465
|
defaultMessage: string;
|
2164
2466
|
} | undefined;
|
2467
|
+
helperText?: {
|
2468
|
+
id: string;
|
2469
|
+
description: string;
|
2470
|
+
defaultMessage: string;
|
2471
|
+
} | undefined;
|
2165
2472
|
hideLabel?: boolean | undefined;
|
2166
2473
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
2167
2474
|
id: z.ZodString;
|
@@ -2203,9 +2510,14 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
2203
2510
|
description: string;
|
2204
2511
|
defaultMessage: string;
|
2205
2512
|
}>;
|
2206
|
-
|
2207
|
-
|
2208
|
-
|
2513
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2514
|
+
id: string;
|
2515
|
+
description: string;
|
2516
|
+
defaultMessage: string;
|
2517
|
+
}>>;
|
2518
|
+
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2519
|
+
}, {
|
2520
|
+
type: z.ZodLiteral<"LOCATION">;
|
2209
2521
|
defaultValue: z.ZodOptional<z.ZodString>;
|
2210
2522
|
}>, "strip", z.ZodTypeAny, {
|
2211
2523
|
type: "LOCATION";
|
@@ -2231,6 +2543,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
2231
2543
|
conditional: import(".").JSONSchema;
|
2232
2544
|
})[] | undefined;
|
2233
2545
|
placeholder?: TranslationConfig | undefined;
|
2546
|
+
helperText?: TranslationConfig | undefined;
|
2234
2547
|
hideLabel?: boolean | undefined;
|
2235
2548
|
}, {
|
2236
2549
|
type: "LOCATION";
|
@@ -2268,6 +2581,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
2268
2581
|
description: string;
|
2269
2582
|
defaultMessage: string;
|
2270
2583
|
} | undefined;
|
2584
|
+
helperText?: {
|
2585
|
+
id: string;
|
2586
|
+
description: string;
|
2587
|
+
defaultMessage: string;
|
2588
|
+
} | undefined;
|
2271
2589
|
hideLabel?: boolean | undefined;
|
2272
2590
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
2273
2591
|
id: z.ZodString;
|
@@ -2309,6 +2627,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
2309
2627
|
description: string;
|
2310
2628
|
defaultMessage: string;
|
2311
2629
|
}>;
|
2630
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2631
|
+
id: string;
|
2632
|
+
description: string;
|
2633
|
+
defaultMessage: string;
|
2634
|
+
}>>;
|
2312
2635
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2313
2636
|
}, {
|
2314
2637
|
type: z.ZodLiteral<"FACILITY">;
|
@@ -2337,6 +2660,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
2337
2660
|
conditional: import(".").JSONSchema;
|
2338
2661
|
})[] | undefined;
|
2339
2662
|
placeholder?: TranslationConfig | undefined;
|
2663
|
+
helperText?: TranslationConfig | undefined;
|
2340
2664
|
hideLabel?: boolean | undefined;
|
2341
2665
|
}, {
|
2342
2666
|
type: "FACILITY";
|
@@ -2374,6 +2698,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
2374
2698
|
description: string;
|
2375
2699
|
defaultMessage: string;
|
2376
2700
|
} | undefined;
|
2701
|
+
helperText?: {
|
2702
|
+
id: string;
|
2703
|
+
description: string;
|
2704
|
+
defaultMessage: string;
|
2705
|
+
} | undefined;
|
2377
2706
|
hideLabel?: boolean | undefined;
|
2378
2707
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
2379
2708
|
id: z.ZodString;
|
@@ -2415,6 +2744,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
2415
2744
|
description: string;
|
2416
2745
|
defaultMessage: string;
|
2417
2746
|
}>;
|
2747
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2748
|
+
id: string;
|
2749
|
+
description: string;
|
2750
|
+
defaultMessage: string;
|
2751
|
+
}>>;
|
2418
2752
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2419
2753
|
}, {
|
2420
2754
|
type: z.ZodLiteral<"OFFICE">;
|
@@ -2443,6 +2777,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
2443
2777
|
conditional: import(".").JSONSchema;
|
2444
2778
|
})[] | undefined;
|
2445
2779
|
placeholder?: TranslationConfig | undefined;
|
2780
|
+
helperText?: TranslationConfig | undefined;
|
2446
2781
|
hideLabel?: boolean | undefined;
|
2447
2782
|
}, {
|
2448
2783
|
type: "OFFICE";
|
@@ -2480,6 +2815,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
2480
2815
|
description: string;
|
2481
2816
|
defaultMessage: string;
|
2482
2817
|
} | undefined;
|
2818
|
+
helperText?: {
|
2819
|
+
id: string;
|
2820
|
+
description: string;
|
2821
|
+
defaultMessage: string;
|
2822
|
+
} | undefined;
|
2483
2823
|
hideLabel?: boolean | undefined;
|
2484
2824
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
2485
2825
|
id: z.ZodString;
|
@@ -2521,6 +2861,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
2521
2861
|
description: string;
|
2522
2862
|
defaultMessage: string;
|
2523
2863
|
}>;
|
2864
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2865
|
+
id: string;
|
2866
|
+
description: string;
|
2867
|
+
defaultMessage: string;
|
2868
|
+
}>>;
|
2524
2869
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2525
2870
|
}, {
|
2526
2871
|
type: z.ZodLiteral<"SIGNATURE">;
|
@@ -2568,6 +2913,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
2568
2913
|
conditional: import(".").JSONSchema;
|
2569
2914
|
})[] | undefined;
|
2570
2915
|
placeholder?: TranslationConfig | undefined;
|
2916
|
+
helperText?: TranslationConfig | undefined;
|
2571
2917
|
hideLabel?: boolean | undefined;
|
2572
2918
|
}, {
|
2573
2919
|
type: "SIGNATURE";
|
@@ -2610,6 +2956,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
2610
2956
|
description: string;
|
2611
2957
|
defaultMessage: string;
|
2612
2958
|
} | undefined;
|
2959
|
+
helperText?: {
|
2960
|
+
id: string;
|
2961
|
+
description: string;
|
2962
|
+
defaultMessage: string;
|
2963
|
+
} | undefined;
|
2613
2964
|
hideLabel?: boolean | undefined;
|
2614
2965
|
configuration?: {
|
2615
2966
|
maxFileSize?: number | undefined;
|
@@ -2655,6 +3006,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
2655
3006
|
description: string;
|
2656
3007
|
defaultMessage: string;
|
2657
3008
|
}>;
|
3009
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
3010
|
+
id: string;
|
3011
|
+
description: string;
|
3012
|
+
defaultMessage: string;
|
3013
|
+
}>>;
|
2658
3014
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2659
3015
|
}, {
|
2660
3016
|
type: z.ZodLiteral<"EMAIL">;
|
@@ -2690,6 +3046,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
2690
3046
|
conditional: import(".").JSONSchema;
|
2691
3047
|
})[] | undefined;
|
2692
3048
|
placeholder?: TranslationConfig | undefined;
|
3049
|
+
helperText?: TranslationConfig | undefined;
|
2693
3050
|
hideLabel?: boolean | undefined;
|
2694
3051
|
configuration?: {
|
2695
3052
|
maxLength?: number | undefined;
|
@@ -2730,6 +3087,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
2730
3087
|
description: string;
|
2731
3088
|
defaultMessage: string;
|
2732
3089
|
} | undefined;
|
3090
|
+
helperText?: {
|
3091
|
+
id: string;
|
3092
|
+
description: string;
|
3093
|
+
defaultMessage: string;
|
3094
|
+
} | undefined;
|
2733
3095
|
hideLabel?: boolean | undefined;
|
2734
3096
|
configuration?: {
|
2735
3097
|
maxLength?: number | undefined;
|
@@ -2774,6 +3136,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
2774
3136
|
description: string;
|
2775
3137
|
defaultMessage: string;
|
2776
3138
|
}>;
|
3139
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
3140
|
+
id: string;
|
3141
|
+
description: string;
|
3142
|
+
defaultMessage: string;
|
3143
|
+
}>>;
|
2777
3144
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2778
3145
|
}, {
|
2779
3146
|
type: z.ZodLiteral<"FILE_WITH_OPTIONS">;
|
@@ -2837,6 +3204,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
2837
3204
|
conditional: import(".").JSONSchema;
|
2838
3205
|
})[] | undefined;
|
2839
3206
|
placeholder?: TranslationConfig | undefined;
|
3207
|
+
helperText?: TranslationConfig | undefined;
|
2840
3208
|
hideLabel?: boolean | undefined;
|
2841
3209
|
}, {
|
2842
3210
|
type: "FILE_WITH_OPTIONS";
|
@@ -2882,6 +3250,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
2882
3250
|
description: string;
|
2883
3251
|
defaultMessage: string;
|
2884
3252
|
} | undefined;
|
3253
|
+
helperText?: {
|
3254
|
+
id: string;
|
3255
|
+
description: string;
|
3256
|
+
defaultMessage: string;
|
3257
|
+
} | undefined;
|
2885
3258
|
hideLabel?: boolean | undefined;
|
2886
3259
|
configuration?: {
|
2887
3260
|
maxFileSize?: number | undefined;
|
@@ -2927,6 +3300,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
2927
3300
|
description: string;
|
2928
3301
|
defaultMessage: string;
|
2929
3302
|
}>;
|
3303
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
3304
|
+
id: string;
|
3305
|
+
description: string;
|
3306
|
+
defaultMessage: string;
|
3307
|
+
}>>;
|
2930
3308
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2931
3309
|
}, {
|
2932
3310
|
type: z.ZodLiteral<"DATA">;
|
@@ -3030,6 +3408,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
3030
3408
|
conditional: import(".").JSONSchema;
|
3031
3409
|
})[] | undefined;
|
3032
3410
|
placeholder?: TranslationConfig | undefined;
|
3411
|
+
helperText?: TranslationConfig | undefined;
|
3033
3412
|
hideLabel?: boolean | undefined;
|
3034
3413
|
}, {
|
3035
3414
|
type: "DATA";
|
@@ -3088,6 +3467,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
3088
3467
|
description: string;
|
3089
3468
|
defaultMessage: string;
|
3090
3469
|
} | undefined;
|
3470
|
+
helperText?: {
|
3471
|
+
id: string;
|
3472
|
+
description: string;
|
3473
|
+
defaultMessage: string;
|
3474
|
+
} | undefined;
|
3091
3475
|
hideLabel?: boolean | undefined;
|
3092
3476
|
}>]>, "many">;
|
3093
3477
|
conditional: z.ZodOptional<z.ZodType<import(".").JSONSchema, z.ZodTypeDef, import(".").JSONSchema>>;
|
@@ -3121,6 +3505,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
3121
3505
|
conditional: import(".").JSONSchema;
|
3122
3506
|
})[] | undefined;
|
3123
3507
|
placeholder?: TranslationConfig | undefined;
|
3508
|
+
helperText?: TranslationConfig | undefined;
|
3124
3509
|
hideLabel?: boolean | undefined;
|
3125
3510
|
} | {
|
3126
3511
|
type: "TEXT";
|
@@ -3146,6 +3531,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
3146
3531
|
conditional: import(".").JSONSchema;
|
3147
3532
|
})[] | undefined;
|
3148
3533
|
placeholder?: TranslationConfig | undefined;
|
3534
|
+
helperText?: TranslationConfig | undefined;
|
3149
3535
|
hideLabel?: boolean | undefined;
|
3150
3536
|
configuration?: {
|
3151
3537
|
type?: "text" | "password" | undefined;
|
@@ -3177,6 +3563,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
3177
3563
|
conditional: import(".").JSONSchema;
|
3178
3564
|
})[] | undefined;
|
3179
3565
|
placeholder?: TranslationConfig | undefined;
|
3566
|
+
helperText?: TranslationConfig | undefined;
|
3180
3567
|
hideLabel?: boolean | undefined;
|
3181
3568
|
configuration?: {
|
3182
3569
|
prefix?: TranslationConfig | undefined;
|
@@ -3208,6 +3595,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
3208
3595
|
conditional: import(".").JSONSchema;
|
3209
3596
|
})[] | undefined;
|
3210
3597
|
placeholder?: TranslationConfig | undefined;
|
3598
|
+
helperText?: TranslationConfig | undefined;
|
3211
3599
|
hideLabel?: boolean | undefined;
|
3212
3600
|
configuration?: {
|
3213
3601
|
maxLength?: number | undefined;
|
@@ -3245,6 +3633,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
3245
3633
|
conditional: import(".").JSONSchema;
|
3246
3634
|
})[] | undefined;
|
3247
3635
|
placeholder?: TranslationConfig | undefined;
|
3636
|
+
helperText?: TranslationConfig | undefined;
|
3248
3637
|
hideLabel?: boolean | undefined;
|
3249
3638
|
} | {
|
3250
3639
|
type: "EMAIL";
|
@@ -3270,6 +3659,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
3270
3659
|
conditional: import(".").JSONSchema;
|
3271
3660
|
})[] | undefined;
|
3272
3661
|
placeholder?: TranslationConfig | undefined;
|
3662
|
+
helperText?: TranslationConfig | undefined;
|
3273
3663
|
hideLabel?: boolean | undefined;
|
3274
3664
|
configuration?: {
|
3275
3665
|
maxLength?: number | undefined;
|
@@ -3298,6 +3688,36 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
3298
3688
|
conditional: import(".").JSONSchema;
|
3299
3689
|
})[] | undefined;
|
3300
3690
|
placeholder?: TranslationConfig | undefined;
|
3691
|
+
helperText?: TranslationConfig | undefined;
|
3692
|
+
hideLabel?: boolean | undefined;
|
3693
|
+
configuration?: {
|
3694
|
+
notice?: TranslationConfig | undefined;
|
3695
|
+
} | undefined;
|
3696
|
+
} | {
|
3697
|
+
type: "DATE_RANGE";
|
3698
|
+
id: string;
|
3699
|
+
label: TranslationConfig;
|
3700
|
+
parent?: {
|
3701
|
+
_fieldId?: string | undefined;
|
3702
|
+
} | undefined;
|
3703
|
+
validation?: {
|
3704
|
+
message: TranslationConfig;
|
3705
|
+
validator: import(".").JSONSchema;
|
3706
|
+
}[] | undefined;
|
3707
|
+
required?: boolean | undefined;
|
3708
|
+
defaultValue?: string | [string, string] | undefined;
|
3709
|
+
conditionals?: ({
|
3710
|
+
type: "SHOW";
|
3711
|
+
conditional: import(".").JSONSchema;
|
3712
|
+
} | {
|
3713
|
+
type: "ENABLE";
|
3714
|
+
conditional: import(".").JSONSchema;
|
3715
|
+
} | {
|
3716
|
+
type: "DISPLAY_ON_REVIEW";
|
3717
|
+
conditional: import(".").JSONSchema;
|
3718
|
+
})[] | undefined;
|
3719
|
+
placeholder?: TranslationConfig | undefined;
|
3720
|
+
helperText?: TranslationConfig | undefined;
|
3301
3721
|
hideLabel?: boolean | undefined;
|
3302
3722
|
configuration?: {
|
3303
3723
|
notice?: TranslationConfig | undefined;
|
@@ -3331,6 +3751,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
3331
3751
|
conditional: import(".").JSONSchema;
|
3332
3752
|
})[] | undefined;
|
3333
3753
|
placeholder?: TranslationConfig | undefined;
|
3754
|
+
helperText?: TranslationConfig | undefined;
|
3334
3755
|
hideLabel?: boolean | undefined;
|
3335
3756
|
} | {
|
3336
3757
|
type: "PAGE_HEADER";
|
@@ -3356,6 +3777,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
3356
3777
|
conditional: import(".").JSONSchema;
|
3357
3778
|
})[] | undefined;
|
3358
3779
|
placeholder?: TranslationConfig | undefined;
|
3780
|
+
helperText?: TranslationConfig | undefined;
|
3359
3781
|
hideLabel?: boolean | undefined;
|
3360
3782
|
} | {
|
3361
3783
|
type: "FILE";
|
@@ -3389,6 +3811,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
3389
3811
|
conditional: import(".").JSONSchema;
|
3390
3812
|
})[] | undefined;
|
3391
3813
|
placeholder?: TranslationConfig | undefined;
|
3814
|
+
helperText?: TranslationConfig | undefined;
|
3392
3815
|
hideLabel?: boolean | undefined;
|
3393
3816
|
} | {
|
3394
3817
|
type: "RADIO_GROUP";
|
@@ -3418,6 +3841,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
3418
3841
|
conditional: import(".").JSONSchema;
|
3419
3842
|
})[] | undefined;
|
3420
3843
|
placeholder?: TranslationConfig | undefined;
|
3844
|
+
helperText?: TranslationConfig | undefined;
|
3421
3845
|
hideLabel?: boolean | undefined;
|
3422
3846
|
configuration?: {
|
3423
3847
|
styles?: {
|
@@ -3454,6 +3878,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
3454
3878
|
conditional: import(".").JSONSchema;
|
3455
3879
|
})[] | undefined;
|
3456
3880
|
placeholder?: TranslationConfig | undefined;
|
3881
|
+
helperText?: TranslationConfig | undefined;
|
3457
3882
|
hideLabel?: boolean | undefined;
|
3458
3883
|
} | {
|
3459
3884
|
type: "SELECT";
|
@@ -3483,6 +3908,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
3483
3908
|
conditional: import(".").JSONSchema;
|
3484
3909
|
})[] | undefined;
|
3485
3910
|
placeholder?: TranslationConfig | undefined;
|
3911
|
+
helperText?: TranslationConfig | undefined;
|
3486
3912
|
hideLabel?: boolean | undefined;
|
3487
3913
|
} | {
|
3488
3914
|
type: "CHECKBOX";
|
@@ -3508,6 +3934,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
3508
3934
|
conditional: import(".").JSONSchema;
|
3509
3935
|
})[] | undefined;
|
3510
3936
|
placeholder?: TranslationConfig | undefined;
|
3937
|
+
helperText?: TranslationConfig | undefined;
|
3511
3938
|
hideLabel?: boolean | undefined;
|
3512
3939
|
} | {
|
3513
3940
|
type: "COUNTRY";
|
@@ -3533,6 +3960,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
3533
3960
|
conditional: import(".").JSONSchema;
|
3534
3961
|
})[] | undefined;
|
3535
3962
|
placeholder?: TranslationConfig | undefined;
|
3963
|
+
helperText?: TranslationConfig | undefined;
|
3536
3964
|
hideLabel?: boolean | undefined;
|
3537
3965
|
} | {
|
3538
3966
|
type: "ADMINISTRATIVE_AREA";
|
@@ -3564,6 +3992,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
3564
3992
|
conditional: import(".").JSONSchema;
|
3565
3993
|
})[] | undefined;
|
3566
3994
|
placeholder?: TranslationConfig | undefined;
|
3995
|
+
helperText?: TranslationConfig | undefined;
|
3567
3996
|
hideLabel?: boolean | undefined;
|
3568
3997
|
} | {
|
3569
3998
|
type: "LOCATION";
|
@@ -3589,6 +4018,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
3589
4018
|
conditional: import(".").JSONSchema;
|
3590
4019
|
})[] | undefined;
|
3591
4020
|
placeholder?: TranslationConfig | undefined;
|
4021
|
+
helperText?: TranslationConfig | undefined;
|
3592
4022
|
hideLabel?: boolean | undefined;
|
3593
4023
|
} | {
|
3594
4024
|
type: "FILE_WITH_OPTIONS";
|
@@ -3622,6 +4052,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
3622
4052
|
conditional: import(".").JSONSchema;
|
3623
4053
|
})[] | undefined;
|
3624
4054
|
placeholder?: TranslationConfig | undefined;
|
4055
|
+
helperText?: TranslationConfig | undefined;
|
3625
4056
|
hideLabel?: boolean | undefined;
|
3626
4057
|
} | {
|
3627
4058
|
type: "FACILITY";
|
@@ -3647,6 +4078,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
3647
4078
|
conditional: import(".").JSONSchema;
|
3648
4079
|
})[] | undefined;
|
3649
4080
|
placeholder?: TranslationConfig | undefined;
|
4081
|
+
helperText?: TranslationConfig | undefined;
|
3650
4082
|
hideLabel?: boolean | undefined;
|
3651
4083
|
} | {
|
3652
4084
|
type: "OFFICE";
|
@@ -3672,6 +4104,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
3672
4104
|
conditional: import(".").JSONSchema;
|
3673
4105
|
})[] | undefined;
|
3674
4106
|
placeholder?: TranslationConfig | undefined;
|
4107
|
+
helperText?: TranslationConfig | undefined;
|
3675
4108
|
hideLabel?: boolean | undefined;
|
3676
4109
|
} | {
|
3677
4110
|
type: "ADDRESS";
|
@@ -3725,6 +4158,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
3725
4158
|
conditional: import(".").JSONSchema;
|
3726
4159
|
})[] | undefined;
|
3727
4160
|
placeholder?: TranslationConfig | undefined;
|
4161
|
+
helperText?: TranslationConfig | undefined;
|
3728
4162
|
hideLabel?: boolean | undefined;
|
3729
4163
|
} | {
|
3730
4164
|
type: "DATA";
|
@@ -3759,6 +4193,7 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
3759
4193
|
conditional: import(".").JSONSchema;
|
3760
4194
|
})[] | undefined;
|
3761
4195
|
placeholder?: TranslationConfig | undefined;
|
4196
|
+
helperText?: TranslationConfig | undefined;
|
3762
4197
|
hideLabel?: boolean | undefined;
|
3763
4198
|
})[];
|
3764
4199
|
conditional?: import(".").JSONSchema | undefined;
|
@@ -3805,6 +4240,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
3805
4240
|
description: string;
|
3806
4241
|
defaultMessage: string;
|
3807
4242
|
} | undefined;
|
4243
|
+
helperText?: {
|
4244
|
+
id: string;
|
4245
|
+
description: string;
|
4246
|
+
defaultMessage: string;
|
4247
|
+
} | undefined;
|
3808
4248
|
hideLabel?: boolean | undefined;
|
3809
4249
|
} | {
|
3810
4250
|
type: "TEXT";
|
@@ -3842,6 +4282,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
3842
4282
|
description: string;
|
3843
4283
|
defaultMessage: string;
|
3844
4284
|
} | undefined;
|
4285
|
+
helperText?: {
|
4286
|
+
id: string;
|
4287
|
+
description: string;
|
4288
|
+
defaultMessage: string;
|
4289
|
+
} | undefined;
|
3845
4290
|
hideLabel?: boolean | undefined;
|
3846
4291
|
configuration?: {
|
3847
4292
|
type?: "text" | "password" | undefined;
|
@@ -3893,6 +4338,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
3893
4338
|
description: string;
|
3894
4339
|
defaultMessage: string;
|
3895
4340
|
} | undefined;
|
4341
|
+
helperText?: {
|
4342
|
+
id: string;
|
4343
|
+
description: string;
|
4344
|
+
defaultMessage: string;
|
4345
|
+
} | undefined;
|
3896
4346
|
hideLabel?: boolean | undefined;
|
3897
4347
|
configuration?: {
|
3898
4348
|
prefix?: {
|
@@ -3944,6 +4394,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
3944
4394
|
description: string;
|
3945
4395
|
defaultMessage: string;
|
3946
4396
|
} | undefined;
|
4397
|
+
helperText?: {
|
4398
|
+
id: string;
|
4399
|
+
description: string;
|
4400
|
+
defaultMessage: string;
|
4401
|
+
} | undefined;
|
3947
4402
|
hideLabel?: boolean | undefined;
|
3948
4403
|
configuration?: {
|
3949
4404
|
maxLength?: number | undefined;
|
@@ -4001,6 +4456,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
4001
4456
|
description: string;
|
4002
4457
|
defaultMessage: string;
|
4003
4458
|
} | undefined;
|
4459
|
+
helperText?: {
|
4460
|
+
id: string;
|
4461
|
+
description: string;
|
4462
|
+
defaultMessage: string;
|
4463
|
+
} | undefined;
|
4004
4464
|
hideLabel?: boolean | undefined;
|
4005
4465
|
configuration?: {
|
4006
4466
|
maxFileSize?: number | undefined;
|
@@ -4042,6 +4502,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
4042
4502
|
description: string;
|
4043
4503
|
defaultMessage: string;
|
4044
4504
|
} | undefined;
|
4505
|
+
helperText?: {
|
4506
|
+
id: string;
|
4507
|
+
description: string;
|
4508
|
+
defaultMessage: string;
|
4509
|
+
} | undefined;
|
4045
4510
|
hideLabel?: boolean | undefined;
|
4046
4511
|
configuration?: {
|
4047
4512
|
maxLength?: number | undefined;
|
@@ -4082,6 +4547,60 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
4082
4547
|
description: string;
|
4083
4548
|
defaultMessage: string;
|
4084
4549
|
} | undefined;
|
4550
|
+
helperText?: {
|
4551
|
+
id: string;
|
4552
|
+
description: string;
|
4553
|
+
defaultMessage: string;
|
4554
|
+
} | undefined;
|
4555
|
+
hideLabel?: boolean | undefined;
|
4556
|
+
configuration?: {
|
4557
|
+
notice?: {
|
4558
|
+
id: string;
|
4559
|
+
description: string;
|
4560
|
+
defaultMessage: string;
|
4561
|
+
} | undefined;
|
4562
|
+
} | undefined;
|
4563
|
+
} | {
|
4564
|
+
type: "DATE_RANGE";
|
4565
|
+
id: string;
|
4566
|
+
label: {
|
4567
|
+
id: string;
|
4568
|
+
description: string;
|
4569
|
+
defaultMessage: string;
|
4570
|
+
};
|
4571
|
+
parent?: {
|
4572
|
+
_fieldId?: string | undefined;
|
4573
|
+
} | undefined;
|
4574
|
+
validation?: {
|
4575
|
+
message: {
|
4576
|
+
id: string;
|
4577
|
+
description: string;
|
4578
|
+
defaultMessage: string;
|
4579
|
+
};
|
4580
|
+
validator: import(".").JSONSchema;
|
4581
|
+
}[] | undefined;
|
4582
|
+
required?: boolean | undefined;
|
4583
|
+
defaultValue?: string | [string, string] | undefined;
|
4584
|
+
conditionals?: ({
|
4585
|
+
type: "SHOW";
|
4586
|
+
conditional: import(".").JSONSchema;
|
4587
|
+
} | {
|
4588
|
+
type: "ENABLE";
|
4589
|
+
conditional: import(".").JSONSchema;
|
4590
|
+
} | {
|
4591
|
+
type: "DISPLAY_ON_REVIEW";
|
4592
|
+
conditional: import(".").JSONSchema;
|
4593
|
+
})[] | undefined;
|
4594
|
+
placeholder?: {
|
4595
|
+
id: string;
|
4596
|
+
description: string;
|
4597
|
+
defaultMessage: string;
|
4598
|
+
} | undefined;
|
4599
|
+
helperText?: {
|
4600
|
+
id: string;
|
4601
|
+
description: string;
|
4602
|
+
defaultMessage: string;
|
4603
|
+
} | undefined;
|
4085
4604
|
hideLabel?: boolean | undefined;
|
4086
4605
|
configuration?: {
|
4087
4606
|
notice?: {
|
@@ -4126,6 +4645,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
4126
4645
|
description: string;
|
4127
4646
|
defaultMessage: string;
|
4128
4647
|
} | undefined;
|
4648
|
+
helperText?: {
|
4649
|
+
id: string;
|
4650
|
+
description: string;
|
4651
|
+
defaultMessage: string;
|
4652
|
+
} | undefined;
|
4129
4653
|
hideLabel?: boolean | undefined;
|
4130
4654
|
configuration?: {
|
4131
4655
|
styles?: {
|
@@ -4168,6 +4692,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
4168
4692
|
description: string;
|
4169
4693
|
defaultMessage: string;
|
4170
4694
|
} | undefined;
|
4695
|
+
helperText?: {
|
4696
|
+
id: string;
|
4697
|
+
description: string;
|
4698
|
+
defaultMessage: string;
|
4699
|
+
} | undefined;
|
4171
4700
|
hideLabel?: boolean | undefined;
|
4172
4701
|
} | {
|
4173
4702
|
type: "FILE";
|
@@ -4205,6 +4734,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
4205
4734
|
description: string;
|
4206
4735
|
defaultMessage: string;
|
4207
4736
|
} | undefined;
|
4737
|
+
helperText?: {
|
4738
|
+
id: string;
|
4739
|
+
description: string;
|
4740
|
+
defaultMessage: string;
|
4741
|
+
} | undefined;
|
4208
4742
|
hideLabel?: boolean | undefined;
|
4209
4743
|
configuration?: {
|
4210
4744
|
maxFileSize?: number | undefined;
|
@@ -4262,6 +4796,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
4262
4796
|
description: string;
|
4263
4797
|
defaultMessage: string;
|
4264
4798
|
} | undefined;
|
4799
|
+
helperText?: {
|
4800
|
+
id: string;
|
4801
|
+
description: string;
|
4802
|
+
defaultMessage: string;
|
4803
|
+
} | undefined;
|
4265
4804
|
hideLabel?: boolean | undefined;
|
4266
4805
|
configuration?: {
|
4267
4806
|
styles?: {
|
@@ -4309,6 +4848,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
4309
4848
|
description: string;
|
4310
4849
|
defaultMessage: string;
|
4311
4850
|
} | undefined;
|
4851
|
+
helperText?: {
|
4852
|
+
id: string;
|
4853
|
+
description: string;
|
4854
|
+
defaultMessage: string;
|
4855
|
+
} | undefined;
|
4312
4856
|
hideLabel?: boolean | undefined;
|
4313
4857
|
configuration?: {
|
4314
4858
|
styles?: {
|
@@ -4359,6 +4903,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
4359
4903
|
description: string;
|
4360
4904
|
defaultMessage: string;
|
4361
4905
|
} | undefined;
|
4906
|
+
helperText?: {
|
4907
|
+
id: string;
|
4908
|
+
description: string;
|
4909
|
+
defaultMessage: string;
|
4910
|
+
} | undefined;
|
4362
4911
|
hideLabel?: boolean | undefined;
|
4363
4912
|
} | {
|
4364
4913
|
type: "CHECKBOX";
|
@@ -4396,6 +4945,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
4396
4945
|
description: string;
|
4397
4946
|
defaultMessage: string;
|
4398
4947
|
} | undefined;
|
4948
|
+
helperText?: {
|
4949
|
+
id: string;
|
4950
|
+
description: string;
|
4951
|
+
defaultMessage: string;
|
4952
|
+
} | undefined;
|
4399
4953
|
hideLabel?: boolean | undefined;
|
4400
4954
|
} | {
|
4401
4955
|
type: "COUNTRY";
|
@@ -4433,6 +4987,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
4433
4987
|
description: string;
|
4434
4988
|
defaultMessage: string;
|
4435
4989
|
} | undefined;
|
4990
|
+
helperText?: {
|
4991
|
+
id: string;
|
4992
|
+
description: string;
|
4993
|
+
defaultMessage: string;
|
4994
|
+
} | undefined;
|
4436
4995
|
hideLabel?: boolean | undefined;
|
4437
4996
|
} | {
|
4438
4997
|
type: "ADMINISTRATIVE_AREA";
|
@@ -4476,6 +5035,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
4476
5035
|
description: string;
|
4477
5036
|
defaultMessage: string;
|
4478
5037
|
} | undefined;
|
5038
|
+
helperText?: {
|
5039
|
+
id: string;
|
5040
|
+
description: string;
|
5041
|
+
defaultMessage: string;
|
5042
|
+
} | undefined;
|
4479
5043
|
hideLabel?: boolean | undefined;
|
4480
5044
|
} | {
|
4481
5045
|
type: "LOCATION";
|
@@ -4513,6 +5077,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
4513
5077
|
description: string;
|
4514
5078
|
defaultMessage: string;
|
4515
5079
|
} | undefined;
|
5080
|
+
helperText?: {
|
5081
|
+
id: string;
|
5082
|
+
description: string;
|
5083
|
+
defaultMessage: string;
|
5084
|
+
} | undefined;
|
4516
5085
|
hideLabel?: boolean | undefined;
|
4517
5086
|
} | {
|
4518
5087
|
type: "FILE_WITH_OPTIONS";
|
@@ -4558,6 +5127,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
4558
5127
|
description: string;
|
4559
5128
|
defaultMessage: string;
|
4560
5129
|
} | undefined;
|
5130
|
+
helperText?: {
|
5131
|
+
id: string;
|
5132
|
+
description: string;
|
5133
|
+
defaultMessage: string;
|
5134
|
+
} | undefined;
|
4561
5135
|
hideLabel?: boolean | undefined;
|
4562
5136
|
configuration?: {
|
4563
5137
|
maxFileSize?: number | undefined;
|
@@ -4599,6 +5173,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
4599
5173
|
description: string;
|
4600
5174
|
defaultMessage: string;
|
4601
5175
|
} | undefined;
|
5176
|
+
helperText?: {
|
5177
|
+
id: string;
|
5178
|
+
description: string;
|
5179
|
+
defaultMessage: string;
|
5180
|
+
} | undefined;
|
4602
5181
|
hideLabel?: boolean | undefined;
|
4603
5182
|
} | {
|
4604
5183
|
type: "OFFICE";
|
@@ -4636,6 +5215,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
4636
5215
|
description: string;
|
4637
5216
|
defaultMessage: string;
|
4638
5217
|
} | undefined;
|
5218
|
+
helperText?: {
|
5219
|
+
id: string;
|
5220
|
+
description: string;
|
5221
|
+
defaultMessage: string;
|
5222
|
+
} | undefined;
|
4639
5223
|
hideLabel?: boolean | undefined;
|
4640
5224
|
} | {
|
4641
5225
|
type: "ADDRESS";
|
@@ -4701,6 +5285,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
4701
5285
|
description: string;
|
4702
5286
|
defaultMessage: string;
|
4703
5287
|
} | undefined;
|
5288
|
+
helperText?: {
|
5289
|
+
id: string;
|
5290
|
+
description: string;
|
5291
|
+
defaultMessage: string;
|
5292
|
+
} | undefined;
|
4704
5293
|
hideLabel?: boolean | undefined;
|
4705
5294
|
} | {
|
4706
5295
|
type: "DATA";
|
@@ -4759,6 +5348,11 @@ export declare const FormPageConfig: z.ZodObject<z.objectUtil.extendShape<{
|
|
4759
5348
|
description: string;
|
4760
5349
|
defaultMessage: string;
|
4761
5350
|
} | undefined;
|
5351
|
+
helperText?: {
|
5352
|
+
id: string;
|
5353
|
+
description: string;
|
5354
|
+
defaultMessage: string;
|
5355
|
+
} | undefined;
|
4762
5356
|
hideLabel?: boolean | undefined;
|
4763
5357
|
})[];
|
4764
5358
|
type?: "FORM" | undefined;
|
@@ -4925,6 +5519,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
4925
5519
|
description: string;
|
4926
5520
|
defaultMessage: string;
|
4927
5521
|
}>;
|
5522
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5523
|
+
id: string;
|
5524
|
+
description: string;
|
5525
|
+
defaultMessage: string;
|
5526
|
+
}>>;
|
4928
5527
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4929
5528
|
}, {
|
4930
5529
|
type: z.ZodLiteral<"ADDRESS">;
|
@@ -5067,6 +5666,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
5067
5666
|
conditional: import(".").JSONSchema;
|
5068
5667
|
})[] | undefined;
|
5069
5668
|
placeholder?: TranslationConfig | undefined;
|
5669
|
+
helperText?: TranslationConfig | undefined;
|
5070
5670
|
hideLabel?: boolean | undefined;
|
5071
5671
|
}, {
|
5072
5672
|
type: "ADDRESS";
|
@@ -5132,6 +5732,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
5132
5732
|
description: string;
|
5133
5733
|
defaultMessage: string;
|
5134
5734
|
} | undefined;
|
5735
|
+
helperText?: {
|
5736
|
+
id: string;
|
5737
|
+
description: string;
|
5738
|
+
defaultMessage: string;
|
5739
|
+
} | undefined;
|
5135
5740
|
hideLabel?: boolean | undefined;
|
5136
5741
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
5137
5742
|
id: z.ZodString;
|
@@ -5173,6 +5778,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
5173
5778
|
description: string;
|
5174
5779
|
defaultMessage: string;
|
5175
5780
|
}>;
|
5781
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5782
|
+
id: string;
|
5783
|
+
description: string;
|
5784
|
+
defaultMessage: string;
|
5785
|
+
}>>;
|
5176
5786
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5177
5787
|
}, {
|
5178
5788
|
type: z.ZodLiteral<"TEXT">;
|
@@ -5233,6 +5843,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
5233
5843
|
conditional: import(".").JSONSchema;
|
5234
5844
|
})[] | undefined;
|
5235
5845
|
placeholder?: TranslationConfig | undefined;
|
5846
|
+
helperText?: TranslationConfig | undefined;
|
5236
5847
|
hideLabel?: boolean | undefined;
|
5237
5848
|
configuration?: {
|
5238
5849
|
type?: "text" | "password" | undefined;
|
@@ -5276,6 +5887,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
5276
5887
|
description: string;
|
5277
5888
|
defaultMessage: string;
|
5278
5889
|
} | undefined;
|
5890
|
+
helperText?: {
|
5891
|
+
id: string;
|
5892
|
+
description: string;
|
5893
|
+
defaultMessage: string;
|
5894
|
+
} | undefined;
|
5279
5895
|
hideLabel?: boolean | undefined;
|
5280
5896
|
configuration?: {
|
5281
5897
|
type?: "text" | "password" | undefined;
|
@@ -5331,6 +5947,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
5331
5947
|
description: string;
|
5332
5948
|
defaultMessage: string;
|
5333
5949
|
}>;
|
5950
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5951
|
+
id: string;
|
5952
|
+
description: string;
|
5953
|
+
defaultMessage: string;
|
5954
|
+
}>>;
|
5334
5955
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5335
5956
|
}, {
|
5336
5957
|
type: z.ZodLiteral<"NUMBER">;
|
@@ -5391,6 +6012,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
5391
6012
|
conditional: import(".").JSONSchema;
|
5392
6013
|
})[] | undefined;
|
5393
6014
|
placeholder?: TranslationConfig | undefined;
|
6015
|
+
helperText?: TranslationConfig | undefined;
|
5394
6016
|
hideLabel?: boolean | undefined;
|
5395
6017
|
configuration?: {
|
5396
6018
|
prefix?: TranslationConfig | undefined;
|
@@ -5434,6 +6056,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
5434
6056
|
description: string;
|
5435
6057
|
defaultMessage: string;
|
5436
6058
|
} | undefined;
|
6059
|
+
helperText?: {
|
6060
|
+
id: string;
|
6061
|
+
description: string;
|
6062
|
+
defaultMessage: string;
|
6063
|
+
} | undefined;
|
5437
6064
|
hideLabel?: boolean | undefined;
|
5438
6065
|
configuration?: {
|
5439
6066
|
prefix?: {
|
@@ -5489,6 +6116,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
5489
6116
|
description: string;
|
5490
6117
|
defaultMessage: string;
|
5491
6118
|
}>;
|
6119
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6120
|
+
id: string;
|
6121
|
+
description: string;
|
6122
|
+
defaultMessage: string;
|
6123
|
+
}>>;
|
5492
6124
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5493
6125
|
}, {
|
5494
6126
|
type: z.ZodLiteral<"TEXTAREA">;
|
@@ -5552,6 +6184,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
5552
6184
|
conditional: import(".").JSONSchema;
|
5553
6185
|
})[] | undefined;
|
5554
6186
|
placeholder?: TranslationConfig | undefined;
|
6187
|
+
helperText?: TranslationConfig | undefined;
|
5555
6188
|
hideLabel?: boolean | undefined;
|
5556
6189
|
configuration?: {
|
5557
6190
|
maxLength?: number | undefined;
|
@@ -5596,6 +6229,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
5596
6229
|
description: string;
|
5597
6230
|
defaultMessage: string;
|
5598
6231
|
} | undefined;
|
6232
|
+
helperText?: {
|
6233
|
+
id: string;
|
6234
|
+
description: string;
|
6235
|
+
defaultMessage: string;
|
6236
|
+
} | undefined;
|
5599
6237
|
hideLabel?: boolean | undefined;
|
5600
6238
|
configuration?: {
|
5601
6239
|
maxLength?: number | undefined;
|
@@ -5652,6 +6290,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
5652
6290
|
description: string;
|
5653
6291
|
defaultMessage: string;
|
5654
6292
|
}>;
|
6293
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6294
|
+
id: string;
|
6295
|
+
description: string;
|
6296
|
+
defaultMessage: string;
|
6297
|
+
}>>;
|
5655
6298
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5656
6299
|
}, {
|
5657
6300
|
type: z.ZodLiteral<"DATE">;
|
@@ -5695,6 +6338,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
5695
6338
|
conditional: import(".").JSONSchema;
|
5696
6339
|
})[] | undefined;
|
5697
6340
|
placeholder?: TranslationConfig | undefined;
|
6341
|
+
helperText?: TranslationConfig | undefined;
|
5698
6342
|
hideLabel?: boolean | undefined;
|
5699
6343
|
configuration?: {
|
5700
6344
|
notice?: TranslationConfig | undefined;
|
@@ -5735,6 +6379,153 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
5735
6379
|
description: string;
|
5736
6380
|
defaultMessage: string;
|
5737
6381
|
} | undefined;
|
6382
|
+
helperText?: {
|
6383
|
+
id: string;
|
6384
|
+
description: string;
|
6385
|
+
defaultMessage: string;
|
6386
|
+
} | undefined;
|
6387
|
+
hideLabel?: boolean | undefined;
|
6388
|
+
configuration?: {
|
6389
|
+
notice?: {
|
6390
|
+
id: string;
|
6391
|
+
description: string;
|
6392
|
+
defaultMessage: string;
|
6393
|
+
} | undefined;
|
6394
|
+
} | undefined;
|
6395
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
6396
|
+
id: z.ZodString;
|
6397
|
+
defaultValue: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
6398
|
+
parent: z.ZodOptional<z.ZodObject<{
|
6399
|
+
_fieldId: z.ZodOptional<z.ZodString>;
|
6400
|
+
}, "strip", z.ZodTypeAny, {
|
6401
|
+
_fieldId?: string | undefined;
|
6402
|
+
}, {
|
6403
|
+
_fieldId?: string | undefined;
|
6404
|
+
}>>;
|
6405
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
6406
|
+
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6407
|
+
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6408
|
+
id: string;
|
6409
|
+
description: string;
|
6410
|
+
defaultMessage: string;
|
6411
|
+
}>>;
|
6412
|
+
validation: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodObject<{
|
6413
|
+
validator: z.ZodType<import(".").JSONSchema, z.ZodTypeDef, import(".").JSONSchema>;
|
6414
|
+
message: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6415
|
+
id: string;
|
6416
|
+
description: string;
|
6417
|
+
defaultMessage: string;
|
6418
|
+
}>;
|
6419
|
+
}, "strip", z.ZodTypeAny, {
|
6420
|
+
message: TranslationConfig;
|
6421
|
+
validator: import(".").JSONSchema;
|
6422
|
+
}, {
|
6423
|
+
message: {
|
6424
|
+
id: string;
|
6425
|
+
description: string;
|
6426
|
+
defaultMessage: string;
|
6427
|
+
};
|
6428
|
+
validator: import(".").JSONSchema;
|
6429
|
+
}>, "many">>>;
|
6430
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6431
|
+
id: string;
|
6432
|
+
description: string;
|
6433
|
+
defaultMessage: string;
|
6434
|
+
}>;
|
6435
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6436
|
+
id: string;
|
6437
|
+
description: string;
|
6438
|
+
defaultMessage: string;
|
6439
|
+
}>>;
|
6440
|
+
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6441
|
+
}, {
|
6442
|
+
type: z.ZodLiteral<"DATE_RANGE">;
|
6443
|
+
defaultValue: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>>;
|
6444
|
+
configuration: z.ZodOptional<z.ZodObject<{
|
6445
|
+
notice: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6446
|
+
id: string;
|
6447
|
+
description: string;
|
6448
|
+
defaultMessage: string;
|
6449
|
+
}>>;
|
6450
|
+
}, "strip", z.ZodTypeAny, {
|
6451
|
+
notice?: TranslationConfig | undefined;
|
6452
|
+
}, {
|
6453
|
+
notice?: {
|
6454
|
+
id: string;
|
6455
|
+
description: string;
|
6456
|
+
defaultMessage: string;
|
6457
|
+
} | undefined;
|
6458
|
+
}>>;
|
6459
|
+
}>, "strip", z.ZodTypeAny, {
|
6460
|
+
type: "DATE_RANGE";
|
6461
|
+
id: string;
|
6462
|
+
label: TranslationConfig;
|
6463
|
+
parent?: {
|
6464
|
+
_fieldId?: string | undefined;
|
6465
|
+
} | undefined;
|
6466
|
+
validation?: {
|
6467
|
+
message: TranslationConfig;
|
6468
|
+
validator: import(".").JSONSchema;
|
6469
|
+
}[] | undefined;
|
6470
|
+
required?: boolean | undefined;
|
6471
|
+
defaultValue?: string | [string, string] | undefined;
|
6472
|
+
conditionals?: ({
|
6473
|
+
type: "SHOW";
|
6474
|
+
conditional: import(".").JSONSchema;
|
6475
|
+
} | {
|
6476
|
+
type: "ENABLE";
|
6477
|
+
conditional: import(".").JSONSchema;
|
6478
|
+
} | {
|
6479
|
+
type: "DISPLAY_ON_REVIEW";
|
6480
|
+
conditional: import(".").JSONSchema;
|
6481
|
+
})[] | undefined;
|
6482
|
+
placeholder?: TranslationConfig | undefined;
|
6483
|
+
helperText?: TranslationConfig | undefined;
|
6484
|
+
hideLabel?: boolean | undefined;
|
6485
|
+
configuration?: {
|
6486
|
+
notice?: TranslationConfig | undefined;
|
6487
|
+
} | undefined;
|
6488
|
+
}, {
|
6489
|
+
type: "DATE_RANGE";
|
6490
|
+
id: string;
|
6491
|
+
label: {
|
6492
|
+
id: string;
|
6493
|
+
description: string;
|
6494
|
+
defaultMessage: string;
|
6495
|
+
};
|
6496
|
+
parent?: {
|
6497
|
+
_fieldId?: string | undefined;
|
6498
|
+
} | undefined;
|
6499
|
+
validation?: {
|
6500
|
+
message: {
|
6501
|
+
id: string;
|
6502
|
+
description: string;
|
6503
|
+
defaultMessage: string;
|
6504
|
+
};
|
6505
|
+
validator: import(".").JSONSchema;
|
6506
|
+
}[] | undefined;
|
6507
|
+
required?: boolean | undefined;
|
6508
|
+
defaultValue?: string | [string, string] | undefined;
|
6509
|
+
conditionals?: ({
|
6510
|
+
type: "SHOW";
|
6511
|
+
conditional: import(".").JSONSchema;
|
6512
|
+
} | {
|
6513
|
+
type: "ENABLE";
|
6514
|
+
conditional: import(".").JSONSchema;
|
6515
|
+
} | {
|
6516
|
+
type: "DISPLAY_ON_REVIEW";
|
6517
|
+
conditional: import(".").JSONSchema;
|
6518
|
+
})[] | undefined;
|
6519
|
+
placeholder?: {
|
6520
|
+
id: string;
|
6521
|
+
description: string;
|
6522
|
+
defaultMessage: string;
|
6523
|
+
} | undefined;
|
6524
|
+
helperText?: {
|
6525
|
+
id: string;
|
6526
|
+
description: string;
|
6527
|
+
defaultMessage: string;
|
6528
|
+
} | undefined;
|
5738
6529
|
hideLabel?: boolean | undefined;
|
5739
6530
|
configuration?: {
|
5740
6531
|
notice?: {
|
@@ -5783,6 +6574,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
5783
6574
|
description: string;
|
5784
6575
|
defaultMessage: string;
|
5785
6576
|
}>;
|
6577
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6578
|
+
id: string;
|
6579
|
+
description: string;
|
6580
|
+
defaultMessage: string;
|
6581
|
+
}>>;
|
5786
6582
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5787
6583
|
}, {
|
5788
6584
|
type: z.ZodLiteral<"PARAGRAPH">;
|
@@ -5833,6 +6629,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
5833
6629
|
conditional: import(".").JSONSchema;
|
5834
6630
|
})[] | undefined;
|
5835
6631
|
placeholder?: TranslationConfig | undefined;
|
6632
|
+
helperText?: TranslationConfig | undefined;
|
5836
6633
|
hideLabel?: boolean | undefined;
|
5837
6634
|
}, {
|
5838
6635
|
type: "PARAGRAPH";
|
@@ -5870,6 +6667,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
5870
6667
|
description: string;
|
5871
6668
|
defaultMessage: string;
|
5872
6669
|
} | undefined;
|
6670
|
+
helperText?: {
|
6671
|
+
id: string;
|
6672
|
+
description: string;
|
6673
|
+
defaultMessage: string;
|
6674
|
+
} | undefined;
|
5873
6675
|
hideLabel?: boolean | undefined;
|
5874
6676
|
configuration?: {
|
5875
6677
|
styles?: {
|
@@ -5916,6 +6718,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
5916
6718
|
description: string;
|
5917
6719
|
defaultMessage: string;
|
5918
6720
|
}>;
|
6721
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6722
|
+
id: string;
|
6723
|
+
description: string;
|
6724
|
+
defaultMessage: string;
|
6725
|
+
}>>;
|
5919
6726
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5920
6727
|
}, {
|
5921
6728
|
type: z.ZodLiteral<"RADIO_GROUP">;
|
@@ -5983,6 +6790,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
5983
6790
|
conditional: import(".").JSONSchema;
|
5984
6791
|
})[] | undefined;
|
5985
6792
|
placeholder?: TranslationConfig | undefined;
|
6793
|
+
helperText?: TranslationConfig | undefined;
|
5986
6794
|
hideLabel?: boolean | undefined;
|
5987
6795
|
configuration?: {
|
5988
6796
|
styles?: {
|
@@ -6033,6 +6841,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
6033
6841
|
description: string;
|
6034
6842
|
defaultMessage: string;
|
6035
6843
|
} | undefined;
|
6844
|
+
helperText?: {
|
6845
|
+
id: string;
|
6846
|
+
description: string;
|
6847
|
+
defaultMessage: string;
|
6848
|
+
} | undefined;
|
6036
6849
|
hideLabel?: boolean | undefined;
|
6037
6850
|
configuration?: {
|
6038
6851
|
styles?: {
|
@@ -6079,6 +6892,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
6079
6892
|
description: string;
|
6080
6893
|
defaultMessage: string;
|
6081
6894
|
}>;
|
6895
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6896
|
+
id: string;
|
6897
|
+
description: string;
|
6898
|
+
defaultMessage: string;
|
6899
|
+
}>>;
|
6082
6900
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6083
6901
|
}, {
|
6084
6902
|
type: z.ZodLiteral<"BULLET_LIST">;
|
@@ -6135,6 +6953,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
6135
6953
|
conditional: import(".").JSONSchema;
|
6136
6954
|
})[] | undefined;
|
6137
6955
|
placeholder?: TranslationConfig | undefined;
|
6956
|
+
helperText?: TranslationConfig | undefined;
|
6138
6957
|
hideLabel?: boolean | undefined;
|
6139
6958
|
}, {
|
6140
6959
|
type: "BULLET_LIST";
|
@@ -6177,6 +6996,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
6177
6996
|
description: string;
|
6178
6997
|
defaultMessage: string;
|
6179
6998
|
} | undefined;
|
6999
|
+
helperText?: {
|
7000
|
+
id: string;
|
7001
|
+
description: string;
|
7002
|
+
defaultMessage: string;
|
7003
|
+
} | undefined;
|
6180
7004
|
hideLabel?: boolean | undefined;
|
6181
7005
|
configuration?: {
|
6182
7006
|
styles?: {
|
@@ -6223,6 +7047,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
6223
7047
|
description: string;
|
6224
7048
|
defaultMessage: string;
|
6225
7049
|
}>;
|
7050
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7051
|
+
id: string;
|
7052
|
+
description: string;
|
7053
|
+
defaultMessage: string;
|
7054
|
+
}>>;
|
6226
7055
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6227
7056
|
}, {
|
6228
7057
|
type: z.ZodLiteral<"PAGE_HEADER">;
|
@@ -6251,6 +7080,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
6251
7080
|
conditional: import(".").JSONSchema;
|
6252
7081
|
})[] | undefined;
|
6253
7082
|
placeholder?: TranslationConfig | undefined;
|
7083
|
+
helperText?: TranslationConfig | undefined;
|
6254
7084
|
hideLabel?: boolean | undefined;
|
6255
7085
|
}, {
|
6256
7086
|
type: "PAGE_HEADER";
|
@@ -6288,6 +7118,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
6288
7118
|
description: string;
|
6289
7119
|
defaultMessage: string;
|
6290
7120
|
} | undefined;
|
7121
|
+
helperText?: {
|
7122
|
+
id: string;
|
7123
|
+
description: string;
|
7124
|
+
defaultMessage: string;
|
7125
|
+
} | undefined;
|
6291
7126
|
hideLabel?: boolean | undefined;
|
6292
7127
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
6293
7128
|
id: z.ZodString;
|
@@ -6329,6 +7164,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
6329
7164
|
description: string;
|
6330
7165
|
defaultMessage: string;
|
6331
7166
|
}>;
|
7167
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7168
|
+
id: string;
|
7169
|
+
description: string;
|
7170
|
+
defaultMessage: string;
|
7171
|
+
}>>;
|
6332
7172
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6333
7173
|
}, {
|
6334
7174
|
type: z.ZodLiteral<"SELECT">;
|
@@ -6379,6 +7219,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
6379
7219
|
conditional: import(".").JSONSchema;
|
6380
7220
|
})[] | undefined;
|
6381
7221
|
placeholder?: TranslationConfig | undefined;
|
7222
|
+
helperText?: TranslationConfig | undefined;
|
6382
7223
|
hideLabel?: boolean | undefined;
|
6383
7224
|
}, {
|
6384
7225
|
type: "SELECT";
|
@@ -6424,6 +7265,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
6424
7265
|
description: string;
|
6425
7266
|
defaultMessage: string;
|
6426
7267
|
} | undefined;
|
7268
|
+
helperText?: {
|
7269
|
+
id: string;
|
7270
|
+
description: string;
|
7271
|
+
defaultMessage: string;
|
7272
|
+
} | undefined;
|
6427
7273
|
hideLabel?: boolean | undefined;
|
6428
7274
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
6429
7275
|
id: z.ZodString;
|
@@ -6465,6 +7311,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
6465
7311
|
description: string;
|
6466
7312
|
defaultMessage: string;
|
6467
7313
|
}>;
|
7314
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7315
|
+
id: string;
|
7316
|
+
description: string;
|
7317
|
+
defaultMessage: string;
|
7318
|
+
}>>;
|
6468
7319
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6469
7320
|
}, {
|
6470
7321
|
type: z.ZodLiteral<"CHECKBOX">;
|
@@ -6493,6 +7344,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
6493
7344
|
conditional: import(".").JSONSchema;
|
6494
7345
|
})[] | undefined;
|
6495
7346
|
placeholder?: TranslationConfig | undefined;
|
7347
|
+
helperText?: TranslationConfig | undefined;
|
6496
7348
|
hideLabel?: boolean | undefined;
|
6497
7349
|
}, {
|
6498
7350
|
type: "CHECKBOX";
|
@@ -6530,6 +7382,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
6530
7382
|
description: string;
|
6531
7383
|
defaultMessage: string;
|
6532
7384
|
} | undefined;
|
7385
|
+
helperText?: {
|
7386
|
+
id: string;
|
7387
|
+
description: string;
|
7388
|
+
defaultMessage: string;
|
7389
|
+
} | undefined;
|
6533
7390
|
hideLabel?: boolean | undefined;
|
6534
7391
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
6535
7392
|
id: z.ZodString;
|
@@ -6571,6 +7428,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
6571
7428
|
description: string;
|
6572
7429
|
defaultMessage: string;
|
6573
7430
|
}>;
|
7431
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7432
|
+
id: string;
|
7433
|
+
description: string;
|
7434
|
+
defaultMessage: string;
|
7435
|
+
}>>;
|
6574
7436
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6575
7437
|
}, {
|
6576
7438
|
type: z.ZodLiteral<"FILE">;
|
@@ -6640,6 +7502,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
6640
7502
|
conditional: import(".").JSONSchema;
|
6641
7503
|
})[] | undefined;
|
6642
7504
|
placeholder?: TranslationConfig | undefined;
|
7505
|
+
helperText?: TranslationConfig | undefined;
|
6643
7506
|
hideLabel?: boolean | undefined;
|
6644
7507
|
}, {
|
6645
7508
|
type: "FILE";
|
@@ -6677,6 +7540,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
6677
7540
|
description: string;
|
6678
7541
|
defaultMessage: string;
|
6679
7542
|
} | undefined;
|
7543
|
+
helperText?: {
|
7544
|
+
id: string;
|
7545
|
+
description: string;
|
7546
|
+
defaultMessage: string;
|
7547
|
+
} | undefined;
|
6680
7548
|
hideLabel?: boolean | undefined;
|
6681
7549
|
configuration?: {
|
6682
7550
|
maxFileSize?: number | undefined;
|
@@ -6730,6 +7598,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
6730
7598
|
description: string;
|
6731
7599
|
defaultMessage: string;
|
6732
7600
|
}>;
|
7601
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7602
|
+
id: string;
|
7603
|
+
description: string;
|
7604
|
+
defaultMessage: string;
|
7605
|
+
}>>;
|
6733
7606
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6734
7607
|
}, {
|
6735
7608
|
type: z.ZodLiteral<"COUNTRY">;
|
@@ -6758,6 +7631,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
6758
7631
|
conditional: import(".").JSONSchema;
|
6759
7632
|
})[] | undefined;
|
6760
7633
|
placeholder?: TranslationConfig | undefined;
|
7634
|
+
helperText?: TranslationConfig | undefined;
|
6761
7635
|
hideLabel?: boolean | undefined;
|
6762
7636
|
}, {
|
6763
7637
|
type: "COUNTRY";
|
@@ -6795,6 +7669,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
6795
7669
|
description: string;
|
6796
7670
|
defaultMessage: string;
|
6797
7671
|
} | undefined;
|
7672
|
+
helperText?: {
|
7673
|
+
id: string;
|
7674
|
+
description: string;
|
7675
|
+
defaultMessage: string;
|
7676
|
+
} | undefined;
|
6798
7677
|
hideLabel?: boolean | undefined;
|
6799
7678
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
6800
7679
|
id: z.ZodString;
|
@@ -6836,6 +7715,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
6836
7715
|
description: string;
|
6837
7716
|
defaultMessage: string;
|
6838
7717
|
}>;
|
7718
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7719
|
+
id: string;
|
7720
|
+
description: string;
|
7721
|
+
defaultMessage: string;
|
7722
|
+
}>>;
|
6839
7723
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6840
7724
|
}, {
|
6841
7725
|
type: z.ZodLiteral<"ADMINISTRATIVE_AREA">;
|
@@ -6890,6 +7774,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
6890
7774
|
conditional: import(".").JSONSchema;
|
6891
7775
|
})[] | undefined;
|
6892
7776
|
placeholder?: TranslationConfig | undefined;
|
7777
|
+
helperText?: TranslationConfig | undefined;
|
6893
7778
|
hideLabel?: boolean | undefined;
|
6894
7779
|
}, {
|
6895
7780
|
type: "ADMINISTRATIVE_AREA";
|
@@ -6933,6 +7818,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
6933
7818
|
description: string;
|
6934
7819
|
defaultMessage: string;
|
6935
7820
|
} | undefined;
|
7821
|
+
helperText?: {
|
7822
|
+
id: string;
|
7823
|
+
description: string;
|
7824
|
+
defaultMessage: string;
|
7825
|
+
} | undefined;
|
6936
7826
|
hideLabel?: boolean | undefined;
|
6937
7827
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
6938
7828
|
id: z.ZodString;
|
@@ -6974,6 +7864,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
6974
7864
|
description: string;
|
6975
7865
|
defaultMessage: string;
|
6976
7866
|
}>;
|
7867
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7868
|
+
id: string;
|
7869
|
+
description: string;
|
7870
|
+
defaultMessage: string;
|
7871
|
+
}>>;
|
6977
7872
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6978
7873
|
}, {
|
6979
7874
|
type: z.ZodLiteral<"DIVIDER">;
|
@@ -7001,6 +7896,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
7001
7896
|
conditional: import(".").JSONSchema;
|
7002
7897
|
})[] | undefined;
|
7003
7898
|
placeholder?: TranslationConfig | undefined;
|
7899
|
+
helperText?: TranslationConfig | undefined;
|
7004
7900
|
hideLabel?: boolean | undefined;
|
7005
7901
|
}, {
|
7006
7902
|
type: "DIVIDER";
|
@@ -7038,6 +7934,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
7038
7934
|
description: string;
|
7039
7935
|
defaultMessage: string;
|
7040
7936
|
} | undefined;
|
7937
|
+
helperText?: {
|
7938
|
+
id: string;
|
7939
|
+
description: string;
|
7940
|
+
defaultMessage: string;
|
7941
|
+
} | undefined;
|
7041
7942
|
hideLabel?: boolean | undefined;
|
7042
7943
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
7043
7944
|
id: z.ZodString;
|
@@ -7079,6 +7980,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
7079
7980
|
description: string;
|
7080
7981
|
defaultMessage: string;
|
7081
7982
|
}>;
|
7983
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7984
|
+
id: string;
|
7985
|
+
description: string;
|
7986
|
+
defaultMessage: string;
|
7987
|
+
}>>;
|
7082
7988
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7083
7989
|
}, {
|
7084
7990
|
type: z.ZodLiteral<"LOCATION">;
|
@@ -7107,6 +8013,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
7107
8013
|
conditional: import(".").JSONSchema;
|
7108
8014
|
})[] | undefined;
|
7109
8015
|
placeholder?: TranslationConfig | undefined;
|
8016
|
+
helperText?: TranslationConfig | undefined;
|
7110
8017
|
hideLabel?: boolean | undefined;
|
7111
8018
|
}, {
|
7112
8019
|
type: "LOCATION";
|
@@ -7144,6 +8051,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
7144
8051
|
description: string;
|
7145
8052
|
defaultMessage: string;
|
7146
8053
|
} | undefined;
|
8054
|
+
helperText?: {
|
8055
|
+
id: string;
|
8056
|
+
description: string;
|
8057
|
+
defaultMessage: string;
|
8058
|
+
} | undefined;
|
7147
8059
|
hideLabel?: boolean | undefined;
|
7148
8060
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
7149
8061
|
id: z.ZodString;
|
@@ -7185,6 +8097,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
7185
8097
|
description: string;
|
7186
8098
|
defaultMessage: string;
|
7187
8099
|
}>;
|
8100
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
8101
|
+
id: string;
|
8102
|
+
description: string;
|
8103
|
+
defaultMessage: string;
|
8104
|
+
}>>;
|
7188
8105
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7189
8106
|
}, {
|
7190
8107
|
type: z.ZodLiteral<"FACILITY">;
|
@@ -7213,6 +8130,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
7213
8130
|
conditional: import(".").JSONSchema;
|
7214
8131
|
})[] | undefined;
|
7215
8132
|
placeholder?: TranslationConfig | undefined;
|
8133
|
+
helperText?: TranslationConfig | undefined;
|
7216
8134
|
hideLabel?: boolean | undefined;
|
7217
8135
|
}, {
|
7218
8136
|
type: "FACILITY";
|
@@ -7250,6 +8168,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
7250
8168
|
description: string;
|
7251
8169
|
defaultMessage: string;
|
7252
8170
|
} | undefined;
|
8171
|
+
helperText?: {
|
8172
|
+
id: string;
|
8173
|
+
description: string;
|
8174
|
+
defaultMessage: string;
|
8175
|
+
} | undefined;
|
7253
8176
|
hideLabel?: boolean | undefined;
|
7254
8177
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
7255
8178
|
id: z.ZodString;
|
@@ -7291,6 +8214,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
7291
8214
|
description: string;
|
7292
8215
|
defaultMessage: string;
|
7293
8216
|
}>;
|
8217
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
8218
|
+
id: string;
|
8219
|
+
description: string;
|
8220
|
+
defaultMessage: string;
|
8221
|
+
}>>;
|
7294
8222
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7295
8223
|
}, {
|
7296
8224
|
type: z.ZodLiteral<"OFFICE">;
|
@@ -7319,6 +8247,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
7319
8247
|
conditional: import(".").JSONSchema;
|
7320
8248
|
})[] | undefined;
|
7321
8249
|
placeholder?: TranslationConfig | undefined;
|
8250
|
+
helperText?: TranslationConfig | undefined;
|
7322
8251
|
hideLabel?: boolean | undefined;
|
7323
8252
|
}, {
|
7324
8253
|
type: "OFFICE";
|
@@ -7356,6 +8285,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
7356
8285
|
description: string;
|
7357
8286
|
defaultMessage: string;
|
7358
8287
|
} | undefined;
|
8288
|
+
helperText?: {
|
8289
|
+
id: string;
|
8290
|
+
description: string;
|
8291
|
+
defaultMessage: string;
|
8292
|
+
} | undefined;
|
7359
8293
|
hideLabel?: boolean | undefined;
|
7360
8294
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
7361
8295
|
id: z.ZodString;
|
@@ -7397,6 +8331,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
7397
8331
|
description: string;
|
7398
8332
|
defaultMessage: string;
|
7399
8333
|
}>;
|
8334
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
8335
|
+
id: string;
|
8336
|
+
description: string;
|
8337
|
+
defaultMessage: string;
|
8338
|
+
}>>;
|
7400
8339
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7401
8340
|
}, {
|
7402
8341
|
type: z.ZodLiteral<"SIGNATURE">;
|
@@ -7444,6 +8383,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
7444
8383
|
conditional: import(".").JSONSchema;
|
7445
8384
|
})[] | undefined;
|
7446
8385
|
placeholder?: TranslationConfig | undefined;
|
8386
|
+
helperText?: TranslationConfig | undefined;
|
7447
8387
|
hideLabel?: boolean | undefined;
|
7448
8388
|
}, {
|
7449
8389
|
type: "SIGNATURE";
|
@@ -7486,6 +8426,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
7486
8426
|
description: string;
|
7487
8427
|
defaultMessage: string;
|
7488
8428
|
} | undefined;
|
8429
|
+
helperText?: {
|
8430
|
+
id: string;
|
8431
|
+
description: string;
|
8432
|
+
defaultMessage: string;
|
8433
|
+
} | undefined;
|
7489
8434
|
hideLabel?: boolean | undefined;
|
7490
8435
|
configuration?: {
|
7491
8436
|
maxFileSize?: number | undefined;
|
@@ -7531,6 +8476,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
7531
8476
|
description: string;
|
7532
8477
|
defaultMessage: string;
|
7533
8478
|
}>;
|
8479
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
8480
|
+
id: string;
|
8481
|
+
description: string;
|
8482
|
+
defaultMessage: string;
|
8483
|
+
}>>;
|
7534
8484
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7535
8485
|
}, {
|
7536
8486
|
type: z.ZodLiteral<"EMAIL">;
|
@@ -7566,6 +8516,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
7566
8516
|
conditional: import(".").JSONSchema;
|
7567
8517
|
})[] | undefined;
|
7568
8518
|
placeholder?: TranslationConfig | undefined;
|
8519
|
+
helperText?: TranslationConfig | undefined;
|
7569
8520
|
hideLabel?: boolean | undefined;
|
7570
8521
|
configuration?: {
|
7571
8522
|
maxLength?: number | undefined;
|
@@ -7606,6 +8557,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
7606
8557
|
description: string;
|
7607
8558
|
defaultMessage: string;
|
7608
8559
|
} | undefined;
|
8560
|
+
helperText?: {
|
8561
|
+
id: string;
|
8562
|
+
description: string;
|
8563
|
+
defaultMessage: string;
|
8564
|
+
} | undefined;
|
7609
8565
|
hideLabel?: boolean | undefined;
|
7610
8566
|
configuration?: {
|
7611
8567
|
maxLength?: number | undefined;
|
@@ -7650,6 +8606,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
7650
8606
|
description: string;
|
7651
8607
|
defaultMessage: string;
|
7652
8608
|
}>;
|
8609
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
8610
|
+
id: string;
|
8611
|
+
description: string;
|
8612
|
+
defaultMessage: string;
|
8613
|
+
}>>;
|
7653
8614
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7654
8615
|
}, {
|
7655
8616
|
type: z.ZodLiteral<"FILE_WITH_OPTIONS">;
|
@@ -7713,6 +8674,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
7713
8674
|
conditional: import(".").JSONSchema;
|
7714
8675
|
})[] | undefined;
|
7715
8676
|
placeholder?: TranslationConfig | undefined;
|
8677
|
+
helperText?: TranslationConfig | undefined;
|
7716
8678
|
hideLabel?: boolean | undefined;
|
7717
8679
|
}, {
|
7718
8680
|
type: "FILE_WITH_OPTIONS";
|
@@ -7758,6 +8720,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
7758
8720
|
description: string;
|
7759
8721
|
defaultMessage: string;
|
7760
8722
|
} | undefined;
|
8723
|
+
helperText?: {
|
8724
|
+
id: string;
|
8725
|
+
description: string;
|
8726
|
+
defaultMessage: string;
|
8727
|
+
} | undefined;
|
7761
8728
|
hideLabel?: boolean | undefined;
|
7762
8729
|
configuration?: {
|
7763
8730
|
maxFileSize?: number | undefined;
|
@@ -7803,6 +8770,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
7803
8770
|
description: string;
|
7804
8771
|
defaultMessage: string;
|
7805
8772
|
}>;
|
8773
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
8774
|
+
id: string;
|
8775
|
+
description: string;
|
8776
|
+
defaultMessage: string;
|
8777
|
+
}>>;
|
7806
8778
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7807
8779
|
}, {
|
7808
8780
|
type: z.ZodLiteral<"DATA">;
|
@@ -7906,6 +8878,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
7906
8878
|
conditional: import(".").JSONSchema;
|
7907
8879
|
})[] | undefined;
|
7908
8880
|
placeholder?: TranslationConfig | undefined;
|
8881
|
+
helperText?: TranslationConfig | undefined;
|
7909
8882
|
hideLabel?: boolean | undefined;
|
7910
8883
|
}, {
|
7911
8884
|
type: "DATA";
|
@@ -7964,6 +8937,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
7964
8937
|
description: string;
|
7965
8938
|
defaultMessage: string;
|
7966
8939
|
} | undefined;
|
8940
|
+
helperText?: {
|
8941
|
+
id: string;
|
8942
|
+
description: string;
|
8943
|
+
defaultMessage: string;
|
8944
|
+
} | undefined;
|
7967
8945
|
hideLabel?: boolean | undefined;
|
7968
8946
|
}>]>, "many">;
|
7969
8947
|
conditional: z.ZodOptional<z.ZodType<import(".").JSONSchema, z.ZodTypeDef, import(".").JSONSchema>>;
|
@@ -8123,6 +9101,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
8123
9101
|
conditional: import(".").JSONSchema;
|
8124
9102
|
})[] | undefined;
|
8125
9103
|
placeholder?: TranslationConfig | undefined;
|
9104
|
+
helperText?: TranslationConfig | undefined;
|
8126
9105
|
hideLabel?: boolean | undefined;
|
8127
9106
|
} | {
|
8128
9107
|
type: "TEXT";
|
@@ -8148,6 +9127,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
8148
9127
|
conditional: import(".").JSONSchema;
|
8149
9128
|
})[] | undefined;
|
8150
9129
|
placeholder?: TranslationConfig | undefined;
|
9130
|
+
helperText?: TranslationConfig | undefined;
|
8151
9131
|
hideLabel?: boolean | undefined;
|
8152
9132
|
configuration?: {
|
8153
9133
|
type?: "text" | "password" | undefined;
|
@@ -8179,6 +9159,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
8179
9159
|
conditional: import(".").JSONSchema;
|
8180
9160
|
})[] | undefined;
|
8181
9161
|
placeholder?: TranslationConfig | undefined;
|
9162
|
+
helperText?: TranslationConfig | undefined;
|
8182
9163
|
hideLabel?: boolean | undefined;
|
8183
9164
|
configuration?: {
|
8184
9165
|
prefix?: TranslationConfig | undefined;
|
@@ -8210,6 +9191,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
8210
9191
|
conditional: import(".").JSONSchema;
|
8211
9192
|
})[] | undefined;
|
8212
9193
|
placeholder?: TranslationConfig | undefined;
|
9194
|
+
helperText?: TranslationConfig | undefined;
|
8213
9195
|
hideLabel?: boolean | undefined;
|
8214
9196
|
configuration?: {
|
8215
9197
|
maxLength?: number | undefined;
|
@@ -8247,6 +9229,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
8247
9229
|
conditional: import(".").JSONSchema;
|
8248
9230
|
})[] | undefined;
|
8249
9231
|
placeholder?: TranslationConfig | undefined;
|
9232
|
+
helperText?: TranslationConfig | undefined;
|
8250
9233
|
hideLabel?: boolean | undefined;
|
8251
9234
|
} | {
|
8252
9235
|
type: "EMAIL";
|
@@ -8272,6 +9255,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
8272
9255
|
conditional: import(".").JSONSchema;
|
8273
9256
|
})[] | undefined;
|
8274
9257
|
placeholder?: TranslationConfig | undefined;
|
9258
|
+
helperText?: TranslationConfig | undefined;
|
8275
9259
|
hideLabel?: boolean | undefined;
|
8276
9260
|
configuration?: {
|
8277
9261
|
maxLength?: number | undefined;
|
@@ -8300,6 +9284,36 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
8300
9284
|
conditional: import(".").JSONSchema;
|
8301
9285
|
})[] | undefined;
|
8302
9286
|
placeholder?: TranslationConfig | undefined;
|
9287
|
+
helperText?: TranslationConfig | undefined;
|
9288
|
+
hideLabel?: boolean | undefined;
|
9289
|
+
configuration?: {
|
9290
|
+
notice?: TranslationConfig | undefined;
|
9291
|
+
} | undefined;
|
9292
|
+
} | {
|
9293
|
+
type: "DATE_RANGE";
|
9294
|
+
id: string;
|
9295
|
+
label: TranslationConfig;
|
9296
|
+
parent?: {
|
9297
|
+
_fieldId?: string | undefined;
|
9298
|
+
} | undefined;
|
9299
|
+
validation?: {
|
9300
|
+
message: TranslationConfig;
|
9301
|
+
validator: import(".").JSONSchema;
|
9302
|
+
}[] | undefined;
|
9303
|
+
required?: boolean | undefined;
|
9304
|
+
defaultValue?: string | [string, string] | undefined;
|
9305
|
+
conditionals?: ({
|
9306
|
+
type: "SHOW";
|
9307
|
+
conditional: import(".").JSONSchema;
|
9308
|
+
} | {
|
9309
|
+
type: "ENABLE";
|
9310
|
+
conditional: import(".").JSONSchema;
|
9311
|
+
} | {
|
9312
|
+
type: "DISPLAY_ON_REVIEW";
|
9313
|
+
conditional: import(".").JSONSchema;
|
9314
|
+
})[] | undefined;
|
9315
|
+
placeholder?: TranslationConfig | undefined;
|
9316
|
+
helperText?: TranslationConfig | undefined;
|
8303
9317
|
hideLabel?: boolean | undefined;
|
8304
9318
|
configuration?: {
|
8305
9319
|
notice?: TranslationConfig | undefined;
|
@@ -8333,6 +9347,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
8333
9347
|
conditional: import(".").JSONSchema;
|
8334
9348
|
})[] | undefined;
|
8335
9349
|
placeholder?: TranslationConfig | undefined;
|
9350
|
+
helperText?: TranslationConfig | undefined;
|
8336
9351
|
hideLabel?: boolean | undefined;
|
8337
9352
|
} | {
|
8338
9353
|
type: "PAGE_HEADER";
|
@@ -8358,6 +9373,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
8358
9373
|
conditional: import(".").JSONSchema;
|
8359
9374
|
})[] | undefined;
|
8360
9375
|
placeholder?: TranslationConfig | undefined;
|
9376
|
+
helperText?: TranslationConfig | undefined;
|
8361
9377
|
hideLabel?: boolean | undefined;
|
8362
9378
|
} | {
|
8363
9379
|
type: "FILE";
|
@@ -8391,6 +9407,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
8391
9407
|
conditional: import(".").JSONSchema;
|
8392
9408
|
})[] | undefined;
|
8393
9409
|
placeholder?: TranslationConfig | undefined;
|
9410
|
+
helperText?: TranslationConfig | undefined;
|
8394
9411
|
hideLabel?: boolean | undefined;
|
8395
9412
|
} | {
|
8396
9413
|
type: "RADIO_GROUP";
|
@@ -8420,6 +9437,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
8420
9437
|
conditional: import(".").JSONSchema;
|
8421
9438
|
})[] | undefined;
|
8422
9439
|
placeholder?: TranslationConfig | undefined;
|
9440
|
+
helperText?: TranslationConfig | undefined;
|
8423
9441
|
hideLabel?: boolean | undefined;
|
8424
9442
|
configuration?: {
|
8425
9443
|
styles?: {
|
@@ -8456,6 +9474,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
8456
9474
|
conditional: import(".").JSONSchema;
|
8457
9475
|
})[] | undefined;
|
8458
9476
|
placeholder?: TranslationConfig | undefined;
|
9477
|
+
helperText?: TranslationConfig | undefined;
|
8459
9478
|
hideLabel?: boolean | undefined;
|
8460
9479
|
} | {
|
8461
9480
|
type: "SELECT";
|
@@ -8485,6 +9504,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
8485
9504
|
conditional: import(".").JSONSchema;
|
8486
9505
|
})[] | undefined;
|
8487
9506
|
placeholder?: TranslationConfig | undefined;
|
9507
|
+
helperText?: TranslationConfig | undefined;
|
8488
9508
|
hideLabel?: boolean | undefined;
|
8489
9509
|
} | {
|
8490
9510
|
type: "CHECKBOX";
|
@@ -8510,6 +9530,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
8510
9530
|
conditional: import(".").JSONSchema;
|
8511
9531
|
})[] | undefined;
|
8512
9532
|
placeholder?: TranslationConfig | undefined;
|
9533
|
+
helperText?: TranslationConfig | undefined;
|
8513
9534
|
hideLabel?: boolean | undefined;
|
8514
9535
|
} | {
|
8515
9536
|
type: "COUNTRY";
|
@@ -8535,6 +9556,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
8535
9556
|
conditional: import(".").JSONSchema;
|
8536
9557
|
})[] | undefined;
|
8537
9558
|
placeholder?: TranslationConfig | undefined;
|
9559
|
+
helperText?: TranslationConfig | undefined;
|
8538
9560
|
hideLabel?: boolean | undefined;
|
8539
9561
|
} | {
|
8540
9562
|
type: "ADMINISTRATIVE_AREA";
|
@@ -8566,6 +9588,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
8566
9588
|
conditional: import(".").JSONSchema;
|
8567
9589
|
})[] | undefined;
|
8568
9590
|
placeholder?: TranslationConfig | undefined;
|
9591
|
+
helperText?: TranslationConfig | undefined;
|
8569
9592
|
hideLabel?: boolean | undefined;
|
8570
9593
|
} | {
|
8571
9594
|
type: "LOCATION";
|
@@ -8591,6 +9614,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
8591
9614
|
conditional: import(".").JSONSchema;
|
8592
9615
|
})[] | undefined;
|
8593
9616
|
placeholder?: TranslationConfig | undefined;
|
9617
|
+
helperText?: TranslationConfig | undefined;
|
8594
9618
|
hideLabel?: boolean | undefined;
|
8595
9619
|
} | {
|
8596
9620
|
type: "FILE_WITH_OPTIONS";
|
@@ -8624,6 +9648,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
8624
9648
|
conditional: import(".").JSONSchema;
|
8625
9649
|
})[] | undefined;
|
8626
9650
|
placeholder?: TranslationConfig | undefined;
|
9651
|
+
helperText?: TranslationConfig | undefined;
|
8627
9652
|
hideLabel?: boolean | undefined;
|
8628
9653
|
} | {
|
8629
9654
|
type: "FACILITY";
|
@@ -8649,6 +9674,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
8649
9674
|
conditional: import(".").JSONSchema;
|
8650
9675
|
})[] | undefined;
|
8651
9676
|
placeholder?: TranslationConfig | undefined;
|
9677
|
+
helperText?: TranslationConfig | undefined;
|
8652
9678
|
hideLabel?: boolean | undefined;
|
8653
9679
|
} | {
|
8654
9680
|
type: "OFFICE";
|
@@ -8674,6 +9700,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
8674
9700
|
conditional: import(".").JSONSchema;
|
8675
9701
|
})[] | undefined;
|
8676
9702
|
placeholder?: TranslationConfig | undefined;
|
9703
|
+
helperText?: TranslationConfig | undefined;
|
8677
9704
|
hideLabel?: boolean | undefined;
|
8678
9705
|
} | {
|
8679
9706
|
type: "ADDRESS";
|
@@ -8727,6 +9754,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
8727
9754
|
conditional: import(".").JSONSchema;
|
8728
9755
|
})[] | undefined;
|
8729
9756
|
placeholder?: TranslationConfig | undefined;
|
9757
|
+
helperText?: TranslationConfig | undefined;
|
8730
9758
|
hideLabel?: boolean | undefined;
|
8731
9759
|
} | {
|
8732
9760
|
type: "DATA";
|
@@ -8761,6 +9789,7 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
8761
9789
|
conditional: import(".").JSONSchema;
|
8762
9790
|
})[] | undefined;
|
8763
9791
|
placeholder?: TranslationConfig | undefined;
|
9792
|
+
helperText?: TranslationConfig | undefined;
|
8764
9793
|
hideLabel?: boolean | undefined;
|
8765
9794
|
})[];
|
8766
9795
|
conditional?: import(".").JSONSchema | undefined;
|
@@ -8836,6 +9865,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
8836
9865
|
description: string;
|
8837
9866
|
defaultMessage: string;
|
8838
9867
|
} | undefined;
|
9868
|
+
helperText?: {
|
9869
|
+
id: string;
|
9870
|
+
description: string;
|
9871
|
+
defaultMessage: string;
|
9872
|
+
} | undefined;
|
8839
9873
|
hideLabel?: boolean | undefined;
|
8840
9874
|
} | {
|
8841
9875
|
type: "TEXT";
|
@@ -8873,6 +9907,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
8873
9907
|
description: string;
|
8874
9908
|
defaultMessage: string;
|
8875
9909
|
} | undefined;
|
9910
|
+
helperText?: {
|
9911
|
+
id: string;
|
9912
|
+
description: string;
|
9913
|
+
defaultMessage: string;
|
9914
|
+
} | undefined;
|
8876
9915
|
hideLabel?: boolean | undefined;
|
8877
9916
|
configuration?: {
|
8878
9917
|
type?: "text" | "password" | undefined;
|
@@ -8924,6 +9963,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
8924
9963
|
description: string;
|
8925
9964
|
defaultMessage: string;
|
8926
9965
|
} | undefined;
|
9966
|
+
helperText?: {
|
9967
|
+
id: string;
|
9968
|
+
description: string;
|
9969
|
+
defaultMessage: string;
|
9970
|
+
} | undefined;
|
8927
9971
|
hideLabel?: boolean | undefined;
|
8928
9972
|
configuration?: {
|
8929
9973
|
prefix?: {
|
@@ -8975,6 +10019,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
8975
10019
|
description: string;
|
8976
10020
|
defaultMessage: string;
|
8977
10021
|
} | undefined;
|
10022
|
+
helperText?: {
|
10023
|
+
id: string;
|
10024
|
+
description: string;
|
10025
|
+
defaultMessage: string;
|
10026
|
+
} | undefined;
|
8978
10027
|
hideLabel?: boolean | undefined;
|
8979
10028
|
configuration?: {
|
8980
10029
|
maxLength?: number | undefined;
|
@@ -9032,6 +10081,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
9032
10081
|
description: string;
|
9033
10082
|
defaultMessage: string;
|
9034
10083
|
} | undefined;
|
10084
|
+
helperText?: {
|
10085
|
+
id: string;
|
10086
|
+
description: string;
|
10087
|
+
defaultMessage: string;
|
10088
|
+
} | undefined;
|
9035
10089
|
hideLabel?: boolean | undefined;
|
9036
10090
|
configuration?: {
|
9037
10091
|
maxFileSize?: number | undefined;
|
@@ -9073,6 +10127,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
9073
10127
|
description: string;
|
9074
10128
|
defaultMessage: string;
|
9075
10129
|
} | undefined;
|
10130
|
+
helperText?: {
|
10131
|
+
id: string;
|
10132
|
+
description: string;
|
10133
|
+
defaultMessage: string;
|
10134
|
+
} | undefined;
|
9076
10135
|
hideLabel?: boolean | undefined;
|
9077
10136
|
configuration?: {
|
9078
10137
|
maxLength?: number | undefined;
|
@@ -9113,6 +10172,60 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
9113
10172
|
description: string;
|
9114
10173
|
defaultMessage: string;
|
9115
10174
|
} | undefined;
|
10175
|
+
helperText?: {
|
10176
|
+
id: string;
|
10177
|
+
description: string;
|
10178
|
+
defaultMessage: string;
|
10179
|
+
} | undefined;
|
10180
|
+
hideLabel?: boolean | undefined;
|
10181
|
+
configuration?: {
|
10182
|
+
notice?: {
|
10183
|
+
id: string;
|
10184
|
+
description: string;
|
10185
|
+
defaultMessage: string;
|
10186
|
+
} | undefined;
|
10187
|
+
} | undefined;
|
10188
|
+
} | {
|
10189
|
+
type: "DATE_RANGE";
|
10190
|
+
id: string;
|
10191
|
+
label: {
|
10192
|
+
id: string;
|
10193
|
+
description: string;
|
10194
|
+
defaultMessage: string;
|
10195
|
+
};
|
10196
|
+
parent?: {
|
10197
|
+
_fieldId?: string | undefined;
|
10198
|
+
} | undefined;
|
10199
|
+
validation?: {
|
10200
|
+
message: {
|
10201
|
+
id: string;
|
10202
|
+
description: string;
|
10203
|
+
defaultMessage: string;
|
10204
|
+
};
|
10205
|
+
validator: import(".").JSONSchema;
|
10206
|
+
}[] | undefined;
|
10207
|
+
required?: boolean | undefined;
|
10208
|
+
defaultValue?: string | [string, string] | undefined;
|
10209
|
+
conditionals?: ({
|
10210
|
+
type: "SHOW";
|
10211
|
+
conditional: import(".").JSONSchema;
|
10212
|
+
} | {
|
10213
|
+
type: "ENABLE";
|
10214
|
+
conditional: import(".").JSONSchema;
|
10215
|
+
} | {
|
10216
|
+
type: "DISPLAY_ON_REVIEW";
|
10217
|
+
conditional: import(".").JSONSchema;
|
10218
|
+
})[] | undefined;
|
10219
|
+
placeholder?: {
|
10220
|
+
id: string;
|
10221
|
+
description: string;
|
10222
|
+
defaultMessage: string;
|
10223
|
+
} | undefined;
|
10224
|
+
helperText?: {
|
10225
|
+
id: string;
|
10226
|
+
description: string;
|
10227
|
+
defaultMessage: string;
|
10228
|
+
} | undefined;
|
9116
10229
|
hideLabel?: boolean | undefined;
|
9117
10230
|
configuration?: {
|
9118
10231
|
notice?: {
|
@@ -9157,6 +10270,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
9157
10270
|
description: string;
|
9158
10271
|
defaultMessage: string;
|
9159
10272
|
} | undefined;
|
10273
|
+
helperText?: {
|
10274
|
+
id: string;
|
10275
|
+
description: string;
|
10276
|
+
defaultMessage: string;
|
10277
|
+
} | undefined;
|
9160
10278
|
hideLabel?: boolean | undefined;
|
9161
10279
|
configuration?: {
|
9162
10280
|
styles?: {
|
@@ -9199,6 +10317,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
9199
10317
|
description: string;
|
9200
10318
|
defaultMessage: string;
|
9201
10319
|
} | undefined;
|
10320
|
+
helperText?: {
|
10321
|
+
id: string;
|
10322
|
+
description: string;
|
10323
|
+
defaultMessage: string;
|
10324
|
+
} | undefined;
|
9202
10325
|
hideLabel?: boolean | undefined;
|
9203
10326
|
} | {
|
9204
10327
|
type: "FILE";
|
@@ -9236,6 +10359,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
9236
10359
|
description: string;
|
9237
10360
|
defaultMessage: string;
|
9238
10361
|
} | undefined;
|
10362
|
+
helperText?: {
|
10363
|
+
id: string;
|
10364
|
+
description: string;
|
10365
|
+
defaultMessage: string;
|
10366
|
+
} | undefined;
|
9239
10367
|
hideLabel?: boolean | undefined;
|
9240
10368
|
configuration?: {
|
9241
10369
|
maxFileSize?: number | undefined;
|
@@ -9293,6 +10421,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
9293
10421
|
description: string;
|
9294
10422
|
defaultMessage: string;
|
9295
10423
|
} | undefined;
|
10424
|
+
helperText?: {
|
10425
|
+
id: string;
|
10426
|
+
description: string;
|
10427
|
+
defaultMessage: string;
|
10428
|
+
} | undefined;
|
9296
10429
|
hideLabel?: boolean | undefined;
|
9297
10430
|
configuration?: {
|
9298
10431
|
styles?: {
|
@@ -9340,6 +10473,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
9340
10473
|
description: string;
|
9341
10474
|
defaultMessage: string;
|
9342
10475
|
} | undefined;
|
10476
|
+
helperText?: {
|
10477
|
+
id: string;
|
10478
|
+
description: string;
|
10479
|
+
defaultMessage: string;
|
10480
|
+
} | undefined;
|
9343
10481
|
hideLabel?: boolean | undefined;
|
9344
10482
|
configuration?: {
|
9345
10483
|
styles?: {
|
@@ -9390,6 +10528,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
9390
10528
|
description: string;
|
9391
10529
|
defaultMessage: string;
|
9392
10530
|
} | undefined;
|
10531
|
+
helperText?: {
|
10532
|
+
id: string;
|
10533
|
+
description: string;
|
10534
|
+
defaultMessage: string;
|
10535
|
+
} | undefined;
|
9393
10536
|
hideLabel?: boolean | undefined;
|
9394
10537
|
} | {
|
9395
10538
|
type: "CHECKBOX";
|
@@ -9427,6 +10570,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
9427
10570
|
description: string;
|
9428
10571
|
defaultMessage: string;
|
9429
10572
|
} | undefined;
|
10573
|
+
helperText?: {
|
10574
|
+
id: string;
|
10575
|
+
description: string;
|
10576
|
+
defaultMessage: string;
|
10577
|
+
} | undefined;
|
9430
10578
|
hideLabel?: boolean | undefined;
|
9431
10579
|
} | {
|
9432
10580
|
type: "COUNTRY";
|
@@ -9464,6 +10612,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
9464
10612
|
description: string;
|
9465
10613
|
defaultMessage: string;
|
9466
10614
|
} | undefined;
|
10615
|
+
helperText?: {
|
10616
|
+
id: string;
|
10617
|
+
description: string;
|
10618
|
+
defaultMessage: string;
|
10619
|
+
} | undefined;
|
9467
10620
|
hideLabel?: boolean | undefined;
|
9468
10621
|
} | {
|
9469
10622
|
type: "ADMINISTRATIVE_AREA";
|
@@ -9507,6 +10660,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
9507
10660
|
description: string;
|
9508
10661
|
defaultMessage: string;
|
9509
10662
|
} | undefined;
|
10663
|
+
helperText?: {
|
10664
|
+
id: string;
|
10665
|
+
description: string;
|
10666
|
+
defaultMessage: string;
|
10667
|
+
} | undefined;
|
9510
10668
|
hideLabel?: boolean | undefined;
|
9511
10669
|
} | {
|
9512
10670
|
type: "LOCATION";
|
@@ -9544,6 +10702,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
9544
10702
|
description: string;
|
9545
10703
|
defaultMessage: string;
|
9546
10704
|
} | undefined;
|
10705
|
+
helperText?: {
|
10706
|
+
id: string;
|
10707
|
+
description: string;
|
10708
|
+
defaultMessage: string;
|
10709
|
+
} | undefined;
|
9547
10710
|
hideLabel?: boolean | undefined;
|
9548
10711
|
} | {
|
9549
10712
|
type: "FILE_WITH_OPTIONS";
|
@@ -9589,6 +10752,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
9589
10752
|
description: string;
|
9590
10753
|
defaultMessage: string;
|
9591
10754
|
} | undefined;
|
10755
|
+
helperText?: {
|
10756
|
+
id: string;
|
10757
|
+
description: string;
|
10758
|
+
defaultMessage: string;
|
10759
|
+
} | undefined;
|
9592
10760
|
hideLabel?: boolean | undefined;
|
9593
10761
|
configuration?: {
|
9594
10762
|
maxFileSize?: number | undefined;
|
@@ -9630,6 +10798,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
9630
10798
|
description: string;
|
9631
10799
|
defaultMessage: string;
|
9632
10800
|
} | undefined;
|
10801
|
+
helperText?: {
|
10802
|
+
id: string;
|
10803
|
+
description: string;
|
10804
|
+
defaultMessage: string;
|
10805
|
+
} | undefined;
|
9633
10806
|
hideLabel?: boolean | undefined;
|
9634
10807
|
} | {
|
9635
10808
|
type: "OFFICE";
|
@@ -9667,6 +10840,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
9667
10840
|
description: string;
|
9668
10841
|
defaultMessage: string;
|
9669
10842
|
} | undefined;
|
10843
|
+
helperText?: {
|
10844
|
+
id: string;
|
10845
|
+
description: string;
|
10846
|
+
defaultMessage: string;
|
10847
|
+
} | undefined;
|
9670
10848
|
hideLabel?: boolean | undefined;
|
9671
10849
|
} | {
|
9672
10850
|
type: "ADDRESS";
|
@@ -9732,6 +10910,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
9732
10910
|
description: string;
|
9733
10911
|
defaultMessage: string;
|
9734
10912
|
} | undefined;
|
10913
|
+
helperText?: {
|
10914
|
+
id: string;
|
10915
|
+
description: string;
|
10916
|
+
defaultMessage: string;
|
10917
|
+
} | undefined;
|
9735
10918
|
hideLabel?: boolean | undefined;
|
9736
10919
|
} | {
|
9737
10920
|
type: "DATA";
|
@@ -9790,6 +10973,11 @@ export declare const VerificationPageConfig: z.ZodObject<z.objectUtil.extendShap
|
|
9790
10973
|
description: string;
|
9791
10974
|
defaultMessage: string;
|
9792
10975
|
} | undefined;
|
10976
|
+
helperText?: {
|
10977
|
+
id: string;
|
10978
|
+
description: string;
|
10979
|
+
defaultMessage: string;
|
10980
|
+
} | undefined;
|
9793
10981
|
hideLabel?: boolean | undefined;
|
9794
10982
|
})[];
|
9795
10983
|
conditional?: import(".").JSONSchema | undefined;
|