@automate.ax/integration-contracts 0.112.8 → 0.112.10

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.
@@ -691,7 +691,7 @@ function vercelWebhookEventSchema(type, payload) {
691
691
  /** Stable webhook delivery ID. */
692
692
  id: z.string(),
693
693
  /** Vercel region that emitted the event. */
694
- region: z.string().nullable(),
694
+ region: z.string().nullable().optional(),
695
695
  /** Provider payload for this event type. */
696
696
  payload,
697
697
  /** Provider event discriminator. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@automate.ax/integration-contracts",
3
- "version": "0.112.8",
3
+ "version": "0.112.10",
4
4
  "description": "Shared integration payload contracts and provider primitives for Automate.ax.",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -50,7 +50,7 @@
50
50
  }
51
51
  },
52
52
  "dependencies": {
53
- "@automate.ax/codec": "0.112.8",
53
+ "@automate.ax/codec": "0.112.10",
54
54
  "@cfworker/json-schema": "^4.1.1",
55
55
  "@googleapis/calendar": "^15.0.0",
56
56
  "@googleapis/forms": "^6.0.1",
@@ -1138,7 +1138,7 @@ function vercelWebhookEventSchema<
1138
1138
  id: z.string(),
1139
1139
 
1140
1140
  /** Vercel region that emitted the event. */
1141
- region: z.string().nullable(),
1141
+ region: z.string().nullable().optional(),
1142
1142
 
1143
1143
  /** Provider payload for this event type. */
1144
1144
  payload,