@uniformdev/webhooks 19.196.1 → 19.198.0
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.mts +879 -137
- package/dist/index.d.ts +879 -137
- package/dist/index.esm.js +328 -195
- package/dist/index.js +330 -197
- package/dist/index.mjs +328 -195
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -6,21 +6,21 @@ declare const CompositionTriggerPayloadSchema: z.ZodObject<{
|
|
|
6
6
|
type: z.ZodEnum<["release"]>;
|
|
7
7
|
id: z.ZodString;
|
|
8
8
|
}, "strip", z.ZodTypeAny, {
|
|
9
|
-
id: string;
|
|
10
9
|
type: "release";
|
|
11
|
-
}, {
|
|
12
10
|
id: string;
|
|
11
|
+
}, {
|
|
13
12
|
type: "release";
|
|
13
|
+
id: string;
|
|
14
14
|
}>>;
|
|
15
15
|
}, "strip", z.ZodTypeAny, {
|
|
16
16
|
trigger?: {
|
|
17
|
-
id: string;
|
|
18
17
|
type: "release";
|
|
18
|
+
id: string;
|
|
19
19
|
} | undefined;
|
|
20
20
|
}, {
|
|
21
21
|
trigger?: {
|
|
22
|
-
id: string;
|
|
23
22
|
type: "release";
|
|
23
|
+
id: string;
|
|
24
24
|
} | undefined;
|
|
25
25
|
}>;
|
|
26
26
|
declare const CompositionDeletePayloadSchema: z.ZodIntersection<z.ZodObject<{
|
|
@@ -39,24 +39,52 @@ declare const CompositionDeletePayloadSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
39
39
|
id: string;
|
|
40
40
|
url: string;
|
|
41
41
|
}>;
|
|
42
|
+
initiator: z.ZodObject<{
|
|
43
|
+
id: z.ZodString;
|
|
44
|
+
name: z.ZodOptional<z.ZodString>;
|
|
45
|
+
email: z.ZodOptional<z.ZodString>;
|
|
46
|
+
is_api_key: z.ZodBoolean;
|
|
47
|
+
}, "strict", z.ZodTypeAny, {
|
|
48
|
+
id: string;
|
|
49
|
+
is_api_key: boolean;
|
|
50
|
+
name?: string | undefined;
|
|
51
|
+
email?: string | undefined;
|
|
52
|
+
}, {
|
|
53
|
+
id: string;
|
|
54
|
+
is_api_key: boolean;
|
|
55
|
+
name?: string | undefined;
|
|
56
|
+
email?: string | undefined;
|
|
57
|
+
}>;
|
|
42
58
|
}, "strip", z.ZodTypeAny, {
|
|
59
|
+
type: string;
|
|
43
60
|
id: string;
|
|
44
61
|
name: string;
|
|
45
|
-
type: string;
|
|
46
62
|
project: {
|
|
47
63
|
id: string;
|
|
48
64
|
url: string;
|
|
49
65
|
};
|
|
66
|
+
initiator: {
|
|
67
|
+
id: string;
|
|
68
|
+
is_api_key: boolean;
|
|
69
|
+
name?: string | undefined;
|
|
70
|
+
email?: string | undefined;
|
|
71
|
+
};
|
|
50
72
|
editionId?: string | undefined;
|
|
51
73
|
slug?: string | undefined;
|
|
52
74
|
}, {
|
|
75
|
+
type: string;
|
|
53
76
|
id: string;
|
|
54
77
|
name: string;
|
|
55
|
-
type: string;
|
|
56
78
|
project: {
|
|
57
79
|
id: string;
|
|
58
80
|
url: string;
|
|
59
81
|
};
|
|
82
|
+
initiator: {
|
|
83
|
+
id: string;
|
|
84
|
+
is_api_key: boolean;
|
|
85
|
+
name?: string | undefined;
|
|
86
|
+
email?: string | undefined;
|
|
87
|
+
};
|
|
60
88
|
editionId?: string | undefined;
|
|
61
89
|
slug?: string | undefined;
|
|
62
90
|
}>, z.ZodObject<{
|
|
@@ -82,24 +110,52 @@ declare const CompositionRestorePayloadSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
82
110
|
id: string;
|
|
83
111
|
url: string;
|
|
84
112
|
}>;
|
|
113
|
+
initiator: z.ZodObject<{
|
|
114
|
+
id: z.ZodString;
|
|
115
|
+
name: z.ZodOptional<z.ZodString>;
|
|
116
|
+
email: z.ZodOptional<z.ZodString>;
|
|
117
|
+
is_api_key: z.ZodBoolean;
|
|
118
|
+
}, "strict", z.ZodTypeAny, {
|
|
119
|
+
id: string;
|
|
120
|
+
is_api_key: boolean;
|
|
121
|
+
name?: string | undefined;
|
|
122
|
+
email?: string | undefined;
|
|
123
|
+
}, {
|
|
124
|
+
id: string;
|
|
125
|
+
is_api_key: boolean;
|
|
126
|
+
name?: string | undefined;
|
|
127
|
+
email?: string | undefined;
|
|
128
|
+
}>;
|
|
85
129
|
}, "strip", z.ZodTypeAny, {
|
|
130
|
+
type: string;
|
|
86
131
|
id: string;
|
|
87
132
|
name: string;
|
|
88
|
-
type: string;
|
|
89
133
|
project: {
|
|
90
134
|
id: string;
|
|
91
135
|
url: string;
|
|
92
136
|
};
|
|
137
|
+
initiator: {
|
|
138
|
+
id: string;
|
|
139
|
+
is_api_key: boolean;
|
|
140
|
+
name?: string | undefined;
|
|
141
|
+
email?: string | undefined;
|
|
142
|
+
};
|
|
93
143
|
editionId?: string | undefined;
|
|
94
144
|
slug?: string | undefined;
|
|
95
145
|
}, {
|
|
146
|
+
type: string;
|
|
96
147
|
id: string;
|
|
97
148
|
name: string;
|
|
98
|
-
type: string;
|
|
99
149
|
project: {
|
|
100
150
|
id: string;
|
|
101
151
|
url: string;
|
|
102
152
|
};
|
|
153
|
+
initiator: {
|
|
154
|
+
id: string;
|
|
155
|
+
is_api_key: boolean;
|
|
156
|
+
name?: string | undefined;
|
|
157
|
+
email?: string | undefined;
|
|
158
|
+
};
|
|
103
159
|
editionId?: string | undefined;
|
|
104
160
|
slug?: string | undefined;
|
|
105
161
|
}>, z.ZodObject<{
|
|
@@ -125,24 +181,52 @@ declare const CompositionPayloadSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
125
181
|
id: string;
|
|
126
182
|
url: string;
|
|
127
183
|
}>;
|
|
184
|
+
initiator: z.ZodObject<{
|
|
185
|
+
id: z.ZodString;
|
|
186
|
+
name: z.ZodOptional<z.ZodString>;
|
|
187
|
+
email: z.ZodOptional<z.ZodString>;
|
|
188
|
+
is_api_key: z.ZodBoolean;
|
|
189
|
+
}, "strict", z.ZodTypeAny, {
|
|
190
|
+
id: string;
|
|
191
|
+
is_api_key: boolean;
|
|
192
|
+
name?: string | undefined;
|
|
193
|
+
email?: string | undefined;
|
|
194
|
+
}, {
|
|
195
|
+
id: string;
|
|
196
|
+
is_api_key: boolean;
|
|
197
|
+
name?: string | undefined;
|
|
198
|
+
email?: string | undefined;
|
|
199
|
+
}>;
|
|
128
200
|
}, "strip", z.ZodTypeAny, {
|
|
201
|
+
type: string;
|
|
129
202
|
id: string;
|
|
130
203
|
name: string;
|
|
131
|
-
type: string;
|
|
132
204
|
project: {
|
|
133
205
|
id: string;
|
|
134
206
|
url: string;
|
|
135
207
|
};
|
|
208
|
+
initiator: {
|
|
209
|
+
id: string;
|
|
210
|
+
is_api_key: boolean;
|
|
211
|
+
name?: string | undefined;
|
|
212
|
+
email?: string | undefined;
|
|
213
|
+
};
|
|
136
214
|
editionId?: string | undefined;
|
|
137
215
|
slug?: string | undefined;
|
|
138
216
|
}, {
|
|
217
|
+
type: string;
|
|
139
218
|
id: string;
|
|
140
219
|
name: string;
|
|
141
|
-
type: string;
|
|
142
220
|
project: {
|
|
143
221
|
id: string;
|
|
144
222
|
url: string;
|
|
145
223
|
};
|
|
224
|
+
initiator: {
|
|
225
|
+
id: string;
|
|
226
|
+
is_api_key: boolean;
|
|
227
|
+
name?: string | undefined;
|
|
228
|
+
email?: string | undefined;
|
|
229
|
+
};
|
|
146
230
|
editionId?: string | undefined;
|
|
147
231
|
slug?: string | undefined;
|
|
148
232
|
}>, z.ZodObject<{
|
|
@@ -199,6 +283,23 @@ type Definition<TSchema extends ZodTypeAny = ZodTypeAny> = DefinitionOptions<TSc
|
|
|
199
283
|
};
|
|
200
284
|
declare const isDefinition: (obj: any) => obj is Definition;
|
|
201
285
|
declare const definition: <TSchema extends ZodTypeAny = z.ZodTypeAny>(options: DefinitionOptions<TSchema>, example: z.infer<TSchema>) => Definition<TSchema>;
|
|
286
|
+
declare const webhookInitiatorSchema: z.ZodObject<{
|
|
287
|
+
id: z.ZodString;
|
|
288
|
+
name: z.ZodOptional<z.ZodString>;
|
|
289
|
+
email: z.ZodOptional<z.ZodString>;
|
|
290
|
+
is_api_key: z.ZodBoolean;
|
|
291
|
+
}, "strict", z.ZodTypeAny, {
|
|
292
|
+
id: string;
|
|
293
|
+
is_api_key: boolean;
|
|
294
|
+
name?: string | undefined;
|
|
295
|
+
email?: string | undefined;
|
|
296
|
+
}, {
|
|
297
|
+
id: string;
|
|
298
|
+
is_api_key: boolean;
|
|
299
|
+
name?: string | undefined;
|
|
300
|
+
email?: string | undefined;
|
|
301
|
+
}>;
|
|
302
|
+
type WebhookInitiator = z.infer<typeof webhookInitiatorSchema>;
|
|
202
303
|
|
|
203
304
|
declare const CompositionChangedDefinition: Definition<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
204
305
|
id: z.ZodString;
|
|
@@ -216,24 +317,52 @@ declare const CompositionChangedDefinition: Definition<z.ZodIntersection<z.ZodIn
|
|
|
216
317
|
id: string;
|
|
217
318
|
url: string;
|
|
218
319
|
}>;
|
|
320
|
+
initiator: z.ZodObject<{
|
|
321
|
+
id: z.ZodString;
|
|
322
|
+
name: z.ZodOptional<z.ZodString>;
|
|
323
|
+
email: z.ZodOptional<z.ZodString>;
|
|
324
|
+
is_api_key: z.ZodBoolean;
|
|
325
|
+
}, "strict", z.ZodTypeAny, {
|
|
326
|
+
id: string;
|
|
327
|
+
is_api_key: boolean;
|
|
328
|
+
name?: string | undefined;
|
|
329
|
+
email?: string | undefined;
|
|
330
|
+
}, {
|
|
331
|
+
id: string;
|
|
332
|
+
is_api_key: boolean;
|
|
333
|
+
name?: string | undefined;
|
|
334
|
+
email?: string | undefined;
|
|
335
|
+
}>;
|
|
219
336
|
}, "strip", z.ZodTypeAny, {
|
|
337
|
+
type: string;
|
|
220
338
|
id: string;
|
|
221
339
|
name: string;
|
|
222
|
-
type: string;
|
|
223
340
|
project: {
|
|
224
341
|
id: string;
|
|
225
342
|
url: string;
|
|
226
343
|
};
|
|
344
|
+
initiator: {
|
|
345
|
+
id: string;
|
|
346
|
+
is_api_key: boolean;
|
|
347
|
+
name?: string | undefined;
|
|
348
|
+
email?: string | undefined;
|
|
349
|
+
};
|
|
227
350
|
editionId?: string | undefined;
|
|
228
351
|
slug?: string | undefined;
|
|
229
352
|
}, {
|
|
353
|
+
type: string;
|
|
230
354
|
id: string;
|
|
231
355
|
name: string;
|
|
232
|
-
type: string;
|
|
233
356
|
project: {
|
|
234
357
|
id: string;
|
|
235
358
|
url: string;
|
|
236
359
|
};
|
|
360
|
+
initiator: {
|
|
361
|
+
id: string;
|
|
362
|
+
is_api_key: boolean;
|
|
363
|
+
name?: string | undefined;
|
|
364
|
+
email?: string | undefined;
|
|
365
|
+
};
|
|
237
366
|
editionId?: string | undefined;
|
|
238
367
|
slug?: string | undefined;
|
|
239
368
|
}>, z.ZodObject<{
|
|
@@ -256,21 +385,21 @@ declare const CompositionChangedDefinition: Definition<z.ZodIntersection<z.ZodIn
|
|
|
256
385
|
type: z.ZodEnum<["release"]>;
|
|
257
386
|
id: z.ZodString;
|
|
258
387
|
}, "strip", z.ZodTypeAny, {
|
|
259
|
-
id: string;
|
|
260
388
|
type: "release";
|
|
261
|
-
}, {
|
|
262
389
|
id: string;
|
|
390
|
+
}, {
|
|
263
391
|
type: "release";
|
|
392
|
+
id: string;
|
|
264
393
|
}>>;
|
|
265
394
|
}, "strip", z.ZodTypeAny, {
|
|
266
395
|
trigger?: {
|
|
267
|
-
id: string;
|
|
268
396
|
type: "release";
|
|
397
|
+
id: string;
|
|
269
398
|
} | undefined;
|
|
270
399
|
}, {
|
|
271
400
|
trigger?: {
|
|
272
|
-
id: string;
|
|
273
401
|
type: "release";
|
|
402
|
+
id: string;
|
|
274
403
|
} | undefined;
|
|
275
404
|
}>>>;
|
|
276
405
|
type CompositionChangedPayload = z.infer<(typeof CompositionChangedDefinition)['schema']>;
|
|
@@ -292,24 +421,52 @@ declare const CompositionDeletedDefinition: Definition<z.ZodIntersection<z.ZodIn
|
|
|
292
421
|
id: string;
|
|
293
422
|
url: string;
|
|
294
423
|
}>;
|
|
424
|
+
initiator: z.ZodObject<{
|
|
425
|
+
id: z.ZodString;
|
|
426
|
+
name: z.ZodOptional<z.ZodString>;
|
|
427
|
+
email: z.ZodOptional<z.ZodString>;
|
|
428
|
+
is_api_key: z.ZodBoolean;
|
|
429
|
+
}, "strict", z.ZodTypeAny, {
|
|
430
|
+
id: string;
|
|
431
|
+
is_api_key: boolean;
|
|
432
|
+
name?: string | undefined;
|
|
433
|
+
email?: string | undefined;
|
|
434
|
+
}, {
|
|
435
|
+
id: string;
|
|
436
|
+
is_api_key: boolean;
|
|
437
|
+
name?: string | undefined;
|
|
438
|
+
email?: string | undefined;
|
|
439
|
+
}>;
|
|
295
440
|
}, "strip", z.ZodTypeAny, {
|
|
441
|
+
type: string;
|
|
296
442
|
id: string;
|
|
297
443
|
name: string;
|
|
298
|
-
type: string;
|
|
299
444
|
project: {
|
|
300
445
|
id: string;
|
|
301
446
|
url: string;
|
|
302
447
|
};
|
|
448
|
+
initiator: {
|
|
449
|
+
id: string;
|
|
450
|
+
is_api_key: boolean;
|
|
451
|
+
name?: string | undefined;
|
|
452
|
+
email?: string | undefined;
|
|
453
|
+
};
|
|
303
454
|
editionId?: string | undefined;
|
|
304
455
|
slug?: string | undefined;
|
|
305
456
|
}, {
|
|
457
|
+
type: string;
|
|
306
458
|
id: string;
|
|
307
459
|
name: string;
|
|
308
|
-
type: string;
|
|
309
460
|
project: {
|
|
310
461
|
id: string;
|
|
311
462
|
url: string;
|
|
312
463
|
};
|
|
464
|
+
initiator: {
|
|
465
|
+
id: string;
|
|
466
|
+
is_api_key: boolean;
|
|
467
|
+
name?: string | undefined;
|
|
468
|
+
email?: string | undefined;
|
|
469
|
+
};
|
|
313
470
|
editionId?: string | undefined;
|
|
314
471
|
slug?: string | undefined;
|
|
315
472
|
}>, z.ZodObject<{
|
|
@@ -323,21 +480,21 @@ declare const CompositionDeletedDefinition: Definition<z.ZodIntersection<z.ZodIn
|
|
|
323
480
|
type: z.ZodEnum<["release"]>;
|
|
324
481
|
id: z.ZodString;
|
|
325
482
|
}, "strip", z.ZodTypeAny, {
|
|
326
|
-
id: string;
|
|
327
483
|
type: "release";
|
|
328
|
-
}, {
|
|
329
484
|
id: string;
|
|
485
|
+
}, {
|
|
330
486
|
type: "release";
|
|
487
|
+
id: string;
|
|
331
488
|
}>>;
|
|
332
489
|
}, "strip", z.ZodTypeAny, {
|
|
333
490
|
trigger?: {
|
|
334
|
-
id: string;
|
|
335
491
|
type: "release";
|
|
492
|
+
id: string;
|
|
336
493
|
} | undefined;
|
|
337
494
|
}, {
|
|
338
495
|
trigger?: {
|
|
339
|
-
id: string;
|
|
340
496
|
type: "release";
|
|
497
|
+
id: string;
|
|
341
498
|
} | undefined;
|
|
342
499
|
}>>>;
|
|
343
500
|
type CompositionDeletedPayload = z.infer<(typeof CompositionDeletedDefinition)['schema']>;
|
|
@@ -359,24 +516,52 @@ declare const CompositionPublishedDefinition: Definition<z.ZodIntersection<z.Zod
|
|
|
359
516
|
id: string;
|
|
360
517
|
url: string;
|
|
361
518
|
}>;
|
|
519
|
+
initiator: z.ZodObject<{
|
|
520
|
+
id: z.ZodString;
|
|
521
|
+
name: z.ZodOptional<z.ZodString>;
|
|
522
|
+
email: z.ZodOptional<z.ZodString>;
|
|
523
|
+
is_api_key: z.ZodBoolean;
|
|
524
|
+
}, "strict", z.ZodTypeAny, {
|
|
525
|
+
id: string;
|
|
526
|
+
is_api_key: boolean;
|
|
527
|
+
name?: string | undefined;
|
|
528
|
+
email?: string | undefined;
|
|
529
|
+
}, {
|
|
530
|
+
id: string;
|
|
531
|
+
is_api_key: boolean;
|
|
532
|
+
name?: string | undefined;
|
|
533
|
+
email?: string | undefined;
|
|
534
|
+
}>;
|
|
362
535
|
}, "strip", z.ZodTypeAny, {
|
|
536
|
+
type: string;
|
|
363
537
|
id: string;
|
|
364
538
|
name: string;
|
|
365
|
-
type: string;
|
|
366
539
|
project: {
|
|
367
540
|
id: string;
|
|
368
541
|
url: string;
|
|
369
542
|
};
|
|
543
|
+
initiator: {
|
|
544
|
+
id: string;
|
|
545
|
+
is_api_key: boolean;
|
|
546
|
+
name?: string | undefined;
|
|
547
|
+
email?: string | undefined;
|
|
548
|
+
};
|
|
370
549
|
editionId?: string | undefined;
|
|
371
550
|
slug?: string | undefined;
|
|
372
551
|
}, {
|
|
552
|
+
type: string;
|
|
373
553
|
id: string;
|
|
374
554
|
name: string;
|
|
375
|
-
type: string;
|
|
376
555
|
project: {
|
|
377
556
|
id: string;
|
|
378
557
|
url: string;
|
|
379
558
|
};
|
|
559
|
+
initiator: {
|
|
560
|
+
id: string;
|
|
561
|
+
is_api_key: boolean;
|
|
562
|
+
name?: string | undefined;
|
|
563
|
+
email?: string | undefined;
|
|
564
|
+
};
|
|
380
565
|
editionId?: string | undefined;
|
|
381
566
|
slug?: string | undefined;
|
|
382
567
|
}>, z.ZodObject<{
|
|
@@ -399,21 +584,21 @@ declare const CompositionPublishedDefinition: Definition<z.ZodIntersection<z.Zod
|
|
|
399
584
|
type: z.ZodEnum<["release"]>;
|
|
400
585
|
id: z.ZodString;
|
|
401
586
|
}, "strip", z.ZodTypeAny, {
|
|
402
|
-
id: string;
|
|
403
587
|
type: "release";
|
|
404
|
-
}, {
|
|
405
588
|
id: string;
|
|
589
|
+
}, {
|
|
406
590
|
type: "release";
|
|
591
|
+
id: string;
|
|
407
592
|
}>>;
|
|
408
593
|
}, "strip", z.ZodTypeAny, {
|
|
409
594
|
trigger?: {
|
|
410
|
-
id: string;
|
|
411
595
|
type: "release";
|
|
596
|
+
id: string;
|
|
412
597
|
} | undefined;
|
|
413
598
|
}, {
|
|
414
599
|
trigger?: {
|
|
415
|
-
id: string;
|
|
416
600
|
type: "release";
|
|
601
|
+
id: string;
|
|
417
602
|
} | undefined;
|
|
418
603
|
}>>>;
|
|
419
604
|
type CompositionPublishedPayload = z.infer<(typeof CompositionPublishedDefinition)['schema']>;
|
|
@@ -435,24 +620,52 @@ declare const CompositionReleaseChangedDefinition: Definition<z.ZodIntersection<
|
|
|
435
620
|
id: string;
|
|
436
621
|
url: string;
|
|
437
622
|
}>;
|
|
623
|
+
initiator: z.ZodObject<{
|
|
624
|
+
id: z.ZodString;
|
|
625
|
+
name: z.ZodOptional<z.ZodString>;
|
|
626
|
+
email: z.ZodOptional<z.ZodString>;
|
|
627
|
+
is_api_key: z.ZodBoolean;
|
|
628
|
+
}, "strict", z.ZodTypeAny, {
|
|
629
|
+
id: string;
|
|
630
|
+
is_api_key: boolean;
|
|
631
|
+
name?: string | undefined;
|
|
632
|
+
email?: string | undefined;
|
|
633
|
+
}, {
|
|
634
|
+
id: string;
|
|
635
|
+
is_api_key: boolean;
|
|
636
|
+
name?: string | undefined;
|
|
637
|
+
email?: string | undefined;
|
|
638
|
+
}>;
|
|
438
639
|
}, "strip", z.ZodTypeAny, {
|
|
640
|
+
type: string;
|
|
439
641
|
id: string;
|
|
440
642
|
name: string;
|
|
441
|
-
type: string;
|
|
442
643
|
project: {
|
|
443
644
|
id: string;
|
|
444
645
|
url: string;
|
|
445
646
|
};
|
|
647
|
+
initiator: {
|
|
648
|
+
id: string;
|
|
649
|
+
is_api_key: boolean;
|
|
650
|
+
name?: string | undefined;
|
|
651
|
+
email?: string | undefined;
|
|
652
|
+
};
|
|
446
653
|
editionId?: string | undefined;
|
|
447
654
|
slug?: string | undefined;
|
|
448
655
|
}, {
|
|
656
|
+
type: string;
|
|
449
657
|
id: string;
|
|
450
658
|
name: string;
|
|
451
|
-
type: string;
|
|
452
659
|
project: {
|
|
453
660
|
id: string;
|
|
454
661
|
url: string;
|
|
455
662
|
};
|
|
663
|
+
initiator: {
|
|
664
|
+
id: string;
|
|
665
|
+
is_api_key: boolean;
|
|
666
|
+
name?: string | undefined;
|
|
667
|
+
email?: string | undefined;
|
|
668
|
+
};
|
|
456
669
|
editionId?: string | undefined;
|
|
457
670
|
slug?: string | undefined;
|
|
458
671
|
}>, z.ZodObject<{
|
|
@@ -511,24 +724,52 @@ declare const CompositionReleaseDeletedDefinition: Definition<z.ZodIntersection<
|
|
|
511
724
|
id: string;
|
|
512
725
|
url: string;
|
|
513
726
|
}>;
|
|
727
|
+
initiator: z.ZodObject<{
|
|
728
|
+
id: z.ZodString;
|
|
729
|
+
name: z.ZodOptional<z.ZodString>;
|
|
730
|
+
email: z.ZodOptional<z.ZodString>;
|
|
731
|
+
is_api_key: z.ZodBoolean;
|
|
732
|
+
}, "strict", z.ZodTypeAny, {
|
|
733
|
+
id: string;
|
|
734
|
+
is_api_key: boolean;
|
|
735
|
+
name?: string | undefined;
|
|
736
|
+
email?: string | undefined;
|
|
737
|
+
}, {
|
|
738
|
+
id: string;
|
|
739
|
+
is_api_key: boolean;
|
|
740
|
+
name?: string | undefined;
|
|
741
|
+
email?: string | undefined;
|
|
742
|
+
}>;
|
|
514
743
|
}, "strip", z.ZodTypeAny, {
|
|
744
|
+
type: string;
|
|
515
745
|
id: string;
|
|
516
746
|
name: string;
|
|
517
|
-
type: string;
|
|
518
747
|
project: {
|
|
519
748
|
id: string;
|
|
520
749
|
url: string;
|
|
521
750
|
};
|
|
751
|
+
initiator: {
|
|
752
|
+
id: string;
|
|
753
|
+
is_api_key: boolean;
|
|
754
|
+
name?: string | undefined;
|
|
755
|
+
email?: string | undefined;
|
|
756
|
+
};
|
|
522
757
|
editionId?: string | undefined;
|
|
523
758
|
slug?: string | undefined;
|
|
524
759
|
}, {
|
|
760
|
+
type: string;
|
|
525
761
|
id: string;
|
|
526
762
|
name: string;
|
|
527
|
-
type: string;
|
|
528
763
|
project: {
|
|
529
764
|
id: string;
|
|
530
765
|
url: string;
|
|
531
766
|
};
|
|
767
|
+
initiator: {
|
|
768
|
+
id: string;
|
|
769
|
+
is_api_key: boolean;
|
|
770
|
+
name?: string | undefined;
|
|
771
|
+
email?: string | undefined;
|
|
772
|
+
};
|
|
532
773
|
editionId?: string | undefined;
|
|
533
774
|
slug?: string | undefined;
|
|
534
775
|
}>, z.ZodObject<{
|
|
@@ -578,24 +819,52 @@ declare const CompositionReleasePublishedDefinition: Definition<z.ZodIntersectio
|
|
|
578
819
|
id: string;
|
|
579
820
|
url: string;
|
|
580
821
|
}>;
|
|
822
|
+
initiator: z.ZodObject<{
|
|
823
|
+
id: z.ZodString;
|
|
824
|
+
name: z.ZodOptional<z.ZodString>;
|
|
825
|
+
email: z.ZodOptional<z.ZodString>;
|
|
826
|
+
is_api_key: z.ZodBoolean;
|
|
827
|
+
}, "strict", z.ZodTypeAny, {
|
|
828
|
+
id: string;
|
|
829
|
+
is_api_key: boolean;
|
|
830
|
+
name?: string | undefined;
|
|
831
|
+
email?: string | undefined;
|
|
832
|
+
}, {
|
|
833
|
+
id: string;
|
|
834
|
+
is_api_key: boolean;
|
|
835
|
+
name?: string | undefined;
|
|
836
|
+
email?: string | undefined;
|
|
837
|
+
}>;
|
|
581
838
|
}, "strip", z.ZodTypeAny, {
|
|
839
|
+
type: string;
|
|
582
840
|
id: string;
|
|
583
841
|
name: string;
|
|
584
|
-
type: string;
|
|
585
842
|
project: {
|
|
586
843
|
id: string;
|
|
587
844
|
url: string;
|
|
588
845
|
};
|
|
846
|
+
initiator: {
|
|
847
|
+
id: string;
|
|
848
|
+
is_api_key: boolean;
|
|
849
|
+
name?: string | undefined;
|
|
850
|
+
email?: string | undefined;
|
|
851
|
+
};
|
|
589
852
|
editionId?: string | undefined;
|
|
590
853
|
slug?: string | undefined;
|
|
591
854
|
}, {
|
|
855
|
+
type: string;
|
|
592
856
|
id: string;
|
|
593
857
|
name: string;
|
|
594
|
-
type: string;
|
|
595
858
|
project: {
|
|
596
859
|
id: string;
|
|
597
860
|
url: string;
|
|
598
861
|
};
|
|
862
|
+
initiator: {
|
|
863
|
+
id: string;
|
|
864
|
+
is_api_key: boolean;
|
|
865
|
+
name?: string | undefined;
|
|
866
|
+
email?: string | undefined;
|
|
867
|
+
};
|
|
599
868
|
editionId?: string | undefined;
|
|
600
869
|
slug?: string | undefined;
|
|
601
870
|
}>, z.ZodObject<{
|
|
@@ -654,24 +923,52 @@ declare const CompositionReleaseRestoredDefinition: Definition<z.ZodIntersection
|
|
|
654
923
|
id: string;
|
|
655
924
|
url: string;
|
|
656
925
|
}>;
|
|
926
|
+
initiator: z.ZodObject<{
|
|
927
|
+
id: z.ZodString;
|
|
928
|
+
name: z.ZodOptional<z.ZodString>;
|
|
929
|
+
email: z.ZodOptional<z.ZodString>;
|
|
930
|
+
is_api_key: z.ZodBoolean;
|
|
931
|
+
}, "strict", z.ZodTypeAny, {
|
|
932
|
+
id: string;
|
|
933
|
+
is_api_key: boolean;
|
|
934
|
+
name?: string | undefined;
|
|
935
|
+
email?: string | undefined;
|
|
936
|
+
}, {
|
|
937
|
+
id: string;
|
|
938
|
+
is_api_key: boolean;
|
|
939
|
+
name?: string | undefined;
|
|
940
|
+
email?: string | undefined;
|
|
941
|
+
}>;
|
|
657
942
|
}, "strip", z.ZodTypeAny, {
|
|
943
|
+
type: string;
|
|
658
944
|
id: string;
|
|
659
945
|
name: string;
|
|
660
|
-
type: string;
|
|
661
946
|
project: {
|
|
662
947
|
id: string;
|
|
663
948
|
url: string;
|
|
664
949
|
};
|
|
950
|
+
initiator: {
|
|
951
|
+
id: string;
|
|
952
|
+
is_api_key: boolean;
|
|
953
|
+
name?: string | undefined;
|
|
954
|
+
email?: string | undefined;
|
|
955
|
+
};
|
|
665
956
|
editionId?: string | undefined;
|
|
666
957
|
slug?: string | undefined;
|
|
667
958
|
}, {
|
|
959
|
+
type: string;
|
|
668
960
|
id: string;
|
|
669
961
|
name: string;
|
|
670
|
-
type: string;
|
|
671
962
|
project: {
|
|
672
963
|
id: string;
|
|
673
964
|
url: string;
|
|
674
965
|
};
|
|
966
|
+
initiator: {
|
|
967
|
+
id: string;
|
|
968
|
+
is_api_key: boolean;
|
|
969
|
+
name?: string | undefined;
|
|
970
|
+
email?: string | undefined;
|
|
971
|
+
};
|
|
675
972
|
editionId?: string | undefined;
|
|
676
973
|
slug?: string | undefined;
|
|
677
974
|
}>, z.ZodObject<{
|
|
@@ -710,21 +1007,21 @@ declare const EntryTriggerPayloadSchema: z.ZodObject<{
|
|
|
710
1007
|
type: z.ZodEnum<["release"]>;
|
|
711
1008
|
id: z.ZodString;
|
|
712
1009
|
}, "strip", z.ZodTypeAny, {
|
|
713
|
-
id: string;
|
|
714
1010
|
type: "release";
|
|
715
|
-
}, {
|
|
716
1011
|
id: string;
|
|
1012
|
+
}, {
|
|
717
1013
|
type: "release";
|
|
1014
|
+
id: string;
|
|
718
1015
|
}>>;
|
|
719
1016
|
}, "strip", z.ZodTypeAny, {
|
|
720
1017
|
trigger?: {
|
|
721
|
-
id: string;
|
|
722
1018
|
type: "release";
|
|
1019
|
+
id: string;
|
|
723
1020
|
} | undefined;
|
|
724
1021
|
}, {
|
|
725
1022
|
trigger?: {
|
|
726
|
-
id: string;
|
|
727
1023
|
type: "release";
|
|
1024
|
+
id: string;
|
|
728
1025
|
} | undefined;
|
|
729
1026
|
}>;
|
|
730
1027
|
declare const EntryDeletePayloadSchema: z.ZodIntersection<z.ZodObject<{
|
|
@@ -743,24 +1040,52 @@ declare const EntryDeletePayloadSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
743
1040
|
id: string;
|
|
744
1041
|
url: string;
|
|
745
1042
|
}>;
|
|
1043
|
+
initiator: z.ZodObject<{
|
|
1044
|
+
id: z.ZodString;
|
|
1045
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1046
|
+
email: z.ZodOptional<z.ZodString>;
|
|
1047
|
+
is_api_key: z.ZodBoolean;
|
|
1048
|
+
}, "strict", z.ZodTypeAny, {
|
|
1049
|
+
id: string;
|
|
1050
|
+
is_api_key: boolean;
|
|
1051
|
+
name?: string | undefined;
|
|
1052
|
+
email?: string | undefined;
|
|
1053
|
+
}, {
|
|
1054
|
+
id: string;
|
|
1055
|
+
is_api_key: boolean;
|
|
1056
|
+
name?: string | undefined;
|
|
1057
|
+
email?: string | undefined;
|
|
1058
|
+
}>;
|
|
746
1059
|
}, "strip", z.ZodTypeAny, {
|
|
1060
|
+
type: string;
|
|
747
1061
|
id: string;
|
|
748
1062
|
name: string;
|
|
749
|
-
type: string;
|
|
750
1063
|
project: {
|
|
751
1064
|
id: string;
|
|
752
1065
|
url: string;
|
|
753
1066
|
};
|
|
1067
|
+
initiator: {
|
|
1068
|
+
id: string;
|
|
1069
|
+
is_api_key: boolean;
|
|
1070
|
+
name?: string | undefined;
|
|
1071
|
+
email?: string | undefined;
|
|
1072
|
+
};
|
|
754
1073
|
editionId?: string | undefined;
|
|
755
1074
|
slug?: string | undefined;
|
|
756
1075
|
}, {
|
|
1076
|
+
type: string;
|
|
757
1077
|
id: string;
|
|
758
1078
|
name: string;
|
|
759
|
-
type: string;
|
|
760
1079
|
project: {
|
|
761
1080
|
id: string;
|
|
762
1081
|
url: string;
|
|
763
1082
|
};
|
|
1083
|
+
initiator: {
|
|
1084
|
+
id: string;
|
|
1085
|
+
is_api_key: boolean;
|
|
1086
|
+
name?: string | undefined;
|
|
1087
|
+
email?: string | undefined;
|
|
1088
|
+
};
|
|
764
1089
|
editionId?: string | undefined;
|
|
765
1090
|
slug?: string | undefined;
|
|
766
1091
|
}>, z.ZodObject<{
|
|
@@ -781,29 +1106,57 @@ declare const EntryRestorePayloadSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
781
1106
|
url: z.ZodString;
|
|
782
1107
|
}, "strip", z.ZodTypeAny, {
|
|
783
1108
|
id: string;
|
|
784
|
-
url: string;
|
|
1109
|
+
url: string;
|
|
1110
|
+
}, {
|
|
1111
|
+
id: string;
|
|
1112
|
+
url: string;
|
|
1113
|
+
}>;
|
|
1114
|
+
initiator: z.ZodObject<{
|
|
1115
|
+
id: z.ZodString;
|
|
1116
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1117
|
+
email: z.ZodOptional<z.ZodString>;
|
|
1118
|
+
is_api_key: z.ZodBoolean;
|
|
1119
|
+
}, "strict", z.ZodTypeAny, {
|
|
1120
|
+
id: string;
|
|
1121
|
+
is_api_key: boolean;
|
|
1122
|
+
name?: string | undefined;
|
|
1123
|
+
email?: string | undefined;
|
|
785
1124
|
}, {
|
|
786
1125
|
id: string;
|
|
787
|
-
|
|
1126
|
+
is_api_key: boolean;
|
|
1127
|
+
name?: string | undefined;
|
|
1128
|
+
email?: string | undefined;
|
|
788
1129
|
}>;
|
|
789
1130
|
}, "strip", z.ZodTypeAny, {
|
|
1131
|
+
type: string;
|
|
790
1132
|
id: string;
|
|
791
1133
|
name: string;
|
|
792
|
-
type: string;
|
|
793
1134
|
project: {
|
|
794
1135
|
id: string;
|
|
795
1136
|
url: string;
|
|
796
1137
|
};
|
|
1138
|
+
initiator: {
|
|
1139
|
+
id: string;
|
|
1140
|
+
is_api_key: boolean;
|
|
1141
|
+
name?: string | undefined;
|
|
1142
|
+
email?: string | undefined;
|
|
1143
|
+
};
|
|
797
1144
|
editionId?: string | undefined;
|
|
798
1145
|
slug?: string | undefined;
|
|
799
1146
|
}, {
|
|
1147
|
+
type: string;
|
|
800
1148
|
id: string;
|
|
801
1149
|
name: string;
|
|
802
|
-
type: string;
|
|
803
1150
|
project: {
|
|
804
1151
|
id: string;
|
|
805
1152
|
url: string;
|
|
806
1153
|
};
|
|
1154
|
+
initiator: {
|
|
1155
|
+
id: string;
|
|
1156
|
+
is_api_key: boolean;
|
|
1157
|
+
name?: string | undefined;
|
|
1158
|
+
email?: string | undefined;
|
|
1159
|
+
};
|
|
807
1160
|
editionId?: string | undefined;
|
|
808
1161
|
slug?: string | undefined;
|
|
809
1162
|
}>, z.ZodObject<{
|
|
@@ -829,24 +1182,52 @@ declare const EntryPayloadSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
829
1182
|
id: string;
|
|
830
1183
|
url: string;
|
|
831
1184
|
}>;
|
|
1185
|
+
initiator: z.ZodObject<{
|
|
1186
|
+
id: z.ZodString;
|
|
1187
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1188
|
+
email: z.ZodOptional<z.ZodString>;
|
|
1189
|
+
is_api_key: z.ZodBoolean;
|
|
1190
|
+
}, "strict", z.ZodTypeAny, {
|
|
1191
|
+
id: string;
|
|
1192
|
+
is_api_key: boolean;
|
|
1193
|
+
name?: string | undefined;
|
|
1194
|
+
email?: string | undefined;
|
|
1195
|
+
}, {
|
|
1196
|
+
id: string;
|
|
1197
|
+
is_api_key: boolean;
|
|
1198
|
+
name?: string | undefined;
|
|
1199
|
+
email?: string | undefined;
|
|
1200
|
+
}>;
|
|
832
1201
|
}, "strip", z.ZodTypeAny, {
|
|
1202
|
+
type: string;
|
|
833
1203
|
id: string;
|
|
834
1204
|
name: string;
|
|
835
|
-
type: string;
|
|
836
1205
|
project: {
|
|
837
1206
|
id: string;
|
|
838
1207
|
url: string;
|
|
839
1208
|
};
|
|
1209
|
+
initiator: {
|
|
1210
|
+
id: string;
|
|
1211
|
+
is_api_key: boolean;
|
|
1212
|
+
name?: string | undefined;
|
|
1213
|
+
email?: string | undefined;
|
|
1214
|
+
};
|
|
840
1215
|
editionId?: string | undefined;
|
|
841
1216
|
slug?: string | undefined;
|
|
842
1217
|
}, {
|
|
1218
|
+
type: string;
|
|
843
1219
|
id: string;
|
|
844
1220
|
name: string;
|
|
845
|
-
type: string;
|
|
846
1221
|
project: {
|
|
847
1222
|
id: string;
|
|
848
1223
|
url: string;
|
|
849
1224
|
};
|
|
1225
|
+
initiator: {
|
|
1226
|
+
id: string;
|
|
1227
|
+
is_api_key: boolean;
|
|
1228
|
+
name?: string | undefined;
|
|
1229
|
+
email?: string | undefined;
|
|
1230
|
+
};
|
|
850
1231
|
editionId?: string | undefined;
|
|
851
1232
|
slug?: string | undefined;
|
|
852
1233
|
}>, z.ZodObject<{
|
|
@@ -906,24 +1287,52 @@ declare const EntryChangedDefinition: Definition<z.ZodIntersection<z.ZodIntersec
|
|
|
906
1287
|
id: string;
|
|
907
1288
|
url: string;
|
|
908
1289
|
}>;
|
|
1290
|
+
initiator: z.ZodObject<{
|
|
1291
|
+
id: z.ZodString;
|
|
1292
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1293
|
+
email: z.ZodOptional<z.ZodString>;
|
|
1294
|
+
is_api_key: z.ZodBoolean;
|
|
1295
|
+
}, "strict", z.ZodTypeAny, {
|
|
1296
|
+
id: string;
|
|
1297
|
+
is_api_key: boolean;
|
|
1298
|
+
name?: string | undefined;
|
|
1299
|
+
email?: string | undefined;
|
|
1300
|
+
}, {
|
|
1301
|
+
id: string;
|
|
1302
|
+
is_api_key: boolean;
|
|
1303
|
+
name?: string | undefined;
|
|
1304
|
+
email?: string | undefined;
|
|
1305
|
+
}>;
|
|
909
1306
|
}, "strip", z.ZodTypeAny, {
|
|
1307
|
+
type: string;
|
|
910
1308
|
id: string;
|
|
911
1309
|
name: string;
|
|
912
|
-
type: string;
|
|
913
1310
|
project: {
|
|
914
1311
|
id: string;
|
|
915
1312
|
url: string;
|
|
916
1313
|
};
|
|
1314
|
+
initiator: {
|
|
1315
|
+
id: string;
|
|
1316
|
+
is_api_key: boolean;
|
|
1317
|
+
name?: string | undefined;
|
|
1318
|
+
email?: string | undefined;
|
|
1319
|
+
};
|
|
917
1320
|
editionId?: string | undefined;
|
|
918
1321
|
slug?: string | undefined;
|
|
919
1322
|
}, {
|
|
1323
|
+
type: string;
|
|
920
1324
|
id: string;
|
|
921
1325
|
name: string;
|
|
922
|
-
type: string;
|
|
923
1326
|
project: {
|
|
924
1327
|
id: string;
|
|
925
1328
|
url: string;
|
|
926
1329
|
};
|
|
1330
|
+
initiator: {
|
|
1331
|
+
id: string;
|
|
1332
|
+
is_api_key: boolean;
|
|
1333
|
+
name?: string | undefined;
|
|
1334
|
+
email?: string | undefined;
|
|
1335
|
+
};
|
|
927
1336
|
editionId?: string | undefined;
|
|
928
1337
|
slug?: string | undefined;
|
|
929
1338
|
}>, z.ZodObject<{
|
|
@@ -946,21 +1355,21 @@ declare const EntryChangedDefinition: Definition<z.ZodIntersection<z.ZodIntersec
|
|
|
946
1355
|
type: z.ZodEnum<["release"]>;
|
|
947
1356
|
id: z.ZodString;
|
|
948
1357
|
}, "strip", z.ZodTypeAny, {
|
|
949
|
-
id: string;
|
|
950
1358
|
type: "release";
|
|
951
|
-
}, {
|
|
952
1359
|
id: string;
|
|
1360
|
+
}, {
|
|
953
1361
|
type: "release";
|
|
1362
|
+
id: string;
|
|
954
1363
|
}>>;
|
|
955
1364
|
}, "strip", z.ZodTypeAny, {
|
|
956
1365
|
trigger?: {
|
|
957
|
-
id: string;
|
|
958
1366
|
type: "release";
|
|
1367
|
+
id: string;
|
|
959
1368
|
} | undefined;
|
|
960
1369
|
}, {
|
|
961
1370
|
trigger?: {
|
|
962
|
-
id: string;
|
|
963
1371
|
type: "release";
|
|
1372
|
+
id: string;
|
|
964
1373
|
} | undefined;
|
|
965
1374
|
}>>>;
|
|
966
1375
|
type EntryChangedPayload = z.infer<(typeof EntryChangedDefinition)['schema']>;
|
|
@@ -982,24 +1391,52 @@ declare const EntryDeletedDefinition: Definition<z.ZodIntersection<z.ZodIntersec
|
|
|
982
1391
|
id: string;
|
|
983
1392
|
url: string;
|
|
984
1393
|
}>;
|
|
1394
|
+
initiator: z.ZodObject<{
|
|
1395
|
+
id: z.ZodString;
|
|
1396
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1397
|
+
email: z.ZodOptional<z.ZodString>;
|
|
1398
|
+
is_api_key: z.ZodBoolean;
|
|
1399
|
+
}, "strict", z.ZodTypeAny, {
|
|
1400
|
+
id: string;
|
|
1401
|
+
is_api_key: boolean;
|
|
1402
|
+
name?: string | undefined;
|
|
1403
|
+
email?: string | undefined;
|
|
1404
|
+
}, {
|
|
1405
|
+
id: string;
|
|
1406
|
+
is_api_key: boolean;
|
|
1407
|
+
name?: string | undefined;
|
|
1408
|
+
email?: string | undefined;
|
|
1409
|
+
}>;
|
|
985
1410
|
}, "strip", z.ZodTypeAny, {
|
|
1411
|
+
type: string;
|
|
986
1412
|
id: string;
|
|
987
1413
|
name: string;
|
|
988
|
-
type: string;
|
|
989
1414
|
project: {
|
|
990
1415
|
id: string;
|
|
991
1416
|
url: string;
|
|
992
1417
|
};
|
|
1418
|
+
initiator: {
|
|
1419
|
+
id: string;
|
|
1420
|
+
is_api_key: boolean;
|
|
1421
|
+
name?: string | undefined;
|
|
1422
|
+
email?: string | undefined;
|
|
1423
|
+
};
|
|
993
1424
|
editionId?: string | undefined;
|
|
994
1425
|
slug?: string | undefined;
|
|
995
1426
|
}, {
|
|
1427
|
+
type: string;
|
|
996
1428
|
id: string;
|
|
997
1429
|
name: string;
|
|
998
|
-
type: string;
|
|
999
1430
|
project: {
|
|
1000
1431
|
id: string;
|
|
1001
1432
|
url: string;
|
|
1002
1433
|
};
|
|
1434
|
+
initiator: {
|
|
1435
|
+
id: string;
|
|
1436
|
+
is_api_key: boolean;
|
|
1437
|
+
name?: string | undefined;
|
|
1438
|
+
email?: string | undefined;
|
|
1439
|
+
};
|
|
1003
1440
|
editionId?: string | undefined;
|
|
1004
1441
|
slug?: string | undefined;
|
|
1005
1442
|
}>, z.ZodObject<{
|
|
@@ -1013,21 +1450,21 @@ declare const EntryDeletedDefinition: Definition<z.ZodIntersection<z.ZodIntersec
|
|
|
1013
1450
|
type: z.ZodEnum<["release"]>;
|
|
1014
1451
|
id: z.ZodString;
|
|
1015
1452
|
}, "strip", z.ZodTypeAny, {
|
|
1016
|
-
id: string;
|
|
1017
1453
|
type: "release";
|
|
1018
|
-
}, {
|
|
1019
1454
|
id: string;
|
|
1455
|
+
}, {
|
|
1020
1456
|
type: "release";
|
|
1457
|
+
id: string;
|
|
1021
1458
|
}>>;
|
|
1022
1459
|
}, "strip", z.ZodTypeAny, {
|
|
1023
1460
|
trigger?: {
|
|
1024
|
-
id: string;
|
|
1025
1461
|
type: "release";
|
|
1462
|
+
id: string;
|
|
1026
1463
|
} | undefined;
|
|
1027
1464
|
}, {
|
|
1028
1465
|
trigger?: {
|
|
1029
|
-
id: string;
|
|
1030
1466
|
type: "release";
|
|
1467
|
+
id: string;
|
|
1031
1468
|
} | undefined;
|
|
1032
1469
|
}>>>;
|
|
1033
1470
|
type EntryDeletedPayload = z.infer<(typeof EntryDeletedDefinition)['schema']>;
|
|
@@ -1049,24 +1486,52 @@ declare const EntryPublishedDefinition: Definition<z.ZodIntersection<z.ZodInters
|
|
|
1049
1486
|
id: string;
|
|
1050
1487
|
url: string;
|
|
1051
1488
|
}>;
|
|
1489
|
+
initiator: z.ZodObject<{
|
|
1490
|
+
id: z.ZodString;
|
|
1491
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1492
|
+
email: z.ZodOptional<z.ZodString>;
|
|
1493
|
+
is_api_key: z.ZodBoolean;
|
|
1494
|
+
}, "strict", z.ZodTypeAny, {
|
|
1495
|
+
id: string;
|
|
1496
|
+
is_api_key: boolean;
|
|
1497
|
+
name?: string | undefined;
|
|
1498
|
+
email?: string | undefined;
|
|
1499
|
+
}, {
|
|
1500
|
+
id: string;
|
|
1501
|
+
is_api_key: boolean;
|
|
1502
|
+
name?: string | undefined;
|
|
1503
|
+
email?: string | undefined;
|
|
1504
|
+
}>;
|
|
1052
1505
|
}, "strip", z.ZodTypeAny, {
|
|
1506
|
+
type: string;
|
|
1053
1507
|
id: string;
|
|
1054
1508
|
name: string;
|
|
1055
|
-
type: string;
|
|
1056
1509
|
project: {
|
|
1057
1510
|
id: string;
|
|
1058
1511
|
url: string;
|
|
1059
1512
|
};
|
|
1513
|
+
initiator: {
|
|
1514
|
+
id: string;
|
|
1515
|
+
is_api_key: boolean;
|
|
1516
|
+
name?: string | undefined;
|
|
1517
|
+
email?: string | undefined;
|
|
1518
|
+
};
|
|
1060
1519
|
editionId?: string | undefined;
|
|
1061
1520
|
slug?: string | undefined;
|
|
1062
1521
|
}, {
|
|
1522
|
+
type: string;
|
|
1063
1523
|
id: string;
|
|
1064
1524
|
name: string;
|
|
1065
|
-
type: string;
|
|
1066
1525
|
project: {
|
|
1067
1526
|
id: string;
|
|
1068
1527
|
url: string;
|
|
1069
1528
|
};
|
|
1529
|
+
initiator: {
|
|
1530
|
+
id: string;
|
|
1531
|
+
is_api_key: boolean;
|
|
1532
|
+
name?: string | undefined;
|
|
1533
|
+
email?: string | undefined;
|
|
1534
|
+
};
|
|
1070
1535
|
editionId?: string | undefined;
|
|
1071
1536
|
slug?: string | undefined;
|
|
1072
1537
|
}>, z.ZodObject<{
|
|
@@ -1089,21 +1554,21 @@ declare const EntryPublishedDefinition: Definition<z.ZodIntersection<z.ZodInters
|
|
|
1089
1554
|
type: z.ZodEnum<["release"]>;
|
|
1090
1555
|
id: z.ZodString;
|
|
1091
1556
|
}, "strip", z.ZodTypeAny, {
|
|
1092
|
-
id: string;
|
|
1093
1557
|
type: "release";
|
|
1094
|
-
}, {
|
|
1095
1558
|
id: string;
|
|
1559
|
+
}, {
|
|
1096
1560
|
type: "release";
|
|
1561
|
+
id: string;
|
|
1097
1562
|
}>>;
|
|
1098
1563
|
}, "strip", z.ZodTypeAny, {
|
|
1099
1564
|
trigger?: {
|
|
1100
|
-
id: string;
|
|
1101
1565
|
type: "release";
|
|
1566
|
+
id: string;
|
|
1102
1567
|
} | undefined;
|
|
1103
1568
|
}, {
|
|
1104
1569
|
trigger?: {
|
|
1105
|
-
id: string;
|
|
1106
1570
|
type: "release";
|
|
1571
|
+
id: string;
|
|
1107
1572
|
} | undefined;
|
|
1108
1573
|
}>>>;
|
|
1109
1574
|
type EntryPublishedPayload = z.infer<(typeof EntryPublishedDefinition)['schema']>;
|
|
@@ -1125,24 +1590,52 @@ declare const EntryReleaseChangedDefinition: Definition<z.ZodIntersection<z.ZodI
|
|
|
1125
1590
|
id: string;
|
|
1126
1591
|
url: string;
|
|
1127
1592
|
}>;
|
|
1593
|
+
initiator: z.ZodObject<{
|
|
1594
|
+
id: z.ZodString;
|
|
1595
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1596
|
+
email: z.ZodOptional<z.ZodString>;
|
|
1597
|
+
is_api_key: z.ZodBoolean;
|
|
1598
|
+
}, "strict", z.ZodTypeAny, {
|
|
1599
|
+
id: string;
|
|
1600
|
+
is_api_key: boolean;
|
|
1601
|
+
name?: string | undefined;
|
|
1602
|
+
email?: string | undefined;
|
|
1603
|
+
}, {
|
|
1604
|
+
id: string;
|
|
1605
|
+
is_api_key: boolean;
|
|
1606
|
+
name?: string | undefined;
|
|
1607
|
+
email?: string | undefined;
|
|
1608
|
+
}>;
|
|
1128
1609
|
}, "strip", z.ZodTypeAny, {
|
|
1610
|
+
type: string;
|
|
1129
1611
|
id: string;
|
|
1130
1612
|
name: string;
|
|
1131
|
-
type: string;
|
|
1132
1613
|
project: {
|
|
1133
1614
|
id: string;
|
|
1134
1615
|
url: string;
|
|
1135
1616
|
};
|
|
1617
|
+
initiator: {
|
|
1618
|
+
id: string;
|
|
1619
|
+
is_api_key: boolean;
|
|
1620
|
+
name?: string | undefined;
|
|
1621
|
+
email?: string | undefined;
|
|
1622
|
+
};
|
|
1136
1623
|
editionId?: string | undefined;
|
|
1137
1624
|
slug?: string | undefined;
|
|
1138
1625
|
}, {
|
|
1626
|
+
type: string;
|
|
1139
1627
|
id: string;
|
|
1140
1628
|
name: string;
|
|
1141
|
-
type: string;
|
|
1142
1629
|
project: {
|
|
1143
1630
|
id: string;
|
|
1144
1631
|
url: string;
|
|
1145
1632
|
};
|
|
1633
|
+
initiator: {
|
|
1634
|
+
id: string;
|
|
1635
|
+
is_api_key: boolean;
|
|
1636
|
+
name?: string | undefined;
|
|
1637
|
+
email?: string | undefined;
|
|
1638
|
+
};
|
|
1146
1639
|
editionId?: string | undefined;
|
|
1147
1640
|
slug?: string | undefined;
|
|
1148
1641
|
}>, z.ZodObject<{
|
|
@@ -1201,24 +1694,52 @@ declare const EntryReleaseDeletedDefinition: Definition<z.ZodIntersection<z.ZodI
|
|
|
1201
1694
|
id: string;
|
|
1202
1695
|
url: string;
|
|
1203
1696
|
}>;
|
|
1697
|
+
initiator: z.ZodObject<{
|
|
1698
|
+
id: z.ZodString;
|
|
1699
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1700
|
+
email: z.ZodOptional<z.ZodString>;
|
|
1701
|
+
is_api_key: z.ZodBoolean;
|
|
1702
|
+
}, "strict", z.ZodTypeAny, {
|
|
1703
|
+
id: string;
|
|
1704
|
+
is_api_key: boolean;
|
|
1705
|
+
name?: string | undefined;
|
|
1706
|
+
email?: string | undefined;
|
|
1707
|
+
}, {
|
|
1708
|
+
id: string;
|
|
1709
|
+
is_api_key: boolean;
|
|
1710
|
+
name?: string | undefined;
|
|
1711
|
+
email?: string | undefined;
|
|
1712
|
+
}>;
|
|
1204
1713
|
}, "strip", z.ZodTypeAny, {
|
|
1714
|
+
type: string;
|
|
1205
1715
|
id: string;
|
|
1206
1716
|
name: string;
|
|
1207
|
-
type: string;
|
|
1208
1717
|
project: {
|
|
1209
1718
|
id: string;
|
|
1210
1719
|
url: string;
|
|
1211
1720
|
};
|
|
1721
|
+
initiator: {
|
|
1722
|
+
id: string;
|
|
1723
|
+
is_api_key: boolean;
|
|
1724
|
+
name?: string | undefined;
|
|
1725
|
+
email?: string | undefined;
|
|
1726
|
+
};
|
|
1212
1727
|
editionId?: string | undefined;
|
|
1213
1728
|
slug?: string | undefined;
|
|
1214
1729
|
}, {
|
|
1730
|
+
type: string;
|
|
1215
1731
|
id: string;
|
|
1216
1732
|
name: string;
|
|
1217
|
-
type: string;
|
|
1218
1733
|
project: {
|
|
1219
1734
|
id: string;
|
|
1220
1735
|
url: string;
|
|
1221
1736
|
};
|
|
1737
|
+
initiator: {
|
|
1738
|
+
id: string;
|
|
1739
|
+
is_api_key: boolean;
|
|
1740
|
+
name?: string | undefined;
|
|
1741
|
+
email?: string | undefined;
|
|
1742
|
+
};
|
|
1222
1743
|
editionId?: string | undefined;
|
|
1223
1744
|
slug?: string | undefined;
|
|
1224
1745
|
}>, z.ZodObject<{
|
|
@@ -1268,24 +1789,52 @@ declare const EntryReleasePublishedDefinition: Definition<z.ZodIntersection<z.Zo
|
|
|
1268
1789
|
id: string;
|
|
1269
1790
|
url: string;
|
|
1270
1791
|
}>;
|
|
1792
|
+
initiator: z.ZodObject<{
|
|
1793
|
+
id: z.ZodString;
|
|
1794
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1795
|
+
email: z.ZodOptional<z.ZodString>;
|
|
1796
|
+
is_api_key: z.ZodBoolean;
|
|
1797
|
+
}, "strict", z.ZodTypeAny, {
|
|
1798
|
+
id: string;
|
|
1799
|
+
is_api_key: boolean;
|
|
1800
|
+
name?: string | undefined;
|
|
1801
|
+
email?: string | undefined;
|
|
1802
|
+
}, {
|
|
1803
|
+
id: string;
|
|
1804
|
+
is_api_key: boolean;
|
|
1805
|
+
name?: string | undefined;
|
|
1806
|
+
email?: string | undefined;
|
|
1807
|
+
}>;
|
|
1271
1808
|
}, "strip", z.ZodTypeAny, {
|
|
1809
|
+
type: string;
|
|
1272
1810
|
id: string;
|
|
1273
1811
|
name: string;
|
|
1274
|
-
type: string;
|
|
1275
1812
|
project: {
|
|
1276
1813
|
id: string;
|
|
1277
1814
|
url: string;
|
|
1278
1815
|
};
|
|
1816
|
+
initiator: {
|
|
1817
|
+
id: string;
|
|
1818
|
+
is_api_key: boolean;
|
|
1819
|
+
name?: string | undefined;
|
|
1820
|
+
email?: string | undefined;
|
|
1821
|
+
};
|
|
1279
1822
|
editionId?: string | undefined;
|
|
1280
1823
|
slug?: string | undefined;
|
|
1281
1824
|
}, {
|
|
1825
|
+
type: string;
|
|
1282
1826
|
id: string;
|
|
1283
1827
|
name: string;
|
|
1284
|
-
type: string;
|
|
1285
1828
|
project: {
|
|
1286
1829
|
id: string;
|
|
1287
1830
|
url: string;
|
|
1288
1831
|
};
|
|
1832
|
+
initiator: {
|
|
1833
|
+
id: string;
|
|
1834
|
+
is_api_key: boolean;
|
|
1835
|
+
name?: string | undefined;
|
|
1836
|
+
email?: string | undefined;
|
|
1837
|
+
};
|
|
1289
1838
|
editionId?: string | undefined;
|
|
1290
1839
|
slug?: string | undefined;
|
|
1291
1840
|
}>, z.ZodObject<{
|
|
@@ -1344,24 +1893,52 @@ declare const EntryReleaseRestoredDefinition: Definition<z.ZodIntersection<z.Zod
|
|
|
1344
1893
|
id: string;
|
|
1345
1894
|
url: string;
|
|
1346
1895
|
}>;
|
|
1896
|
+
initiator: z.ZodObject<{
|
|
1897
|
+
id: z.ZodString;
|
|
1898
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1899
|
+
email: z.ZodOptional<z.ZodString>;
|
|
1900
|
+
is_api_key: z.ZodBoolean;
|
|
1901
|
+
}, "strict", z.ZodTypeAny, {
|
|
1902
|
+
id: string;
|
|
1903
|
+
is_api_key: boolean;
|
|
1904
|
+
name?: string | undefined;
|
|
1905
|
+
email?: string | undefined;
|
|
1906
|
+
}, {
|
|
1907
|
+
id: string;
|
|
1908
|
+
is_api_key: boolean;
|
|
1909
|
+
name?: string | undefined;
|
|
1910
|
+
email?: string | undefined;
|
|
1911
|
+
}>;
|
|
1347
1912
|
}, "strip", z.ZodTypeAny, {
|
|
1913
|
+
type: string;
|
|
1348
1914
|
id: string;
|
|
1349
1915
|
name: string;
|
|
1350
|
-
type: string;
|
|
1351
1916
|
project: {
|
|
1352
1917
|
id: string;
|
|
1353
|
-
url: string;
|
|
1918
|
+
url: string;
|
|
1919
|
+
};
|
|
1920
|
+
initiator: {
|
|
1921
|
+
id: string;
|
|
1922
|
+
is_api_key: boolean;
|
|
1923
|
+
name?: string | undefined;
|
|
1924
|
+
email?: string | undefined;
|
|
1354
1925
|
};
|
|
1355
1926
|
editionId?: string | undefined;
|
|
1356
1927
|
slug?: string | undefined;
|
|
1357
1928
|
}, {
|
|
1929
|
+
type: string;
|
|
1358
1930
|
id: string;
|
|
1359
1931
|
name: string;
|
|
1360
|
-
type: string;
|
|
1361
1932
|
project: {
|
|
1362
1933
|
id: string;
|
|
1363
1934
|
url: string;
|
|
1364
1935
|
};
|
|
1936
|
+
initiator: {
|
|
1937
|
+
id: string;
|
|
1938
|
+
is_api_key: boolean;
|
|
1939
|
+
name?: string | undefined;
|
|
1940
|
+
email?: string | undefined;
|
|
1941
|
+
};
|
|
1365
1942
|
editionId?: string | undefined;
|
|
1366
1943
|
slug?: string | undefined;
|
|
1367
1944
|
}>, z.ZodObject<{
|
|
@@ -1451,36 +2028,64 @@ declare const ProjectMapNodeDeleteDefinition: Definition<z.ZodObject<{
|
|
|
1451
2028
|
inherited: z.ZodBoolean;
|
|
1452
2029
|
path: z.ZodString;
|
|
1453
2030
|
}, "strip", z.ZodTypeAny, {
|
|
1454
|
-
name: string;
|
|
1455
2031
|
path: string;
|
|
2032
|
+
name: string;
|
|
1456
2033
|
inherited: boolean;
|
|
1457
2034
|
}, {
|
|
1458
|
-
name: string;
|
|
1459
2035
|
path: string;
|
|
2036
|
+
name: string;
|
|
1460
2037
|
inherited: boolean;
|
|
1461
2038
|
}>>>;
|
|
2039
|
+
initiator: z.ZodObject<{
|
|
2040
|
+
id: z.ZodString;
|
|
2041
|
+
name: z.ZodOptional<z.ZodString>;
|
|
2042
|
+
email: z.ZodOptional<z.ZodString>;
|
|
2043
|
+
is_api_key: z.ZodBoolean;
|
|
2044
|
+
}, "strict", z.ZodTypeAny, {
|
|
2045
|
+
id: string;
|
|
2046
|
+
is_api_key: boolean;
|
|
2047
|
+
name?: string | undefined;
|
|
2048
|
+
email?: string | undefined;
|
|
2049
|
+
}, {
|
|
2050
|
+
id: string;
|
|
2051
|
+
is_api_key: boolean;
|
|
2052
|
+
name?: string | undefined;
|
|
2053
|
+
email?: string | undefined;
|
|
2054
|
+
}>;
|
|
1462
2055
|
}, "strip", z.ZodTypeAny, {
|
|
2056
|
+
path: string;
|
|
1463
2057
|
id: string;
|
|
1464
2058
|
name: string;
|
|
1465
|
-
|
|
2059
|
+
initiator: {
|
|
2060
|
+
id: string;
|
|
2061
|
+
is_api_key: boolean;
|
|
2062
|
+
name?: string | undefined;
|
|
2063
|
+
email?: string | undefined;
|
|
2064
|
+
};
|
|
1466
2065
|
project_id: string;
|
|
1467
2066
|
project_map_id: string;
|
|
1468
2067
|
composition_id?: string | undefined;
|
|
1469
2068
|
locales?: Record<string, {
|
|
1470
|
-
name: string;
|
|
1471
2069
|
path: string;
|
|
2070
|
+
name: string;
|
|
1472
2071
|
inherited: boolean;
|
|
1473
2072
|
}> | undefined;
|
|
1474
2073
|
}, {
|
|
2074
|
+
path: string;
|
|
1475
2075
|
id: string;
|
|
1476
2076
|
name: string;
|
|
1477
|
-
|
|
2077
|
+
initiator: {
|
|
2078
|
+
id: string;
|
|
2079
|
+
is_api_key: boolean;
|
|
2080
|
+
name?: string | undefined;
|
|
2081
|
+
email?: string | undefined;
|
|
2082
|
+
};
|
|
1478
2083
|
project_id: string;
|
|
1479
2084
|
project_map_id: string;
|
|
1480
2085
|
composition_id?: string | undefined;
|
|
1481
2086
|
locales?: Record<string, {
|
|
1482
|
-
name: string;
|
|
1483
2087
|
path: string;
|
|
2088
|
+
name: string;
|
|
1484
2089
|
inherited: boolean;
|
|
1485
2090
|
}> | undefined;
|
|
1486
2091
|
}>>;
|
|
@@ -1499,36 +2104,64 @@ declare const ProjectMapNodeInsertDefinition: Definition<z.ZodObject<{
|
|
|
1499
2104
|
inherited: z.ZodBoolean;
|
|
1500
2105
|
path: z.ZodString;
|
|
1501
2106
|
}, "strip", z.ZodTypeAny, {
|
|
1502
|
-
name: string;
|
|
1503
2107
|
path: string;
|
|
2108
|
+
name: string;
|
|
1504
2109
|
inherited: boolean;
|
|
1505
2110
|
}, {
|
|
1506
|
-
name: string;
|
|
1507
2111
|
path: string;
|
|
2112
|
+
name: string;
|
|
1508
2113
|
inherited: boolean;
|
|
1509
2114
|
}>>>;
|
|
2115
|
+
initiator: z.ZodObject<{
|
|
2116
|
+
id: z.ZodString;
|
|
2117
|
+
name: z.ZodOptional<z.ZodString>;
|
|
2118
|
+
email: z.ZodOptional<z.ZodString>;
|
|
2119
|
+
is_api_key: z.ZodBoolean;
|
|
2120
|
+
}, "strict", z.ZodTypeAny, {
|
|
2121
|
+
id: string;
|
|
2122
|
+
is_api_key: boolean;
|
|
2123
|
+
name?: string | undefined;
|
|
2124
|
+
email?: string | undefined;
|
|
2125
|
+
}, {
|
|
2126
|
+
id: string;
|
|
2127
|
+
is_api_key: boolean;
|
|
2128
|
+
name?: string | undefined;
|
|
2129
|
+
email?: string | undefined;
|
|
2130
|
+
}>;
|
|
1510
2131
|
}, "strip", z.ZodTypeAny, {
|
|
2132
|
+
path: string;
|
|
1511
2133
|
id: string;
|
|
1512
2134
|
name: string;
|
|
1513
|
-
|
|
2135
|
+
initiator: {
|
|
2136
|
+
id: string;
|
|
2137
|
+
is_api_key: boolean;
|
|
2138
|
+
name?: string | undefined;
|
|
2139
|
+
email?: string | undefined;
|
|
2140
|
+
};
|
|
1514
2141
|
project_id: string;
|
|
1515
2142
|
project_map_id: string;
|
|
1516
2143
|
composition_id?: string | undefined;
|
|
1517
2144
|
locales?: Record<string, {
|
|
1518
|
-
name: string;
|
|
1519
2145
|
path: string;
|
|
2146
|
+
name: string;
|
|
1520
2147
|
inherited: boolean;
|
|
1521
2148
|
}> | undefined;
|
|
1522
2149
|
}, {
|
|
2150
|
+
path: string;
|
|
1523
2151
|
id: string;
|
|
1524
2152
|
name: string;
|
|
1525
|
-
|
|
2153
|
+
initiator: {
|
|
2154
|
+
id: string;
|
|
2155
|
+
is_api_key: boolean;
|
|
2156
|
+
name?: string | undefined;
|
|
2157
|
+
email?: string | undefined;
|
|
2158
|
+
};
|
|
1526
2159
|
project_id: string;
|
|
1527
2160
|
project_map_id: string;
|
|
1528
2161
|
composition_id?: string | undefined;
|
|
1529
2162
|
locales?: Record<string, {
|
|
1530
|
-
name: string;
|
|
1531
2163
|
path: string;
|
|
2164
|
+
name: string;
|
|
1532
2165
|
inherited: boolean;
|
|
1533
2166
|
}> | undefined;
|
|
1534
2167
|
}>>;
|
|
@@ -1549,41 +2182,69 @@ declare const ProjectMapNodeUpdateDefinition: Definition<z.ZodObject<{
|
|
|
1549
2182
|
path: z.ZodString;
|
|
1550
2183
|
previous_path: z.ZodString;
|
|
1551
2184
|
}, "strip", z.ZodTypeAny, {
|
|
1552
|
-
name: string;
|
|
1553
2185
|
path: string;
|
|
2186
|
+
name: string;
|
|
1554
2187
|
inherited: boolean;
|
|
1555
2188
|
previous_path: string;
|
|
1556
2189
|
}, {
|
|
1557
|
-
name: string;
|
|
1558
2190
|
path: string;
|
|
2191
|
+
name: string;
|
|
1559
2192
|
inherited: boolean;
|
|
1560
2193
|
previous_path: string;
|
|
1561
2194
|
}>>>;
|
|
2195
|
+
initiator: z.ZodObject<{
|
|
2196
|
+
id: z.ZodString;
|
|
2197
|
+
name: z.ZodOptional<z.ZodString>;
|
|
2198
|
+
email: z.ZodOptional<z.ZodString>;
|
|
2199
|
+
is_api_key: z.ZodBoolean;
|
|
2200
|
+
}, "strict", z.ZodTypeAny, {
|
|
2201
|
+
id: string;
|
|
2202
|
+
is_api_key: boolean;
|
|
2203
|
+
name?: string | undefined;
|
|
2204
|
+
email?: string | undefined;
|
|
2205
|
+
}, {
|
|
2206
|
+
id: string;
|
|
2207
|
+
is_api_key: boolean;
|
|
2208
|
+
name?: string | undefined;
|
|
2209
|
+
email?: string | undefined;
|
|
2210
|
+
}>;
|
|
1562
2211
|
}, "strip", z.ZodTypeAny, {
|
|
2212
|
+
path: string;
|
|
1563
2213
|
id: string;
|
|
1564
2214
|
name: string;
|
|
1565
|
-
|
|
2215
|
+
initiator: {
|
|
2216
|
+
id: string;
|
|
2217
|
+
is_api_key: boolean;
|
|
2218
|
+
name?: string | undefined;
|
|
2219
|
+
email?: string | undefined;
|
|
2220
|
+
};
|
|
1566
2221
|
project_id: string;
|
|
1567
2222
|
project_map_id: string;
|
|
1568
2223
|
previous_path: string;
|
|
1569
2224
|
composition_id?: string | undefined;
|
|
1570
2225
|
locales?: Record<string, {
|
|
1571
|
-
name: string;
|
|
1572
2226
|
path: string;
|
|
2227
|
+
name: string;
|
|
1573
2228
|
inherited: boolean;
|
|
1574
2229
|
previous_path: string;
|
|
1575
2230
|
}> | undefined;
|
|
1576
2231
|
}, {
|
|
2232
|
+
path: string;
|
|
1577
2233
|
id: string;
|
|
1578
2234
|
name: string;
|
|
1579
|
-
|
|
2235
|
+
initiator: {
|
|
2236
|
+
id: string;
|
|
2237
|
+
is_api_key: boolean;
|
|
2238
|
+
name?: string | undefined;
|
|
2239
|
+
email?: string | undefined;
|
|
2240
|
+
};
|
|
1580
2241
|
project_id: string;
|
|
1581
2242
|
project_map_id: string;
|
|
1582
2243
|
previous_path: string;
|
|
1583
2244
|
composition_id?: string | undefined;
|
|
1584
2245
|
locales?: Record<string, {
|
|
1585
|
-
name: string;
|
|
1586
2246
|
path: string;
|
|
2247
|
+
name: string;
|
|
1587
2248
|
inherited: boolean;
|
|
1588
2249
|
previous_path: string;
|
|
1589
2250
|
}> | undefined;
|
|
@@ -1613,14 +2274,42 @@ declare const RedirectDeleteDefinition: Definition<z.ZodObject<{
|
|
|
1613
2274
|
source_url: z.ZodString;
|
|
1614
2275
|
target_url: z.ZodString;
|
|
1615
2276
|
target_status_code: z.ZodNumber;
|
|
2277
|
+
initiator: z.ZodObject<{
|
|
2278
|
+
id: z.ZodString;
|
|
2279
|
+
name: z.ZodOptional<z.ZodString>;
|
|
2280
|
+
email: z.ZodOptional<z.ZodString>;
|
|
2281
|
+
is_api_key: z.ZodBoolean;
|
|
2282
|
+
}, "strict", z.ZodTypeAny, {
|
|
2283
|
+
id: string;
|
|
2284
|
+
is_api_key: boolean;
|
|
2285
|
+
name?: string | undefined;
|
|
2286
|
+
email?: string | undefined;
|
|
2287
|
+
}, {
|
|
2288
|
+
id: string;
|
|
2289
|
+
is_api_key: boolean;
|
|
2290
|
+
name?: string | undefined;
|
|
2291
|
+
email?: string | undefined;
|
|
2292
|
+
}>;
|
|
1616
2293
|
}, "strip", z.ZodTypeAny, {
|
|
1617
2294
|
id: string;
|
|
2295
|
+
initiator: {
|
|
2296
|
+
id: string;
|
|
2297
|
+
is_api_key: boolean;
|
|
2298
|
+
name?: string | undefined;
|
|
2299
|
+
email?: string | undefined;
|
|
2300
|
+
};
|
|
1618
2301
|
project_id: string;
|
|
1619
2302
|
source_url: string;
|
|
1620
2303
|
target_url: string;
|
|
1621
2304
|
target_status_code: number;
|
|
1622
2305
|
}, {
|
|
1623
2306
|
id: string;
|
|
2307
|
+
initiator: {
|
|
2308
|
+
id: string;
|
|
2309
|
+
is_api_key: boolean;
|
|
2310
|
+
name?: string | undefined;
|
|
2311
|
+
email?: string | undefined;
|
|
2312
|
+
};
|
|
1624
2313
|
project_id: string;
|
|
1625
2314
|
source_url: string;
|
|
1626
2315
|
target_url: string;
|
|
@@ -1635,14 +2324,42 @@ declare const RedirectInsertDefinition: Definition<z.ZodObject<{
|
|
|
1635
2324
|
source_url: z.ZodString;
|
|
1636
2325
|
target_url: z.ZodString;
|
|
1637
2326
|
target_status_code: z.ZodNumber;
|
|
2327
|
+
initiator: z.ZodObject<{
|
|
2328
|
+
id: z.ZodString;
|
|
2329
|
+
name: z.ZodOptional<z.ZodString>;
|
|
2330
|
+
email: z.ZodOptional<z.ZodString>;
|
|
2331
|
+
is_api_key: z.ZodBoolean;
|
|
2332
|
+
}, "strict", z.ZodTypeAny, {
|
|
2333
|
+
id: string;
|
|
2334
|
+
is_api_key: boolean;
|
|
2335
|
+
name?: string | undefined;
|
|
2336
|
+
email?: string | undefined;
|
|
2337
|
+
}, {
|
|
2338
|
+
id: string;
|
|
2339
|
+
is_api_key: boolean;
|
|
2340
|
+
name?: string | undefined;
|
|
2341
|
+
email?: string | undefined;
|
|
2342
|
+
}>;
|
|
1638
2343
|
}, "strip", z.ZodTypeAny, {
|
|
1639
2344
|
id: string;
|
|
2345
|
+
initiator: {
|
|
2346
|
+
id: string;
|
|
2347
|
+
is_api_key: boolean;
|
|
2348
|
+
name?: string | undefined;
|
|
2349
|
+
email?: string | undefined;
|
|
2350
|
+
};
|
|
1640
2351
|
project_id: string;
|
|
1641
2352
|
source_url: string;
|
|
1642
2353
|
target_url: string;
|
|
1643
2354
|
target_status_code: number;
|
|
1644
2355
|
}, {
|
|
1645
2356
|
id: string;
|
|
2357
|
+
initiator: {
|
|
2358
|
+
id: string;
|
|
2359
|
+
is_api_key: boolean;
|
|
2360
|
+
name?: string | undefined;
|
|
2361
|
+
email?: string | undefined;
|
|
2362
|
+
};
|
|
1646
2363
|
project_id: string;
|
|
1647
2364
|
source_url: string;
|
|
1648
2365
|
target_url: string;
|
|
@@ -1657,14 +2374,42 @@ declare const RedirectUpdateDefinition: Definition<z.ZodObject<{
|
|
|
1657
2374
|
source_url: z.ZodString;
|
|
1658
2375
|
target_url: z.ZodString;
|
|
1659
2376
|
target_status_code: z.ZodNumber;
|
|
2377
|
+
initiator: z.ZodObject<{
|
|
2378
|
+
id: z.ZodString;
|
|
2379
|
+
name: z.ZodOptional<z.ZodString>;
|
|
2380
|
+
email: z.ZodOptional<z.ZodString>;
|
|
2381
|
+
is_api_key: z.ZodBoolean;
|
|
2382
|
+
}, "strict", z.ZodTypeAny, {
|
|
2383
|
+
id: string;
|
|
2384
|
+
is_api_key: boolean;
|
|
2385
|
+
name?: string | undefined;
|
|
2386
|
+
email?: string | undefined;
|
|
2387
|
+
}, {
|
|
2388
|
+
id: string;
|
|
2389
|
+
is_api_key: boolean;
|
|
2390
|
+
name?: string | undefined;
|
|
2391
|
+
email?: string | undefined;
|
|
2392
|
+
}>;
|
|
1660
2393
|
}, "strip", z.ZodTypeAny, {
|
|
1661
2394
|
id: string;
|
|
2395
|
+
initiator: {
|
|
2396
|
+
id: string;
|
|
2397
|
+
is_api_key: boolean;
|
|
2398
|
+
name?: string | undefined;
|
|
2399
|
+
email?: string | undefined;
|
|
2400
|
+
};
|
|
1662
2401
|
project_id: string;
|
|
1663
2402
|
source_url: string;
|
|
1664
2403
|
target_url: string;
|
|
1665
2404
|
target_status_code: number;
|
|
1666
2405
|
}, {
|
|
1667
2406
|
id: string;
|
|
2407
|
+
initiator: {
|
|
2408
|
+
id: string;
|
|
2409
|
+
is_api_key: boolean;
|
|
2410
|
+
name?: string | undefined;
|
|
2411
|
+
email?: string | undefined;
|
|
2412
|
+
};
|
|
1668
2413
|
project_id: string;
|
|
1669
2414
|
source_url: string;
|
|
1670
2415
|
target_url: string;
|
|
@@ -1958,19 +2703,6 @@ declare const WorkflowReferenceSchema: z.ZodObject<{
|
|
|
1958
2703
|
stageId: string;
|
|
1959
2704
|
stageName: string;
|
|
1960
2705
|
}>;
|
|
1961
|
-
declare const WorkflowIdentitySchema: z.ZodObject<{
|
|
1962
|
-
id: z.ZodString;
|
|
1963
|
-
name: z.ZodOptional<z.ZodString>;
|
|
1964
|
-
email: z.ZodOptional<z.ZodString>;
|
|
1965
|
-
}, "strict", z.ZodTypeAny, {
|
|
1966
|
-
id: string;
|
|
1967
|
-
name?: string | undefined;
|
|
1968
|
-
email?: string | undefined;
|
|
1969
|
-
}, {
|
|
1970
|
-
id: string;
|
|
1971
|
-
name?: string | undefined;
|
|
1972
|
-
email?: string | undefined;
|
|
1973
|
-
}>;
|
|
1974
2706
|
declare const WorkflowEntitySchema: z.ZodObject<{
|
|
1975
2707
|
type: z.ZodEnum<["entry", "component"]>;
|
|
1976
2708
|
name: z.ZodString;
|
|
@@ -1979,16 +2711,16 @@ declare const WorkflowEntitySchema: z.ZodObject<{
|
|
|
1979
2711
|
releaseId: z.ZodOptional<z.ZodString>;
|
|
1980
2712
|
url: z.ZodString;
|
|
1981
2713
|
}, "strict", z.ZodTypeAny, {
|
|
2714
|
+
type: "entry" | "component";
|
|
1982
2715
|
id: string;
|
|
1983
2716
|
name: string;
|
|
1984
|
-
type: "entry" | "component";
|
|
1985
2717
|
url: string;
|
|
1986
2718
|
editionId?: string | undefined;
|
|
1987
2719
|
releaseId?: string | undefined;
|
|
1988
2720
|
}, {
|
|
2721
|
+
type: "entry" | "component";
|
|
1989
2722
|
id: string;
|
|
1990
2723
|
name: string;
|
|
1991
|
-
type: "entry" | "component";
|
|
1992
2724
|
url: string;
|
|
1993
2725
|
editionId?: string | undefined;
|
|
1994
2726
|
releaseId?: string | undefined;
|
|
@@ -2002,16 +2734,16 @@ declare const WorkflowTransitionPayloadSchema: z.ZodObject<{
|
|
|
2002
2734
|
releaseId: z.ZodOptional<z.ZodString>;
|
|
2003
2735
|
url: z.ZodString;
|
|
2004
2736
|
}, "strict", z.ZodTypeAny, {
|
|
2737
|
+
type: "entry" | "component";
|
|
2005
2738
|
id: string;
|
|
2006
2739
|
name: string;
|
|
2007
|
-
type: "entry" | "component";
|
|
2008
2740
|
url: string;
|
|
2009
2741
|
editionId?: string | undefined;
|
|
2010
2742
|
releaseId?: string | undefined;
|
|
2011
2743
|
}, {
|
|
2744
|
+
type: "entry" | "component";
|
|
2012
2745
|
id: string;
|
|
2013
2746
|
name: string;
|
|
2014
|
-
type: "entry" | "component";
|
|
2015
2747
|
url: string;
|
|
2016
2748
|
editionId?: string | undefined;
|
|
2017
2749
|
releaseId?: string | undefined;
|
|
@@ -2052,12 +2784,15 @@ declare const WorkflowTransitionPayloadSchema: z.ZodObject<{
|
|
|
2052
2784
|
id: z.ZodString;
|
|
2053
2785
|
name: z.ZodOptional<z.ZodString>;
|
|
2054
2786
|
email: z.ZodOptional<z.ZodString>;
|
|
2787
|
+
is_api_key: z.ZodBoolean;
|
|
2055
2788
|
}, "strict", z.ZodTypeAny, {
|
|
2056
2789
|
id: string;
|
|
2790
|
+
is_api_key: boolean;
|
|
2057
2791
|
name?: string | undefined;
|
|
2058
2792
|
email?: string | undefined;
|
|
2059
2793
|
}, {
|
|
2060
2794
|
id: string;
|
|
2795
|
+
is_api_key: boolean;
|
|
2061
2796
|
name?: string | undefined;
|
|
2062
2797
|
email?: string | undefined;
|
|
2063
2798
|
}>;
|
|
@@ -2077,11 +2812,17 @@ declare const WorkflowTransitionPayloadSchema: z.ZodObject<{
|
|
|
2077
2812
|
id: string;
|
|
2078
2813
|
url: string;
|
|
2079
2814
|
};
|
|
2815
|
+
initiator: {
|
|
2816
|
+
id: string;
|
|
2817
|
+
is_api_key: boolean;
|
|
2818
|
+
name?: string | undefined;
|
|
2819
|
+
email?: string | undefined;
|
|
2820
|
+
};
|
|
2080
2821
|
timestamp: string;
|
|
2081
2822
|
entity: {
|
|
2823
|
+
type: "entry" | "component";
|
|
2082
2824
|
id: string;
|
|
2083
2825
|
name: string;
|
|
2084
|
-
type: "entry" | "component";
|
|
2085
2826
|
url: string;
|
|
2086
2827
|
editionId?: string | undefined;
|
|
2087
2828
|
releaseId?: string | undefined;
|
|
@@ -2092,11 +2833,6 @@ declare const WorkflowTransitionPayloadSchema: z.ZodObject<{
|
|
|
2092
2833
|
stageId: string;
|
|
2093
2834
|
stageName: string;
|
|
2094
2835
|
};
|
|
2095
|
-
initiator: {
|
|
2096
|
-
id: string;
|
|
2097
|
-
name?: string | undefined;
|
|
2098
|
-
email?: string | undefined;
|
|
2099
|
-
};
|
|
2100
2836
|
previousStage?: {
|
|
2101
2837
|
workflowId: string;
|
|
2102
2838
|
workflowName: string;
|
|
@@ -2108,11 +2844,17 @@ declare const WorkflowTransitionPayloadSchema: z.ZodObject<{
|
|
|
2108
2844
|
id: string;
|
|
2109
2845
|
url: string;
|
|
2110
2846
|
};
|
|
2847
|
+
initiator: {
|
|
2848
|
+
id: string;
|
|
2849
|
+
is_api_key: boolean;
|
|
2850
|
+
name?: string | undefined;
|
|
2851
|
+
email?: string | undefined;
|
|
2852
|
+
};
|
|
2111
2853
|
timestamp: string;
|
|
2112
2854
|
entity: {
|
|
2855
|
+
type: "entry" | "component";
|
|
2113
2856
|
id: string;
|
|
2114
2857
|
name: string;
|
|
2115
|
-
type: "entry" | "component";
|
|
2116
2858
|
url: string;
|
|
2117
2859
|
editionId?: string | undefined;
|
|
2118
2860
|
releaseId?: string | undefined;
|
|
@@ -2123,11 +2865,6 @@ declare const WorkflowTransitionPayloadSchema: z.ZodObject<{
|
|
|
2123
2865
|
stageId: string;
|
|
2124
2866
|
stageName: string;
|
|
2125
2867
|
};
|
|
2126
|
-
initiator: {
|
|
2127
|
-
id: string;
|
|
2128
|
-
name?: string | undefined;
|
|
2129
|
-
email?: string | undefined;
|
|
2130
|
-
};
|
|
2131
2868
|
previousStage?: {
|
|
2132
2869
|
workflowId: string;
|
|
2133
2870
|
workflowName: string;
|
|
@@ -2145,16 +2882,16 @@ declare const WorkflowTransitionDefinition: Definition<z.ZodObject<{
|
|
|
2145
2882
|
releaseId: z.ZodOptional<z.ZodString>;
|
|
2146
2883
|
url: z.ZodString;
|
|
2147
2884
|
}, "strict", z.ZodTypeAny, {
|
|
2885
|
+
type: "entry" | "component";
|
|
2148
2886
|
id: string;
|
|
2149
2887
|
name: string;
|
|
2150
|
-
type: "entry" | "component";
|
|
2151
2888
|
url: string;
|
|
2152
2889
|
editionId?: string | undefined;
|
|
2153
2890
|
releaseId?: string | undefined;
|
|
2154
2891
|
}, {
|
|
2892
|
+
type: "entry" | "component";
|
|
2155
2893
|
id: string;
|
|
2156
2894
|
name: string;
|
|
2157
|
-
type: "entry" | "component";
|
|
2158
2895
|
url: string;
|
|
2159
2896
|
editionId?: string | undefined;
|
|
2160
2897
|
releaseId?: string | undefined;
|
|
@@ -2195,12 +2932,15 @@ declare const WorkflowTransitionDefinition: Definition<z.ZodObject<{
|
|
|
2195
2932
|
id: z.ZodString;
|
|
2196
2933
|
name: z.ZodOptional<z.ZodString>;
|
|
2197
2934
|
email: z.ZodOptional<z.ZodString>;
|
|
2935
|
+
is_api_key: z.ZodBoolean;
|
|
2198
2936
|
}, "strict", z.ZodTypeAny, {
|
|
2199
2937
|
id: string;
|
|
2938
|
+
is_api_key: boolean;
|
|
2200
2939
|
name?: string | undefined;
|
|
2201
2940
|
email?: string | undefined;
|
|
2202
2941
|
}, {
|
|
2203
2942
|
id: string;
|
|
2943
|
+
is_api_key: boolean;
|
|
2204
2944
|
name?: string | undefined;
|
|
2205
2945
|
email?: string | undefined;
|
|
2206
2946
|
}>;
|
|
@@ -2220,11 +2960,17 @@ declare const WorkflowTransitionDefinition: Definition<z.ZodObject<{
|
|
|
2220
2960
|
id: string;
|
|
2221
2961
|
url: string;
|
|
2222
2962
|
};
|
|
2963
|
+
initiator: {
|
|
2964
|
+
id: string;
|
|
2965
|
+
is_api_key: boolean;
|
|
2966
|
+
name?: string | undefined;
|
|
2967
|
+
email?: string | undefined;
|
|
2968
|
+
};
|
|
2223
2969
|
timestamp: string;
|
|
2224
2970
|
entity: {
|
|
2971
|
+
type: "entry" | "component";
|
|
2225
2972
|
id: string;
|
|
2226
2973
|
name: string;
|
|
2227
|
-
type: "entry" | "component";
|
|
2228
2974
|
url: string;
|
|
2229
2975
|
editionId?: string | undefined;
|
|
2230
2976
|
releaseId?: string | undefined;
|
|
@@ -2235,11 +2981,6 @@ declare const WorkflowTransitionDefinition: Definition<z.ZodObject<{
|
|
|
2235
2981
|
stageId: string;
|
|
2236
2982
|
stageName: string;
|
|
2237
2983
|
};
|
|
2238
|
-
initiator: {
|
|
2239
|
-
id: string;
|
|
2240
|
-
name?: string | undefined;
|
|
2241
|
-
email?: string | undefined;
|
|
2242
|
-
};
|
|
2243
2984
|
previousStage?: {
|
|
2244
2985
|
workflowId: string;
|
|
2245
2986
|
workflowName: string;
|
|
@@ -2251,11 +2992,17 @@ declare const WorkflowTransitionDefinition: Definition<z.ZodObject<{
|
|
|
2251
2992
|
id: string;
|
|
2252
2993
|
url: string;
|
|
2253
2994
|
};
|
|
2995
|
+
initiator: {
|
|
2996
|
+
id: string;
|
|
2997
|
+
is_api_key: boolean;
|
|
2998
|
+
name?: string | undefined;
|
|
2999
|
+
email?: string | undefined;
|
|
3000
|
+
};
|
|
2254
3001
|
timestamp: string;
|
|
2255
3002
|
entity: {
|
|
3003
|
+
type: "entry" | "component";
|
|
2256
3004
|
id: string;
|
|
2257
3005
|
name: string;
|
|
2258
|
-
type: "entry" | "component";
|
|
2259
3006
|
url: string;
|
|
2260
3007
|
editionId?: string | undefined;
|
|
2261
3008
|
releaseId?: string | undefined;
|
|
@@ -2266,11 +3013,6 @@ declare const WorkflowTransitionDefinition: Definition<z.ZodObject<{
|
|
|
2266
3013
|
stageId: string;
|
|
2267
3014
|
stageName: string;
|
|
2268
3015
|
};
|
|
2269
|
-
initiator: {
|
|
2270
|
-
id: string;
|
|
2271
|
-
name?: string | undefined;
|
|
2272
|
-
email?: string | undefined;
|
|
2273
|
-
};
|
|
2274
3016
|
previousStage?: {
|
|
2275
3017
|
workflowId: string;
|
|
2276
3018
|
workflowName: string;
|
|
@@ -2281,4 +3023,4 @@ declare const WorkflowTransitionDefinition: Definition<z.ZodObject<{
|
|
|
2281
3023
|
type WorkflowTransitionPayload = z.infer<(typeof WorkflowTransitionDefinition)['schema']>;
|
|
2282
3024
|
declare const WorkflowTransitionEventName: string;
|
|
2283
3025
|
|
|
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,
|
|
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 };
|