@uniformdev/webhooks 20.31.1-alpha.1 → 20.31.1-alpha.184

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/index.d.ts CHANGED
@@ -1,5 +1,4 @@
1
- import * as zod from 'zod';
2
- import { z, ZodTypeAny } from 'zod';
1
+ import * as z from 'zod';
3
2
 
4
3
  declare const CompositionTriggerPayloadSchema: z.ZodObject<{
5
4
  trigger: z.ZodOptional<z.ZodObject<{
@@ -23,7 +22,7 @@ declare const CompositionTriggerPayloadSchema: z.ZodObject<{
23
22
  id: string;
24
23
  } | undefined;
25
24
  }>;
26
- declare const CompositionDeletePayloadSchema: z.ZodIntersection<z.ZodObject<{
25
+ declare const CompositionDeletePayloadSchema: z.ZodObject<z.objectUtil.extendShape<{
27
26
  id: z.ZodString;
28
27
  editionId: z.ZodOptional<z.ZodString>;
29
28
  slug: z.ZodOptional<z.ZodString>;
@@ -55,10 +54,12 @@ declare const CompositionDeletePayloadSchema: z.ZodIntersection<z.ZodObject<{
55
54
  name?: string | undefined;
56
55
  email?: string | undefined;
57
56
  }>;
58
- }, "strip", z.ZodTypeAny, {
57
+ }, {
58
+ state: z.ZodOptional<z.ZodNumber>;
59
+ }>, "strip", z.ZodTypeAny, {
59
60
  type: string;
60
- id: string;
61
61
  name: string;
62
+ id: string;
62
63
  project: {
63
64
  id: string;
64
65
  url: string;
@@ -71,10 +72,11 @@ declare const CompositionDeletePayloadSchema: z.ZodIntersection<z.ZodObject<{
71
72
  };
72
73
  editionId?: string | undefined;
73
74
  slug?: string | undefined;
75
+ state?: number | undefined;
74
76
  }, {
75
77
  type: string;
76
- id: string;
77
78
  name: string;
79
+ id: string;
78
80
  project: {
79
81
  id: string;
80
82
  url: string;
@@ -87,14 +89,9 @@ declare const CompositionDeletePayloadSchema: z.ZodIntersection<z.ZodObject<{
87
89
  };
88
90
  editionId?: string | undefined;
89
91
  slug?: string | undefined;
90
- }>, z.ZodObject<{
91
- state: z.ZodOptional<z.ZodNumber>;
92
- }, "strip", z.ZodTypeAny, {
93
- state?: number | undefined;
94
- }, {
95
92
  state?: number | undefined;
96
- }>>;
97
- declare const CompositionRestorePayloadSchema: z.ZodIntersection<z.ZodObject<{
93
+ }>;
94
+ declare const CompositionRestorePayloadSchema: z.ZodObject<z.objectUtil.extendShape<{
98
95
  id: z.ZodString;
99
96
  editionId: z.ZodOptional<z.ZodString>;
100
97
  slug: z.ZodOptional<z.ZodString>;
@@ -126,10 +123,12 @@ declare const CompositionRestorePayloadSchema: z.ZodIntersection<z.ZodObject<{
126
123
  name?: string | undefined;
127
124
  email?: string | undefined;
128
125
  }>;
129
- }, "strip", z.ZodTypeAny, {
126
+ }, {
127
+ state: z.ZodNumber;
128
+ }>, "strip", z.ZodTypeAny, {
130
129
  type: string;
131
- id: string;
132
130
  name: string;
131
+ id: string;
133
132
  project: {
134
133
  id: string;
135
134
  url: string;
@@ -140,12 +139,13 @@ declare const CompositionRestorePayloadSchema: z.ZodIntersection<z.ZodObject<{
140
139
  name?: string | undefined;
141
140
  email?: string | undefined;
142
141
  };
142
+ state: number;
143
143
  editionId?: string | undefined;
144
144
  slug?: string | undefined;
145
145
  }, {
146
146
  type: string;
147
- id: string;
148
147
  name: string;
148
+ id: string;
149
149
  project: {
150
150
  id: string;
151
151
  url: string;
@@ -156,16 +156,11 @@ declare const CompositionRestorePayloadSchema: z.ZodIntersection<z.ZodObject<{
156
156
  name?: string | undefined;
157
157
  email?: string | undefined;
158
158
  };
159
+ state: number;
159
160
  editionId?: string | undefined;
160
161
  slug?: string | undefined;
161
- }>, z.ZodObject<{
162
- state: z.ZodNumber;
163
- }, "strip", z.ZodTypeAny, {
164
- state: number;
165
- }, {
166
- state: number;
167
- }>>;
168
- declare const CompositionPayloadSchema: z.ZodIntersection<z.ZodObject<{
162
+ }>;
163
+ declare const CompositionPayloadSchema: z.ZodObject<z.objectUtil.extendShape<{
169
164
  id: z.ZodString;
170
165
  editionId: z.ZodOptional<z.ZodString>;
171
166
  slug: z.ZodOptional<z.ZodString>;
@@ -197,10 +192,15 @@ declare const CompositionPayloadSchema: z.ZodIntersection<z.ZodObject<{
197
192
  name?: string | undefined;
198
193
  email?: string | undefined;
199
194
  }>;
200
- }, "strip", z.ZodTypeAny, {
195
+ }, {
196
+ state: z.ZodNumber;
197
+ edit_url: z.ZodString;
198
+ api_url: z.ZodString;
199
+ edge_url: z.ZodString;
200
+ }>, "strip", z.ZodTypeAny, {
201
201
  type: string;
202
- id: string;
203
202
  name: string;
203
+ id: string;
204
204
  project: {
205
205
  id: string;
206
206
  url: string;
@@ -211,12 +211,16 @@ declare const CompositionPayloadSchema: z.ZodIntersection<z.ZodObject<{
211
211
  name?: string | undefined;
212
212
  email?: string | undefined;
213
213
  };
214
+ state: number;
215
+ edit_url: string;
216
+ api_url: string;
217
+ edge_url: string;
214
218
  editionId?: string | undefined;
215
219
  slug?: string | undefined;
216
220
  }, {
217
221
  type: string;
218
- id: string;
219
222
  name: string;
223
+ id: string;
220
224
  project: {
221
225
  id: string;
222
226
  url: string;
@@ -227,24 +231,13 @@ declare const CompositionPayloadSchema: z.ZodIntersection<z.ZodObject<{
227
231
  name?: string | undefined;
228
232
  email?: string | undefined;
229
233
  };
230
- editionId?: string | undefined;
231
- slug?: string | undefined;
232
- }>, z.ZodObject<{
233
- state: z.ZodNumber;
234
- edit_url: z.ZodString;
235
- api_url: z.ZodString;
236
- edge_url: z.ZodString;
237
- }, "strip", z.ZodTypeAny, {
238
- state: number;
239
- edit_url: string;
240
- api_url: string;
241
- edge_url: string;
242
- }, {
243
234
  state: number;
244
235
  edit_url: string;
245
236
  api_url: string;
246
237
  edge_url: string;
247
- }>>;
238
+ editionId?: string | undefined;
239
+ slug?: string | undefined;
240
+ }>;
248
241
  declare const ReleaseCompositionPayloadSchema: z.ZodObject<{
249
242
  release: z.ZodObject<{
250
243
  id: z.ZodString;
@@ -270,19 +263,33 @@ declare const ReleaseCompositionPayloadSchema: z.ZodObject<{
270
263
  type CompositionPayload = z.infer<typeof CompositionPayloadSchema>;
271
264
  type ReleaseCompositionPayload = z.infer<typeof ReleaseCompositionPayloadSchema>;
272
265
 
273
- type DefinitionOptions<TSchema> = {
274
- event: string;
266
+ declare const addEventTypeToSchema: <T extends z.ZodObject<z.ZodRawShape>, EventType extends string>(schema: T, eventType: EventType) => z.ZodObject<T["shape"] & {
267
+ eventType: z.ZodLiteral<EventType>;
268
+ }, "strip", z.ZodTypeAny, { [k in keyof z.objectUtil.addQuestionMarks<z.baseObjectOutputType<T["shape"] & {
269
+ eventType: z.ZodLiteral<EventType>;
270
+ }>, any>]: z.objectUtil.addQuestionMarks<z.baseObjectOutputType<T["shape"] & {
271
+ eventType: z.ZodLiteral<EventType>;
272
+ }>, any>[k]; }, { [k_1 in keyof z.baseObjectInputType<T["shape"] & {
273
+ eventType: z.ZodLiteral<EventType>;
274
+ }>]: z.baseObjectInputType<T["shape"] & {
275
+ eventType: z.ZodLiteral<EventType>;
276
+ }>[k_1]; }>;
277
+ type DefinitionOptions<TSchema extends z.ZodObject<z.ZodRawShape>, EventType extends string> = {
278
+ event: EventType;
275
279
  name: string;
276
280
  description: string;
277
281
  schema: TSchema;
278
282
  archived?: boolean;
279
283
  };
280
- type Definition<TSchema extends ZodTypeAny = ZodTypeAny> = DefinitionOptions<TSchema> & {
284
+ type Definition<TSchema extends z.ZodObject<z.ZodRawShape> = z.ZodObject<z.ZodRawShape>, EventType extends string = string> = Omit<DefinitionOptions<TSchema, EventType>, 'schema'> & {
285
+ schema: ReturnType<typeof addEventTypeToSchema<TSchema, EventType>>;
281
286
  _definition: true;
282
- example: z.TypeOf<TSchema>;
287
+ example: z.TypeOf<TSchema> & {
288
+ eventType: EventType;
289
+ };
283
290
  };
284
291
  declare const isDefinition: (obj: any) => obj is Definition;
285
- declare const definition: <TSchema extends ZodTypeAny = ZodTypeAny>(options: DefinitionOptions<TSchema>, example: z.infer<TSchema>) => Definition<TSchema>;
292
+ declare const definition: <TSchema extends z.ZodObject<z.ZodRawShape> = z.ZodObject<z.ZodRawShape>, EventType extends string = string>(options: DefinitionOptions<TSchema, EventType>, example: z.infer<TSchema>) => Definition<TSchema, EventType>;
286
293
  declare const webhookInitiatorSchema: z.ZodObject<{
287
294
  id: z.ZodString;
288
295
  name: z.ZodOptional<z.ZodString>;
@@ -301,7 +308,7 @@ declare const webhookInitiatorSchema: z.ZodObject<{
301
308
  }>;
302
309
  type WebhookInitiator = z.infer<typeof webhookInitiatorSchema>;
303
310
 
304
- declare const CompositionChangedDefinition: Definition<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
311
+ declare const CompositionChangedDefinition: Definition<z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
305
312
  id: z.ZodString;
306
313
  editionId: z.ZodOptional<z.ZodString>;
307
314
  slug: z.ZodOptional<z.ZodString>;
@@ -333,10 +340,26 @@ declare const CompositionChangedDefinition: Definition<z.ZodIntersection<z.ZodIn
333
340
  name?: string | undefined;
334
341
  email?: string | undefined;
335
342
  }>;
336
- }, "strip", z.ZodTypeAny, {
343
+ }, {
344
+ state: z.ZodNumber;
345
+ edit_url: z.ZodString;
346
+ api_url: z.ZodString;
347
+ edge_url: z.ZodString;
348
+ }>, {
349
+ trigger: z.ZodOptional<z.ZodObject<{
350
+ type: z.ZodEnum<["release"]>;
351
+ id: z.ZodString;
352
+ }, "strip", z.ZodTypeAny, {
353
+ type: "release";
354
+ id: string;
355
+ }, {
356
+ type: "release";
357
+ id: string;
358
+ }>>;
359
+ }>, "strip", z.ZodTypeAny, {
337
360
  type: string;
338
- id: string;
339
361
  name: string;
362
+ id: string;
340
363
  project: {
341
364
  id: string;
342
365
  url: string;
@@ -347,12 +370,20 @@ declare const CompositionChangedDefinition: Definition<z.ZodIntersection<z.ZodIn
347
370
  name?: string | undefined;
348
371
  email?: string | undefined;
349
372
  };
373
+ state: number;
374
+ edit_url: string;
375
+ api_url: string;
376
+ edge_url: string;
350
377
  editionId?: string | undefined;
351
378
  slug?: string | undefined;
379
+ trigger?: {
380
+ type: "release";
381
+ id: string;
382
+ } | undefined;
352
383
  }, {
353
384
  type: string;
354
- id: string;
355
385
  name: string;
386
+ id: string;
356
387
  project: {
357
388
  id: string;
358
389
  url: string;
@@ -363,49 +394,21 @@ declare const CompositionChangedDefinition: Definition<z.ZodIntersection<z.ZodIn
363
394
  name?: string | undefined;
364
395
  email?: string | undefined;
365
396
  };
366
- editionId?: string | undefined;
367
- slug?: string | undefined;
368
- }>, z.ZodObject<{
369
- state: z.ZodNumber;
370
- edit_url: z.ZodString;
371
- api_url: z.ZodString;
372
- edge_url: z.ZodString;
373
- }, "strip", z.ZodTypeAny, {
374
- state: number;
375
- edit_url: string;
376
- api_url: string;
377
- edge_url: string;
378
- }, {
379
397
  state: number;
380
398
  edit_url: string;
381
399
  api_url: string;
382
400
  edge_url: string;
383
- }>>, z.ZodObject<{
384
- trigger: z.ZodOptional<z.ZodObject<{
385
- type: z.ZodEnum<["release"]>;
386
- id: z.ZodString;
387
- }, "strip", z.ZodTypeAny, {
388
- type: "release";
389
- id: string;
390
- }, {
391
- type: "release";
392
- id: string;
393
- }>>;
394
- }, "strip", z.ZodTypeAny, {
395
- trigger?: {
396
- type: "release";
397
- id: string;
398
- } | undefined;
399
- }, {
401
+ editionId?: string | undefined;
402
+ slug?: string | undefined;
400
403
  trigger?: {
401
404
  type: "release";
402
405
  id: string;
403
406
  } | undefined;
404
- }>>>;
407
+ }>, "composition.changed">;
405
408
  type CompositionChangedPayload = z.infer<(typeof CompositionChangedDefinition)['schema']>;
406
- declare const CompositionChangedEventName: string;
409
+ declare const CompositionChangedEventName: "composition.changed";
407
410
 
408
- declare const CompositionDeletedDefinition: Definition<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
411
+ declare const CompositionDeletedDefinition: Definition<z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
409
412
  id: z.ZodString;
410
413
  editionId: z.ZodOptional<z.ZodString>;
411
414
  slug: z.ZodOptional<z.ZodString>;
@@ -437,10 +440,23 @@ declare const CompositionDeletedDefinition: Definition<z.ZodIntersection<z.ZodIn
437
440
  name?: string | undefined;
438
441
  email?: string | undefined;
439
442
  }>;
440
- }, "strip", z.ZodTypeAny, {
443
+ }, {
444
+ state: z.ZodOptional<z.ZodNumber>;
445
+ }>, {
446
+ trigger: z.ZodOptional<z.ZodObject<{
447
+ type: z.ZodEnum<["release"]>;
448
+ id: z.ZodString;
449
+ }, "strip", z.ZodTypeAny, {
450
+ type: "release";
451
+ id: string;
452
+ }, {
453
+ type: "release";
454
+ id: string;
455
+ }>>;
456
+ }>, "strip", z.ZodTypeAny, {
441
457
  type: string;
442
- id: string;
443
458
  name: string;
459
+ id: string;
444
460
  project: {
445
461
  id: string;
446
462
  url: string;
@@ -453,10 +469,15 @@ declare const CompositionDeletedDefinition: Definition<z.ZodIntersection<z.ZodIn
453
469
  };
454
470
  editionId?: string | undefined;
455
471
  slug?: string | undefined;
472
+ trigger?: {
473
+ type: "release";
474
+ id: string;
475
+ } | undefined;
476
+ state?: number | undefined;
456
477
  }, {
457
478
  type: string;
458
- id: string;
459
479
  name: string;
480
+ id: string;
460
481
  project: {
461
482
  id: string;
462
483
  url: string;
@@ -469,38 +490,16 @@ declare const CompositionDeletedDefinition: Definition<z.ZodIntersection<z.ZodIn
469
490
  };
470
491
  editionId?: string | undefined;
471
492
  slug?: string | undefined;
472
- }>, z.ZodObject<{
473
- state: z.ZodOptional<z.ZodNumber>;
474
- }, "strip", z.ZodTypeAny, {
475
- state?: number | undefined;
476
- }, {
477
- state?: number | undefined;
478
- }>>, z.ZodObject<{
479
- trigger: z.ZodOptional<z.ZodObject<{
480
- type: z.ZodEnum<["release"]>;
481
- id: z.ZodString;
482
- }, "strip", z.ZodTypeAny, {
483
- type: "release";
484
- id: string;
485
- }, {
486
- type: "release";
487
- id: string;
488
- }>>;
489
- }, "strip", z.ZodTypeAny, {
490
- trigger?: {
491
- type: "release";
492
- id: string;
493
- } | undefined;
494
- }, {
495
493
  trigger?: {
496
494
  type: "release";
497
495
  id: string;
498
496
  } | undefined;
499
- }>>>;
497
+ state?: number | undefined;
498
+ }>, "composition.deleted">;
500
499
  type CompositionDeletedPayload = z.infer<(typeof CompositionDeletedDefinition)['schema']>;
501
- declare const CompositionDeletedEventName: string;
500
+ declare const CompositionDeletedEventName: "composition.deleted";
502
501
 
503
- declare const CompositionPublishedDefinition: Definition<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
502
+ declare const CompositionPublishedDefinition: Definition<z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
504
503
  id: z.ZodString;
505
504
  editionId: z.ZodOptional<z.ZodString>;
506
505
  slug: z.ZodOptional<z.ZodString>;
@@ -532,10 +531,26 @@ declare const CompositionPublishedDefinition: Definition<z.ZodIntersection<z.Zod
532
531
  name?: string | undefined;
533
532
  email?: string | undefined;
534
533
  }>;
535
- }, "strip", z.ZodTypeAny, {
534
+ }, {
535
+ state: z.ZodNumber;
536
+ edit_url: z.ZodString;
537
+ api_url: z.ZodString;
538
+ edge_url: z.ZodString;
539
+ }>, {
540
+ trigger: z.ZodOptional<z.ZodObject<{
541
+ type: z.ZodEnum<["release"]>;
542
+ id: z.ZodString;
543
+ }, "strip", z.ZodTypeAny, {
544
+ type: "release";
545
+ id: string;
546
+ }, {
547
+ type: "release";
548
+ id: string;
549
+ }>>;
550
+ }>, "strip", z.ZodTypeAny, {
536
551
  type: string;
537
- id: string;
538
552
  name: string;
553
+ id: string;
539
554
  project: {
540
555
  id: string;
541
556
  url: string;
@@ -546,12 +561,20 @@ declare const CompositionPublishedDefinition: Definition<z.ZodIntersection<z.Zod
546
561
  name?: string | undefined;
547
562
  email?: string | undefined;
548
563
  };
564
+ state: number;
565
+ edit_url: string;
566
+ api_url: string;
567
+ edge_url: string;
549
568
  editionId?: string | undefined;
550
569
  slug?: string | undefined;
570
+ trigger?: {
571
+ type: "release";
572
+ id: string;
573
+ } | undefined;
551
574
  }, {
552
575
  type: string;
553
- id: string;
554
576
  name: string;
577
+ id: string;
555
578
  project: {
556
579
  id: string;
557
580
  url: string;
@@ -562,49 +585,21 @@ declare const CompositionPublishedDefinition: Definition<z.ZodIntersection<z.Zod
562
585
  name?: string | undefined;
563
586
  email?: string | undefined;
564
587
  };
565
- editionId?: string | undefined;
566
- slug?: string | undefined;
567
- }>, z.ZodObject<{
568
- state: z.ZodNumber;
569
- edit_url: z.ZodString;
570
- api_url: z.ZodString;
571
- edge_url: z.ZodString;
572
- }, "strip", z.ZodTypeAny, {
573
- state: number;
574
- edit_url: string;
575
- api_url: string;
576
- edge_url: string;
577
- }, {
578
588
  state: number;
579
589
  edit_url: string;
580
590
  api_url: string;
581
591
  edge_url: string;
582
- }>>, z.ZodObject<{
583
- trigger: z.ZodOptional<z.ZodObject<{
584
- type: z.ZodEnum<["release"]>;
585
- id: z.ZodString;
586
- }, "strip", z.ZodTypeAny, {
587
- type: "release";
588
- id: string;
589
- }, {
590
- type: "release";
591
- id: string;
592
- }>>;
593
- }, "strip", z.ZodTypeAny, {
594
- trigger?: {
595
- type: "release";
596
- id: string;
597
- } | undefined;
598
- }, {
592
+ editionId?: string | undefined;
593
+ slug?: string | undefined;
599
594
  trigger?: {
600
595
  type: "release";
601
596
  id: string;
602
597
  } | undefined;
603
- }>>>;
598
+ }>, "composition.published">;
604
599
  type CompositionPublishedPayload = z.infer<(typeof CompositionPublishedDefinition)['schema']>;
605
- declare const CompositionPublishedEventName: string;
600
+ declare const CompositionPublishedEventName: "composition.published";
606
601
 
607
- declare const CompositionReleaseChangedDefinition: Definition<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
602
+ declare const CompositionReleaseChangedDefinition: Definition<z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
608
603
  id: z.ZodString;
609
604
  editionId: z.ZodOptional<z.ZodString>;
610
605
  slug: z.ZodOptional<z.ZodString>;
@@ -636,10 +631,26 @@ declare const CompositionReleaseChangedDefinition: Definition<z.ZodIntersection<
636
631
  name?: string | undefined;
637
632
  email?: string | undefined;
638
633
  }>;
639
- }, "strip", z.ZodTypeAny, {
634
+ }, {
635
+ state: z.ZodNumber;
636
+ edit_url: z.ZodString;
637
+ api_url: z.ZodString;
638
+ edge_url: z.ZodString;
639
+ }>, {
640
+ release: z.ZodObject<{
641
+ id: z.ZodString;
642
+ url: z.ZodString;
643
+ }, "strip", z.ZodTypeAny, {
644
+ id: string;
645
+ url: string;
646
+ }, {
647
+ id: string;
648
+ url: string;
649
+ }>;
650
+ }>, "strip", z.ZodTypeAny, {
640
651
  type: string;
641
- id: string;
642
652
  name: string;
653
+ id: string;
643
654
  project: {
644
655
  id: string;
645
656
  url: string;
@@ -650,12 +661,20 @@ declare const CompositionReleaseChangedDefinition: Definition<z.ZodIntersection<
650
661
  name?: string | undefined;
651
662
  email?: string | undefined;
652
663
  };
664
+ release: {
665
+ id: string;
666
+ url: string;
667
+ };
668
+ state: number;
669
+ edit_url: string;
670
+ api_url: string;
671
+ edge_url: string;
653
672
  editionId?: string | undefined;
654
673
  slug?: string | undefined;
655
674
  }, {
656
675
  type: string;
657
- id: string;
658
676
  name: string;
677
+ id: string;
659
678
  project: {
660
679
  id: string;
661
680
  url: string;
@@ -666,49 +685,21 @@ declare const CompositionReleaseChangedDefinition: Definition<z.ZodIntersection<
666
685
  name?: string | undefined;
667
686
  email?: string | undefined;
668
687
  };
688
+ release: {
689
+ id: string;
690
+ url: string;
691
+ };
692
+ state: number;
693
+ edit_url: string;
694
+ api_url: string;
695
+ edge_url: string;
669
696
  editionId?: string | undefined;
670
697
  slug?: string | undefined;
671
- }>, z.ZodObject<{
672
- state: z.ZodNumber;
673
- edit_url: z.ZodString;
674
- api_url: z.ZodString;
675
- edge_url: z.ZodString;
676
- }, "strip", z.ZodTypeAny, {
677
- state: number;
678
- edit_url: string;
679
- api_url: string;
680
- edge_url: string;
681
- }, {
682
- state: number;
683
- edit_url: string;
684
- api_url: string;
685
- edge_url: string;
686
- }>>, z.ZodObject<{
687
- release: z.ZodObject<{
688
- id: z.ZodString;
689
- url: z.ZodString;
690
- }, "strip", z.ZodTypeAny, {
691
- id: string;
692
- url: string;
693
- }, {
694
- id: string;
695
- url: string;
696
- }>;
697
- }, "strip", z.ZodTypeAny, {
698
- release: {
699
- id: string;
700
- url: string;
701
- };
702
- }, {
703
- release: {
704
- id: string;
705
- url: string;
706
- };
707
- }>>>;
698
+ }>, "composition.release.changed">;
708
699
  type CompositionReleaseChangedPayload = z.infer<(typeof CompositionReleaseChangedDefinition)['schema']>;
709
- declare const CompositionReleaseChangedEventName: string;
700
+ declare const CompositionReleaseChangedEventName: "composition.release.changed";
710
701
 
711
- declare const CompositionReleaseDeletedDefinition: Definition<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
702
+ declare const CompositionReleaseDeletedDefinition: Definition<z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
712
703
  id: z.ZodString;
713
704
  editionId: z.ZodOptional<z.ZodString>;
714
705
  slug: z.ZodOptional<z.ZodString>;
@@ -740,10 +731,23 @@ declare const CompositionReleaseDeletedDefinition: Definition<z.ZodIntersection<
740
731
  name?: string | undefined;
741
732
  email?: string | undefined;
742
733
  }>;
