@automate.ax/integration-contracts 0.95.4 → 0.97.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/close/schemas.d.ts +1 -1
- package/dist/close/schemas.js +1 -1
- package/dist/slack/event-schemas.d.ts +42126 -0
- package/dist/slack/event-schemas.js +714 -0
- package/dist/slack/index.d.ts +22401 -25
- package/dist/slack/index.js +78 -5
- package/dist/slack/schemas.d.ts +85 -291
- package/dist/slack/schemas.js +68 -185
- package/package.json +2 -2
- package/src/close/schemas.ts +1 -1
- package/src/slack/event-schemas.ts +792 -0
- package/src/slack/index.ts +100 -8
- package/src/slack/schemas.ts +71 -216
package/dist/close/schemas.d.ts
CHANGED
|
@@ -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>>;
|
package/dist/close/schemas.js
CHANGED
|
@@ -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([]),
|