@hexabot-ai/api 3.2.6 → 3.2.7
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.
|
@@ -63,7 +63,7 @@ export declare namespace Web {
|
|
|
63
63
|
type: z.ZodString;
|
|
64
64
|
size: z.ZodNumber;
|
|
65
65
|
name: z.ZodString;
|
|
66
|
-
file: z.ZodOptional<z.ZodCustom<Buffer
|
|
66
|
+
file: z.ZodOptional<z.ZodCustom<Buffer<ArrayBufferLike>, Buffer<ArrayBufferLike>>>;
|
|
67
67
|
}, z.core.$strict>;
|
|
68
68
|
const inboundAttachmentMessageDataSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
69
69
|
type: z.ZodEnum<typeof FileType>;
|
|
@@ -72,7 +72,7 @@ export declare namespace Web {
|
|
|
72
72
|
type: z.ZodString;
|
|
73
73
|
size: z.ZodNumber;
|
|
74
74
|
name: z.ZodString;
|
|
75
|
-
file: z.ZodOptional<z.ZodCustom<Buffer
|
|
75
|
+
file: z.ZodOptional<z.ZodCustom<Buffer<ArrayBufferLike>, Buffer<ArrayBufferLike>>>;
|
|
76
76
|
}, z.core.$strict>]>;
|
|
77
77
|
type InboundAttachmentMessageData = z.infer<typeof inboundAttachmentMessageDataSchema>;
|
|
78
78
|
const inboundMessageDataSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
@@ -92,7 +92,7 @@ export declare namespace Web {
|
|
|
92
92
|
type: z.ZodString;
|
|
93
93
|
size: z.ZodNumber;
|
|
94
94
|
name: z.ZodString;
|
|
95
|
-
file: z.ZodOptional<z.ZodCustom<Buffer
|
|
95
|
+
file: z.ZodOptional<z.ZodCustom<Buffer<ArrayBufferLike>, Buffer<ArrayBufferLike>>>;
|
|
96
96
|
}, z.core.$strict>]>]>;
|
|
97
97
|
type InboundMessageData = z.infer<typeof inboundMessageDataSchema>;
|
|
98
98
|
const statusDeliveryEventSchema: z.ZodObject<{
|
|
@@ -222,7 +222,7 @@ export declare namespace Web {
|
|
|
222
222
|
type: z.ZodString;
|
|
223
223
|
size: z.ZodNumber;
|
|
224
224
|
name: z.ZodString;
|
|
225
|
-
file: z.ZodOptional<z.ZodCustom<Buffer
|
|
225
|
+
file: z.ZodOptional<z.ZodCustom<Buffer<ArrayBufferLike>, Buffer<ArrayBufferLike>>>;
|
|
226
226
|
}, z.core.$strict>]>;
|
|
227
227
|
}, z.core.$strict>;
|
|
228
228
|
type InboundAttachmentMessage = z.infer<typeof inboundAttachmentMessageSchema>;
|
|
@@ -295,7 +295,7 @@ export declare namespace Web {
|
|
|
295
295
|
type: z.ZodString;
|
|
296
296
|
size: z.ZodNumber;
|
|
297
297
|
name: z.ZodString;
|
|
298
|
-
file: z.ZodOptional<z.ZodCustom<Buffer
|
|
298
|
+
file: z.ZodOptional<z.ZodCustom<Buffer<ArrayBufferLike>, Buffer<ArrayBufferLike>>>;
|
|
299
299
|
}, z.core.$strict>]>;
|
|
300
300
|
}, z.core.$strict>]>;
|
|
301
301
|
type InboundMessageBase = z.infer<typeof inboundMessageBaseSchema>;
|
|
@@ -377,7 +377,7 @@ export declare namespace Web {
|
|
|
377
377
|
type: z.ZodString;
|
|
378
378
|
size: z.ZodNumber;
|
|
379
379
|
name: z.ZodString;
|
|
380
|
-
file: z.ZodOptional<z.ZodCustom<Buffer
|
|
380
|
+
file: z.ZodOptional<z.ZodCustom<Buffer<ArrayBufferLike>, Buffer<ArrayBufferLike>>>;
|
|
381
381
|
}, z.core.$strict>]>;
|
|
382
382
|
}, z.core.$strict>], "type">;
|
|
383
383
|
type Event = z.infer<typeof eventSchema>;
|