@automate.ax/integration-contracts 0.95.3 → 0.96.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.
@@ -1784,7 +1784,7 @@ export declare const CLOSE_SEQUENCE_SCHEMA: z.ZodObject<{
1784
1784
  }, z.core.$strip>>;
1785
1785
  timezone: z.ZodString;
1786
1786
  updatedAt: z.ZodPipe<z.ZodUnion<readonly [z.ZodDate, z.ZodString]>, z.ZodTransform<Date, string | Date>>;
1787
- updatedById: z.ZodString;
1787
+ updatedById: z.ZodNullable<z.ZodString>;
1788
1788
  }, z.core.$strip>;
1789
1789
  export declare const CLOSE_SEQUENCE_SUBSCRIPTION_SCHEMA: z.ZodObject<{
1790
1790
  callsAssignedTo: z.ZodPrefault<z.ZodArray<z.ZodString>>;
@@ -856,7 +856,7 @@ export const CLOSE_SEQUENCE_SCHEMA = z.object({
856
856
  .optional(),
857
857
  timezone: z.string(),
858
858
  updatedAt: DATE_SCHEMA,
859
- updatedById: z.string(),
859
+ updatedById: z.string().nullable(),
860
860
  });
861
861
  export const CLOSE_SEQUENCE_SUBSCRIPTION_SCHEMA = z.object({
862
862
  callsAssignedTo: z.string().array().prefault([]),