@automate.ax/integration-contracts 0.114.0 → 0.114.1

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.
@@ -857,7 +857,7 @@ export declare const ASANA_PROVIDER_EVENT_SCHEMA: z.ZodObject<{
857
857
  resource_subtype: z.ZodOptional<z.ZodString>;
858
858
  resource_type: z.ZodOptional<z.ZodString>;
859
859
  }, z.core.$loose>;
860
- type: z.ZodString;
860
+ type: z.ZodOptional<z.ZodString>;
861
861
  user: z.ZodOptional<z.ZodNullable<z.ZodObject<{
862
862
  gid: z.ZodString;
863
863
  name: z.ZodOptional<z.ZodString>;
@@ -304,7 +304,7 @@ export const ASANA_PROVIDER_EVENT_SCHEMA = z.looseObject({
304
304
  created_at: z.string(),
305
305
  parent: ASANA_PROVIDER_RESOURCE_SCHEMA.nullish(),
306
306
  resource: ASANA_PROVIDER_RESOURCE_SCHEMA,
307
- type: z.string(),
307
+ type: z.string().optional(),
308
308
  user: ASANA_PROVIDER_RESOURCE_SCHEMA.nullish(),
309
309
  });
310
310
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@automate.ax/integration-contracts",
3
- "version": "0.114.0",
3
+ "version": "0.114.1",
4
4
  "description": "Shared integration payload contracts and provider primitives for Automate.ax.",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -51,7 +51,7 @@
51
51
  }
52
52
  },
53
53
  "dependencies": {
54
- "@automate.ax/codec": "0.114.0",
54
+ "@automate.ax/codec": "0.114.1",
55
55
  "@cfworker/json-schema": "^4.1.1",
56
56
  "@googleapis/calendar": "^15.0.0",
57
57
  "@googleapis/forms": "^6.0.1",
@@ -419,7 +419,7 @@ export const ASANA_PROVIDER_EVENT_SCHEMA = z.looseObject({
419
419
  created_at: z.string(),
420
420
  parent: ASANA_PROVIDER_RESOURCE_SCHEMA.nullish(),
421
421
  resource: ASANA_PROVIDER_RESOURCE_SCHEMA,
422
- type: z.string(),
422
+ type: z.string().optional(),
423
423
  user: ASANA_PROVIDER_RESOURCE_SCHEMA.nullish(),
424
424
  })
425
425