@uniformdev/webhooks 17.5.0 → 17.5.1-alpha.130
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +91 -91
- package/dist/index.esm.js +1 -1
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +4 -4
package/dist/index.d.ts
CHANGED
|
@@ -1,58 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
declare type DefinitionOptions<TSchema> = {
|
|
4
|
-
event: string;
|
|
5
|
-
name: string;
|
|
6
|
-
description: string;
|
|
7
|
-
schema: TSchema;
|
|
8
|
-
};
|
|
9
|
-
declare type Definition<TSchema extends ZodTypeAny = ZodTypeAny> = DefinitionOptions<TSchema> & {
|
|
10
|
-
_definition: true;
|
|
11
|
-
example: z.TypeOf<TSchema>;
|
|
12
|
-
};
|
|
13
|
-
declare const isDefinition: (obj: any) => obj is Definition<z.ZodTypeAny>;
|
|
14
|
-
declare const definition: <TSchema extends z.ZodTypeAny = z.ZodTypeAny>(options: DefinitionOptions<TSchema>, example: z.TypeOf<TSchema>) => Definition<TSchema>;
|
|
15
|
-
|
|
16
|
-
declare const ManifestPublishedDefinition: Definition<z.ZodObject<{
|
|
17
|
-
timestamp: z.ZodNumber;
|
|
18
|
-
site: z.ZodObject<{
|
|
19
|
-
name: z.ZodString;
|
|
20
|
-
}, "strip", z.ZodTypeAny, {
|
|
21
|
-
name: string;
|
|
22
|
-
}, {
|
|
23
|
-
name: string;
|
|
24
|
-
}>;
|
|
25
|
-
user: z.ZodObject<{
|
|
26
|
-
name: z.ZodString;
|
|
27
|
-
email: z.ZodString;
|
|
28
|
-
}, "strip", z.ZodTypeAny, {
|
|
29
|
-
name: string;
|
|
30
|
-
email: string;
|
|
31
|
-
}, {
|
|
32
|
-
name: string;
|
|
33
|
-
email: string;
|
|
34
|
-
}>;
|
|
35
|
-
}, "strip", z.ZodTypeAny, {
|
|
36
|
-
timestamp: number;
|
|
37
|
-
site: {
|
|
38
|
-
name: string;
|
|
39
|
-
};
|
|
40
|
-
user: {
|
|
41
|
-
name: string;
|
|
42
|
-
email: string;
|
|
43
|
-
};
|
|
44
|
-
}, {
|
|
45
|
-
timestamp: number;
|
|
46
|
-
site: {
|
|
47
|
-
name: string;
|
|
48
|
-
};
|
|
49
|
-
user: {
|
|
50
|
-
name: string;
|
|
51
|
-
email: string;
|
|
52
|
-
};
|
|
53
|
-
}>>;
|
|
54
|
-
declare type ManifestPublishedPayload = z.infer<typeof ManifestPublishedDefinition['schema']>;
|
|
55
|
-
declare const ManifestPublishedEventName: string;
|
|
1
|
+
import { z, ZodTypeAny } from 'zod';
|
|
56
2
|
|
|
57
3
|
declare const CompositionPayloadSchema: z.ZodObject<{
|
|
58
4
|
id: z.ZodString;
|
|
@@ -104,17 +50,17 @@ declare const CompositionPayloadSchema: z.ZodObject<{
|
|
|
104
50
|
path: string;
|
|
105
51
|
};
|
|
106
52
|
} | undefined;
|
|
107
|
-
name: string;
|
|
108
|
-
user: {
|
|
109
|
-
name: string;
|
|
110
|
-
email: string;
|
|
111
|
-
};
|
|
112
53
|
id: string;
|
|
113
54
|
state: number;
|
|
55
|
+
name: string;
|
|
114
56
|
project: {
|
|
115
57
|
id: string;
|
|
116
58
|
url: string;
|
|
117
59
|
};
|
|
60
|
+
user: {
|
|
61
|
+
name: string;
|
|
62
|
+
email: string;
|
|
63
|
+
};
|
|
118
64
|
edit_url: string;
|
|
119
65
|
}, {
|
|
120
66
|
slug?: string | undefined;
|
|
@@ -123,21 +69,34 @@ declare const CompositionPayloadSchema: z.ZodObject<{
|
|
|
123
69
|
path: string;
|
|
124
70
|
};
|
|
125
71
|
} | undefined;
|
|
126
|
-
name: string;
|
|
127
|
-
user: {
|
|
128
|
-
name: string;
|
|
129
|
-
email: string;
|
|
130
|
-
};
|
|
131
72
|
id: string;
|
|
132
73
|
state: number;
|
|
74
|
+
name: string;
|
|
133
75
|
project: {
|
|
134
76
|
id: string;
|
|
135
77
|
url: string;
|
|
136
78
|
};
|
|
79
|
+
user: {
|
|
80
|
+
name: string;
|
|
81
|
+
email: string;
|
|
82
|
+
};
|
|
137
83
|
edit_url: string;
|
|
138
84
|
}>;
|
|
139
85
|
declare type CompositionPayload = z.infer<typeof CompositionPayloadSchema>;
|
|
140
86
|
|
|
87
|
+
declare type DefinitionOptions<TSchema> = {
|
|
88
|
+
event: string;
|
|
89
|
+
name: string;
|
|
90
|
+
description: string;
|
|
91
|
+
schema: TSchema;
|
|
92
|
+
};
|
|
93
|
+
declare type Definition<TSchema extends ZodTypeAny = ZodTypeAny> = DefinitionOptions<TSchema> & {
|
|
94
|
+
_definition: true;
|
|
95
|
+
example: z.TypeOf<TSchema>;
|
|
96
|
+
};
|
|
97
|
+
declare const isDefinition: (obj: any) => obj is Definition<z.ZodTypeAny>;
|
|
98
|
+
declare const definition: <TSchema extends z.ZodTypeAny = z.ZodTypeAny>(options: DefinitionOptions<TSchema>, example: z.TypeOf<TSchema>) => Definition<TSchema>;
|
|
99
|
+
|
|
141
100
|
declare const CompositionChangedDefinition: Definition<z.ZodObject<{
|
|
142
101
|
id: z.ZodString;
|
|
143
102
|
slug: z.ZodOptional<z.ZodString>;
|
|
@@ -188,17 +147,17 @@ declare const CompositionChangedDefinition: Definition<z.ZodObject<{
|
|
|
188
147
|
path: string;
|
|
189
148
|
};
|
|
190
149
|
} | undefined;
|
|
191
|
-
name: string;
|
|
192
|
-
user: {
|
|
193
|
-
name: string;
|
|
194
|
-
email: string;
|
|
195
|
-
};
|
|
196
150
|
id: string;
|
|
197
151
|
state: number;
|
|
152
|
+
name: string;
|
|
198
153
|
project: {
|
|
199
154
|
id: string;
|
|
200
155
|
url: string;
|
|
201
156
|
};
|
|
157
|
+
user: {
|
|
158
|
+
name: string;
|
|
159
|
+
email: string;
|
|
160
|
+
};
|
|
202
161
|
edit_url: string;
|
|
203
162
|
}, {
|
|
204
163
|
slug?: string | undefined;
|
|
@@ -207,17 +166,17 @@ declare const CompositionChangedDefinition: Definition<z.ZodObject<{
|
|
|
207
166
|
path: string;
|
|
208
167
|
};
|
|
209
168
|
} | undefined;
|
|
210
|
-
name: string;
|
|
211
|
-
user: {
|
|
212
|
-
name: string;
|
|
213
|
-
email: string;
|
|
214
|
-
};
|
|
215
169
|
id: string;
|
|
216
170
|
state: number;
|
|
171
|
+
name: string;
|
|
217
172
|
project: {
|
|
218
173
|
id: string;
|
|
219
174
|
url: string;
|
|
220
175
|
};
|
|
176
|
+
user: {
|
|
177
|
+
name: string;
|
|
178
|
+
email: string;
|
|
179
|
+
};
|
|
221
180
|
edit_url: string;
|
|
222
181
|
}>>;
|
|
223
182
|
declare type CompositionChangedPayload = z.infer<typeof CompositionChangedDefinition['schema']>;
|
|
@@ -248,26 +207,26 @@ declare const CompositionDeletedDefinition: Definition<z.ZodObject<{
|
|
|
248
207
|
}>;
|
|
249
208
|
}, "strip", z.ZodTypeAny, {
|
|
250
209
|
state?: number | undefined;
|
|
251
|
-
user: {
|
|
252
|
-
name: string;
|
|
253
|
-
email: string;
|
|
254
|
-
};
|
|
255
210
|
id: string;
|
|
256
211
|
project: {
|
|
257
212
|
id: string;
|
|
258
213
|
url: string;
|
|
259
214
|
};
|
|
260
|
-
}, {
|
|
261
|
-
state?: number | undefined;
|
|
262
215
|
user: {
|
|
263
216
|
name: string;
|
|
264
217
|
email: string;
|
|
265
218
|
};
|
|
219
|
+
}, {
|
|
220
|
+
state?: number | undefined;
|
|
266
221
|
id: string;
|
|
267
222
|
project: {
|
|
268
223
|
id: string;
|
|
269
224
|
url: string;
|
|
270
225
|
};
|
|
226
|
+
user: {
|
|
227
|
+
name: string;
|
|
228
|
+
email: string;
|
|
229
|
+
};
|
|
271
230
|
}>>;
|
|
272
231
|
declare type CompositionDeletedPayload = z.infer<typeof CompositionDeletedDefinition['schema']>;
|
|
273
232
|
declare const CompositionDeletedEventName: string;
|
|
@@ -322,17 +281,17 @@ declare const CompositionPublishedDefinition: Definition<z.ZodObject<{
|
|
|
322
281
|
path: string;
|
|
323
282
|
};
|
|
324
283
|
} | undefined;
|
|
325
|
-
name: string;
|
|
326
|
-
user: {
|
|
327
|
-
name: string;
|
|
328
|
-
email: string;
|
|
329
|
-
};
|
|
330
284
|
id: string;
|
|
331
285
|
state: number;
|
|
286
|
+
name: string;
|
|
332
287
|
project: {
|
|
333
288
|
id: string;
|
|
334
289
|
url: string;
|
|
335
290
|
};
|
|
291
|
+
user: {
|
|
292
|
+
name: string;
|
|
293
|
+
email: string;
|
|
294
|
+
};
|
|
336
295
|
edit_url: string;
|
|
337
296
|
}, {
|
|
338
297
|
slug?: string | undefined;
|
|
@@ -341,20 +300,61 @@ declare const CompositionPublishedDefinition: Definition<z.ZodObject<{
|
|
|
341
300
|
path: string;
|
|
342
301
|
};
|
|
343
302
|
} | undefined;
|
|
344
|
-
name: string;
|
|
345
|
-
user: {
|
|
346
|
-
name: string;
|
|
347
|
-
email: string;
|
|
348
|
-
};
|
|
349
303
|
id: string;
|
|
350
304
|
state: number;
|
|
305
|
+
name: string;
|
|
351
306
|
project: {
|
|
352
307
|
id: string;
|
|
353
308
|
url: string;
|
|
354
309
|
};
|
|
310
|
+
user: {
|
|
311
|
+
name: string;
|
|
312
|
+
email: string;
|
|
313
|
+
};
|
|
355
314
|
edit_url: string;
|
|
356
315
|
}>>;
|
|
357
316
|
declare type CompositionPublishedPayload = z.infer<typeof CompositionPublishedDefinition['schema']>;
|
|
358
317
|
declare const CompositionPublishedEventName: string;
|
|
359
318
|
|
|
319
|
+
declare const ManifestPublishedDefinition: Definition<z.ZodObject<{
|
|
320
|
+
timestamp: z.ZodNumber;
|
|
321
|
+
site: z.ZodObject<{
|
|
322
|
+
name: z.ZodString;
|
|
323
|
+
}, "strip", z.ZodTypeAny, {
|
|
324
|
+
name: string;
|
|
325
|
+
}, {
|
|
326
|
+
name: string;
|
|
327
|
+
}>;
|
|
328
|
+
user: z.ZodObject<{
|
|
329
|
+
name: z.ZodString;
|
|
330
|
+
email: z.ZodString;
|
|
331
|
+
}, "strip", z.ZodTypeAny, {
|
|
332
|
+
name: string;
|
|
333
|
+
email: string;
|
|
334
|
+
}, {
|
|
335
|
+
name: string;
|
|
336
|
+
email: string;
|
|
337
|
+
}>;
|
|
338
|
+
}, "strip", z.ZodTypeAny, {
|
|
339
|
+
user: {
|
|
340
|
+
name: string;
|
|
341
|
+
email: string;
|
|
342
|
+
};
|
|
343
|
+
timestamp: number;
|
|
344
|
+
site: {
|
|
345
|
+
name: string;
|
|
346
|
+
};
|
|
347
|
+
}, {
|
|
348
|
+
user: {
|
|
349
|
+
name: string;
|
|
350
|
+
email: string;
|
|
351
|
+
};
|
|
352
|
+
timestamp: number;
|
|
353
|
+
site: {
|
|
354
|
+
name: string;
|
|
355
|
+
};
|
|
356
|
+
}>>;
|
|
357
|
+
declare type ManifestPublishedPayload = z.infer<typeof ManifestPublishedDefinition['schema']>;
|
|
358
|
+
declare const ManifestPublishedEventName: string;
|
|
359
|
+
|
|
360
360
|
export { CompositionChangedDefinition, CompositionChangedEventName, CompositionChangedPayload, CompositionDeletedDefinition, CompositionDeletedEventName, CompositionDeletedPayload, CompositionPayload, CompositionPayloadSchema, CompositionPublishedDefinition, CompositionPublishedEventName, CompositionPublishedPayload, Definition, DefinitionOptions, ManifestPublishedDefinition, ManifestPublishedEventName, ManifestPublishedPayload, definition, isDefinition };
|
package/dist/index.esm.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
import{z as
|
|
1
|
+
import{z as o}from"zod";var s=o.object({id:o.string(),slug:o.string().optional(),project_map:o.object({node:o.object({path:o.string()})}).optional(),state:o.number(),name:o.string(),project:o.object({id:o.string(),url:o.string()}),user:o.object({name:o.string(),email:o.string()}),edit_url:o.string()});var f=n=>Object.hasOwn(n,"_definition")&&n._definition,i=(n,m)=>({...n,_definition:!0,example:m});var r=i({event:"composition.changed",name:"Composition Changed",description:"Triggers when a composition has been changed.",schema:s},{id:"id of composition",name:"name of composition",slug:"slug of composition",project:{id:"id of the project this composition belongs to",url:"link to project this composition belongs to"},state:0,user:{email:"email of the user who performed this action",name:"name of the user who performed this action"},project_map:{node:{path:"path that this composition is associated with"}},edit_url:"link to edit this composition"}),b=r.event;import{z as e}from"zod";var p=i({event:"composition.deleted",name:"Composition Deleted",description:"Triggers when a composition has been deleted.",schema:e.object({id:e.string(),state:e.number().optional(),user:e.object({name:e.string(),email:e.string()}),project:e.object({id:e.string(),url:e.string()})})},{id:"id of composition",state:0,user:{email:"email of the user who performed this action",name:"name of the user who performed this action"},project:{id:"id of the project this composition belongs to",url:"link to project this composition belongs to"}}),x=p.event;var a=i({event:"composition.published",name:"Composition Published",description:"Triggers when a composition has been published.",schema:s},{id:"id of composition",name:"name of composition",slug:"slug of composition",project:{id:"id of the project this composition belongs to",url:"link to project this composition belongs to"},state:0,user:{email:"email of the user who performed this action",name:"name of the user who performed this action"},project_map:{node:{path:"path that this composition is associated with"}},edit_url:"link to edit this composition"}),w=a.event;import{z as t}from"zod";var c=i({event:"manifest.published",name:"Manifest Published",description:"Triggers when a manifest has been published.",schema:t.object({timestamp:t.number(),site:t.object({name:t.string()}),user:t.object({name:t.string(),email:t.string()})})},{timestamp:1667425322407,site:{name:"My Site"},user:{email:"email of the user who performed this action",name:"name of the user who performed this action"}}),_=c.event;export{r as CompositionChangedDefinition,b as CompositionChangedEventName,p as CompositionDeletedDefinition,x as CompositionDeletedEventName,s as CompositionPayloadSchema,a as CompositionPublishedDefinition,w as CompositionPublishedEventName,c as ManifestPublishedDefinition,_ as ManifestPublishedEventName,i as definition,f as isDefinition};
|
package/dist/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";var a=Object.defineProperty;var u=Object.getOwnPropertyDescriptor;var g=Object.getOwnPropertyNames;var b=Object.prototype.hasOwnProperty;var y=(e,i)=>{for(var p in i)a(e,p,{get:i[p],enumerable:!0})},j=(e,i,p,c)=>{if(i&&typeof i=="object"||typeof i=="function")for(let m of g(i))!b.call(e,m)&&m!==p&&a(e,m,{get:()=>i[m],enumerable:!(c=u(i,m))||c.enumerable});return e};var C=e=>j(a({},"__esModule",{value:!0}),e);var S={};y(S,{CompositionChangedDefinition:()=>
|
|
1
|
+
"use strict";var a=Object.defineProperty;var u=Object.getOwnPropertyDescriptor;var g=Object.getOwnPropertyNames;var b=Object.prototype.hasOwnProperty;var y=(e,i)=>{for(var p in i)a(e,p,{get:i[p],enumerable:!0})},j=(e,i,p,c)=>{if(i&&typeof i=="object"||typeof i=="function")for(let m of g(i))!b.call(e,m)&&m!==p&&a(e,m,{get:()=>i[m],enumerable:!(c=u(i,m))||c.enumerable});return e};var C=e=>j(a({},"__esModule",{value:!0}),e);var S={};y(S,{CompositionChangedDefinition:()=>h,CompositionChangedEventName:()=>D,CompositionDeletedDefinition:()=>d,CompositionDeletedEventName:()=>P,CompositionPayloadSchema:()=>r,CompositionPublishedDefinition:()=>f,CompositionPublishedEventName:()=>T,ManifestPublishedDefinition:()=>l,ManifestPublishedEventName:()=>w,definition:()=>n,isDefinition:()=>x});module.exports=C(S);var o=require("zod"),r=o.z.object({id:o.z.string(),slug:o.z.string().optional(),project_map:o.z.object({node:o.z.object({path:o.z.string()})}).optional(),state:o.z.number(),name:o.z.string(),project:o.z.object({id:o.z.string(),url:o.z.string()}),user:o.z.object({name:o.z.string(),email:o.z.string()}),edit_url:o.z.string()});var x=e=>Object.hasOwn(e,"_definition")&&e._definition,n=(e,i)=>({...e,_definition:!0,example:i});var h=n({event:"composition.changed",name:"Composition Changed",description:"Triggers when a composition has been changed.",schema:r},{id:"id of composition",name:"name of composition",slug:"slug of composition",project:{id:"id of the project this composition belongs to",url:"link to project this composition belongs to"},state:0,user:{email:"email of the user who performed this action",name:"name of the user who performed this action"},project_map:{node:{path:"path that this composition is associated with"}},edit_url:"link to edit this composition"}),D=h.event;var t=require("zod");var d=n({event:"composition.deleted",name:"Composition Deleted",description:"Triggers when a composition has been deleted.",schema:t.z.object({id:t.z.string(),state:t.z.number().optional(),user:t.z.object({name:t.z.string(),email:t.z.string()}),project:t.z.object({id:t.z.string(),url:t.z.string()})})},{id:"id of composition",state:0,user:{email:"email of the user who performed this action",name:"name of the user who performed this action"},project:{id:"id of the project this composition belongs to",url:"link to project this composition belongs to"}}),P=d.event;var f=n({event:"composition.published",name:"Composition Published",description:"Triggers when a composition has been published.",schema:r},{id:"id of composition",name:"name of composition",slug:"slug of composition",project:{id:"id of the project this composition belongs to",url:"link to project this composition belongs to"},state:0,user:{email:"email of the user who performed this action",name:"name of the user who performed this action"},project_map:{node:{path:"path that this composition is associated with"}},edit_url:"link to edit this composition"}),T=f.event;var s=require("zod");var l=n({event:"manifest.published",name:"Manifest Published",description:"Triggers when a manifest has been published.",schema:s.z.object({timestamp:s.z.number(),site:s.z.object({name:s.z.string()}),user:s.z.object({name:s.z.string(),email:s.z.string()})})},{timestamp:1667425322407,site:{name:"My Site"},user:{email:"email of the user who performed this action",name:"name of the user who performed this action"}}),w=l.event;0&&(module.exports={CompositionChangedDefinition,CompositionChangedEventName,CompositionDeletedDefinition,CompositionDeletedEventName,CompositionPayloadSchema,CompositionPublishedDefinition,CompositionPublishedEventName,ManifestPublishedDefinition,ManifestPublishedEventName,definition,isDefinition});
|
package/dist/index.mjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
import{z as
|
|
1
|
+
import{z as o}from"zod";var s=o.object({id:o.string(),slug:o.string().optional(),project_map:o.object({node:o.object({path:o.string()})}).optional(),state:o.number(),name:o.string(),project:o.object({id:o.string(),url:o.string()}),user:o.object({name:o.string(),email:o.string()}),edit_url:o.string()});var f=n=>Object.hasOwn(n,"_definition")&&n._definition,i=(n,m)=>({...n,_definition:!0,example:m});var r=i({event:"composition.changed",name:"Composition Changed",description:"Triggers when a composition has been changed.",schema:s},{id:"id of composition",name:"name of composition",slug:"slug of composition",project:{id:"id of the project this composition belongs to",url:"link to project this composition belongs to"},state:0,user:{email:"email of the user who performed this action",name:"name of the user who performed this action"},project_map:{node:{path:"path that this composition is associated with"}},edit_url:"link to edit this composition"}),b=r.event;import{z as e}from"zod";var p=i({event:"composition.deleted",name:"Composition Deleted",description:"Triggers when a composition has been deleted.",schema:e.object({id:e.string(),state:e.number().optional(),user:e.object({name:e.string(),email:e.string()}),project:e.object({id:e.string(),url:e.string()})})},{id:"id of composition",state:0,user:{email:"email of the user who performed this action",name:"name of the user who performed this action"},project:{id:"id of the project this composition belongs to",url:"link to project this composition belongs to"}}),x=p.event;var a=i({event:"composition.published",name:"Composition Published",description:"Triggers when a composition has been published.",schema:s},{id:"id of composition",name:"name of composition",slug:"slug of composition",project:{id:"id of the project this composition belongs to",url:"link to project this composition belongs to"},state:0,user:{email:"email of the user who performed this action",name:"name of the user who performed this action"},project_map:{node:{path:"path that this composition is associated with"}},edit_url:"link to edit this composition"}),w=a.event;import{z as t}from"zod";var c=i({event:"manifest.published",name:"Manifest Published",description:"Triggers when a manifest has been published.",schema:t.object({timestamp:t.number(),site:t.object({name:t.string()}),user:t.object({name:t.string(),email:t.string()})})},{timestamp:1667425322407,site:{name:"My Site"},user:{email:"email of the user who performed this action",name:"name of the user who performed this action"}}),_=c.event;export{r as CompositionChangedDefinition,b as CompositionChangedEventName,p as CompositionDeletedDefinition,x as CompositionDeletedEventName,s as CompositionPayloadSchema,a as CompositionPublishedDefinition,w as CompositionPublishedEventName,c as ManifestPublishedDefinition,_ as ManifestPublishedEventName,i as definition,f as isDefinition};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uniformdev/webhooks",
|
|
3
|
-
"version": "17.5.
|
|
3
|
+
"version": "17.5.1-alpha.130+3fac779b1",
|
|
4
4
|
"description": "Uniform Webhooks",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -33,8 +33,8 @@
|
|
|
33
33
|
"devDependencies": {
|
|
34
34
|
"dotenv": "^16.0.3",
|
|
35
35
|
"npm-run-all": "4.1.5",
|
|
36
|
-
"svix": "^0.
|
|
37
|
-
"zod-to-json-schema": "3.
|
|
36
|
+
"svix": "^0.70.0",
|
|
37
|
+
"zod-to-json-schema": "3.19.1"
|
|
38
38
|
},
|
|
39
|
-
"gitHead": "
|
|
39
|
+
"gitHead": "3fac779b1b42a1afeb05156cb51768a98573438f"
|
|
40
40
|
}
|