@uniformdev/webhooks 19.79.0 → 19.79.1-alpha.13
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 +217 -1
- package/dist/index.d.ts +217 -1
- package/dist/index.esm.js +180 -62
- package/dist/index.js +187 -62
- package/dist/index.mjs +180 -62
- package/package.json +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -5,6 +5,7 @@ declare const CompositionPayloadSchema: z.ZodObject<{
|
|
|
5
5
|
slug: z.ZodOptional<z.ZodString>;
|
|
6
6
|
state: z.ZodNumber;
|
|
7
7
|
name: z.ZodString;
|
|
8
|
+
type: z.ZodString;
|
|
8
9
|
project: z.ZodObject<{
|
|
9
10
|
id: z.ZodString;
|
|
10
11
|
url: z.ZodString;
|
|
@@ -16,25 +17,33 @@ declare const CompositionPayloadSchema: z.ZodObject<{
|
|
|
16
17
|
url: string;
|
|
17
18
|
}>;
|
|
18
19
|
edit_url: z.ZodString;
|
|
20
|
+
api_url: z.ZodString;
|
|
21
|
+
edge_url: z.ZodString;
|
|
19
22
|
}, "strip", z.ZodTypeAny, {
|
|
20
23
|
id: string;
|
|
21
24
|
state: number;
|
|
22
25
|
name: string;
|
|
26
|
+
type: string;
|
|
23
27
|
project: {
|
|
24
28
|
id: string;
|
|
25
29
|
url: string;
|
|
26
30
|
};
|
|
27
31
|
edit_url: string;
|
|
32
|
+
api_url: string;
|
|
33
|
+
edge_url: string;
|
|
28
34
|
slug?: string | undefined;
|
|
29
35
|
}, {
|
|
30
36
|
id: string;
|
|
31
37
|
state: number;
|
|
32
38
|
name: string;
|
|
39
|
+
type: string;
|
|
33
40
|
project: {
|
|
34
41
|
id: string;
|
|
35
42
|
url: string;
|
|
36
43
|
};
|
|
37
44
|
edit_url: string;
|
|
45
|
+
api_url: string;
|
|
46
|
+
edge_url: string;
|
|
38
47
|
slug?: string | undefined;
|
|
39
48
|
}>;
|
|
40
49
|
type CompositionPayload = z.infer<typeof CompositionPayloadSchema>;
|
|
@@ -57,6 +66,7 @@ declare const CompositionChangedDefinition: Definition<z.ZodObject<{
|
|
|
57
66
|
slug: z.ZodOptional<z.ZodString>;
|
|
58
67
|
state: z.ZodNumber;
|
|
59
68
|
name: z.ZodString;
|
|
69
|
+
type: z.ZodString;
|
|
60
70
|
project: z.ZodObject<{
|
|
61
71
|
id: z.ZodString;
|
|
62
72
|
url: z.ZodString;
|
|
@@ -68,25 +78,33 @@ declare const CompositionChangedDefinition: Definition<z.ZodObject<{
|
|
|
68
78
|
url: string;
|
|
69
79
|
}>;
|
|
70
80
|
edit_url: z.ZodString;
|
|
81
|
+
api_url: z.ZodString;
|
|
82
|
+
edge_url: z.ZodString;
|
|
71
83
|
}, "strip", z.ZodTypeAny, {
|
|
72
84
|
id: string;
|
|
73
85
|
state: number;
|
|
74
86
|
name: string;
|
|
87
|
+
type: string;
|
|
75
88
|
project: {
|
|
76
89
|
id: string;
|
|
77
90
|
url: string;
|
|
78
91
|
};
|
|
79
92
|
edit_url: string;
|
|
93
|
+
api_url: string;
|
|
94
|
+
edge_url: string;
|
|
80
95
|
slug?: string | undefined;
|
|
81
96
|
}, {
|
|
82
97
|
id: string;
|
|
83
98
|
state: number;
|
|
84
99
|
name: string;
|
|
100
|
+
type: string;
|
|
85
101
|
project: {
|
|
86
102
|
id: string;
|
|
87
103
|
url: string;
|
|
88
104
|
};
|
|
89
105
|
edit_url: string;
|
|
106
|
+
api_url: string;
|
|
107
|
+
edge_url: string;
|
|
90
108
|
slug?: string | undefined;
|
|
91
109
|
}>>;
|
|
92
110
|
type CompositionChangedPayload = z.infer<(typeof CompositionChangedDefinition)['schema']>;
|
|
@@ -96,6 +114,7 @@ declare const CompositionDeletedDefinition: Definition<z.ZodObject<{
|
|
|
96
114
|
id: z.ZodString;
|
|
97
115
|
state: z.ZodOptional<z.ZodNumber>;
|
|
98
116
|
name: z.ZodString;
|
|
117
|
+
type: z.ZodString;
|
|
99
118
|
slug: z.ZodOptional<z.ZodString>;
|
|
100
119
|
project: z.ZodObject<{
|
|
101
120
|
id: z.ZodString;
|
|
@@ -110,6 +129,7 @@ declare const CompositionDeletedDefinition: Definition<z.ZodObject<{
|
|
|
110
129
|
}, "strip", z.ZodTypeAny, {
|
|
111
130
|
id: string;
|
|
112
131
|
name: string;
|
|
132
|
+
type: string;
|
|
113
133
|
project: {
|
|
114
134
|
id: string;
|
|
115
135
|
url: string;
|
|
@@ -119,6 +139,7 @@ declare const CompositionDeletedDefinition: Definition<z.ZodObject<{
|
|
|
119
139
|
}, {
|
|
120
140
|
id: string;
|
|
121
141
|
name: string;
|
|
142
|
+
type: string;
|
|
122
143
|
project: {
|
|
123
144
|
id: string;
|
|
124
145
|
url: string;
|
|
@@ -134,6 +155,7 @@ declare const CompositionPublishedDefinition: Definition<z.ZodObject<{
|
|
|
134
155
|
slug: z.ZodOptional<z.ZodString>;
|
|
135
156
|
state: z.ZodNumber;
|
|
136
157
|
name: z.ZodString;
|
|
158
|
+
type: z.ZodString;
|
|
137
159
|
project: z.ZodObject<{
|
|
138
160
|
id: z.ZodString;
|
|
139
161
|
url: z.ZodString;
|
|
@@ -145,30 +167,224 @@ declare const CompositionPublishedDefinition: Definition<z.ZodObject<{
|
|
|
145
167
|
url: string;
|
|
146
168
|
}>;
|
|
147
169
|
edit_url: z.ZodString;
|
|
170
|
+
api_url: z.ZodString;
|
|
171
|
+
edge_url: z.ZodString;
|
|
148
172
|
}, "strip", z.ZodTypeAny, {
|
|
149
173
|
id: string;
|
|
150
174
|
state: number;
|
|
151
175
|
name: string;
|
|
176
|
+
type: string;
|
|
152
177
|
project: {
|
|
153
178
|
id: string;
|
|
154
179
|
url: string;
|
|
155
180
|
};
|
|
156
181
|
edit_url: string;
|
|
182
|
+
api_url: string;
|
|
183
|
+
edge_url: string;
|
|
157
184
|
slug?: string | undefined;
|
|
158
185
|
}, {
|
|
159
186
|
id: string;
|
|
160
187
|
state: number;
|
|
161
188
|
name: string;
|
|
189
|
+
type: string;
|
|
162
190
|
project: {
|
|
163
191
|
id: string;
|
|
164
192
|
url: string;
|
|
165
193
|
};
|
|
166
194
|
edit_url: string;
|
|
195
|
+
api_url: string;
|
|
196
|
+
edge_url: string;
|
|
167
197
|
slug?: string | undefined;
|
|
168
198
|
}>>;
|
|
169
199
|
type CompositionPublishedPayload = z.infer<(typeof CompositionPublishedDefinition)['schema']>;
|
|
170
200
|
declare const CompositionPublishedEventName: string;
|
|
171
201
|
|
|
202
|
+
declare const EntryPayloadSchema: z.ZodObject<{
|
|
203
|
+
id: z.ZodString;
|
|
204
|
+
slug: z.ZodOptional<z.ZodString>;
|
|
205
|
+
state: z.ZodNumber;
|
|
206
|
+
name: z.ZodString;
|
|
207
|
+
type: z.ZodString;
|
|
208
|
+
project: z.ZodObject<{
|
|
209
|
+
id: z.ZodString;
|
|
210
|
+
url: z.ZodString;
|
|
211
|
+
}, "strip", z.ZodTypeAny, {
|
|
212
|
+
id: string;
|
|
213
|
+
url: string;
|
|
214
|
+
}, {
|
|
215
|
+
id: string;
|
|
216
|
+
url: string;
|
|
217
|
+
}>;
|
|
218
|
+
edit_url: z.ZodString;
|
|
219
|
+
api_url: z.ZodString;
|
|
220
|
+
edge_url: z.ZodString;
|
|
221
|
+
}, "strip", z.ZodTypeAny, {
|
|
222
|
+
id: string;
|
|
223
|
+
state: number;
|
|
224
|
+
name: string;
|
|
225
|
+
type: string;
|
|
226
|
+
project: {
|
|
227
|
+
id: string;
|
|
228
|
+
url: string;
|
|
229
|
+
};
|
|
230
|
+
edit_url: string;
|
|
231
|
+
api_url: string;
|
|
232
|
+
edge_url: string;
|
|
233
|
+
slug?: string | undefined;
|
|
234
|
+
}, {
|
|
235
|
+
id: string;
|
|
236
|
+
state: number;
|
|
237
|
+
name: string;
|
|
238
|
+
type: string;
|
|
239
|
+
project: {
|
|
240
|
+
id: string;
|
|
241
|
+
url: string;
|
|
242
|
+
};
|
|
243
|
+
edit_url: string;
|
|
244
|
+
api_url: string;
|
|
245
|
+
edge_url: string;
|
|
246
|
+
slug?: string | undefined;
|
|
247
|
+
}>;
|
|
248
|
+
type EntryPayload = z.infer<typeof EntryPayloadSchema>;
|
|
249
|
+
|
|
250
|
+
declare const EntryChangedDefinition: Definition<z.ZodObject<{
|
|
251
|
+
id: z.ZodString;
|
|
252
|
+
slug: z.ZodOptional<z.ZodString>;
|
|
253
|
+
state: z.ZodNumber;
|
|
254
|
+
name: z.ZodString;
|
|
255
|
+
type: z.ZodString;
|
|
256
|
+
project: z.ZodObject<{
|
|
257
|
+
id: z.ZodString;
|
|
258
|
+
url: z.ZodString;
|
|
259
|
+
}, "strip", z.ZodTypeAny, {
|
|
260
|
+
id: string;
|
|
261
|
+
url: string;
|
|
262
|
+
}, {
|
|
263
|
+
id: string;
|
|
264
|
+
url: string;
|
|
265
|
+
}>;
|
|
266
|
+
edit_url: z.ZodString;
|
|
267
|
+
api_url: z.ZodString;
|
|
268
|
+
edge_url: z.ZodString;
|
|
269
|
+
}, "strip", z.ZodTypeAny, {
|
|
270
|
+
id: string;
|
|
271
|
+
state: number;
|
|
272
|
+
name: string;
|
|
273
|
+
type: string;
|
|
274
|
+
project: {
|
|
275
|
+
id: string;
|
|
276
|
+
url: string;
|
|
277
|
+
};
|
|
278
|
+
edit_url: string;
|
|
279
|
+
api_url: string;
|
|
280
|
+
edge_url: string;
|
|
281
|
+
slug?: string | undefined;
|
|
282
|
+
}, {
|
|
283
|
+
id: string;
|
|
284
|
+
state: number;
|
|
285
|
+
name: string;
|
|
286
|
+
type: string;
|
|
287
|
+
project: {
|
|
288
|
+
id: string;
|
|
289
|
+
url: string;
|
|
290
|
+
};
|
|
291
|
+
edit_url: string;
|
|
292
|
+
api_url: string;
|
|
293
|
+
edge_url: string;
|
|
294
|
+
slug?: string | undefined;
|
|
295
|
+
}>>;
|
|
296
|
+
type EntryChangedPayload = z.infer<(typeof EntryChangedDefinition)['schema']>;
|
|
297
|
+
declare const EntryChangedEventName: string;
|
|
298
|
+
|
|
299
|
+
declare const EntryDeletedDefinition: Definition<z.ZodObject<{
|
|
300
|
+
id: z.ZodString;
|
|
301
|
+
state: z.ZodOptional<z.ZodNumber>;
|
|
302
|
+
name: z.ZodString;
|
|
303
|
+
type: z.ZodString;
|
|
304
|
+
slug: z.ZodOptional<z.ZodString>;
|
|
305
|
+
project: z.ZodObject<{
|
|
306
|
+
id: z.ZodString;
|
|
307
|
+
url: z.ZodString;
|
|
308
|
+
}, "strip", z.ZodTypeAny, {
|
|
309
|
+
id: string;
|
|
310
|
+
url: string;
|
|
311
|
+
}, {
|
|
312
|
+
id: string;
|
|
313
|
+
url: string;
|
|
314
|
+
}>;
|
|
315
|
+
}, "strip", z.ZodTypeAny, {
|
|
316
|
+
id: string;
|
|
317
|
+
name: string;
|
|
318
|
+
type: string;
|
|
319
|
+
project: {
|
|
320
|
+
id: string;
|
|
321
|
+
url: string;
|
|
322
|
+
};
|
|
323
|
+
state?: number | undefined;
|
|
324
|
+
slug?: string | undefined;
|
|
325
|
+
}, {
|
|
326
|
+
id: string;
|
|
327
|
+
name: string;
|
|
328
|
+
type: string;
|
|
329
|
+
project: {
|
|
330
|
+
id: string;
|
|
331
|
+
url: string;
|
|
332
|
+
};
|
|
333
|
+
state?: number | undefined;
|
|
334
|
+
slug?: string | undefined;
|
|
335
|
+
}>>;
|
|
336
|
+
type EntryDeletedPayload = z.infer<(typeof EntryDeletedDefinition)['schema']>;
|
|
337
|
+
declare const EntryDeletedEventName: string;
|
|
338
|
+
|
|
339
|
+
declare const EntryPublishedDefinition: Definition<z.ZodObject<{
|
|
340
|
+
id: z.ZodString;
|
|
341
|
+
slug: z.ZodOptional<z.ZodString>;
|
|
342
|
+
state: z.ZodNumber;
|
|
343
|
+
name: z.ZodString;
|
|
344
|
+
type: z.ZodString;
|
|
345
|
+
project: z.ZodObject<{
|
|
346
|
+
id: z.ZodString;
|
|
347
|
+
url: z.ZodString;
|
|
348
|
+
}, "strip", z.ZodTypeAny, {
|
|
349
|
+
id: string;
|
|
350
|
+
url: string;
|
|
351
|
+
}, {
|
|
352
|
+
id: string;
|
|
353
|
+
url: string;
|
|
354
|
+
}>;
|
|
355
|
+
edit_url: z.ZodString;
|
|
356
|
+
api_url: z.ZodString;
|
|
357
|
+
edge_url: z.ZodString;
|
|
358
|
+
}, "strip", z.ZodTypeAny, {
|
|
359
|
+
id: string;
|
|
360
|
+
state: number;
|
|
361
|
+
name: string;
|
|
362
|
+
type: string;
|
|
363
|
+
project: {
|
|
364
|
+
id: string;
|
|
365
|
+
url: string;
|
|
366
|
+
};
|
|
367
|
+
edit_url: string;
|
|
368
|
+
api_url: string;
|
|
369
|
+
edge_url: string;
|
|
370
|
+
slug?: string | undefined;
|
|
371
|
+
}, {
|
|
372
|
+
id: string;
|
|
373
|
+
state: number;
|
|
374
|
+
name: string;
|
|
375
|
+
type: string;
|
|
376
|
+
project: {
|
|
377
|
+
id: string;
|
|
378
|
+
url: string;
|
|
379
|
+
};
|
|
380
|
+
edit_url: string;
|
|
381
|
+
api_url: string;
|
|
382
|
+
edge_url: string;
|
|
383
|
+
slug?: string | undefined;
|
|
384
|
+
}>>;
|
|
385
|
+
type EntryPublishedPayload = z.infer<(typeof EntryPublishedDefinition)['schema']>;
|
|
386
|
+
declare const EntryPublishedEventName: string;
|
|
387
|
+
|
|
172
388
|
declare const ManifestPublishedDefinition: Definition<z.ZodObject<{
|
|
173
389
|
timestamp: z.ZodNumber;
|
|
174
390
|
site: z.ZodObject<{
|
|
@@ -364,4 +580,4 @@ declare const RedirectUpdateDefinition: Definition<z.ZodObject<{
|
|
|
364
580
|
type RedirectUpdatedPayload = z.infer<(typeof RedirectUpdateDefinition)['schema']>;
|
|
365
581
|
declare const RedirectUpdatedEventName: string;
|
|
366
582
|
|
|
367
|
-
export { CompositionChangedDefinition, CompositionChangedEventName, CompositionChangedPayload, CompositionDeletedDefinition, CompositionDeletedEventName, CompositionDeletedPayload, CompositionPayload, CompositionPayloadSchema, CompositionPublishedDefinition, CompositionPublishedEventName, CompositionPublishedPayload, Definition, DefinitionOptions, ManifestPublishedDefinition, ManifestPublishedEventName, ManifestPublishedPayload, ProjectMapDeleteDefinition, ProjectMapDeletedEventName, ProjectMapDeletedPayload, ProjectMapNodeDeleteDefinition, ProjectMapNodeDeletedEventName, ProjectMapNodeDeletedPayload, ProjectMapNodeInsertDefinition, ProjectMapNodeInsertedEventName, ProjectMapNodeInsertedPayload, ProjectMapNodeUpdateDefinition, ProjectMapNodeUpdatedEventName, ProjectMapNodeUpdatedPayload, ProjectMapUpdateDefinition, ProjectMapUpdatedEventName, ProjectMapUpdatedPayload, RedirectDeleteDefinition, RedirectDeletedEventName, RedirectDeletedPayload, RedirectInsertDefinition, RedirectInsertedEventName, RedirectInsertedPayload, RedirectUpdateDefinition, RedirectUpdatedEventName, RedirectUpdatedPayload, definition, isDefinition };
|
|
583
|
+
export { CompositionChangedDefinition, CompositionChangedEventName, type CompositionChangedPayload, CompositionDeletedDefinition, CompositionDeletedEventName, type CompositionDeletedPayload, type CompositionPayload, CompositionPayloadSchema, CompositionPublishedDefinition, CompositionPublishedEventName, type CompositionPublishedPayload, type Definition, type DefinitionOptions, EntryChangedDefinition, EntryChangedEventName, type EntryChangedPayload, EntryDeletedDefinition, EntryDeletedEventName, type EntryDeletedPayload, type EntryPayload, EntryPayloadSchema, EntryPublishedDefinition, EntryPublishedEventName, type EntryPublishedPayload, 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, definition, isDefinition };
|
package/dist/index.d.ts
CHANGED
|
@@ -5,6 +5,7 @@ declare const CompositionPayloadSchema: z.ZodObject<{
|
|
|
5
5
|
slug: z.ZodOptional<z.ZodString>;
|
|
6
6
|
state: z.ZodNumber;
|
|
7
7
|
name: z.ZodString;
|
|
8
|
+
type: z.ZodString;
|
|
8
9
|
project: z.ZodObject<{
|
|
9
10
|
id: z.ZodString;
|
|
10
11
|
url: z.ZodString;
|
|
@@ -16,25 +17,33 @@ declare const CompositionPayloadSchema: z.ZodObject<{
|
|
|
16
17
|
url: string;
|
|
17
18
|
}>;
|
|
18
19
|
edit_url: z.ZodString;
|
|
20
|
+
api_url: z.ZodString;
|
|
21
|
+
edge_url: z.ZodString;
|
|
19
22
|
}, "strip", z.ZodTypeAny, {
|
|
20
23
|
id: string;
|
|
21
24
|
state: number;
|
|
22
25
|
name: string;
|
|
26
|
+
type: string;
|
|
23
27
|
project: {
|
|
24
28
|
id: string;
|
|
25
29
|
url: string;
|
|
26
30
|
};
|
|
27
31
|
edit_url: string;
|
|
32
|
+
api_url: string;
|
|
33
|
+
edge_url: string;
|
|
28
34
|
slug?: string | undefined;
|
|
29
35
|
}, {
|
|
30
36
|
id: string;
|
|
31
37
|
state: number;
|
|
32
38
|
name: string;
|
|
39
|
+
type: string;
|
|
33
40
|
project: {
|
|
34
41
|
id: string;
|
|
35
42
|
url: string;
|
|
36
43
|
};
|
|
37
44
|
edit_url: string;
|
|
45
|
+
api_url: string;
|
|
46
|
+
edge_url: string;
|
|
38
47
|
slug?: string | undefined;
|
|
39
48
|
}>;
|
|
40
49
|
type CompositionPayload = z.infer<typeof CompositionPayloadSchema>;
|
|
@@ -57,6 +66,7 @@ declare const CompositionChangedDefinition: Definition<z.ZodObject<{
|
|
|
57
66
|
slug: z.ZodOptional<z.ZodString>;
|
|
58
67
|
state: z.ZodNumber;
|
|
59
68
|
name: z.ZodString;
|
|
69
|
+
type: z.ZodString;
|
|
60
70
|
project: z.ZodObject<{
|
|
61
71
|
id: z.ZodString;
|
|
62
72
|
url: z.ZodString;
|
|
@@ -68,25 +78,33 @@ declare const CompositionChangedDefinition: Definition<z.ZodObject<{
|
|
|
68
78
|
url: string;
|
|
69
79
|
}>;
|
|
70
80
|
edit_url: z.ZodString;
|
|
81
|
+
api_url: z.ZodString;
|
|
82
|
+
edge_url: z.ZodString;
|
|
71
83
|
}, "strip", z.ZodTypeAny, {
|
|
72
84
|
id: string;
|
|
73
85
|
state: number;
|
|
74
86
|
name: string;
|
|
87
|
+
type: string;
|
|
75
88
|
project: {
|
|
76
89
|
id: string;
|
|
77
90
|
url: string;
|
|
78
91
|
};
|
|
79
92
|
edit_url: string;
|
|
93
|
+
api_url: string;
|
|
94
|
+
edge_url: string;
|
|
80
95
|
slug?: string | undefined;
|
|
81
96
|
}, {
|
|
82
97
|
id: string;
|
|
83
98
|
state: number;
|
|
84
99
|
name: string;
|
|
100
|
+
type: string;
|
|
85
101
|
project: {
|
|
86
102
|
id: string;
|
|
87
103
|
url: string;
|
|
88
104
|
};
|
|
89
105
|
edit_url: string;
|
|
106
|
+
api_url: string;
|
|
107
|
+
edge_url: string;
|
|
90
108
|
slug?: string | undefined;
|
|
91
109
|
}>>;
|
|
92
110
|
type CompositionChangedPayload = z.infer<(typeof CompositionChangedDefinition)['schema']>;
|
|
@@ -96,6 +114,7 @@ declare const CompositionDeletedDefinition: Definition<z.ZodObject<{
|
|
|
96
114
|
id: z.ZodString;
|
|
97
115
|
state: z.ZodOptional<z.ZodNumber>;
|
|
98
116
|
name: z.ZodString;
|
|
117
|
+
type: z.ZodString;
|
|
99
118
|
slug: z.ZodOptional<z.ZodString>;
|
|
100
119
|
project: z.ZodObject<{
|
|
101
120
|
id: z.ZodString;
|
|
@@ -110,6 +129,7 @@ declare const CompositionDeletedDefinition: Definition<z.ZodObject<{
|
|
|
110
129
|
}, "strip", z.ZodTypeAny, {
|
|
111
130
|
id: string;
|
|
112
131
|
name: string;
|
|
132
|
+
type: string;
|
|
113
133
|
project: {
|
|
114
134
|
id: string;
|
|
115
135
|
url: string;
|
|
@@ -119,6 +139,7 @@ declare const CompositionDeletedDefinition: Definition<z.ZodObject<{
|
|
|
119
139
|
}, {
|
|
120
140
|
id: string;
|
|
121
141
|
name: string;
|
|
142
|
+
type: string;
|
|
122
143
|
project: {
|
|
123
144
|
id: string;
|
|
124
145
|
url: string;
|
|
@@ -134,6 +155,7 @@ declare const CompositionPublishedDefinition: Definition<z.ZodObject<{
|
|
|
134
155
|
slug: z.ZodOptional<z.ZodString>;
|
|
135
156
|
state: z.ZodNumber;
|
|
136
157
|
name: z.ZodString;
|
|
158
|
+
type: z.ZodString;
|
|
137
159
|
project: z.ZodObject<{
|
|
138
160
|
id: z.ZodString;
|
|
139
161
|
url: z.ZodString;
|
|
@@ -145,30 +167,224 @@ declare const CompositionPublishedDefinition: Definition<z.ZodObject<{
|
|
|
145
167
|
url: string;
|
|
146
168
|
}>;
|
|
147
169
|
edit_url: z.ZodString;
|
|
170
|
+
api_url: z.ZodString;
|
|
171
|
+
edge_url: z.ZodString;
|
|
148
172
|
}, "strip", z.ZodTypeAny, {
|
|
149
173
|
id: string;
|
|
150
174
|
state: number;
|
|
151
175
|
name: string;
|
|
176
|
+
type: string;
|
|
152
177
|
project: {
|
|
153
178
|
id: string;
|
|
154
179
|
url: string;
|
|
155
180
|
};
|
|
156
181
|
edit_url: string;
|
|
182
|
+
api_url: string;
|
|
183
|
+
edge_url: string;
|
|
157
184
|
slug?: string | undefined;
|
|
158
185
|
}, {
|
|
159
186
|
id: string;
|
|
160
187
|
state: number;
|
|
161
188
|
name: string;
|
|
189
|
+
type: string;
|
|
162
190
|
project: {
|
|
163
191
|
id: string;
|
|
164
192
|
url: string;
|
|
165
193
|
};
|
|
166
194
|
edit_url: string;
|
|
195
|
+
api_url: string;
|
|
196
|
+
edge_url: string;
|
|
167
197
|
slug?: string | undefined;
|
|
168
198
|
}>>;
|
|
169
199
|
type CompositionPublishedPayload = z.infer<(typeof CompositionPublishedDefinition)['schema']>;
|
|
170
200
|
declare const CompositionPublishedEventName: string;
|
|
171
201
|
|
|
202
|
+
declare const EntryPayloadSchema: z.ZodObject<{
|
|
203
|
+
id: z.ZodString;
|
|
204
|
+
slug: z.ZodOptional<z.ZodString>;
|
|
205
|
+
state: z.ZodNumber;
|
|
206
|
+
name: z.ZodString;
|
|
207
|
+
type: z.ZodString;
|
|
208
|
+
project: z.ZodObject<{
|
|
209
|
+
id: z.ZodString;
|
|
210
|
+
url: z.ZodString;
|
|
211
|
+
}, "strip", z.ZodTypeAny, {
|
|
212
|
+
id: string;
|
|
213
|
+
url: string;
|
|
214
|
+
}, {
|
|
215
|
+
id: string;
|
|
216
|
+
url: string;
|
|
217
|
+
}>;
|
|
218
|
+
edit_url: z.ZodString;
|
|
219
|
+
api_url: z.ZodString;
|
|
220
|
+
edge_url: z.ZodString;
|
|
221
|
+
}, "strip", z.ZodTypeAny, {
|
|
222
|
+
id: string;
|
|
223
|
+
state: number;
|
|
224
|
+
name: string;
|
|
225
|
+
type: string;
|
|
226
|
+
project: {
|
|
227
|
+
id: string;
|
|
228
|
+
url: string;
|
|
229
|
+
};
|
|
230
|
+
edit_url: string;
|
|
231
|
+
api_url: string;
|
|
232
|
+
edge_url: string;
|
|
233
|
+
slug?: string | undefined;
|
|
234
|
+
}, {
|
|
235
|
+
id: string;
|
|
236
|
+
state: number;
|
|
237
|
+
name: string;
|
|
238
|
+
type: string;
|
|
239
|
+
project: {
|
|
240
|
+
id: string;
|
|
241
|
+
url: string;
|
|
242
|
+
};
|
|
243
|
+
edit_url: string;
|
|
244
|
+
api_url: string;
|
|
245
|
+
edge_url: string;
|
|
246
|
+
slug?: string | undefined;
|
|
247
|
+
}>;
|
|
248
|
+
type EntryPayload = z.infer<typeof EntryPayloadSchema>;
|
|
249
|
+
|
|
250
|
+
declare const EntryChangedDefinition: Definition<z.ZodObject<{
|
|
251
|
+
id: z.ZodString;
|
|
252
|
+
slug: z.ZodOptional<z.ZodString>;
|
|
253
|
+
state: z.ZodNumber;
|
|
254
|
+
name: z.ZodString;
|
|
255
|
+
type: z.ZodString;
|
|
256
|
+
project: z.ZodObject<{
|
|
257
|
+
id: z.ZodString;
|
|
258
|
+
url: z.ZodString;
|
|
259
|
+
}, "strip", z.ZodTypeAny, {
|
|
260
|
+
id: string;
|
|
261
|
+
url: string;
|
|
262
|
+
}, {
|
|
263
|
+
id: string;
|
|
264
|
+
url: string;
|
|
265
|
+
}>;
|
|
266
|
+
edit_url: z.ZodString;
|
|
267
|
+
api_url: z.ZodString;
|
|
268
|
+
edge_url: z.ZodString;
|
|
269
|
+
}, "strip", z.ZodTypeAny, {
|
|
270
|
+
id: string;
|
|
271
|
+
state: number;
|
|
272
|
+
name: string;
|
|
273
|
+
type: string;
|
|
274
|
+
project: {
|
|
275
|
+
id: string;
|
|
276
|
+
url: string;
|
|
277
|
+
};
|
|
278
|
+
edit_url: string;
|
|
279
|
+
api_url: string;
|
|
280
|
+
edge_url: string;
|
|
281
|
+
slug?: string | undefined;
|
|
282
|
+
}, {
|
|
283
|
+
id: string;
|
|
284
|
+
state: number;
|
|
285
|
+
name: string;
|
|
286
|
+
type: string;
|
|
287
|
+
project: {
|
|
288
|
+
id: string;
|
|
289
|
+
url: string;
|
|
290
|
+
};
|
|
291
|
+
edit_url: string;
|
|
292
|
+
api_url: string;
|
|
293
|
+
edge_url: string;
|
|
294
|
+
slug?: string | undefined;
|
|
295
|
+
}>>;
|
|
296
|
+
type EntryChangedPayload = z.infer<(typeof EntryChangedDefinition)['schema']>;
|
|
297
|
+
declare const EntryChangedEventName: string;
|
|
298
|
+
|
|
299
|
+
declare const EntryDeletedDefinition: Definition<z.ZodObject<{
|
|
300
|
+
id: z.ZodString;
|
|
301
|
+
state: z.ZodOptional<z.ZodNumber>;
|
|
302
|
+
name: z.ZodString;
|
|
303
|
+
type: z.ZodString;
|
|
304
|
+
slug: z.ZodOptional<z.ZodString>;
|
|
305
|
+
project: z.ZodObject<{
|
|
306
|
+
id: z.ZodString;
|
|
307
|
+
url: z.ZodString;
|
|
308
|
+
}, "strip", z.ZodTypeAny, {
|
|
309
|
+
id: string;
|
|
310
|
+
url: string;
|
|
311
|
+
}, {
|
|
312
|
+
id: string;
|
|
313
|
+
url: string;
|
|
314
|
+
}>;
|
|
315
|
+
}, "strip", z.ZodTypeAny, {
|
|
316
|
+
id: string;
|
|
317
|
+
name: string;
|
|
318
|
+
type: string;
|
|
319
|
+
project: {
|
|
320
|
+
id: string;
|
|
321
|
+
url: string;
|
|
322
|
+
};
|
|
323
|
+
state?: number | undefined;
|
|
324
|
+
slug?: string | undefined;
|
|
325
|
+
}, {
|
|
326
|
+
id: string;
|
|
327
|
+
name: string;
|
|
328
|
+
type: string;
|
|
329
|
+
project: {
|
|
330
|
+
id: string;
|
|
331
|
+
url: string;
|
|
332
|
+
};
|
|
333
|
+
state?: number | undefined;
|
|
334
|
+
slug?: string | undefined;
|
|
335
|
+
}>>;
|
|
336
|
+
type EntryDeletedPayload = z.infer<(typeof EntryDeletedDefinition)['schema']>;
|
|
337
|
+
declare const EntryDeletedEventName: string;
|
|
338
|
+
|
|
339
|
+
declare const EntryPublishedDefinition: Definition<z.ZodObject<{
|
|
340
|
+
id: z.ZodString;
|
|
341
|
+
slug: z.ZodOptional<z.ZodString>;
|
|
342
|
+
state: z.ZodNumber;
|
|
343
|
+
name: z.ZodString;
|
|
344
|
+
type: z.ZodString;
|
|
345
|
+
project: z.ZodObject<{
|
|
346
|
+
id: z.ZodString;
|
|
347
|
+
url: z.ZodString;
|
|
348
|
+
}, "strip", z.ZodTypeAny, {
|
|
349
|
+
id: string;
|
|
350
|
+
url: string;
|
|
351
|
+
}, {
|
|
352
|
+
id: string;
|
|
353
|
+
url: string;
|
|
354
|
+
}>;
|
|
355
|
+
edit_url: z.ZodString;
|
|
356
|
+
api_url: z.ZodString;
|
|
357
|
+
edge_url: z.ZodString;
|
|
358
|
+
}, "strip", z.ZodTypeAny, {
|
|
359
|
+
id: string;
|
|
360
|
+
state: number;
|
|
361
|
+
name: string;
|
|
362
|
+
type: string;
|
|
363
|
+
project: {
|
|
364
|
+
id: string;
|
|
365
|
+
url: string;
|
|
366
|
+
};
|
|
367
|
+
edit_url: string;
|
|
368
|
+
api_url: string;
|
|
369
|
+
edge_url: string;
|
|
370
|
+
slug?: string | undefined;
|
|
371
|
+
}, {
|
|
372
|
+
id: string;
|
|
373
|
+
state: number;
|
|
374
|
+
name: string;
|
|
375
|
+
type: string;
|
|
376
|
+
project: {
|
|
377
|
+
id: string;
|
|
378
|
+
url: string;
|
|
379
|
+
};
|
|
380
|
+
edit_url: string;
|
|
381
|
+
api_url: string;
|
|
382
|
+
edge_url: string;
|
|
383
|
+
slug?: string | undefined;
|
|
384
|
+
}>>;
|
|
385
|
+
type EntryPublishedPayload = z.infer<(typeof EntryPublishedDefinition)['schema']>;
|
|
386
|
+
declare const EntryPublishedEventName: string;
|
|
387
|
+
|
|
172
388
|
declare const ManifestPublishedDefinition: Definition<z.ZodObject<{
|
|
173
389
|
timestamp: z.ZodNumber;
|
|
174
390
|
site: z.ZodObject<{
|
|
@@ -364,4 +580,4 @@ declare const RedirectUpdateDefinition: Definition<z.ZodObject<{
|
|
|
364
580
|
type RedirectUpdatedPayload = z.infer<(typeof RedirectUpdateDefinition)['schema']>;
|
|
365
581
|
declare const RedirectUpdatedEventName: string;
|
|
366
582
|
|
|
367
|
-
export { CompositionChangedDefinition, CompositionChangedEventName, CompositionChangedPayload, CompositionDeletedDefinition, CompositionDeletedEventName, CompositionDeletedPayload, CompositionPayload, CompositionPayloadSchema, CompositionPublishedDefinition, CompositionPublishedEventName, CompositionPublishedPayload, Definition, DefinitionOptions, ManifestPublishedDefinition, ManifestPublishedEventName, ManifestPublishedPayload, ProjectMapDeleteDefinition, ProjectMapDeletedEventName, ProjectMapDeletedPayload, ProjectMapNodeDeleteDefinition, ProjectMapNodeDeletedEventName, ProjectMapNodeDeletedPayload, ProjectMapNodeInsertDefinition, ProjectMapNodeInsertedEventName, ProjectMapNodeInsertedPayload, ProjectMapNodeUpdateDefinition, ProjectMapNodeUpdatedEventName, ProjectMapNodeUpdatedPayload, ProjectMapUpdateDefinition, ProjectMapUpdatedEventName, ProjectMapUpdatedPayload, RedirectDeleteDefinition, RedirectDeletedEventName, RedirectDeletedPayload, RedirectInsertDefinition, RedirectInsertedEventName, RedirectInsertedPayload, RedirectUpdateDefinition, RedirectUpdatedEventName, RedirectUpdatedPayload, definition, isDefinition };
|
|
583
|
+
export { CompositionChangedDefinition, CompositionChangedEventName, type CompositionChangedPayload, CompositionDeletedDefinition, CompositionDeletedEventName, type CompositionDeletedPayload, type CompositionPayload, CompositionPayloadSchema, CompositionPublishedDefinition, CompositionPublishedEventName, type CompositionPublishedPayload, type Definition, type DefinitionOptions, EntryChangedDefinition, EntryChangedEventName, type EntryChangedPayload, EntryDeletedDefinition, EntryDeletedEventName, type EntryDeletedPayload, type EntryPayload, EntryPayloadSchema, EntryPublishedDefinition, EntryPublishedEventName, type EntryPublishedPayload, 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, definition, isDefinition };
|