743
- }, "strip", z.ZodTypeAny, {
734
+ }, {
735
+ state: z.ZodOptional<z.ZodNumber>;
736
+ }>, {
737
+ release: z.ZodObject<{
738
+ id: z.ZodString;
739
+ url: z.ZodString;
740
+ }, "strip", z.ZodTypeAny, {
741
+ id: string;
742
+ url: string;
743
+ }, {
744
+ id: string;
745
+ url: string;
746
+ }>;
747
+ }>, "strip", z.ZodTypeAny, {
744
748
  type: string;
745
- id: string;
746
749
  name: string;
750
+ id: string;
747
751
  project: {
748
752
  id: string;
749
753
  url: string;
@@ -754,12 +758,17 @@ declare const CompositionReleaseDeletedDefinition: Definition<z.ZodIntersection<
754
758
  name?: string | undefined;
755
759
  email?: string | undefined;
756
760
  };
761
+ release: {
762
+ id: string;
763
+ url: string;
764
+ };
757
765
  editionId?: string | undefined;
758
766
  slug?: string | undefined;
767
+ state?: number | undefined;
759
768
  }, {
760
769
  type: string;
761
- id: string;
762
770
  name: string;
771
+ id: string;
763
772
  project: {
764
773
  id: string;
765
774
  url: string;
@@ -770,40 +779,18 @@ declare const CompositionReleaseDeletedDefinition: Definition<z.ZodIntersection<
770
779
  name?: string | undefined;
771
780
  email?: string | undefined;
772
781
  };
773
- editionId?: string | undefined;
774
- slug?: string | undefined;
775
- }>, z.ZodObject<{
776
- state: z.ZodOptional<z.ZodNumber>;
777
- }, "strip", z.ZodTypeAny, {
778
- state?: number | undefined;
779
- }, {
780
- state?: number | undefined;
781
- }>>, z.ZodObject<{
782
- release: z.ZodObject<{
783
- id: z.ZodString;
784
- url: z.ZodString;
785
- }, "strip", z.ZodTypeAny, {
786
- id: string;
787
- url: string;
788
- }, {
789
- id: string;
790
- url: string;
791
- }>;
792
- }, "strip", z.ZodTypeAny, {
793
782
  release: {
794
783
  id: string;
795
784
  url: string;
796
785
  };
797
- }, {
798
- release: {
799
- id: string;
800
- url: string;
801
- };
802
- }>>>;
786
+ editionId?: string | undefined;
787
+ slug?: string | undefined;
788
+ state?: number | undefined;
789
+ }>, "composition.release.deleted">;
803
790
  type CompositionReleaseDeletedPayload = z.infer<(typeof CompositionReleaseDeletedDefinition)['schema']>;
