@opencrvs/toolkit 1.8.0-rc.ff0a1b5 → 1.8.0-rc.ff0b26c
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/commons/api/router.d.ts +2923 -7
- package/dist/commons/events/ActionConfig.d.ts +8022 -1007
- package/dist/commons/events/AdvancedSearchConfig.d.ts +603 -12
- package/dist/commons/events/EventConfig.d.ts +3622 -113
- package/dist/commons/events/EventIndex.d.ts +318 -45
- package/dist/commons/events/EventMetadata.d.ts +1 -0
- package/dist/commons/events/FieldConfig.d.ts +517 -0
- package/dist/commons/events/FormConfig.d.ts +3641 -467
- package/dist/commons/events/PageConfig.d.ts +782 -0
- package/dist/commons/events/WorkqueueConfig.d.ts +344 -52
- package/dist/commons/events/defineConfig.d.ts +253 -1
- package/dist/commons/events/event.d.ts +35 -8
- package/dist/commons/events/field.d.ts +21 -7
- package/dist/commons/events/scopes.d.ts +20 -1
- package/dist/commons/events/test.utils.d.ts +3 -3
- package/dist/commons/events/utils.d.ts +115 -0
- package/dist/events/index.js +429 -121
- package/dist/scopes/index.d.ts +94 -6
- package/dist/scopes/index.js +42 -21
- package/package.json +1 -1
@@ -36,6 +36,7 @@ export declare function getDeclarationPages(configuration: EventConfig): {
|
|
36
36
|
conditional: import(".").JSONSchema;
|
37
37
|
})[] | undefined;
|
38
38
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
39
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
39
40
|
hideLabel?: boolean | undefined;
|
40
41
|
} | {
|
41
42
|
type: "TEXT";
|
@@ -61,6 +62,7 @@ export declare function getDeclarationPages(configuration: EventConfig): {
|
|
61
62
|
conditional: import(".").JSONSchema;
|
62
63
|
})[] | undefined;
|
63
64
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
65
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
64
66
|
hideLabel?: boolean | undefined;
|
65
67
|
configuration?: {
|
66
68
|
type?: "text" | "password" | undefined;
|
@@ -92,6 +94,7 @@ export declare function getDeclarationPages(configuration: EventConfig): {
|
|
92
94
|
conditional: import(".").JSONSchema;
|
93
95
|
})[] | undefined;
|
94
96
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
97
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
95
98
|
hideLabel?: boolean | undefined;
|
96
99
|
configuration?: {
|
97
100
|
prefix?: import("./TranslationConfig").TranslationConfig | undefined;
|
@@ -123,6 +126,7 @@ export declare function getDeclarationPages(configuration: EventConfig): {
|
|
123
126
|
conditional: import(".").JSONSchema;
|
124
127
|
})[] | undefined;
|
125
128
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
129
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
126
130
|
hideLabel?: boolean | undefined;
|
127
131
|
configuration?: {
|
128
132
|
maxLength?: number | undefined;
|
@@ -160,6 +164,7 @@ export declare function getDeclarationPages(configuration: EventConfig): {
|
|
160
164
|
conditional: import(".").JSONSchema;
|
161
165
|
})[] | undefined;
|
162
166
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
167
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
163
168
|
hideLabel?: boolean | undefined;
|
164
169
|
} | {
|
165
170
|
type: "EMAIL";
|
@@ -185,6 +190,7 @@ export declare function getDeclarationPages(configuration: EventConfig): {
|
|
185
190
|
conditional: import(".").JSONSchema;
|
186
191
|
})[] | undefined;
|
187
192
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
193
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
188
194
|
hideLabel?: boolean | undefined;
|
189
195
|
configuration?: {
|
190
196
|
maxLength?: number | undefined;
|
@@ -213,6 +219,7 @@ export declare function getDeclarationPages(configuration: EventConfig): {
|
|
213
219
|
conditional: import(".").JSONSchema;
|
214
220
|
})[] | undefined;
|
215
221
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
222
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
216
223
|
hideLabel?: boolean | undefined;
|
217
224
|
configuration?: {
|
218
225
|
notice?: import("./TranslationConfig").TranslationConfig | undefined;
|
@@ -241,6 +248,7 @@ export declare function getDeclarationPages(configuration: EventConfig): {
|
|
241
248
|
conditional: import(".").JSONSchema;
|
242
249
|
})[] | undefined;
|
243
250
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
251
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
244
252
|
hideLabel?: boolean | undefined;
|
245
253
|
configuration?: {
|
246
254
|
notice?: import("./TranslationConfig").TranslationConfig | undefined;
|
@@ -274,6 +282,7 @@ export declare function getDeclarationPages(configuration: EventConfig): {
|
|
274
282
|
conditional: import(".").JSONSchema;
|
275
283
|
})[] | undefined;
|
276
284
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
285
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
277
286
|
hideLabel?: boolean | undefined;
|
278
287
|
} | {
|
279
288
|
type: "PAGE_HEADER";
|
@@ -299,6 +308,7 @@ export declare function getDeclarationPages(configuration: EventConfig): {
|
|
299
308
|
conditional: import(".").JSONSchema;
|
300
309
|
})[] | undefined;
|
301
310
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
311
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
302
312
|
hideLabel?: boolean | undefined;
|
303
313
|
} | {
|
304
314
|
type: "FILE";
|
@@ -332,6 +342,7 @@ export declare function getDeclarationPages(configuration: EventConfig): {
|
|
332
342
|
conditional: import(".").JSONSchema;
|
333
343
|
})[] | undefined;
|
334
344
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
345
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
335
346
|
hideLabel?: boolean | undefined;
|
336
347
|
} | {
|
337
348
|
type: "RADIO_GROUP";
|
@@ -361,6 +372,7 @@ export declare function getDeclarationPages(configuration: EventConfig): {
|
|
361
372
|
conditional: import(".").JSONSchema;
|
362
373
|
})[] | undefined;
|
363
374
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
375
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
364
376
|
hideLabel?: boolean | undefined;
|
365
377
|
configuration?: {
|
366
378
|
styles?: {
|
@@ -397,6 +409,7 @@ export declare function getDeclarationPages(configuration: EventConfig): {
|
|
397
409
|
conditional: import(".").JSONSchema;
|
398
410
|
})[] | undefined;
|
399
411
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
412
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
400
413
|
hideLabel?: boolean | undefined;
|
401
414
|
} | {
|
402
415
|
type: "SELECT";
|
@@ -426,6 +439,7 @@ export declare function getDeclarationPages(configuration: EventConfig): {
|
|
426
439
|
conditional: import(".").JSONSchema;
|
427
440
|
})[] | undefined;
|
428
441
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
442
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
429
443
|
hideLabel?: boolean | undefined;
|
430
444
|
} | {
|
431
445
|
type: "CHECKBOX";
|
@@ -451,6 +465,7 @@ export declare function getDeclarationPages(configuration: EventConfig): {
|
|
451
465
|
conditional: import(".").JSONSchema;
|
452
466
|
})[] | undefined;
|
453
467
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
468
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
454
469
|
hideLabel?: boolean | undefined;
|
455
470
|
} | {
|
456
471
|
type: "COUNTRY";
|
@@ -476,6 +491,7 @@ export declare function getDeclarationPages(configuration: EventConfig): {
|
|
476
491
|
conditional: import(".").JSONSchema;
|
477
492
|
})[] | undefined;
|
478
493
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
494
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
479
495
|
hideLabel?: boolean | undefined;
|
480
496
|
} | {
|
481
497
|
type: "ADMINISTRATIVE_AREA";
|
@@ -507,6 +523,7 @@ export declare function getDeclarationPages(configuration: EventConfig): {
|
|
507
523
|
conditional: import(".").JSONSchema;
|
508
524
|
})[] | undefined;
|
509
525
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
526
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
510
527
|
hideLabel?: boolean | undefined;
|
511
528
|
} | {
|
512
529
|
type: "LOCATION";
|
@@ -532,6 +549,7 @@ export declare function getDeclarationPages(configuration: EventConfig): {
|
|
532
549
|
conditional: import(".").JSONSchema;
|
533
550
|
})[] | undefined;
|
534
551
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
552
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
535
553
|
hideLabel?: boolean | undefined;
|
536
554
|
} | {
|
537
555
|
type: "FILE_WITH_OPTIONS";
|
@@ -565,6 +583,7 @@ export declare function getDeclarationPages(configuration: EventConfig): {
|
|
565
583
|
conditional: import(".").JSONSchema;
|
566
584
|
})[] | undefined;
|
567
585
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
586
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
568
587
|
hideLabel?: boolean | undefined;
|
569
588
|
} | {
|
570
589
|
type: "FACILITY";
|
@@ -590,6 +609,7 @@ export declare function getDeclarationPages(configuration: EventConfig): {
|
|
590
609
|
conditional: import(".").JSONSchema;
|
591
610
|
})[] | undefined;
|
592
611
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
612
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
593
613
|
hideLabel?: boolean | undefined;
|
594
614
|
} | {
|
595
615
|
type: "OFFICE";
|
@@ -615,6 +635,7 @@ export declare function getDeclarationPages(configuration: EventConfig): {
|
|
615
635
|
conditional: import(".").JSONSchema;
|
616
636
|
})[] | undefined;
|
617
637
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
638
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
618
639
|
hideLabel?: boolean | undefined;
|
619
640
|
} | {
|
620
641
|
type: "ADDRESS";
|
@@ -668,6 +689,7 @@ export declare function getDeclarationPages(configuration: EventConfig): {
|
|
668
689
|
conditional: import(".").JSONSchema;
|
669
690
|
})[] | undefined;
|
670
691
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
692
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
671
693
|
hideLabel?: boolean | undefined;
|
672
694
|
} | {
|
673
695
|
type: "DATA";
|
@@ -702,6 +724,7 @@ export declare function getDeclarationPages(configuration: EventConfig): {
|
|
702
724
|
conditional: import(".").JSONSchema;
|
703
725
|
})[] | undefined;
|
704
726
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
727
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
705
728
|
hideLabel?: boolean | undefined;
|
706
729
|
})[];
|
707
730
|
conditional?: import(".").JSONSchema | undefined;
|
@@ -736,6 +759,7 @@ export declare function getDeclaration(configuration: EventConfig): {
|
|
736
759
|
conditional: import(".").JSONSchema;
|
737
760
|
})[] | undefined;
|
738
761
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
762
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
739
763
|
hideLabel?: boolean | undefined;
|
740
764
|
} | {
|
741
765
|
type: "TEXT";
|
@@ -761,6 +785,7 @@ export declare function getDeclaration(configuration: EventConfig): {
|
|
761
785
|
conditional: import(".").JSONSchema;
|
762
786
|
})[] | undefined;
|
763
787
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
788
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
764
789
|
hideLabel?: boolean | undefined;
|
765
790
|
configuration?: {
|
766
791
|
type?: "text" | "password" | undefined;
|
@@ -792,6 +817,7 @@ export declare function getDeclaration(configuration: EventConfig): {
|
|
792
817
|
conditional: import(".").JSONSchema;
|
793
818
|
})[] | undefined;
|
794
819
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
820
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
795
821
|
hideLabel?: boolean | undefined;
|
796
822
|
configuration?: {
|
797
823
|
prefix?: import("./TranslationConfig").TranslationConfig | undefined;
|
@@ -823,6 +849,7 @@ export declare function getDeclaration(configuration: EventConfig): {
|
|
823
849
|
conditional: import(".").JSONSchema;
|
824
850
|
})[] | undefined;
|
825
851
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
852
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
826
853
|
hideLabel?: boolean | undefined;
|
827
854
|
configuration?: {
|
828
855
|
maxLength?: number | undefined;
|
@@ -860,6 +887,7 @@ export declare function getDeclaration(configuration: EventConfig): {
|
|
860
887
|
conditional: import(".").JSONSchema;
|
861
888
|
})[] | undefined;
|
862
889
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
890
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
863
891
|
hideLabel?: boolean | undefined;
|
864
892
|
} | {
|
865
893
|
type: "EMAIL";
|
@@ -885,6 +913,7 @@ export declare function getDeclaration(configuration: EventConfig): {
|
|
885
913
|
conditional: import(".").JSONSchema;
|
886
914
|
})[] | undefined;
|
887
915
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
916
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
888
917
|
hideLabel?: boolean | undefined;
|
889
918
|
configuration?: {
|
890
919
|
maxLength?: number | undefined;
|
@@ -913,6 +942,7 @@ export declare function getDeclaration(configuration: EventConfig): {
|
|
913
942
|
conditional: import(".").JSONSchema;
|
914
943
|
})[] | undefined;
|
915
944
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
945
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
916
946
|
hideLabel?: boolean | undefined;
|
917
947
|
configuration?: {
|
918
948
|
notice?: import("./TranslationConfig").TranslationConfig | undefined;
|
@@ -941,6 +971,7 @@ export declare function getDeclaration(configuration: EventConfig): {
|
|
941
971
|
conditional: import(".").JSONSchema;
|
942
972
|
})[] | undefined;
|
943
973
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
974
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
944
975
|
hideLabel?: boolean | undefined;
|
945
976
|
configuration?: {
|
946
977
|
notice?: import("./TranslationConfig").TranslationConfig | undefined;
|
@@ -974,6 +1005,7 @@ export declare function getDeclaration(configuration: EventConfig): {
|
|
974
1005
|
conditional: import(".").JSONSchema;
|
975
1006
|
})[] | undefined;
|
976
1007
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1008
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
977
1009
|
hideLabel?: boolean | undefined;
|
978
1010
|
} | {
|
979
1011
|
type: "PAGE_HEADER";
|
@@ -999,6 +1031,7 @@ export declare function getDeclaration(configuration: EventConfig): {
|
|
999
1031
|
conditional: import(".").JSONSchema;
|
1000
1032
|
})[] | undefined;
|
1001
1033
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1034
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1002
1035
|
hideLabel?: boolean | undefined;
|
1003
1036
|
} | {
|
1004
1037
|
type: "FILE";
|
@@ -1032,6 +1065,7 @@ export declare function getDeclaration(configuration: EventConfig): {
|
|
1032
1065
|
conditional: import(".").JSONSchema;
|
1033
1066
|
})[] | undefined;
|
1034
1067
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1068
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1035
1069
|
hideLabel?: boolean | undefined;
|
1036
1070
|
} | {
|
1037
1071
|
type: "RADIO_GROUP";
|
@@ -1061,6 +1095,7 @@ export declare function getDeclaration(configuration: EventConfig): {
|
|
1061
1095
|
conditional: import(".").JSONSchema;
|
1062
1096
|
})[] | undefined;
|
1063
1097
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1098
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1064
1099
|
hideLabel?: boolean | undefined;
|
1065
1100
|
configuration?: {
|
1066
1101
|
styles?: {
|
@@ -1097,6 +1132,7 @@ export declare function getDeclaration(configuration: EventConfig): {
|
|
1097
1132
|
conditional: import(".").JSONSchema;
|
1098
1133
|
})[] | undefined;
|
1099
1134
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1135
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1100
1136
|
hideLabel?: boolean | undefined;
|
1101
1137
|
} | {
|
1102
1138
|
type: "SELECT";
|
@@ -1126,6 +1162,7 @@ export declare function getDeclaration(configuration: EventConfig): {
|
|
1126
1162
|
conditional: import(".").JSONSchema;
|
1127
1163
|
})[] | undefined;
|
1128
1164
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1165
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1129
1166
|
hideLabel?: boolean | undefined;
|
1130
1167
|
} | {
|
1131
1168
|
type: "CHECKBOX";
|
@@ -1151,6 +1188,7 @@ export declare function getDeclaration(configuration: EventConfig): {
|
|
1151
1188
|
conditional: import(".").JSONSchema;
|
1152
1189
|
})[] | undefined;
|
1153
1190
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1191
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1154
1192
|
hideLabel?: boolean | undefined;
|
1155
1193
|
} | {
|
1156
1194
|
type: "COUNTRY";
|
@@ -1176,6 +1214,7 @@ export declare function getDeclaration(configuration: EventConfig): {
|
|
1176
1214
|
conditional: import(".").JSONSchema;
|
1177
1215
|
})[] | undefined;
|
1178
1216
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1217
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1179
1218
|
hideLabel?: boolean | undefined;
|
1180
1219
|
} | {
|
1181
1220
|
type: "ADMINISTRATIVE_AREA";
|
@@ -1207,6 +1246,7 @@ export declare function getDeclaration(configuration: EventConfig): {
|
|
1207
1246
|
conditional: import(".").JSONSchema;
|
1208
1247
|
})[] | undefined;
|
1209
1248
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1249
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1210
1250
|
hideLabel?: boolean | undefined;
|
1211
1251
|
} | {
|
1212
1252
|
type: "LOCATION";
|
@@ -1232,6 +1272,7 @@ export declare function getDeclaration(configuration: EventConfig): {
|
|
1232
1272
|
conditional: import(".").JSONSchema;
|
1233
1273
|
})[] | undefined;
|
1234
1274
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1275
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1235
1276
|
hideLabel?: boolean | undefined;
|
1236
1277
|
} | {
|
1237
1278
|
type: "FILE_WITH_OPTIONS";
|
@@ -1265,6 +1306,7 @@ export declare function getDeclaration(configuration: EventConfig): {
|
|
1265
1306
|
conditional: import(".").JSONSchema;
|
1266
1307
|
})[] | undefined;
|
1267
1308
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1309
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1268
1310
|
hideLabel?: boolean | undefined;
|
1269
1311
|
} | {
|
1270
1312
|
type: "FACILITY";
|
@@ -1290,6 +1332,7 @@ export declare function getDeclaration(configuration: EventConfig): {
|
|
1290
1332
|
conditional: import(".").JSONSchema;
|
1291
1333
|
})[] | undefined;
|
1292
1334
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1335
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1293
1336
|
hideLabel?: boolean | undefined;
|
1294
1337
|
} | {
|
1295
1338
|
type: "OFFICE";
|
@@ -1315,6 +1358,7 @@ export declare function getDeclaration(configuration: EventConfig): {
|
|
1315
1358
|
conditional: import(".").JSONSchema;
|
1316
1359
|
})[] | undefined;
|
1317
1360
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1361
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1318
1362
|
hideLabel?: boolean | undefined;
|
1319
1363
|
} | {
|
1320
1364
|
type: "ADDRESS";
|
@@ -1368,6 +1412,7 @@ export declare function getDeclaration(configuration: EventConfig): {
|
|
1368
1412
|
conditional: import(".").JSONSchema;
|
1369
1413
|
})[] | undefined;
|
1370
1414
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1415
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1371
1416
|
hideLabel?: boolean | undefined;
|
1372
1417
|
} | {
|
1373
1418
|
type: "DATA";
|
@@ -1402,6 +1447,7 @@ export declare function getDeclaration(configuration: EventConfig): {
|
|
1402
1447
|
conditional: import(".").JSONSchema;
|
1403
1448
|
})[] | undefined;
|
1404
1449
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1450
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1405
1451
|
hideLabel?: boolean | undefined;
|
1406
1452
|
})[];
|
1407
1453
|
conditional?: import(".").JSONSchema | undefined;
|
@@ -1431,6 +1477,7 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
|
|
1431
1477
|
conditional: import(".").JSONSchema;
|
1432
1478
|
})[] | undefined;
|
1433
1479
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1480
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1434
1481
|
hideLabel?: boolean | undefined;
|
1435
1482
|
} | {
|
1436
1483
|
type: "TEXT";
|
@@ -1456,6 +1503,7 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
|
|
1456
1503
|
conditional: import(".").JSONSchema;
|
1457
1504
|
})[] | undefined;
|
1458
1505
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1506
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1459
1507
|
hideLabel?: boolean | undefined;
|
1460
1508
|
configuration?: {
|
1461
1509
|
type?: "text" | "password" | undefined;
|
@@ -1487,6 +1535,7 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
|
|
1487
1535
|
conditional: import(".").JSONSchema;
|
1488
1536
|
})[] | undefined;
|
1489
1537
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1538
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1490
1539
|
hideLabel?: boolean | undefined;
|
1491
1540
|
configuration?: {
|
1492
1541
|
prefix?: import("./TranslationConfig").TranslationConfig | undefined;
|
@@ -1518,6 +1567,7 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
|
|
1518
1567
|
conditional: import(".").JSONSchema;
|
1519
1568
|
})[] | undefined;
|
1520
1569
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1570
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1521
1571
|
hideLabel?: boolean | undefined;
|
1522
1572
|
configuration?: {
|
1523
1573
|
maxLength?: number | undefined;
|
@@ -1555,6 +1605,7 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
|
|
1555
1605
|
conditional: import(".").JSONSchema;
|
1556
1606
|
})[] | undefined;
|
1557
1607
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1608
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1558
1609
|
hideLabel?: boolean | undefined;
|
1559
1610
|
} | {
|
1560
1611
|
type: "EMAIL";
|
@@ -1580,6 +1631,7 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
|
|
1580
1631
|
conditional: import(".").JSONSchema;
|
1581
1632
|
})[] | undefined;
|
1582
1633
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1634
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1583
1635
|
hideLabel?: boolean | undefined;
|
1584
1636
|
configuration?: {
|
1585
1637
|
maxLength?: number | undefined;
|
@@ -1608,6 +1660,7 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
|
|
1608
1660
|
conditional: import(".").JSONSchema;
|
1609
1661
|
})[] | undefined;
|
1610
1662
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1663
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1611
1664
|
hideLabel?: boolean | undefined;
|
1612
1665
|
configuration?: {
|
1613
1666
|
notice?: import("./TranslationConfig").TranslationConfig | undefined;
|
@@ -1636,6 +1689,7 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
|
|
1636
1689
|
conditional: import(".").JSONSchema;
|
1637
1690
|
})[] | undefined;
|
1638
1691
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1692
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1639
1693
|
hideLabel?: boolean | undefined;
|
1640
1694
|
configuration?: {
|
1641
1695
|
notice?: import("./TranslationConfig").TranslationConfig | undefined;
|
@@ -1669,6 +1723,7 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
|
|
1669
1723
|
conditional: import(".").JSONSchema;
|
1670
1724
|
})[] | undefined;
|
1671
1725
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1726
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1672
1727
|
hideLabel?: boolean | undefined;
|
1673
1728
|
} | {
|
1674
1729
|
type: "PAGE_HEADER";
|
@@ -1694,6 +1749,7 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
|
|
1694
1749
|
conditional: import(".").JSONSchema;
|
1695
1750
|
})[] | undefined;
|
1696
1751
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1752
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1697
1753
|
hideLabel?: boolean | undefined;
|
1698
1754
|
} | {
|
1699
1755
|
type: "FILE";
|
@@ -1727,6 +1783,7 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
|
|
1727
1783
|
conditional: import(".").JSONSchema;
|
1728
1784
|
})[] | undefined;
|
1729
1785
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1786
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1730
1787
|
hideLabel?: boolean | undefined;
|
1731
1788
|
} | {
|
1732
1789
|
type: "RADIO_GROUP";
|
@@ -1756,6 +1813,7 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
|
|
1756
1813
|
conditional: import(".").JSONSchema;
|
1757
1814
|
})[] | undefined;
|
1758
1815
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1816
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1759
1817
|
hideLabel?: boolean | undefined;
|
1760
1818
|
configuration?: {
|
1761
1819
|
styles?: {
|
@@ -1792,6 +1850,7 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
|
|
1792
1850
|
conditional: import(".").JSONSchema;
|
1793
1851
|
})[] | undefined;
|
1794
1852
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1853
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1795
1854
|
hideLabel?: boolean | undefined;
|
1796
1855
|
} | {
|
1797
1856
|
type: "SELECT";
|
@@ -1821,6 +1880,7 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
|
|
1821
1880
|
conditional: import(".").JSONSchema;
|
1822
1881
|
})[] | undefined;
|
1823
1882
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1883
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1824
1884
|
hideLabel?: boolean | undefined;
|
1825
1885
|
} | {
|
1826
1886
|
type: "CHECKBOX";
|
@@ -1846,6 +1906,7 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
|
|
1846
1906
|
conditional: import(".").JSONSchema;
|
1847
1907
|
})[] | undefined;
|
1848
1908
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1909
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1849
1910
|
hideLabel?: boolean | undefined;
|
1850
1911
|
} | {
|
1851
1912
|
type: "COUNTRY";
|
@@ -1871,6 +1932,7 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
|
|
1871
1932
|
conditional: import(".").JSONSchema;
|
1872
1933
|
})[] | undefined;
|
1873
1934
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1935
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1874
1936
|
hideLabel?: boolean | undefined;
|
1875
1937
|
} | {
|
1876
1938
|
type: "ADMINISTRATIVE_AREA";
|
@@ -1902,6 +1964,7 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
|
|
1902
1964
|
conditional: import(".").JSONSchema;
|
1903
1965
|
})[] | undefined;
|
1904
1966
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1967
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1905
1968
|
hideLabel?: boolean | undefined;
|
1906
1969
|
} | {
|
1907
1970
|
type: "LOCATION";
|
@@ -1927,6 +1990,7 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
|
|
1927
1990
|
conditional: import(".").JSONSchema;
|
1928
1991
|
})[] | undefined;
|
1929
1992
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1993
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1930
1994
|
hideLabel?: boolean | undefined;
|
1931
1995
|
} | {
|
1932
1996
|
type: "FILE_WITH_OPTIONS";
|
@@ -1960,6 +2024,7 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
|
|
1960
2024
|
conditional: import(".").JSONSchema;
|
1961
2025
|
})[] | undefined;
|
1962
2026
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2027
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1963
2028
|
hideLabel?: boolean | undefined;
|
1964
2029
|
} | {
|
1965
2030
|
type: "FACILITY";
|
@@ -1985,6 +2050,7 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
|
|
1985
2050
|
conditional: import(".").JSONSchema;
|
1986
2051
|
})[] | undefined;
|
1987
2052
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2053
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1988
2054
|
hideLabel?: boolean | undefined;
|
1989
2055
|
} | {
|
1990
2056
|
type: "OFFICE";
|
@@ -2010,6 +2076,7 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
|
|
2010
2076
|
conditional: import(".").JSONSchema;
|
2011
2077
|
})[] | undefined;
|
2012
2078
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2079
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2013
2080
|
hideLabel?: boolean | undefined;
|
2014
2081
|
} | {
|
2015
2082
|
type: "ADDRESS";
|
@@ -2063,6 +2130,7 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
|
|
2063
2130
|
conditional: import(".").JSONSchema;
|
2064
2131
|
})[] | undefined;
|
2065
2132
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2133
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2066
2134
|
hideLabel?: boolean | undefined;
|
2067
2135
|
} | {
|
2068
2136
|
type: "DATA";
|
@@ -2097,6 +2165,7 @@ export declare const getActionAnnotationFields: (actionConfig: ActionConfig) =>
|
|
2097
2165
|
conditional: import(".").JSONSchema;
|
2098
2166
|
})[] | undefined;
|
2099
2167
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2168
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2100
2169
|
hideLabel?: boolean | undefined;
|
2101
2170
|
})[];
|
2102
2171
|
/**
|
@@ -2129,6 +2198,7 @@ export declare function getActionReview(configuration: EventConfig, actionType:
|
|
2129
2198
|
conditional: import(".").JSONSchema;
|
2130
2199
|
})[] | undefined;
|
2131
2200
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2201
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2132
2202
|
hideLabel?: boolean | undefined;
|
2133
2203
|
} | {
|
2134
2204
|
type: "TEXT";
|
@@ -2154,6 +2224,7 @@ export declare function getActionReview(configuration: EventConfig, actionType:
|
|
2154
2224
|
conditional: import(".").JSONSchema;
|
2155
2225
|
})[] | undefined;
|
2156
2226
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2227
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2157
2228
|
hideLabel?: boolean | undefined;
|
2158
2229
|
configuration?: {
|
2159
2230
|
type?: "text" | "password" | undefined;
|
@@ -2185,6 +2256,7 @@ export declare function getActionReview(configuration: EventConfig, actionType:
|
|
2185
2256
|
conditional: import(".").JSONSchema;
|
2186
2257
|
})[] | undefined;
|
2187
2258
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2259
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2188
2260
|
hideLabel?: boolean | undefined;
|
2189
2261
|
configuration?: {
|
2190
2262
|
prefix?: import("./TranslationConfig").TranslationConfig | undefined;
|
@@ -2216,6 +2288,7 @@ export declare function getActionReview(configuration: EventConfig, actionType:
|
|
2216
2288
|
conditional: import(".").JSONSchema;
|
2217
2289
|
})[] | undefined;
|
2218
2290
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2291
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2219
2292
|
hideLabel?: boolean | undefined;
|
2220
2293
|
configuration?: {
|
2221
2294
|
maxLength?: number | undefined;
|
@@ -2253,6 +2326,7 @@ export declare function getActionReview(configuration: EventConfig, actionType:
|
|
2253
2326
|
conditional: import(".").JSONSchema;
|
2254
2327
|
})[] | undefined;
|
2255
2328
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2329
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2256
2330
|
hideLabel?: boolean | undefined;
|
2257
2331
|
} | {
|
2258
2332
|
type: "EMAIL";
|
@@ -2278,6 +2352,7 @@ export declare function getActionReview(configuration: EventConfig, actionType:
|
|
2278
2352
|
conditional: import(".").JSONSchema;
|
2279
2353
|
})[] | undefined;
|
2280
2354
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2355
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2281
2356
|
hideLabel?: boolean | undefined;
|
2282
2357
|
configuration?: {
|
2283
2358
|
maxLength?: number | undefined;
|
@@ -2306,6 +2381,7 @@ export declare function getActionReview(configuration: EventConfig, actionType:
|
|
2306
2381
|
conditional: import(".").JSONSchema;
|
2307
2382
|
})[] | undefined;
|
2308
2383
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2384
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2309
2385
|
hideLabel?: boolean | undefined;
|
2310
2386
|
configuration?: {
|
2311
2387
|
notice?: import("./TranslationConfig").TranslationConfig | undefined;
|
@@ -2334,6 +2410,7 @@ export declare function getActionReview(configuration: EventConfig, actionType:
|
|
2334
2410
|
conditional: import(".").JSONSchema;
|
2335
2411
|
})[] | undefined;
|
2336
2412
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2413
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2337
2414
|
hideLabel?: boolean | undefined;
|
2338
2415
|
configuration?: {
|
2339
2416
|
notice?: import("./TranslationConfig").TranslationConfig | undefined;
|
@@ -2367,6 +2444,7 @@ export declare function getActionReview(configuration: EventConfig, actionType:
|
|
2367
2444
|
conditional: import(".").JSONSchema;
|
2368
2445
|
})[] | undefined;
|
2369
2446
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2447
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2370
2448
|
hideLabel?: boolean | undefined;
|
2371
2449
|
} | {
|
2372
2450
|
type: "PAGE_HEADER";
|
@@ -2392,6 +2470,7 @@ export declare function getActionReview(configuration: EventConfig, actionType:
|
|
2392
2470
|
conditional: import(".").JSONSchema;
|
2393
2471
|
})[] | undefined;
|
2394
2472
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2473
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2395
2474
|
hideLabel?: boolean | undefined;
|
2396
2475
|
} | {
|
2397
2476
|
type: "FILE";
|
@@ -2425,6 +2504,7 @@ export declare function getActionReview(configuration: EventConfig, actionType:
|
|
2425
2504
|
conditional: import(".").JSONSchema;
|
2426
2505
|
})[] | undefined;
|
2427
2506
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2507
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2428
2508
|
hideLabel?: boolean | undefined;
|
2429
2509
|
} | {
|
2430
2510
|
type: "RADIO_GROUP";
|
@@ -2454,6 +2534,7 @@ export declare function getActionReview(configuration: EventConfig, actionType:
|
|
2454
2534
|
conditional: import(".").JSONSchema;
|
2455
2535
|
})[] | undefined;
|
2456
2536
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2537
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2457
2538
|
hideLabel?: boolean | undefined;
|
2458
2539
|
configuration?: {
|
2459
2540
|
styles?: {
|
@@ -2490,6 +2571,7 @@ export declare function getActionReview(configuration: EventConfig, actionType:
|
|
2490
2571
|
conditional: import(".").JSONSchema;
|
2491
2572
|
})[] | undefined;
|
2492
2573
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2574
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2493
2575
|
hideLabel?: boolean | undefined;
|
2494
2576
|
} | {
|
2495
2577
|
type: "SELECT";
|
@@ -2519,6 +2601,7 @@ export declare function getActionReview(configuration: EventConfig, actionType:
|
|
2519
2601
|
conditional: import(".").JSONSchema;
|
2520
2602
|
})[] | undefined;
|
2521
2603
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2604
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2522
2605
|
hideLabel?: boolean | undefined;
|
2523
2606
|
} | {
|
2524
2607
|
type: "CHECKBOX";
|
@@ -2544,6 +2627,7 @@ export declare function getActionReview(configuration: EventConfig, actionType:
|
|
2544
2627
|
conditional: import(".").JSONSchema;
|
2545
2628
|
})[] | undefined;
|
2546
2629
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2630
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2547
2631
|
hideLabel?: boolean | undefined;
|
2548
2632
|
} | {
|
2549
2633
|
type: "COUNTRY";
|
@@ -2569,6 +2653,7 @@ export declare function getActionReview(configuration: EventConfig, actionType:
|
|
2569
2653
|
conditional: import(".").JSONSchema;
|
2570
2654
|
})[] | undefined;
|
2571
2655
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2656
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2572
2657
|
hideLabel?: boolean | undefined;
|
2573
2658
|
} | {
|
2574
2659
|
type: "ADMINISTRATIVE_AREA";
|
@@ -2600,6 +2685,7 @@ export declare function getActionReview(configuration: EventConfig, actionType:
|
|
2600
2685
|
conditional: import(".").JSONSchema;
|
2601
2686
|
})[] | undefined;
|
2602
2687
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2688
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2603
2689
|
hideLabel?: boolean | undefined;
|
2604
2690
|
} | {
|
2605
2691
|
type: "LOCATION";
|
@@ -2625,6 +2711,7 @@ export declare function getActionReview(configuration: EventConfig, actionType:
|
|
2625
2711
|
conditional: import(".").JSONSchema;
|
2626
2712
|
})[] | undefined;
|
2627
2713
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2714
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2628
2715
|
hideLabel?: boolean | undefined;
|
2629
2716
|
} | {
|
2630
2717
|
type: "FILE_WITH_OPTIONS";
|
@@ -2658,6 +2745,7 @@ export declare function getActionReview(configuration: EventConfig, actionType:
|
|
2658
2745
|
conditional: import(".").JSONSchema;
|
2659
2746
|
})[] | undefined;
|
2660
2747
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2748
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2661
2749
|
hideLabel?: boolean | undefined;
|
2662
2750
|
} | {
|
2663
2751
|
type: "FACILITY";
|
@@ -2683,6 +2771,7 @@ export declare function getActionReview(configuration: EventConfig, actionType:
|
|
2683
2771
|
conditional: import(".").JSONSchema;
|
2684
2772
|
})[] | undefined;
|
2685
2773
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2774
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2686
2775
|
hideLabel?: boolean | undefined;
|
2687
2776
|
} | {
|
2688
2777
|
type: "OFFICE";
|
@@ -2708,6 +2797,7 @@ export declare function getActionReview(configuration: EventConfig, actionType:
|
|
2708
2797
|
conditional: import(".").JSONSchema;
|
2709
2798
|
})[] | undefined;
|
2710
2799
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2800
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2711
2801
|
hideLabel?: boolean | undefined;
|
2712
2802
|
} | {
|
2713
2803
|
type: "ADDRESS";
|
@@ -2761,6 +2851,7 @@ export declare function getActionReview(configuration: EventConfig, actionType:
|
|
2761
2851
|
conditional: import(".").JSONSchema;
|
2762
2852
|
})[] | undefined;
|
2763
2853
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2854
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2764
2855
|
hideLabel?: boolean | undefined;
|
2765
2856
|
} | {
|
2766
2857
|
type: "DATA";
|
@@ -2795,6 +2886,7 @@ export declare function getActionReview(configuration: EventConfig, actionType:
|
|
2795
2886
|
conditional: import(".").JSONSchema;
|
2796
2887
|
})[] | undefined;
|
2797
2888
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2889
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2798
2890
|
hideLabel?: boolean | undefined;
|
2799
2891
|
})[];
|
2800
2892
|
};
|
@@ -2822,6 +2914,7 @@ export declare function getActionReviewFields(configuration: EventConfig, action
|
|
2822
2914
|
conditional: import(".").JSONSchema;
|
2823
2915
|
})[] | undefined;
|
2824
2916
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2917
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2825
2918
|
hideLabel?: boolean | undefined;
|
2826
2919
|
} | {
|
2827
2920
|
type: "TEXT";
|
@@ -2847,6 +2940,7 @@ export declare function getActionReviewFields(configuration: EventConfig, action
|
|
2847
2940
|
conditional: import(".").JSONSchema;
|
2848
2941
|
})[] | undefined;
|
2849
2942
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2943
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2850
2944
|
hideLabel?: boolean | undefined;
|
2851
2945
|
configuration?: {
|
2852
2946
|
type?: "text" | "password" | undefined;
|
@@ -2878,6 +2972,7 @@ export declare function getActionReviewFields(configuration: EventConfig, action
|
|
2878
2972
|
conditional: import(".").JSONSchema;
|
2879
2973
|
})[] | undefined;
|
2880
2974
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2975
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2881
2976
|
hideLabel?: boolean | undefined;
|
2882
2977
|
configuration?: {
|
2883
2978
|
prefix?: import("./TranslationConfig").TranslationConfig | undefined;
|
@@ -2909,6 +3004,7 @@ export declare function getActionReviewFields(configuration: EventConfig, action
|
|
2909
3004
|
conditional: import(".").JSONSchema;
|
2910
3005
|
})[] | undefined;
|
2911
3006
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
3007
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2912
3008
|
hideLabel?: boolean | undefined;
|
2913
3009
|
configuration?: {
|
2914
3010
|
maxLength?: number | undefined;
|
@@ -2946,6 +3042,7 @@ export declare function getActionReviewFields(configuration: EventConfig, action
|
|
2946
3042
|
conditional: import(".").JSONSchema;
|
2947
3043
|
})[] | undefined;
|
2948
3044
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
3045
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2949
3046
|
hideLabel?: boolean | undefined;
|
2950
3047
|
} | {
|
2951
3048
|
type: "EMAIL";
|
@@ -2971,6 +3068,7 @@ export declare function getActionReviewFields(configuration: EventConfig, action
|
|
2971
3068
|
conditional: import(".").JSONSchema;
|
2972
3069
|
})[] | undefined;
|
2973
3070
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
3071
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2974
3072
|
hideLabel?: boolean | undefined;
|
2975
3073
|
configuration?: {
|
2976
3074
|
maxLength?: number | undefined;
|
@@ -2999,6 +3097,7 @@ export declare function getActionReviewFields(configuration: EventConfig, action
|
|
2999
3097
|
conditional: import(".").JSONSchema;
|
3000
3098
|
})[] | undefined;
|
3001
3099
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
3100
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
3002
3101
|
hideLabel?: boolean | undefined;
|
3003
3102
|
configuration?: {
|
3004
3103
|
notice?: import("./TranslationConfig").TranslationConfig | undefined;
|
@@ -3027,6 +3126,7 @@ export declare function getActionReviewFields(configuration: EventConfig, action
|
|
3027
3126
|
conditional: import(".").JSONSchema;
|
3028
3127
|
})[] | undefined;
|
3029
3128
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
3129
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
3030
3130
|
hideLabel?: boolean | undefined;
|
3031
3131
|
configuration?: {
|
3032
3132
|
notice?: import("./TranslationConfig").TranslationConfig | undefined;
|
@@ -3060,6 +3160,7 @@ export declare function getActionReviewFields(configuration: EventConfig, action
|
|
3060
3160
|
conditional: import(".").JSONSchema;
|
3061
3161
|
})[] | undefined;
|
3062
3162
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
3163
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
3063
3164
|
hideLabel?: boolean | undefined;
|
3064
3165
|
} | {
|
3065
3166
|
type: "PAGE_HEADER";
|
@@ -3085,6 +3186,7 @@ export declare function getActionReviewFields(configuration: EventConfig, action
|
|
3085
3186
|
conditional: import(".").JSONSchema;
|
3086
3187
|
})[] | undefined;
|
3087
3188
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
3189
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
3088
3190
|
hideLabel?: boolean | undefined;
|
3089
3191
|
} | {
|
3090
3192
|
type: "FILE";
|
@@ -3118,6 +3220,7 @@ export declare function getActionReviewFields(configuration: EventConfig, action
|
|
3118
3220
|
conditional: import(".").JSONSchema;
|
3119
3221
|
})[] | undefined;
|
3120
3222
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
3223
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
3121
3224
|
hideLabel?: boolean | undefined;
|
3122
3225
|
} | {
|
3123
3226
|
type: "RADIO_GROUP";
|
@@ -3147,6 +3250,7 @@ export declare function getActionReviewFields(configuration: EventConfig, action
|
|
3147
3250
|
conditional: import(".").JSONSchema;
|
3148
3251
|
})[] | undefined;
|
3149
3252
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
3253
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
3150
3254
|
hideLabel?: boolean | undefined;
|
3151
3255
|
configuration?: {
|
3152
3256
|
styles?: {
|
@@ -3183,6 +3287,7 @@ export declare function getActionReviewFields(configuration: EventConfig, action
|
|
3183
3287
|
conditional: import(".").JSONSchema;
|
3184
3288
|
})[] | undefined;
|
3185
3289
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
3290
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
3186
3291
|
hideLabel?: boolean | undefined;
|
3187
3292
|
} | {
|
3188
3293
|
type: "SELECT";
|
@@ -3212,6 +3317,7 @@ export declare function getActionReviewFields(configuration: EventConfig, action
|
|
3212
3317
|
conditional: import(".").JSONSchema;
|
3213
3318
|
})[] | undefined;
|
3214
3319
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
3320
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
3215
3321
|
hideLabel?: boolean | undefined;
|
3216
3322
|
} | {
|
3217
3323
|
type: "CHECKBOX";
|
@@ -3237,6 +3343,7 @@ export declare function getActionReviewFields(configuration: EventConfig, action
|
|
3237
3343
|
conditional: import(".").JSONSchema;
|
3238
3344
|
})[] | undefined;
|
3239
3345
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
3346
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
3240
3347
|
hideLabel?: boolean | undefined;
|
3241
3348
|
} | {
|
3242
3349
|
type: "COUNTRY";
|
@@ -3262,6 +3369,7 @@ export declare function getActionReviewFields(configuration: EventConfig, action
|
|
3262
3369
|
conditional: import(".").JSONSchema;
|
3263
3370
|
})[] | undefined;
|
3264
3371
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
3372
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
3265
3373
|
hideLabel?: boolean | undefined;
|
3266
3374
|
} | {
|
3267
3375
|
type: "ADMINISTRATIVE_AREA";
|
@@ -3293,6 +3401,7 @@ export declare function getActionReviewFields(configuration: EventConfig, action
|
|
3293
3401
|
conditional: import(".").JSONSchema;
|
3294
3402
|
})[] | undefined;
|
3295
3403
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
3404
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
3296
3405
|
hideLabel?: boolean | undefined;
|
3297
3406
|
} | {
|
3298
3407
|
type: "LOCATION";
|
@@ -3318,6 +3427,7 @@ export declare function getActionReviewFields(configuration: EventConfig, action
|
|
3318
3427
|
conditional: import(".").JSONSchema;
|
3319
3428
|
})[] | undefined;
|
3320
3429
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
3430
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
3321
3431
|
hideLabel?: boolean | undefined;
|
3322
3432
|
} | {
|
3323
3433
|
type: "FILE_WITH_OPTIONS";
|
@@ -3351,6 +3461,7 @@ export declare function getActionReviewFields(configuration: EventConfig, action
|
|
3351
3461
|
conditional: import(".").JSONSchema;
|
3352
3462
|
})[] | undefined;
|
3353
3463
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
3464
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
3354
3465
|
hideLabel?: boolean | undefined;
|
3355
3466
|
} | {
|
3356
3467
|
type: "FACILITY";
|
@@ -3376,6 +3487,7 @@ export declare function getActionReviewFields(configuration: EventConfig, action
|
|
3376
3487
|
conditional: import(".").JSONSchema;
|
3377
3488
|
})[] | undefined;
|
3378
3489
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
3490
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
3379
3491
|
hideLabel?: boolean | undefined;
|
3380
3492
|
} | {
|
3381
3493
|
type: "OFFICE";
|
@@ -3401,6 +3513,7 @@ export declare function getActionReviewFields(configuration: EventConfig, action
|
|
3401
3513
|
conditional: import(".").JSONSchema;
|
3402
3514
|
})[] | undefined;
|
3403
3515
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
3516
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
3404
3517
|
hideLabel?: boolean | undefined;
|
3405
3518
|
} | {
|
3406
3519
|
type: "ADDRESS";
|
@@ -3454,6 +3567,7 @@ export declare function getActionReviewFields(configuration: EventConfig, action
|
|
3454
3567
|
conditional: import(".").JSONSchema;
|
3455
3568
|
})[] | undefined;
|
3456
3569
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
3570
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
3457
3571
|
hideLabel?: boolean | undefined;
|
3458
3572
|
} | {
|
3459
3573
|
type: "DATA";
|
@@ -3488,6 +3602,7 @@ export declare function getActionReviewFields(configuration: EventConfig, action
|
|
3488
3602
|
conditional: import(".").JSONSchema;
|
3489
3603
|
})[] | undefined;
|
3490
3604
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
3605
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
3491
3606
|
hideLabel?: boolean | undefined;
|
3492
3607
|
})[];
|
3493
3608
|
export declare function isPageVisible(page: PageConfig, formValues: ActionUpdate): boolean;
|