@automate.ax/integration-contracts 0.115.4 → 0.115.5

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.
@@ -373,8 +373,8 @@ export declare const CLOUDFLARE_DELETE_RESULT_SCHEMA: z.ZodObject<{
373
373
  export declare const CLOUDFLARE_NOTIFICATION_WEBHOOK_SCHEMA: z.ZodObject<{
374
374
  createdAt: z.ZodOptional<z.ZodString>;
375
375
  id: z.ZodString;
376
- lastFailure: z.ZodOptional<z.ZodString>;
377
- lastSuccess: z.ZodOptional<z.ZodString>;
376
+ lastFailure: z.ZodOptional<z.ZodNullable<z.ZodString>>;
377
+ lastSuccess: z.ZodOptional<z.ZodNullable<z.ZodString>>;
378
378
  name: z.ZodOptional<z.ZodString>;
379
379
  type: z.ZodOptional<z.ZodEnum<{
380
380
  datadog: "datadog";
@@ -250,8 +250,8 @@ export const CLOUDFLARE_DELETE_RESULT_SCHEMA = z.object({
250
250
  export const CLOUDFLARE_NOTIFICATION_WEBHOOK_SCHEMA = z.object({
251
251
  createdAt: z.string().optional(),
252
252
  id: z.string().min(1),
253
- lastFailure: z.string().optional(),
254
- lastSuccess: z.string().optional(),
253
+ lastFailure: z.string().nullable().optional(),
254
+ lastSuccess: z.string().nullable().optional(),
255
255
  name: z.string().optional(),
256
256
  type: z
257
257
  .enum([
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@automate.ax/integration-contracts",
3
- "version": "0.115.4",
3
+ "version": "0.115.5",
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.115.4",
54
+ "@automate.ax/codec": "0.115.5",
55
55
  "@cfworker/json-schema": "^4.1.1",
56
56
  "@googleapis/calendar": "^15.0.0",
57
57
  "@googleapis/forms": "^6.0.1",
@@ -268,8 +268,8 @@ export const CLOUDFLARE_DELETE_RESULT_SCHEMA = z.object({
268
268
  export const CLOUDFLARE_NOTIFICATION_WEBHOOK_SCHEMA = z.object({
269
269
  createdAt: z.string().optional(),
270
270
  id: z.string().min(1),
271
- lastFailure: z.string().optional(),
272
- lastSuccess: z.string().optional(),
271
+ lastFailure: z.string().nullable().optional(),
272
+ lastSuccess: z.string().nullable().optional(),
273
273
  name: z.string().optional(),
274
274
  type: z
275
275
  .enum([