@kl1/contracts 1.2.62-uat → 1.2.63-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/chat/index.d.ts +169 -169
- 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 +56 -56
- package/dist/api-contracts/src/contract.d.ts +296 -296
- 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 +3 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -270,7 +270,7 @@ export declare const ActionMessageSchema: z.ZodObject<{
|
|
|
270
270
|
}>;
|
|
271
271
|
export declare const SendMessageSchema: z.ZodObject<{
|
|
272
272
|
roomId: z.ZodString;
|
|
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", "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", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported", "item"]>;
|
|
274
274
|
message: z.ZodOptional<z.ZodString>;
|
|
275
275
|
messageAttachments: z.ZodOptional<z.ZodObject<{
|
|
276
276
|
bucketName: z.ZodString;
|
|
@@ -535,7 +535,7 @@ export declare const SendMessageSchema: z.ZodObject<{
|
|
|
535
535
|
mentions?: string[] | undefined;
|
|
536
536
|
}>>;
|
|
537
537
|
}, "strip", z.ZodTypeAny, {
|
|
538
|
-
messageType: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "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" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
539
539
|
roomId: string;
|
|
540
540
|
message?: string | undefined;
|
|
541
541
|
messageAttachments?: {
|
|
@@ -609,7 +609,7 @@ export declare const SendMessageSchema: z.ZodObject<{
|
|
|
609
609
|
mentions?: string[] | undefined;
|
|
610
610
|
} | undefined;
|
|
611
611
|
}, {
|
|
612
|
-
messageType: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "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" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
613
613
|
roomId: string;
|
|
614
614
|
message?: string | undefined;
|
|
615
615
|
messageAttachments?: {
|
|
@@ -689,17 +689,17 @@ export declare const InitiateMessageSchema: z.ZodObject<{
|
|
|
689
689
|
contactId: z.ZodOptional<z.ZodString>;
|
|
690
690
|
message: z.ZodObject<{
|
|
691
691
|
message: z.ZodOptional<z.ZodString>;
|
|
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", "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", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported", "item"]>;
|
|
693
693
|
}, "strip", z.ZodTypeAny, {
|
|
694
|
-
messageType: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "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" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
695
695
|
message?: string | undefined;
|
|
696
696
|
}, {
|
|
697
|
-
messageType: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "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" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
698
698
|
message?: string | undefined;
|
|
699
699
|
}>;
|
|
700
700
|
}, "strip", z.ZodTypeAny, {
|
|
701
701
|
message: {
|
|
702
|
-
messageType: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "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" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
703
703
|
message?: string | undefined;
|
|
704
704
|
};
|
|
705
705
|
channelId: string;
|
|
@@ -707,7 +707,7 @@ export declare const InitiateMessageSchema: z.ZodObject<{
|
|
|
707
707
|
contactId?: string | undefined;
|
|
708
708
|
}, {
|
|
709
709
|
message: {
|
|
710
|
-
messageType: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "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" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
711
711
|
message?: string | undefined;
|
|
712
712
|
};
|
|
713
713
|
channelId: string;
|
|
@@ -1637,7 +1637,7 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
|
|
|
1637
1637
|
id: z.ZodOptional<z.ZodString>;
|
|
1638
1638
|
message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1639
1639
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
|
1640
|
-
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", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
|
|
1640
|
+
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", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported", "item"]>;
|
|
1641
1641
|
readAt: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodString]>>>;
|
|
1642
1642
|
metadata: z.ZodOptional<z.ZodAny>;
|
|
1643
1643
|
platformId: z.ZodOptional<z.ZodString>;
|
|
@@ -1689,7 +1689,7 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
|
|
|
1689
1689
|
parentMessageId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1690
1690
|
feedPostId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1691
1691
|
}, "strip", z.ZodTypeAny, {
|
|
1692
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
1692
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
1693
1693
|
direction: "incoming" | "outgoing" | "system";
|
|
1694
1694
|
id?: string | undefined;
|
|
1695
1695
|
message?: string | null | undefined;
|
|
@@ -1720,7 +1720,7 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
|
|
|
1720
1720
|
parentMessageId?: string | null | undefined;
|
|
1721
1721
|
feedPostId?: string | null | undefined;
|
|
1722
1722
|
}, {
|
|
1723
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
1723
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
1724
1724
|
direction: "incoming" | "outgoing" | "system";
|
|
1725
1725
|
id?: string | undefined;
|
|
1726
1726
|
message?: string | null | undefined;
|
|
@@ -1753,7 +1753,7 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
|
|
|
1753
1753
|
}>;
|
|
1754
1754
|
}, "strip", z.ZodTypeAny, {
|
|
1755
1755
|
message: {
|
|
1756
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
1756
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
1757
1757
|
direction: "incoming" | "outgoing" | "system";
|
|
1758
1758
|
id?: string | undefined;
|
|
1759
1759
|
message?: string | null | undefined;
|
|
@@ -1837,7 +1837,7 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
|
|
|
1837
1837
|
};
|
|
1838
1838
|
}, {
|
|
1839
1839
|
message: {
|
|
1840
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
1840
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
1841
1841
|
direction: "incoming" | "outgoing" | "system";
|
|
1842
1842
|
id?: string | undefined;
|
|
1843
1843
|
message?: string | null | undefined;
|
|
@@ -2480,7 +2480,7 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
|
|
|
2480
2480
|
id: z.ZodOptional<z.ZodString>;
|
|
2481
2481
|
message: z.ZodOptional<z.ZodString>;
|
|
2482
2482
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
|
2483
|
-
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", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
|
|
2483
|
+
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", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported", "item"]>;
|
|
2484
2484
|
readAt: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodString]>>>;
|
|
2485
2485
|
metadata: z.ZodOptional<z.ZodAny>;
|
|
2486
2486
|
platformId: z.ZodOptional<z.ZodString>;
|
|
@@ -2536,7 +2536,7 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
|
|
|
2536
2536
|
editedAt: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodString]>>>;
|
|
2537
2537
|
label: z.ZodOptional<z.ZodString>;
|
|
2538
2538
|
}, "strip", z.ZodTypeAny, {
|
|
2539
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
2539
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
2540
2540
|
direction: "incoming" | "outgoing" | "system";
|
|
2541
2541
|
id?: string | undefined;
|
|
2542
2542
|
message?: string | undefined;
|
|
@@ -2571,7 +2571,7 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
|
|
|
2571
2571
|
editedAt?: string | Date | null | undefined;
|
|
2572
2572
|
label?: string | undefined;
|
|
2573
2573
|
}, {
|
|
2574
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
2574
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
2575
2575
|
direction: "incoming" | "outgoing" | "system";
|
|
2576
2576
|
id?: string | undefined;
|
|
2577
2577
|
message?: string | undefined;
|
|
@@ -2608,7 +2608,7 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
|
|
|
2608
2608
|
}>;
|
|
2609
2609
|
}, "strip", z.ZodTypeAny, {
|
|
2610
2610
|
message: {
|
|
2611
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
2611
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
2612
2612
|
direction: "incoming" | "outgoing" | "system";
|
|
2613
2613
|
id?: string | undefined;
|
|
2614
2614
|
message?: string | undefined;
|
|
@@ -2738,7 +2738,7 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
|
|
|
2738
2738
|
isBot: boolean | null;
|
|
2739
2739
|
}, {
|
|
2740
2740
|
message: {
|
|
2741
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
2741
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
2742
2742
|
direction: "incoming" | "outgoing" | "system";
|
|
2743
2743
|
id?: string | undefined;
|
|
2744
2744
|
message?: string | undefined;
|
|
@@ -2872,7 +2872,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
|
|
|
2872
2872
|
id: z.ZodOptional<z.ZodString>;
|
|
2873
2873
|
message: z.ZodOptional<z.ZodString>;
|
|
2874
2874
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
|
2875
|
-
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", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
|
|
2875
|
+
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", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported", "item"]>;
|
|
2876
2876
|
readAt: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodString]>>>;
|
|
2877
2877
|
metadata: z.ZodOptional<z.ZodAny>;
|
|
2878
2878
|
platformId: z.ZodOptional<z.ZodString>;
|
|
@@ -2928,7 +2928,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
|
|
|
2928
2928
|
editedAt: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodString]>>>;
|
|
2929
2929
|
label: z.ZodOptional<z.ZodString>;
|
|
2930
2930
|
}, "strip", z.ZodTypeAny, {
|
|
2931
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
2931
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
2932
2932
|
direction: "incoming" | "outgoing" | "system";
|
|
2933
2933
|
id?: string | undefined;
|
|
2934
2934
|
message?: string | undefined;
|
|
@@ -2963,7 +2963,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
|
|
|
2963
2963
|
editedAt?: string | Date | null | undefined;
|
|
2964
2964
|
label?: string | undefined;
|
|
2965
2965
|
}, {
|
|
2966
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
2966
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
2967
2967
|
direction: "incoming" | "outgoing" | "system";
|
|
2968
2968
|
id?: string | undefined;
|
|
2969
2969
|
message?: string | undefined;
|
|
@@ -3565,7 +3565,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
|
|
|
3565
3565
|
}>>;
|
|
3566
3566
|
}, "strip", z.ZodTypeAny, {
|
|
3567
3567
|
message: {
|
|
3568
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
3568
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
3569
3569
|
direction: "incoming" | "outgoing" | "system";
|
|
3570
3570
|
id?: string | undefined;
|
|
3571
3571
|
message?: string | undefined;
|
|
@@ -3699,7 +3699,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
|
|
|
3699
3699
|
} | undefined;
|
|
3700
3700
|
}, {
|
|
3701
3701
|
message: {
|
|
3702
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
3702
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
3703
3703
|
direction: "incoming" | "outgoing" | "system";
|
|
3704
3704
|
id?: string | undefined;
|
|
3705
3705
|
message?: string | undefined;
|
|
@@ -3835,7 +3835,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
|
|
|
3835
3835
|
export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
3836
3836
|
requestId: z.ZodString;
|
|
3837
3837
|
data: z.ZodObject<{
|
|
3838
|
-
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", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
|
|
3838
|
+
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", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported", "item"]>;
|
|
3839
3839
|
message: z.ZodString;
|
|
3840
3840
|
id: z.ZodString;
|
|
3841
3841
|
url: z.ZodString;
|
|
@@ -7761,7 +7761,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
7761
7761
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
7762
7762
|
message: z.ZodString;
|
|
7763
7763
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
|
7764
|
-
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", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
|
|
7764
|
+
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", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported", "item"]>;
|
|
7765
7765
|
readAt: z.ZodDate;
|
|
7766
7766
|
metadata: z.ZodAny;
|
|
7767
7767
|
platformId: z.ZodString;
|
|
@@ -8419,7 +8419,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
8419
8419
|
};
|
|
8420
8420
|
}>;
|
|
8421
8421
|
}, "strip", z.ZodTypeAny, {
|
|
8422
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
8422
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
8423
8423
|
message: string;
|
|
8424
8424
|
id: string;
|
|
8425
8425
|
url: string;
|
|
@@ -8581,7 +8581,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
8581
8581
|
metadata?: any;
|
|
8582
8582
|
template?: any;
|
|
8583
8583
|
}, {
|
|
8584
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
8584
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
8585
8585
|
message: string;
|
|
8586
8586
|
id: string;
|
|
8587
8587
|
url: string;
|
|
@@ -8955,7 +8955,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
8955
8955
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
8956
8956
|
message: z.ZodString;
|
|
8957
8957
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
|
8958
|
-
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", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
|
|
8958
|
+
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", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported", "item"]>;
|
|
8959
8959
|
readAt: z.ZodDate;
|
|
8960
8960
|
metadata: z.ZodAny;
|
|
8961
8961
|
platformId: z.ZodString;
|
|
@@ -12441,7 +12441,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
12441
12441
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
12442
12442
|
message: z.ZodString;
|
|
12443
12443
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
|
12444
|
-
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", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
|
|
12444
|
+
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", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported", "item"]>;
|
|
12445
12445
|
readAt: z.ZodDate;
|
|
12446
12446
|
metadata: z.ZodAny;
|
|
12447
12447
|
platformId: z.ZodString;
|
|
@@ -13099,7 +13099,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
13099
13099
|
};
|
|
13100
13100
|
}>;
|
|
13101
13101
|
}, "strip", z.ZodTypeAny, {
|
|
13102
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
13102
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
13103
13103
|
message: string;
|
|
13104
13104
|
id: string;
|
|
13105
13105
|
url: string;
|
|
@@ -13261,7 +13261,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
13261
13261
|
metadata?: any;
|
|
13262
13262
|
template?: any;
|
|
13263
13263
|
}, {
|
|
13264
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
13264
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
13265
13265
|
message: string;
|
|
13266
13266
|
id: string;
|
|
13267
13267
|
url: string;
|
|
@@ -14063,7 +14063,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
14063
14063
|
editedMessageid: z.ZodString;
|
|
14064
14064
|
label: z.ZodOptional<z.ZodString>;
|
|
14065
14065
|
}, "strip", z.ZodTypeAny, {
|
|
14066
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
14066
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
14067
14067
|
message: string;
|
|
14068
14068
|
id: string;
|
|
14069
14069
|
url: string;
|
|
@@ -14616,7 +14616,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
14616
14616
|
previewUrl: string;
|
|
14617
14617
|
imageSetId: string;
|
|
14618
14618
|
repliedMessage: {
|
|
14619
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
14619
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
14620
14620
|
message: string;
|
|
14621
14621
|
id: string;
|
|
14622
14622
|
url: string;
|
|
@@ -14827,7 +14827,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
14827
14827
|
template?: any;
|
|
14828
14828
|
label?: string | undefined;
|
|
14829
14829
|
}, {
|
|
14830
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
14830
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
14831
14831
|
message: string;
|
|
14832
14832
|
id: string;
|
|
14833
14833
|
url: string;
|
|
@@ -15380,7 +15380,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
15380
15380
|
previewUrl: string;
|
|
15381
15381
|
imageSetId: string;
|
|
15382
15382
|
repliedMessage: {
|
|
15383
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
15383
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
15384
15384
|
message: string;
|
|
15385
15385
|
id: string;
|
|
15386
15386
|
url: string;
|
|
@@ -15592,7 +15592,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
15592
15592
|
label?: string | undefined;
|
|
15593
15593
|
}>>>;
|
|
15594
15594
|
}, "strip", z.ZodTypeAny, {
|
|
15595
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
15595
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
15596
15596
|
message: string;
|
|
15597
15597
|
id: string;
|
|
15598
15598
|
url: string;
|
|
@@ -16145,7 +16145,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
16145
16145
|
previewUrl: string;
|
|
16146
16146
|
imageSetId: string;
|
|
16147
16147
|
repliedMessage: {
|
|
16148
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
16148
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
16149
16149
|
message: string;
|
|
16150
16150
|
id: string;
|
|
16151
16151
|
url: string;
|
|
@@ -16356,7 +16356,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
16356
16356
|
template?: any;
|
|
16357
16357
|
metadata?: any;
|
|
16358
16358
|
fromMessage?: {
|
|
16359
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
16359
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
16360
16360
|
message: string;
|
|
16361
16361
|
id: string;
|
|
16362
16362
|
url: string;
|
|
@@ -16909,7 +16909,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
16909
16909
|
previewUrl: string;
|
|
16910
16910
|
imageSetId: string;
|
|
16911
16911
|
repliedMessage: {
|
|
16912
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
16912
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
16913
16913
|
message: string;
|
|
16914
16914
|
id: string;
|
|
16915
16915
|
url: string;
|
|
@@ -17121,7 +17121,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
17121
17121
|
label?: string | undefined;
|
|
17122
17122
|
} | null | undefined;
|
|
17123
17123
|
}, {
|
|
17124
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
17124
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
17125
17125
|
message: string;
|
|
17126
17126
|
id: string;
|
|
17127
17127
|
url: string;
|
|
@@ -17674,7 +17674,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
17674
17674
|
previewUrl: string;
|
|
17675
17675
|
imageSetId: string;
|
|
17676
17676
|
repliedMessage: {
|
|
17677
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
17677
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
17678
17678
|
message: string;
|
|
17679
17679
|
id: string;
|
|
17680
17680
|
url: string;
|
|
@@ -17885,7 +17885,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
17885
17885
|
template?: any;
|
|
17886
17886
|
metadata?: any;
|
|
17887
17887
|
fromMessage?: {
|
|
17888
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
17888
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
17889
17889
|
message: string;
|
|
17890
17890
|
id: string;
|
|
17891
17891
|
url: string;
|
|
@@ -18438,7 +18438,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
18438
18438
|
previewUrl: string;
|
|
18439
18439
|
imageSetId: string;
|
|
18440
18440
|
repliedMessage: {
|
|
18441
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
18441
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
18442
18442
|
message: string;
|
|
18443
18443
|
id: string;
|
|
18444
18444
|
url: string;
|
|
@@ -18652,7 +18652,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
18652
18652
|
}>;
|
|
18653
18653
|
}, "strip", z.ZodTypeAny, {
|
|
18654
18654
|
data: {
|
|
18655
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
18655
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
18656
18656
|
message: string;
|
|
18657
18657
|
id: string;
|
|
18658
18658
|
url: string;
|
|
@@ -19205,7 +19205,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
19205
19205
|
previewUrl: string;
|
|
19206
19206
|
imageSetId: string;
|
|
19207
19207
|
repliedMessage: {
|
|
19208
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
19208
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
19209
19209
|
message: string;
|
|
19210
19210
|
id: string;
|
|
19211
19211
|
url: string;
|
|
@@ -19416,7 +19416,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
19416
19416
|
template?: any;
|
|
19417
19417
|
metadata?: any;
|
|
19418
19418
|
fromMessage?: {
|
|
19419
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
19419
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
19420
19420
|
message: string;
|
|
19421
19421
|
id: string;
|
|
19422
19422
|
url: string;
|
|
@@ -19969,7 +19969,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
19969
19969
|
previewUrl: string;
|
|
19970
19970
|
imageSetId: string;
|
|
19971
19971
|
repliedMessage: {
|
|
19972
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
19972
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
19973
19973
|
message: string;
|
|
19974
19974
|
id: string;
|
|
19975
19975
|
url: string;
|
|
@@ -20184,7 +20184,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
20184
20184
|
requestId: string;
|
|
20185
20185
|
}, {
|
|
20186
20186
|
data: {
|
|
20187
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
20187
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
20188
20188
|
message: string;
|
|
20189
20189
|
id: string;
|
|
20190
20190
|
url: string;
|
|
@@ -20737,7 +20737,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
20737
20737
|
previewUrl: string;
|
|
20738
20738
|
imageSetId: string;
|
|
20739
20739
|
repliedMessage: {
|
|
20740
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
20740
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
20741
20741
|
message: string;
|
|
20742
20742
|
id: string;
|
|
20743
20743
|
url: string;
|
|
@@ -20948,7 +20948,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
20948
20948
|
template?: any;
|
|
20949
20949
|
metadata?: any;
|
|
20950
20950
|
fromMessage?: {
|
|
20951
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
20951
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
20952
20952
|
message: string;
|
|
20953
20953
|
id: string;
|
|
20954
20954
|
url: string;
|
|
@@ -21501,7 +21501,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
|
21501
21501
|
previewUrl: string;
|
|
21502
21502
|
imageSetId: string;
|
|
21503
21503
|
repliedMessage: {
|
|
21504
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
21504
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
21505
21505
|
message: string;
|
|
21506
21506
|
id: string;
|
|
21507
21507
|
url: string;
|
|
@@ -22072,7 +22072,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
|
22072
22072
|
deletedAt: z.ZodNullable<z.ZodString>;
|
|
22073
22073
|
message: z.ZodOptional<z.ZodString>;
|
|
22074
22074
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
|
22075
|
-
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", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
|
|
22075
|
+
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", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported", "item"]>;
|
|
22076
22076
|
metadata: z.ZodAny;
|
|
22077
22077
|
platformId: z.ZodString;
|
|
22078
22078
|
platformMessageId: z.ZodString;
|
|
@@ -25571,7 +25571,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
|
25571
25571
|
}>>>;
|
|
25572
25572
|
label: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
25573
25573
|
}, "strip", z.ZodTypeAny, {
|
|
25574
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
25574
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
25575
25575
|
id: string;
|
|
25576
25576
|
direction: "incoming" | "outgoing" | "system";
|
|
25577
25577
|
createdAt: string;
|
|
@@ -26086,7 +26086,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
|
26086
26086
|
} | null | undefined;
|
|
26087
26087
|
label?: string | null | undefined;
|
|
26088
26088
|
}, {
|
|
26089
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
26089
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
26090
26090
|
id: string;
|
|
26091
26091
|
direction: "incoming" | "outgoing" | "system";
|
|
26092
26092
|
createdAt: string;
|
|
@@ -26603,7 +26603,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
|
26603
26603
|
}>;
|
|
26604
26604
|
}, "strip", z.ZodTypeAny, {
|
|
26605
26605
|
message: {
|
|
26606
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
26606
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
26607
26607
|
id: string;
|
|
26608
26608
|
direction: "incoming" | "outgoing" | "system";
|
|
26609
26609
|
createdAt: string;
|
|
@@ -27120,7 +27120,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
|
27120
27120
|
};
|
|
27121
27121
|
}, {
|
|
27122
27122
|
message: {
|
|
27123
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
27123
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
27124
27124
|
id: string;
|
|
27125
27125
|
direction: "incoming" | "outgoing" | "system";
|
|
27126
27126
|
createdAt: string;
|