@uniformdev/webhooks 19.83.0 → 19.84.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 +193 -1
- package/dist/index.d.ts +193 -1
- package/dist/index.esm.js +170 -62
- package/dist/index.js +177 -62
- package/dist/index.mjs +170 -62
- package/package.json +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -16,6 +16,8 @@ declare const CompositionPayloadSchema: z.ZodObject<{
|
|
|
16
16
|
url: string;
|
|
17
17
|
}>;
|
|
18
18
|
edit_url: z.ZodString;
|
|
19
|
+
api_url: z.ZodString;
|
|
20
|
+
edge_url: z.ZodString;
|
|
19
21
|
}, "strip", z.ZodTypeAny, {
|
|
20
22
|
id: string;
|
|
21
23
|
state: number;
|
|
@@ -25,6 +27,8 @@ declare const CompositionPayloadSchema: z.ZodObject<{
|
|
|
25
27
|
url: string;
|
|
26
28
|
};
|
|
27
29
|
edit_url: string;
|
|
30
|
+
api_url: string;
|
|
31
|
+
edge_url: string;
|
|
28
32
|
slug?: string | undefined;
|
|
29
33
|
}, {
|
|
30
34
|
id: string;
|
|
@@ -35,6 +39,8 @@ declare const CompositionPayloadSchema: z.ZodObject<{
|
|
|
35
39
|
url: string;
|
|
36
40
|
};
|
|
37
41
|
edit_url: string;
|
|
42
|
+
api_url: string;
|
|
43
|
+
edge_url: string;
|
|
38
44
|
slug?: string | undefined;
|
|
39
45
|
}>;
|
|
40
46
|
type CompositionPayload = z.infer<typeof CompositionPayloadSchema>;
|
|
@@ -68,6 +74,8 @@ declare const CompositionChangedDefinition: Definition<z.ZodObject<{
|
|
|
68
74
|
url: string;
|
|
69
75
|
}>;
|
|
70
76
|
edit_url: z.ZodString;
|
|
77
|
+
api_url: z.ZodString;
|
|
78
|
+
edge_url: z.ZodString;
|
|
71
79
|
}, "strip", z.ZodTypeAny, {
|
|
72
80
|
id: string;
|
|
73
81
|
state: number;
|
|
@@ -77,6 +85,8 @@ declare const CompositionChangedDefinition: Definition<z.ZodObject<{
|
|
|
77
85
|
url: string;
|
|
78
86
|
};
|
|
79
87
|
edit_url: string;
|
|
88
|
+
api_url: string;
|
|
89
|
+
edge_url: string;
|
|
80
90
|
slug?: string | undefined;
|
|
81
91
|
}, {
|
|
82
92
|
id: string;
|
|
@@ -87,6 +97,8 @@ declare const CompositionChangedDefinition: Definition<z.ZodObject<{
|
|
|
87
97
|
url: string;
|
|
88
98
|
};
|
|
89
99
|
edit_url: string;
|
|
100
|
+
api_url: string;
|
|
101
|
+
edge_url: string;
|
|
90
102
|
slug?: string | undefined;
|
|
91
103
|
}>>;
|
|
92
104
|
type CompositionChangedPayload = z.infer<(typeof CompositionChangedDefinition)['schema']>;
|
|
@@ -145,6 +157,8 @@ declare const CompositionPublishedDefinition: Definition<z.ZodObject<{
|
|
|
145
157
|
url: string;
|
|
146
158
|
}>;
|
|
147
159
|
edit_url: z.ZodString;
|
|
160
|
+
api_url: z.ZodString;
|
|
161
|
+
edge_url: z.ZodString;
|
|
148
162
|
}, "strip", z.ZodTypeAny, {
|
|
149
163
|
id: string;
|
|
150
164
|
state: number;
|
|
@@ -154,6 +168,8 @@ declare const CompositionPublishedDefinition: Definition<z.ZodObject<{
|
|
|
154
168
|
url: string;
|
|
155
169
|
};
|
|
156
170
|
edit_url: string;
|
|
171
|
+
api_url: string;
|
|
172
|
+
edge_url: string;
|
|
157
173
|
slug?: string | undefined;
|
|
158
174
|
}, {
|
|
159
175
|
id: string;
|
|
@@ -164,11 +180,187 @@ declare const CompositionPublishedDefinition: Definition<z.ZodObject<{
|
|
|
164
180
|
url: string;
|
|
165
181
|
};
|
|
166
182
|
edit_url: string;
|
|
183
|
+
api_url: string;
|
|
184
|
+
edge_url: string;
|
|
167
185
|
slug?: string | undefined;
|
|
168
186
|
}>>;
|
|
169
187
|
type CompositionPublishedPayload = z.infer<(typeof CompositionPublishedDefinition)['schema']>;
|
|
170
188
|
declare const CompositionPublishedEventName: string;
|
|
171
189
|
|
|
190
|
+
declare const EntryPayloadSchema: z.ZodObject<{
|
|
191
|
+
id: z.ZodString;
|
|
192
|
+
slug: z.ZodOptional<z.ZodString>;
|
|
193
|
+
state: z.ZodNumber;
|
|
194
|
+
name: z.ZodString;
|
|
195
|
+
project: z.ZodObject<{
|
|
196
|
+
id: z.ZodString;
|
|
197
|
+
url: z.ZodString;
|
|
198
|
+
}, "strip", z.ZodTypeAny, {
|
|
199
|
+
id: string;
|
|
200
|
+
url: string;
|
|
201
|
+
}, {
|
|
202
|
+
id: string;
|
|
203
|
+
url: string;
|
|
204
|
+
}>;
|
|
205
|
+
edit_url: z.ZodString;
|
|
206
|
+
api_url: z.ZodString;
|
|
207
|
+
edge_url: z.ZodString;
|
|
208
|
+
}, "strip", z.ZodTypeAny, {
|
|
209
|
+
id: string;
|
|
210
|
+
state: number;
|
|
211
|
+
name: string;
|
|
212
|
+
project: {
|
|
213
|
+
id: string;
|
|
214
|
+
url: string;
|
|
215
|
+
};
|
|
216
|
+
edit_url: string;
|
|
217
|
+
api_url: string;
|
|
218
|
+
edge_url: string;
|
|
219
|
+
slug?: string | undefined;
|
|
220
|
+
}, {
|
|
221
|
+
id: string;
|
|
222
|
+
state: number;
|
|
223
|
+
name: string;
|
|
224
|
+
project: {
|
|
225
|
+
id: string;
|
|
226
|
+
url: string;
|
|
227
|
+
};
|
|
228
|
+
edit_url: string;
|
|
229
|
+
api_url: string;
|
|
230
|
+
edge_url: string;
|
|
231
|
+
slug?: string | undefined;
|
|
232
|
+
}>;
|
|
233
|
+
type EntryPayload = z.infer<typeof EntryPayloadSchema>;
|
|
234
|
+
|
|
235
|
+
declare const EntryChangedDefinition: Definition<z.ZodObject<{
|
|
236
|
+
id: z.ZodString;
|
|
237
|
+
slug: z.ZodOptional<z.ZodString>;
|
|
238
|
+
state: z.ZodNumber;
|
|
239
|
+
name: z.ZodString;
|
|
240
|
+
project: z.ZodObject<{
|
|
241
|
+
id: z.ZodString;
|
|
242
|
+
url: z.ZodString;
|
|
243
|
+
}, "strip", z.ZodTypeAny, {
|
|
244
|
+
id: string;
|
|
245
|
+
url: string;
|
|
246
|
+
}, {
|
|
247
|
+
id: string;
|
|
248
|
+
url: string;
|
|
249
|
+
}>;
|
|
250
|
+
edit_url: z.ZodString;
|
|
251
|
+
api_url: z.ZodString;
|
|
252
|
+
edge_url: z.ZodString;
|
|
253
|
+
}, "strip", z.ZodTypeAny, {
|
|
254
|
+
id: string;
|
|
255
|
+
state: number;
|
|
256
|
+
name: string;
|
|
257
|
+
project: {
|
|
258
|
+
id: string;
|
|
259
|
+
url: string;
|
|
260
|
+
};
|
|
261
|
+
edit_url: string;
|
|
262
|
+
api_url: string;
|
|
263
|
+
edge_url: string;
|
|
264
|
+
slug?: string | undefined;
|
|
265
|
+
}, {
|
|
266
|
+
id: string;
|
|
267
|
+
state: number;
|
|
268
|
+
name: string;
|
|
269
|
+
project: {
|
|
270
|
+
id: string;
|
|
271
|
+
url: string;
|
|
272
|
+
};
|
|
273
|
+
edit_url: string;
|
|
274
|
+
api_url: string;
|
|
275
|
+
edge_url: string;
|
|
276
|
+
slug?: string | undefined;
|
|
277
|
+
}>>;
|
|
278
|
+
type EntryChangedPayload = z.infer<(typeof EntryChangedDefinition)['schema']>;
|
|
279
|
+
declare const EntryChangedEventName: string;
|
|
280
|
+
|
|
281
|
+
declare const EntryDeletedDefinition: Definition<z.ZodObject<{
|
|
282
|
+
id: z.ZodString;
|
|
283
|
+
state: z.ZodOptional<z.ZodNumber>;
|
|
284
|
+
name: z.ZodString;
|
|
285
|
+
slug: z.ZodOptional<z.ZodString>;
|
|
286
|
+
project: z.ZodObject<{
|
|
287
|
+
id: z.ZodString;
|
|
288
|
+
url: z.ZodString;
|
|
289
|
+
}, "strip", z.ZodTypeAny, {
|
|
290
|
+
id: string;
|
|
291
|
+
url: string;
|
|
292
|
+
}, {
|
|
293
|
+
id: string;
|
|
294
|
+
url: string;
|
|
295
|
+
}>;
|
|
296
|
+
}, "strip", z.ZodTypeAny, {
|
|
297
|
+
id: string;
|
|
298
|
+
name: string;
|
|
299
|
+
project: {
|
|
300
|
+
id: string;
|
|
301
|
+
url: string;
|
|
302
|
+
};
|
|
303
|
+
state?: number | undefined;
|
|
304
|
+
slug?: string | undefined;
|
|
305
|
+
}, {
|
|
306
|
+
id: string;
|
|
307
|
+
name: string;
|
|
308
|
+
project: {
|
|
309
|
+
id: string;
|
|
310
|
+
url: string;
|
|
311
|
+
};
|
|
312
|
+
state?: number | undefined;
|
|
313
|
+
slug?: string | undefined;
|
|
314
|
+
}>>;
|
|
315
|
+
type EntryDeletedPayload = z.infer<(typeof EntryDeletedDefinition)['schema']>;
|
|
316
|
+
declare const EntryDeletedEventName: string;
|
|
317
|
+
|
|
318
|
+
declare const EntryPublishedDefinition: Definition<z.ZodObject<{
|
|
319
|
+
id: z.ZodString;
|
|
320
|
+
slug: z.ZodOptional<z.ZodString>;
|
|
321
|
+
state: z.ZodNumber;
|
|
322
|
+
name: z.ZodString;
|
|
323
|
+
project: z.ZodObject<{
|
|
324
|
+
id: z.ZodString;
|
|
325
|
+
url: z.ZodString;
|
|
326
|
+
}, "strip", z.ZodTypeAny, {
|
|
327
|
+
id: string;
|
|
328
|
+
url: string;
|
|
329
|
+
}, {
|
|
330
|
+
id: string;
|
|
331
|
+
url: string;
|
|
332
|
+
}>;
|
|
333
|
+
edit_url: z.ZodString;
|
|
334
|
+
api_url: z.ZodString;
|
|
335
|
+
edge_url: z.ZodString;
|
|
336
|
+
}, "strip", z.ZodTypeAny, {
|
|
337
|
+
id: string;
|
|
338
|
+
state: number;
|
|
339
|
+
name: string;
|
|
340
|
+
project: {
|
|
341
|
+
id: string;
|
|
342
|
+
url: string;
|
|
343
|
+
};
|
|
344
|
+
edit_url: string;
|
|
345
|
+
api_url: string;
|
|
346
|
+
edge_url: string;
|
|
347
|
+
slug?: string | undefined;
|
|
348
|
+
}, {
|
|
349
|
+
id: string;
|
|
350
|
+
state: number;
|
|
351
|
+
name: string;
|
|
352
|
+
project: {
|
|
353
|
+
id: string;
|
|
354
|
+
url: string;
|
|
355
|
+
};
|
|
356
|
+
edit_url: string;
|
|
357
|
+
api_url: string;
|
|
358
|
+
edge_url: string;
|
|
359
|
+
slug?: string | undefined;
|
|
360
|
+
}>>;
|
|
361
|
+
type EntryPublishedPayload = z.infer<(typeof EntryPublishedDefinition)['schema']>;
|
|
362
|
+
declare const EntryPublishedEventName: string;
|
|
363
|
+
|
|
172
364
|
declare const ManifestPublishedDefinition: Definition<z.ZodObject<{
|
|
173
365
|
timestamp: z.ZodNumber;
|
|
174
366
|
site: z.ZodObject<{
|
|
@@ -364,4 +556,4 @@ declare const RedirectUpdateDefinition: Definition<z.ZodObject<{
|
|
|
364
556
|
type RedirectUpdatedPayload = z.infer<(typeof RedirectUpdateDefinition)['schema']>;
|
|
365
557
|
declare const RedirectUpdatedEventName: string;
|
|
366
558
|
|
|
367
|
-
export { CompositionChangedDefinition, CompositionChangedEventName, type CompositionChangedPayload, CompositionDeletedDefinition, CompositionDeletedEventName, type CompositionDeletedPayload, type CompositionPayload, CompositionPayloadSchema, CompositionPublishedDefinition, CompositionPublishedEventName, type CompositionPublishedPayload, type Definition, type DefinitionOptions, 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 };
|
|
559
|
+
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
|
@@ -16,6 +16,8 @@ declare const CompositionPayloadSchema: z.ZodObject<{
|
|
|
16
16
|
url: string;
|
|
17
17
|
}>;
|
|
18
18
|
edit_url: z.ZodString;
|
|
19
|
+
api_url: z.ZodString;
|
|
20
|
+
edge_url: z.ZodString;
|
|
19
21
|
}, "strip", z.ZodTypeAny, {
|
|
20
22
|
id: string;
|
|
21
23
|
state: number;
|
|
@@ -25,6 +27,8 @@ declare const CompositionPayloadSchema: z.ZodObject<{
|
|
|
25
27
|
url: string;
|
|
26
28
|
};
|
|
27
29
|
edit_url: string;
|
|
30
|
+
api_url: string;
|
|
31
|
+
edge_url: string;
|
|
28
32
|
slug?: string | undefined;
|
|
29
33
|
}, {
|
|
30
34
|
id: string;
|
|
@@ -35,6 +39,8 @@ declare const CompositionPayloadSchema: z.ZodObject<{
|
|
|
35
39
|
url: string;
|
|
36
40
|
};
|
|
37
41
|
edit_url: string;
|
|
42
|
+
api_url: string;
|
|
43
|
+
edge_url: string;
|
|
38
44
|
slug?: string | undefined;
|
|
39
45
|
}>;
|
|
40
46
|
type CompositionPayload = z.infer<typeof CompositionPayloadSchema>;
|
|
@@ -68,6 +74,8 @@ declare const CompositionChangedDefinition: Definition<z.ZodObject<{
|
|
|
68
74
|
url: string;
|
|
69
75
|
}>;
|
|
70
76
|
edit_url: z.ZodString;
|
|
77
|
+
api_url: z.ZodString;
|
|
78
|
+
edge_url: z.ZodString;
|
|
71
79
|
}, "strip", z.ZodTypeAny, {
|
|
72
80
|
id: string;
|
|
73
81
|
state: number;
|
|
@@ -77,6 +85,8 @@ declare const CompositionChangedDefinition: Definition<z.ZodObject<{
|
|
|
77
85
|
url: string;
|
|
78
86
|
};
|
|
79
87
|
edit_url: string;
|
|
88
|
+
api_url: string;
|
|
89
|
+
edge_url: string;
|
|
80
90
|
slug?: string | undefined;
|
|
81
91
|
}, {
|
|
82
92
|
id: string;
|
|
@@ -87,6 +97,8 @@ declare const CompositionChangedDefinition: Definition<z.ZodObject<{
|
|
|
87
97
|
url: string;
|
|
88
98
|
};
|
|
89
99
|
edit_url: string;
|
|
100
|
+
api_url: string;
|
|
101
|
+
edge_url: string;
|
|
90
102
|
slug?: string | undefined;
|
|
91
103
|
}>>;
|
|
92
104
|
type CompositionChangedPayload = z.infer<(typeof CompositionChangedDefinition)['schema']>;
|
|
@@ -145,6 +157,8 @@ declare const CompositionPublishedDefinition: Definition<z.ZodObject<{
|
|
|
145
157
|
url: string;
|
|
146
158
|
}>;
|
|
147
159
|
edit_url: z.ZodString;
|
|
160
|
+
api_url: z.ZodString;
|
|
161
|
+
edge_url: z.ZodString;
|
|
148
162
|
}, "strip", z.ZodTypeAny, {
|
|
149
163
|
id: string;
|
|
150
164
|
state: number;
|
|
@@ -154,6 +168,8 @@ declare const CompositionPublishedDefinition: Definition<z.ZodObject<{
|
|
|
154
168
|
url: string;
|
|
155
169
|
};
|
|
156
170
|
edit_url: string;
|
|
171
|
+
api_url: string;
|
|
172
|
+
edge_url: string;
|
|
157
173
|
slug?: string | undefined;
|
|
158
174
|
}, {
|
|
159
175
|
id: string;
|
|
@@ -164,11 +180,187 @@ declare const CompositionPublishedDefinition: Definition<z.ZodObject<{
|
|
|
164
180
|
url: string;
|
|
165
181
|
};
|
|
166
182
|
edit_url: string;
|
|
183
|
+
api_url: string;
|
|
184
|
+
edge_url: string;
|
|
167
185
|
slug?: string | undefined;
|
|
168
186
|
}>>;
|
|
169
187
|
type CompositionPublishedPayload = z.infer<(typeof CompositionPublishedDefinition)['schema']>;
|
|
170
188
|
declare const CompositionPublishedEventName: string;
|
|
171
189
|
|
|
190
|
+
declare const EntryPayloadSchema: z.ZodObject<{
|
|
191
|
+
id: z.ZodString;
|
|
192
|
+
slug: z.ZodOptional<z.ZodString>;
|
|
193
|
+
state: z.ZodNumber;
|
|
194
|
+
name: z.ZodString;
|
|
195
|
+
project: z.ZodObject<{
|
|
196
|
+
id: z.ZodString;
|
|
197
|
+
url: z.ZodString;
|
|
198
|
+
}, "strip", z.ZodTypeAny, {
|
|
199
|
+
id: string;
|
|
200
|
+
url: string;
|
|
201
|
+
}, {
|
|
202
|
+
id: string;
|
|
203
|
+
url: string;
|
|
204
|
+
}>;
|
|
205
|
+
edit_url: z.ZodString;
|
|
206
|
+
api_url: z.ZodString;
|
|
207
|
+
edge_url: z.ZodString;
|
|
208
|
+
}, "strip", z.ZodTypeAny, {
|
|
209
|
+
id: string;
|
|
210
|
+
state: number;
|
|
211
|
+
name: string;
|
|
212
|
+
project: {
|
|
213
|
+
id: string;
|
|
214
|
+
url: string;
|
|
215
|
+
};
|
|
216
|
+
edit_url: string;
|
|
217
|
+
api_url: string;
|
|
218
|
+
edge_url: string;
|
|
219
|
+
slug?: string | undefined;
|
|
220
|
+
}, {
|
|
221
|
+
id: string;
|
|
222
|
+
state: number;
|
|
223
|
+
name: string;
|
|
224
|
+
project: {
|
|
225
|
+
id: string;
|
|
226
|
+
url: string;
|
|
227
|
+
};
|
|
228
|
+
edit_url: string;
|
|
229
|
+
api_url: string;
|
|
230
|
+
edge_url: string;
|
|
231
|
+
slug?: string | undefined;
|
|
232
|
+
}>;
|
|
233
|
+
type EntryPayload = z.infer<typeof EntryPayloadSchema>;
|
|
234
|
+
|
|
235
|
+
declare const EntryChangedDefinition: Definition<z.ZodObject<{
|
|
236
|
+
id: z.ZodString;
|
|
237
|
+
slug: z.ZodOptional<z.ZodString>;
|
|
238
|
+
state: z.ZodNumber;
|
|
239
|
+
name: z.ZodString;
|
|
240
|
+
project: z.ZodObject<{
|
|
241
|
+
id: z.ZodString;
|
|
242
|
+
url: z.ZodString;
|
|
243
|
+
}, "strip", z.ZodTypeAny, {
|
|
244
|
+
id: string;
|
|
245
|
+
url: string;
|
|
246
|
+
}, {
|
|
247
|
+
id: string;
|
|
248
|
+
url: string;
|
|
249
|
+
}>;
|
|
250
|
+
edit_url: z.ZodString;
|
|
251
|
+
api_url: z.ZodString;
|
|
252
|
+
edge_url: z.ZodString;
|
|
253
|
+
}, "strip", z.ZodTypeAny, {
|
|
254
|
+
id: string;
|
|
255
|
+
state: number;
|
|
256
|
+
name: string;
|
|
257
|
+
project: {
|
|
258
|
+
id: string;
|
|
259
|
+
url: string;
|
|
260
|
+
};
|
|
261
|
+
edit_url: string;
|
|
262
|
+
api_url: string;
|
|
263
|
+
edge_url: string;
|
|
264
|
+
slug?: string | undefined;
|
|
265
|
+
}, {
|
|
266
|
+
id: string;
|
|
267
|
+
state: number;
|
|
268
|
+
name: string;
|
|
269
|
+
project: {
|
|
270
|
+
id: string;
|
|
271
|
+
url: string;
|
|
272
|
+
};
|
|
273
|
+
edit_url: string;
|
|
274
|
+
api_url: string;
|
|
275
|
+
edge_url: string;
|
|
276
|
+
slug?: string | undefined;
|
|
277
|
+
}>>;
|
|
278
|
+
type EntryChangedPayload = z.infer<(typeof EntryChangedDefinition)['schema']>;
|
|
279
|
+
declare const EntryChangedEventName: string;
|
|
280
|
+
|
|
281
|
+
declare const EntryDeletedDefinition: Definition<z.ZodObject<{
|
|
282
|
+
id: z.ZodString;
|
|
283
|
+
state: z.ZodOptional<z.ZodNumber>;
|
|
284
|
+
name: z.ZodString;
|
|
285
|
+
slug: z.ZodOptional<z.ZodString>;
|
|
286
|
+
project: z.ZodObject<{
|
|
287
|
+
id: z.ZodString;
|
|
288
|
+
url: z.ZodString;
|
|
289
|
+
}, "strip", z.ZodTypeAny, {
|
|
290
|
+
id: string;
|
|
291
|
+
url: string;
|
|
292
|
+
}, {
|
|
293
|
+
id: string;
|
|
294
|
+
url: string;
|
|
295
|
+
}>;
|
|
296
|
+
}, "strip", z.ZodTypeAny, {
|
|
297
|
+
id: string;
|
|
298
|
+
name: string;
|
|
299
|
+
project: {
|
|
300
|
+
id: string;
|
|
301
|
+
url: string;
|
|
302
|
+
};
|
|
303
|
+
state?: number | undefined;
|
|
304
|
+
slug?: string | undefined;
|
|
305
|
+
}, {
|
|
306
|
+
id: string;
|
|
307
|
+
name: string;
|
|
308
|
+
project: {
|
|
309
|
+
id: string;
|
|
310
|
+
url: string;
|
|
311
|
+
};
|
|
312
|
+
state?: number | undefined;
|
|
313
|
+
slug?: string | undefined;
|
|
314
|
+
}>>;
|
|
315
|
+
type EntryDeletedPayload = z.infer<(typeof EntryDeletedDefinition)['schema']>;
|
|
316
|
+
declare const EntryDeletedEventName: string;
|
|
317
|
+
|
|
318
|
+
declare const EntryPublishedDefinition: Definition<z.ZodObject<{
|
|
319
|
+
id: z.ZodString;
|
|
320
|
+
slug: z.ZodOptional<z.ZodString>;
|
|
321
|
+
state: z.ZodNumber;
|
|
322
|
+
name: z.ZodString;
|
|
323
|
+
project: z.ZodObject<{
|
|
324
|
+
id: z.ZodString;
|
|
325
|
+
url: z.ZodString;
|
|
326
|
+
}, "strip", z.ZodTypeAny, {
|
|
327
|
+
id: string;
|
|
328
|
+
url: string;
|
|
329
|
+
}, {
|
|
330
|
+
id: string;
|
|
331
|
+
url: string;
|
|
332
|
+
}>;
|
|
333
|
+
edit_url: z.ZodString;
|
|
334
|
+
api_url: z.ZodString;
|
|
335
|
+
edge_url: z.ZodString;
|
|
336
|
+
}, "strip", z.ZodTypeAny, {
|
|
337
|
+
id: string;
|
|
338
|
+
state: number;
|
|
339
|
+
name: string;
|
|
340
|
+
project: {
|
|
341
|
+
id: string;
|
|
342
|
+
url: string;
|
|
343
|
+
};
|
|
344
|
+
edit_url: string;
|
|
345
|
+
api_url: string;
|
|
346
|
+
edge_url: string;
|
|
347
|
+
slug?: string | undefined;
|
|
348
|
+
}, {
|
|
349
|
+
id: string;
|
|
350
|
+
state: number;
|
|
351
|
+
name: string;
|
|
352
|
+
project: {
|
|
353
|
+
id: string;
|
|
354
|
+
url: string;
|
|
355
|
+
};
|
|
356
|
+
edit_url: string;
|
|
357
|
+
api_url: string;
|
|
358
|
+
edge_url: string;
|
|
359
|
+
slug?: string | undefined;
|
|
360
|
+
}>>;
|
|
361
|
+
type EntryPublishedPayload = z.infer<(typeof EntryPublishedDefinition)['schema']>;
|
|
362
|
+
declare const EntryPublishedEventName: string;
|
|
363
|
+
|
|
172
364
|
declare const ManifestPublishedDefinition: Definition<z.ZodObject<{
|
|
173
365
|
timestamp: z.ZodNumber;
|
|
174
366
|
site: z.ZodObject<{
|
|
@@ -364,4 +556,4 @@ declare const RedirectUpdateDefinition: Definition<z.ZodObject<{
|
|
|
364
556
|
type RedirectUpdatedPayload = z.infer<(typeof RedirectUpdateDefinition)['schema']>;
|
|
365
557
|
declare const RedirectUpdatedEventName: string;
|
|
366
558
|
|
|
367
|
-
export { CompositionChangedDefinition, CompositionChangedEventName, type CompositionChangedPayload, CompositionDeletedDefinition, CompositionDeletedEventName, type CompositionDeletedPayload, type CompositionPayload, CompositionPayloadSchema, CompositionPublishedDefinition, CompositionPublishedEventName, type CompositionPublishedPayload, type Definition, type DefinitionOptions, 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 };
|
|
559
|
+
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 };
|