@uniformdev/webhooks 19.186.1 → 19.186.4-alpha.29
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/README.md +1 -1
- package/dist/index.d.mts +282 -1
- package/dist/index.d.ts +282 -1
- package/dist/index.esm.js +86 -0
- package/dist/index.js +92 -0
- package/dist/index.mjs +86 -0
- package/package.json +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -25,6 +25,7 @@ declare const CompositionTriggerPayloadSchema: z.ZodObject<{
|
|
|
25
25
|
}>;
|
|
26
26
|
declare const CompositionDeletePayloadSchema: z.ZodIntersection<z.ZodObject<{
|
|
27
27
|
id: z.ZodString;
|
|
28
|
+
editionId: z.ZodOptional<z.ZodString>;
|
|
28
29
|
slug: z.ZodOptional<z.ZodString>;
|
|
29
30
|
name: z.ZodString;
|
|
30
31
|
type: z.ZodString;
|
|
@@ -46,6 +47,7 @@ declare const CompositionDeletePayloadSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
46
47
|
id: string;
|
|
47
48
|
url: string;
|
|
48
49
|
};
|
|
50
|
+
editionId?: string | undefined;
|
|
49
51
|
slug?: string | undefined;
|
|
50
52
|
}, {
|
|
51
53
|
id: string;
|
|
@@ -55,6 +57,7 @@ declare const CompositionDeletePayloadSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
55
57
|
id: string;
|
|
56
58
|
url: string;
|
|
57
59
|
};
|
|
60
|
+
editionId?: string | undefined;
|
|
58
61
|
slug?: string | undefined;
|
|
59
62
|
}>, z.ZodObject<{
|
|
60
63
|
state: z.ZodOptional<z.ZodNumber>;
|
|
@@ -63,8 +66,52 @@ declare const CompositionDeletePayloadSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
63
66
|
}, {
|
|
64
67
|
state?: number | undefined;
|
|
65
68
|
}>>;
|
|
69
|
+
declare const CompositionRestorePayloadSchema: z.ZodIntersection<z.ZodObject<{
|
|
70
|
+
id: z.ZodString;
|
|
71
|
+
editionId: z.ZodOptional<z.ZodString>;
|
|
72
|
+
slug: z.ZodOptional<z.ZodString>;
|
|
73
|
+
name: z.ZodString;
|
|
74
|
+
type: z.ZodString;
|
|
75
|
+
project: z.ZodObject<{
|
|
76
|
+
id: z.ZodString;
|
|
77
|
+
url: z.ZodString;
|
|
78
|
+
}, "strip", z.ZodTypeAny, {
|
|
79
|
+
id: string;
|
|
80
|
+
url: string;
|
|
81
|
+
}, {
|
|
82
|
+
id: string;
|
|
83
|
+
url: string;
|
|
84
|
+
}>;
|
|
85
|
+
}, "strip", z.ZodTypeAny, {
|
|
86
|
+
id: string;
|
|
87
|
+
name: string;
|
|
88
|
+
type: string;
|
|
89
|
+
project: {
|
|
90
|
+
id: string;
|
|
91
|
+
url: string;
|
|
92
|
+
};
|
|
93
|
+
editionId?: string | undefined;
|
|
94
|
+
slug?: string | undefined;
|
|
95
|
+
}, {
|
|
96
|
+
id: string;
|
|
97
|
+
name: string;
|
|
98
|
+
type: string;
|
|
99
|
+
project: {
|
|
100
|
+
id: string;
|
|
101
|
+
url: string;
|
|
102
|
+
};
|
|
103
|
+
editionId?: string | undefined;
|
|
104
|
+
slug?: string | undefined;
|
|
105
|
+
}>, z.ZodObject<{
|
|
106
|
+
state: z.ZodNumber;
|
|
107
|
+
}, "strip", z.ZodTypeAny, {
|
|
108
|
+
state: number;
|
|
109
|
+
}, {
|
|
110
|
+
state: number;
|
|
111
|
+
}>>;
|
|
66
112
|
declare const CompositionPayloadSchema: z.ZodIntersection<z.ZodObject<{
|
|
67
113
|
id: z.ZodString;
|
|
114
|
+
editionId: z.ZodOptional<z.ZodString>;
|
|
68
115
|
slug: z.ZodOptional<z.ZodString>;
|
|
69
116
|
name: z.ZodString;
|
|
70
117
|
type: z.ZodString;
|
|
@@ -86,6 +133,7 @@ declare const CompositionPayloadSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
86
133
|
id: string;
|
|
87
134
|
url: string;
|
|
88
135
|
};
|
|
136
|
+
editionId?: string | undefined;
|
|
89
137
|
slug?: string | undefined;
|
|
90
138
|
}, {
|
|
91
139
|
id: string;
|
|
@@ -95,6 +143,7 @@ declare const CompositionPayloadSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
95
143
|
id: string;
|
|
96
144
|
url: string;
|
|
97
145
|
};
|
|
146
|
+
editionId?: string | undefined;
|
|
98
147
|
slug?: string | undefined;
|
|
99
148
|
}>, z.ZodObject<{
|
|
100
149
|
state: z.ZodNumber;
|
|
@@ -153,6 +202,7 @@ declare const definition: <TSchema extends ZodTypeAny = z.ZodTypeAny>(options: D
|
|
|
153
202
|
|
|
154
203
|
declare const CompositionChangedDefinition: Definition<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
155
204
|
id: z.ZodString;
|
|
205
|
+
editionId: z.ZodOptional<z.ZodString>;
|
|
156
206
|
slug: z.ZodOptional<z.ZodString>;
|
|
157
207
|
name: z.ZodString;
|
|
158
208
|
type: z.ZodString;
|
|
@@ -174,6 +224,7 @@ declare const CompositionChangedDefinition: Definition<z.ZodIntersection<z.ZodIn
|
|
|
174
224
|
id: string;
|
|
175
225
|
url: string;
|
|
176
226
|
};
|
|
227
|
+
editionId?: string | undefined;
|
|
177
228
|
slug?: string | undefined;
|
|
178
229
|
}, {
|
|
179
230
|
id: string;
|
|
@@ -183,6 +234,7 @@ declare const CompositionChangedDefinition: Definition<z.ZodIntersection<z.ZodIn
|
|
|
183
234
|
id: string;
|
|
184
235
|
url: string;
|
|
185
236
|
};
|
|
237
|
+
editionId?: string | undefined;
|
|
186
238
|
slug?: string | undefined;
|
|
187
239
|
}>, z.ZodObject<{
|
|
188
240
|
state: z.ZodNumber;
|
|
@@ -226,6 +278,7 @@ declare const CompositionChangedEventName: string;
|
|
|
226
278
|
|
|
227
279
|
declare const CompositionDeletedDefinition: Definition<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
228
280
|
id: z.ZodString;
|
|
281
|
+
editionId: z.ZodOptional<z.ZodString>;
|
|
229
282
|
slug: z.ZodOptional<z.ZodString>;
|
|
230
283
|
name: z.ZodString;
|
|
231
284
|
type: z.ZodString;
|
|
@@ -247,6 +300,7 @@ declare const CompositionDeletedDefinition: Definition<z.ZodIntersection<z.ZodIn
|
|
|
247
300
|
id: string;
|
|
248
301
|
url: string;
|
|
249
302
|
};
|
|
303
|
+
editionId?: string | undefined;
|
|
250
304
|
slug?: string | undefined;
|
|
251
305
|
}, {
|
|
252
306
|
id: string;
|
|
@@ -256,6 +310,7 @@ declare const CompositionDeletedDefinition: Definition<z.ZodIntersection<z.ZodIn
|
|
|
256
310
|
id: string;
|
|
257
311
|
url: string;
|
|
258
312
|
};
|
|
313
|
+
editionId?: string | undefined;
|
|
259
314
|
slug?: string | undefined;
|
|
260
315
|
}>, z.ZodObject<{
|
|
261
316
|
state: z.ZodOptional<z.ZodNumber>;
|
|
@@ -290,6 +345,7 @@ declare const CompositionDeletedEventName: string;
|
|
|
290
345
|
|
|
291
346
|
declare const CompositionPublishedDefinition: Definition<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
292
347
|
id: z.ZodString;
|
|
348
|
+
editionId: z.ZodOptional<z.ZodString>;
|
|
293
349
|
slug: z.ZodOptional<z.ZodString>;
|
|
294
350
|
name: z.ZodString;
|
|
295
351
|
type: z.ZodString;
|
|
@@ -311,6 +367,7 @@ declare const CompositionPublishedDefinition: Definition<z.ZodIntersection<z.Zod
|
|
|
311
367
|
id: string;
|
|
312
368
|
url: string;
|
|
313
369
|
};
|
|
370
|
+
editionId?: string | undefined;
|
|
314
371
|
slug?: string | undefined;
|
|
315
372
|
}, {
|
|
316
373
|
id: string;
|
|
@@ -320,6 +377,7 @@ declare const CompositionPublishedDefinition: Definition<z.ZodIntersection<z.Zod
|
|
|
320
377
|
id: string;
|
|
321
378
|
url: string;
|
|
322
379
|
};
|
|
380
|
+
editionId?: string | undefined;
|
|
323
381
|
slug?: string | undefined;
|
|
324
382
|
}>, z.ZodObject<{
|
|
325
383
|
state: z.ZodNumber;
|
|
@@ -363,6 +421,7 @@ declare const CompositionPublishedEventName: string;
|
|
|
363
421
|
|
|
364
422
|
declare const CompositionReleaseChangedDefinition: Definition<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
365
423
|
id: z.ZodString;
|
|
424
|
+
editionId: z.ZodOptional<z.ZodString>;
|
|
366
425
|
slug: z.ZodOptional<z.ZodString>;
|
|
367
426
|
name: z.ZodString;
|
|
368
427
|
type: z.ZodString;
|
|
@@ -384,6 +443,7 @@ declare const CompositionReleaseChangedDefinition: Definition<z.ZodIntersection<
|
|
|
384
443
|
id: string;
|
|
385
444
|
url: string;
|
|
386
445
|
};
|
|
446
|
+
editionId?: string | undefined;
|
|
387
447
|
slug?: string | undefined;
|
|
388
448
|
}, {
|
|
389
449
|
id: string;
|
|
@@ -393,6 +453,7 @@ declare const CompositionReleaseChangedDefinition: Definition<z.ZodIntersection<
|
|
|
393
453
|
id: string;
|
|
394
454
|
url: string;
|
|
395
455
|
};
|
|
456
|
+
editionId?: string | undefined;
|
|
396
457
|
slug?: string | undefined;
|
|
397
458
|
}>, z.ZodObject<{
|
|
398
459
|
state: z.ZodNumber;
|
|
@@ -436,6 +497,7 @@ declare const CompositionReleaseChangedEventName: string;
|
|
|
436
497
|
|
|
437
498
|
declare const CompositionReleaseDeletedDefinition: Definition<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
438
499
|
id: z.ZodString;
|
|
500
|
+
editionId: z.ZodOptional<z.ZodString>;
|
|
439
501
|
slug: z.ZodOptional<z.ZodString>;
|
|
440
502
|
name: z.ZodString;
|
|
441
503
|
type: z.ZodString;
|
|
@@ -457,6 +519,7 @@ declare const CompositionReleaseDeletedDefinition: Definition<z.ZodIntersection<
|
|
|
457
519
|
id: string;
|
|
458
520
|
url: string;
|
|
459
521
|
};
|
|
522
|
+
editionId?: string | undefined;
|
|
460
523
|
slug?: string | undefined;
|
|
461
524
|
}, {
|
|
462
525
|
id: string;
|
|
@@ -466,6 +529,7 @@ declare const CompositionReleaseDeletedDefinition: Definition<z.ZodIntersection<
|
|
|
466
529
|
id: string;
|
|
467
530
|
url: string;
|
|
468
531
|
};
|
|
532
|
+
editionId?: string | undefined;
|
|
469
533
|
slug?: string | undefined;
|
|
470
534
|
}>, z.ZodObject<{
|
|
471
535
|
state: z.ZodOptional<z.ZodNumber>;
|
|
@@ -500,6 +564,7 @@ declare const CompositionReleaseDeletedEventName: string;
|
|
|
500
564
|
|
|
501
565
|
declare const CompositionReleasePublishedDefinition: Definition<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
502
566
|
id: z.ZodString;
|
|
567
|
+
editionId: z.ZodOptional<z.ZodString>;
|
|
503
568
|
slug: z.ZodOptional<z.ZodString>;
|
|
504
569
|
name: z.ZodString;
|
|
505
570
|
type: z.ZodString;
|
|
@@ -521,6 +586,7 @@ declare const CompositionReleasePublishedDefinition: Definition<z.ZodIntersectio
|
|
|
521
586
|
id: string;
|
|
522
587
|
url: string;
|
|
523
588
|
};
|
|
589
|
+
editionId?: string | undefined;
|
|
524
590
|
slug?: string | undefined;
|
|
525
591
|
}, {
|
|
526
592
|
id: string;
|
|
@@ -530,6 +596,7 @@ declare const CompositionReleasePublishedDefinition: Definition<z.ZodIntersectio
|
|
|
530
596
|
id: string;
|
|
531
597
|
url: string;
|
|
532
598
|
};
|
|
599
|
+
editionId?: string | undefined;
|
|
533
600
|
slug?: string | undefined;
|
|
534
601
|
}>, z.ZodObject<{
|
|
535
602
|
state: z.ZodNumber;
|
|
@@ -571,6 +638,73 @@ declare const CompositionReleasePublishedDefinition: Definition<z.ZodIntersectio
|
|
|
571
638
|
type CompositionReleasePublishedPayload = z.infer<(typeof CompositionReleasePublishedDefinition)['schema']>;
|
|
572
639
|
declare const CompositionReleasePublishedEventName: string;
|
|
573
640
|
|
|
641
|
+
declare const CompositionReleaseRestoredDefinition: Definition<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
642
|
+
id: z.ZodString;
|
|
643
|
+
editionId: z.ZodOptional<z.ZodString>;
|
|
644
|
+
slug: z.ZodOptional<z.ZodString>;
|
|
645
|
+
name: z.ZodString;
|
|
646
|
+
type: z.ZodString;
|
|
647
|
+
project: z.ZodObject<{
|
|
648
|
+
id: z.ZodString;
|
|
649
|
+
url: z.ZodString;
|
|
650
|
+
}, "strip", z.ZodTypeAny, {
|
|
651
|
+
id: string;
|
|
652
|
+
url: string;
|
|
653
|
+
}, {
|
|
654
|
+
id: string;
|
|
655
|
+
url: string;
|
|
656
|
+
}>;
|
|
657
|
+
}, "strip", z.ZodTypeAny, {
|
|
658
|
+
id: string;
|
|
659
|
+
name: string;
|
|
660
|
+
type: string;
|
|
661
|
+
project: {
|
|
662
|
+
id: string;
|
|
663
|
+
url: string;
|
|
664
|
+
};
|
|
665
|
+
editionId?: string | undefined;
|
|
666
|
+
slug?: string | undefined;
|
|
667
|
+
}, {
|
|
668
|
+
id: string;
|
|
669
|
+
name: string;
|
|
670
|
+
type: string;
|
|
671
|
+
project: {
|
|
672
|
+
id: string;
|
|
673
|
+
url: string;
|
|
674
|
+
};
|
|
675
|
+
editionId?: string | undefined;
|
|
676
|
+
slug?: string | undefined;
|
|
677
|
+
}>, z.ZodObject<{
|
|
678
|
+
state: z.ZodNumber;
|
|
679
|
+
}, "strip", z.ZodTypeAny, {
|
|
680
|
+
state: number;
|
|
681
|
+
}, {
|
|
682
|
+
state: number;
|
|
683
|
+
}>>, z.ZodObject<{
|
|
684
|
+
release: z.ZodObject<{
|
|
685
|
+
id: z.ZodString;
|
|
686
|
+
url: z.ZodString;
|
|
687
|
+
}, "strip", z.ZodTypeAny, {
|
|
688
|
+
id: string;
|
|
689
|
+
url: string;
|
|
690
|
+
}, {
|
|
691
|
+
id: string;
|
|
692
|
+
url: string;
|
|
693
|
+
}>;
|
|
694
|
+
}, "strip", z.ZodTypeAny, {
|
|
695
|
+
release: {
|
|
696
|
+
id: string;
|
|
697
|
+
url: string;
|
|
698
|
+
};
|
|
699
|
+
}, {
|
|
700
|
+
release: {
|
|
701
|
+
id: string;
|
|
702
|
+
url: string;
|
|
703
|
+
};
|
|
704
|
+
}>>>;
|
|
705
|
+
type CompositionReleaseRestoredPayload = z.infer<(typeof CompositionReleaseRestoredDefinition)['schema']>;
|
|
706
|
+
declare const CompositionReleaseRestoredEventName: string;
|
|
707
|
+
|
|
574
708
|
declare const EntryTriggerPayloadSchema: z.ZodObject<{
|
|
575
709
|
trigger: z.ZodOptional<z.ZodObject<{
|
|
576
710
|
type: z.ZodEnum<["release"]>;
|
|
@@ -595,6 +729,7 @@ declare const EntryTriggerPayloadSchema: z.ZodObject<{
|
|
|
595
729
|
}>;
|
|
596
730
|
declare const EntryDeletePayloadSchema: z.ZodIntersection<z.ZodObject<{
|
|
597
731
|
id: z.ZodString;
|
|
732
|
+
editionId: z.ZodOptional<z.ZodString>;
|
|
598
733
|
slug: z.ZodOptional<z.ZodString>;
|
|
599
734
|
name: z.ZodString;
|
|
600
735
|
type: z.ZodString;
|
|
@@ -616,6 +751,7 @@ declare const EntryDeletePayloadSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
616
751
|
id: string;
|
|
617
752
|
url: string;
|
|
618
753
|
};
|
|
754
|
+
editionId?: string | undefined;
|
|
619
755
|
slug?: string | undefined;
|
|
620
756
|
}, {
|
|
621
757
|
id: string;
|
|
@@ -625,6 +761,7 @@ declare const EntryDeletePayloadSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
625
761
|
id: string;
|
|
626
762
|
url: string;
|
|
627
763
|
};
|
|
764
|
+
editionId?: string | undefined;
|
|
628
765
|
slug?: string | undefined;
|
|
629
766
|
}>, z.ZodObject<{
|
|
630
767
|
state: z.ZodOptional<z.ZodNumber>;
|
|
@@ -633,8 +770,52 @@ declare const EntryDeletePayloadSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
633
770
|
}, {
|
|
634
771
|
state?: number | undefined;
|
|
635
772
|
}>>;
|
|
773
|
+
declare const EntryRestorePayloadSchema: z.ZodIntersection<z.ZodObject<{
|
|
774
|
+
id: z.ZodString;
|
|
775
|
+
editionId: z.ZodOptional<z.ZodString>;
|
|
776
|
+
slug: z.ZodOptional<z.ZodString>;
|
|
777
|
+
name: z.ZodString;
|
|
778
|
+
type: z.ZodString;
|
|
779
|
+
project: z.ZodObject<{
|
|
780
|
+
id: z.ZodString;
|
|
781
|
+
url: z.ZodString;
|
|
782
|
+
}, "strip", z.ZodTypeAny, {
|
|
783
|
+
id: string;
|
|
784
|
+
url: string;
|
|
785
|
+
}, {
|
|
786
|
+
id: string;
|
|
787
|
+
url: string;
|
|
788
|
+
}>;
|
|
789
|
+
}, "strip", z.ZodTypeAny, {
|
|
790
|
+
id: string;
|
|
791
|
+
name: string;
|
|
792
|
+
type: string;
|
|
793
|
+
project: {
|
|
794
|
+
id: string;
|
|
795
|
+
url: string;
|
|
796
|
+
};
|
|
797
|
+
editionId?: string | undefined;
|
|
798
|
+
slug?: string | undefined;
|
|
799
|
+
}, {
|
|
800
|
+
id: string;
|
|
801
|
+
name: string;
|
|
802
|
+
type: string;
|
|
803
|
+
project: {
|
|
804
|
+
id: string;
|
|
805
|
+
url: string;
|
|
806
|
+
};
|
|
807
|
+
editionId?: string | undefined;
|
|
808
|
+
slug?: string | undefined;
|
|
809
|
+
}>, z.ZodObject<{
|
|
810
|
+
state: z.ZodNumber;
|
|
811
|
+
}, "strip", z.ZodTypeAny, {
|
|
812
|
+
state: number;
|
|
813
|
+
}, {
|
|
814
|
+
state: number;
|
|
815
|
+
}>>;
|
|
636
816
|
declare const EntryPayloadSchema: z.ZodIntersection<z.ZodObject<{
|
|
637
817
|
id: z.ZodString;
|
|
818
|
+
editionId: z.ZodOptional<z.ZodString>;
|
|
638
819
|
slug: z.ZodOptional<z.ZodString>;
|
|
639
820
|
name: z.ZodString;
|
|
640
821
|
type: z.ZodString;
|
|
@@ -656,6 +837,7 @@ declare const EntryPayloadSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
656
837
|
id: string;
|
|
657
838
|
url: string;
|
|
658
839
|
};
|
|
840
|
+
editionId?: string | undefined;
|
|
659
841
|
slug?: string | undefined;
|
|
660
842
|
}, {
|
|
661
843
|
id: string;
|
|
@@ -665,6 +847,7 @@ declare const EntryPayloadSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
665
847
|
id: string;
|
|
666
848
|
url: string;
|
|
667
849
|
};
|
|
850
|
+
editionId?: string | undefined;
|
|
668
851
|
slug?: string | undefined;
|
|
669
852
|
}>, z.ZodObject<{
|
|
670
853
|
state: z.ZodNumber;
|
|
@@ -709,6 +892,7 @@ type ReleaseEntryPayload = z.infer<typeof ReleaseEntryPayloadSchema>;
|
|
|
709
892
|
|
|
710
893
|
declare const EntryChangedDefinition: Definition<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
711
894
|
id: z.ZodString;
|
|
895
|
+
editionId: z.ZodOptional<z.ZodString>;
|
|
712
896
|
slug: z.ZodOptional<z.ZodString>;
|
|
713
897
|
name: z.ZodString;
|
|
714
898
|
type: z.ZodString;
|
|
@@ -730,6 +914,7 @@ declare const EntryChangedDefinition: Definition<z.ZodIntersection<z.ZodIntersec
|
|
|
730
914
|
id: string;
|
|
731
915
|
url: string;
|
|
732
916
|
};
|
|
917
|
+
editionId?: string | undefined;
|
|
733
918
|
slug?: string | undefined;
|
|
734
919
|
}, {
|
|
735
920
|
id: string;
|
|
@@ -739,6 +924,7 @@ declare const EntryChangedDefinition: Definition<z.ZodIntersection<z.ZodIntersec
|
|
|
739
924
|
id: string;
|
|
740
925
|
url: string;
|
|
741
926
|
};
|
|
927
|
+
editionId?: string | undefined;
|
|
742
928
|
slug?: string | undefined;
|
|
743
929
|
}>, z.ZodObject<{
|
|
744
930
|
state: z.ZodNumber;
|
|
@@ -782,6 +968,7 @@ declare const EntryChangedEventName: string;
|
|
|
782
968
|
|
|
783
969
|
declare const EntryDeletedDefinition: Definition<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
784
970
|
id: z.ZodString;
|
|
971
|
+
editionId: z.ZodOptional<z.ZodString>;
|
|
785
972
|
slug: z.ZodOptional<z.ZodString>;
|
|
786
973
|
name: z.ZodString;
|
|
787
974
|
type: z.ZodString;
|
|
@@ -803,6 +990,7 @@ declare const EntryDeletedDefinition: Definition<z.ZodIntersection<z.ZodIntersec
|
|
|
803
990
|
id: string;
|
|
804
991
|
url: string;
|
|
805
992
|
};
|
|
993
|
+
editionId?: string | undefined;
|
|
806
994
|
slug?: string | undefined;
|
|
807
995
|
}, {
|
|
808
996
|
id: string;
|
|
@@ -812,6 +1000,7 @@ declare const EntryDeletedDefinition: Definition<z.ZodIntersection<z.ZodIntersec
|
|
|
812
1000
|
id: string;
|
|
813
1001
|
url: string;
|
|
814
1002
|
};
|
|
1003
|
+
editionId?: string | undefined;
|
|
815
1004
|
slug?: string | undefined;
|
|
816
1005
|
}>, z.ZodObject<{
|
|
817
1006
|
state: z.ZodOptional<z.ZodNumber>;
|
|
@@ -846,6 +1035,7 @@ declare const EntryDeletedEventName: string;
|
|
|
846
1035
|
|
|
847
1036
|
declare const EntryPublishedDefinition: Definition<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
848
1037
|
id: z.ZodString;
|
|
1038
|
+
editionId: z.ZodOptional<z.ZodString>;
|
|
849
1039
|
slug: z.ZodOptional<z.ZodString>;
|
|
850
1040
|
name: z.ZodString;
|
|
851
1041
|
type: z.ZodString;
|
|
@@ -867,6 +1057,7 @@ declare const EntryPublishedDefinition: Definition<z.ZodIntersection<z.ZodInters
|
|
|
867
1057
|
id: string;
|
|
868
1058
|
url: string;
|
|
869
1059
|
};
|
|
1060
|
+
editionId?: string | undefined;
|
|
870
1061
|
slug?: string | undefined;
|
|
871
1062
|
}, {
|
|
872
1063
|
id: string;
|
|
@@ -876,6 +1067,7 @@ declare const EntryPublishedDefinition: Definition<z.ZodIntersection<z.ZodInters
|
|
|
876
1067
|
id: string;
|
|
877
1068
|
url: string;
|
|
878
1069
|
};
|
|
1070
|
+
editionId?: string | undefined;
|
|
879
1071
|
slug?: string | undefined;
|
|
880
1072
|
}>, z.ZodObject<{
|
|
881
1073
|
state: z.ZodNumber;
|
|
@@ -919,6 +1111,7 @@ declare const EntryPublishedEventName: string;
|
|
|
919
1111
|
|
|
920
1112
|
declare const EntryReleaseChangedDefinition: Definition<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
921
1113
|
id: z.ZodString;
|
|
1114
|
+
editionId: z.ZodOptional<z.ZodString>;
|
|
922
1115
|
slug: z.ZodOptional<z.ZodString>;
|
|
923
1116
|
name: z.ZodString;
|
|
924
1117
|
type: z.ZodString;
|
|
@@ -940,6 +1133,7 @@ declare const EntryReleaseChangedDefinition: Definition<z.ZodIntersection<z.ZodI
|
|
|
940
1133
|
id: string;
|
|
941
1134
|
url: string;
|
|
942
1135
|
};
|
|
1136
|
+
editionId?: string | undefined;
|
|
943
1137
|
slug?: string | undefined;
|
|
944
1138
|
}, {
|
|
945
1139
|
id: string;
|
|
@@ -949,6 +1143,7 @@ declare const EntryReleaseChangedDefinition: Definition<z.ZodIntersection<z.ZodI
|
|
|
949
1143
|
id: string;
|
|
950
1144
|
url: string;
|
|
951
1145
|
};
|
|
1146
|
+
editionId?: string | undefined;
|
|
952
1147
|
slug?: string | undefined;
|
|
953
1148
|
}>, z.ZodObject<{
|
|
954
1149
|
state: z.ZodNumber;
|
|
@@ -992,6 +1187,7 @@ declare const EntryReleaseChangedEventName: string;
|
|
|
992
1187
|
|
|
993
1188
|
declare const EntryReleaseDeletedDefinition: Definition<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
994
1189
|
id: z.ZodString;
|
|
1190
|
+
editionId: z.ZodOptional<z.ZodString>;
|
|
995
1191
|
slug: z.ZodOptional<z.ZodString>;
|
|
996
1192
|
name: z.ZodString;
|
|
997
1193
|
type: z.ZodString;
|
|
@@ -1013,6 +1209,7 @@ declare const EntryReleaseDeletedDefinition: Definition<z.ZodIntersection<z.ZodI
|
|
|
1013
1209
|
id: string;
|
|
1014
1210
|
url: string;
|
|
1015
1211
|
};
|
|
1212
|
+
editionId?: string | undefined;
|
|
1016
1213
|
slug?: string | undefined;
|
|
1017
1214
|
}, {
|
|
1018
1215
|
id: string;
|
|
@@ -1022,6 +1219,7 @@ declare const EntryReleaseDeletedDefinition: Definition<z.ZodIntersection<z.ZodI
|
|
|
1022
1219
|
id: string;
|
|
1023
1220
|
url: string;
|
|
1024
1221
|
};
|
|
1222
|
+
editionId?: string | undefined;
|
|
1025
1223
|
slug?: string | undefined;
|
|
1026
1224
|
}>, z.ZodObject<{
|
|
1027
1225
|
state: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1056,6 +1254,7 @@ declare const EntryReleaseDeletedEventName: string;
|
|
|
1056
1254
|
|
|
1057
1255
|
declare const EntryReleasePublishedDefinition: Definition<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
1058
1256
|
id: z.ZodString;
|
|
1257
|
+
editionId: z.ZodOptional<z.ZodString>;
|
|
1059
1258
|
slug: z.ZodOptional<z.ZodString>;
|
|
1060
1259
|
name: z.ZodString;
|
|
1061
1260
|
type: z.ZodString;
|
|
@@ -1077,6 +1276,7 @@ declare const EntryReleasePublishedDefinition: Definition<z.ZodIntersection<z.Zo
|
|
|
1077
1276
|
id: string;
|
|
1078
1277
|
url: string;
|
|
1079
1278
|
};
|
|
1279
|
+
editionId?: string | undefined;
|
|
1080
1280
|
slug?: string | undefined;
|
|
1081
1281
|
}, {
|
|
1082
1282
|
id: string;
|
|
@@ -1086,6 +1286,7 @@ declare const EntryReleasePublishedDefinition: Definition<z.ZodIntersection<z.Zo
|
|
|
1086
1286
|
id: string;
|
|
1087
1287
|
url: string;
|
|
1088
1288
|
};
|
|
1289
|
+
editionId?: string | undefined;
|
|
1089
1290
|
slug?: string | undefined;
|
|
1090
1291
|
}>, z.ZodObject<{
|
|
1091
1292
|
state: z.ZodNumber;
|
|
@@ -1127,6 +1328,73 @@ declare const EntryReleasePublishedDefinition: Definition<z.ZodIntersection<z.Zo
|
|
|
1127
1328
|
type EntryReleasePublishedPayload = z.infer<(typeof EntryReleasePublishedDefinition)['schema']>;
|
|
1128
1329
|
declare const EntryReleasePublishedEventName: string;
|
|
1129
1330
|
|
|
1331
|
+
declare const EntryReleaseRestoredDefinition: Definition<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
1332
|
+
id: z.ZodString;
|
|
1333
|
+
editionId: z.ZodOptional<z.ZodString>;
|
|
1334
|
+
slug: z.ZodOptional<z.ZodString>;
|
|
1335
|
+
name: z.ZodString;
|
|
1336
|
+
type: z.ZodString;
|
|
1337
|
+
project: z.ZodObject<{
|
|
1338
|
+
id: z.ZodString;
|
|
1339
|
+
url: z.ZodString;
|
|
1340
|
+
}, "strip", z.ZodTypeAny, {
|
|
1341
|
+
id: string;
|
|
1342
|
+
url: string;
|
|
1343
|
+
}, {
|
|
1344
|
+
id: string;
|
|
1345
|
+
url: string;
|
|
1346
|
+
}>;
|
|
1347
|
+
}, "strip", z.ZodTypeAny, {
|
|
1348
|
+
id: string;
|
|
1349
|
+
name: string;
|
|
1350
|
+
type: string;
|
|
1351
|
+
project: {
|
|
1352
|
+
id: string;
|
|
1353
|
+
url: string;
|
|
1354
|
+
};
|
|
1355
|
+
editionId?: string | undefined;
|
|
1356
|
+
slug?: string | undefined;
|
|
1357
|
+
}, {
|
|
1358
|
+
id: string;
|
|
1359
|
+
name: string;
|
|
1360
|
+
type: string;
|
|
1361
|
+
project: {
|
|
1362
|
+
id: string;
|
|
1363
|
+
url: string;
|
|
1364
|
+
};
|
|
1365
|
+
editionId?: string | undefined;
|
|
1366
|
+
slug?: string | undefined;
|
|
1367
|
+
}>, z.ZodObject<{
|
|
1368
|
+
state: z.ZodNumber;
|
|
1369
|
+
}, "strip", z.ZodTypeAny, {
|
|
1370
|
+
state: number;
|
|
1371
|
+
}, {
|
|
1372
|
+
state: number;
|
|
1373
|
+
}>>, z.ZodObject<{
|
|
1374
|
+
release: z.ZodObject<{
|
|
1375
|
+
id: z.ZodString;
|
|
1376
|
+
url: z.ZodString;
|
|
1377
|
+
}, "strip", z.ZodTypeAny, {
|
|
1378
|
+
id: string;
|
|
1379
|
+
url: string;
|
|
1380
|
+
}, {
|
|
1381
|
+
id: string;
|
|
1382
|
+
url: string;
|
|
1383
|
+
}>;
|
|
1384
|
+
}, "strip", z.ZodTypeAny, {
|
|
1385
|
+
release: {
|
|
1386
|
+
id: string;
|
|
1387
|
+
url: string;
|
|
1388
|
+
};
|
|
1389
|
+
}, {
|
|
1390
|
+
release: {
|
|
1391
|
+
id: string;
|
|
1392
|
+
url: string;
|
|
1393
|
+
};
|
|
1394
|
+
}>>>;
|
|
1395
|
+
type EntryReleaseRestoredPayload = z.infer<(typeof EntryReleaseRestoredDefinition)['schema']>;
|
|
1396
|
+
declare const EntryReleaseRestoredEventName: string;
|
|
1397
|
+
|
|
1130
1398
|
declare const ManifestPublishedDefinition: Definition<z.ZodObject<{
|
|
1131
1399
|
timestamp: z.ZodNumber;
|
|
1132
1400
|
site: z.ZodObject<{
|
|
@@ -1707,6 +1975,7 @@ declare const WorkflowEntitySchema: z.ZodObject<{
|
|
|
1707
1975
|
type: z.ZodEnum<["entry", "component"]>;
|
|
1708
1976
|
name: z.ZodString;
|
|
1709
1977
|
id: z.ZodString;
|
|
1978
|
+
editionId: z.ZodOptional<z.ZodString>;
|
|
1710
1979
|
releaseId: z.ZodOptional<z.ZodString>;
|
|
1711
1980
|
url: z.ZodString;
|
|
1712
1981
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -1714,12 +1983,14 @@ declare const WorkflowEntitySchema: z.ZodObject<{
|
|
|
1714
1983
|
name: string;
|
|
1715
1984
|
type: "entry" | "component";
|
|
1716
1985
|
url: string;
|
|
1986
|
+
editionId?: string | undefined;
|
|
1717
1987
|
releaseId?: string | undefined;
|
|
1718
1988
|
}, {
|
|
1719
1989
|
id: string;
|
|
1720
1990
|
name: string;
|
|
1721
1991
|
type: "entry" | "component";
|
|
1722
1992
|
url: string;
|
|
1993
|
+
editionId?: string | undefined;
|
|
1723
1994
|
releaseId?: string | undefined;
|
|
1724
1995
|
}>;
|
|
1725
1996
|
declare const WorkflowTransitionPayloadSchema: z.ZodObject<{
|
|
@@ -1727,6 +1998,7 @@ declare const WorkflowTransitionPayloadSchema: z.ZodObject<{
|
|
|
1727
1998
|
type: z.ZodEnum<["entry", "component"]>;
|
|
1728
1999
|
name: z.ZodString;
|
|
1729
2000
|
id: z.ZodString;
|
|
2001
|
+
editionId: z.ZodOptional<z.ZodString>;
|
|
1730
2002
|
releaseId: z.ZodOptional<z.ZodString>;
|
|
1731
2003
|
url: z.ZodString;
|
|
1732
2004
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -1734,12 +2006,14 @@ declare const WorkflowTransitionPayloadSchema: z.ZodObject<{
|
|
|
1734
2006
|
name: string;
|
|
1735
2007
|
type: "entry" | "component";
|
|
1736
2008
|
url: string;
|
|
2009
|
+
editionId?: string | undefined;
|
|
1737
2010
|
releaseId?: string | undefined;
|
|
1738
2011
|
}, {
|
|
1739
2012
|
id: string;
|
|
1740
2013
|
name: string;
|
|
1741
2014
|
type: "entry" | "component";
|
|
1742
2015
|
url: string;
|
|
2016
|
+
editionId?: string | undefined;
|
|
1743
2017
|
releaseId?: string | undefined;
|
|
1744
2018
|
}>;
|
|
1745
2019
|
newStage: z.ZodObject<{
|
|
@@ -1809,6 +2083,7 @@ declare const WorkflowTransitionPayloadSchema: z.ZodObject<{
|
|
|
1809
2083
|
name: string;
|
|
1810
2084
|
type: "entry" | "component";
|
|
1811
2085
|
url: string;
|
|
2086
|
+
editionId?: string | undefined;
|
|
1812
2087
|
releaseId?: string | undefined;
|
|
1813
2088
|
};
|
|
1814
2089
|
newStage: {
|
|
@@ -1839,6 +2114,7 @@ declare const WorkflowTransitionPayloadSchema: z.ZodObject<{
|
|
|
1839
2114
|
name: string;
|
|
1840
2115
|
type: "entry" | "component";
|
|
1841
2116
|
url: string;
|
|
2117
|
+
editionId?: string | undefined;
|
|
1842
2118
|
releaseId?: string | undefined;
|
|
1843
2119
|
};
|
|
1844
2120
|
newStage: {
|
|
@@ -1865,6 +2141,7 @@ declare const WorkflowTransitionDefinition: Definition<z.ZodObject<{
|
|
|
1865
2141
|
type: z.ZodEnum<["entry", "component"]>;
|
|
1866
2142
|
name: z.ZodString;
|
|
1867
2143
|
id: z.ZodString;
|
|
2144
|
+
editionId: z.ZodOptional<z.ZodString>;
|
|
1868
2145
|
releaseId: z.ZodOptional<z.ZodString>;
|
|
1869
2146
|
url: z.ZodString;
|
|
1870
2147
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -1872,12 +2149,14 @@ declare const WorkflowTransitionDefinition: Definition<z.ZodObject<{
|
|
|
1872
2149
|
name: string;
|
|
1873
2150
|
type: "entry" | "component";
|
|
1874
2151
|
url: string;
|
|
2152
|
+
editionId?: string | undefined;
|
|
1875
2153
|
releaseId?: string | undefined;
|
|
1876
2154
|
}, {
|
|
1877
2155
|
id: string;
|
|
1878
2156
|
name: string;
|
|
1879
2157
|
type: "entry" | "component";
|
|
1880
2158
|
url: string;
|
|
2159
|
+
editionId?: string | undefined;
|
|
1881
2160
|
releaseId?: string | undefined;
|
|
1882
2161
|
}>;
|
|
1883
2162
|
newStage: z.ZodObject<{
|
|
@@ -1947,6 +2226,7 @@ declare const WorkflowTransitionDefinition: Definition<z.ZodObject<{
|
|
|
1947
2226
|
name: string;
|
|
1948
2227
|
type: "entry" | "component";
|
|
1949
2228
|
url: string;
|
|
2229
|
+
editionId?: string | undefined;
|
|
1950
2230
|
releaseId?: string | undefined;
|
|
1951
2231
|
};
|
|
1952
2232
|
newStage: {
|
|
@@ -1977,6 +2257,7 @@ declare const WorkflowTransitionDefinition: Definition<z.ZodObject<{
|
|
|
1977
2257
|
name: string;
|
|
1978
2258
|
type: "entry" | "component";
|
|
1979
2259
|
url: string;
|
|
2260
|
+
editionId?: string | undefined;
|
|
1980
2261
|
releaseId?: string | undefined;
|
|
1981
2262
|
};
|
|
1982
2263
|
newStage: {
|
|
@@ -2000,4 +2281,4 @@ declare const WorkflowTransitionDefinition: Definition<z.ZodObject<{
|
|
|
2000
2281
|
type WorkflowTransitionPayload = z.infer<(typeof WorkflowTransitionDefinition)['schema']>;
|
|
2001
2282
|
declare const WorkflowTransitionEventName: string;
|
|
2002
2283
|
|
|
2003
|
-
export { ArchivedReleaseLaunchStartedDefinition, CompositionChangedDefinition, CompositionChangedEventName, type CompositionChangedPayload, CompositionDeletePayloadSchema, CompositionDeletedDefinition, CompositionDeletedEventName, type CompositionDeletedPayload, type CompositionPayload, CompositionPayloadSchema, CompositionPublishedDefinition, CompositionPublishedEventName, type CompositionPublishedPayload, CompositionReleaseChangedDefinition, CompositionReleaseChangedEventName, type CompositionReleaseChangedPayload, CompositionReleaseDeletedDefinition, CompositionReleaseDeletedEventName, type CompositionReleaseDeletedPayload, CompositionReleasePublishedDefinition, CompositionReleasePublishedEventName, type CompositionReleasePublishedPayload, CompositionTriggerPayloadSchema, type Definition, type DefinitionOptions, EntryChangedDefinition, EntryChangedEventName, type EntryChangedPayload, EntryDeletePayloadSchema, EntryDeletedDefinition, EntryDeletedEventName, type EntryDeletedPayload, type EntryPayload, EntryPayloadSchema, EntryPublishedDefinition, EntryPublishedEventName, type EntryPublishedPayload, EntryReleaseChangedDefinition, EntryReleaseChangedEventName, type EntryReleaseChangedPayload, EntryReleaseDeletedDefinition, EntryReleaseDeletedEventName, type EntryReleaseDeletedPayload, EntryReleasePublishedDefinition, EntryReleasePublishedEventName, type EntryReleasePublishedPayload, EntryTriggerPayloadSchema, ManifestPublishedDefinition, ManifestPublishedEventName, type ManifestPublishedPayload, ProjectMapDeleteDefinition, ProjectMapDeletedEventName, type ProjectMapDeletedPayload, ProjectMapNodeDeleteDefinition, ProjectMapNodeDeletedEventName, type ProjectMapNodeDeletedPayload, ProjectMapNodeInsertDefinition, ProjectMapNodeInsertedEventName, type ProjectMapNodeInsertedPayload, ProjectMapNodeUpdateDefinition, ProjectMapNodeUpdatedEventName, type ProjectMapNodeUpdatedPayload, ProjectMapUpdateDefinition, ProjectMapUpdatedEventName, type ProjectMapUpdatedPayload, RedirectDeleteDefinition, RedirectDeletedEventName, type RedirectDeletedPayload, RedirectInsertDefinition, RedirectInsertedEventName, type RedirectInsertedPayload, RedirectUpdateDefinition, RedirectUpdatedEventName, type RedirectUpdatedPayload, ReleaseChangedDefinition, ReleaseChangedEventName, type ReleaseChangedPayload, type ReleaseCompositionPayload, ReleaseCompositionPayloadSchema, ReleaseDeletedDefinition, ReleaseDeletedEventName, type ReleaseDeletedPayload, type ReleaseEntryPayload, ReleaseEntryPayloadSchema, ReleaseLaunchStartedDefinition, ReleaseLaunchStartedEventName, type ReleaseLaunchStartedPayload, ReleaseLaunchedDefinition, ReleaseLaunchedEventName, type ReleaseLaunchedPayload, type ReleasePayload, ReleasePayloadSchema, WorkflowEntitySchema, WorkflowIdentitySchema, WorkflowReferenceSchema, WorkflowTransitionDefinition, WorkflowTransitionEventName, type WorkflowTransitionPayload, WorkflowTransitionPayloadSchema, definition, isDefinition };
|
|
2284
|
+
export { ArchivedReleaseLaunchStartedDefinition, CompositionChangedDefinition, CompositionChangedEventName, type CompositionChangedPayload, CompositionDeletePayloadSchema, CompositionDeletedDefinition, CompositionDeletedEventName, type CompositionDeletedPayload, type CompositionPayload, CompositionPayloadSchema, CompositionPublishedDefinition, CompositionPublishedEventName, type CompositionPublishedPayload, CompositionReleaseChangedDefinition, CompositionReleaseChangedEventName, type CompositionReleaseChangedPayload, CompositionReleaseDeletedDefinition, CompositionReleaseDeletedEventName, type CompositionReleaseDeletedPayload, CompositionReleasePublishedDefinition, CompositionReleasePublishedEventName, type CompositionReleasePublishedPayload, CompositionReleaseRestoredDefinition, CompositionReleaseRestoredEventName, type CompositionReleaseRestoredPayload, CompositionRestorePayloadSchema, CompositionTriggerPayloadSchema, type Definition, type DefinitionOptions, EntryChangedDefinition, EntryChangedEventName, type EntryChangedPayload, EntryDeletePayloadSchema, EntryDeletedDefinition, EntryDeletedEventName, type EntryDeletedPayload, type EntryPayload, EntryPayloadSchema, EntryPublishedDefinition, EntryPublishedEventName, type EntryPublishedPayload, EntryReleaseChangedDefinition, EntryReleaseChangedEventName, type EntryReleaseChangedPayload, EntryReleaseDeletedDefinition, EntryReleaseDeletedEventName, type EntryReleaseDeletedPayload, EntryReleasePublishedDefinition, EntryReleasePublishedEventName, type EntryReleasePublishedPayload, EntryReleaseRestoredDefinition, EntryReleaseRestoredEventName, type EntryReleaseRestoredPayload, EntryRestorePayloadSchema, EntryTriggerPayloadSchema, ManifestPublishedDefinition, ManifestPublishedEventName, type ManifestPublishedPayload, ProjectMapDeleteDefinition, ProjectMapDeletedEventName, type ProjectMapDeletedPayload, ProjectMapNodeDeleteDefinition, ProjectMapNodeDeletedEventName, type ProjectMapNodeDeletedPayload, ProjectMapNodeInsertDefinition, ProjectMapNodeInsertedEventName, type ProjectMapNodeInsertedPayload, ProjectMapNodeUpdateDefinition, ProjectMapNodeUpdatedEventName, type ProjectMapNodeUpdatedPayload, ProjectMapUpdateDefinition, ProjectMapUpdatedEventName, type ProjectMapUpdatedPayload, RedirectDeleteDefinition, RedirectDeletedEventName, type RedirectDeletedPayload, RedirectInsertDefinition, RedirectInsertedEventName, type RedirectInsertedPayload, RedirectUpdateDefinition, RedirectUpdatedEventName, type RedirectUpdatedPayload, ReleaseChangedDefinition, ReleaseChangedEventName, type ReleaseChangedPayload, type ReleaseCompositionPayload, ReleaseCompositionPayloadSchema, ReleaseDeletedDefinition, ReleaseDeletedEventName, type ReleaseDeletedPayload, type ReleaseEntryPayload, ReleaseEntryPayloadSchema, ReleaseLaunchStartedDefinition, ReleaseLaunchStartedEventName, type ReleaseLaunchStartedPayload, ReleaseLaunchedDefinition, ReleaseLaunchedEventName, type ReleaseLaunchedPayload, type ReleasePayload, ReleasePayloadSchema, WorkflowEntitySchema, WorkflowIdentitySchema, WorkflowReferenceSchema, WorkflowTransitionDefinition, WorkflowTransitionEventName, type WorkflowTransitionPayload, WorkflowTransitionPayloadSchema, definition, isDefinition };
|