804
- declare const CompositionReleaseDeletedEventName: string;
791
+ declare const CompositionReleaseDeletedEventName: "composition.release.deleted";
805
792
 
806
- declare const CompositionReleasePublishedDefinition: Definition<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
793
+ declare const CompositionReleasePublishedDefinition: Definition<z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
807
794
  id: z.ZodString;
808
795
  editionId: z.ZodOptional<z.ZodString>;
809
796
  slug: z.ZodOptional<z.ZodString>;
@@ -835,10 +822,26 @@ declare const CompositionReleasePublishedDefinition: Definition<z.ZodIntersectio
835
822
  name?: string | undefined;
836
823
  email?: string | undefined;
837
824
  }>;
838
- }, "strip", z.ZodTypeAny, {
825
+ }, {
826
+ state: z.ZodNumber;
827
+ edit_url: z.ZodString;
828
+ api_url: z.ZodString;
829
+ edge_url: z.ZodString;
830
+ }>, {
831
+ release: z.ZodObject<{
832
+ id: z.ZodString;
833
+ url: z.ZodString;
834
+ }, "strip", z.ZodTypeAny, {
835
+ id: string;
836
+ url: string;
837
+ }, {
838
+ id: string;
839
+ url: string;
840
+ }>;
841
+ }>, "strip", z.ZodTypeAny, {
839
842
  type: string;
840
- id: string;
841
843
  name: string;
844
+ id: string;
842
845
  project: {
843
846
  id: string;
844
847
  url: string;
@@ -849,12 +852,20 @@ declare const CompositionReleasePublishedDefinition: Definition<z.ZodIntersectio
849
852
  name?: string | undefined;
850
853
  email?: string | undefined;
851
854
  };
855
+ release: {
856
+ id: string;
857
+ url: string;
858
+ };
859
+ state: number;
860
+ edit_url: string;
861
+ api_url: string;
862
+ edge_url: string;
852
863
  editionId?: string | undefined;
853
864
  slug?: string | undefined;
854
865
  }, {
855
866
  type: string;
856
- id: string;
857
867
  name: string;
868
+ id: string;
858
869
  project: {
859
870
  id: string;
860
871
  url: string;
@@ -865,49 +876,21 @@ declare const CompositionReleasePublishedDefinition: Definition<z.ZodIntersectio
865
876
  name?: string | undefined;
866
877
  email?: string | undefined;
867
878
  };
868
- editionId?: string | undefined;
869
- slug?: string | undefined;
870
- }>, z.ZodObject<{
871
- state: z.ZodNumber;
872
- edit_url: z.ZodString;
873
- api_url: z.ZodString;
874
- edge_url: z.ZodString;
875
- }, "strip", z.ZodTypeAny, {
876
- state: number;
877
- edit_url: string;
878
- api_url: string;
879
- edge_url: string;
880
- }, {
881
- state: number;
882
- edit_url: string;
883
- api_url: string;
884
- edge_url: string;
885
- }>>, z.ZodObject<{
886
- release: z.ZodObject<{
887
- id: z.ZodString;
888
- url: z.ZodString;
889
- }, "strip", z.ZodTypeAny, {
890
- id: string;
891
- url: string;
892
- }, {
893
- id: string;
894
- url: string;
895
- }>;
896
- }, "strip", z.ZodTypeAny, {
897
- release: {
898
- id: string;
899
- url: string;
900
- };
901
- }, {
902
879
  release: {
903
880
  id: string;
904
881
  url: string;
905
882
  };
906
- }>>>;
883
+ state: number;
884
+ edit_url: string;
885
+ api_url: string;
886
+ edge_url: string;
887
+ editionId?: string | undefined;
888
+ slug?: string | undefined;
889
+ }>, "composition.release.published">;
907
890
  type CompositionReleasePublishedPayload = z.infer<(typeof CompositionReleasePublishedDefinition)['schema']>;
908
- declare const CompositionReleasePublishedEventName: string;
891
+ declare const CompositionReleasePublishedEventName: "composition.release.published";
909
892
 
910
- declare const CompositionReleaseRestoredDefinition: Definition<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
893
+ declare const CompositionReleaseRestoredDefinition: Definition<z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
911
894
  id: z.ZodString;
912
895
  editionId: z.ZodOptional<z.ZodString>;
913
896
  slug: z.ZodOptional<z.ZodString>;
@@ -939,10 +922,23 @@ declare const CompositionReleaseRestoredDefinition: Definition<z.ZodIntersection
939
922
  name?: string | undefined;
940
923
  email?: string | undefined;
941
924
  }>;
942
- }, "strip", z.ZodTypeAny, {
925
+ }, {
926
+ state: z.ZodNumber;
927
+ }>, {
928
+ release: z.ZodObject<{
929
+ id: z.ZodString;
930
+ url: z.ZodString;
931
+ }, "strip", z.ZodTypeAny, {
932
+ id: string;
933
+ url: string;
934
+ }, {
935
+ id: string;
936
+ url: string;
937
+ }>;
938
+ }>, "strip", z.ZodTypeAny, {
943
939
  type: string;
944
- id: string;
945
940
  name: string;
941
+ id: string;
946
942
  project: {
947
943
  id: string;
948
944
  url: string;
@@ -953,12 +949,17 @@ declare const CompositionReleaseRestoredDefinition: Definition<z.ZodIntersection
953
949
  name?: string | undefined;
954
950
  email?: string | undefined;
955
951
  };
952
+ release: {
953
+ id: string;
954
+ url: string;
955
+ };
956
+ state: number;
956
957
  editionId?: string | undefined;
957
958
  slug?: string | undefined;
958
959
  }, {
959
960
  type: string;
960
- id: string;
961
961
  name: string;
962
+ id: string;
962
963
  project: {
963
964
  id: string;
964
965
  url: string;
@@ -969,38 +970,16 @@ declare const CompositionReleaseRestoredDefinition: Definition<z.ZodIntersection
969
970
  name?: string | undefined;
970
971
  email?: string | undefined;
971
972
  };
972
- editionId?: string | undefined;
973
- slug?: string | undefined;
974
- }>, z.ZodObject<{
975
- state: z.ZodNumber;
976
- }, "strip", z.ZodTypeAny, {
977
- state: number;
978
- }, {
979
- state: number;
980
- }>>, z.ZodObject<{
981
- release: z.ZodObject<{
982
- id: z.ZodString;
983
- url: z.ZodString;
984
- }, "strip", z.ZodTypeAny, {
985
- id: string;
986
- url: string;
987
- }, {
988
- id: string;
989
- url: string;
990
- }>;
991
- }, "strip", z.ZodTypeAny, {
992
- release: {
993
- id: string;
994
- url: string;
995
- };
996
- }, {
997
973
  release: {
998
974
  id: string;
999
975
  url: string;
1000
976
  };
1001
- }>>>;
977
+ state: number;
978
+ editionId?: string | undefined;
979
+ slug?: string | undefined;
980
+ }>, "composition.release.restored">;
1002
981
  type CompositionReleaseRestoredPayload = z.infer<(typeof CompositionReleaseRestoredDefinition)['schema']>;
1003
- declare const CompositionReleaseRestoredEventName: string;
982
+ declare const CompositionReleaseRestoredEventName: "composition.release.restored";
1004
983
 
