@opencrvs/toolkit 1.8.0-rc.ff2e7b6 → 1.8.0-rc.ff62f9e
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 +6823 -479
- package/dist/commons/conditionals/conditionals.d.ts +1 -0
- package/dist/commons/conditionals/validate-address.test.d.ts +2 -0
- package/dist/commons/conditionals/validate.d.ts +27 -0
- package/dist/commons/conditionals/validate.test.d.ts +2 -0
- package/dist/commons/events/ActionConfig.d.ts +4708 -256
- package/dist/commons/events/ActionDocument.d.ts +2546 -71
- package/dist/commons/events/ActionInput.d.ts +4096 -188
- package/dist/commons/events/ActionType.d.ts +6 -0
- package/dist/commons/events/CompositeFieldValue.d.ts +152 -2
- package/dist/commons/events/Draft.d.ts +300 -12
- package/dist/commons/events/EventConfig.d.ts +1844 -188
- package/dist/commons/events/EventConfigInput.d.ts +2 -2
- package/dist/commons/events/EventDocument.d.ts +3239 -156
- package/dist/commons/events/FieldConfig.d.ts +292 -40
- package/dist/commons/events/FieldType.d.ts +2 -1
- package/dist/commons/events/FieldTypeMapping.d.ts +154 -3
- package/dist/commons/events/FieldValue.d.ts +76 -2
- package/dist/commons/events/FormConfig.d.ts +377 -29
- package/dist/commons/events/defineConfig.d.ts +308 -34
- package/dist/commons/events/test.utils.d.ts +161 -13
- package/dist/commons/events/utils.d.ts +229 -12
- package/dist/conditionals/index.js +17 -0
- package/dist/events/index.js +456 -95
- package/package.json +1 -1
@@ -244,11 +244,31 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
244
244
|
label: TranslationConfig;
|
245
245
|
};
|
246
246
|
label: TranslationConfig;
|
247
|
-
pages: {
|
247
|
+
pages: ({
|
248
|
+
type: "FORM";
|
248
249
|
id: string;
|
249
250
|
title: TranslationConfig;
|
250
251
|
fields: import("./FieldConfig").Inferred[];
|
251
|
-
|
252
|
+
conditional?: import(".").JSONSchema | undefined;
|
253
|
+
} | {
|
254
|
+
type: "VERIFICATION";
|
255
|
+
id: string;
|
256
|
+
title: TranslationConfig;
|
257
|
+
actions: {
|
258
|
+
verify: {
|
259
|
+
label: TranslationConfig;
|
260
|
+
};
|
261
|
+
cancel: {
|
262
|
+
label: TranslationConfig;
|
263
|
+
confirmation: {
|
264
|
+
title: TranslationConfig;
|
265
|
+
body: TranslationConfig;
|
266
|
+
};
|
267
|
+
};
|
268
|
+
};
|
269
|
+
fields: import("./FieldConfig").Inferred[];
|
270
|
+
conditional?: import(".").JSONSchema | undefined;
|
271
|
+
})[];
|
252
272
|
review: {
|
253
273
|
title: TranslationConfig;
|
254
274
|
fields: import("./FieldConfig").Inferred[];
|
@@ -272,11 +292,31 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
272
292
|
label: TranslationConfig;
|
273
293
|
};
|
274
294
|
label: TranslationConfig;
|
275
|
-
pages: {
|
295
|
+
pages: ({
|
296
|
+
type: "FORM";
|
276
297
|
id: string;
|
277
298
|
title: TranslationConfig;
|
278
299
|
fields: import("./FieldConfig").Inferred[];
|
279
|
-
|
300
|
+
conditional?: import(".").JSONSchema | undefined;
|
301
|
+
} | {
|
302
|
+
type: "VERIFICATION";
|
303
|
+
id: string;
|
304
|
+
title: TranslationConfig;
|
305
|
+
actions: {
|
306
|
+
verify: {
|
307
|
+
label: TranslationConfig;
|
308
|
+
};
|
309
|
+
cancel: {
|
310
|
+
label: TranslationConfig;
|
311
|
+
confirmation: {
|
312
|
+
title: TranslationConfig;
|
313
|
+
body: TranslationConfig;
|
314
|
+
};
|
315
|
+
};
|
316
|
+
};
|
317
|
+
fields: import("./FieldConfig").Inferred[];
|
318
|
+
conditional?: import(".").JSONSchema | undefined;
|
319
|
+
})[];
|
280
320
|
review: {
|
281
321
|
title: TranslationConfig;
|
282
322
|
fields: import("./FieldConfig").Inferred[];
|
@@ -285,7 +325,6 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
285
325
|
draft?: boolean | undefined;
|
286
326
|
} | {
|
287
327
|
type: "REJECT";
|
288
|
-
comment: string;
|
289
328
|
conditionals: ({
|
290
329
|
type: "SHOW";
|
291
330
|
conditional: import(".").JSONSchema;
|
@@ -301,21 +340,39 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
301
340
|
label: TranslationConfig;
|
302
341
|
};
|
303
342
|
label: TranslationConfig;
|
304
|
-
pages: {
|
343
|
+
pages: ({
|
344
|
+
type: "FORM";
|
305
345
|
id: string;
|
306
346
|
title: TranslationConfig;
|
307
347
|
fields: import("./FieldConfig").Inferred[];
|
308
|
-
|
348
|
+
conditional?: import(".").JSONSchema | undefined;
|
349
|
+
} | {
|
350
|
+
type: "VERIFICATION";
|
351
|
+
id: string;
|
352
|
+
title: TranslationConfig;
|
353
|
+
actions: {
|
354
|
+
verify: {
|
355
|
+
label: TranslationConfig;
|
356
|
+
};
|
357
|
+
cancel: {
|
358
|
+
label: TranslationConfig;
|
359
|
+
confirmation: {
|
360
|
+
title: TranslationConfig;
|
361
|
+
body: TranslationConfig;
|
362
|
+
};
|
363
|
+
};
|
364
|
+
};
|
365
|
+
fields: import("./FieldConfig").Inferred[];
|
366
|
+
conditional?: import(".").JSONSchema | undefined;
|
367
|
+
})[];
|
309
368
|
review: {
|
310
369
|
title: TranslationConfig;
|
311
370
|
fields: import("./FieldConfig").Inferred[];
|
312
371
|
};
|
313
372
|
}[];
|
314
|
-
isDuplicate: boolean;
|
315
373
|
draft?: boolean | undefined;
|
316
374
|
} | {
|
317
375
|
type: "MARKED_AS_DUPLICATE";
|
318
|
-
comment: string;
|
319
376
|
conditionals: ({
|
320
377
|
type: "SHOW";
|
321
378
|
conditional: import(".").JSONSchema;
|
@@ -331,21 +388,39 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
331
388
|
label: TranslationConfig;
|
332
389
|
};
|
333
390
|
label: TranslationConfig;
|
334
|
-
pages: {
|
391
|
+
pages: ({
|
392
|
+
type: "FORM";
|
335
393
|
id: string;
|
336
394
|
title: TranslationConfig;
|
337
395
|
fields: import("./FieldConfig").Inferred[];
|
338
|
-
|
396
|
+
conditional?: import(".").JSONSchema | undefined;
|
397
|
+
} | {
|
398
|
+
type: "VERIFICATION";
|
399
|
+
id: string;
|
400
|
+
title: TranslationConfig;
|
401
|
+
actions: {
|
402
|
+
verify: {
|
403
|
+
label: TranslationConfig;
|
404
|
+
};
|
405
|
+
cancel: {
|
406
|
+
label: TranslationConfig;
|
407
|
+
confirmation: {
|
408
|
+
title: TranslationConfig;
|
409
|
+
body: TranslationConfig;
|
410
|
+
};
|
411
|
+
};
|
412
|
+
};
|
413
|
+
fields: import("./FieldConfig").Inferred[];
|
414
|
+
conditional?: import(".").JSONSchema | undefined;
|
415
|
+
})[];
|
339
416
|
review: {
|
340
417
|
title: TranslationConfig;
|
341
418
|
fields: import("./FieldConfig").Inferred[];
|
342
419
|
};
|
343
420
|
}[];
|
344
|
-
duplicates: string[];
|
345
421
|
draft?: boolean | undefined;
|
346
422
|
} | {
|
347
423
|
type: "ARCHIVE";
|
348
|
-
comment: string;
|
349
424
|
conditionals: ({
|
350
425
|
type: "SHOW";
|
351
426
|
conditional: import(".").JSONSchema;
|
@@ -361,17 +436,36 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
361
436
|
label: TranslationConfig;
|
362
437
|
};
|
363
438
|
label: TranslationConfig;
|
364
|
-
pages: {
|
439
|
+
pages: ({
|
440
|
+
type: "FORM";
|
365
441
|
id: string;
|
366
442
|
title: TranslationConfig;
|
367
443
|
fields: import("./FieldConfig").Inferred[];
|
368
|
-
|
444
|
+
conditional?: import(".").JSONSchema | undefined;
|
445
|
+
} | {
|
446
|
+
type: "VERIFICATION";
|
447
|
+
id: string;
|
448
|
+
title: TranslationConfig;
|
449
|
+
actions: {
|
450
|
+
verify: {
|
451
|
+
label: TranslationConfig;
|
452
|
+
};
|
453
|
+
cancel: {
|
454
|
+
label: TranslationConfig;
|
455
|
+
confirmation: {
|
456
|
+
title: TranslationConfig;
|
457
|
+
body: TranslationConfig;
|
458
|
+
};
|
459
|
+
};
|
460
|
+
};
|
461
|
+
fields: import("./FieldConfig").Inferred[];
|
462
|
+
conditional?: import(".").JSONSchema | undefined;
|
463
|
+
})[];
|
369
464
|
review: {
|
370
465
|
title: TranslationConfig;
|
371
466
|
fields: import("./FieldConfig").Inferred[];
|
372
467
|
};
|
373
468
|
}[];
|
374
|
-
isDuplicate: boolean;
|
375
469
|
draft?: boolean | undefined;
|
376
470
|
} | {
|
377
471
|
type: "REGISTER";
|
@@ -390,11 +484,31 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
390
484
|
label: TranslationConfig;
|
391
485
|
};
|
392
486
|
label: TranslationConfig;
|
393
|
-
pages: {
|
487
|
+
pages: ({
|
488
|
+
type: "FORM";
|
394
489
|
id: string;
|
395
490
|
title: TranslationConfig;
|
396
491
|
fields: import("./FieldConfig").Inferred[];
|
397
|
-
|
492
|
+
conditional?: import(".").JSONSchema | undefined;
|
493
|
+
} | {
|
494
|
+
type: "VERIFICATION";
|
495
|
+
id: string;
|
496
|
+
title: TranslationConfig;
|
497
|
+
actions: {
|
498
|
+
verify: {
|
499
|
+
label: TranslationConfig;
|
500
|
+
};
|
501
|
+
cancel: {
|
502
|
+
label: TranslationConfig;
|
503
|
+
confirmation: {
|
504
|
+
title: TranslationConfig;
|
505
|
+
body: TranslationConfig;
|
506
|
+
};
|
507
|
+
};
|
508
|
+
};
|
509
|
+
fields: import("./FieldConfig").Inferred[];
|
510
|
+
conditional?: import(".").JSONSchema | undefined;
|
511
|
+
})[];
|
398
512
|
review: {
|
399
513
|
title: TranslationConfig;
|
400
514
|
fields: import("./FieldConfig").Inferred[];
|
@@ -418,11 +532,31 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
418
532
|
label: TranslationConfig;
|
419
533
|
};
|
420
534
|
label: TranslationConfig;
|
421
|
-
pages: {
|
535
|
+
pages: ({
|
536
|
+
type: "FORM";
|
422
537
|
id: string;
|
423
538
|
title: TranslationConfig;
|
424
539
|
fields: import("./FieldConfig").Inferred[];
|
425
|
-
|
540
|
+
conditional?: import(".").JSONSchema | undefined;
|
541
|
+
} | {
|
542
|
+
type: "VERIFICATION";
|
543
|
+
id: string;
|
544
|
+
title: TranslationConfig;
|
545
|
+
actions: {
|
546
|
+
verify: {
|
547
|
+
label: TranslationConfig;
|
548
|
+
};
|
549
|
+
cancel: {
|
550
|
+
label: TranslationConfig;
|
551
|
+
confirmation: {
|
552
|
+
title: TranslationConfig;
|
553
|
+
body: TranslationConfig;
|
554
|
+
};
|
555
|
+
};
|
556
|
+
};
|
557
|
+
fields: import("./FieldConfig").Inferred[];
|
558
|
+
conditional?: import(".").JSONSchema | undefined;
|
559
|
+
})[];
|
426
560
|
review: {
|
427
561
|
title: TranslationConfig;
|
428
562
|
fields: import("./FieldConfig").Inferred[];
|
@@ -446,11 +580,31 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
446
580
|
label: TranslationConfig;
|
447
581
|
};
|
448
582
|
label: TranslationConfig;
|
449
|
-
pages: {
|
583
|
+
pages: ({
|
584
|
+
type: "FORM";
|
450
585
|
id: string;
|
451
586
|
title: TranslationConfig;
|
452
587
|
fields: import("./FieldConfig").Inferred[];
|
453
|
-
|
588
|
+
conditional?: import(".").JSONSchema | undefined;
|
589
|
+
} | {
|
590
|
+
type: "VERIFICATION";
|
591
|
+
id: string;
|
592
|
+
title: TranslationConfig;
|
593
|
+
actions: {
|
594
|
+
verify: {
|
595
|
+
label: TranslationConfig;
|
596
|
+
};
|
597
|
+
cancel: {
|
598
|
+
label: TranslationConfig;
|
599
|
+
confirmation: {
|
600
|
+
title: TranslationConfig;
|
601
|
+
body: TranslationConfig;
|
602
|
+
};
|
603
|
+
};
|
604
|
+
};
|
605
|
+
fields: import("./FieldConfig").Inferred[];
|
606
|
+
conditional?: import(".").JSONSchema | undefined;
|
607
|
+
})[];
|
454
608
|
review: {
|
455
609
|
title: TranslationConfig;
|
456
610
|
fields: import("./FieldConfig").Inferred[];
|
@@ -474,26 +628,86 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
474
628
|
label: TranslationConfig;
|
475
629
|
};
|
476
630
|
label: TranslationConfig;
|
477
|
-
pages: {
|
631
|
+
pages: ({
|
632
|
+
type: "FORM";
|
478
633
|
id: string;
|
479
634
|
title: TranslationConfig;
|
480
635
|
fields: import("./FieldConfig").Inferred[];
|
481
|
-
|
636
|
+
conditional?: import(".").JSONSchema | undefined;
|
637
|
+
} | {
|
638
|
+
type: "VERIFICATION";
|
639
|
+
id: string;
|
640
|
+
title: TranslationConfig;
|
641
|
+
actions: {
|
642
|
+
verify: {
|
643
|
+
label: TranslationConfig;
|
644
|
+
};
|
645
|
+
cancel: {
|
646
|
+
label: TranslationConfig;
|
647
|
+
confirmation: {
|
648
|
+
title: TranslationConfig;
|
649
|
+
body: TranslationConfig;
|
650
|
+
};
|
651
|
+
};
|
652
|
+
};
|
653
|
+
fields: import("./FieldConfig").Inferred[];
|
654
|
+
conditional?: import(".").JSONSchema | undefined;
|
655
|
+
})[];
|
482
656
|
review: {
|
483
657
|
title: TranslationConfig;
|
484
658
|
fields: import("./FieldConfig").Inferred[];
|
485
659
|
};
|
486
660
|
}[];
|
487
|
-
onboardingForm: {
|
661
|
+
onboardingForm: ({
|
662
|
+
type: "FORM";
|
488
663
|
id: string;
|
489
664
|
title: TranslationConfig;
|
490
665
|
fields: import("./FieldConfig").Inferred[];
|
491
|
-
|
492
|
-
|
666
|
+
conditional?: import(".").JSONSchema | undefined;
|
667
|
+
} | {
|
668
|
+
type: "VERIFICATION";
|
493
669
|
id: string;
|
494
670
|
title: TranslationConfig;
|
671
|
+
actions: {
|
672
|
+
verify: {
|
673
|
+
label: TranslationConfig;
|
674
|
+
};
|
675
|
+
cancel: {
|
676
|
+
label: TranslationConfig;
|
677
|
+
confirmation: {
|
678
|
+
title: TranslationConfig;
|
679
|
+
body: TranslationConfig;
|
680
|
+
};
|
681
|
+
};
|
682
|
+
};
|
495
683
|
fields: import("./FieldConfig").Inferred[];
|
496
|
-
|
684
|
+
conditional?: import(".").JSONSchema | undefined;
|
685
|
+
})[];
|
686
|
+
additionalDetailsForm: ({
|
687
|
+
type: "FORM";
|
688
|
+
id: string;
|
689
|
+
title: TranslationConfig;
|
690
|
+
fields: import("./FieldConfig").Inferred[];
|
691
|
+
conditional?: import(".").JSONSchema | undefined;
|
692
|
+
} | {
|
693
|
+
type: "VERIFICATION";
|
694
|
+
id: string;
|
695
|
+
title: TranslationConfig;
|
696
|
+
actions: {
|
697
|
+
verify: {
|
698
|
+
label: TranslationConfig;
|
699
|
+
};
|
700
|
+
cancel: {
|
701
|
+
label: TranslationConfig;
|
702
|
+
confirmation: {
|
703
|
+
title: TranslationConfig;
|
704
|
+
body: TranslationConfig;
|
705
|
+
};
|
706
|
+
};
|
707
|
+
};
|
708
|
+
fields: import("./FieldConfig").Inferred[];
|
709
|
+
conditional?: import(".").JSONSchema | undefined;
|
710
|
+
})[];
|
497
711
|
draft?: boolean | undefined;
|
498
712
|
} | {
|
499
713
|
type: "REJECT_CORRECTION";
|
@@ -512,11 +726,31 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
512
726
|
label: TranslationConfig;
|
513
727
|
};
|
514
728
|
label: TranslationConfig;
|
515
|
-
pages: {
|
729
|
+
pages: ({
|
730
|
+
type: "FORM";
|
516
731
|
id: string;
|
517
732
|
title: TranslationConfig;
|
518
733
|
fields: import("./FieldConfig").Inferred[];
|
519
|
-
|
734
|
+
conditional?: import(".").JSONSchema | undefined;
|
735
|
+
} | {
|
736
|
+
type: "VERIFICATION";
|
737
|
+
id: string;
|
738
|
+
title: TranslationConfig;
|
739
|
+
actions: {
|
740
|
+
verify: {
|
741
|
+
label: TranslationConfig;
|
742
|
+
};
|
743
|
+
cancel: {
|
744
|
+
label: TranslationConfig;
|
745
|
+
confirmation: {
|
746
|
+
title: TranslationConfig;
|
747
|
+
body: TranslationConfig;
|
748
|
+
};
|
749
|
+
};
|
750
|
+
};
|
751
|
+
fields: import("./FieldConfig").Inferred[];
|
752
|
+
conditional?: import(".").JSONSchema | undefined;
|
753
|
+
})[];
|
520
754
|
review: {
|
521
755
|
title: TranslationConfig;
|
522
756
|
fields: import("./FieldConfig").Inferred[];
|
@@ -540,11 +774,31 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
540
774
|
label: TranslationConfig;
|
541
775
|
};
|
542
776
|
label: TranslationConfig;
|
543
|
-
pages: {
|
777
|
+
pages: ({
|
778
|
+
type: "FORM";
|
544
779
|
id: string;
|
545
780
|
title: TranslationConfig;
|
546
781
|
fields: import("./FieldConfig").Inferred[];
|
547
|
-
|
782
|
+
conditional?: import(".").JSONSchema | undefined;
|
783
|
+
} | {
|
784
|
+
type: "VERIFICATION";
|
785
|
+
id: string;
|
786
|
+
title: TranslationConfig;
|
787
|
+
actions: {
|
788
|
+
verify: {
|
789
|
+
label: TranslationConfig;
|
790
|
+
};
|
791
|
+
cancel: {
|
792
|
+
label: TranslationConfig;
|
793
|
+
confirmation: {
|
794
|
+
title: TranslationConfig;
|
795
|
+
body: TranslationConfig;
|
796
|
+
};
|
797
|
+
};
|
798
|
+
};
|
799
|
+
fields: import("./FieldConfig").Inferred[];
|
800
|
+
conditional?: import(".").JSONSchema | undefined;
|
801
|
+
})[];
|
548
802
|
review: {
|
549
803
|
title: TranslationConfig;
|
550
804
|
fields: import("./FieldConfig").Inferred[];
|
@@ -568,11 +822,31 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
568
822
|
label: TranslationConfig;
|
569
823
|
};
|
570
824
|
label: TranslationConfig;
|
571
|
-
pages: {
|
825
|
+
pages: ({
|
826
|
+
type: "FORM";
|
572
827
|
id: string;
|
573
828
|
title: TranslationConfig;
|
574
829
|
fields: import("./FieldConfig").Inferred[];
|
575
|
-
|
830
|
+
conditional?: import(".").JSONSchema | undefined;
|
831
|
+
} | {
|
832
|
+
type: "VERIFICATION";
|
833
|
+
id: string;
|
834
|
+
title: TranslationConfig;
|
835
|
+
actions: {
|
836
|
+
verify: {
|
837
|
+
label: TranslationConfig;
|
838
|
+
};
|
839
|
+
cancel: {
|
840
|
+
label: TranslationConfig;
|
841
|
+
confirmation: {
|
842
|
+
title: TranslationConfig;
|
843
|
+
body: TranslationConfig;
|
844
|
+
};
|
845
|
+
};
|
846
|
+
};
|
847
|
+
fields: import("./FieldConfig").Inferred[];
|
848
|
+
conditional?: import(".").JSONSchema | undefined;
|
849
|
+
})[];
|
576
850
|
review: {
|
577
851
|
title: TranslationConfig;
|
578
852
|
fields: import("./FieldConfig").Inferred[];
|
@@ -637,22 +911,62 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
637
911
|
description: string;
|
638
912
|
defaultMessage: string;
|
639
913
|
};
|
640
|
-
pages: {
|
914
|
+
pages: ({
|
641
915
|
id: string;
|
642
916
|
title: {
|
643
917
|
id: string;
|
644
918
|
description: string;
|
645
919
|
defaultMessage: string;
|
646
920
|
};
|
647
|
-
fields: import("./FieldConfig").
|
648
|
-
|
921
|
+
fields: import("./FieldConfig").InferredInput[];
|
922
|
+
type?: "FORM" | undefined;
|
923
|
+
conditional?: import(".").JSONSchema | undefined;
|
924
|
+
} | {
|
925
|
+
type: "VERIFICATION";
|
926
|
+
id: string;
|
927
|
+
title: {
|
928
|
+
id: string;
|
929
|
+
description: string;
|
930
|
+
defaultMessage: string;
|
931
|
+
};
|
932
|
+
actions: {
|
933
|
+
verify: {
|
934
|
+
label: {
|
935
|
+
id: string;
|
936
|
+
description: string;
|
937
|
+
defaultMessage: string;
|
938
|
+
};
|
939
|
+
};
|
940
|
+
cancel: {
|
941
|
+
label: {
|
942
|
+
id: string;
|
943
|
+
description: string;
|
944
|
+
defaultMessage: string;
|
945
|
+
};
|
946
|
+
confirmation: {
|
947
|
+
title: {
|
948
|
+
id: string;
|
949
|
+
description: string;
|
950
|
+
defaultMessage: string;
|
951
|
+
};
|
952
|
+
body: {
|
953
|
+
id: string;
|
954
|
+
description: string;
|
955
|
+
defaultMessage: string;
|
956
|
+
};
|
957
|
+
};
|
958
|
+
};
|
959
|
+
};
|
960
|
+
fields: import("./FieldConfig").InferredInput[];
|
961
|
+
conditional?: import(".").JSONSchema | undefined;
|
962
|
+
})[];
|
649
963
|
review: {
|
650
964
|
title: {
|
651
965
|
id: string;
|
652
966
|
description: string;
|
653
967
|
defaultMessage: string;
|
654
968
|
};
|
655
|
-
fields: import("./FieldConfig").
|
969
|
+
fields: import("./FieldConfig").InferredInput[];
|
656
970
|
};
|
657
971
|
active?: boolean | undefined;
|
658
972
|
}[];
|
@@ -685,22 +999,62 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
685
999
|
description: string;
|
686
1000
|
defaultMessage: string;
|
687
1001
|
};
|
688
|
-
pages: {
|
1002
|
+
pages: ({
|
689
1003
|
id: string;
|
690
1004
|
title: {
|
691
1005
|
id: string;
|
692
1006
|
description: string;
|
693
1007
|
defaultMessage: string;
|
694
1008
|
};
|
695
|
-
fields: import("./FieldConfig").
|
696
|
-
|
1009
|
+
fields: import("./FieldConfig").InferredInput[];
|
1010
|
+
type?: "FORM" | undefined;
|
1011
|
+
conditional?: import(".").JSONSchema | undefined;
|
1012
|
+
} | {
|
1013
|
+
type: "VERIFICATION";
|
1014
|
+
id: string;
|
1015
|
+
title: {
|
1016
|
+
id: string;
|
1017
|
+
description: string;
|
1018
|
+
defaultMessage: string;
|
1019
|
+
};
|
1020
|
+
actions: {
|
1021
|
+
verify: {
|
1022
|
+
label: {
|
1023
|
+
id: string;
|
1024
|
+
description: string;
|
1025
|
+
defaultMessage: string;
|
1026
|
+
};
|
1027
|
+
};
|
1028
|
+
cancel: {
|
1029
|
+
label: {
|
1030
|
+
id: string;
|
1031
|
+
description: string;
|
1032
|
+
defaultMessage: string;
|
1033
|
+
};
|
1034
|
+
confirmation: {
|
1035
|
+
title: {
|
1036
|
+
id: string;
|
1037
|
+
description: string;
|
1038
|
+
defaultMessage: string;
|
1039
|
+
};
|
1040
|
+
body: {
|
1041
|
+
id: string;
|
1042
|
+
description: string;
|
1043
|
+
defaultMessage: string;
|
1044
|
+
};
|
1045
|
+
};
|
1046
|
+
};
|
1047
|
+
};
|
1048
|
+
fields: import("./FieldConfig").InferredInput[];
|
1049
|
+
conditional?: import(".").JSONSchema | undefined;
|
1050
|
+
})[];
|
697
1051
|
review: {
|
698
1052
|
title: {
|
699
1053
|
id: string;
|
700
1054
|
description: string;
|
701
1055
|
defaultMessage: string;
|
702
1056
|
};
|
703
|
-
fields: import("./FieldConfig").
|
1057
|
+
fields: import("./FieldConfig").InferredInput[];
|
704
1058
|
};
|
705
1059
|
active?: boolean | undefined;
|
706
1060
|
}[];
|
@@ -714,7 +1068,6 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
714
1068
|
})[] | undefined;
|
715
1069
|
} | {
|
716
1070
|
type: "REJECT";
|
717
|
-
comment: string;
|
718
1071
|
label: {
|
719
1072
|
id: string;
|
720
1073
|
description: string;
|
@@ -734,26 +1087,65 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
734
1087
|
description: string;
|
735
1088
|
defaultMessage: string;
|
736
1089
|
};
|
737
|
-
pages: {
|
1090
|
+
pages: ({
|
738
1091
|
id: string;
|
739
1092
|
title: {
|
740
1093
|
id: string;
|
741
1094
|
description: string;
|
742
1095
|
defaultMessage: string;
|
743
1096
|
};
|
744
|
-
fields: import("./FieldConfig").
|
745
|
-
|
1097
|
+
fields: import("./FieldConfig").InferredInput[];
|
1098
|
+
type?: "FORM" | undefined;
|
1099
|
+
conditional?: import(".").JSONSchema | undefined;
|
1100
|
+
} | {
|
1101
|
+
type: "VERIFICATION";
|
1102
|
+
id: string;
|
1103
|
+
title: {
|
1104
|
+
id: string;
|
1105
|
+
description: string;
|
1106
|
+
defaultMessage: string;
|
1107
|
+
};
|
1108
|
+
actions: {
|
1109
|
+
verify: {
|
1110
|
+
label: {
|
1111
|
+
id: string;
|
1112
|
+
description: string;
|
1113
|
+
defaultMessage: string;
|
1114
|
+
};
|
1115
|
+
};
|
1116
|
+
cancel: {
|
1117
|
+
label: {
|
1118
|
+
id: string;
|
1119
|
+
description: string;
|
1120
|
+
defaultMessage: string;
|
1121
|
+
};
|
1122
|
+
confirmation: {
|
1123
|
+
title: {
|
1124
|
+
id: string;
|
1125
|
+
description: string;
|
1126
|
+
defaultMessage: string;
|
1127
|
+
};
|
1128
|
+
body: {
|
1129
|
+
id: string;
|
1130
|
+
description: string;
|
1131
|
+
defaultMessage: string;
|
1132
|
+
};
|
1133
|
+
};
|
1134
|
+
};
|
1135
|
+
};
|
1136
|
+
fields: import("./FieldConfig").InferredInput[];
|
1137
|
+
conditional?: import(".").JSONSchema | undefined;
|
1138
|
+
})[];
|
746
1139
|
review: {
|
747
1140
|
title: {
|
748
1141
|
id: string;
|
749
1142
|
description: string;
|
750
1143
|
defaultMessage: string;
|
751
1144
|
};
|
752
|
-
fields: import("./FieldConfig").
|
1145
|
+
fields: import("./FieldConfig").InferredInput[];
|
753
1146
|
};
|
754
1147
|
active?: boolean | undefined;
|
755
1148
|
}[];
|
756
|
-
isDuplicate: boolean;
|
757
1149
|
draft?: boolean | undefined;
|
758
1150
|
conditionals?: ({
|
759
1151
|
type: "SHOW";
|
@@ -764,7 +1156,6 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
764
1156
|
})[] | undefined;
|
765
1157
|
} | {
|
766
1158
|
type: "MARKED_AS_DUPLICATE";
|
767
|
-
comment: string;
|
768
1159
|
label: {
|
769
1160
|
id: string;
|
770
1161
|
description: string;
|
@@ -784,26 +1175,65 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
784
1175
|
description: string;
|
785
1176
|
defaultMessage: string;
|
786
1177
|
};
|
787
|
-
pages: {
|
1178
|
+
pages: ({
|
788
1179
|
id: string;
|
789
1180
|
title: {
|
790
1181
|
id: string;
|
791
1182
|
description: string;
|
792
1183
|
defaultMessage: string;
|
793
1184
|
};
|
794
|
-
fields: import("./FieldConfig").
|
795
|
-
|
1185
|
+
fields: import("./FieldConfig").InferredInput[];
|
1186
|
+
type?: "FORM" | undefined;
|
1187
|
+
conditional?: import(".").JSONSchema | undefined;
|
1188
|
+
} | {
|
1189
|
+
type: "VERIFICATION";
|
1190
|
+
id: string;
|
1191
|
+
title: {
|
1192
|
+
id: string;
|
1193
|
+
description: string;
|
1194
|
+
defaultMessage: string;
|
1195
|
+
};
|
1196
|
+
actions: {
|
1197
|
+
verify: {
|
1198
|
+
label: {
|
1199
|
+
id: string;
|
1200
|
+
description: string;
|
1201
|
+
defaultMessage: string;
|
1202
|
+
};
|
1203
|
+
};
|
1204
|
+
cancel: {
|
1205
|
+
label: {
|
1206
|
+
id: string;
|
1207
|
+
description: string;
|
1208
|
+
defaultMessage: string;
|
1209
|
+
};
|
1210
|
+
confirmation: {
|
1211
|
+
title: {
|
1212
|
+
id: string;
|
1213
|
+
description: string;
|
1214
|
+
defaultMessage: string;
|
1215
|
+
};
|
1216
|
+
body: {
|
1217
|
+
id: string;
|
1218
|
+
description: string;
|
1219
|
+
defaultMessage: string;
|
1220
|
+
};
|
1221
|
+
};
|
1222
|
+
};
|
1223
|
+
};
|
1224
|
+
fields: import("./FieldConfig").InferredInput[];
|
1225
|
+
conditional?: import(".").JSONSchema | undefined;
|
1226
|
+
})[];
|
796
1227
|
review: {
|
797
1228
|
title: {
|
798
1229
|
id: string;
|
799
1230
|
description: string;
|
800
1231
|
defaultMessage: string;
|
801
1232
|
};
|
802
|
-
fields: import("./FieldConfig").
|
1233
|
+
fields: import("./FieldConfig").InferredInput[];
|
803
1234
|
};
|
804
1235
|
active?: boolean | undefined;
|
805
1236
|
}[];
|
806
|
-
duplicates: string[];
|
807
1237
|
draft?: boolean | undefined;
|
808
1238
|
conditionals?: ({
|
809
1239
|
type: "SHOW";
|
@@ -814,7 +1244,6 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
814
1244
|
})[] | undefined;
|
815
1245
|
} | {
|
816
1246
|
type: "ARCHIVE";
|
817
|
-
comment: string;
|
818
1247
|
label: {
|
819
1248
|
id: string;
|
820
1249
|
description: string;
|
@@ -834,26 +1263,65 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
834
1263
|
description: string;
|
835
1264
|
defaultMessage: string;
|
836
1265
|
};
|
837
|
-
pages: {
|
1266
|
+
pages: ({
|
838
1267
|
id: string;
|
839
1268
|
title: {
|
840
1269
|
id: string;
|
841
1270
|
description: string;
|
842
1271
|
defaultMessage: string;
|
843
1272
|
};
|
844
|
-
fields: import("./FieldConfig").
|
845
|
-
|
1273
|
+
fields: import("./FieldConfig").InferredInput[];
|
1274
|
+
type?: "FORM" | undefined;
|
1275
|
+
conditional?: import(".").JSONSchema | undefined;
|
1276
|
+
} | {
|
1277
|
+
type: "VERIFICATION";
|
1278
|
+
id: string;
|
1279
|
+
title: {
|
1280
|
+
id: string;
|
1281
|
+
description: string;
|
1282
|
+
defaultMessage: string;
|
1283
|
+
};
|
1284
|
+
actions: {
|
1285
|
+
verify: {
|
1286
|
+
label: {
|
1287
|
+
id: string;
|
1288
|
+
description: string;
|
1289
|
+
defaultMessage: string;
|
1290
|
+
};
|
1291
|
+
};
|
1292
|
+
cancel: {
|
1293
|
+
label: {
|
1294
|
+
id: string;
|
1295
|
+
description: string;
|
1296
|
+
defaultMessage: string;
|
1297
|
+
};
|
1298
|
+
confirmation: {
|
1299
|
+
title: {
|
1300
|
+
id: string;
|
1301
|
+
description: string;
|
1302
|
+
defaultMessage: string;
|
1303
|
+
};
|
1304
|
+
body: {
|
1305
|
+
id: string;
|
1306
|
+
description: string;
|
1307
|
+
defaultMessage: string;
|
1308
|
+
};
|
1309
|
+
};
|
1310
|
+
};
|
1311
|
+
};
|
1312
|
+
fields: import("./FieldConfig").InferredInput[];
|
1313
|
+
conditional?: import(".").JSONSchema | undefined;
|
1314
|
+
})[];
|
846
1315
|
review: {
|
847
1316
|
title: {
|
848
1317
|
id: string;
|
849
1318
|
description: string;
|
850
1319
|
defaultMessage: string;
|
851
1320
|
};
|
852
|
-
fields: import("./FieldConfig").
|
1321
|
+
fields: import("./FieldConfig").InferredInput[];
|
853
1322
|
};
|
854
1323
|
active?: boolean | undefined;
|
855
1324
|
}[];
|
856
|
-
isDuplicate: boolean;
|
857
1325
|
draft?: boolean | undefined;
|
858
1326
|
conditionals?: ({
|
859
1327
|
type: "SHOW";
|
@@ -883,22 +1351,62 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
883
1351
|
description: string;
|
884
1352
|
defaultMessage: string;
|
885
1353
|
};
|
886
|
-
pages: {
|
1354
|
+
pages: ({
|
887
1355
|
id: string;
|
888
1356
|
title: {
|
889
1357
|
id: string;
|
890
1358
|
description: string;
|
891
1359
|
defaultMessage: string;
|
892
1360
|
};
|
893
|
-
fields: import("./FieldConfig").
|
894
|
-
|
1361
|
+
fields: import("./FieldConfig").InferredInput[];
|
1362
|
+
type?: "FORM" | undefined;
|
1363
|
+
conditional?: import(".").JSONSchema | undefined;
|
1364
|
+
} | {
|
1365
|
+
type: "VERIFICATION";
|
1366
|
+
id: string;
|
1367
|
+
title: {
|
1368
|
+
id: string;
|
1369
|
+
description: string;
|
1370
|
+
defaultMessage: string;
|
1371
|
+
};
|
1372
|
+
actions: {
|
1373
|
+
verify: {
|
1374
|
+
label: {
|
1375
|
+
id: string;
|
1376
|
+
description: string;
|
1377
|
+
defaultMessage: string;
|
1378
|
+
};
|
1379
|
+
};
|
1380
|
+
cancel: {
|
1381
|
+
label: {
|
1382
|
+
id: string;
|
1383
|
+
description: string;
|
1384
|
+
defaultMessage: string;
|
1385
|
+
};
|
1386
|
+
confirmation: {
|
1387
|
+
title: {
|
1388
|
+
id: string;
|
1389
|
+
description: string;
|
1390
|
+
defaultMessage: string;
|
1391
|
+
};
|
1392
|
+
body: {
|
1393
|
+
id: string;
|
1394
|
+
description: string;
|
1395
|
+
defaultMessage: string;
|
1396
|
+
};
|
1397
|
+
};
|
1398
|
+
};
|
1399
|
+
};
|
1400
|
+
fields: import("./FieldConfig").InferredInput[];
|
1401
|
+
conditional?: import(".").JSONSchema | undefined;
|
1402
|
+
})[];
|
895
1403
|
review: {
|
896
1404
|
title: {
|
897
1405
|
id: string;
|
898
1406
|
description: string;
|
899
1407
|
defaultMessage: string;
|
900
1408
|
};
|
901
|
-
fields: import("./FieldConfig").
|
1409
|
+
fields: import("./FieldConfig").InferredInput[];
|
902
1410
|
};
|
903
1411
|
active?: boolean | undefined;
|
904
1412
|
}[];
|
@@ -931,22 +1439,62 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
931
1439
|
description: string;
|
932
1440
|
defaultMessage: string;
|
933
1441
|
};
|
934
|
-
pages: {
|
1442
|
+
pages: ({
|
935
1443
|
id: string;
|
936
1444
|
title: {
|
937
1445
|
id: string;
|
938
1446
|
description: string;
|
939
1447
|
defaultMessage: string;
|
940
1448
|
};
|
941
|
-
fields: import("./FieldConfig").
|
942
|
-
|
1449
|
+
fields: import("./FieldConfig").InferredInput[];
|
1450
|
+
type?: "FORM" | undefined;
|
1451
|
+
conditional?: import(".").JSONSchema | undefined;
|
1452
|
+
} | {
|
1453
|
+
type: "VERIFICATION";
|
1454
|
+
id: string;
|
1455
|
+
title: {
|
1456
|
+
id: string;
|
1457
|
+
description: string;
|
1458
|
+
defaultMessage: string;
|
1459
|
+
};
|
1460
|
+
actions: {
|
1461
|
+
verify: {
|
1462
|
+
label: {
|
1463
|
+
id: string;
|
1464
|
+
description: string;
|
1465
|
+
defaultMessage: string;
|
1466
|
+
};
|
1467
|
+
};
|
1468
|
+
cancel: {
|
1469
|
+
label: {
|
1470
|
+
id: string;
|
1471
|
+
description: string;
|
1472
|
+
defaultMessage: string;
|
1473
|
+
};
|
1474
|
+
confirmation: {
|
1475
|
+
title: {
|
1476
|
+
id: string;
|
1477
|
+
description: string;
|
1478
|
+
defaultMessage: string;
|
1479
|
+
};
|
1480
|
+
body: {
|
1481
|
+
id: string;
|
1482
|
+
description: string;
|
1483
|
+
defaultMessage: string;
|
1484
|
+
};
|
1485
|
+
};
|
1486
|
+
};
|
1487
|
+
};
|
1488
|
+
fields: import("./FieldConfig").InferredInput[];
|
1489
|
+
conditional?: import(".").JSONSchema | undefined;
|
1490
|
+
})[];
|
943
1491
|
review: {
|
944
1492
|
title: {
|
945
1493
|
id: string;
|
946
1494
|
description: string;
|
947
1495
|
defaultMessage: string;
|
948
1496
|
};
|
949
|
-
fields: import("./FieldConfig").
|
1497
|
+
fields: import("./FieldConfig").InferredInput[];
|
950
1498
|
};
|
951
1499
|
active?: boolean | undefined;
|
952
1500
|
}[];
|
@@ -979,22 +1527,62 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
979
1527
|
description: string;
|
980
1528
|
defaultMessage: string;
|
981
1529
|
};
|
982
|
-
pages: {
|
1530
|
+
pages: ({
|
983
1531
|
id: string;
|
984
1532
|
title: {
|
985
1533
|
id: string;
|
986
1534
|
description: string;
|
987
1535
|
defaultMessage: string;
|
988
1536
|
};
|
989
|
-
fields: import("./FieldConfig").
|
990
|
-
|
1537
|
+
fields: import("./FieldConfig").InferredInput[];
|
1538
|
+
type?: "FORM" | undefined;
|
1539
|
+
conditional?: import(".").JSONSchema | undefined;
|
1540
|
+
} | {
|
1541
|
+
type: "VERIFICATION";
|
1542
|
+
id: string;
|
1543
|
+
title: {
|
1544
|
+
id: string;
|
1545
|
+
description: string;
|
1546
|
+
defaultMessage: string;
|
1547
|
+
};
|
1548
|
+
actions: {
|
1549
|
+
verify: {
|
1550
|
+
label: {
|
1551
|
+
id: string;
|
1552
|
+
description: string;
|
1553
|
+
defaultMessage: string;
|
1554
|
+
};
|
1555
|
+
};
|
1556
|
+
cancel: {
|
1557
|
+
label: {
|
1558
|
+
id: string;
|
1559
|
+
description: string;
|
1560
|
+
defaultMessage: string;
|
1561
|
+
};
|
1562
|
+
confirmation: {
|
1563
|
+
title: {
|
1564
|
+
id: string;
|
1565
|
+
description: string;
|
1566
|
+
defaultMessage: string;
|
1567
|
+
};
|
1568
|
+
body: {
|
1569
|
+
id: string;
|
1570
|
+
description: string;
|
1571
|
+
defaultMessage: string;
|
1572
|
+
};
|
1573
|
+
};
|
1574
|
+
};
|
1575
|
+
};
|
1576
|
+
fields: import("./FieldConfig").InferredInput[];
|
1577
|
+
conditional?: import(".").JSONSchema | undefined;
|
1578
|
+
})[];
|
991
1579
|
review: {
|
992
1580
|
title: {
|
993
1581
|
id: string;
|
994
1582
|
description: string;
|
995
1583
|
defaultMessage: string;
|
996
1584
|
};
|
997
|
-
fields: import("./FieldConfig").
|
1585
|
+
fields: import("./FieldConfig").InferredInput[];
|
998
1586
|
};
|
999
1587
|
active?: boolean | undefined;
|
1000
1588
|
}[];
|
@@ -1027,43 +1615,163 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
1027
1615
|
description: string;
|
1028
1616
|
defaultMessage: string;
|
1029
1617
|
};
|
1030
|
-
pages: {
|
1618
|
+
pages: ({
|
1031
1619
|
id: string;
|
1032
1620
|
title: {
|
1033
1621
|
id: string;
|
1034
1622
|
description: string;
|
1035
1623
|
defaultMessage: string;
|
1036
1624
|
};
|
1037
|
-
fields: import("./FieldConfig").
|
1038
|
-
|
1625
|
+
fields: import("./FieldConfig").InferredInput[];
|
1626
|
+
type?: "FORM" | undefined;
|
1627
|
+
conditional?: import(".").JSONSchema | undefined;
|
1628
|
+
} | {
|
1629
|
+
type: "VERIFICATION";
|
1630
|
+
id: string;
|
1631
|
+
title: {
|
1632
|
+
id: string;
|
1633
|
+
description: string;
|
1634
|
+
defaultMessage: string;
|
1635
|
+
};
|
1636
|
+
actions: {
|
1637
|
+
verify: {
|
1638
|
+
label: {
|
1639
|
+
id: string;
|
1640
|
+
description: string;
|
1641
|
+
defaultMessage: string;
|
1642
|
+
};
|
1643
|
+
};
|
1644
|
+
cancel: {
|
1645
|
+
label: {
|
1646
|
+
id: string;
|
1647
|
+
description: string;
|
1648
|
+
defaultMessage: string;
|
1649
|
+
};
|
1650
|
+
confirmation: {
|
1651
|
+
title: {
|
1652
|
+
id: string;
|
1653
|
+
description: string;
|
1654
|
+
defaultMessage: string;
|
1655
|
+
};
|
1656
|
+
body: {
|
1657
|
+
id: string;
|
1658
|
+
description: string;
|
1659
|
+
defaultMessage: string;
|
1660
|
+
};
|
1661
|
+
};
|
1662
|
+
};
|
1663
|
+
};
|
1664
|
+
fields: import("./FieldConfig").InferredInput[];
|
1665
|
+
conditional?: import(".").JSONSchema | undefined;
|
1666
|
+
})[];
|
1039
1667
|
review: {
|
1040
1668
|
title: {
|
1041
1669
|
id: string;
|
1042
1670
|
description: string;
|
1043
1671
|
defaultMessage: string;
|
1044
1672
|
};
|
1045
|
-
fields: import("./FieldConfig").
|
1673
|
+
fields: import("./FieldConfig").InferredInput[];
|
1046
1674
|
};
|
1047
1675
|
active?: boolean | undefined;
|
1048
1676
|
}[];
|
1049
|
-
onboardingForm: {
|
1677
|
+
onboardingForm: ({
|
1050
1678
|
id: string;
|
1051
1679
|
title: {
|
1052
1680
|
id: string;
|
1053
1681
|
description: string;
|
1054
1682
|
defaultMessage: string;
|
1055
1683
|
};
|
1056
|
-
fields: import("./FieldConfig").
|
1057
|
-
|
1058
|
-
|
1684
|
+
fields: import("./FieldConfig").InferredInput[];
|
1685
|
+
type?: "FORM" | undefined;
|
1686
|
+
conditional?: import(".").JSONSchema | undefined;
|
1687
|
+
} | {
|
1688
|
+
type: "VERIFICATION";
|
1059
1689
|
id: string;
|
1060
1690
|
title: {
|
1061
1691
|
id: string;
|
1062
1692
|
description: string;
|
1063
1693
|
defaultMessage: string;
|
1064
1694
|
};
|
1065
|
-
|
1066
|
-
|
1695
|
+
actions: {
|
1696
|
+
verify: {
|
1697
|
+
label: {
|
1698
|
+
id: string;
|
1699
|
+
description: string;
|
1700
|
+
defaultMessage: string;
|
1701
|
+
};
|
1702
|
+
};
|
1703
|
+
cancel: {
|
1704
|
+
label: {
|
1705
|
+
id: string;
|
1706
|
+
description: string;
|
1707
|
+
defaultMessage: string;
|
1708
|
+
};
|
1709
|
+
confirmation: {
|
1710
|
+
title: {
|
1711
|
+
id: string;
|
1712
|
+
description: string;
|
1713
|
+
defaultMessage: string;
|
1714
|
+
};
|
1715
|
+
body: {
|
1716
|
+
id: string;
|
1717
|
+
description: string;
|
1718
|
+
defaultMessage: string;
|
1719
|
+
};
|
1720
|
+
};
|
1721
|
+
};
|
1722
|
+
};
|
1723
|
+
fields: import("./FieldConfig").InferredInput[];
|
1724
|
+
conditional?: import(".").JSONSchema | undefined;
|
1725
|
+
})[];
|
1726
|
+
additionalDetailsForm: ({
|
1727
|
+
id: string;
|
1728
|
+
title: {
|
1729
|
+
id: string;
|
1730
|
+
description: string;
|
1731
|
+
defaultMessage: string;
|
1732
|
+
};
|
1733
|
+
fields: import("./FieldConfig").InferredInput[];
|
1734
|
+
type?: "FORM" | undefined;
|
1735
|
+
conditional?: import(".").JSONSchema | undefined;
|
1736
|
+
} | {
|
1737
|
+
type: "VERIFICATION";
|
1738
|
+
id: string;
|
1739
|
+
title: {
|
1740
|
+
id: string;
|
1741
|
+
description: string;
|
1742
|
+
defaultMessage: string;
|
1743
|
+
};
|
1744
|
+
actions: {
|
1745
|
+
verify: {
|
1746
|
+
label: {
|
1747
|
+
id: string;
|
1748
|
+
description: string;
|
1749
|
+
defaultMessage: string;
|
1750
|
+
};
|
1751
|
+
};
|
1752
|
+
cancel: {
|
1753
|
+
label: {
|
1754
|
+
id: string;
|
1755
|
+
description: string;
|
1756
|
+
defaultMessage: string;
|
1757
|
+
};
|
1758
|
+
confirmation: {
|
1759
|
+
title: {
|
1760
|
+
id: string;
|
1761
|
+
description: string;
|
1762
|
+
defaultMessage: string;
|
1763
|
+
};
|
1764
|
+
body: {
|
1765
|
+
id: string;
|
1766
|
+
description: string;
|
1767
|
+
defaultMessage: string;
|
1768
|
+
};
|
1769
|
+
};
|
1770
|
+
};
|
1771
|
+
};
|
1772
|
+
fields: import("./FieldConfig").InferredInput[];
|
1773
|
+
conditional?: import(".").JSONSchema | undefined;
|
1774
|
+
})[];
|
1067
1775
|
draft?: boolean | undefined;
|
1068
1776
|
conditionals?: ({
|
1069
1777
|
type: "SHOW";
|
@@ -1093,22 +1801,62 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
1093
1801
|
description: string;
|
1094
1802
|
defaultMessage: string;
|
1095
1803
|
};
|
1096
|
-
pages: {
|
1804
|
+
pages: ({
|
1097
1805
|
id: string;
|
1098
1806
|
title: {
|
1099
1807
|
id: string;
|
1100
1808
|
description: string;
|
1101
1809
|
defaultMessage: string;
|
1102
1810
|
};
|
1103
|
-
fields: import("./FieldConfig").
|
1104
|
-
|
1811
|
+
fields: import("./FieldConfig").InferredInput[];
|
1812
|
+
type?: "FORM" | undefined;
|
1813
|
+
conditional?: import(".").JSONSchema | undefined;
|
1814
|
+
} | {
|
1815
|
+
type: "VERIFICATION";
|
1816
|
+
id: string;
|
1817
|
+
title: {
|
1818
|
+
id: string;
|
1819
|
+
description: string;
|
1820
|
+
defaultMessage: string;
|
1821
|
+
};
|
1822
|
+
actions: {
|
1823
|
+
verify: {
|
1824
|
+
label: {
|
1825
|
+
id: string;
|
1826
|
+
description: string;
|
1827
|
+
defaultMessage: string;
|
1828
|
+
};
|
1829
|
+
};
|
1830
|
+
cancel: {
|
1831
|
+
label: {
|
1832
|
+
id: string;
|
1833
|
+
description: string;
|
1834
|
+
defaultMessage: string;
|
1835
|
+
};
|
1836
|
+
confirmation: {
|
1837
|
+
title: {
|
1838
|
+
id: string;
|
1839
|
+
description: string;
|
1840
|
+
defaultMessage: string;
|
1841
|
+
};
|
1842
|
+
body: {
|
1843
|
+
id: string;
|
1844
|
+
description: string;
|
1845
|
+
defaultMessage: string;
|
1846
|
+
};
|
1847
|
+
};
|
1848
|
+
};
|
1849
|
+
};
|
1850
|
+
fields: import("./FieldConfig").InferredInput[];
|
1851
|
+
conditional?: import(".").JSONSchema | undefined;
|
1852
|
+
})[];
|
1105
1853
|
review: {
|
1106
1854
|
title: {
|
1107
1855
|
id: string;
|
1108
1856
|
description: string;
|
1109
1857
|
defaultMessage: string;
|
1110
1858
|
};
|
1111
|
-
fields: import("./FieldConfig").
|
1859
|
+
fields: import("./FieldConfig").InferredInput[];
|
1112
1860
|
};
|
1113
1861
|
active?: boolean | undefined;
|
1114
1862
|
}[];
|
@@ -1141,22 +1889,62 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
1141
1889
|
description: string;
|
1142
1890
|
defaultMessage: string;
|
1143
1891
|
};
|
1144
|
-
pages: {
|
1892
|
+
pages: ({
|
1145
1893
|
id: string;
|
1146
1894
|
title: {
|
1147
1895
|
id: string;
|
1148
1896
|
description: string;
|
1149
1897
|
defaultMessage: string;
|
1150
1898
|
};
|
1151
|
-
fields: import("./FieldConfig").
|
1152
|
-
|
1899
|
+
fields: import("./FieldConfig").InferredInput[];
|
1900
|
+
type?: "FORM" | undefined;
|
1901
|
+
conditional?: import(".").JSONSchema | undefined;
|
1902
|
+
} | {
|
1903
|
+
type: "VERIFICATION";
|
1904
|
+
id: string;
|
1905
|
+
title: {
|
1906
|
+
id: string;
|
1907
|
+
description: string;
|
1908
|
+
defaultMessage: string;
|
1909
|
+
};
|
1910
|
+
actions: {
|
1911
|
+
verify: {
|
1912
|
+
label: {
|
1913
|
+
id: string;
|
1914
|
+
description: string;
|
1915
|
+
defaultMessage: string;
|
1916
|
+
};
|
1917
|
+
};
|
1918
|
+
cancel: {
|
1919
|
+
label: {
|
1920
|
+
id: string;
|
1921
|
+
description: string;
|
1922
|
+
defaultMessage: string;
|
1923
|
+
};
|
1924
|
+
confirmation: {
|
1925
|
+
title: {
|
1926
|
+
id: string;
|
1927
|
+
description: string;
|
1928
|
+
defaultMessage: string;
|
1929
|
+
};
|
1930
|
+
body: {
|
1931
|
+
id: string;
|
1932
|
+
description: string;
|
1933
|
+
defaultMessage: string;
|
1934
|
+
};
|
1935
|
+
};
|
1936
|
+
};
|
1937
|
+
};
|
1938
|
+
fields: import("./FieldConfig").InferredInput[];
|
1939
|
+
conditional?: import(".").JSONSchema | undefined;
|
1940
|
+
})[];
|
1153
1941
|
review: {
|
1154
1942
|
title: {
|
1155
1943
|
id: string;
|
1156
1944
|
description: string;
|
1157
1945
|
defaultMessage: string;
|
1158
1946
|
};
|
1159
|
-
fields: import("./FieldConfig").
|
1947
|
+
fields: import("./FieldConfig").InferredInput[];
|
1160
1948
|
};
|
1161
1949
|
active?: boolean | undefined;
|
1162
1950
|
}[];
|
@@ -1189,22 +1977,62 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
1189
1977
|
description: string;
|
1190
1978
|
defaultMessage: string;
|
1191
1979
|
};
|
1192
|
-
pages: {
|
1980
|
+
pages: ({
|
1193
1981
|
id: string;
|
1194
1982
|
title: {
|
1195
1983
|
id: string;
|
1196
1984
|
description: string;
|
1197
1985
|
defaultMessage: string;
|
1198
1986
|
};
|
1199
|
-
fields: import("./FieldConfig").
|
1200
|
-
|
1987
|
+
fields: import("./FieldConfig").InferredInput[];
|
1988
|
+
type?: "FORM" | undefined;
|
1989
|
+
conditional?: import(".").JSONSchema | undefined;
|
1990
|
+
} | {
|
1991
|
+
type: "VERIFICATION";
|
1992
|
+
id: string;
|
1993
|
+
title: {
|
1994
|
+
id: string;
|
1995
|
+
description: string;
|
1996
|
+
defaultMessage: string;
|
1997
|
+
};
|
1998
|
+
actions: {
|
1999
|
+
verify: {
|
2000
|
+
label: {
|
2001
|
+
id: string;
|
2002
|
+
description: string;
|
2003
|
+
defaultMessage: string;
|
2004
|
+
};
|
2005
|
+
};
|
2006
|
+
cancel: {
|
2007
|
+
label: {
|
2008
|
+
id: string;
|
2009
|
+
description: string;
|
2010
|
+
defaultMessage: string;
|
2011
|
+
};
|
2012
|
+
confirmation: {
|
2013
|
+
title: {
|
2014
|
+
id: string;
|
2015
|
+
description: string;
|
2016
|
+
defaultMessage: string;
|
2017
|
+
};
|
2018
|
+
body: {
|
2019
|
+
id: string;
|
2020
|
+
description: string;
|
2021
|
+
defaultMessage: string;
|
2022
|
+
};
|
2023
|
+
};
|
2024
|
+
};
|
2025
|
+
};
|
2026
|
+
fields: import("./FieldConfig").InferredInput[];
|
2027
|
+
conditional?: import(".").JSONSchema | undefined;
|
2028
|
+
})[];
|
1201
2029
|
review: {
|
1202
2030
|
title: {
|
1203
2031
|
id: string;
|
1204
2032
|
description: string;
|
1205
2033
|
defaultMessage: string;
|
1206
2034
|
};
|
1207
|
-
fields: import("./FieldConfig").
|
2035
|
+
fields: import("./FieldConfig").InferredInput[];
|
1208
2036
|
};
|
1209
2037
|
active?: boolean | undefined;
|
1210
2038
|
}[];
|
@@ -1302,11 +2130,31 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
1302
2130
|
label: TranslationConfig;
|
1303
2131
|
};
|
1304
2132
|
label: TranslationConfig;
|
1305
|
-
pages: {
|
2133
|
+
pages: ({
|
2134
|
+
type: "FORM";
|
1306
2135
|
id: string;
|
1307
2136
|
title: TranslationConfig;
|
1308
2137
|
fields: import("./FieldConfig").Inferred[];
|
1309
|
-
|
2138
|
+
conditional?: import(".").JSONSchema | undefined;
|
2139
|
+
} | {
|
2140
|
+
type: "VERIFICATION";
|
2141
|
+
id: string;
|
2142
|
+
title: TranslationConfig;
|
2143
|
+
actions: {
|
2144
|
+
verify: {
|
2145
|
+
label: TranslationConfig;
|
2146
|
+
};
|
2147
|
+
cancel: {
|
2148
|
+
label: TranslationConfig;
|
2149
|
+
confirmation: {
|
2150
|
+
title: TranslationConfig;
|
2151
|
+
body: TranslationConfig;
|
2152
|
+
};
|
2153
|
+
};
|
2154
|
+
};
|
2155
|
+
fields: import("./FieldConfig").Inferred[];
|
2156
|
+
conditional?: import(".").JSONSchema | undefined;
|
2157
|
+
})[];
|
1310
2158
|
review: {
|
1311
2159
|
title: TranslationConfig;
|
1312
2160
|
fields: import("./FieldConfig").Inferred[];
|
@@ -1330,11 +2178,31 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
1330
2178
|
label: TranslationConfig;
|
1331
2179
|
};
|
1332
2180
|
label: TranslationConfig;
|
1333
|
-
pages: {
|
2181
|
+
pages: ({
|
2182
|
+
type: "FORM";
|
1334
2183
|
id: string;
|
1335
2184
|
title: TranslationConfig;
|
1336
2185
|
fields: import("./FieldConfig").Inferred[];
|
1337
|
-
|
2186
|
+
conditional?: import(".").JSONSchema | undefined;
|
2187
|
+
} | {
|
2188
|
+
type: "VERIFICATION";
|
2189
|
+
id: string;
|
2190
|
+
title: TranslationConfig;
|
2191
|
+
actions: {
|
2192
|
+
verify: {
|
2193
|
+
label: TranslationConfig;
|
2194
|
+
};
|
2195
|
+
cancel: {
|
2196
|
+
label: TranslationConfig;
|
2197
|
+
confirmation: {
|
2198
|
+
title: TranslationConfig;
|
2199
|
+
body: TranslationConfig;
|
2200
|
+
};
|
2201
|
+
};
|
2202
|
+
};
|
2203
|
+
fields: import("./FieldConfig").Inferred[];
|
2204
|
+
conditional?: import(".").JSONSchema | undefined;
|
2205
|
+
})[];
|
1338
2206
|
review: {
|
1339
2207
|
title: TranslationConfig;
|
1340
2208
|
fields: import("./FieldConfig").Inferred[];
|
@@ -1343,7 +2211,6 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
1343
2211
|
draft?: boolean | undefined;
|
1344
2212
|
} | {
|
1345
2213
|
type: "REJECT";
|
1346
|
-
comment: string;
|
1347
2214
|
conditionals: ({
|
1348
2215
|
type: "SHOW";
|
1349
2216
|
conditional: import(".").JSONSchema;
|
@@ -1359,21 +2226,39 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
1359
2226
|
label: TranslationConfig;
|
1360
2227
|
};
|
1361
2228
|
label: TranslationConfig;
|
1362
|
-
pages: {
|
2229
|
+
pages: ({
|
2230
|
+
type: "FORM";
|
1363
2231
|
id: string;
|
1364
2232
|
title: TranslationConfig;
|
1365
2233
|
fields: import("./FieldConfig").Inferred[];
|
1366
|
-
|
2234
|
+
conditional?: import(".").JSONSchema | undefined;
|
2235
|
+
} | {
|
2236
|
+
type: "VERIFICATION";
|
2237
|
+
id: string;
|
2238
|
+
title: TranslationConfig;
|
2239
|
+
actions: {
|
2240
|
+
verify: {
|
2241
|
+
label: TranslationConfig;
|
2242
|
+
};
|
2243
|
+
cancel: {
|
2244
|
+
label: TranslationConfig;
|
2245
|
+
confirmation: {
|
2246
|
+
title: TranslationConfig;
|
2247
|
+
body: TranslationConfig;
|
2248
|
+
};
|
2249
|
+
};
|
2250
|
+
};
|
2251
|
+
fields: import("./FieldConfig").Inferred[];
|
2252
|
+
conditional?: import(".").JSONSchema | undefined;
|
2253
|
+
})[];
|
1367
2254
|
review: {
|
1368
2255
|
title: TranslationConfig;
|
1369
2256
|
fields: import("./FieldConfig").Inferred[];
|
1370
2257
|
};
|
1371
2258
|
}[];
|
1372
|
-
isDuplicate: boolean;
|
1373
2259
|
draft?: boolean | undefined;
|
1374
2260
|
} | {
|
1375
2261
|
type: "MARKED_AS_DUPLICATE";
|
1376
|
-
comment: string;
|
1377
2262
|
conditionals: ({
|
1378
2263
|
type: "SHOW";
|
1379
2264
|
conditional: import(".").JSONSchema;
|
@@ -1389,21 +2274,39 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
1389
2274
|
label: TranslationConfig;
|
1390
2275
|
};
|
1391
2276
|
label: TranslationConfig;
|
1392
|
-
pages: {
|
2277
|
+
pages: ({
|
2278
|
+
type: "FORM";
|
1393
2279
|
id: string;
|
1394
2280
|
title: TranslationConfig;
|
1395
2281
|
fields: import("./FieldConfig").Inferred[];
|
1396
|
-
|
2282
|
+
conditional?: import(".").JSONSchema | undefined;
|
2283
|
+
} | {
|
2284
|
+
type: "VERIFICATION";
|
2285
|
+
id: string;
|
2286
|
+
title: TranslationConfig;
|
2287
|
+
actions: {
|
2288
|
+
verify: {
|
2289
|
+
label: TranslationConfig;
|
2290
|
+
};
|
2291
|
+
cancel: {
|
2292
|
+
label: TranslationConfig;
|
2293
|
+
confirmation: {
|
2294
|
+
title: TranslationConfig;
|
2295
|
+
body: TranslationConfig;
|
2296
|
+
};
|
2297
|
+
};
|
2298
|
+
};
|
2299
|
+
fields: import("./FieldConfig").Inferred[];
|
2300
|
+
conditional?: import(".").JSONSchema | undefined;
|
2301
|
+
})[];
|
1397
2302
|
review: {
|
1398
2303
|
title: TranslationConfig;
|
1399
2304
|
fields: import("./FieldConfig").Inferred[];
|
1400
2305
|
};
|
1401
2306
|
}[];
|
1402
|
-
duplicates: string[];
|
1403
2307
|
draft?: boolean | undefined;
|
1404
2308
|
} | {
|
1405
2309
|
type: "ARCHIVE";
|
1406
|
-
comment: string;
|
1407
2310
|
conditionals: ({
|
1408
2311
|
type: "SHOW";
|
1409
2312
|
conditional: import(".").JSONSchema;
|
@@ -1419,17 +2322,36 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
1419
2322
|
label: TranslationConfig;
|
1420
2323
|
};
|
1421
2324
|
label: TranslationConfig;
|
1422
|
-
pages: {
|
2325
|
+
pages: ({
|
2326
|
+
type: "FORM";
|
1423
2327
|
id: string;
|
1424
2328
|
title: TranslationConfig;
|
1425
2329
|
fields: import("./FieldConfig").Inferred[];
|
1426
|
-
|
2330
|
+
conditional?: import(".").JSONSchema | undefined;
|
2331
|
+
} | {
|
2332
|
+
type: "VERIFICATION";
|
2333
|
+
id: string;
|
2334
|
+
title: TranslationConfig;
|
2335
|
+
actions: {
|
2336
|
+
verify: {
|
2337
|
+
label: TranslationConfig;
|
2338
|
+
};
|
2339
|
+
cancel: {
|
2340
|
+
label: TranslationConfig;
|
2341
|
+
confirmation: {
|
2342
|
+
title: TranslationConfig;
|
2343
|
+
body: TranslationConfig;
|
2344
|
+
};
|
2345
|
+
};
|
2346
|
+
};
|
2347
|
+
fields: import("./FieldConfig").Inferred[];
|
2348
|
+
conditional?: import(".").JSONSchema | undefined;
|
2349
|
+
})[];
|
1427
2350
|
review: {
|
1428
2351
|
title: TranslationConfig;
|
1429
2352
|
fields: import("./FieldConfig").Inferred[];
|
1430
2353
|
};
|
1431
2354
|
}[];
|
1432
|
-
isDuplicate: boolean;
|
1433
2355
|
draft?: boolean | undefined;
|
1434
2356
|
} | {
|
1435
2357
|
type: "REGISTER";
|
@@ -1448,11 +2370,31 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
1448
2370
|
label: TranslationConfig;
|
1449
2371
|
};
|
1450
2372
|
label: TranslationConfig;
|
1451
|
-
pages: {
|
2373
|
+
pages: ({
|
2374
|
+
type: "FORM";
|
1452
2375
|
id: string;
|
1453
2376
|
title: TranslationConfig;
|
1454
2377
|
fields: import("./FieldConfig").Inferred[];
|
1455
|
-
|
2378
|
+
conditional?: import(".").JSONSchema | undefined;
|
2379
|
+
} | {
|
2380
|
+
type: "VERIFICATION";
|
2381
|
+
id: string;
|
2382
|
+
title: TranslationConfig;
|
2383
|
+
actions: {
|
2384
|
+
verify: {
|
2385
|
+
label: TranslationConfig;
|
2386
|
+
};
|
2387
|
+
cancel: {
|
2388
|
+
label: TranslationConfig;
|
2389
|
+
confirmation: {
|
2390
|
+
title: TranslationConfig;
|
2391
|
+
body: TranslationConfig;
|
2392
|
+
};
|
2393
|
+
};
|
2394
|
+
};
|
2395
|
+
fields: import("./FieldConfig").Inferred[];
|
2396
|
+
conditional?: import(".").JSONSchema | undefined;
|
2397
|
+
})[];
|
1456
2398
|
review: {
|
1457
2399
|
title: TranslationConfig;
|
1458
2400
|
fields: import("./FieldConfig").Inferred[];
|
@@ -1476,11 +2418,31 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
1476
2418
|
label: TranslationConfig;
|
1477
2419
|
};
|
1478
2420
|
label: TranslationConfig;
|
1479
|
-
pages: {
|
2421
|
+
pages: ({
|
2422
|
+
type: "FORM";
|
1480
2423
|
id: string;
|
1481
2424
|
title: TranslationConfig;
|
1482
2425
|
fields: import("./FieldConfig").Inferred[];
|
1483
|
-
|
2426
|
+
conditional?: import(".").JSONSchema | undefined;
|
2427
|
+
} | {
|
2428
|
+
type: "VERIFICATION";
|
2429
|
+
id: string;
|
2430
|
+
title: TranslationConfig;
|
2431
|
+
actions: {
|
2432
|
+
verify: {
|
2433
|
+
label: TranslationConfig;
|
2434
|
+
};
|
2435
|
+
cancel: {
|
2436
|
+
label: TranslationConfig;
|
2437
|
+
confirmation: {
|
2438
|
+
title: TranslationConfig;
|
2439
|
+
body: TranslationConfig;
|
2440
|
+
};
|
2441
|
+
};
|
2442
|
+
};
|
2443
|
+
fields: import("./FieldConfig").Inferred[];
|
2444
|
+
conditional?: import(".").JSONSchema | undefined;
|
2445
|
+
})[];
|
1484
2446
|
review: {
|
1485
2447
|
title: TranslationConfig;
|
1486
2448
|
fields: import("./FieldConfig").Inferred[];
|
@@ -1504,11 +2466,31 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
1504
2466
|
label: TranslationConfig;
|
1505
2467
|
};
|
1506
2468
|
label: TranslationConfig;
|
1507
|
-
pages: {
|
2469
|
+
pages: ({
|
2470
|
+
type: "FORM";
|
1508
2471
|
id: string;
|
1509
2472
|
title: TranslationConfig;
|
1510
2473
|
fields: import("./FieldConfig").Inferred[];
|
1511
|
-
|
2474
|
+
conditional?: import(".").JSONSchema | undefined;
|
2475
|
+
} | {
|
2476
|
+
type: "VERIFICATION";
|
2477
|
+
id: string;
|
2478
|
+
title: TranslationConfig;
|
2479
|
+
actions: {
|
2480
|
+
verify: {
|
2481
|
+
label: TranslationConfig;
|
2482
|
+
};
|
2483
|
+
cancel: {
|
2484
|
+
label: TranslationConfig;
|
2485
|
+
confirmation: {
|
2486
|
+
title: TranslationConfig;
|
2487
|
+
body: TranslationConfig;
|
2488
|
+
};
|
2489
|
+
};
|
2490
|
+
};
|
2491
|
+
fields: import("./FieldConfig").Inferred[];
|
2492
|
+
conditional?: import(".").JSONSchema | undefined;
|
2493
|
+
})[];
|
1512
2494
|
review: {
|
1513
2495
|
title: TranslationConfig;
|
1514
2496
|
fields: import("./FieldConfig").Inferred[];
|
@@ -1532,26 +2514,86 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
1532
2514
|
label: TranslationConfig;
|
1533
2515
|
};
|
1534
2516
|
label: TranslationConfig;
|
1535
|
-
pages: {
|
2517
|
+
pages: ({
|
2518
|
+
type: "FORM";
|
1536
2519
|
id: string;
|
1537
2520
|
title: TranslationConfig;
|
1538
2521
|
fields: import("./FieldConfig").Inferred[];
|
1539
|
-
|
2522
|
+
conditional?: import(".").JSONSchema | undefined;
|
2523
|
+
} | {
|
2524
|
+
type: "VERIFICATION";
|
2525
|
+
id: string;
|
2526
|
+
title: TranslationConfig;
|
2527
|
+
actions: {
|
2528
|
+
verify: {
|
2529
|
+
label: TranslationConfig;
|
2530
|
+
};
|
2531
|
+
cancel: {
|
2532
|
+
label: TranslationConfig;
|
2533
|
+
confirmation: {
|
2534
|
+
title: TranslationConfig;
|
2535
|
+
body: TranslationConfig;
|
2536
|
+
};
|
2537
|
+
};
|
2538
|
+
};
|
2539
|
+
fields: import("./FieldConfig").Inferred[];
|
2540
|
+
conditional?: import(".").JSONSchema | undefined;
|
2541
|
+
})[];
|
1540
2542
|
review: {
|
1541
2543
|
title: TranslationConfig;
|
1542
2544
|
fields: import("./FieldConfig").Inferred[];
|
1543
2545
|
};
|
1544
2546
|
}[];
|
1545
|
-
onboardingForm: {
|
2547
|
+
onboardingForm: ({
|
2548
|
+
type: "FORM";
|
1546
2549
|
id: string;
|
1547
2550
|
title: TranslationConfig;
|
1548
2551
|
fields: import("./FieldConfig").Inferred[];
|
1549
|
-
|
1550
|
-
|
2552
|
+
conditional?: import(".").JSONSchema | undefined;
|
2553
|
+
} | {
|
2554
|
+
type: "VERIFICATION";
|
1551
2555
|
id: string;
|
1552
2556
|
title: TranslationConfig;
|
2557
|
+
actions: {
|
2558
|
+
verify: {
|
2559
|
+
label: TranslationConfig;
|
2560
|
+
};
|
2561
|
+
cancel: {
|
2562
|
+
label: TranslationConfig;
|
2563
|
+
confirmation: {
|
2564
|
+
title: TranslationConfig;
|
2565
|
+
body: TranslationConfig;
|
2566
|
+
};
|
2567
|
+
};
|
2568
|
+
};
|
1553
2569
|
fields: import("./FieldConfig").Inferred[];
|
1554
|
-
|
2570
|
+
conditional?: import(".").JSONSchema | undefined;
|
2571
|
+
})[];
|
2572
|
+
additionalDetailsForm: ({
|
2573
|
+
type: "FORM";
|
2574
|
+
id: string;
|
2575
|
+
title: TranslationConfig;
|
2576
|
+
fields: import("./FieldConfig").Inferred[];
|
2577
|
+
conditional?: import(".").JSONSchema | undefined;
|
2578
|
+
} | {
|
2579
|
+
type: "VERIFICATION";
|
2580
|
+
id: string;
|
2581
|
+
title: TranslationConfig;
|
2582
|
+
actions: {
|
2583
|
+
verify: {
|
2584
|
+
label: TranslationConfig;
|
2585
|
+
};
|
2586
|
+
cancel: {
|
2587
|
+
label: TranslationConfig;
|
2588
|
+
confirmation: {
|
2589
|
+
title: TranslationConfig;
|
2590
|
+
body: TranslationConfig;
|
2591
|
+
};
|
2592
|
+
};
|
2593
|
+
};
|
2594
|
+
fields: import("./FieldConfig").Inferred[];
|
2595
|
+
conditional?: import(".").JSONSchema | undefined;
|
2596
|
+
})[];
|
1555
2597
|
draft?: boolean | undefined;
|
1556
2598
|
} | {
|
1557
2599
|
type: "REJECT_CORRECTION";
|
@@ -1570,11 +2612,31 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
1570
2612
|
label: TranslationConfig;
|
1571
2613
|
};
|
1572
2614
|
label: TranslationConfig;
|
1573
|
-
pages: {
|
2615
|
+
pages: ({
|
2616
|
+
type: "FORM";
|
1574
2617
|
id: string;
|
1575
2618
|
title: TranslationConfig;
|
1576
2619
|
fields: import("./FieldConfig").Inferred[];
|
1577
|
-
|
2620
|
+
conditional?: import(".").JSONSchema | undefined;
|
2621
|
+
} | {
|
2622
|
+
type: "VERIFICATION";
|
2623
|
+
id: string;
|
2624
|
+
title: TranslationConfig;
|
2625
|
+
actions: {
|
2626
|
+
verify: {
|
2627
|
+
label: TranslationConfig;
|
2628
|
+
};
|
2629
|
+
cancel: {
|
2630
|
+
label: TranslationConfig;
|
2631
|
+
confirmation: {
|
2632
|
+
title: TranslationConfig;
|
2633
|
+
body: TranslationConfig;
|
2634
|
+
};
|
2635
|
+
};
|
2636
|
+
};
|
2637
|
+
fields: import("./FieldConfig").Inferred[];
|
2638
|
+
conditional?: import(".").JSONSchema | undefined;
|
2639
|
+
})[];
|
1578
2640
|
review: {
|
1579
2641
|
title: TranslationConfig;
|
1580
2642
|
fields: import("./FieldConfig").Inferred[];
|
@@ -1598,11 +2660,31 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
1598
2660
|
label: TranslationConfig;
|
1599
2661
|
};
|
1600
2662
|
label: TranslationConfig;
|
1601
|
-
pages: {
|
2663
|
+
pages: ({
|
2664
|
+
type: "FORM";
|
1602
2665
|
id: string;
|
1603
2666
|
title: TranslationConfig;
|
1604
2667
|
fields: import("./FieldConfig").Inferred[];
|
1605
|
-
|
2668
|
+
conditional?: import(".").JSONSchema | undefined;
|
2669
|
+
} | {
|
2670
|
+
type: "VERIFICATION";
|
2671
|
+
id: string;
|
2672
|
+
title: TranslationConfig;
|
2673
|
+
actions: {
|
2674
|
+
verify: {
|
2675
|
+
label: TranslationConfig;
|
2676
|
+
};
|
2677
|
+
cancel: {
|
2678
|
+
label: TranslationConfig;
|
2679
|
+
confirmation: {
|
2680
|
+
title: TranslationConfig;
|
2681
|
+
body: TranslationConfig;
|
2682
|
+
};
|
2683
|
+
};
|
2684
|
+
};
|
2685
|
+
fields: import("./FieldConfig").Inferred[];
|
2686
|
+
conditional?: import(".").JSONSchema | undefined;
|
2687
|
+
})[];
|
1606
2688
|
review: {
|
1607
2689
|
title: TranslationConfig;
|
1608
2690
|
fields: import("./FieldConfig").Inferred[];
|
@@ -1626,11 +2708,31 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
1626
2708
|
label: TranslationConfig;
|
1627
2709
|
};
|
1628
2710
|
label: TranslationConfig;
|
1629
|
-
pages: {
|
2711
|
+
pages: ({
|
2712
|
+
type: "FORM";
|
1630
2713
|
id: string;
|
1631
2714
|
title: TranslationConfig;
|
1632
2715
|
fields: import("./FieldConfig").Inferred[];
|
1633
|
-
|
2716
|
+
conditional?: import(".").JSONSchema | undefined;
|
2717
|
+
} | {
|
2718
|
+
type: "VERIFICATION";
|
2719
|
+
id: string;
|
2720
|
+
title: TranslationConfig;
|
2721
|
+
actions: {
|
2722
|
+
verify: {
|
2723
|
+
label: TranslationConfig;
|
2724
|
+
};
|
2725
|
+
cancel: {
|
2726
|
+
label: TranslationConfig;
|
2727
|
+
confirmation: {
|
2728
|
+
title: TranslationConfig;
|
2729
|
+
body: TranslationConfig;
|
2730
|
+
};
|
2731
|
+
};
|
2732
|
+
};
|
2733
|
+
fields: import("./FieldConfig").Inferred[];
|
2734
|
+
conditional?: import(".").JSONSchema | undefined;
|
2735
|
+
})[];
|
1634
2736
|
review: {
|
1635
2737
|
title: TranslationConfig;
|
1636
2738
|
fields: import("./FieldConfig").Inferred[];
|
@@ -1695,22 +2797,62 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
1695
2797
|
description: string;
|
1696
2798
|
defaultMessage: string;
|
1697
2799
|
};
|
1698
|
-
pages: {
|
2800
|
+
pages: ({
|
1699
2801
|
id: string;
|
1700
2802
|
title: {
|
1701
2803
|
id: string;
|
1702
2804
|
description: string;
|
1703
2805
|
defaultMessage: string;
|
1704
2806
|
};
|
1705
|
-
fields: import("./FieldConfig").
|
1706
|
-
|
2807
|
+
fields: import("./FieldConfig").InferredInput[];
|
2808
|
+
type?: "FORM" | undefined;
|
2809
|
+
conditional?: import(".").JSONSchema | undefined;
|
2810
|
+
} | {
|
2811
|
+
type: "VERIFICATION";
|
2812
|
+
id: string;
|
2813
|
+
title: {
|
2814
|
+
id: string;
|
2815
|
+
description: string;
|
2816
|
+
defaultMessage: string;
|
2817
|
+
};
|
2818
|
+
actions: {
|
2819
|
+
verify: {
|
2820
|
+
label: {
|
2821
|
+
id: string;
|
2822
|
+
description: string;
|
2823
|
+
defaultMessage: string;
|
2824
|
+
};
|
2825
|
+
};
|
2826
|
+
cancel: {
|
2827
|
+
label: {
|
2828
|
+
id: string;
|
2829
|
+
description: string;
|
2830
|
+
defaultMessage: string;
|
2831
|
+
};
|
2832
|
+
confirmation: {
|
2833
|
+
title: {
|
2834
|
+
id: string;
|
2835
|
+
description: string;
|
2836
|
+
defaultMessage: string;
|
2837
|
+
};
|
2838
|
+
body: {
|
2839
|
+
id: string;
|
2840
|
+
description: string;
|
2841
|
+
defaultMessage: string;
|
2842
|
+
};
|
2843
|
+
};
|
2844
|
+
};
|
2845
|
+
};
|
2846
|
+
fields: import("./FieldConfig").InferredInput[];
|
2847
|
+
conditional?: import(".").JSONSchema | undefined;
|
2848
|
+
})[];
|
1707
2849
|
review: {
|
1708
2850
|
title: {
|
1709
2851
|
id: string;
|
1710
2852
|
description: string;
|
1711
2853
|
defaultMessage: string;
|
1712
2854
|
};
|
1713
|
-
fields: import("./FieldConfig").
|
2855
|
+
fields: import("./FieldConfig").InferredInput[];
|
1714
2856
|
};
|
1715
2857
|
active?: boolean | undefined;
|
1716
2858
|
}[];
|
@@ -1743,22 +2885,62 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
1743
2885
|
description: string;
|
1744
2886
|
defaultMessage: string;
|
1745
2887
|
};
|
1746
|
-
pages: {
|
2888
|
+
pages: ({
|
1747
2889
|
id: string;
|
1748
2890
|
title: {
|
1749
2891
|
id: string;
|
1750
2892
|
description: string;
|
1751
2893
|
defaultMessage: string;
|
1752
2894
|
};
|
1753
|
-
fields: import("./FieldConfig").
|
1754
|
-
|
2895
|
+
fields: import("./FieldConfig").InferredInput[];
|
2896
|
+
type?: "FORM" | undefined;
|
2897
|
+
conditional?: import(".").JSONSchema | undefined;
|
2898
|
+
} | {
|
2899
|
+
type: "VERIFICATION";
|
2900
|
+
id: string;
|
2901
|
+
title: {
|
2902
|
+
id: string;
|
2903
|
+
description: string;
|
2904
|
+
defaultMessage: string;
|
2905
|
+
};
|
2906
|
+
actions: {
|
2907
|
+
verify: {
|
2908
|
+
label: {
|
2909
|
+
id: string;
|
2910
|
+
description: string;
|
2911
|
+
defaultMessage: string;
|
2912
|
+
};
|
2913
|
+
};
|
2914
|
+
cancel: {
|
2915
|
+
label: {
|
2916
|
+
id: string;
|
2917
|
+
description: string;
|
2918
|
+
defaultMessage: string;
|
2919
|
+
};
|
2920
|
+
confirmation: {
|
2921
|
+
title: {
|
2922
|
+
id: string;
|
2923
|
+
description: string;
|
2924
|
+
defaultMessage: string;
|
2925
|
+
};
|
2926
|
+
body: {
|
2927
|
+
id: string;
|
2928
|
+
description: string;
|
2929
|
+
defaultMessage: string;
|
2930
|
+
};
|
2931
|
+
};
|
2932
|
+
};
|
2933
|
+
};
|
2934
|
+
fields: import("./FieldConfig").InferredInput[];
|
2935
|
+
conditional?: import(".").JSONSchema | undefined;
|
2936
|
+
})[];
|
1755
2937
|
review: {
|
1756
2938
|
title: {
|
1757
2939
|
id: string;
|
1758
2940
|
description: string;
|
1759
2941
|
defaultMessage: string;
|
1760
2942
|
};
|
1761
|
-
fields: import("./FieldConfig").
|
2943
|
+
fields: import("./FieldConfig").InferredInput[];
|
1762
2944
|
};
|
1763
2945
|
active?: boolean | undefined;
|
1764
2946
|
}[];
|
@@ -1772,7 +2954,6 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
1772
2954
|
})[] | undefined;
|
1773
2955
|
} | {
|
1774
2956
|
type: "REJECT";
|
1775
|
-
comment: string;
|
1776
2957
|
label: {
|
1777
2958
|
id: string;
|
1778
2959
|
description: string;
|
@@ -1792,26 +2973,65 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
1792
2973
|
description: string;
|
1793
2974
|
defaultMessage: string;
|
1794
2975
|
};
|
1795
|
-
pages: {
|
2976
|
+
pages: ({
|
1796
2977
|
id: string;
|
1797
2978
|
title: {
|
1798
2979
|
id: string;
|
1799
2980
|
description: string;
|
1800
2981
|
defaultMessage: string;
|
1801
2982
|
};
|
1802
|
-
fields: import("./FieldConfig").
|
1803
|
-
|
2983
|
+
fields: import("./FieldConfig").InferredInput[];
|
2984
|
+
type?: "FORM" | undefined;
|
2985
|
+
conditional?: import(".").JSONSchema | undefined;
|
2986
|
+
} | {
|
2987
|
+
type: "VERIFICATION";
|
2988
|
+
id: string;
|
2989
|
+
title: {
|
2990
|
+
id: string;
|
2991
|
+
description: string;
|
2992
|
+
defaultMessage: string;
|
2993
|
+
};
|
2994
|
+
actions: {
|
2995
|
+
verify: {
|
2996
|
+
label: {
|
2997
|
+
id: string;
|
2998
|
+
description: string;
|
2999
|
+
defaultMessage: string;
|
3000
|
+
};
|
3001
|
+
};
|
3002
|
+
cancel: {
|
3003
|
+
label: {
|
3004
|
+
id: string;
|
3005
|
+
description: string;
|
3006
|
+
defaultMessage: string;
|
3007
|
+
};
|
3008
|
+
confirmation: {
|
3009
|
+
title: {
|
3010
|
+
id: string;
|
3011
|
+
description: string;
|
3012
|
+
defaultMessage: string;
|
3013
|
+
};
|
3014
|
+
body: {
|
3015
|
+
id: string;
|
3016
|
+
description: string;
|
3017
|
+
defaultMessage: string;
|
3018
|
+
};
|
3019
|
+
};
|
3020
|
+
};
|
3021
|
+
};
|
3022
|
+
fields: import("./FieldConfig").InferredInput[];
|
3023
|
+
conditional?: import(".").JSONSchema | undefined;
|
3024
|
+
})[];
|
1804
3025
|
review: {
|
1805
3026
|
title: {
|
1806
3027
|
id: string;
|
1807
3028
|
description: string;
|
1808
3029
|
defaultMessage: string;
|
1809
3030
|
};
|
1810
|
-
fields: import("./FieldConfig").
|
3031
|
+
fields: import("./FieldConfig").InferredInput[];
|
1811
3032
|
};
|
1812
3033
|
active?: boolean | undefined;
|
1813
3034
|
}[];
|
1814
|
-
isDuplicate: boolean;
|
1815
3035
|
draft?: boolean | undefined;
|
1816
3036
|
conditionals?: ({
|
1817
3037
|
type: "SHOW";
|
@@ -1822,7 +3042,6 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
1822
3042
|
})[] | undefined;
|
1823
3043
|
} | {
|
1824
3044
|
type: "MARKED_AS_DUPLICATE";
|
1825
|
-
comment: string;
|
1826
3045
|
label: {
|
1827
3046
|
id: string;
|
1828
3047
|
description: string;
|
@@ -1842,26 +3061,65 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
1842
3061
|
description: string;
|
1843
3062
|
defaultMessage: string;
|
1844
3063
|
};
|
1845
|
-
pages: {
|
3064
|
+
pages: ({
|
1846
3065
|
id: string;
|
1847
3066
|
title: {
|
1848
3067
|
id: string;
|
1849
3068
|
description: string;
|
1850
3069
|
defaultMessage: string;
|
1851
3070
|
};
|
1852
|
-
fields: import("./FieldConfig").
|
1853
|
-
|
3071
|
+
fields: import("./FieldConfig").InferredInput[];
|
3072
|
+
type?: "FORM" | undefined;
|
3073
|
+
conditional?: import(".").JSONSchema | undefined;
|
3074
|
+
} | {
|
3075
|
+
type: "VERIFICATION";
|
3076
|
+
id: string;
|
3077
|
+
title: {
|
3078
|
+
id: string;
|
3079
|
+
description: string;
|
3080
|
+
defaultMessage: string;
|
3081
|
+
};
|
3082
|
+
actions: {
|
3083
|
+
verify: {
|
3084
|
+
label: {
|
3085
|
+
id: string;
|
3086
|
+
description: string;
|
3087
|
+
defaultMessage: string;
|
3088
|
+
};
|
3089
|
+
};
|
3090
|
+
cancel: {
|
3091
|
+
label: {
|
3092
|
+
id: string;
|
3093
|
+
description: string;
|
3094
|
+
defaultMessage: string;
|
3095
|
+
};
|
3096
|
+
confirmation: {
|
3097
|
+
title: {
|
3098
|
+
id: string;
|
3099
|
+
description: string;
|
3100
|
+
defaultMessage: string;
|
3101
|
+
};
|
3102
|
+
body: {
|
3103
|
+
id: string;
|
3104
|
+
description: string;
|
3105
|
+
defaultMessage: string;
|
3106
|
+
};
|
3107
|
+
};
|
3108
|
+
};
|
3109
|
+
};
|
3110
|
+
fields: import("./FieldConfig").InferredInput[];
|
3111
|
+
conditional?: import(".").JSONSchema | undefined;
|
3112
|
+
})[];
|
1854
3113
|
review: {
|
1855
3114
|
title: {
|
1856
3115
|
id: string;
|
1857
3116
|
description: string;
|
1858
3117
|
defaultMessage: string;
|
1859
3118
|
};
|
1860
|
-
fields: import("./FieldConfig").
|
3119
|
+
fields: import("./FieldConfig").InferredInput[];
|
1861
3120
|
};
|
1862
3121
|
active?: boolean | undefined;
|
1863
3122
|
}[];
|
1864
|
-
duplicates: string[];
|
1865
3123
|
draft?: boolean | undefined;
|
1866
3124
|
conditionals?: ({
|
1867
3125
|
type: "SHOW";
|
@@ -1872,7 +3130,6 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
1872
3130
|
})[] | undefined;
|
1873
3131
|
} | {
|
1874
3132
|
type: "ARCHIVE";
|
1875
|
-
comment: string;
|
1876
3133
|
label: {
|
1877
3134
|
id: string;
|
1878
3135
|
description: string;
|
@@ -1892,26 +3149,65 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
1892
3149
|
description: string;
|
1893
3150
|
defaultMessage: string;
|
1894
3151
|
};
|
1895
|
-
pages: {
|
3152
|
+
pages: ({
|
1896
3153
|
id: string;
|
1897
3154
|
title: {
|
1898
3155
|
id: string;
|
1899
3156
|
description: string;
|
1900
3157
|
defaultMessage: string;
|
1901
3158
|
};
|
1902
|
-
fields: import("./FieldConfig").
|
1903
|
-
|
3159
|
+
fields: import("./FieldConfig").InferredInput[];
|
3160
|
+
type?: "FORM" | undefined;
|
3161
|
+
conditional?: import(".").JSONSchema | undefined;
|
3162
|
+
} | {
|
3163
|
+
type: "VERIFICATION";
|
3164
|
+
id: string;
|
3165
|
+
title: {
|
3166
|
+
id: string;
|
3167
|
+
description: string;
|
3168
|
+
defaultMessage: string;
|
3169
|
+
};
|
3170
|
+
actions: {
|
3171
|
+
verify: {
|
3172
|
+
label: {
|
3173
|
+
id: string;
|
3174
|
+
description: string;
|
3175
|
+
defaultMessage: string;
|
3176
|
+
};
|
3177
|
+
};
|
3178
|
+
cancel: {
|
3179
|
+
label: {
|
3180
|
+
id: string;
|
3181
|
+
description: string;
|
3182
|
+
defaultMessage: string;
|
3183
|
+
};
|
3184
|
+
confirmation: {
|
3185
|
+
title: {
|
3186
|
+
id: string;
|
3187
|
+
description: string;
|
3188
|
+
defaultMessage: string;
|
3189
|
+
};
|
3190
|
+
body: {
|
3191
|
+
id: string;
|
3192
|
+
description: string;
|
3193
|
+
defaultMessage: string;
|
3194
|
+
};
|
3195
|
+
};
|
3196
|
+
};
|
3197
|
+
};
|
3198
|
+
fields: import("./FieldConfig").InferredInput[];
|
3199
|
+
conditional?: import(".").JSONSchema | undefined;
|
3200
|
+
})[];
|
1904
3201
|
review: {
|
1905
3202
|
title: {
|
1906
3203
|
id: string;
|
1907
3204
|
description: string;
|
1908
3205
|
defaultMessage: string;
|
1909
3206
|
};
|
1910
|
-
fields: import("./FieldConfig").
|
3207
|
+
fields: import("./FieldConfig").InferredInput[];
|
1911
3208
|
};
|
1912
3209
|
active?: boolean | undefined;
|
1913
3210
|
}[];
|
1914
|
-
isDuplicate: boolean;
|
1915
3211
|
draft?: boolean | undefined;
|
1916
3212
|
conditionals?: ({
|
1917
3213
|
type: "SHOW";
|
@@ -1941,22 +3237,62 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
1941
3237
|
description: string;
|
1942
3238
|
defaultMessage: string;
|
1943
3239
|
};
|
1944
|
-
pages: {
|
3240
|
+
pages: ({
|
1945
3241
|
id: string;
|
1946
3242
|
title: {
|
1947
3243
|
id: string;
|
1948
3244
|
description: string;
|
1949
3245
|
defaultMessage: string;
|
1950
3246
|
};
|
1951
|
-
fields: import("./FieldConfig").
|
1952
|
-
|
3247
|
+
fields: import("./FieldConfig").InferredInput[];
|
3248
|
+
type?: "FORM" | undefined;
|
3249
|
+
conditional?: import(".").JSONSchema | undefined;
|
3250
|
+
} | {
|
3251
|
+
type: "VERIFICATION";
|
3252
|
+
id: string;
|
3253
|
+
title: {
|
3254
|
+
id: string;
|
3255
|
+
description: string;
|
3256
|
+
defaultMessage: string;
|
3257
|
+
};
|
3258
|
+
actions: {
|
3259
|
+
verify: {
|
3260
|
+
label: {
|
3261
|
+
id: string;
|
3262
|
+
description: string;
|
3263
|
+
defaultMessage: string;
|
3264
|
+
};
|
3265
|
+
};
|
3266
|
+
cancel: {
|
3267
|
+
label: {
|
3268
|
+
id: string;
|
3269
|
+
description: string;
|
3270
|
+
defaultMessage: string;
|
3271
|
+
};
|
3272
|
+
confirmation: {
|
3273
|
+
title: {
|
3274
|
+
id: string;
|
3275
|
+
description: string;
|
3276
|
+
defaultMessage: string;
|
3277
|
+
};
|
3278
|
+
body: {
|
3279
|
+
id: string;
|
3280
|
+
description: string;
|
3281
|
+
defaultMessage: string;
|
3282
|
+
};
|
3283
|
+
};
|
3284
|
+
};
|
3285
|
+
};
|
3286
|
+
fields: import("./FieldConfig").InferredInput[];
|
3287
|
+
conditional?: import(".").JSONSchema | undefined;
|
3288
|
+
})[];
|
1953
3289
|
review: {
|
1954
3290
|
title: {
|
1955
3291
|
id: string;
|
1956
3292
|
description: string;
|
1957
3293
|
defaultMessage: string;
|
1958
3294
|
};
|
1959
|
-
fields: import("./FieldConfig").
|
3295
|
+
fields: import("./FieldConfig").InferredInput[];
|
1960
3296
|
};
|
1961
3297
|
active?: boolean | undefined;
|
1962
3298
|
}[];
|
@@ -1989,22 +3325,62 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
1989
3325
|
description: string;
|
1990
3326
|
defaultMessage: string;
|
1991
3327
|
};
|
1992
|
-
pages: {
|
3328
|
+
pages: ({
|
1993
3329
|
id: string;
|
1994
3330
|
title: {
|
1995
3331
|
id: string;
|
1996
3332
|
description: string;
|
1997
3333
|
defaultMessage: string;
|
1998
3334
|
};
|
1999
|
-
fields: import("./FieldConfig").
|
2000
|
-
|
3335
|
+
fields: import("./FieldConfig").InferredInput[];
|
3336
|
+
type?: "FORM" | undefined;
|
3337
|
+
conditional?: import(".").JSONSchema | undefined;
|
3338
|
+
} | {
|
3339
|
+
type: "VERIFICATION";
|
3340
|
+
id: string;
|
3341
|
+
title: {
|
3342
|
+
id: string;
|
3343
|
+
description: string;
|
3344
|
+
defaultMessage: string;
|
3345
|
+
};
|
3346
|
+
actions: {
|
3347
|
+
verify: {
|
3348
|
+
label: {
|
3349
|
+
id: string;
|
3350
|
+
description: string;
|
3351
|
+
defaultMessage: string;
|
3352
|
+
};
|
3353
|
+
};
|
3354
|
+
cancel: {
|
3355
|
+
label: {
|
3356
|
+
id: string;
|
3357
|
+
description: string;
|
3358
|
+
defaultMessage: string;
|
3359
|
+
};
|
3360
|
+
confirmation: {
|
3361
|
+
title: {
|
3362
|
+
id: string;
|
3363
|
+
description: string;
|
3364
|
+
defaultMessage: string;
|
3365
|
+
};
|
3366
|
+
body: {
|
3367
|
+
id: string;
|
3368
|
+
description: string;
|
3369
|
+
defaultMessage: string;
|
3370
|
+
};
|
3371
|
+
};
|
3372
|
+
};
|
3373
|
+
};
|
3374
|
+
fields: import("./FieldConfig").InferredInput[];
|
3375
|
+
conditional?: import(".").JSONSchema | undefined;
|
3376
|
+
})[];
|
2001
3377
|
review: {
|
2002
3378
|
title: {
|
2003
3379
|
id: string;
|
2004
3380
|
description: string;
|
2005
3381
|
defaultMessage: string;
|
2006
3382
|
};
|
2007
|
-
fields: import("./FieldConfig").
|
3383
|
+
fields: import("./FieldConfig").InferredInput[];
|
2008
3384
|
};
|
2009
3385
|
active?: boolean | undefined;
|
2010
3386
|
}[];
|
@@ -2037,22 +3413,62 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
2037
3413
|
description: string;
|
2038
3414
|
defaultMessage: string;
|
2039
3415
|
};
|
2040
|
-
pages: {
|
3416
|
+
pages: ({
|
2041
3417
|
id: string;
|
2042
3418
|
title: {
|
2043
3419
|
id: string;
|
2044
3420
|
description: string;
|
2045
3421
|
defaultMessage: string;
|
2046
3422
|
};
|
2047
|
-
fields: import("./FieldConfig").
|
2048
|
-
|
3423
|
+
fields: import("./FieldConfig").InferredInput[];
|
3424
|
+
type?: "FORM" | undefined;
|
3425
|
+
conditional?: import(".").JSONSchema | undefined;
|
3426
|
+
} | {
|
3427
|
+
type: "VERIFICATION";
|
3428
|
+
id: string;
|
3429
|
+
title: {
|
3430
|
+
id: string;
|
3431
|
+
description: string;
|
3432
|
+
defaultMessage: string;
|
3433
|
+
};
|
3434
|
+
actions: {
|
3435
|
+
verify: {
|
3436
|
+
label: {
|
3437
|
+
id: string;
|
3438
|
+
description: string;
|
3439
|
+
defaultMessage: string;
|
3440
|
+
};
|
3441
|
+
};
|
3442
|
+
cancel: {
|
3443
|
+
label: {
|
3444
|
+
id: string;
|
3445
|
+
description: string;
|
3446
|
+
defaultMessage: string;
|
3447
|
+
};
|
3448
|
+
confirmation: {
|
3449
|
+
title: {
|
3450
|
+
id: string;
|
3451
|
+
description: string;
|
3452
|
+
defaultMessage: string;
|
3453
|
+
};
|
3454
|
+
body: {
|
3455
|
+
id: string;
|
3456
|
+
description: string;
|
3457
|
+
defaultMessage: string;
|
3458
|
+
};
|
3459
|
+
};
|
3460
|
+
};
|
3461
|
+
};
|
3462
|
+
fields: import("./FieldConfig").InferredInput[];
|
3463
|
+
conditional?: import(".").JSONSchema | undefined;
|
3464
|
+
})[];
|
2049
3465
|
review: {
|
2050
3466
|
title: {
|
2051
3467
|
id: string;
|
2052
3468
|
description: string;
|
2053
3469
|
defaultMessage: string;
|
2054
3470
|
};
|
2055
|
-
fields: import("./FieldConfig").
|
3471
|
+
fields: import("./FieldConfig").InferredInput[];
|
2056
3472
|
};
|
2057
3473
|
active?: boolean | undefined;
|
2058
3474
|
}[];
|
@@ -2085,43 +3501,163 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
2085
3501
|
description: string;
|
2086
3502
|
defaultMessage: string;
|
2087
3503
|
};
|
2088
|
-
pages: {
|
3504
|
+
pages: ({
|
2089
3505
|
id: string;
|
2090
3506
|
title: {
|
2091
3507
|
id: string;
|
2092
3508
|
description: string;
|
2093
3509
|
defaultMessage: string;
|
2094
3510
|
};
|
2095
|
-
fields: import("./FieldConfig").
|
2096
|
-
|
3511
|
+
fields: import("./FieldConfig").InferredInput[];
|
3512
|
+
type?: "FORM" | undefined;
|
3513
|
+
conditional?: import(".").JSONSchema | undefined;
|
3514
|
+
} | {
|
3515
|
+
type: "VERIFICATION";
|
3516
|
+
id: string;
|
3517
|
+
title: {
|
3518
|
+
id: string;
|
3519
|
+
description: string;
|
3520
|
+
defaultMessage: string;
|
3521
|
+
};
|
3522
|
+
actions: {
|
3523
|
+
verify: {
|
3524
|
+
label: {
|
3525
|
+
id: string;
|
3526
|
+
description: string;
|
3527
|
+
defaultMessage: string;
|
3528
|
+
};
|
3529
|
+
};
|
3530
|
+
cancel: {
|
3531
|
+
label: {
|
3532
|
+
id: string;
|
3533
|
+
description: string;
|
3534
|
+
defaultMessage: string;
|
3535
|
+
};
|
3536
|
+
confirmation: {
|
3537
|
+
title: {
|
3538
|
+
id: string;
|
3539
|
+
description: string;
|
3540
|
+
defaultMessage: string;
|
3541
|
+
};
|
3542
|
+
body: {
|
3543
|
+
id: string;
|
3544
|
+
description: string;
|
3545
|
+
defaultMessage: string;
|
3546
|
+
};
|
3547
|
+
};
|
3548
|
+
};
|
3549
|
+
};
|
3550
|
+
fields: import("./FieldConfig").InferredInput[];
|
3551
|
+
conditional?: import(".").JSONSchema | undefined;
|
3552
|
+
})[];
|
2097
3553
|
review: {
|
2098
3554
|
title: {
|
2099
3555
|
id: string;
|
2100
3556
|
description: string;
|
2101
3557
|
defaultMessage: string;
|
2102
3558
|
};
|
2103
|
-
fields: import("./FieldConfig").
|
3559
|
+
fields: import("./FieldConfig").InferredInput[];
|
2104
3560
|
};
|
2105
3561
|
active?: boolean | undefined;
|
2106
3562
|
}[];
|
2107
|
-
onboardingForm: {
|
3563
|
+
onboardingForm: ({
|
2108
3564
|
id: string;
|
2109
3565
|
title: {
|
2110
3566
|
id: string;
|
2111
3567
|
description: string;
|
2112
3568
|
defaultMessage: string;
|
2113
3569
|
};
|
2114
|
-
fields: import("./FieldConfig").
|
2115
|
-
|
2116
|
-
|
3570
|
+
fields: import("./FieldConfig").InferredInput[];
|
3571
|
+
type?: "FORM" | undefined;
|
3572
|
+
conditional?: import(".").JSONSchema | undefined;
|
3573
|
+
} | {
|
3574
|
+
type: "VERIFICATION";
|
2117
3575
|
id: string;
|
2118
3576
|
title: {
|
2119
3577
|
id: string;
|
2120
3578
|
description: string;
|
2121
3579
|
defaultMessage: string;
|
2122
3580
|
};
|
2123
|
-
|
2124
|
-
|
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").InferredInput[];
|
3610
|
+
conditional?: import(".").JSONSchema | undefined;
|
3611
|
+
})[];
|
3612
|
+
additionalDetailsForm: ({
|
3613
|
+
id: string;
|
3614
|
+
title: {
|
3615
|
+
id: string;
|
3616
|
+
description: string;
|
3617
|
+
defaultMessage: string;
|
3618
|
+
};
|
3619
|
+
fields: import("./FieldConfig").InferredInput[];
|
3620
|
+
type?: "FORM" | undefined;
|
3621
|
+
conditional?: import(".").JSONSchema | undefined;
|
3622
|
+
} | {
|
3623
|
+
type: "VERIFICATION";
|
3624
|
+
id: string;
|
3625
|
+
title: {
|
3626
|
+
id: string;
|
3627
|
+
description: string;
|
3628
|
+
defaultMessage: string;
|
3629
|
+
};
|
3630
|
+
actions: {
|
3631
|
+
verify: {
|
3632
|
+
label: {
|
3633
|
+
id: string;
|
3634
|
+
description: string;
|
3635
|
+
defaultMessage: string;
|
3636
|
+
};
|
3637
|
+
};
|
3638
|
+
cancel: {
|
3639
|
+
label: {
|
3640
|
+
id: string;
|
3641
|
+
description: string;
|
3642
|
+
defaultMessage: string;
|
3643
|
+
};
|
3644
|
+
confirmation: {
|
3645
|
+
title: {
|
3646
|
+
id: string;
|
3647
|
+
description: string;
|
3648
|
+
defaultMessage: string;
|
3649
|
+
};
|
3650
|
+
body: {
|
3651
|
+
id: string;
|
3652
|
+
description: string;
|
3653
|
+
defaultMessage: string;
|
3654
|
+
};
|
3655
|
+
};
|
3656
|
+
};
|
3657
|
+
};
|
3658
|
+
fields: import("./FieldConfig").InferredInput[];
|
3659
|
+
conditional?: import(".").JSONSchema | undefined;
|
3660
|
+
})[];
|
2125
3661
|
draft?: boolean | undefined;
|
2126
3662
|
conditionals?: ({
|
2127
3663
|
type: "SHOW";
|
@@ -2151,22 +3687,62 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
2151
3687
|
description: string;
|
2152
3688
|
defaultMessage: string;
|
2153
3689
|
};
|
2154
|
-
pages: {
|
3690
|
+
pages: ({
|
2155
3691
|
id: string;
|
2156
3692
|
title: {
|
2157
3693
|
id: string;
|
2158
3694
|
description: string;
|
2159
3695
|
defaultMessage: string;
|
2160
3696
|
};
|
2161
|
-
fields: import("./FieldConfig").
|
2162
|
-
|
3697
|
+
fields: import("./FieldConfig").InferredInput[];
|
3698
|
+
type?: "FORM" | undefined;
|
3699
|
+
conditional?: import(".").JSONSchema | undefined;
|
3700
|
+
} | {
|
3701
|
+
type: "VERIFICATION";
|
3702
|
+
id: string;
|
3703
|
+
title: {
|
3704
|
+
id: string;
|
3705
|
+
description: string;
|
3706
|
+
defaultMessage: string;
|
3707
|
+
};
|
3708
|
+
actions: {
|
3709
|
+
verify: {
|
3710
|
+
label: {
|
3711
|
+
id: string;
|
3712
|
+
description: string;
|
3713
|
+
defaultMessage: string;
|
3714
|
+
};
|
3715
|
+
};
|
3716
|
+
cancel: {
|
3717
|
+
label: {
|
3718
|
+
id: string;
|
3719
|
+
description: string;
|
3720
|
+
defaultMessage: string;
|
3721
|
+
};
|
3722
|
+
confirmation: {
|
3723
|
+
title: {
|
3724
|
+
id: string;
|
3725
|
+
description: string;
|
3726
|
+
defaultMessage: string;
|
3727
|
+
};
|
3728
|
+
body: {
|
3729
|
+
id: string;
|
3730
|
+
description: string;
|
3731
|
+
defaultMessage: string;
|
3732
|
+
};
|
3733
|
+
};
|
3734
|
+
};
|
3735
|
+
};
|
3736
|
+
fields: import("./FieldConfig").InferredInput[];
|
3737
|
+
conditional?: import(".").JSONSchema | undefined;
|
3738
|
+
})[];
|
2163
3739
|
review: {
|
2164
3740
|
title: {
|
2165
3741
|
id: string;
|
2166
3742
|
description: string;
|
2167
3743
|
defaultMessage: string;
|
2168
3744
|
};
|
2169
|
-
fields: import("./FieldConfig").
|
3745
|
+
fields: import("./FieldConfig").InferredInput[];
|
2170
3746
|
};
|
2171
3747
|
active?: boolean | undefined;
|
2172
3748
|
}[];
|
@@ -2199,22 +3775,62 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
2199
3775
|
description: string;
|
2200
3776
|
defaultMessage: string;
|
2201
3777
|
};
|
2202
|
-
pages: {
|
3778
|
+
pages: ({
|
2203
3779
|
id: string;
|
2204
3780
|
title: {
|
2205
3781
|
id: string;
|
2206
3782
|
description: string;
|
2207
3783
|
defaultMessage: string;
|
2208
3784
|
};
|
2209
|
-
fields: import("./FieldConfig").
|
2210
|
-
|
3785
|
+
fields: import("./FieldConfig").InferredInput[];
|
3786
|
+
type?: "FORM" | undefined;
|
3787
|
+
conditional?: import(".").JSONSchema | undefined;
|
3788
|
+
} | {
|
3789
|
+
type: "VERIFICATION";
|
3790
|
+
id: string;
|
3791
|
+
title: {
|
3792
|
+
id: string;
|
3793
|
+
description: string;
|
3794
|
+
defaultMessage: string;
|
3795
|
+
};
|
3796
|
+
actions: {
|
3797
|
+
verify: {
|
3798
|
+
label: {
|
3799
|
+
id: string;
|
3800
|
+
description: string;
|
3801
|
+
defaultMessage: string;
|
3802
|
+
};
|
3803
|
+
};
|
3804
|
+
cancel: {
|
3805
|
+
label: {
|
3806
|
+
id: string;
|
3807
|
+
description: string;
|
3808
|
+
defaultMessage: string;
|
3809
|
+
};
|
3810
|
+
confirmation: {
|
3811
|
+
title: {
|
3812
|
+
id: string;
|
3813
|
+
description: string;
|
3814
|
+
defaultMessage: string;
|
3815
|
+
};
|
3816
|
+
body: {
|
3817
|
+
id: string;
|
3818
|
+
description: string;
|
3819
|
+
defaultMessage: string;
|
3820
|
+
};
|
3821
|
+
};
|
3822
|
+
};
|
3823
|
+
};
|
3824
|
+
fields: import("./FieldConfig").InferredInput[];
|
3825
|
+
conditional?: import(".").JSONSchema | undefined;
|
3826
|
+
})[];
|
2211
3827
|
review: {
|
2212
3828
|
title: {
|
2213
3829
|
id: string;
|
2214
3830
|
description: string;
|
2215
3831
|
defaultMessage: string;
|
2216
3832
|
};
|
2217
|
-
fields: import("./FieldConfig").
|
3833
|
+
fields: import("./FieldConfig").InferredInput[];
|
2218
3834
|
};
|
2219
3835
|
active?: boolean | undefined;
|
2220
3836
|
}[];
|
@@ -2247,22 +3863,62 @@ export declare const EventConfig: z.ZodEffects<z.ZodObject<{
|
|
2247
3863
|
description: string;
|
2248
3864
|
defaultMessage: string;
|
2249
3865
|
};
|
2250
|
-
pages: {
|
3866
|
+
pages: ({
|
2251
3867
|
id: string;
|
2252
3868
|
title: {
|
2253
3869
|
id: string;
|
2254
3870
|
description: string;
|
2255
3871
|
defaultMessage: string;
|
2256
3872
|
};
|
2257
|
-
fields: import("./FieldConfig").
|
2258
|
-
|
3873
|
+
fields: import("./FieldConfig").InferredInput[];
|
3874
|
+
type?: "FORM" | undefined;
|
3875
|
+
conditional?: import(".").JSONSchema | undefined;
|
3876
|
+
} | {
|
3877
|
+
type: "VERIFICATION";
|
3878
|
+
id: string;
|
3879
|
+
title: {
|
3880
|
+
id: string;
|
3881
|
+
description: string;
|
3882
|
+
defaultMessage: string;
|
3883
|
+
};
|
3884
|
+
actions: {
|
3885
|
+
verify: {
|
3886
|
+
label: {
|
3887
|
+
id: string;
|
3888
|
+
description: string;
|
3889
|
+
defaultMessage: string;
|
3890
|
+
};
|
3891
|
+
};
|
3892
|
+
cancel: {
|
3893
|
+
label: {
|
3894
|
+
id: string;
|
3895
|
+
description: string;
|
3896
|
+
defaultMessage: string;
|
3897
|
+
};
|
3898
|
+
confirmation: {
|
3899
|
+
title: {
|
3900
|
+
id: string;
|
3901
|
+
description: string;
|
3902
|
+
defaultMessage: string;
|
3903
|
+
};
|
3904
|
+
body: {
|
3905
|
+
id: string;
|
3906
|
+
description: string;
|
3907
|
+
defaultMessage: string;
|
3908
|
+
};
|
3909
|
+
};
|
3910
|
+
};
|
3911
|
+
};
|
3912
|
+
fields: import("./FieldConfig").InferredInput[];
|
3913
|
+
conditional?: import(".").JSONSchema | undefined;
|
3914
|
+
})[];
|
2259
3915
|
review: {
|
2260
3916
|
title: {
|
2261
3917
|
id: string;
|
2262
3918
|
description: string;
|
2263
3919
|
defaultMessage: string;
|
2264
3920
|
};
|
2265
|
-
fields: import("./FieldConfig").
|
3921
|
+
fields: import("./FieldConfig").InferredInput[];
|
2266
3922
|
};
|
2267
3923
|
active?: boolean | undefined;
|
2268
3924
|
}[];
|