@opencrvs/toolkit 1.8.0-rc.f8f3eb3 → 1.8.0-rc.faeb298
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 +242 -36
- package/dist/commons/events/ActionConfig.d.ts +1597 -387
- package/dist/commons/events/ActionInput.d.ts +0 -84
- package/dist/commons/events/Draft.d.ts +0 -3
- package/dist/commons/events/EventConfig.d.ts +1448 -96
- package/dist/commons/events/EventConfigInput.d.ts +2 -2
- package/dist/commons/events/FieldConfig.d.ts +175 -2
- package/dist/commons/events/FieldType.d.ts +6 -1
- package/dist/commons/events/FieldTypeMapping.d.ts +21 -1
- package/dist/commons/events/FormConfig.d.ts +278 -26
- package/dist/commons/events/TemplateConfig.d.ts +38 -0
- package/dist/commons/events/defineConfig.d.ts +242 -24
- package/dist/commons/events/index.d.ts +1 -0
- package/dist/commons/events/utils.d.ts +60 -6
- package/dist/events/index.js +101 -10
- package/package.json +1 -1
@@ -244,11 +244,29 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
244
244
|
label: TranslationConfig;
|
245
245
|
};
|
246
246
|
label: TranslationConfig;
|
247
|
-
pages: {
|
247
|
+
pages: ({
|
248
248
|
id: string;
|
249
249
|
title: TranslationConfig;
|
250
250
|
fields: import("./FieldConfig").Inferred[];
|
251
|
-
|
251
|
+
type?: "FORM" | undefined;
|
252
|
+
} | {
|
253
|
+
type: "VERIFICATION";
|
254
|
+
id: string;
|
255
|
+
title: TranslationConfig;
|
256
|
+
actions: {
|
257
|
+
verify: {
|
258
|
+
label: TranslationConfig;
|
259
|
+
};
|
260
|
+
cancel: {
|
261
|
+
label: TranslationConfig;
|
262
|
+
confirmation: {
|
263
|
+
title: TranslationConfig;
|
264
|
+
body: TranslationConfig;
|
265
|
+
};
|
266
|
+
};
|
267
|
+
};
|
268
|
+
fields: import("./FieldConfig").Inferred[];
|
269
|
+
})[];
|
252
270
|
review: {
|
253
271
|
title: TranslationConfig;
|
254
272
|
fields: import("./FieldConfig").Inferred[];
|
@@ -272,11 +290,29 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
272
290
|
label: TranslationConfig;
|
273
291
|
};
|
274
292
|
label: TranslationConfig;
|
275
|
-
pages: {
|
293
|
+
pages: ({
|
276
294
|
id: string;
|
277
295
|
title: TranslationConfig;
|
278
296
|
fields: import("./FieldConfig").Inferred[];
|
279
|
-
|
297
|
+
type?: "FORM" | undefined;
|
298
|
+
} | {
|
299
|
+
type: "VERIFICATION";
|
300
|
+
id: string;
|
301
|
+
title: TranslationConfig;
|
302
|
+
actions: {
|
303
|
+
verify: {
|
304
|
+
label: TranslationConfig;
|
305
|
+
};
|
306
|
+
cancel: {
|
307
|
+
label: TranslationConfig;
|
308
|
+
confirmation: {
|
309
|
+
title: TranslationConfig;
|
310
|
+
body: TranslationConfig;
|
311
|
+
};
|
312
|
+
};
|
313
|
+
};
|
314
|
+
fields: import("./FieldConfig").Inferred[];
|
315
|
+
})[];
|
280
316
|
review: {
|
281
317
|
title: TranslationConfig;
|
282
318
|
fields: import("./FieldConfig").Inferred[];
|
@@ -301,11 +337,29 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
301
337
|
label: TranslationConfig;
|
302
338
|
};
|
303
339
|
label: TranslationConfig;
|
304
|
-
pages: {
|
340
|
+
pages: ({
|
305
341
|
id: string;
|
306
342
|
title: TranslationConfig;
|
307
343
|
fields: import("./FieldConfig").Inferred[];
|
308
|
-
|
344
|
+
type?: "FORM" | undefined;
|
345
|
+
} | {
|
346
|
+
type: "VERIFICATION";
|
347
|
+
id: string;
|
348
|
+
title: TranslationConfig;
|
349
|
+
actions: {
|
350
|
+
verify: {
|
351
|
+
label: TranslationConfig;
|
352
|
+
};
|
353
|
+
cancel: {
|
354
|
+
label: TranslationConfig;
|
355
|
+
confirmation: {
|
356
|
+
title: TranslationConfig;
|
357
|
+
body: TranslationConfig;
|
358
|
+
};
|
359
|
+
};
|
360
|
+
};
|
361
|
+
fields: import("./FieldConfig").Inferred[];
|
362
|
+
})[];
|
309
363
|
review: {
|
310
364
|
title: TranslationConfig;
|
311
365
|
fields: import("./FieldConfig").Inferred[];
|
@@ -331,11 +385,29 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
331
385
|
label: TranslationConfig;
|
332
386
|
};
|
333
387
|
label: TranslationConfig;
|
334
|
-
pages: {
|
388
|
+
pages: ({
|
335
389
|
id: string;
|
336
390
|
title: TranslationConfig;
|
337
391
|
fields: import("./FieldConfig").Inferred[];
|
338
|
-
|
392
|
+
type?: "FORM" | undefined;
|
393
|
+
} | {
|
394
|
+
type: "VERIFICATION";
|
395
|
+
id: string;
|
396
|
+
title: TranslationConfig;
|
397
|
+
actions: {
|
398
|
+
verify: {
|
399
|
+
label: TranslationConfig;
|
400
|
+
};
|
401
|
+
cancel: {
|
402
|
+
label: TranslationConfig;
|
403
|
+
confirmation: {
|
404
|
+
title: TranslationConfig;
|
405
|
+
body: TranslationConfig;
|
406
|
+
};
|
407
|
+
};
|
408
|
+
};
|
409
|
+
fields: import("./FieldConfig").Inferred[];
|
410
|
+
})[];
|
339
411
|
review: {
|
340
412
|
title: TranslationConfig;
|
341
413
|
fields: import("./FieldConfig").Inferred[];
|
@@ -361,11 +433,29 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
361
433
|
label: TranslationConfig;
|
362
434
|
};
|
363
435
|
label: TranslationConfig;
|
364
|
-
pages: {
|
436
|
+
pages: ({
|
365
437
|
id: string;
|
366
438
|
title: TranslationConfig;
|
367
439
|
fields: import("./FieldConfig").Inferred[];
|
368
|
-
|
440
|
+
type?: "FORM" | undefined;
|
441
|
+
} | {
|
442
|
+
type: "VERIFICATION";
|
443
|
+
id: string;
|
444
|
+
title: TranslationConfig;
|
445
|
+
actions: {
|
446
|
+
verify: {
|
447
|
+
label: TranslationConfig;
|
448
|
+
};
|
449
|
+
cancel: {
|
450
|
+
label: TranslationConfig;
|
451
|
+
confirmation: {
|
452
|
+
title: TranslationConfig;
|
453
|
+
body: TranslationConfig;
|
454
|
+
};
|
455
|
+
};
|
456
|
+
};
|
457
|
+
fields: import("./FieldConfig").Inferred[];
|
458
|
+
})[];
|
369
459
|
review: {
|
370
460
|
title: TranslationConfig;
|
371
461
|
fields: import("./FieldConfig").Inferred[];
|
@@ -390,11 +480,29 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
390
480
|
label: TranslationConfig;
|
391
481
|
};
|
392
482
|
label: TranslationConfig;
|
393
|
-
pages: {
|
483
|
+
pages: ({
|
394
484
|
id: string;
|
395
485
|
title: TranslationConfig;
|
396
486
|
fields: import("./FieldConfig").Inferred[];
|
397
|
-
|
487
|
+
type?: "FORM" | undefined;
|
488
|
+
} | {
|
489
|
+
type: "VERIFICATION";
|
490
|
+
id: string;
|
491
|
+
title: TranslationConfig;
|
492
|
+
actions: {
|
493
|
+
verify: {
|
494
|
+
label: TranslationConfig;
|
495
|
+
};
|
496
|
+
cancel: {
|
497
|
+
label: TranslationConfig;
|
498
|
+
confirmation: {
|
499
|
+
title: TranslationConfig;
|
500
|
+
body: TranslationConfig;
|
501
|
+
};
|
502
|
+
};
|
503
|
+
};
|
504
|
+
fields: import("./FieldConfig").Inferred[];
|
505
|
+
})[];
|
398
506
|
review: {
|
399
507
|
title: TranslationConfig;
|
400
508
|
fields: import("./FieldConfig").Inferred[];
|
@@ -418,11 +526,29 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
418
526
|
label: TranslationConfig;
|
419
527
|
};
|
420
528
|
label: TranslationConfig;
|
421
|
-
pages: {
|
529
|
+
pages: ({
|
422
530
|
id: string;
|
423
531
|
title: TranslationConfig;
|
424
532
|
fields: import("./FieldConfig").Inferred[];
|
425
|
-
|
533
|
+
type?: "FORM" | undefined;
|
534
|
+
} | {
|
535
|
+
type: "VERIFICATION";
|
536
|
+
id: string;
|
537
|
+
title: TranslationConfig;
|
538
|
+
actions: {
|
539
|
+
verify: {
|
540
|
+
label: TranslationConfig;
|
541
|
+
};
|
542
|
+
cancel: {
|
543
|
+
label: TranslationConfig;
|
544
|
+
confirmation: {
|
545
|
+
title: TranslationConfig;
|
546
|
+
body: TranslationConfig;
|
547
|
+
};
|
548
|
+
};
|
549
|
+
};
|
550
|
+
fields: import("./FieldConfig").Inferred[];
|
551
|
+
})[];
|
426
552
|
review: {
|
427
553
|
title: TranslationConfig;
|
428
554
|
fields: import("./FieldConfig").Inferred[];
|
@@ -446,11 +572,29 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
446
572
|
label: TranslationConfig;
|
447
573
|
};
|
448
574
|
label: TranslationConfig;
|
449
|
-
pages: {
|
575
|
+
pages: ({
|
450
576
|
id: string;
|
451
577
|
title: TranslationConfig;
|
452
578
|
fields: import("./FieldConfig").Inferred[];
|
453
|
-
|
579
|
+
type?: "FORM" | undefined;
|
580
|
+
} | {
|
581
|
+
type: "VERIFICATION";
|
582
|
+
id: string;
|
583
|
+
title: TranslationConfig;
|
584
|
+
actions: {
|
585
|
+
verify: {
|
586
|
+
label: TranslationConfig;
|
587
|
+
};
|
588
|
+
cancel: {
|
589
|
+
label: TranslationConfig;
|
590
|
+
confirmation: {
|
591
|
+
title: TranslationConfig;
|
592
|
+
body: TranslationConfig;
|
593
|
+
};
|
594
|
+
};
|
595
|
+
};
|
596
|
+
fields: import("./FieldConfig").Inferred[];
|
597
|
+
})[];
|
454
598
|
review: {
|
455
599
|
title: TranslationConfig;
|
456
600
|
fields: import("./FieldConfig").Inferred[];
|
@@ -474,11 +618,29 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
474
618
|
label: TranslationConfig;
|
475
619
|
};
|
476
620
|
label: TranslationConfig;
|
477
|
-
pages: {
|
621
|
+
pages: ({
|
478
622
|
id: string;
|
479
623
|
title: TranslationConfig;
|
480
624
|
fields: import("./FieldConfig").Inferred[];
|
481
|
-
|
625
|
+
type?: "FORM" | undefined;
|
626
|
+
} | {
|
627
|
+
type: "VERIFICATION";
|
628
|
+
id: string;
|
629
|
+
title: TranslationConfig;
|
630
|
+
actions: {
|
631
|
+
verify: {
|
632
|
+
label: TranslationConfig;
|
633
|
+
};
|
634
|
+
cancel: {
|
635
|
+
label: TranslationConfig;
|
636
|
+
confirmation: {
|
637
|
+
title: TranslationConfig;
|
638
|
+
body: TranslationConfig;
|
639
|
+
};
|
640
|
+
};
|
641
|
+
};
|
642
|
+
fields: import("./FieldConfig").Inferred[];
|
643
|
+
})[];
|
482
644
|
review: {
|
483
645
|
title: TranslationConfig;
|
484
646
|
fields: import("./FieldConfig").Inferred[];
|
@@ -488,11 +650,13 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
488
650
|
id: string;
|
489
651
|
title: TranslationConfig;
|
490
652
|
fields: import("./FieldConfig").Inferred[];
|
653
|
+
type?: "FORM" | undefined;
|
491
654
|
}[];
|
492
655
|
additionalDetailsForm: {
|
493
656
|
id: string;
|
494
657
|
title: TranslationConfig;
|
495
658
|
fields: import("./FieldConfig").Inferred[];
|
659
|
+
type?: "FORM" | undefined;
|
496
660
|
}[];
|
497
661
|
draft?: boolean | undefined;
|
498
662
|
} | {
|
@@ -512,11 +676,29 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
512
676
|
label: TranslationConfig;
|
513
677
|
};
|
514
678
|
label: TranslationConfig;
|
515
|
-
pages: {
|
679
|
+
pages: ({
|
516
680
|
id: string;
|
517
681
|
title: TranslationConfig;
|
518
682
|
fields: import("./FieldConfig").Inferred[];
|
519
|
-
|
683
|
+
type?: "FORM" | undefined;
|
684
|
+
} | {
|
685
|
+
type: "VERIFICATION";
|
686
|
+
id: string;
|
687
|
+
title: TranslationConfig;
|
688
|
+
actions: {
|
689
|
+
verify: {
|
690
|
+
label: TranslationConfig;
|
691
|
+
};
|
692
|
+
cancel: {
|
693
|
+
label: TranslationConfig;
|
694
|
+
confirmation: {
|
695
|
+
title: TranslationConfig;
|
696
|
+
body: TranslationConfig;
|
697
|
+
};
|
698
|
+
};
|
699
|
+
};
|
700
|
+
fields: import("./FieldConfig").Inferred[];
|
701
|
+
})[];
|
520
702
|
review: {
|
521
703
|
title: TranslationConfig;
|
522
704
|
fields: import("./FieldConfig").Inferred[];
|
@@ -540,11 +722,29 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
540
722
|
label: TranslationConfig;
|
541
723
|
};
|
542
724
|
label: TranslationConfig;
|
543
|
-
pages: {
|
725
|
+
pages: ({
|
544
726
|
id: string;
|
545
727
|
title: TranslationConfig;
|
546
728
|
fields: import("./FieldConfig").Inferred[];
|
547
|
-
|
729
|
+
type?: "FORM" | undefined;
|
730
|
+
} | {
|
731
|
+
type: "VERIFICATION";
|
732
|
+
id: string;
|
733
|
+
title: TranslationConfig;
|
734
|
+
actions: {
|
735
|
+
verify: {
|
736
|
+
label: TranslationConfig;
|
737
|
+
};
|
738
|
+
cancel: {
|
739
|
+
label: TranslationConfig;
|
740
|
+
confirmation: {
|
741
|
+
title: TranslationConfig;
|
742
|
+
body: TranslationConfig;
|
743
|
+
};
|
744
|
+
};
|
745
|
+
};
|
746
|
+
fields: import("./FieldConfig").Inferred[];
|
747
|
+
})[];
|
548
748
|
review: {
|
549
749
|
title: TranslationConfig;
|
550
750
|
fields: import("./FieldConfig").Inferred[];
|
@@ -568,11 +768,29 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
568
768
|
label: TranslationConfig;
|
569
769
|
};
|
570
770
|
label: TranslationConfig;
|
571
|
-
pages: {
|
771
|
+
pages: ({
|
572
772
|
id: string;
|
573
773
|
title: TranslationConfig;
|
574
774
|
fields: import("./FieldConfig").Inferred[];
|
575
|
-
|
775
|
+
type?: "FORM" | undefined;
|
776
|
+
} | {
|
777
|
+
type: "VERIFICATION";
|
778
|
+
id: string;
|
779
|
+
title: TranslationConfig;
|
780
|
+
actions: {
|
781
|
+
verify: {
|
782
|
+
label: TranslationConfig;
|
783
|
+
};
|
784
|
+
cancel: {
|
785
|
+
label: TranslationConfig;
|
786
|
+
confirmation: {
|
787
|
+
title: TranslationConfig;
|
788
|
+
body: TranslationConfig;
|
789
|
+
};
|
790
|
+
};
|
791
|
+
};
|
792
|
+
fields: import("./FieldConfig").Inferred[];
|
793
|
+
})[];
|
576
794
|
review: {
|
577
795
|
title: TranslationConfig;
|
578
796
|
fields: import("./FieldConfig").Inferred[];
|
@@ -637,7 +855,7 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
637
855
|
description: string;
|
638
856
|
defaultMessage: string;
|
639
857
|
};
|
640
|
-
pages: {
|
858
|
+
pages: ({
|
641
859
|
id: string;
|
642
860
|
title: {
|
643
861
|
id: string;
|
@@ -645,7 +863,45 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
645
863
|
defaultMessage: string;
|
646
864
|
};
|
647
865
|
fields: import("./FieldConfig").Inferred[];
|
648
|
-
|
866
|
+
type?: "FORM" | undefined;
|
867
|
+
} | {
|
868
|
+
type: "VERIFICATION";
|
869
|
+
id: string;
|
870
|
+
title: {
|
871
|
+
id: string;
|
872
|
+
description: string;
|
873
|
+
defaultMessage: string;
|
874
|
+
};
|
875
|
+
actions: {
|
876
|
+
verify: {
|
877
|
+
label: {
|
878
|
+
id: string;
|
879
|
+
description: string;
|
880
|
+
defaultMessage: string;
|
881
|
+
};
|
882
|
+
};
|
883
|
+
cancel: {
|
884
|
+
label: {
|
885
|
+
id: string;
|
886
|
+
description: string;
|
887
|
+
defaultMessage: string;
|
888
|
+
};
|
889
|
+
confirmation: {
|
890
|
+
title: {
|
891
|
+
id: string;
|
892
|
+
description: string;
|
893
|
+
defaultMessage: string;
|
894
|
+
};
|
895
|
+
body: {
|
896
|
+
id: string;
|
897
|
+
description: string;
|
898
|
+
defaultMessage: string;
|
899
|
+
};
|
900
|
+
};
|
901
|
+
};
|
902
|
+
};
|
903
|
+
fields: import("./FieldConfig").Inferred[];
|
904
|
+
})[];
|
649
905
|
review: {
|
650
906
|
title: {
|
651
907
|
id: string;
|
@@ -685,7 +941,7 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
685
941
|
description: string;
|
686
942
|
defaultMessage: string;
|
687
943
|
};
|
688
|
-
pages: {
|
944
|
+
pages: ({
|
689
945
|
id: string;
|
690
946
|
title: {
|
691
947
|
id: string;
|
@@ -693,7 +949,45 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
693
949
|
defaultMessage: string;
|
694
950
|
};
|
695
951
|
fields: import("./FieldConfig").Inferred[];
|
696
|
-
|
952
|
+
type?: "FORM" | undefined;
|
953
|
+
} | {
|
954
|
+
type: "VERIFICATION";
|
955
|
+
id: string;
|
956
|
+
title: {
|
957
|
+
id: string;
|
958
|
+
description: string;
|
959
|
+
defaultMessage: string;
|
960
|
+
};
|
961
|
+
actions: {
|
962
|
+
verify: {
|
963
|
+
label: {
|
964
|
+
id: string;
|
965
|
+
description: string;
|
966
|
+
defaultMessage: string;
|
967
|
+
};
|
968
|
+
};
|
969
|
+
cancel: {
|
970
|
+
label: {
|
971
|
+
id: string;
|
972
|
+
description: string;
|
973
|
+
defaultMessage: string;
|
974
|
+
};
|
975
|
+
confirmation: {
|
976
|
+
title: {
|
977
|
+
id: string;
|
978
|
+
description: string;
|
979
|
+
defaultMessage: string;
|
980
|
+
};
|
981
|
+
body: {
|
982
|
+
id: string;
|
983
|
+
description: string;
|
984
|
+
defaultMessage: string;
|
985
|
+
};
|
986
|
+
};
|
987
|
+
};
|
988
|
+
};
|
989
|
+
fields: import("./FieldConfig").Inferred[];
|
990
|
+
})[];
|
697
991
|
review: {
|
698
992
|
title: {
|
699
993
|
id: string;
|
@@ -734,7 +1028,7 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
734
1028
|
description: string;
|
735
1029
|
defaultMessage: string;
|
736
1030
|
};
|
737
|
-
pages: {
|
1031
|
+
pages: ({
|
738
1032
|
id: string;
|
739
1033
|
title: {
|
740
1034
|
id: string;
|
@@ -742,7 +1036,45 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
742
1036
|
defaultMessage: string;
|
743
1037
|
};
|
744
1038
|
fields: import("./FieldConfig").Inferred[];
|
745
|
-
|
1039
|
+
type?: "FORM" | undefined;
|
1040
|
+
} | {
|
1041
|
+
type: "VERIFICATION";
|
1042
|
+
id: string;
|
1043
|
+
title: {
|
1044
|
+
id: string;
|
1045
|
+
description: string;
|
1046
|
+
defaultMessage: string;
|
1047
|
+
};
|
1048
|
+
actions: {
|
1049
|
+
verify: {
|
1050
|
+
label: {
|
1051
|
+
id: string;
|
1052
|
+
description: string;
|
1053
|
+
defaultMessage: string;
|
1054
|
+
};
|
1055
|
+
};
|
1056
|
+
cancel: {
|
1057
|
+
label: {
|
1058
|
+
id: string;
|
1059
|
+
description: string;
|
1060
|
+
defaultMessage: string;
|
1061
|
+
};
|
1062
|
+
confirmation: {
|
1063
|
+
title: {
|
1064
|
+
id: string;
|
1065
|
+
description: string;
|
1066
|
+
defaultMessage: string;
|
1067
|
+
};
|
1068
|
+
body: {
|
1069
|
+
id: string;
|
1070
|
+
description: string;
|
1071
|
+
defaultMessage: string;
|
1072
|
+
};
|
1073
|
+
};
|
1074
|
+
};
|
1075
|
+
};
|
1076
|
+
fields: import("./FieldConfig").Inferred[];
|
1077
|
+
})[];
|
746
1078
|
review: {
|
747
1079
|
title: {
|
748
1080
|
id: string;
|
@@ -784,7 +1116,7 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
784
1116
|
description: string;
|
785
1117
|
defaultMessage: string;
|
786
1118
|
};
|
787
|
-
pages: {
|
1119
|
+
pages: ({
|
788
1120
|
id: string;
|
789
1121
|
title: {
|
790
1122
|
id: string;
|
@@ -792,7 +1124,45 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
792
1124
|
defaultMessage: string;
|
793
1125
|
};
|
794
1126
|
fields: import("./FieldConfig").Inferred[];
|
795
|
-
|
1127
|
+
type?: "FORM" | undefined;
|
1128
|
+
} | {
|
1129
|
+
type: "VERIFICATION";
|
1130
|
+
id: string;
|
1131
|
+
title: {
|
1132
|
+
id: string;
|
1133
|
+
description: string;
|
1134
|
+
defaultMessage: string;
|
1135
|
+
};
|
1136
|
+
actions: {
|
1137
|
+
verify: {
|
1138
|
+
label: {
|
1139
|
+
id: string;
|
1140
|
+
description: string;
|
1141
|
+
defaultMessage: string;
|
1142
|
+
};
|
1143
|
+
};
|
1144
|
+
cancel: {
|
1145
|
+
label: {
|
1146
|
+
id: string;
|
1147
|
+
description: string;
|
1148
|
+
defaultMessage: string;
|
1149
|
+
};
|
1150
|
+
confirmation: {
|
1151
|
+
title: {
|
1152
|
+
id: string;
|
1153
|
+
description: string;
|
1154
|
+
defaultMessage: string;
|
1155
|
+
};
|
1156
|
+
body: {
|
1157
|
+
id: string;
|
1158
|
+
description: string;
|
1159
|
+
defaultMessage: string;
|
1160
|
+
};
|
1161
|
+
};
|
1162
|
+
};
|
1163
|
+
};
|
1164
|
+
fields: import("./FieldConfig").Inferred[];
|
1165
|
+
})[];
|
796
1166
|
review: {
|
797
1167
|
title: {
|
798
1168
|
id: string;
|
@@ -834,7 +1204,7 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
834
1204
|
description: string;
|
835
1205
|
defaultMessage: string;
|
836
1206
|
};
|
837
|
-
pages: {
|
1207
|
+
pages: ({
|
838
1208
|
id: string;
|
839
1209
|
title: {
|
840
1210
|
id: string;
|
@@ -842,7 +1212,45 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
842
1212
|
defaultMessage: string;
|
843
1213
|
};
|
844
1214
|
fields: import("./FieldConfig").Inferred[];
|
845
|
-
|
1215
|
+
type?: "FORM" | undefined;
|
1216
|
+
} | {
|
1217
|
+
type: "VERIFICATION";
|
1218
|
+
id: string;
|
1219
|
+
title: {
|
1220
|
+
id: string;
|
1221
|
+
description: string;
|
1222
|
+
defaultMessage: string;
|
1223
|
+
};
|
1224
|
+
actions: {
|
1225
|
+
verify: {
|
1226
|
+
label: {
|
1227
|
+
id: string;
|
1228
|
+
description: string;
|
1229
|
+
defaultMessage: string;
|
1230
|
+
};
|
1231
|
+
};
|
1232
|
+
cancel: {
|
1233
|
+
label: {
|
1234
|
+
id: string;
|
1235
|
+
description: string;
|
1236
|
+
defaultMessage: string;
|
1237
|
+
};
|
1238
|
+
confirmation: {
|
1239
|
+
title: {
|
1240
|
+
id: string;
|
1241
|
+
description: string;
|
1242
|
+
defaultMessage: string;
|
1243
|
+
};
|
1244
|
+
body: {
|
1245
|
+
id: string;
|
1246
|
+
description: string;
|
1247
|
+
defaultMessage: string;
|
1248
|
+
};
|
1249
|
+
};
|
1250
|
+
};
|
1251
|
+
};
|
1252
|
+
fields: import("./FieldConfig").Inferred[];
|
1253
|
+
})[];
|
846
1254
|
review: {
|
847
1255
|
title: {
|
848
1256
|
id: string;
|
@@ -883,7 +1291,7 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
883
1291
|
description: string;
|
884
1292
|
defaultMessage: string;
|
885
1293
|
};
|
886
|
-
pages: {
|
1294
|
+
pages: ({
|
887
1295
|
id: string;
|
888
1296
|
title: {
|
889
1297
|
id: string;
|
@@ -891,7 +1299,45 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
891
1299
|
defaultMessage: string;
|
892
1300
|
};
|
893
1301
|
fields: import("./FieldConfig").Inferred[];
|
894
|
-
|
1302
|
+
type?: "FORM" | undefined;
|
1303
|
+
} | {
|
1304
|
+
type: "VERIFICATION";
|
1305
|
+
id: string;
|
1306
|
+
title: {
|
1307
|
+
id: string;
|
1308
|
+
description: string;
|
1309
|
+
defaultMessage: string;
|
1310
|
+
};
|
1311
|
+
actions: {
|
1312
|
+
verify: {
|
1313
|
+
label: {
|
1314
|
+
id: string;
|
1315
|
+
description: string;
|
1316
|
+
defaultMessage: string;
|
1317
|
+
};
|
1318
|
+
};
|
1319
|
+
cancel: {
|
1320
|
+
label: {
|
1321
|
+
id: string;
|
1322
|
+
description: string;
|
1323
|
+
defaultMessage: string;
|
1324
|
+
};
|
1325
|
+
confirmation: {
|
1326
|
+
title: {
|
1327
|
+
id: string;
|
1328
|
+
description: string;
|
1329
|
+
defaultMessage: string;
|
1330
|
+
};
|
1331
|
+
body: {
|
1332
|
+
id: string;
|
1333
|
+
description: string;
|
1334
|
+
defaultMessage: string;
|
1335
|
+
};
|
1336
|
+
};
|
1337
|
+
};
|
1338
|
+
};
|
1339
|
+
fields: import("./FieldConfig").Inferred[];
|
1340
|
+
})[];
|
895
1341
|
review: {
|
896
1342
|
title: {
|
897
1343
|
id: string;
|
@@ -931,7 +1377,7 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
931
1377
|
description: string;
|
932
1378
|
defaultMessage: string;
|
933
1379
|
};
|
934
|
-
pages: {
|
1380
|
+
pages: ({
|
935
1381
|
id: string;
|
936
1382
|
title: {
|
937
1383
|
id: string;
|
@@ -939,7 +1385,45 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
939
1385
|
defaultMessage: string;
|
940
1386
|
};
|
941
1387
|
fields: import("./FieldConfig").Inferred[];
|
942
|
-
|
1388
|
+
type?: "FORM" | undefined;
|
1389
|
+
} | {
|
1390
|
+
type: "VERIFICATION";
|
1391
|
+
id: string;
|
1392
|
+
title: {
|
1393
|
+
id: string;
|
1394
|
+
description: string;
|
1395
|
+
defaultMessage: string;
|
1396
|
+
};
|
1397
|
+
actions: {
|
1398
|
+
verify: {
|
1399
|
+
label: {
|
1400
|
+
id: string;
|
1401
|
+
description: string;
|
1402
|
+
defaultMessage: string;
|
1403
|
+
};
|
1404
|
+
};
|
1405
|
+
cancel: {
|
1406
|
+
label: {
|
1407
|
+
id: string;
|
1408
|
+
description: string;
|
1409
|
+
defaultMessage: string;
|
1410
|
+
};
|
1411
|
+
confirmation: {
|
1412
|
+
title: {
|
1413
|
+
id: string;
|
1414
|
+
description: string;
|
1415
|
+
defaultMessage: string;
|
1416
|
+
};
|
1417
|
+
body: {
|
1418
|
+
id: string;
|
1419
|
+
description: string;
|
1420
|
+
defaultMessage: string;
|
1421
|
+
};
|
1422
|
+
};
|
1423
|
+
};
|
1424
|
+
};
|
1425
|
+
fields: import("./FieldConfig").Inferred[];
|
1426
|
+
})[];
|
943
1427
|
review: {
|
944
1428
|
title: {
|
945
1429
|
id: string;
|
@@ -979,7 +1463,7 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
979
1463
|
description: string;
|
980
1464
|
defaultMessage: string;
|
981
1465
|
};
|
982
|
-
pages: {
|
1466
|
+
pages: ({
|
983
1467
|
id: string;
|
984
1468
|
title: {
|
985
1469
|
id: string;
|
@@ -987,7 +1471,45 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
987
1471
|
defaultMessage: string;
|
988
1472
|
};
|
989
1473
|
fields: import("./FieldConfig").Inferred[];
|
990
|
-
|
1474
|
+
type?: "FORM" | undefined;
|
1475
|
+
} | {
|
1476
|
+
type: "VERIFICATION";
|
1477
|
+
id: string;
|
1478
|
+
title: {
|
1479
|
+
id: string;
|
1480
|
+
description: string;
|
1481
|
+
defaultMessage: string;
|
1482
|
+
};
|
1483
|
+
actions: {
|
1484
|
+
verify: {
|
1485
|
+
label: {
|
1486
|
+
id: string;
|
1487
|
+
description: string;
|
1488
|
+
defaultMessage: string;
|
1489
|
+
};
|
1490
|
+
};
|
1491
|
+
cancel: {
|
1492
|
+
label: {
|
1493
|
+
id: string;
|
1494
|
+
description: string;
|
1495
|
+
defaultMessage: string;
|
1496
|
+
};
|
1497
|
+
confirmation: {
|
1498
|
+
title: {
|
1499
|
+
id: string;
|
1500
|
+
description: string;
|
1501
|
+
defaultMessage: string;
|
1502
|
+
};
|
1503
|
+
body: {
|
1504
|
+
id: string;
|
1505
|
+
description: string;
|
1506
|
+
defaultMessage: string;
|
1507
|
+
};
|
1508
|
+
};
|
1509
|
+
};
|
1510
|
+
};
|
1511
|
+
fields: import("./FieldConfig").Inferred[];
|
1512
|
+
})[];
|
991
1513
|
review: {
|
992
1514
|
title: {
|
993
1515
|
id: string;
|
@@ -1027,7 +1549,7 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
1027
1549
|
description: string;
|
1028
1550
|
defaultMessage: string;
|
1029
1551
|
};
|
1030
|
-
pages: {
|
1552
|
+
pages: ({
|
1031
1553
|
id: string;
|
1032
1554
|
title: {
|
1033
1555
|
id: string;
|
@@ -1035,7 +1557,45 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
1035
1557
|
defaultMessage: string;
|
1036
1558
|
};
|
1037
1559
|
fields: import("./FieldConfig").Inferred[];
|
1038
|
-
|
1560
|
+
type?: "FORM" | undefined;
|
1561
|
+
} | {
|
1562
|
+
type: "VERIFICATION";
|
1563
|
+
id: string;
|
1564
|
+
title: {
|
1565
|
+
id: string;
|
1566
|
+
description: string;
|
1567
|
+
defaultMessage: string;
|
1568
|
+
};
|
1569
|
+
actions: {
|
1570
|
+
verify: {
|
1571
|
+
label: {
|
1572
|
+
id: string;
|
1573
|
+
description: string;
|
1574
|
+
defaultMessage: string;
|
1575
|
+
};
|
1576
|
+
};
|
1577
|
+
cancel: {
|
1578
|
+
label: {
|
1579
|
+
id: string;
|
1580
|
+
description: string;
|
1581
|
+
defaultMessage: string;
|
1582
|
+
};
|
1583
|
+
confirmation: {
|
1584
|
+
title: {
|
1585
|
+
id: string;
|
1586
|
+
description: string;
|
1587
|
+
defaultMessage: string;
|
1588
|
+
};
|
1589
|
+
body: {
|
1590
|
+
id: string;
|
1591
|
+
description: string;
|
1592
|
+
defaultMessage: string;
|
1593
|
+
};
|
1594
|
+
};
|
1595
|
+
};
|
1596
|
+
};
|
1597
|
+
fields: import("./FieldConfig").Inferred[];
|
1598
|
+
})[];
|
1039
1599
|
review: {
|
1040
1600
|
title: {
|
1041
1601
|
id: string;
|
@@ -1054,6 +1614,7 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
1054
1614
|
defaultMessage: string;
|
1055
1615
|
};
|
1056
1616
|
fields: import("./FieldConfig").Inferred[];
|
1617
|
+
type?: "FORM" | undefined;
|
1057
1618
|
}[];
|
1058
1619
|
additionalDetailsForm: {
|
1059
1620
|
id: string;
|
@@ -1063,6 +1624,7 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
1063
1624
|
defaultMessage: string;
|
1064
1625
|
};
|
1065
1626
|
fields: import("./FieldConfig").Inferred[];
|
1627
|
+
type?: "FORM" | undefined;
|
1066
1628
|
}[];
|
1067
1629
|
draft?: boolean | undefined;
|
1068
1630
|
conditionals?: ({
|
@@ -1093,7 +1655,7 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
1093
1655
|
description: string;
|
1094
1656
|
defaultMessage: string;
|
1095
1657
|
};
|
1096
|
-
pages: {
|
1658
|
+
pages: ({
|
1097
1659
|
id: string;
|
1098
1660
|
title: {
|
1099
1661
|
id: string;
|
@@ -1101,7 +1663,45 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
1101
1663
|
defaultMessage: string;
|
1102
1664
|
};
|
1103
1665
|
fields: import("./FieldConfig").Inferred[];
|
1104
|
-
|
1666
|
+
type?: "FORM" | undefined;
|
1667
|
+
} | {
|
1668
|
+
type: "VERIFICATION";
|
1669
|
+
id: string;
|
1670
|
+
title: {
|
1671
|
+
id: string;
|
1672
|
+
description: string;
|
1673
|
+
defaultMessage: string;
|
1674
|
+
};
|
1675
|
+
actions: {
|
1676
|
+
verify: {
|
1677
|
+
label: {
|
1678
|
+
id: string;
|
1679
|
+
description: string;
|
1680
|
+
defaultMessage: string;
|
1681
|
+
};
|
1682
|
+
};
|
1683
|
+
cancel: {
|
1684
|
+
label: {
|
1685
|
+
id: string;
|
1686
|
+
description: string;
|
1687
|
+
defaultMessage: string;
|
1688
|
+
};
|
1689
|
+
confirmation: {
|
1690
|
+
title: {
|
1691
|
+
id: string;
|
1692
|
+
description: string;
|
1693
|
+
defaultMessage: string;
|
1694
|
+
};
|
1695
|
+
body: {
|
1696
|
+
id: string;
|
1697
|
+
description: string;
|
1698
|
+
defaultMessage: string;
|
1699
|
+
};
|
1700
|
+
};
|
1701
|
+
};
|
1702
|
+
};
|
1703
|
+
fields: import("./FieldConfig").Inferred[];
|
1704
|
+
})[];
|
1105
1705
|
review: {
|
1106
1706
|
title: {
|
1107
1707
|
id: string;
|
@@ -1141,7 +1741,7 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
1141
1741
|
description: string;
|
1142
1742
|
defaultMessage: string;
|
1143
1743
|
};
|
1144
|
-
pages: {
|
1744
|
+
pages: ({
|
1145
1745
|
id: string;
|
1146
1746
|
title: {
|
1147
1747
|
id: string;
|
@@ -1149,7 +1749,45 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
1149
1749
|
defaultMessage: string;
|
1150
1750
|
};
|
1151
1751
|
fields: import("./FieldConfig").Inferred[];
|
1152
|
-
|
1752
|
+
type?: "FORM" | undefined;
|
1753
|
+
} | {
|
1754
|
+
type: "VERIFICATION";
|
1755
|
+
id: string;
|
1756
|
+
title: {
|
1757
|
+
id: string;
|
1758
|
+
description: string;
|
1759
|
+
defaultMessage: string;
|
1760
|
+
};
|
1761
|
+
actions: {
|
1762
|
+
verify: {
|
1763
|
+
label: {
|
1764
|
+
id: string;
|
1765
|
+
description: string;
|
1766
|
+
defaultMessage: string;
|
1767
|
+
};
|
1768
|
+
};
|
1769
|
+
cancel: {
|
1770
|
+
label: {
|
1771
|
+
id: string;
|
1772
|
+
description: string;
|
1773
|
+
defaultMessage: string;
|
1774
|
+
};
|
1775
|
+
confirmation: {
|
1776
|
+
title: {
|
1777
|
+
id: string;
|
1778
|
+
description: string;
|
1779
|
+
defaultMessage: string;
|
1780
|
+
};
|
1781
|
+
body: {
|
1782
|
+
id: string;
|
1783
|
+
description: string;
|
1784
|
+
defaultMessage: string;
|
1785
|
+
};
|
1786
|
+
};
|
1787
|
+
};
|
1788
|
+
};
|
1789
|
+
fields: import("./FieldConfig").Inferred[];
|
1790
|
+
})[];
|
1153
1791
|
review: {
|
1154
1792
|
title: {
|
1155
1793
|
id: string;
|
@@ -1189,7 +1827,7 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
1189
1827
|
description: string;
|
1190
1828
|
defaultMessage: string;
|
1191
1829
|
};
|
1192
|
-
pages: {
|
1830
|
+
pages: ({
|
1193
1831
|
id: string;
|
1194
1832
|
title: {
|
1195
1833
|
id: string;
|
@@ -1197,7 +1835,45 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
1197
1835
|
defaultMessage: string;
|
1198
1836
|
};
|
1199
1837
|
fields: import("./FieldConfig").Inferred[];
|
1200
|
-
|
1838
|
+
type?: "FORM" | undefined;
|
1839
|
+
} | {
|
1840
|
+
type: "VERIFICATION";
|
1841
|
+
id: string;
|
1842
|
+
title: {
|
1843
|
+
id: string;
|
1844
|
+
description: string;
|
1845
|
+
defaultMessage: string;
|
1846
|
+
};
|
1847
|
+
actions: {
|
1848
|
+
verify: {
|
1849
|
+
label: {
|
1850
|
+
id: string;
|
1851
|
+
description: string;
|
1852
|
+
defaultMessage: string;
|
1853
|
+
};
|
1854
|
+
};
|
1855
|
+
cancel: {
|
1856
|
+
label: {
|
1857
|
+
id: string;
|
1858
|
+
description: string;
|
1859
|
+
defaultMessage: string;
|
1860
|
+
};
|
1861
|
+
confirmation: {
|
1862
|
+
title: {
|
1863
|
+
id: string;
|
1864
|
+
description: string;
|
1865
|
+
defaultMessage: string;
|
1866
|
+
};
|
1867
|
+
body: {
|
1868
|
+
id: string;
|
1869
|
+
description: string;
|
1870
|
+
defaultMessage: string;
|
1871
|
+
};
|
1872
|
+
};
|
1873
|
+
};
|
1874
|
+
};
|
1875
|
+
fields: import("./FieldConfig").Inferred[];
|
1876
|
+
})[];
|
1201
1877
|
review: {
|
1202
1878
|
title: {
|
1203
1879
|
id: string;
|
@@ -1302,11 +1978,29 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
1302
1978
|
label: TranslationConfig;
|
1303
1979
|
};
|
1304
1980
|
label: TranslationConfig;
|
1305
|
-
pages: {
|
1981
|
+
pages: ({
|
1306
1982
|
id: string;
|
1307
1983
|
title: TranslationConfig;
|
1308
1984
|
fields: import("./FieldConfig").Inferred[];
|
1309
|
-
|
1985
|
+
type?: "FORM" | undefined;
|
1986
|
+
} | {
|
1987
|
+
type: "VERIFICATION";
|
1988
|
+
id: string;
|
1989
|
+
title: TranslationConfig;
|
1990
|
+
actions: {
|
1991
|
+
verify: {
|
1992
|
+
label: TranslationConfig;
|
1993
|
+
};
|
1994
|
+
cancel: {
|
1995
|
+
label: TranslationConfig;
|
1996
|
+
confirmation: {
|
1997
|
+
title: TranslationConfig;
|
1998
|
+
body: TranslationConfig;
|
1999
|
+
};
|
2000
|
+
};
|
2001
|
+
};
|
2002
|
+
fields: import("./FieldConfig").Inferred[];
|
2003
|
+
})[];
|
1310
2004
|
review: {
|
1311
2005
|
title: TranslationConfig;
|
1312
2006
|
fields: import("./FieldConfig").Inferred[];
|
@@ -1330,11 +2024,29 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
1330
2024
|
label: TranslationConfig;
|
1331
2025
|
};
|
1332
2026
|
label: TranslationConfig;
|
1333
|
-
pages: {
|
2027
|
+
pages: ({
|
1334
2028
|
id: string;
|
1335
2029
|
title: TranslationConfig;
|
1336
2030
|
fields: import("./FieldConfig").Inferred[];
|
1337
|
-
|
2031
|
+
type?: "FORM" | undefined;
|
2032
|
+
} | {
|
2033
|
+
type: "VERIFICATION";
|
2034
|
+
id: string;
|
2035
|
+
title: TranslationConfig;
|
2036
|
+
actions: {
|
2037
|
+
verify: {
|
2038
|
+
label: TranslationConfig;
|
2039
|
+
};
|
2040
|
+
cancel: {
|
2041
|
+
label: TranslationConfig;
|
2042
|
+
confirmation: {
|
2043
|
+
title: TranslationConfig;
|
2044
|
+
body: TranslationConfig;
|
2045
|
+
};
|
2046
|
+
};
|
2047
|
+
};
|
2048
|
+
fields: import("./FieldConfig").Inferred[];
|
2049
|
+
})[];
|
1338
2050
|
review: {
|
1339
2051
|
title: TranslationConfig;
|
1340
2052
|
fields: import("./FieldConfig").Inferred[];
|
@@ -1359,11 +2071,29 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
1359
2071
|
label: TranslationConfig;
|
1360
2072
|
};
|
1361
2073
|
label: TranslationConfig;
|
1362
|
-
pages: {
|
2074
|
+
pages: ({
|
1363
2075
|
id: string;
|
1364
2076
|
title: TranslationConfig;
|
1365
2077
|
fields: import("./FieldConfig").Inferred[];
|
1366
|
-
|
2078
|
+
type?: "FORM" | undefined;
|
2079
|
+
} | {
|
2080
|
+
type: "VERIFICATION";
|
2081
|
+
id: string;
|
2082
|
+
title: TranslationConfig;
|
2083
|
+
actions: {
|
2084
|
+
verify: {
|
2085
|
+
label: TranslationConfig;
|
2086
|
+
};
|
2087
|
+
cancel: {
|
2088
|
+
label: TranslationConfig;
|
2089
|
+
confirmation: {
|
2090
|
+
title: TranslationConfig;
|
2091
|
+
body: TranslationConfig;
|
2092
|
+
};
|
2093
|
+
};
|
2094
|
+
};
|
2095
|
+
fields: import("./FieldConfig").Inferred[];
|
2096
|
+
})[];
|
1367
2097
|
review: {
|
1368
2098
|
title: TranslationConfig;
|
1369
2099
|
fields: import("./FieldConfig").Inferred[];
|
@@ -1389,11 +2119,29 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
1389
2119
|
label: TranslationConfig;
|
1390
2120
|
};
|
1391
2121
|
label: TranslationConfig;
|
1392
|
-
pages: {
|
2122
|
+
pages: ({
|
1393
2123
|
id: string;
|
1394
2124
|
title: TranslationConfig;
|
1395
2125
|
fields: import("./FieldConfig").Inferred[];
|
1396
|
-
|
2126
|
+
type?: "FORM" | undefined;
|
2127
|
+
} | {
|
2128
|
+
type: "VERIFICATION";
|
2129
|
+
id: string;
|
2130
|
+
title: TranslationConfig;
|
2131
|
+
actions: {
|
2132
|
+
verify: {
|
2133
|
+
label: TranslationConfig;
|
2134
|
+
};
|
2135
|
+
cancel: {
|
2136
|
+
label: TranslationConfig;
|
2137
|
+
confirmation: {
|
2138
|
+
title: TranslationConfig;
|
2139
|
+
body: TranslationConfig;
|
2140
|
+
};
|
2141
|
+
};
|
2142
|
+
};
|
2143
|
+
fields: import("./FieldConfig").Inferred[];
|
2144
|
+
})[];
|
1397
2145
|
review: {
|
1398
2146
|
title: TranslationConfig;
|
1399
2147
|
fields: import("./FieldConfig").Inferred[];
|
@@ -1419,11 +2167,29 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
1419
2167
|
label: TranslationConfig;
|
1420
2168
|
};
|
1421
2169
|
label: TranslationConfig;
|
1422
|
-
pages: {
|
2170
|
+
pages: ({
|
1423
2171
|
id: string;
|
1424
2172
|
title: TranslationConfig;
|
1425
2173
|
fields: import("./FieldConfig").Inferred[];
|
1426
|
-
|
2174
|
+
type?: "FORM" | undefined;
|
2175
|
+
} | {
|
2176
|
+
type: "VERIFICATION";
|
2177
|
+
id: string;
|
2178
|
+
title: TranslationConfig;
|
2179
|
+
actions: {
|
2180
|
+
verify: {
|
2181
|
+
label: TranslationConfig;
|
2182
|
+
};
|
2183
|
+
cancel: {
|
2184
|
+
label: TranslationConfig;
|
2185
|
+
confirmation: {
|
2186
|
+
title: TranslationConfig;
|
2187
|
+
body: TranslationConfig;
|
2188
|
+
};
|
2189
|
+
};
|
2190
|
+
};
|
2191
|
+
fields: import("./FieldConfig").Inferred[];
|
2192
|
+
})[];
|
1427
2193
|
review: {
|
1428
2194
|
title: TranslationConfig;
|
1429
2195
|
fields: import("./FieldConfig").Inferred[];
|
@@ -1448,11 +2214,29 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
1448
2214
|
label: TranslationConfig;
|
1449
2215
|
};
|
1450
2216
|
label: TranslationConfig;
|
1451
|
-
pages: {
|
2217
|
+
pages: ({
|
1452
2218
|
id: string;
|
1453
2219
|
title: TranslationConfig;
|
1454
2220
|
fields: import("./FieldConfig").Inferred[];
|
1455
|
-
|
2221
|
+
type?: "FORM" | undefined;
|
2222
|
+
} | {
|
2223
|
+
type: "VERIFICATION";
|
2224
|
+
id: string;
|
2225
|
+
title: TranslationConfig;
|
2226
|
+
actions: {
|
2227
|
+
verify: {
|
2228
|
+
label: TranslationConfig;
|
2229
|
+
};
|
2230
|
+
cancel: {
|
2231
|
+
label: TranslationConfig;
|
2232
|
+
confirmation: {
|
2233
|
+
title: TranslationConfig;
|
2234
|
+
body: TranslationConfig;
|
2235
|
+
};
|
2236
|
+
};
|
2237
|
+
};
|
2238
|
+
fields: import("./FieldConfig").Inferred[];
|
2239
|
+
})[];
|
1456
2240
|
review: {
|
1457
2241
|
title: TranslationConfig;
|
1458
2242
|
fields: import("./FieldConfig").Inferred[];
|
@@ -1476,11 +2260,29 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
1476
2260
|
label: TranslationConfig;
|
1477
2261
|
};
|
1478
2262
|
label: TranslationConfig;
|
1479
|
-
pages: {
|
2263
|
+
pages: ({
|
1480
2264
|
id: string;
|
1481
2265
|
title: TranslationConfig;
|
1482
2266
|
fields: import("./FieldConfig").Inferred[];
|
1483
|
-
|
2267
|
+
type?: "FORM" | undefined;
|
2268
|
+
} | {
|
2269
|
+
type: "VERIFICATION";
|
2270
|
+
id: string;
|
2271
|
+
title: TranslationConfig;
|
2272
|
+
actions: {
|
2273
|
+
verify: {
|
2274
|
+
label: TranslationConfig;
|
2275
|
+
};
|
2276
|
+
cancel: {
|
2277
|
+
label: TranslationConfig;
|
2278
|
+
confirmation: {
|
2279
|
+
title: TranslationConfig;
|
2280
|
+
body: TranslationConfig;
|
2281
|
+
};
|
2282
|
+
};
|
2283
|
+
};
|
2284
|
+
fields: import("./FieldConfig").Inferred[];
|
2285
|
+
})[];
|
1484
2286
|
review: {
|
1485
2287
|
title: TranslationConfig;
|
1486
2288
|
fields: import("./FieldConfig").Inferred[];
|
@@ -1504,11 +2306,29 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
1504
2306
|
label: TranslationConfig;
|
1505
2307
|
};
|
1506
2308
|
label: TranslationConfig;
|
1507
|
-
pages: {
|
2309
|
+
pages: ({
|
1508
2310
|
id: string;
|
1509
2311
|
title: TranslationConfig;
|
1510
2312
|
fields: import("./FieldConfig").Inferred[];
|
1511
|
-
|
2313
|
+
type?: "FORM" | undefined;
|
2314
|
+
} | {
|
2315
|
+
type: "VERIFICATION";
|
2316
|
+
id: string;
|
2317
|
+
title: TranslationConfig;
|
2318
|
+
actions: {
|
2319
|
+
verify: {
|
2320
|
+
label: TranslationConfig;
|
2321
|
+
};
|
2322
|
+
cancel: {
|
2323
|
+
label: TranslationConfig;
|
2324
|
+
confirmation: {
|
2325
|
+
title: TranslationConfig;
|
2326
|
+
body: TranslationConfig;
|
2327
|
+
};
|
2328
|
+
};
|
2329
|
+
};
|
2330
|
+
fields: import("./FieldConfig").Inferred[];
|
2331
|
+
})[];
|
1512
2332
|
review: {
|
1513
2333
|
title: TranslationConfig;
|
1514
2334
|
fields: import("./FieldConfig").Inferred[];
|
@@ -1532,11 +2352,29 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
1532
2352
|
label: TranslationConfig;
|
1533
2353
|
};
|
1534
2354
|
label: TranslationConfig;
|
1535
|
-
pages: {
|
2355
|
+
pages: ({
|
1536
2356
|
id: string;
|
1537
2357
|
title: TranslationConfig;
|
1538
2358
|
fields: import("./FieldConfig").Inferred[];
|
1539
|
-
|
2359
|
+
type?: "FORM" | undefined;
|
2360
|
+
} | {
|
2361
|
+
type: "VERIFICATION";
|
2362
|
+
id: string;
|
2363
|
+
title: TranslationConfig;
|
2364
|
+
actions: {
|
2365
|
+
verify: {
|
2366
|
+
label: TranslationConfig;
|
2367
|
+
};
|
2368
|
+
cancel: {
|
2369
|
+
label: TranslationConfig;
|
2370
|
+
confirmation: {
|
2371
|
+
title: TranslationConfig;
|
2372
|
+
body: TranslationConfig;
|
2373
|
+
};
|
2374
|
+
};
|
2375
|
+
};
|
2376
|
+
fields: import("./FieldConfig").Inferred[];
|
2377
|
+
})[];
|
1540
2378
|
review: {
|
1541
2379
|
title: TranslationConfig;
|
1542
2380
|
fields: import("./FieldConfig").Inferred[];
|
@@ -1546,11 +2384,13 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
1546
2384
|
id: string;
|
1547
2385
|
title: TranslationConfig;
|
1548
2386
|
fields: import("./FieldConfig").Inferred[];
|
2387
|
+
type?: "FORM" | undefined;
|
1549
2388
|
}[];
|
1550
2389
|
additionalDetailsForm: {
|
1551
2390
|
id: string;
|
1552
2391
|
title: TranslationConfig;
|
1553
2392
|
fields: import("./FieldConfig").Inferred[];
|
2393
|
+
type?: "FORM" | undefined;
|
1554
2394
|
}[];
|
1555
2395
|
draft?: boolean | undefined;
|
1556
2396
|
} | {
|
@@ -1570,11 +2410,29 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
1570
2410
|
label: TranslationConfig;
|
1571
2411
|
};
|
1572
2412
|
label: TranslationConfig;
|
1573
|
-
pages: {
|
2413
|
+
pages: ({
|
1574
2414
|
id: string;
|
1575
2415
|
title: TranslationConfig;
|
1576
2416
|
fields: import("./FieldConfig").Inferred[];
|
1577
|
-
|
2417
|
+
type?: "FORM" | undefined;
|
2418
|
+
} | {
|
2419
|
+
type: "VERIFICATION";
|
2420
|
+
id: string;
|
2421
|
+
title: TranslationConfig;
|
2422
|
+
actions: {
|
2423
|
+
verify: {
|
2424
|
+
label: TranslationConfig;
|
2425
|
+
};
|
2426
|
+
cancel: {
|
2427
|
+
label: TranslationConfig;
|
2428
|
+
confirmation: {
|
2429
|
+
title: TranslationConfig;
|
2430
|
+
body: TranslationConfig;
|
2431
|
+
};
|
2432
|
+
};
|
2433
|
+
};
|
2434
|
+
fields: import("./FieldConfig").Inferred[];
|
2435
|
+
})[];
|
1578
2436
|
review: {
|
1579
2437
|
title: TranslationConfig;
|
1580
2438
|
fields: import("./FieldConfig").Inferred[];
|
@@ -1598,11 +2456,29 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
1598
2456
|
label: TranslationConfig;
|
1599
2457
|
};
|
1600
2458
|
label: TranslationConfig;
|
1601
|
-
pages: {
|
2459
|
+
pages: ({
|
1602
2460
|
id: string;
|
1603
2461
|
title: TranslationConfig;
|
1604
2462
|
fields: import("./FieldConfig").Inferred[];
|
1605
|
-
|
2463
|
+
type?: "FORM" | undefined;
|
2464
|
+
} | {
|
2465
|
+
type: "VERIFICATION";
|
2466
|
+
id: string;
|
2467
|
+
title: TranslationConfig;
|
2468
|
+
actions: {
|
2469
|
+
verify: {
|
2470
|
+
label: TranslationConfig;
|
2471
|
+
};
|
2472
|
+
cancel: {
|
2473
|
+
label: TranslationConfig;
|
2474
|
+
confirmation: {
|
2475
|
+
title: TranslationConfig;
|
2476
|
+
body: TranslationConfig;
|
2477
|
+
};
|
2478
|
+
};
|
2479
|
+
};
|
2480
|
+
fields: import("./FieldConfig").Inferred[];
|
2481
|
+
})[];
|
1606
2482
|
review: {
|
1607
2483
|
title: TranslationConfig;
|
1608
2484
|
fields: import("./FieldConfig").Inferred[];
|
@@ -1626,11 +2502,29 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
1626
2502
|
label: TranslationConfig;
|
1627
2503
|
};
|
1628
2504
|
label: TranslationConfig;
|
1629
|
-
pages: {
|
2505
|
+
pages: ({
|
1630
2506
|
id: string;
|
1631
2507
|
title: TranslationConfig;
|
1632
2508
|
fields: import("./FieldConfig").Inferred[];
|
1633
|
-
|
2509
|
+
type?: "FORM" | undefined;
|
2510
|
+
} | {
|
2511
|
+
type: "VERIFICATION";
|
2512
|
+
id: string;
|
2513
|
+
title: TranslationConfig;
|
2514
|
+
actions: {
|
2515
|
+
verify: {
|
2516
|
+
label: TranslationConfig;
|
2517
|
+
};
|
2518
|
+
cancel: {
|
2519
|
+
label: TranslationConfig;
|
2520
|
+
confirmation: {
|
2521
|
+
title: TranslationConfig;
|
2522
|
+
body: TranslationConfig;
|
2523
|
+
};
|
2524
|
+
};
|
2525
|
+
};
|
2526
|
+
fields: import("./FieldConfig").Inferred[];
|
2527
|
+
})[];
|
1634
2528
|
review: {
|
1635
2529
|
title: TranslationConfig;
|
1636
2530
|
fields: import("./FieldConfig").Inferred[];
|
@@ -1695,7 +2589,7 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
1695
2589
|
description: string;
|
1696
2590
|
defaultMessage: string;
|
1697
2591
|
};
|
1698
|
-
pages: {
|
2592
|
+
pages: ({
|
1699
2593
|
id: string;
|
1700
2594
|
title: {
|
1701
2595
|
id: string;
|
@@ -1703,7 +2597,45 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
1703
2597
|
defaultMessage: string;
|
1704
2598
|
};
|
1705
2599
|
fields: import("./FieldConfig").Inferred[];
|
1706
|
-
|
2600
|
+
type?: "FORM" | undefined;
|
2601
|
+
} | {
|
2602
|
+
type: "VERIFICATION";
|
2603
|
+
id: string;
|
2604
|
+
title: {
|
2605
|
+
id: string;
|
2606
|
+
description: string;
|
2607
|
+
defaultMessage: string;
|
2608
|
+
};
|
2609
|
+
actions: {
|
2610
|
+
verify: {
|
2611
|
+
label: {
|
2612
|
+
id: string;
|
2613
|
+
description: string;
|
2614
|
+
defaultMessage: string;
|
2615
|
+
};
|
2616
|
+
};
|
2617
|
+
cancel: {
|
2618
|
+
label: {
|
2619
|
+
id: string;
|
2620
|
+
description: string;
|
2621
|
+
defaultMessage: string;
|
2622
|
+
};
|
2623
|
+
confirmation: {
|
2624
|
+
title: {
|
2625
|
+
id: string;
|
2626
|
+
description: string;
|
2627
|
+
defaultMessage: string;
|
2628
|
+
};
|
2629
|
+
body: {
|
2630
|
+
id: string;
|
2631
|
+
description: string;
|
2632
|
+
defaultMessage: string;
|
2633
|
+
};
|
2634
|
+
};
|
2635
|
+
};
|
2636
|
+
};
|
2637
|
+
fields: import("./FieldConfig").Inferred[];
|
2638
|
+
})[];
|
1707
2639
|
review: {
|
1708
2640
|
title: {
|
1709
2641
|
id: string;
|
@@ -1743,7 +2675,7 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
1743
2675
|
description: string;
|
1744
2676
|
defaultMessage: string;
|
1745
2677
|
};
|
1746
|
-
pages: {
|
2678
|
+
pages: ({
|
1747
2679
|
id: string;
|
1748
2680
|
title: {
|
1749
2681
|
id: string;
|
@@ -1751,7 +2683,45 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
1751
2683
|
defaultMessage: string;
|
1752
2684
|
};
|
1753
2685
|
fields: import("./FieldConfig").Inferred[];
|
1754
|
-
|
2686
|
+
type?: "FORM" | undefined;
|
2687
|
+
} | {
|
2688
|
+
type: "VERIFICATION";
|
2689
|
+
id: string;
|
2690
|
+
title: {
|
2691
|
+
id: string;
|
2692
|
+
description: string;
|
2693
|
+
defaultMessage: string;
|
2694
|
+
};
|
2695
|
+
actions: {
|
2696
|
+
verify: {
|
2697
|
+
label: {
|
2698
|
+
id: string;
|
2699
|
+
description: string;
|
2700
|
+
defaultMessage: string;
|
2701
|
+
};
|
2702
|
+
};
|
2703
|
+
cancel: {
|
2704
|
+
label: {
|
2705
|
+
id: string;
|
2706
|
+
description: string;
|
2707
|
+
defaultMessage: string;
|
2708
|
+
};
|
2709
|
+
confirmation: {
|
2710
|
+
title: {
|
2711
|
+
id: string;
|
2712
|
+
description: string;
|
2713
|
+
defaultMessage: string;
|
2714
|
+
};
|
2715
|
+
body: {
|
2716
|
+
id: string;
|
2717
|
+
description: string;
|
2718
|
+
defaultMessage: string;
|
2719
|
+
};
|
2720
|
+
};
|
2721
|
+
};
|
2722
|
+
};
|
2723
|
+
fields: import("./FieldConfig").Inferred[];
|
2724
|
+
})[];
|
1755
2725
|
review: {
|
1756
2726
|
title: {
|
1757
2727
|
id: string;
|
@@ -1792,7 +2762,7 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
1792
2762
|
description: string;
|
1793
2763
|
defaultMessage: string;
|
1794
2764
|
};
|
1795
|
-
pages: {
|
2765
|
+
pages: ({
|
1796
2766
|
id: string;
|
1797
2767
|
title: {
|
1798
2768
|
id: string;
|
@@ -1800,7 +2770,45 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
1800
2770
|
defaultMessage: string;
|
1801
2771
|
};
|
1802
2772
|
fields: import("./FieldConfig").Inferred[];
|
1803
|
-
|
2773
|
+
type?: "FORM" | undefined;
|
2774
|
+
} | {
|
2775
|
+
type: "VERIFICATION";
|
2776
|
+
id: string;
|
2777
|
+
title: {
|
2778
|
+
id: string;
|
2779
|
+
description: string;
|
2780
|
+
defaultMessage: string;
|
2781
|
+
};
|
2782
|
+
actions: {
|
2783
|
+
verify: {
|
2784
|
+
label: {
|
2785
|
+
id: string;
|
2786
|
+
description: string;
|
2787
|
+
defaultMessage: string;
|
2788
|
+
};
|
2789
|
+
};
|
2790
|
+
cancel: {
|
2791
|
+
label: {
|
2792
|
+
id: string;
|
2793
|
+
description: string;
|
2794
|
+
defaultMessage: string;
|
2795
|
+
};
|
2796
|
+
confirmation: {
|
2797
|
+
title: {
|
2798
|
+
id: string;
|
2799
|
+
description: string;
|
2800
|
+
defaultMessage: string;
|
2801
|
+
};
|
2802
|
+
body: {
|
2803
|
+
id: string;
|
2804
|
+
description: string;
|
2805
|
+
defaultMessage: string;
|
2806
|
+
};
|
2807
|
+
};
|
2808
|
+
};
|
2809
|
+
};
|
2810
|
+
fields: import("./FieldConfig").Inferred[];
|
2811
|
+
})[];
|
1804
2812
|
review: {
|
1805
2813
|
title: {
|
1806
2814
|
id: string;
|
@@ -1842,7 +2850,7 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
1842
2850
|
description: string;
|
1843
2851
|
defaultMessage: string;
|
1844
2852
|
};
|
1845
|
-
pages: {
|
2853
|
+
pages: ({
|
1846
2854
|
id: string;
|
1847
2855
|
title: {
|
1848
2856
|
id: string;
|
@@ -1850,7 +2858,45 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
1850
2858
|
defaultMessage: string;
|
1851
2859
|
};
|
1852
2860
|
fields: import("./FieldConfig").Inferred[];
|
1853
|
-
|
2861
|
+
type?: "FORM" | undefined;
|
2862
|
+
} | {
|
2863
|
+
type: "VERIFICATION";
|
2864
|
+
id: string;
|
2865
|
+
title: {
|
2866
|
+
id: string;
|
2867
|
+
description: string;
|
2868
|
+
defaultMessage: string;
|
2869
|
+
};
|
2870
|
+
actions: {
|
2871
|
+
verify: {
|
2872
|
+
label: {
|
2873
|
+
id: string;
|
2874
|
+
description: string;
|
2875
|
+
defaultMessage: string;
|
2876
|
+
};
|
2877
|
+
};
|
2878
|
+
cancel: {
|
2879
|
+
label: {
|
2880
|
+
id: string;
|
2881
|
+
description: string;
|
2882
|
+
defaultMessage: string;
|
2883
|
+
};
|
2884
|
+
confirmation: {
|
2885
|
+
title: {
|
2886
|
+
id: string;
|
2887
|
+
description: string;
|
2888
|
+
defaultMessage: string;
|
2889
|
+
};
|
2890
|
+
body: {
|
2891
|
+
id: string;
|
2892
|
+
description: string;
|
2893
|
+
defaultMessage: string;
|
2894
|
+
};
|
2895
|
+
};
|
2896
|
+
};
|
2897
|
+
};
|
2898
|
+
fields: import("./FieldConfig").Inferred[];
|
2899
|
+
})[];
|
1854
2900
|
review: {
|
1855
2901
|
title: {
|
1856
2902
|
id: string;
|
@@ -1892,7 +2938,7 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
1892
2938
|
description: string;
|
1893
2939
|
defaultMessage: string;
|
1894
2940
|
};
|
1895
|
-
pages: {
|
2941
|
+
pages: ({
|
1896
2942
|
id: string;
|
1897
2943
|
title: {
|
1898
2944
|
id: string;
|
@@ -1900,7 +2946,45 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
1900
2946
|
defaultMessage: string;
|
1901
2947
|
};
|
1902
2948
|
fields: import("./FieldConfig").Inferred[];
|
1903
|
-
|
2949
|
+
type?: "FORM" | undefined;
|
2950
|
+
} | {
|
2951
|
+
type: "VERIFICATION";
|
2952
|
+
id: string;
|
2953
|
+
title: {
|
2954
|
+
id: string;
|
2955
|
+
description: string;
|
2956
|
+
defaultMessage: string;
|
2957
|
+
};
|
2958
|
+
actions: {
|
2959
|
+
verify: {
|
2960
|
+
label: {
|
2961
|
+
id: string;
|
2962
|
+
description: string;
|
2963
|
+
defaultMessage: string;
|
2964
|
+
};
|
2965
|
+
};
|
2966
|
+
cancel: {
|
2967
|
+
label: {
|
2968
|
+
id: string;
|
2969
|
+
description: string;
|
2970
|
+
defaultMessage: string;
|
2971
|
+
};
|
2972
|
+
confirmation: {
|
2973
|
+
title: {
|
2974
|
+
id: string;
|
2975
|
+
description: string;
|
2976
|
+
defaultMessage: string;
|
2977
|
+
};
|
2978
|
+
body: {
|
2979
|
+
id: string;
|
2980
|
+
description: string;
|
2981
|
+
defaultMessage: string;
|
2982
|
+
};
|
2983
|
+
};
|
2984
|
+
};
|
2985
|
+
};
|
2986
|
+
fields: import("./FieldConfig").Inferred[];
|
2987
|
+
})[];
|
1904
2988
|
review: {
|
1905
2989
|
title: {
|
1906
2990
|
id: string;
|
@@ -1941,7 +3025,7 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
1941
3025
|
description: string;
|
1942
3026
|
defaultMessage: string;
|
1943
3027
|
};
|
1944
|
-
pages: {
|
3028
|
+
pages: ({
|
1945
3029
|
id: string;
|
1946
3030
|
title: {
|
1947
3031
|
id: string;
|
@@ -1949,7 +3033,45 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
1949
3033
|
defaultMessage: string;
|
1950
3034
|
};
|
1951
3035
|
fields: import("./FieldConfig").Inferred[];
|
1952
|
-
|
3036
|
+
type?: "FORM" | undefined;
|
3037
|
+
} | {
|
3038
|
+
type: "VERIFICATION";
|
3039
|
+
id: string;
|
3040
|
+
title: {
|
3041
|
+
id: string;
|
3042
|
+
description: string;
|
3043
|
+
defaultMessage: string;
|
3044
|
+
};
|
3045
|
+
actions: {
|
3046
|
+
verify: {
|
3047
|
+
label: {
|
3048
|
+
id: string;
|
3049
|
+
description: string;
|
3050
|
+
defaultMessage: string;
|
3051
|
+
};
|
3052
|
+
};
|
3053
|
+
cancel: {
|
3054
|
+
label: {
|
3055
|
+
id: string;
|
3056
|
+
description: string;
|
3057
|
+
defaultMessage: string;
|
3058
|
+
};
|
3059
|
+
confirmation: {
|
3060
|
+
title: {
|
3061
|
+
id: string;
|
3062
|
+
description: string;
|
3063
|
+
defaultMessage: string;
|
3064
|
+
};
|
3065
|
+
body: {
|
3066
|
+
id: string;
|
3067
|
+
description: string;
|
3068
|
+
defaultMessage: string;
|
3069
|
+
};
|
3070
|
+
};
|
3071
|
+
};
|
3072
|
+
};
|
3073
|
+
fields: import("./FieldConfig").Inferred[];
|
3074
|
+
})[];
|
1953
3075
|
review: {
|
1954
3076
|
title: {
|
1955
3077
|
id: string;
|
@@ -1989,7 +3111,7 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
1989
3111
|
description: string;
|
1990
3112
|
defaultMessage: string;
|
1991
3113
|
};
|
1992
|
-
pages: {
|
3114
|
+
pages: ({
|
1993
3115
|
id: string;
|
1994
3116
|
title: {
|
1995
3117
|
id: string;
|
@@ -1997,7 +3119,45 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
1997
3119
|
defaultMessage: string;
|
1998
3120
|
};
|
1999
3121
|
fields: import("./FieldConfig").Inferred[];
|
2000
|
-
|
3122
|
+
type?: "FORM" | undefined;
|
3123
|
+
} | {
|
3124
|
+
type: "VERIFICATION";
|
3125
|
+
id: string;
|
3126
|
+
title: {
|
3127
|
+
id: string;
|
3128
|
+
description: string;
|
3129
|
+
defaultMessage: string;
|
3130
|
+
};
|
3131
|
+
actions: {
|
3132
|
+
verify: {
|
3133
|
+
label: {
|
3134
|
+
id: string;
|
3135
|
+
description: string;
|
3136
|
+
defaultMessage: string;
|
3137
|
+
};
|
3138
|
+
};
|
3139
|
+
cancel: {
|
3140
|
+
label: {
|
3141
|
+
id: string;
|
3142
|
+
description: string;
|
3143
|
+
defaultMessage: string;
|
3144
|
+
};
|
3145
|
+
confirmation: {
|
3146
|
+
title: {
|
3147
|
+
id: string;
|
3148
|
+
description: string;
|
3149
|
+
defaultMessage: string;
|
3150
|
+
};
|
3151
|
+
body: {
|
3152
|
+
id: string;
|
3153
|
+
description: string;
|
3154
|
+
defaultMessage: string;
|
3155
|
+
};
|
3156
|
+
};
|
3157
|
+
};
|
3158
|
+
};
|
3159
|
+
fields: import("./FieldConfig").Inferred[];
|
3160
|
+
})[];
|
2001
3161
|
review: {
|
2002
3162
|
title: {
|
2003
3163
|
id: string;
|
@@ -2037,7 +3197,7 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
2037
3197
|
description: string;
|
2038
3198
|
defaultMessage: string;
|
2039
3199
|
};
|
2040
|
-
pages: {
|
3200
|
+
pages: ({
|
2041
3201
|
id: string;
|
2042
3202
|
title: {
|
2043
3203
|
id: string;
|
@@ -2045,7 +3205,45 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
2045
3205
|
defaultMessage: string;
|
2046
3206
|
};
|
2047
3207
|
fields: import("./FieldConfig").Inferred[];
|
2048
|
-
|
3208
|
+
type?: "FORM" | undefined;
|
3209
|
+
} | {
|
3210
|
+
type: "VERIFICATION";
|
3211
|
+
id: string;
|
3212
|
+
title: {
|
3213
|
+
id: string;
|
3214
|
+
description: string;
|
3215
|
+
defaultMessage: string;
|
3216
|
+
};
|
3217
|
+
actions: {
|
3218
|
+
verify: {
|
3219
|
+
label: {
|
3220
|
+
id: string;
|
3221
|
+
description: string;
|
3222
|
+
defaultMessage: string;
|
3223
|
+
};
|
3224
|
+
};
|
3225
|
+
cancel: {
|
3226
|
+
label: {
|
3227
|
+
id: string;
|
3228
|
+
description: string;
|
3229
|
+
defaultMessage: string;
|
3230
|
+
};
|
3231
|
+
confirmation: {
|
3232
|
+
title: {
|
3233
|
+
id: string;
|
3234
|
+
description: string;
|
3235
|
+
defaultMessage: string;
|
3236
|
+
};
|
3237
|
+
body: {
|
3238
|
+
id: string;
|
3239
|
+
description: string;
|
3240
|
+
defaultMessage: string;
|
3241
|
+
};
|
3242
|
+
};
|
3243
|
+
};
|
3244
|
+
};
|
3245
|
+
fields: import("./FieldConfig").Inferred[];
|
3246
|
+
})[];
|
2049
3247
|
review: {
|
2050
3248
|
title: {
|
2051
3249
|
id: string;
|
@@ -2085,7 +3283,7 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
2085
3283
|
description: string;
|
2086
3284
|
defaultMessage: string;
|
2087
3285
|
};
|
2088
|
-
pages: {
|
3286
|
+
pages: ({
|
2089
3287
|
id: string;
|
2090
3288
|
title: {
|
2091
3289
|
id: string;
|
@@ -2093,7 +3291,45 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
2093
3291
|
defaultMessage: string;
|
2094
3292
|
};
|
2095
3293
|
fields: import("./FieldConfig").Inferred[];
|
2096
|
-
|
3294
|
+
type?: "FORM" | undefined;
|
3295
|
+
} | {
|
3296
|
+
type: "VERIFICATION";
|
3297
|
+
id: string;
|
3298
|
+
title: {
|
3299
|
+
id: string;
|
3300
|
+
description: string;
|
3301
|
+
defaultMessage: string;
|
3302
|
+
};
|
3303
|
+
actions: {
|
3304
|
+
verify: {
|
3305
|
+
label: {
|
3306
|
+
id: string;
|
3307
|
+
description: string;
|
3308
|
+
defaultMessage: string;
|
3309
|
+
};
|
3310
|
+
};
|
3311
|
+
cancel: {
|
3312
|
+
label: {
|
3313
|
+
id: string;
|
3314
|
+
description: string;
|
3315
|
+
defaultMessage: string;
|
3316
|
+
};
|
3317
|
+
confirmation: {
|
3318
|
+
title: {
|
3319
|
+
id: string;
|
3320
|
+
description: string;
|
3321
|
+
defaultMessage: string;
|
3322
|
+
};
|
3323
|
+
body: {
|
3324
|
+
id: string;
|
3325
|
+
description: string;
|
3326
|
+
defaultMessage: string;
|
3327
|
+
};
|
3328
|
+
};
|
3329
|
+
};
|
3330
|
+
};
|
3331
|
+
fields: import("./FieldConfig").Inferred[];
|
3332
|
+
})[];
|
2097
3333
|
review: {
|
2098
3334
|
title: {
|
2099
3335
|
id: string;
|
@@ -2112,6 +3348,7 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
2112
3348
|
defaultMessage: string;
|
2113
3349
|
};
|
2114
3350
|
fields: import("./FieldConfig").Inferred[];
|
3351
|
+
type?: "FORM" | undefined;
|
2115
3352
|
}[];
|
2116
3353
|
additionalDetailsForm: {
|
2117
3354
|
id: string;
|
@@ -2121,6 +3358,7 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
2121
3358
|
defaultMessage: string;
|
2122
3359
|
};
|
2123
3360
|
fields: import("./FieldConfig").Inferred[];
|
3361
|
+
type?: "FORM" | undefined;
|
2124
3362
|
}[];
|
2125
3363
|
draft?: boolean | undefined;
|
2126
3364
|
conditionals?: ({
|
@@ -2151,7 +3389,7 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
2151
3389
|
description: string;
|
2152
3390
|
defaultMessage: string;
|
2153
3391
|
};
|
2154
|
-
pages: {
|
3392
|
+
pages: ({
|
2155
3393
|
id: string;
|
2156
3394
|
title: {
|
2157
3395
|
id: string;
|
@@ -2159,7 +3397,45 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
2159
3397
|
defaultMessage: string;
|
2160
3398
|
};
|
2161
3399
|
fields: import("./FieldConfig").Inferred[];
|
2162
|
-
|
3400
|
+
type?: "FORM" | undefined;
|
3401
|
+
} | {
|
3402
|
+
type: "VERIFICATION";
|
3403
|
+
id: string;
|
3404
|
+
title: {
|
3405
|
+
id: string;
|
3406
|
+
description: string;
|
3407
|
+
defaultMessage: string;
|
3408
|
+
};
|
3409
|
+
actions: {
|
3410
|
+
verify: {
|
3411
|
+
label: {
|
3412
|
+
id: string;
|
3413
|
+
description: string;
|
3414
|
+
defaultMessage: string;
|
3415
|
+
};
|
3416
|
+
};
|
3417
|
+
cancel: {
|
3418
|
+
label: {
|
3419
|
+
id: string;
|
3420
|
+
description: string;
|
3421
|
+
defaultMessage: string;
|
3422
|
+
};
|
3423
|
+
confirmation: {
|
3424
|
+
title: {
|
3425
|
+
id: string;
|
3426
|
+
description: string;
|
3427
|
+
defaultMessage: string;
|
3428
|
+
};
|
3429
|
+
body: {
|
3430
|
+
id: string;
|
3431
|
+
description: string;
|
3432
|
+
defaultMessage: string;
|
3433
|
+
};
|
3434
|
+
};
|
3435
|
+
};
|
3436
|
+
};
|
3437
|
+
fields: import("./FieldConfig").Inferred[];
|
3438
|
+
})[];
|
2163
3439
|
review: {
|
2164
3440
|
title: {
|
2165
3441
|
id: string;
|
@@ -2199,7 +3475,7 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
2199
3475
|
description: string;
|
2200
3476
|
defaultMessage: string;
|
2201
3477
|
};
|
2202
|
-
pages: {
|
3478
|
+
pages: ({
|
2203
3479
|
id: string;
|
2204
3480
|
title: {
|
2205
3481
|
id: string;
|
@@ -2207,7 +3483,45 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
2207
3483
|
defaultMessage: string;
|
2208
3484
|
};
|
2209
3485
|
fields: import("./FieldConfig").Inferred[];
|
2210
|
-
|
3486
|
+
type?: "FORM" | undefined;
|
3487
|
+
} | {
|
3488
|
+
type: "VERIFICATION";
|
3489
|
+
id: string;
|
3490
|
+
title: {
|
3491
|
+
id: string;
|
3492
|
+
description: string;
|
3493
|
+
defaultMessage: string;
|
3494
|
+
};
|
3495
|
+
actions: {
|
3496
|
+
verify: {
|
3497
|
+
label: {
|
3498
|
+
id: string;
|
3499
|
+
description: string;
|
3500
|
+
defaultMessage: string;
|
3501
|
+
};
|
3502
|
+
};
|
3503
|
+
cancel: {
|
3504
|
+
label: {
|
3505
|
+
id: string;
|
3506
|
+
description: string;
|
3507
|
+
defaultMessage: string;
|
3508
|
+
};
|
3509
|
+
confirmation: {
|
3510
|
+
title: {
|
3511
|
+
id: string;
|
3512
|
+
description: string;
|
3513
|
+
defaultMessage: string;
|
3514
|
+
};
|
3515
|
+
body: {
|
3516
|
+
id: string;
|
3517
|
+
description: string;
|
3518
|
+
defaultMessage: string;
|
3519
|
+
};
|
3520
|
+
};
|
3521
|
+
};
|
3522
|
+
};
|
3523
|
+
fields: import("./FieldConfig").Inferred[];
|
3524
|
+
})[];
|
2211
3525
|
review: {
|
2212
3526
|
title: {
|
2213
3527
|
id: string;
|
@@ -2247,7 +3561,7 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
2247
3561
|
description: string;
|
2248
3562
|
defaultMessage: string;
|
2249
3563
|
};
|
2250
|
-
pages: {
|
3564
|
+
pages: ({
|
2251
3565
|
id: string;
|
2252
3566
|
title: {
|
2253
3567
|
id: string;
|
@@ -2255,7 +3569,45 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
2255
3569
|
defaultMessage: string;
|
2256
3570
|
};
|
2257
3571
|
fields: import("./FieldConfig").Inferred[];
|
2258
|
-
|
3572
|
+
type?: "FORM" | undefined;
|
3573
|
+
} | {
|
3574
|
+
type: "VERIFICATION";
|
3575
|
+
id: string;
|
3576
|
+
title: {
|
3577
|
+
id: string;
|
3578
|
+
description: string;
|
3579
|
+
defaultMessage: string;
|
3580
|
+
};
|
3581
|
+
actions: {
|
3582
|
+
verify: {
|
3583
|
+
label: {
|
3584
|
+
id: string;
|
3585
|
+
description: string;
|
3586
|
+
defaultMessage: string;
|
3587
|
+
};
|
3588
|
+
};
|
3589
|
+
cancel: {
|
3590
|
+
label: {
|
3591
|
+
id: string;
|
3592
|
+
description: string;
|
3593
|
+
defaultMessage: string;
|
3594
|
+
};
|
3595
|
+
confirmation: {
|
3596
|
+
title: {
|
3597
|
+
id: string;
|
3598
|
+
description: string;
|
3599
|
+
defaultMessage: string;
|
3600
|
+
};
|
3601
|
+
body: {
|
3602
|
+
id: string;
|
3603
|
+
description: string;
|
3604
|
+
defaultMessage: string;
|
3605
|
+
};
|
3606
|
+
};
|
3607
|
+
};
|
3608
|
+
};
|
3609
|
+
fields: import("./FieldConfig").Inferred[];
|
3610
|
+
})[];
|
2259
3611
|
review: {
|
2260
3612
|
title: {
|
2261
3613
|
id: string;
|