1005
984
  declare const EntryTriggerPayloadSchema: z.ZodObject<{
1006
985
  trigger: z.ZodOptional<z.ZodObject<{
@@ -1024,7 +1003,7 @@ declare const EntryTriggerPayloadSchema: z.ZodObject<{
1024
1003
  id: string;
1025
1004
  } | undefined;
1026
1005
  }>;
1027
- declare const EntryDeletePayloadSchema: z.ZodIntersection<z.ZodObject<{
1006
+ declare const EntryDeletePayloadSchema: z.ZodObject<z.objectUtil.extendShape<{
1028
1007
  id: z.ZodString;
1029
1008
  editionId: z.ZodOptional<z.ZodString>;
1030
1009
  slug: z.ZodOptional<z.ZodString>;
@@ -1056,10 +1035,12 @@ declare const EntryDeletePayloadSchema: z.ZodIntersection<z.ZodObject<{
1056
1035
  name?: string | undefined;
1057
1036
  email?: string | undefined;
1058
1037
  }>;
1059
- }, "strip", z.ZodTypeAny, {
1038
+ }, {
1039
+ state: z.ZodOptional<z.ZodNumber>;
1040
+ }>, "strip", z.ZodTypeAny, {
1060
1041
  type: string;
1061
- id: string;
1062
1042
  name: string;
1043
+ id: string;
1063
1044
  project: {
1064
1045
  id: string;
1065
1046
  url: string;
@@ -1072,10 +1053,11 @@ declare const EntryDeletePayloadSchema: z.ZodIntersection<z.ZodObject<{
1072
1053
  };
1073
1054
  editionId?: string | undefined;
1074
1055
  slug?: string | undefined;
1056
+ state?: number | undefined;
1075
1057
  }, {
1076
1058
  type: string;
1077
- id: string;
1078
1059
  name: string;
1060
+ id: string;
1079
1061
  project: {
1080
1062
  id: string;
1081
1063
  url: string;
@@ -1088,14 +1070,9 @@ declare const EntryDeletePayloadSchema: z.ZodIntersection<z.ZodObject<{
1088
1070
  };
1089
1071
  editionId?: string | undefined;
1090
1072
  slug?: string | undefined;
1091
- }>, z.ZodObject<{
1092
- state: z.ZodOptional<z.ZodNumber>;
1093
- }, "strip", z.ZodTypeAny, {
1094
1073
  state?: number | undefined;
1095
- }, {
1096
- state?: number | undefined;
1097
- }>>;
1098
- declare const EntryRestorePayloadSchema: z.ZodIntersection<z.ZodObject<{
1074
+ }>;
1075
+ declare const EntryRestorePayloadSchema: z.ZodObject<z.objectUtil.extendShape<{
1099
1076
  id: z.ZodString;
1100
1077
  editionId: z.ZodOptional<z.ZodString>;
1101
1078
  slug: z.ZodOptional<z.ZodString>;
@@ -1127,10 +1104,12 @@ declare const EntryRestorePayloadSchema: z.ZodIntersection<z.ZodObject<{
1127
1104
  name?: string | undefined;
1128
1105
  email?: string | undefined;
1129
1106
  }>;
1130
- }, "strip", z.ZodTypeAny, {
1107
+ }, {
1108
+ state: z.ZodNumber;
1109
+ }>, "strip", z.ZodTypeAny, {
1131
1110
  type: string;
1132
- id: string;
1133
1111
  name: string;
1112
+ id: string;
1134
1113
  project: {
1135
1114
  id: string;
1136
1115
  url: string;
@@ -1141,12 +1120,13 @@ declare const EntryRestorePayloadSchema: z.ZodIntersection<z.ZodObject<{
1141
1120
  name?: string | undefined;
1142
1121
  email?: string | undefined;
1143
1122
  };
1123
+ state: number;
1144
1124
  editionId?: string | undefined;
1145
1125
  slug?: string | undefined;
1146
1126
  }, {
1147
1127
  type: string;
1148
- id: string;
1149
1128
  name: string;
1129
+ id: string;
1150
1130
  project: {
1151
1131
  id: string;
1152
1132
  url: string;
@@ -1157,16 +1137,11 @@ declare const EntryRestorePayloadSchema: z.ZodIntersection<z.ZodObject<{
1157
1137
  name?: string | undefined;
1158
1138
  email?: string | undefined;
1159
1139
  };
1140
+ state: number;
1160
1141
  editionId?: string | undefined;
1161
1142
  slug?: string | undefined;
1162
- }>, z.ZodObject<{
1163
- state: z.ZodNumber;
1164
- }, "strip", z.ZodTypeAny, {
1165
- state: number;
1166
- }, {
1167
- state: number;
1168
- }>>;
1169
- declare const EntryPayloadSchema: z.ZodIntersection<z.ZodObject<{
1143
+ }>;
1144
+ declare const EntryPayloadSchema: z.ZodObject<z.objectUtil.extendShape<{
1170
1145
  id: z.ZodString;
1171
1146
  editionId: z.ZodOptional<z.ZodString>;
1172
1147
  slug: z.ZodOptional<z.ZodString>;
@@ -1198,10 +1173,15 @@ declare const EntryPayloadSchema: z.ZodIntersection<z.ZodObject<{
1198
1173
  name?: string | undefined;
1199
1174
  email?: string | undefined;
1200
1175
  }>;
1201
- }, "strip", z.ZodTypeAny, {
1176
+ }, {
1177
+ state: z.ZodNumber;
1178
+ edit_url: z.ZodString;
1179
+ api_url: z.ZodString;
1180
+ edge_url: z.ZodString;
1181
+ }>, "strip", z.ZodTypeAny, {
1202
1182
  type: string;
1203
- id: string;
1204
1183
  name: string;
1184
+ id: string;
1205
1185
  project: {
1206
1186
  id: string;
1207
1187
  url: string;
@@ -1212,12 +1192,16 @@ declare const EntryPayloadSchema: z.ZodIntersection<z.ZodObject<{
1212
1192
  name?: string | undefined;
1213
1193
  email?: string | undefined;
1214
1194
  };
1195
+ state: number;
1196
+ edit_url: string;
1197
+ api_url: string;
1198
+ edge_url: string;
1215
1199
  editionId?: string | undefined;
1216
1200
  slug?: string | undefined;
1217
1201
  }, {
1218
1202
  type: string;
1219
- id: string;
1220
1203
  name: string;
1204
+ id: string;
1221
1205
  project: {
1222
1206
  id: string;
1223
1207
  url: string;
@@ -1228,24 +1212,13 @@ declare const EntryPayloadSchema: z.ZodIntersection<z.ZodObject<{
1228
1212
  name?: string | undefined;
1229
1213
  email?: string | undefined;
1230
1214
  };
1231
- editionId?: string | undefined;
1232
- slug?: string | undefined;
1233
- }>, z.ZodObject<{
1234
- state: z.ZodNumber;
1235
- edit_url: z.ZodString;
1236
- api_url: z.ZodString;
1237
- edge_url: z.ZodString;
1238
- }, "strip", z.ZodTypeAny, {
1239
- state: number;
1240
- edit_url: string;
1241
- api_url: string;
1242
- edge_url: string;
1243
- }, {
1244
1215
  state: number;
1245
1216
  edit_url: string;
1246
1217
  api_url: string;
1247
1218
  edge_url: string;
1248
- }>>;
1219
+ editionId?: string | undefined;
1220
+ slug?: string | undefined;
1221
+ }>;
1249
1222
  declare const ReleaseEntryPayloadSchema: z.ZodObject<{
1250
1223
  release: z.ZodObject<{
1251
1224
  id: z.ZodString;
@@ -1271,7 +1244,7 @@ declare const ReleaseEntryPayloadSchema: z.ZodObject<{
1271
1244
  type EntryPayload = z.infer<typeof EntryPayloadSchema>;
1272
1245
  type ReleaseEntryPayload = z.infer<typeof ReleaseEntryPayloadSchema>;
1273
1246
 
1274
- declare const EntryChangedDefinition: Definition<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
1247
+ declare const EntryChangedDefinition: Definition<z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
1275
1248
  id: z.ZodString;
1276
1249
  editionId: z.ZodOptional<z.ZodString>;
1277
1250
  slug: z.ZodOptional<z.ZodString>;
@@ -1303,10 +1276,26 @@ declare const EntryChangedDefinition: Definition<z.ZodIntersection<z.ZodIntersec
1303
1276
  name?: string | undefined;
1304
1277
  email?: string | undefined;
1305
1278
  }>;
1306
- }, "strip", z.ZodTypeAny, {
1279
+ }, {
1280
+ state: z.ZodNumber;
1281
+ edit_url: z.ZodString;
1282
+ api_url: z.ZodString;
1283
+ edge_url: z.ZodString;
1284
+ }>, {
1285
+ trigger: z.ZodOptional<z.ZodObject<{
1286
+ type: z.ZodEnum<["release"]>;
1287
+ id: z.ZodString;
1288
+ }, "strip", z.ZodTypeAny, {
1289
+ type: "release";
1290
+ id: string;
1291
+ }, {
1292
+ type: "release";
1293
+ id: string;
1294
+ }>>;
1295
+ }>, "strip", z.ZodTypeAny, {
1307
1296
  type: string;
1308
- id: string;
1309
1297
  name: string;
1298
+ id: string;
1310
1299
  project: {
1311
1300
  id: string;
1312
1301
  url: string;
@@ -1317,12 +1306,20 @@ declare const EntryChangedDefinition: Definition<z.ZodIntersection<z.ZodIntersec
1317
1306
  name?: string | undefined;
1318
1307
  email?: string | undefined;
1319
1308
  };
1309
+ state: number;
1310
+ edit_url: string;
1311
+ api_url: string;
1312
+ edge_url: string;
1320
1313
  editionId?: string | undefined;
1321
1314
  slug?: string | undefined;
1315
+ trigger?: {
1316
+ type: "release";
1317
+ id: string;
1318
+ } | undefined;
1322
1319
  }, {
1323
1320
  type: string;
1324
- id: string;
1325
1321
  name: string;
1322
+ id: string;
1326
1323
  project: {
1327
1324
  id: string;
1328
1325
  url: string;
@@ -1333,49 +1330,21 @@ declare const EntryChangedDefinition: Definition<z.ZodIntersection<z.ZodIntersec
1333
1330
  name?: string | undefined;
1334
1331
  email?: string | undefined;
1335
1332
  };
1336
- editionId?: string | undefined;
1337
- slug?: string | undefined;
1338
- }>, z.ZodObject<{
1339
- state: z.ZodNumber;
1340
- edit_url: z.ZodString;
1341
- api_url: z.ZodString;
1342
- edge_url: z.ZodString;
1343
- }, "strip", z.ZodTypeAny, {
1344
- state: number;
1345
- edit_url: string;
1346
- api_url: string;
1347
- edge_url: string;
1348
- }, {
1349
1333
  state: number;
1350
1334
  edit_url: string;
1351
1335
  api_url: string;
1352
1336
  edge_url: string;
1353
- }>>, z.ZodObject<{
1354
- trigger: z.ZodOptional<z.ZodObject<{
1355
- type: z.ZodEnum<["release"]>;
1356
- id: z.ZodString;
1357
- }, "strip", z.ZodTypeAny, {
1358
- type: "release";
1359
- id: string;
1360
- }, {
1361
- type: "release";
1362
- id: string;
1363
- }>>;
1364
- }, "strip", z.ZodTypeAny, {
1365
- trigger?: {
1366
- type: "release";
1367
- id: string;
1368
- } | undefined;
1369
- }, {
1337
+ editionId?: string | undefined;
1338
+ slug?: string | undefined;
1370
1339
  trigger?: {
1371
1340
  type: "release";
1372
1341
  id: string;
1373
1342
  } | undefined;
1374
- }>>>;
1343
+ }>, "entry.changed">;
1375
1344
  type EntryChangedPayload = z.infer<(typeof EntryChangedDefinition)['schema']>;
1376
- declare const EntryChangedEventName: string;
1345
+ declare const EntryChangedEventName: "entry.changed";
1377
1346
 
1378
- declare const EntryDeletedDefinition: Definition<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
1347
+ declare const EntryDeletedDefinition: Definition<z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
1379
1348
  id: z.ZodString;
1380
1349
  editionId: z.ZodOptional<z.ZodString>;
1381
1350
  slug: z.ZodOptional<z.ZodString>;
@@ -1407,10 +1376,23 @@ declare const EntryDeletedDefinition: Definition<z.ZodIntersection<z.ZodIntersec
1407
1376
  name?: string | undefined;
1408
1377
  email?: string | undefined;
1409
1378
  }>;
1410
- }, "strip", z.ZodTypeAny, {
1379
+ }, {
1380
+ state: z.ZodOptional<z.ZodNumber>;
1381
+ }>, {
1382
+ trigger: z.ZodOptional<z.ZodObject<{
1383
+ type: z.ZodEnum<["release"]>;
1384
+ id: z.ZodString;
1385
+ }, "strip", z.ZodTypeAny, {
1386
+ type: "release";
1387
+ id: string;
1388
+ }, {
1389
+ type: "release";
1390
+ id: string;
1391
+ }>>;
1392
+ }>, "strip", z.ZodTypeAny, {
1411
1393
  type: string;
1412
- id: string;
1413
1394
  name: string;
1395
+ id: string;
1414
1396
  project: {
1415
1397
  id: string;
1416
1398
  url: string;
@@ -1423,10 +1405,15 @@ declare const EntryDeletedDefinition: Definition<z.ZodIntersection<z.ZodIntersec
1423
1405
  };
1424
1406
  editionId?: string | undefined;
1425
1407
  slug?: string | undefined;
1408
+ trigger?: {
1409
+ type: "release";
1410
+ id: string;
1411
+ } | undefined;
1412
+ state?: number | undefined;
1426
1413
  }, {
1427
1414
  type: string;
1428
- id: string;
1429
1415
  name: string;
1416
+ id: string;
1430
1417
  project: {
1431
1418
  id: string;
1432
1419
  url: string;
@@ -1439,38 +1426,16 @@ declare const EntryDeletedDefinition: Definition<z.ZodIntersection<z.ZodIntersec
1439
1426
  };
1440
1427
  editionId?: string | undefined;
1441
1428
  slug?: string | undefined;
1442
- }>, z.ZodObject<{
1443
- state: z.ZodOptional<z.ZodNumber>;
1444
- }, "strip", z.ZodTypeAny, {
1445
- state?: number | undefined;
1446
- }, {
1447
- state?: number | undefined;
1448
- }>>, z.ZodObject<{
1449
- trigger: z.ZodOptional<z.ZodObject<{
1450
- type: z.ZodEnum<["release"]>;
1451
- id: z.ZodString;
1452
- }, "strip", z.ZodTypeAny, {
1453
- type: "release";
1454
- id: string;
1455
- }, {
1456
- type: "release";
1457
- id: string;
1458
- }>>;
1459
- }, "strip", z.ZodTypeAny, {
1460
- trigger?: {
1461
- type: "release";
1462
- id: string;
1463
- } | undefined;
1464
- }, {
1465
1429
  trigger?: {
1466
1430
  type: "release";
1467
1431
  id: string;
1468
1432
  } | undefined;
1469
- }>>>;
1433
+ state?: number | undefined;
1434
+ }>, "entry.deleted">;
1470
1435
  type EntryDeletedPayload = z.infer<(typeof EntryDeletedDefinition)['schema']>;
1471
- declare const EntryDeletedEventName: string;
1436
+ declare const EntryDeletedEventName: "entry.deleted";
1472
1437
 
1473
- declare const EntryPublishedDefinition: Definition<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
1438
+ declare const EntryPublishedDefinition: Definition<z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
1474
1439
  id: z.ZodString;
1475
1440
  editionId: z.ZodOptional<z.ZodString>;
1476
1441
  slug: z.ZodOptional<z.ZodString>;
@@ -1502,10 +1467,26 @@ declare const EntryPublishedDefinition: Definition<z.ZodIntersection<z.ZodInters
1502
1467
  name?: string | undefined;
1503
1468
  email?: string | undefined;
1504
1469
  }>;
1505
- }, "strip", z.ZodTypeAny, {
1470
+ }, {
1471
+ state: z.ZodNumber;
1472
+ edit_url: z.ZodString;
1473
+ api_url: z.ZodString;
1474
+ edge_url: z.ZodString;
1475
+ }>, {
1476
+ trigger: z.ZodOptional<z.ZodObject<{
1477
+ type: z.ZodEnum<["release"]>;
1478
+ id: z.ZodString;
1479
+ }, "strip", z.ZodTypeAny, {
1480
+ type: "release";
1481
+ id: string;
1482
+ }, {
1483
+ type: "release";
1484
+ id: string;
1485
+ }>>;
1486
+ }>, "strip", z.ZodTypeAny, {
1506
1487
  type: string;
1507
- id: string;
1508
1488
  name: string;
1489
+ id: string;
1509
1490
  project: {
1510
1491
  id: string;
1511
1492
  url: string;
@@ -1516,12 +1497,20 @@ declare const EntryPublishedDefinition: Definition<z.ZodIntersection<z.ZodInters
1516
1497
  name?: string | undefined;
1517
1498
  email?: string | undefined;
1518
1499
  };
1500
+ state: number;
1501
+ edit_url: string;
1502
+ api_url: string;
1503
+ edge_url: string;
1519
1504
  editionId?: string | undefined;
1520
1505
  slug?: string | undefined;
1506
+ trigger?: {
1507
+ type: "release";
1508
+ id: string;
1509
+ } | undefined;
1521
1510
  }, {
1522
1511
  type: string;
1523
- id: string;
1524
1512
  name: string;
1513
+ id: string;
1525
1514
  project: {
1526
1515
  id: string;
1527
1516
  url: string;
@@ -1532,49 +1521,21 @@ declare const EntryPublishedDefinition: Definition<z.ZodIntersection<z.ZodInters
1532
1521
  name?: string | undefined;
1533
1522
  email?: string | undefined;
1534
1523
  };
1535
- editionId?: string | undefined;
1536
- slug?: string | undefined;
1537
- }>, z.ZodObject<{
1538
- state: z.ZodNumber;
1539
- edit_url: z.ZodString;
1540
- api_url: z.ZodString;
1541
- edge_url: z.ZodString;
1542
- }, "strip", z.ZodTypeAny, {
1543
- state: number;
1544
- edit_url: string;
1545
- api_url: string;
1546
- edge_url: string;
1547
- }, {
1548
1524
  state: number;
1549
1525
  edit_url: string;
1550
1526
  api_url: string;
1551
1527
  edge_url: string;
1552
- }>>, z.ZodObject<{
1553
- trigger: z.ZodOptional<z.ZodObject<{
1554
- type: z.ZodEnum<["release"]>;
1555
- id: z.ZodString;
1556
- }, "strip", z.ZodTypeAny, {
1557
- type: "release";
1558
- id: string;
1559
- }, {
1560
- type: "release";
1561
- id: string;
1562
- }>>;
1563
- }, "strip", z.ZodTypeAny, {
1564
- trigger?: {
1565
- type: "release";
1566
- id: string;
1567
- } | undefined;
1568
- }, {
1528
+ editionId?: string | undefined;
1529
+ slug?: string | undefined;
1569
1530
  trigger?: {
1570
1531
  type: "release";
1571
1532
  id: string;
1572
1533
  } | undefined;
1573
- }>>>;
1534
+ }>, "entry.published">;
1574
1535
  type EntryPublishedPayload = z.infer<(typeof EntryPublishedDefinition)['schema']>;
1575
- declare const EntryPublishedEventName: string;
1536
+ declare const EntryPublishedEventName: "entry.published";
1576
1537
 
1577
- declare const EntryReleaseChangedDefinition: Definition<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
1538
+ declare const EntryReleaseChangedDefinition: Definition<z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
1578
1539
  id: z.ZodString;
1579
1540
  editionId: z.ZodOptional<z.ZodString>;
1580
1541
  slug: z.ZodOptional<z.ZodString>;
@@ -1606,26 +1567,26 @@ declare const EntryReleaseChangedDefinition: Definition<z.ZodIntersection<z.ZodI
1606
1567
  name?: string | undefined;
1607
1568
  email?: string | undefined;
1608
1569
  }>;
