@uniformdev/webhooks 19.179.1-alpha.1 → 19.180.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 CHANGED
@@ -148,8 +148,8 @@ type Definition<TSchema extends ZodTypeAny = ZodTypeAny> = DefinitionOptions<TSc
148
148
  _definition: true;
149
149
  example: z.TypeOf<TSchema>;
150
150
  };
151
- declare const isDefinition: (obj: any) => obj is Definition<z.ZodTypeAny>;
152
- declare const definition: <TSchema extends z.ZodTypeAny = z.ZodTypeAny>(options: DefinitionOptions<TSchema>, example: z.TypeOf<TSchema>) => Definition<TSchema>;
151
+ declare const isDefinition: (obj: any) => obj is Definition;
152
+ declare const definition: <TSchema extends ZodTypeAny = z.ZodTypeAny>(options: DefinitionOptions<TSchema>, example: z.infer<TSchema>) => Definition<TSchema>;
153
153
 
154
154
  declare const CompositionChangedDefinition: Definition<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
155
155
  id: z.ZodString;
package/dist/index.d.ts CHANGED
@@ -148,8 +148,8 @@ type Definition<TSchema extends ZodTypeAny = ZodTypeAny> = DefinitionOptions<TSc
148
148
  _definition: true;
149
149
  example: z.TypeOf<TSchema>;
150
150
  };
151
- declare const isDefinition: (obj: any) => obj is Definition<z.ZodTypeAny>;
152
- declare const definition: <TSchema extends z.ZodTypeAny = z.ZodTypeAny>(options: DefinitionOptions<TSchema>, example: z.TypeOf<TSchema>) => Definition<TSchema>;
151
+ declare const isDefinition: (obj: any) => obj is Definition;
152
+ declare const definition: <TSchema extends ZodTypeAny = z.ZodTypeAny>(options: DefinitionOptions<TSchema>, example: z.infer<TSchema>) => Definition<TSchema>;
153
153
 
154
154
  declare const CompositionChangedDefinition: Definition<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
155
155
  id: z.ZodString;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniformdev/webhooks",
3
- "version": "19.179.1-alpha.1+3adc08c00a",
3
+ "version": "19.180.0",
4
4
  "description": "Uniform Webhooks",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "main": "./dist/index.js",
@@ -41,5 +41,5 @@
41
41
  "publishConfig": {
42
42
  "access": "public"
43
43
  },
44
- "gitHead": "3adc08c00a0d3932b6b767faaa6157f8b71ef0a0"
44
+ "gitHead": "309600b88571d0ffb2b80d7d2c27b7aa3e5ae72b"
45
45
  }