@uniformdev/webhooks 18.21.1-alpha.4 → 18.23.1-alpha.25

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +20 -20
  2. package/package.json +3 -3
package/dist/index.d.ts CHANGED
@@ -17,7 +17,6 @@ declare const CompositionPayloadSchema: z.ZodObject<{
17
17
  }>;
18
18
  edit_url: z.ZodString;
19
19
  }, "strip", z.ZodTypeAny, {
20
- slug?: string | undefined;
21
20
  id: string;
22
21
  state: number;
23
22
  name: string;
@@ -26,8 +25,8 @@ declare const CompositionPayloadSchema: z.ZodObject<{
26
25
  url: string;
27
26
  };
28
27
  edit_url: string;
29
- }, {
30
28
  slug?: string | undefined;
29
+ }, {
31
30
  id: string;
32
31
  state: number;
33
32
  name: string;
@@ -36,6 +35,7 @@ declare const CompositionPayloadSchema: z.ZodObject<{
36
35
  url: string;
37
36
  };
38
37
  edit_url: string;
38
+ slug?: string | undefined;
39
39
  }>;
40
40
  type CompositionPayload = z.infer<typeof CompositionPayloadSchema>;
41
41
 
@@ -69,7 +69,6 @@ declare const CompositionChangedDefinition: Definition<z.ZodObject<{
69
69
  }>;
70
70
  edit_url: z.ZodString;
71
71
  }, "strip", z.ZodTypeAny, {
72
- slug?: string | undefined;
73
72
  id: string;
74
73
  state: number;
75
74
  name: string;
@@ -78,8 +77,8 @@ declare const CompositionChangedDefinition: Definition<z.ZodObject<{
78
77
  url: string;
79
78
  };
80
79
  edit_url: string;
81
- }, {
82
80
  slug?: string | undefined;
81
+ }, {
83
82
  id: string;
84
83
  state: number;
85
84
  name: string;
@@ -88,6 +87,7 @@ declare const CompositionChangedDefinition: Definition<z.ZodObject<{
88
87
  url: string;
89
88
  };
90
89
  edit_url: string;
90
+ slug?: string | undefined;
91
91
  }>>;
92
92
  type CompositionChangedPayload = z.infer<(typeof CompositionChangedDefinition)['schema']>;
93
93
  declare const CompositionChangedEventName: string;
@@ -108,23 +108,23 @@ declare const CompositionDeletedDefinition: Definition<z.ZodObject<{
108
108
  url: string;
109
109
  }>;
110
110
  }, "strip", z.ZodTypeAny, {
111
- slug?: string | undefined;
112
- state?: number | undefined;
113
111
  id: string;
114
112
  name: string;
115
113
  project: {
116
114
  id: string;
117
115
  url: string;
118
116
  };
119
- }, {
120
- slug?: string | undefined;
121
117
  state?: number | undefined;
118
+ slug?: string | undefined;
119
+ }, {
122
120
  id: string;
123
121
  name: string;
124
122
  project: {
125
123
  id: string;
126
124
  url: string;
127
125
  };
126
+ state?: number | undefined;
127
+ slug?: string | undefined;
128
128
  }>>;
129
129
  type CompositionDeletedPayload = z.infer<(typeof CompositionDeletedDefinition)['schema']>;
130
130
  declare const CompositionDeletedEventName: string;
@@ -146,7 +146,6 @@ declare const CompositionPublishedDefinition: Definition<z.ZodObject<{
146
146
  }>;
147
147
  edit_url: z.ZodString;
148
148
  }, "strip", z.ZodTypeAny, {
149
- slug?: string | undefined;
150
149
  id: string;
151
150
  state: number;
152
151
  name: string;
@@ -155,8 +154,8 @@ declare const CompositionPublishedDefinition: Definition<z.ZodObject<{
155
154
  url: string;
156
155
  };
157
156
  edit_url: string;
158
- }, {
159
157
  slug?: string | undefined;
158
+ }, {
160
159
  id: string;
161
160
  state: number;
162
161
  name: string;
@@ -165,6 +164,7 @@ declare const CompositionPublishedDefinition: Definition<z.ZodObject<{
165
164
  url: string;
166
165
  };
167
166
  edit_url: string;
167
+ slug?: string | undefined;
168
168
  }>>;
169
169
  type CompositionPublishedPayload = z.infer<(typeof CompositionPublishedDefinition)['schema']>;
170
170
  declare const CompositionPublishedEventName: string;
@@ -202,13 +202,13 @@ declare const ProjectMapDeleteDefinition: Definition<z.ZodObject<{
202
202
  base_url: z.ZodOptional<z.ZodString>;
203
203
  project_id: z.ZodString;
204
204
  }, "strip", z.ZodTypeAny, {
205
- base_url?: string | undefined;
206
205
  id: string;
207
206
  project_id: string;
208
- }, {
209
207
  base_url?: string | undefined;
208
+ }, {
210
209
  id: string;
211
210
  project_id: string;
211
+ base_url?: string | undefined;
212
212
  }>>;