1609
- }, "strip", z.ZodTypeAny, {
1610
- type: string;
1611
- id: string;
1612
- name: string;
1613
- project: {
1570
+ }, {
1571
+ state: z.ZodNumber;
1572
+ edit_url: z.ZodString;
1573
+ api_url: z.ZodString;
1574
+ edge_url: z.ZodString;
1575
+ }>, {
1576
+ release: z.ZodObject<{
1577
+ id: z.ZodString;
1578
+ url: z.ZodString;
1579
+ }, "strip", z.ZodTypeAny, {
1614
1580
  id: string;
1615
1581
  url: string;
1616
- };
1617
- initiator: {
1582
+ }, {
1618
1583
  id: string;
1619
- is_api_key: boolean;
1620
- name?: string | undefined;
1621
- email?: string | undefined;
1622
- };
1623
- editionId?: string | undefined;
1624
- slug?: string | undefined;
1625
- }, {
1584
+ url: string;
1585
+ }>;
1586
+ }>, "strip", z.ZodTypeAny, {
1626
1587
  type: string;
1627
- id: string;
1628
1588
  name: string;
1589
+ id: string;
1629
1590
  project: {
1630
1591
  id: string;
1631
1592
  url: string;
@@ -1636,49 +1597,45 @@ declare const EntryReleaseChangedDefinition: Definition<z.ZodIntersection<z.ZodI
1636
1597
  name?: string | undefined;
1637
1598
  email?: string | undefined;
1638
1599
  };
1639
- editionId?: string | undefined;
1640
- slug?: string | undefined;
1641
- }>, z.ZodObject<{
1642
- state: z.ZodNumber;
1643
- edit_url: z.ZodString;
1644
- api_url: z.ZodString;
1645
- edge_url: z.ZodString;
1646
- }, "strip", z.ZodTypeAny, {
1600
+ release: {
1601
+ id: string;
1602
+ url: string;
1603
+ };
1647
1604
  state: number;
1648
1605
  edit_url: string;
1649
1606
  api_url: string;
1650
1607
  edge_url: string;
1608
+ editionId?: string | undefined;
1609
+ slug?: string | undefined;
1651
1610
  }, {
1652
- state: number;
1653
- edit_url: string;
1654
- api_url: string;
1655
- edge_url: string;
1656
- }>>, z.ZodObject<{
1657
- release: z.ZodObject<{
1658
- id: z.ZodString;
1659
- url: z.ZodString;
1660
- }, "strip", z.ZodTypeAny, {
1661
- id: string;
1662
- url: string;
1663
- }, {
1611
+ type: string;
1612
+ name: string;
1613
+ id: string;
1614
+ project: {
1664
1615
  id: string;
1665
1616
  url: string;
1666
- }>;
1667
- }, "strip", z.ZodTypeAny, {
1668
- release: {
1617
+ };
1618
+ initiator: {
1669
1619
  id: string;
1670
- url: string;
1620
+ is_api_key: boolean;
1621
+ name?: string | undefined;
1622
+ email?: string | undefined;
1671
1623
  };
1672
- }, {
1673
1624
  release: {
1674
1625
  id: string;
1675
1626
  url: string;
1676
1627
  };
1677
- }>>>;
1628
+ state: number;
1629
+ edit_url: string;
1630
+ api_url: string;
1631
+ edge_url: string;
1632
+ editionId?: string | undefined;
1633
+ slug?: string | undefined;
1634
+ }>, "entry.release.changed">;
1678
1635
  type EntryReleaseChangedPayload = z.infer<(typeof EntryReleaseChangedDefinition)['schema']>;
1679
- declare const EntryReleaseChangedEventName: string;
1636
+ declare const EntryReleaseChangedEventName: "entry.release.changed";
1680
1637
 
1681
- declare const EntryReleaseDeletedDefinition: Definition<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
1638
+ declare const EntryReleaseDeletedDefinition: Definition<z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
1682
1639
  id: z.ZodString;
1683
1640
  editionId: z.ZodOptional<z.ZodString>;
1684
1641
  slug: z.ZodOptional<z.ZodString>;
@@ -1710,10 +1667,23 @@ declare const EntryReleaseDeletedDefinition: Definition<z.ZodIntersection<z.ZodI
1710
1667
  name?: string | undefined;
1711
1668
  email?: string | undefined;
1712
1669
  }>;
