@kl1/contracts 1.2.64-uat → 1.2.65-uat
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/api-contracts/src/channel/index.d.ts +798 -1
- package/dist/api-contracts/src/channel/index.d.ts.map +1 -1
- package/dist/api-contracts/src/channel/validation.d.ts +10 -0
- package/dist/api-contracts/src/channel/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/index.d.ts +189 -169
- package/dist/api-contracts/src/chat/index.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/schema.d.ts +45 -45
- package/dist/api-contracts/src/chat/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/validation.d.ts +72 -56
- package/dist/api-contracts/src/chat/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/contract.d.ts +2864 -1272
- package/dist/api-contracts/src/contract.d.ts.map +1 -1
- package/dist/api-contracts/src/facebook-feed/index.d.ts +43 -43
- package/dist/api-contracts/src/facebook-feed/schema.d.ts +3 -3
- package/dist/api-contracts/src/instagram/index.d.ts +33 -33
- package/dist/api-contracts/src/line/index.d.ts +38 -38
- package/dist/api-contracts/src/line/validation.d.ts +5 -5
- package/dist/api-contracts/src/messenger/index.d.ts +33 -33
- package/dist/api-contracts/src/sms/index.d.ts +5 -5
- package/dist/api-contracts/src/telegram/index.d.ts +33 -33
- package/dist/api-contracts/src/viber/index.d.ts +33 -33
- package/dist/api-contracts/src/webchat/index.d.ts +33 -33
- package/dist/api-contracts/src/whatsapp/index.d.ts +33 -33
- package/dist/api-contracts/src/workflow-rule/index.d.ts +12 -12
- package/dist/index.js +31 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +31 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -224,6 +224,8 @@ export declare const MessageAttachmentSchema: z.ZodObject<{
|
|
|
224
224
|
url: z.ZodNullable<z.ZodString>;
|
|
225
225
|
fileType: z.ZodString;
|
|
226
226
|
thumbnailUrl: z.ZodOptional<z.ZodString>;
|
|
227
|
+
width: z.ZodOptional<z.ZodString>;
|
|
228
|
+
height: z.ZodOptional<z.ZodString>;
|
|
227
229
|
}, "strip", z.ZodTypeAny, {
|
|
228
230
|
url: string | null;
|
|
229
231
|
fileName: string;
|
|
@@ -232,6 +234,8 @@ export declare const MessageAttachmentSchema: z.ZodObject<{
|
|
|
232
234
|
bucketName: string;
|
|
233
235
|
fileSize: number;
|
|
234
236
|
thumbnailUrl?: string | undefined;
|
|
237
|
+
width?: string | undefined;
|
|
238
|
+
height?: string | undefined;
|
|
235
239
|
}, {
|
|
236
240
|
url: string | null;
|
|
237
241
|
fileName: string;
|
|
@@ -240,6 +244,8 @@ export declare const MessageAttachmentSchema: z.ZodObject<{
|
|
|
240
244
|
bucketName: string;
|
|
241
245
|
fileSize: number;
|
|
242
246
|
thumbnailUrl?: string | undefined;
|
|
247
|
+
width?: string | undefined;
|
|
248
|
+
height?: string | undefined;
|
|
243
249
|
}>;
|
|
244
250
|
export declare const StickerSchema: z.ZodObject<{
|
|
245
251
|
packageId: z.ZodNumber;
|
|
@@ -264,7 +270,7 @@ export declare const ActionMessageSchema: z.ZodObject<{
|
|
|
264
270
|
}>;
|
|
265
271
|
export declare const SendMessageSchema: z.ZodObject<{
|
|
266
272
|
roomId: z.ZodString;
|
|
267
|
-
messageType: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "csat", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
|
|
273
|
+
messageType: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "csat", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported", "item"]>;
|
|
268
274
|
message: z.ZodOptional<z.ZodString>;
|
|
269
275
|
messageAttachments: z.ZodOptional<z.ZodObject<{
|
|
270
276
|
bucketName: z.ZodString;
|
|
@@ -274,6 +280,8 @@ export declare const SendMessageSchema: z.ZodObject<{
|
|
|
274
280
|
url: z.ZodNullable<z.ZodString>;
|
|
275
281
|
fileType: z.ZodString;
|
|
276
282
|
thumbnailUrl: z.ZodOptional<z.ZodString>;
|
|
283
|
+
width: z.ZodOptional<z.ZodString>;
|
|
284
|
+
height: z.ZodOptional<z.ZodString>;
|
|
277
285
|
}, "strip", z.ZodTypeAny, {
|
|
278
286
|
url: string | null;
|
|
279
287
|
fileName: string;
|
|
@@ -282,6 +290,8 @@ export declare const SendMessageSchema: z.ZodObject<{
|
|
|
282
290
|
bucketName: string;
|
|
283
291
|
fileSize: number;
|
|
284
292
|
thumbnailUrl?: string | undefined;
|
|
293
|
+
width?: string | undefined;
|
|
294
|
+
height?: string | undefined;
|
|
285
295
|
}, {
|
|
286
296
|
url: string | null;
|
|
287
297
|
fileName: string;
|
|
@@ -290,6 +300,8 @@ export declare const SendMessageSchema: z.ZodObject<{
|
|
|
290
300
|
bucketName: string;
|
|
291
301
|
fileSize: number;
|
|
292
302
|
thumbnailUrl?: string | undefined;
|
|
303
|
+
width?: string | undefined;
|
|
304
|
+
height?: string | undefined;
|
|
293
305
|
}>>;
|
|
294
306
|
user: z.ZodOptional<z.ZodObject<{
|
|
295
307
|
id: z.ZodString;
|
|
@@ -523,7 +535,7 @@ export declare const SendMessageSchema: z.ZodObject<{
|
|
|
523
535
|
mentions?: string[] | undefined;
|
|
524
536
|
}>>;
|
|
525
537
|
}, "strip", z.ZodTypeAny, {
|
|
526
|
-
messageType: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
538
|
+
messageType: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
527
539
|
roomId: string;
|
|
528
540
|
message?: string | undefined;
|
|
529
541
|
messageAttachments?: {
|
|
@@ -534,6 +546,8 @@ export declare const SendMessageSchema: z.ZodObject<{
|
|
|
534
546
|
bucketName: string;
|
|
535
547
|
fileSize: number;
|
|
536
548
|
thumbnailUrl?: string | undefined;
|
|
549
|
+
width?: string | undefined;
|
|
550
|
+
height?: string | undefined;
|
|
537
551
|
} | undefined;
|
|
538
552
|
user?: {
|
|
539
553
|
name: string;
|
|
@@ -595,7 +609,7 @@ export declare const SendMessageSchema: z.ZodObject<{
|
|
|
595
609
|
mentions?: string[] | undefined;
|
|
596
610
|
} | undefined;
|
|
597
611
|
}, {
|
|
598
|
-
messageType: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
612
|
+
messageType: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
599
613
|
roomId: string;
|
|
600
614
|
message?: string | undefined;
|
|
601
615
|
messageAttachments?: {
|
|
@@ -606,6 +620,8 @@ export declare const SendMessageSchema: z.ZodObject<{
|
|
|
606
620
|
bucketName: string;
|
|
607
621
|
fileSize: number;
|
|
608
622
|
thumbnailUrl?: string | undefined;
|
|
623
|
+
width?: string | undefined;
|
|
624
|
+
height?: string | undefined;
|
|
609
625
|
} | undefined;
|
|
610
626
|
user?: {
|
|
611
627
|
name: string;
|
|
@@ -673,17 +689,17 @@ export declare const InitiateMessageSchema: z.ZodObject<{
|
|
|
673
689
|
contactId: z.ZodOptional<z.ZodString>;
|
|
674
690
|
message: z.ZodObject<{
|
|
675
691
|
message: z.ZodOptional<z.ZodString>;
|
|
676
|
-
messageType: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "csat", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
|
|
692
|
+
messageType: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "csat", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported", "item"]>;
|
|
677
693
|
}, "strip", z.ZodTypeAny, {
|
|
678
|
-
messageType: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
694
|
+
messageType: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
679
695
|
message?: string | undefined;
|
|
680
696
|
}, {
|
|
681
|
-
messageType: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
697
|
+
messageType: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
682
698
|
message?: string | undefined;
|
|
683
699
|
}>;
|
|
684
700
|
}, "strip", z.ZodTypeAny, {
|
|
685
701
|
message: {
|
|
686
|
-
messageType: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
702
|
+
messageType: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
687
703
|
message?: string | undefined;
|
|
688
704
|
};
|
|
689
705
|
channelId: string;
|
|
@@ -691,7 +707,7 @@ export declare const InitiateMessageSchema: z.ZodObject<{
|
|
|
691
707
|
contactId?: string | undefined;
|
|
692
708
|
}, {
|
|
693
709
|
message: {
|
|
694
|
-
messageType: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
710
|
+
messageType: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
695
711
|
message?: string | undefined;
|
|
696
712
|
};
|
|
697
713
|
channelId: string;
|
|
@@ -1638,7 +1654,7 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
|
|
|
1638
1654
|
id: z.ZodOptional<z.ZodString>;
|
|
1639
1655
|
message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1640
1656
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
|
1641
|
-
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "csat", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
|
|
1657
|
+
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "csat", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported", "item"]>;
|
|
1642
1658
|
readAt: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodString]>>>;
|
|
1643
1659
|
metadata: z.ZodOptional<z.ZodAny>;
|
|
1644
1660
|
platformId: z.ZodOptional<z.ZodString>;
|
|
@@ -1690,7 +1706,7 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
|
|
|
1690
1706
|
parentMessageId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1691
1707
|
feedPostId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1692
1708
|
}, "strip", z.ZodTypeAny, {
|
|
1693
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
1709
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
1694
1710
|
direction: "incoming" | "outgoing" | "system";
|
|
1695
1711
|
id?: string | undefined;
|
|
1696
1712
|
message?: string | null | undefined;
|
|
@@ -1721,7 +1737,7 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
|
|
|
1721
1737
|
parentMessageId?: string | null | undefined;
|
|
1722
1738
|
feedPostId?: string | null | undefined;
|
|
1723
1739
|
}, {
|
|
1724
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
1740
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
1725
1741
|
direction: "incoming" | "outgoing" | "system";
|
|
1726
1742
|
id?: string | undefined;
|
|
1727
1743
|
message?: string | null | undefined;
|
|
@@ -1754,7 +1770,7 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
|
|
|
1754
1770
|
}>;
|
|
1755
1771
|
}, "strip", z.ZodTypeAny, {
|
|
1756
1772
|
message: {
|
|
1757
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
1773
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
1758
1774
|
direction: "incoming" | "outgoing" | "system";
|
|
1759
1775
|
id?: string | undefined;
|
|
1760
1776
|
message?: string | null | undefined;
|
|
@@ -1839,7 +1855,7 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
|
|
|
1839
1855
|
};
|
|
1840
1856
|
}, {
|
|
1841
1857
|
message: {
|
|
1842
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
1858
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
1843
1859
|
direction: "incoming" | "outgoing" | "system";
|
|
1844
1860
|
id?: string | undefined;
|
|
1845
1861
|
message?: string | null | undefined;
|
|
@@ -2490,7 +2506,7 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
|
|
|
2490
2506
|
id: z.ZodOptional<z.ZodString>;
|
|
2491
2507
|
message: z.ZodOptional<z.ZodString>;
|
|
2492
2508
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
|
2493
|
-
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "csat", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
|
|
2509
|
+
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "csat", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported", "item"]>;
|
|
2494
2510
|
readAt: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodString]>>>;
|
|
2495
2511
|
metadata: z.ZodOptional<z.ZodAny>;
|
|
2496
2512
|
platformId: z.ZodOptional<z.ZodString>;
|
|
@@ -2546,7 +2562,7 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
|
|
|
2546
2562
|
editedAt: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodString]>>>;
|
|
2547
2563
|
label: z.ZodOptional<z.ZodString>;
|
|
2548
2564
|
}, "strip", z.ZodTypeAny, {
|
|
2549
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
2565
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
2550
2566
|
direction: "incoming" | "outgoing" | "system";
|
|
2551
2567
|
id?: string | undefined;
|
|
2552
2568
|
message?: string | undefined;
|
|
@@ -2581,7 +2597,7 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
|
|
|
2581
2597
|
editedAt?: string | Date | null | undefined;
|
|
2582
2598
|
label?: string | undefined;
|
|
2583
2599
|
}, {
|
|
2584
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
2600
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
2585
2601
|
direction: "incoming" | "outgoing" | "system";
|
|
2586
2602
|
id?: string | undefined;
|
|
2587
2603
|
message?: string | undefined;
|
|
@@ -2618,7 +2634,7 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
|
|
|
2618
2634
|
}>;
|
|
2619
2635
|
}, "strip", z.ZodTypeAny, {
|
|
2620
2636
|
message: {
|
|
2621
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
2637
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
2622
2638
|
direction: "incoming" | "outgoing" | "system";
|
|
2623
2639
|
id?: string | undefined;
|
|
2624
2640
|
message?: string | undefined;
|
|
@@ -2749,7 +2765,7 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
|
|
|
2749
2765
|
isBot: boolean | null;
|
|
2750
2766
|
}, {
|
|
2751
2767
|
message: {
|
|
2752
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
2768
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
2753
2769
|
direction: "incoming" | "outgoing" | "system";
|
|
2754
2770
|
id?: string | undefined;
|
|
2755
2771
|
message?: string | undefined;
|
|
@@ -2884,7 +2900,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
|
|
|
2884
2900
|
id: z.ZodOptional<z.ZodString>;
|
|
2885
2901
|
message: z.ZodOptional<z.ZodString>;
|
|
2886
2902
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
|
2887
|
-
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "csat", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
|
|
2903
|
+
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "csat", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported", "item"]>;
|
|
2888
2904
|
readAt: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodString]>>>;
|
|
2889
2905
|
metadata: z.ZodOptional<z.ZodAny>;
|
|
2890
2906
|
platformId: z.ZodOptional<z.ZodString>;
|
|
@@ -2940,7 +2956,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
|
|
|
2940
2956
|
editedAt: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodString]>>>;
|
|
2941
2957
|
label: z.ZodOptional<z.ZodString>;
|
|
2942
2958
|
}, "strip", z.ZodTypeAny, {
|
|
2943
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
2959
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
2944
2960
|
direction: "incoming" | "outgoing" | "system";
|
|
2945
2961
|
id?: string | undefined;
|
|
2946
2962
|
message?: string | undefined;
|
|
@@ -2975,7 +2991,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
|
|
|
2975
2991
|
editedAt?: string | Date | null | undefined;
|
|
2976
2992
|
label?: string | undefined;
|
|
2977
2993
|
}, {
|
|
2978
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
2994
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
2979
2995
|
direction: "incoming" | "outgoing" | "system";
|
|
2980
2996
|
id?: string | undefined;
|
|
2981
2997
|
message?: string | undefined;
|
|
@@ -3584,7 +3600,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
|
|
|
3584
3600
|
}>>;
|
|
3585
3601
|
}, "strip", z.ZodTypeAny, {
|
|
3586
3602
|
message: {
|
|
3587
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
3603
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
3588
3604
|
direction: "incoming" | "outgoing" | "system";
|
|
3589
3605
|
id?: string | undefined;
|
|
3590
3606
|
message?: string | undefined;
|
|
@@ -3719,7 +3735,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
|
|
|
3719
3735
|
} | undefined;
|
|
3720
3736
|
}, {
|
|
3721
3737
|
message: {
|
|
3722
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
3738
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
3723
3739
|
direction: "incoming" | "outgoing" | "system";
|
|
3724
3740
|
id?: string | undefined;
|
|
3725
3741
|
message?: string | undefined;
|
|
@@ -3856,7 +3872,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
|
|
|
3856
3872
|
export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
3857
3873
|
requestId: z.ZodString;
|
|
3858
3874
|
data: z.ZodObject<{
|
|
3859
|
-
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "csat", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
|
|
3875
|
+
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "csat", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported", "item"]>;
|
|
3860
3876
|
message: z.ZodString;
|
|
3861
3877
|
id: z.ZodString;
|
|
3862
3878
|
url: z.ZodString;
|
|
@@ -7792,7 +7808,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
7792
7808
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
7793
7809
|
message: z.ZodString;
|
|
7794
7810
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
|
7795
|
-
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "csat", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
|
|
7811
|
+
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "csat", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported", "item"]>;
|
|
7796
7812
|
readAt: z.ZodDate;
|
|
7797
7813
|
metadata: z.ZodAny;
|
|
7798
7814
|
platformId: z.ZodString;
|
|
@@ -8450,7 +8466,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
8450
8466
|
};
|
|
8451
8467
|
}>;
|
|
8452
8468
|
}, "strip", z.ZodTypeAny, {
|
|
8453
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
8469
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
8454
8470
|
message: string;
|
|
8455
8471
|
id: string;
|
|
8456
8472
|
url: string;
|
|
@@ -8612,7 +8628,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
8612
8628
|
metadata?: any;
|
|
8613
8629
|
template?: any;
|
|
8614
8630
|
}, {
|
|
8615
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
8631
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
8616
8632
|
message: string;
|
|
8617
8633
|
id: string;
|
|
8618
8634
|
url: string;
|
|
@@ -8986,7 +9002,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
8986
9002
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
8987
9003
|
message: z.ZodString;
|
|
8988
9004
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
|
8989
|
-
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "csat", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
|
|
9005
|
+
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "csat", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported", "item"]>;
|
|
8990
9006
|
readAt: z.ZodDate;
|
|
8991
9007
|
metadata: z.ZodAny;
|
|
8992
9008
|
platformId: z.ZodString;
|
|
@@ -12482,7 +12498,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
12482
12498
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
12483
12499
|
message: z.ZodString;
|
|
12484
12500
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
|
12485
|
-
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "csat", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
|
|
12501
|
+
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "csat", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported", "item"]>;
|
|
12486
12502
|
readAt: z.ZodDate;
|
|
12487
12503
|
metadata: z.ZodAny;
|
|
12488
12504
|
platformId: z.ZodString;
|
|
@@ -13140,7 +13156,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
13140
13156
|
};
|
|
13141
13157
|
}>;
|
|
13142
13158
|
}, "strip", z.ZodTypeAny, {
|
|
13143
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
13159
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
13144
13160
|
message: string;
|
|
13145
13161
|
id: string;
|
|
13146
13162
|
url: string;
|
|
@@ -13302,7 +13318,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
13302
13318
|
metadata?: any;
|
|
13303
13319
|
template?: any;
|
|
13304
13320
|
}, {
|
|
13305
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
13321
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
13306
13322
|
message: string;
|
|
13307
13323
|
id: string;
|
|
13308
13324
|
url: string;
|
|
@@ -14104,7 +14120,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
14104
14120
|
editedMessageid: z.ZodString;
|
|
14105
14121
|
label: z.ZodOptional<z.ZodString>;
|
|
14106
14122
|
}, "strip", z.ZodTypeAny, {
|
|
14107
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
14123
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
14108
14124
|
message: string;
|
|
14109
14125
|
id: string;
|
|
14110
14126
|
url: string;
|
|
@@ -14659,7 +14675,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
14659
14675
|
previewUrl: string;
|
|
14660
14676
|
imageSetId: string;
|
|
14661
14677
|
repliedMessage: {
|
|
14662
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
14678
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
14663
14679
|
message: string;
|
|
14664
14680
|
id: string;
|
|
14665
14681
|
url: string;
|
|
@@ -14870,7 +14886,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
14870
14886
|
template?: any;
|
|
14871
14887
|
label?: string | undefined;
|
|
14872
14888
|
}, {
|
|
14873
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
14889
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
14874
14890
|
message: string;
|
|
14875
14891
|
id: string;
|
|
14876
14892
|
url: string;
|
|
@@ -15425,7 +15441,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
15425
15441
|
previewUrl: string;
|
|
15426
15442
|
imageSetId: string;
|
|
15427
15443
|
repliedMessage: {
|
|
15428
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
15444
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
15429
15445
|
message: string;
|
|
15430
15446
|
id: string;
|
|
15431
15447
|
url: string;
|
|
@@ -15637,7 +15653,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
15637
15653
|
label?: string | undefined;
|
|
15638
15654
|
}>>>;
|
|
15639
15655
|
}, "strip", z.ZodTypeAny, {
|
|
15640
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
15656
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
15641
15657
|
message: string;
|
|
15642
15658
|
id: string;
|
|
15643
15659
|
url: string;
|
|
@@ -16192,7 +16208,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
16192
16208
|
previewUrl: string;
|
|
16193
16209
|
imageSetId: string;
|
|
16194
16210
|
repliedMessage: {
|
|
16195
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
16211
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
16196
16212
|
message: string;
|
|
16197
16213
|
id: string;
|
|
16198
16214
|
url: string;
|
|
@@ -16403,7 +16419,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
16403
16419
|
template?: any;
|
|
16404
16420
|
metadata?: any;
|
|
16405
16421
|
fromMessage?: {
|
|
16406
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
16422
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
16407
16423
|
message: string;
|
|
16408
16424
|
id: string;
|
|
16409
16425
|
url: string;
|
|
@@ -16958,7 +16974,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
16958
16974
|
previewUrl: string;
|
|
16959
16975
|
imageSetId: string;
|
|
16960
16976
|
repliedMessage: {
|
|
16961
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
16977
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
16962
16978
|
message: string;
|
|
16963
16979
|
id: string;
|
|
16964
16980
|
url: string;
|
|
@@ -17170,7 +17186,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
17170
17186
|
label?: string | undefined;
|
|
17171
17187
|
} | null | undefined;
|
|
17172
17188
|
}, {
|
|
17173
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
17189
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
17174
17190
|
message: string;
|
|
17175
17191
|
id: string;
|
|
17176
17192
|
url: string;
|
|
@@ -17725,7 +17741,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
17725
17741
|
previewUrl: string;
|
|
17726
17742
|
imageSetId: string;
|
|
17727
17743
|
repliedMessage: {
|
|
17728
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
17744
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
17729
17745
|
message: string;
|
|
17730
17746
|
id: string;
|
|
17731
17747
|
url: string;
|
|
@@ -17936,7 +17952,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
17936
17952
|
template?: any;
|
|
17937
17953
|
metadata?: any;
|
|
17938
17954
|
fromMessage?: {
|
|
17939
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
17955
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
17940
17956
|
message: string;
|
|
17941
17957
|
id: string;
|
|
17942
17958
|
url: string;
|
|
@@ -18491,7 +18507,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
18491
18507
|
previewUrl: string;
|
|
18492
18508
|
imageSetId: string;
|
|
18493
18509
|
repliedMessage: {
|
|
18494
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
18510
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
18495
18511
|
message: string;
|
|
18496
18512
|
id: string;
|
|
18497
18513
|
url: string;
|
|
@@ -18705,7 +18721,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
18705
18721
|
}>;
|
|
18706
18722
|
}, "strip", z.ZodTypeAny, {
|
|
18707
18723
|
data: {
|
|
18708
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
18724
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
18709
18725
|
message: string;
|
|
18710
18726
|
id: string;
|
|
18711
18727
|
url: string;
|
|
@@ -19260,7 +19276,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
19260
19276
|
previewUrl: string;
|
|
19261
19277
|
imageSetId: string;
|
|
19262
19278
|
repliedMessage: {
|
|
19263
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
19279
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
19264
19280
|
message: string;
|
|
19265
19281
|
id: string;
|
|
19266
19282
|
url: string;
|
|
@@ -19471,7 +19487,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
19471
19487
|
template?: any;
|
|
19472
19488
|
metadata?: any;
|
|
19473
19489
|
fromMessage?: {
|
|
19474
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
19490
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
19475
19491
|
message: string;
|
|
19476
19492
|
id: string;
|
|
19477
19493
|
url: string;
|
|
@@ -20026,7 +20042,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
20026
20042
|
previewUrl: string;
|
|
20027
20043
|
imageSetId: string;
|
|
20028
20044
|
repliedMessage: {
|
|
20029
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
20045
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
20030
20046
|
message: string;
|
|
20031
20047
|
id: string;
|
|
20032
20048
|
url: string;
|
|
@@ -20241,7 +20257,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
20241
20257
|
requestId: string;
|
|
20242
20258
|
}, {
|
|
20243
20259
|
data: {
|
|
20244
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
20260
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
20245
20261
|
message: string;
|
|
20246
20262
|
id: string;
|
|
20247
20263
|
url: string;
|
|
@@ -20796,7 +20812,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
20796
20812
|
previewUrl: string;
|
|
20797
20813
|
imageSetId: string;
|
|
20798
20814
|
repliedMessage: {
|
|
20799
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
20815
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
20800
20816
|
message: string;
|
|
20801
20817
|
id: string;
|
|
20802
20818
|
url: string;
|
|
@@ -21007,7 +21023,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
21007
21023
|
template?: any;
|
|
21008
21024
|
metadata?: any;
|
|
21009
21025
|
fromMessage?: {
|
|
21010
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
21026
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
21011
21027
|
message: string;
|
|
21012
21028
|
id: string;
|
|
21013
21029
|
url: string;
|
|
@@ -21562,7 +21578,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
21562
21578
|
previewUrl: string;
|
|
21563
21579
|
imageSetId: string;
|
|
21564
21580
|
repliedMessage: {
|
|
21565
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
21581
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
21566
21582
|
message: string;
|
|
21567
21583
|
id: string;
|
|
21568
21584
|
url: string;
|
|
@@ -22140,7 +22156,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
|
22140
22156
|
deletedAt: z.ZodNullable<z.ZodString>;
|
|
22141
22157
|
message: z.ZodOptional<z.ZodString>;
|
|
22142
22158
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
|
22143
|
-
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "csat", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
|
|
22159
|
+
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "csat", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported", "item"]>;
|
|
22144
22160
|
metadata: z.ZodAny;
|
|
22145
22161
|
platformId: z.ZodString;
|
|
22146
22162
|
platformMessageId: z.ZodString;
|
|
@@ -25646,7 +25662,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
|
25646
25662
|
}>>>;
|
|
25647
25663
|
label: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
25648
25664
|
}, "strip", z.ZodTypeAny, {
|
|
25649
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
25665
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
25650
25666
|
id: string;
|
|
25651
25667
|
direction: "incoming" | "outgoing" | "system";
|
|
25652
25668
|
createdAt: string;
|
|
@@ -26162,7 +26178,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
|
26162
26178
|
} | null | undefined;
|
|
26163
26179
|
label?: string | null | undefined;
|
|
26164
26180
|
}, {
|
|
26165
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
26181
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
26166
26182
|
id: string;
|
|
26167
26183
|
direction: "incoming" | "outgoing" | "system";
|
|
26168
26184
|
createdAt: string;
|
|
@@ -26680,7 +26696,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
|
26680
26696
|
}>;
|
|
26681
26697
|
}, "strip", z.ZodTypeAny, {
|
|
26682
26698
|
message: {
|
|
26683
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
26699
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
26684
26700
|
id: string;
|
|
26685
26701
|
direction: "incoming" | "outgoing" | "system";
|
|
26686
26702
|
createdAt: string;
|
|
@@ -27198,7 +27214,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
|
27198
27214
|
};
|
|
27199
27215
|
}, {
|
|
27200
27216
|
message: {
|
|
27201
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
27217
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
27202
27218
|
id: string;
|
|
27203
27219
|
direction: "incoming" | "outgoing" | "system";
|
|
27204
27220
|
createdAt: string;
|