213
213
  type ProjectMapDeletedPayload = z.infer<(typeof ProjectMapDeleteDefinition)['schema']>;
214
214
  declare const ProjectMapDeletedEventName: string;
@@ -220,17 +220,17 @@ declare const ProjectMapNodeDeleteDefinition: Definition<z.ZodObject<{
220
220
  path: z.ZodString;
221
221
  composition_id: z.ZodOptional<z.ZodString>;
222
222
  }, "strip", z.ZodTypeAny, {
223
- composition_id?: string | undefined;
224
223
  id: string;
225
224
  path: string;
226
225
  project_id: string;
227
226
  project_map_id: string;
228
- }, {
229
227
  composition_id?: string | undefined;
228
+ }, {
230
229
  id: string;
231
230
  path: string;
232
231
  project_id: string;
233
232
  project_map_id: string;
233
+ composition_id?: string | undefined;
234
234
  }>>;
235
235
  type ProjectMapNodeDeletedPayload = z.infer<(typeof ProjectMapNodeDeleteDefinition)['schema']>;
236
236
  declare const ProjectMapNodeDeletedEventName: string;
@@ -242,17 +242,17 @@ declare const ProjectMapNodeInsertDefinition: Definition<z.ZodObject<{
242
242
  path: z.ZodString;
243
243
  composition_id: z.ZodOptional<z.ZodString>;
244
244
  }, "strip", z.ZodTypeAny, {
245
- composition_id?: string | undefined;
246
245
  id: string;
247
246
  path: string;
248
247
  project_id: string;
249
248
  project_map_id: string;
250
- }, {
251
249
  composition_id?: string | undefined;
250
+ }, {
252
251
  id: string;
253
252
  path: string;
254
253
  project_id: string;
255
254
  project_map_id: string;
255
+ composition_id?: string | undefined;
256
256
  }>>;
257
257
  type ProjectMapNodeInsertedPayload = z.infer<(typeof ProjectMapNodeInsertDefinition)['schema']>;
258
258
  declare const ProjectMapNodeInsertedEventName: string;
@@ -265,19 +265,19 @@ declare const ProjectMapNodeUpdateDefinition: Definition<z.ZodObject<{
265
265
  composition_id: z.ZodOptional<z.ZodString>;
266
266
  previous_path: z.ZodString;
267
267
  }, "strip", z.ZodTypeAny, {
268
- composition_id?: string | undefined;
269
268
  id: string;
270
269
  path: string;
271
270
  project_id: string;
272
271
  project_map_id: string;
273
272
  previous_path: string;
274
- }, {
275
273
  composition_id?: string | undefined;
274
+ }, {
276
275
  id: string;
277
276
  path: string;
278
277
  project_id: string;
279
278
  project_map_id: string;
280
279
  previous_path: string;
280
+ composition_id?: string | undefined;
281
281
  }>>;
282
282
  type ProjectMapNodeUpdatedPayload = z.infer<(typeof ProjectMapNodeUpdateDefinition)['schema']>;
283
283
  declare const ProjectMapNodeUpdatedEventName: string;
@@ -287,13 +287,13 @@ declare const ProjectMapUpdateDefinition: Definition<z.ZodObject<{
287
287
  base_url: z.ZodOptional<z.ZodString>;
288
288
  project_id: z.ZodString;
289
289
  }, "strip", z.ZodTypeAny, {
290
- base_url?: string | undefined;
291
290
  id: string;
292
291
  project_id: string;
293
- }, {
294
292
  base_url?: string | undefined;
293
+ }, {
295
294
  id: string;
296
295
  project_id: string;
296
+ base_url?: string | undefined;
297
297
  }>>;
298
298
  type ProjectMapUpdatedPayload = z.infer<(typeof ProjectMapUpdateDefinition)['schema']>;
299
299
  declare const ProjectMapUpdatedEventName: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniformdev/webhooks",
3
- "version": "18.21.1-alpha.4+677936e4a",
3
+ "version": "18.23.1-alpha.25+6ae528b11",
4
4
  "description": "Uniform Webhooks",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "main": "./dist/index.js",
@@ -29,7 +29,7 @@
29
29
  "/dist"
30
30
  ],
31
31
  "dependencies": {
32
- "zod": "3.21.0"
32
+ "zod": "3.21.4"
33
33
  },
34
34
  "devDependencies": {
35
35
  "dotenv": "^16.0.3",
@@ -40,5 +40,5 @@
40
40
  "publishConfig": {
41
41
  "access": "public"
42
42
  },
43
- "gitHead": "677936e4a7af7c7c738893d83a2afa8cddbb7bbc"
43
+ "gitHead": "6ae528b111d6948dbc768a06f57f349d95b69b96"
44
44
  }