1713
- }, "strip", z.ZodTypeAny, {
1670
+ }, {
1671
+ state: z.ZodOptional<z.ZodNumber>;
1672
+ }>, {
1673
+ release: z.ZodObject<{
1674
+ id: z.ZodString;
1675
+ url: z.ZodString;
1676
+ }, "strip", z.ZodTypeAny, {
1677
+ id: string;
1678
+ url: string;
1679
+ }, {
1680
+ id: string;
1681
+ url: string;
1682
+ }>;
1683
+ }>, "strip", z.ZodTypeAny, {
1714
1684
  type: string;
1715
- id: string;
1716
1685
  name: string;
1686
+ id: string;
1717
1687
  project: {
1718
1688
  id: string;
1719
1689
  url: string;
@@ -1724,12 +1694,17 @@ declare const EntryReleaseDeletedDefinition: Definition<z.ZodIntersection<z.ZodI
1724
1694
  name?: string | undefined;
1725
1695
  email?: string | undefined;
1726
1696
  };
1697
+ release: {
1698
+ id: string;
1699
+ url: string;
1700
+ };
1727
1701
  editionId?: string | undefined;
1728
1702
  slug?: string | undefined;
1703
+ state?: number | undefined;
1729
1704
  }, {
1730
1705
  type: string;
1731
- id: string;
1732
1706
  name: string;
1707
+ id: string;
1733
1708
  project: {
1734
1709
  id: string;
1735
1710
  url: string;
@@ -1740,40 +1715,18 @@ declare const EntryReleaseDeletedDefinition: Definition<z.ZodIntersection<z.ZodI
1740
1715
  name?: string | undefined;
1741
1716
  email?: string | undefined;
1742
1717
  };
1743
- editionId?: string | undefined;
1744
- slug?: string | undefined;
1745
- }>, z.ZodObject<{
1746
- state: z.ZodOptional<z.ZodNumber>;
1747
- }, "strip", z.ZodTypeAny, {
1748
- state?: number | undefined;
1749
- }, {
1750
- state?: number | undefined;
1751
- }>>, z.ZodObject<{
1752
- release: z.ZodObject<{
1753
- id: z.ZodString;
1754
- url: z.ZodString;
1755
- }, "strip", z.ZodTypeAny, {
1756
- id: string;
1757
- url: string;
1758
- }, {
1759
- id: string;
1760
- url: string;
1761
- }>;
1762
- }, "strip", z.ZodTypeAny, {
1763
- release: {
1764
- id: string;
1765
- url: string;
1766
- };
1767
- }, {
1768
1718
  release: {
1769
1719
  id: string;
1770
1720
  url: string;
1771
1721
  };
1772
- }>>>;
1722
+ editionId?: string | undefined;
1723
+ slug?: string | undefined;
1724
+ state?: number | undefined;
1725
+ }>, "entry.release.deleted">;
1773
1726
  type EntryReleaseDeletedPayload = z.infer<(typeof EntryReleaseDeletedDefinition)['schema']>;
1774
- declare const EntryReleaseDeletedEventName: string;
1727
+ declare const EntryReleaseDeletedEventName: "entry.release.deleted";
1775
1728
 
1776
- declare const EntryReleasePublishedDefinition: Definition<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
1729
+ declare const EntryReleasePublishedDefinition: Definition<z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
1777
1730
  id: z.ZodString;
1778
1731
  editionId: z.ZodOptional<z.ZodString>;
1779
1732
  slug: z.ZodOptional<z.ZodString>;
@@ -1805,10 +1758,26 @@ declare const EntryReleasePublishedDefinition: Definition<z.ZodIntersection<z.Zo
1805
1758
  name?: string | undefined;
1806
1759
  email?: string | undefined;
1807
1760
  }>;
1808
- }, "strip", z.ZodTypeAny, {
1761
+ }, {
1762
+ state: z.ZodNumber;
1763
+ edit_url: z.ZodString;
1764
+ api_url: z.ZodString;
1765
+ edge_url: z.ZodString;
1766
+ }>, {
1767
+ release: z.ZodObject<{
1768
+ id: z.ZodString;
1769
+ url: z.ZodString;
1770
+ }, "strip", z.ZodTypeAny, {
1771
+ id: string;
1772
+ url: string;
1773
+ }, {
1774
+ id: string;
1775
+ url: string;
1776
+ }>;
1777
+ }>, "strip", z.ZodTypeAny, {
1809
1778
  type: string;
1810
- id: string;
1811
1779
  name: string;
1780
+ id: string;
1812
1781
  project: {
1813
1782
  id: string;
1814
1783
  url: string;
@@ -1819,12 +1788,20 @@ declare const EntryReleasePublishedDefinition: Definition<z.ZodIntersection<z.Zo
1819
1788
  name?: string | undefined;
1820
1789
  email?: string | undefined;
1821
1790
  };
1791
+ release: {
1792
+ id: string;
1793
+ url: string;
1794
+ };
1795
+ state: number;
1796
+ edit_url: string;
1797
+ api_url: string;
1798
+ edge_url: string;
1822
1799
  editionId?: string | undefined;
1823
1800
  slug?: string | undefined;
1824
1801
  }, {
1825
1802
  type: string;
1826
- id: string;
1827
1803
  name: string;
1804
+ id: string;
1828
1805
  project: {
1829
1806
  id: string;
1830
1807
  url: string;
@@ -1835,49 +1812,21 @@ declare const EntryReleasePublishedDefinition: Definition<z.ZodIntersection<z.Zo
1835
1812
  name?: string | undefined;
1836
1813
  email?: string | undefined;
1837
1814
  };
1838
- editionId?: string | undefined;
1839
- slug?: string | undefined;
1840
- }>, z.ZodObject<{
1841
- state: z.ZodNumber;
1842
- edit_url: z.ZodString;
1843
- api_url: z.ZodString;
1844
- edge_url: z.ZodString;
1845
- }, "strip", z.ZodTypeAny, {
1846
- state: number;
1847
- edit_url: string;
1848
- api_url: string;
1849
- edge_url: string;
1850
- }, {
1851
- state: number;
1852
- edit_url: string;
1853
- api_url: string;
1854
- edge_url: string;
1855
- }>>, z.ZodObject<{
1856
- release: z.ZodObject<{
1857
- id: z.ZodString;
1858
- url: z.ZodString;
1859
- }, "strip", z.ZodTypeAny, {
1860
- id: string;
1861
- url: string;
1862
- }, {
1863
- id: string;
1864
- url: string;
1865
- }>;
1866
- }, "strip", z.ZodTypeAny, {
1867
- release: {
1868
- id: string;
1869
- url: string;
1870
- };
1871
- }, {
1872
1815
  release: {
1873
1816
  id: string;
1874
1817
  url: string;
1875
1818
  };
1876
- }>>>;
1819
+ state: number;
1820
+ edit_url: string;
1821
+ api_url: string;
1822
+ edge_url: string;
1823
+ editionId?: string | undefined;
1824
+ slug?: string | undefined;
1825
+ }>, "entry.release.published">;
1877
1826
  type EntryReleasePublishedPayload = z.infer<(typeof EntryReleasePublishedDefinition)['schema']>;
1878
- declare const EntryReleasePublishedEventName: string;
1827
+ declare const EntryReleasePublishedEventName: "entry.release.published";
1879
1828
 
1880
- declare const EntryReleaseRestoredDefinition: Definition<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
1829
+ declare const EntryReleaseRestoredDefinition: Definition<z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
1881
1830
  id: z.ZodString;
1882
1831
  editionId: z.ZodOptional<z.ZodString>;
1883
1832
  slug: z.ZodOptional<z.ZodString>;
@@ -1909,10 +1858,23 @@ declare const EntryReleaseRestoredDefinition: Definition<z.ZodIntersection<z.Zod
1909
1858
  name?: string | undefined;
1910
1859
  email?: string | undefined;
1911
1860
  }>;
1912
- }, "strip", z.ZodTypeAny, {
1861
+ }, {
1862
+ state: z.ZodNumber;
1863
+ }>, {
1864
+ release: z.ZodObject<{
1865
+ id: z.ZodString;
1866
+ url: z.ZodString;
1867
+ }, "strip", z.ZodTypeAny, {
1868
+ id: string;
1869
+ url: string;
1870
+ }, {
1871
+ id: string;
1872
+ url: string;
1873
+ }>;
1874
+ }>, "strip", z.ZodTypeAny, {
1913
1875
  type: string;
1914
- id: string;
1915
1876
  name: string;
1877
+ id: string;
1916
1878
  project: {
1917
1879
  id: string;
1918
1880
  url: string;
@@ -1923,12 +1885,17 @@ declare const EntryReleaseRestoredDefinition: Definition<z.ZodIntersection<z.Zod
1923
1885
  name?: string | undefined;
1924
1886
  email?: string | undefined;
1925
1887
  };
1888
+ release: {
1889
+ id: string;
1890
+ url: string;
1891
+ };
1892
+ state: number;
1926
1893
  editionId?: string | undefined;
1927
1894
  slug?: string | undefined;
1928
1895
  }, {
1929
1896
  type: string;
1930
- id: string;
1931
1897
  name: string;
1898
+ id: string;
1932
1899
  project: {
1933
1900
  id: string;
1934
1901
  url: string;
@@ -1939,38 +1906,16 @@ declare const EntryReleaseRestoredDefinition: Definition<z.ZodIntersection<z.Zod
1939
1906
  name?: string | undefined;
1940
1907
  email?: string | undefined;
1941
1908
  };
1942
- editionId?: string | undefined;
1943
- slug?: string | undefined;
1944
- }>, z.ZodObject<{
1945
- state: z.ZodNumber;
1946
- }, "strip", z.ZodTypeAny, {
1947
- state: number;
1948
- }, {
1949
- state: number;
1950
- }>>, z.ZodObject<{
1951
- release: z.ZodObject<{
1952
- id: z.ZodString;
1953
- url: z.ZodString;
1954
- }, "strip", z.ZodTypeAny, {
1955
- id: string;
1956
- url: string;
1957
- }, {
1958
- id: string;
1959
- url: string;
1960
- }>;
1961
- }, "strip", z.ZodTypeAny, {
1962
- release: {
1963
- id: string;
1964
- url: string;
1965
- };
1966
- }, {
1967
1909
  release: {
1968
1910
  id: string;
1969
1911
  url: string;
1970
1912
  };
1971
- }>>>;
1913
+ state: number;
1914
+ editionId?: string | undefined;
1915
+ slug?: string | undefined;
1916
+ }>, "entry.release.restored">;
1972
1917
  type EntryReleaseRestoredPayload = z.infer<(typeof EntryReleaseRestoredDefinition)['schema']>;
1973
- declare const EntryReleaseRestoredEventName: string;
1918
+ declare const EntryReleaseRestoredEventName: "entry.release.restored";
1974
1919
 
1975
1920
  declare const ManifestPublishedDefinition: Definition<z.ZodObject<{
1976
1921
  timestamp: z.ZodString;
@@ -1978,27 +1923,27 @@ declare const ManifestPublishedDefinition: Definition<z.ZodObject<{
1978
1923
  id: z.ZodString;
1979
1924
  name: z.ZodString;
1980
1925
  }, "strip", z.ZodTypeAny, {
1981
- id: string;
1982
1926
  name: string;
1983
- }, {
1984
1927
  id: string;
1928
+ }, {
1985
1929
  name: string;
1930
+ id: string;
1986
1931
  }>;
1987
1932
  }, "strip", z.ZodTypeAny, {
1988
1933
  timestamp: string;
1989
1934
  site: {
1990
- id: string;
1991
1935
  name: string;
1936
+ id: string;
1992
1937
  };
1993
1938
  }, {
1994
1939
  timestamp: string;
1995
1940
  site: {
1996
- id: string;
1997
1941
  name: string;
1942
+ id: string;
1998
1943
  };
1999
- }>>;
1944
+ }>, "manifest.published">;
2000
1945
  type ManifestPublishedPayload = z.infer<(typeof ManifestPublishedDefinition)['schema']>;
2001
- declare const ManifestPublishedEventName: string;
1946
+ declare const ManifestPublishedEventName: "manifest.published";
2002
1947
 
2003
1948
  declare const ProjectMapDeleteDefinition: Definition<z.ZodObject<{
2004
1949
  id: z.ZodString;
@@ -2012,9 +1957,9 @@ declare const ProjectMapDeleteDefinition: Definition<z.ZodObject<{
2012
1957
  id: string;
2013
1958
  project_id: string;
2014
1959
  base_url?: string | undefined;
2015
- }>>;
1960
+ }>, "projectmap.delete">;
2016
1961
  type ProjectMapDeletedPayload = z.infer<(typeof ProjectMapDeleteDefinition)['schema']>;
2017
- declare const ProjectMapDeletedEventName: string;
1962
+ declare const ProjectMapDeletedEventName: "projectmap.delete";
2018
1963
 
2019
1964
  declare const ProjectMapNodeDeleteDefinition: Definition<z.ZodObject<{
2020
1965
  project_id: z.ZodString;
@@ -2054,8 +1999,8 @@ declare const ProjectMapNodeDeleteDefinition: Definition<z.ZodObject<{
2054
1999
  }>;
2055
2000
  }, "strip", z.ZodTypeAny, {
2056
2001
  path: string;
2057
- id: string;
2058
2002
  name: string;
2003
+ id: string;
2059
2004
  initiator: {
2060
2005
  id: string;
2061
2006
  is_api_key: boolean;
@@ -2072,8 +2017,8 @@ declare const ProjectMapNodeDeleteDefinition: Definition<z.ZodObject<{
2072
2017
  }> | undefined;
2073
2018
  }, {
2074
2019
  path: string;
2075
- id: string;
2076
2020
  name: string;
2021
+ id: string;
2077
2022
  initiator: {
2078
2023
  id: string;
2079
2024
  is_api_key: boolean;
@@ -2088,9 +2033,9 @@ declare const ProjectMapNodeDeleteDefinition: Definition<z.ZodObject<{
2088
2033
  name: string;
2089
2034
  inherited: boolean;
2090
2035
  }> | undefined;
2091
- }>>;
2036
+ }>, "projectmap.node.delete">;
2092
2037
  type ProjectMapNodeDeletedPayload = z.infer<(typeof ProjectMapNodeDeleteDefinition)['schema']>;
2093
- declare const ProjectMapNodeDeletedEventName: string;
2038
+ declare const ProjectMapNodeDeletedEventName: "projectmap.node.delete";
2094
2039
 
2095
2040
  declare const ProjectMapNodeInsertDefinition: Definition<z.ZodObject<{
2096
2041
  id: z.ZodString;
@@ -2130,8 +2075,8 @@ declare const ProjectMapNodeInsertDefinition: Definition<z.ZodObject<{
2130
2075
  }>;
2131
2076
  }, "strip", z.ZodTypeAny, {
2132
2077
  path: string;
2133
- id: string;
2134
2078
  name: string;
2079
+ id: string;
2135
2080
  initiator: {
2136
2081
  id: string;
2137
2082
  is_api_key: boolean;
@@ -2148,8 +2093,8 @@ declare const ProjectMapNodeInsertDefinition: Definition<z.ZodObject<{
2148
2093
  }> | undefined;
2149
2094
  }, {
2150
2095
  path: string;
2151
- id: string;
2152
2096
  name: string;
2097
+ id: string;
2153
2098
  initiator: {
2154
2099
  id: string;
2155
2100
  is_api_key: boolean;
@@ -2164,9 +2109,9 @@ declare const ProjectMapNodeInsertDefinition: Definition<z.ZodObject<{
2164
2109
  name: string;
2165
2110
  inherited: boolean;
2166
2111
  }> | undefined;
2167
- }>>;
2112
+ }>, "projectmap.node.insert">;
2168
2113
  type ProjectMapNodeInsertedPayload = z.infer<(typeof ProjectMapNodeInsertDefinition)['schema']>;
2169
- declare const ProjectMapNodeInsertedEventName: string;
2114
+ declare const ProjectMapNodeInsertedEventName: "projectmap.node.insert";
2170
2115
 
2171
2116
  declare const ProjectMapNodeUpdateDefinition: Definition<z.ZodObject<{
2172
2117
  id: z.ZodString;
@@ -2210,8 +2155,8 @@ declare const ProjectMapNodeUpdateDefinition: Definition<z.ZodObject<{
2210
2155
  }>;
2211
2156
  }, "strip", z.ZodTypeAny, {
2212
2157
  path: string;
2213
- id: string;
2214
2158
  name: string;
2159
+ id: string;
2215
2160
  initiator: {
2216
2161
  id: string;
2217
2162
  is_api_key: boolean;
@@ -2230,8 +2175,8 @@ declare const ProjectMapNodeUpdateDefinition: Definition<z.ZodObject<{
2230
2175
  }> | undefined;
2231
2176
  }, {
2232
2177
  path: string;
2233
- id: string;
2234
2178
  name: string;
2179
+ id: string;
2235
2180
  initiator: {
2236
2181
  id: string;
2237
2182
  is_api_key: boolean;
@@ -2248,9 +2193,9 @@ declare const ProjectMapNodeUpdateDefinition: Definition<z.ZodObject<{
2248
2193
  inherited: boolean;
2249
2194
  previous_path: string;
2250
2195
  }> | undefined;
2251
- }>>;
2196
+ }>, "projectmap.node.update">;
2252
2197
  type ProjectMapNodeUpdatedPayload = z.infer<(typeof ProjectMapNodeUpdateDefinition)['schema']>;
2253
- declare const ProjectMapNodeUpdatedEventName: string;
2198
+ declare const ProjectMapNodeUpdatedEventName: "projectmap.node.update";
2254
2199
 
2255
2200
  declare const ProjectMapUpdateDefinition: Definition<z.ZodObject<{
2256
2201
  id: z.ZodString;
@@ -2264,9 +2209,9 @@ declare const ProjectMapUpdateDefinition: Definition<z.ZodObject<{
2264
2209
  id: string;
2265
2210
  project_id: string;
2266
2211
  base_url?: string | undefined;
2267
- }>>;
2212
+ }>, "projectmap.update">;
2268
2213
  type ProjectMapUpdatedPayload = z.infer<(typeof ProjectMapUpdateDefinition)['schema']>;
2269
- declare const ProjectMapUpdatedEventName: string;
2214
+ declare const ProjectMapUpdatedEventName: "projectmap.update";
2270
2215
 
2271
2216
  declare const RedirectDeleteDefinition: Definition<z.ZodObject<{
2272
2217
  project_id: z.ZodString;
@@ -2314,9 +2259,9 @@ declare const RedirectDeleteDefinition: Definition<z.ZodObject<{
2314
2259
  source_url: string;
2315
2260
  target_url: string;
2316
2261
  target_status_code: number;
2317
- }>>;
2262
+ }>, "redirect.delete">;
2318
2263
  type RedirectDeletedPayload = z.infer<(typeof RedirectDeleteDefinition)['schema']>;
2319
- declare const RedirectDeletedEventName: string;
2264
+ declare const RedirectDeletedEventName: "redirect.delete";
2320
2265
 
2321
2266
  declare const RedirectInsertDefinition: Definition<z.ZodObject<{
2322
2267
  project_id: z.ZodString;
@@ -2364,9 +2309,9 @@ declare const RedirectInsertDefinition: Definition<z.ZodObject<{
2364
2309
  source_url: string;
2365
2310
  target_url: string;
2366
2311
  target_status_code: number;
2367
- }>>;
2312
+ }>, "redirect.insert">;
2368
2313
  type RedirectInsertedPayload = z.infer<(typeof RedirectInsertDefinition)['schema']>;
2369
- declare const RedirectInsertedEventName: string;
2314
+ declare const RedirectInsertedEventName: "redirect.insert";
2370
2315
 
2371
2316
  declare const RedirectUpdateDefinition: Definition<z.ZodObject<{
2372
2317
  project_id: z.ZodString;
@@ -2414,9 +2359,9 @@ declare const RedirectUpdateDefinition: Definition<z.ZodObject<{
2414
2359
  source_url: string;
2415
2360
  target_url: string;
2416
2361
  target_status_code: number;
2417
- }>>;
2362
+ }>, "redirect.update">;
2418
2363
  type RedirectUpdatedPayload = z.infer<(typeof RedirectUpdateDefinition)['schema']>;
2419
- declare const RedirectUpdatedEventName: string;
2364
+ declare const RedirectUpdatedEventName: "redirect.update";
2420
2365
 
2421
2366
  declare const ReleasePayloadSchema: z.ZodObject<{
2422
2367
  id: z.ZodString;
@@ -2437,8 +2382,8 @@ declare const ReleasePayloadSchema: z.ZodObject<{
2437
2382
  edit_url: z.ZodString;
2438
2383
  api_url: z.ZodString;
2439
2384
  }, "strip", z.ZodTypeAny, {
2440
- id: string;
2441
2385
  name: string;
2386
+ id: string;
2442
2387
  project: {
2443
2388
  id: string;
2444
2389
  url: string;
@@ -2449,8 +2394,8 @@ declare const ReleasePayloadSchema: z.ZodObject<{
2449
2394
  autoLaunchSchedule?: number | undefined;
2450
2395
  autoLaunchScheduleTimeZone?: string | undefined;
2451
2396
  }, {
2452
- id: string;
2453
2397
  name: string;
2398
+ id: string;
2454
2399
  project: {
2455
2400
  id: string;
2456
2401
  url: string;
@@ -2482,8 +2427,8 @@ declare const ReleaseChangedDefinition: Definition<z.ZodObject<{
2482
2427
  edit_url: z.ZodString;
2483
2428
  api_url: z.ZodString;
2484
2429
  }, "strip", z.ZodTypeAny, {
2485
- id: string;
2486
2430
  name: string;
2431
+ id: string;
2487
2432
  project: {
2488
2433
  id: string;
2489
2434
  url: string;
@@ -2494,8 +2439,8 @@ declare const ReleaseChangedDefinition: Definition<z.ZodObject<{
2494
2439
  autoLaunchSchedule?: number | undefined;
2495
2440
  autoLaunchScheduleTimeZone?: string | undefined;
2496
2441
  }, {
2497
- id: string;
2498
2442
  name: string;
2443
+ id: string;
2499
2444
  project: {
2500
2445
  id: string;
2501
2446
  url: string;
@@ -2505,9 +2450,9 @@ declare const ReleaseChangedDefinition: Definition<z.ZodObject<{
2505
2450
  api_url: string;
2506
2451
  autoLaunchSchedule?: number | undefined;
2507
2452
  autoLaunchScheduleTimeZone?: string | undefined;
2508
- }>>;
2453
+ }>, "release.changed">;
2509
2454
  type ReleaseChangedPayload = z.infer<(typeof ReleaseChangedDefinition)['schema']>;
2510
- declare const ReleaseChangedEventName: string;
2455
+ declare const ReleaseChangedEventName: "release.changed";
2511
2456
 
2512
2457
  declare const ReleaseDeletedDefinition: Definition<z.ZodObject<Omit<{
2513
2458
  id: z.ZodString;
@@ -2528,8 +2473,8 @@ declare const ReleaseDeletedDefinition: Definition<z.ZodObject<Omit<{
2528
2473
  edit_url: z.ZodString;
2529
2474
  api_url: z.ZodString;
2530
2475
  }, "edit_url" | "api_url">, "strip", z.ZodTypeAny, {
2531
- id: string;
2532
2476
  name: string;
2477
+ id: string;
2533
2478
  project: {
2534
2479
  id: string;
2535
2480
  url: string;
@@ -2538,8 +2483,8 @@ declare const ReleaseDeletedDefinition: Definition<z.ZodObject<Omit<{
2538
2483
  autoLaunchSchedule?: number | undefined;
2539
2484
  autoLaunchScheduleTimeZone?: string | undefined;
2540
2485
  }, {
2541
- id: string;
2542
2486
  name: string;
2487
+ id: string;
2543
2488
  project: {
2544
2489
  id: string;
2545
2490
  url: string;
@@ -2547,9 +2492,9 @@ declare const ReleaseDeletedDefinition: Definition<z.ZodObject<Omit<{
2547
2492
  state: "open" | "locked" | "queued" | "launching" | "launched" | "deleting";
2548
2493
  autoLaunchSchedule?: number | undefined;
2549
2494
  autoLaunchScheduleTimeZone?: string | undefined;
2550
- }>>;
2495
+ }>, "release.deleted">;
2551
2496
  type ReleaseDeletedPayload = z.infer<(typeof ReleaseDeletedDefinition)['schema']>;
2552
- declare const ReleaseDeletedEventName: string;
2497
+ declare const ReleaseDeletedEventName: "release.deleted";
2553
2498
 
2554
2499
  declare const ReleaseLaunchStartedDefinition: Definition<z.ZodObject<{
2555
2500
  id: z.ZodString;
@@ -2570,8 +2515,8 @@ declare const ReleaseLaunchStartedDefinition: Definition<z.ZodObject<{
2570
2515
  edit_url: z.ZodString;
2571
2516
  api_url: z.ZodString;
2572
2517
  }, "strip", z.ZodTypeAny, {
2573
- id: string;
2574
2518
  name: string;
2519
+ id: string;
2575
2520
  project: {
2576
2521
  id: string;
2577
2522
  url: string;
@@ -2582,8 +2527,8 @@ declare const ReleaseLaunchStartedDefinition: Definition<z.ZodObject<{
2582
2527
  autoLaunchSchedule?: number | undefined;
2583
2528
  autoLaunchScheduleTimeZone?: string | undefined;
2584
2529
  }, {
2585
- id: string;
2586
2530
  name: string;
2531
+ id: string;
2587
2532
  project: {
2588
2533
  id: string;
2589
2534
  url: string;
@@ -2593,9 +2538,9 @@ declare const ReleaseLaunchStartedDefinition: Definition<z.ZodObject<{
2593
2538
  api_url: string;
2594
2539
  autoLaunchSchedule?: number | undefined;
2595
2540
  autoLaunchScheduleTimeZone?: string | undefined;
2596
- }>>;
2541
+ }>, "release.launch_started">;
2597
2542
  type ReleaseLaunchStartedPayload = z.infer<(typeof ReleaseLaunchStartedDefinition)['schema']>;
2598
- declare const ReleaseLaunchStartedEventName: string;
2543
+ declare const ReleaseLaunchStartedEventName: "release.launch_started";
2599
2544
 
2600
2545
  declare const ReleaseLaunchedDefinition: Definition<z.ZodObject<{
2601
2546
  id: z.ZodString;
@@ -2616,8 +2561,8 @@ declare const ReleaseLaunchedDefinition: Definition<z.ZodObject<{
2616
2561
  edit_url: z.ZodString;
2617
2562
  api_url: z.ZodString;
2618
2563
  }, "strip", z.ZodTypeAny, {
2619
- id: string;
2620
2564
  name: string;
2565
+ id: string;
2621
2566
  project: {
2622
2567
  id: string;
2623
2568
  url: string;
@@ -2628,8 +2573,8 @@ declare const ReleaseLaunchedDefinition: Definition<z.ZodObject<{
2628
2573
  autoLaunchSchedule?: number | undefined;
2629
2574
  autoLaunchScheduleTimeZone?: string | undefined;
2630
2575
  }, {
2631
- id: string;
2632
2576
  name: string;
2577
+ id: string;
2633
2578
  project: {
2634
2579
  id: string;
2635
2580
  url: string;
@@ -2639,31 +2584,31 @@ declare const ReleaseLaunchedDefinition: Definition<z.ZodObject<{
2639
2584
  api_url: string;
2640
2585
  autoLaunchSchedule?: number | undefined;
2641
2586
  autoLaunchScheduleTimeZone?: string | undefined;
2642
- }>>;
2587
+ }>, "release.launched">;
2643
2588
  type ReleaseLaunchedPayload = z.infer<(typeof ReleaseLaunchedDefinition)['schema']>;
2644
- declare const ReleaseLaunchedEventName: string;
2589
+ declare const ReleaseLaunchedEventName: "release.launched";
2645
2590
 
2646
- declare const ArchivedReleaseLaunchStartedDefinition: Definition<zod.ZodObject<{
2647
- id: zod.ZodString;
2648
- state: zod.ZodEnum<["open", "locked", "queued", "launching", "launched", "deleting"]>;
2649
- name: zod.ZodString;
2650
- project: zod.ZodObject<{
2651
- id: zod.ZodString;
2652
- url: zod.ZodString;
2653
- }, "strip", zod.ZodTypeAny, {
2591
+ declare const ArchivedReleaseLaunchStartedDefinition: Definition<z.ZodObject<{
2592
+ id: z.ZodString;
2593
+ state: z.ZodEnum<["open", "locked", "queued", "launching", "launched", "deleting"]>;
2594
+ name: z.ZodString;
2595
+ project: z.ZodObject<{
2596
+ id: z.ZodString;
2597
+ url: z.ZodString;
2598
+ }, "strip", z.ZodTypeAny, {
2654
2599
  id: string;
2655
2600
  url: string;
2656
2601
  }, {
2657
2602
  id: string;
2658
2603
  url: string;
2659
2604
  }>;
2660
- autoLaunchSchedule: zod.ZodOptional<zod.ZodNumber>;
2661
- autoLaunchScheduleTimeZone: zod.ZodOptional<zod.ZodString>;
2662
- edit_url: zod.ZodString;
2663
- api_url: zod.ZodString;
2664
- }, "strip", zod.ZodTypeAny, {
2665
- id: string;
2605
+ autoLaunchSchedule: z.ZodOptional<z.ZodNumber>;
2606
+ autoLaunchScheduleTimeZone: z.ZodOptional<z.ZodString>;
2607
+ edit_url: z.ZodString;
2608
+ api_url: z.ZodString;
2609
+ }, "strip", z.ZodTypeAny, {
2666
2610
  name: string;
2611
+ id: string;
2667
2612
  project: {
2668
2613
  id: string;
2669
2614
  url: string;
@@ -2674,8 +2619,8 @@ declare const ArchivedReleaseLaunchStartedDefinition: Definition<zod.ZodObject<{
2674
2619
  autoLaunchSchedule?: number | undefined;
2675
2620
  autoLaunchScheduleTimeZone?: string | undefined;
2676
2621
  }, {
2677
- id: string;
2678
2622
  name: string;
2623
+ id: string;
2679
2624
  project: {
2680
2625
  id: string;
2681
2626
  url: string;
@@ -2685,7 +2630,7 @@ declare const ArchivedReleaseLaunchStartedDefinition: Definition<zod.ZodObject<{
2685
2630
  api_url: string;
2686
2631
  autoLaunchSchedule?: number | undefined;
2687
2632
  autoLaunchScheduleTimeZone?: string | undefined;
2688
- }>>;
2633
+ }>, "release.launchstarted">;
2689
2634
 
2690
2635
  declare const WorkflowReferenceSchema: z.ZodObject<{
2691
2636
  workflowId: z.ZodString;
@@ -2712,15 +2657,15 @@ declare const WorkflowEntitySchema: z.ZodObject<{
2712
2657
  url: z.ZodString;
2713
2658
  }, "strict", z.ZodTypeAny, {
2714
2659
  type: "entry" | "component";
2715
- id: string;
2716
2660
  name: string;
2661
+ id: string;
2717
2662
  url: string;
2718
2663
  editionId?: string | undefined;
2719
2664
  releaseId?: string | undefined;
2720
2665
  }, {
2721
2666
  type: "entry" | "component";
2722
- id: string;
2723
2667
  name: string;
2668
+ id: string;
2724
2669
  url: string;
2725
2670
  editionId?: string | undefined;
2726
2671
  releaseId?: string | undefined;
@@ -2735,15 +2680,15 @@ declare const WorkflowTransitionPayloadSchema: z.ZodObject<{
2735
2680
  url: z.ZodString;
2736
2681
  }, "strict", z.ZodTypeAny, {
2737
2682
  type: "entry" | "component";
2738
- id: string;
2739
2683
  name: string;
2684
+ id: string;
2740
2685
  url: string;
2741
2686
  editionId?: string | undefined;
2742
2687
  releaseId?: string | undefined;
2743
2688
  }, {
2744
2689
  type: "entry" | "component";
2745
- id: string;
2746
2690
  name: string;
2691
+ id: string;
2747
2692
  url: string;
2748
2693
  editionId?: string | undefined;
2749
2694
  releaseId?: string | undefined;
@@ -2821,8 +2766,8 @@ declare const WorkflowTransitionPayloadSchema: z.ZodObject<{
2821
2766
  timestamp: string;
2822
2767
  entity: {
2823
2768
  type: "entry" | "component";
2824
- id: string;
2825
2769
  name: string;
2770
+ id: string;
2826
2771
  url: string;
2827
2772
  editionId?: string | undefined;
2828
2773
  releaseId?: string | undefined;
@@ -2853,8 +2798,8 @@ declare const WorkflowTransitionPayloadSchema: z.ZodObject<{
2853
2798
  timestamp: string;
2854
2799
  entity: {
2855
2800
  type: "entry" | "component";
2856
- id: string;
2857
2801
  name: string;
2802
+ id: string;
2858
2803
  url: string;
2859
2804
  editionId?: string | undefined;
2860
2805
  releaseId?: string | undefined;
@@ -2883,15 +2828,15 @@ declare const WorkflowTransitionDefinition: Definition<z.ZodObject<{
2883
2828
  url: z.ZodString;
2884
2829
  }, "strict", z.ZodTypeAny, {
2885
2830
  type: "entry" | "component";
2886
- id: string;
2887
2831
  name: string;
2832
+ id: string;
2888
2833
  url: string;
2889
2834
  editionId?: string | undefined;
2890
2835
  releaseId?: string | undefined;
2891
2836
  }, {
2892
2837
  type: "entry" | "component";
2893
- id: string;
2894
2838
  name: string;
2839
+ id: string;
2895
2840
  url: string;
2896
2841
  editionId?: string | undefined;
2897
2842
  releaseId?: string | undefined;
@@ -2969,8 +2914,8 @@ declare const WorkflowTransitionDefinition: Definition<z.ZodObject<{
2969
2914
  timestamp: string;
2970
2915
  entity: {
2971
2916
  type: "entry" | "component";
2972
- id: string;
2973
2917
  name: string;
2918
+ id: string;
2974
2919
  url: string;
2975
2920
  editionId?: string | undefined;
2976
2921
  releaseId?: string | undefined;
@@ -3001,8 +2946,8 @@ declare const WorkflowTransitionDefinition: Definition<z.ZodObject<{
3001
2946
  timestamp: string;
3002
2947
  entity: {
3003
2948
  type: "entry" | "component";
3004
- id: string;
3005
2949
  name: string;
2950
+ id: string;
3006
2951
  url: string;
3007
2952
  editionId?: string | undefined;
3008
2953
  releaseId?: string | undefined;
@@ -3019,8 +2964,8 @@ declare const WorkflowTransitionDefinition: Definition<z.ZodObject<{
3019
2964
  stageId: string;
3020
2965
  stageName: string;
3021
2966
  } | undefined;
3022
- }>>;
2967
+ }>, "workflow.transition">;
3023
2968
  type WorkflowTransitionPayload = z.infer<(typeof WorkflowTransitionDefinition)['schema']>;
3024
- declare const WorkflowTransitionEventName: string;
2969
+ declare const WorkflowTransitionEventName: "workflow.transition";
3025
2970
 
3026
- 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, type WebhookInitiator, WorkflowEntitySchema, WorkflowReferenceSchema, WorkflowTransitionDefinition, WorkflowTransitionEventName, type WorkflowTransitionPayload, WorkflowTransitionPayloadSchema, definition, isDefinition, webhookInitiatorSchema };
2971
+ 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, 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, type WebhookInitiator, WorkflowEntitySchema, WorkflowReferenceSchema, WorkflowTransitionDefinition, WorkflowTransitionEventName, type WorkflowTransitionPayload, WorkflowTransitionPayloadSchema, definition, isDefinition, webhookInitiatorSchema };