@kl1/contracts 1.2.60-uat → 1.2.62-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.
Files changed (45) hide show
  1. package/dist/api-contracts/src/channel/index.d.ts +2629 -2687
  2. package/dist/api-contracts/src/channel/index.d.ts.map +1 -1
  3. package/dist/api-contracts/src/channel/validation.d.ts +10 -0
  4. package/dist/api-contracts/src/channel/validation.d.ts.map +1 -1
  5. package/dist/api-contracts/src/chat/index.d.ts +189 -285
  6. package/dist/api-contracts/src/chat/index.d.ts.map +1 -1
  7. package/dist/api-contracts/src/chat/schema.d.ts +45 -70
  8. package/dist/api-contracts/src/chat/schema.d.ts.map +1 -1
  9. package/dist/api-contracts/src/chat/validation.d.ts +72 -72
  10. package/dist/api-contracts/src/chat/validation.d.ts.map +1 -1
  11. package/dist/api-contracts/src/contract.d.ts +3632 -4224
  12. package/dist/api-contracts/src/contract.d.ts.map +1 -1
  13. package/dist/api-contracts/src/dashboard/index.d.ts +1 -290
  14. package/dist/api-contracts/src/dashboard/index.d.ts.map +1 -1
  15. package/dist/api-contracts/src/dashboard/schema.d.ts +0 -71
  16. package/dist/api-contracts/src/dashboard/schema.d.ts.map +1 -1
  17. package/dist/api-contracts/src/facebook-feed/index.d.ts +43 -59
  18. package/dist/api-contracts/src/facebook-feed/index.d.ts.map +1 -1
  19. package/dist/api-contracts/src/facebook-feed/schema.d.ts +3 -3
  20. package/dist/api-contracts/src/instagram/index.d.ts +33 -49
  21. package/dist/api-contracts/src/instagram/index.d.ts.map +1 -1
  22. package/dist/api-contracts/src/line/index.d.ts +40 -56
  23. package/dist/api-contracts/src/line/index.d.ts.map +1 -1
  24. package/dist/api-contracts/src/line/validation.d.ts +5 -5
  25. package/dist/api-contracts/src/messenger/index.d.ts +33 -49
  26. package/dist/api-contracts/src/messenger/index.d.ts.map +1 -1
  27. package/dist/api-contracts/src/sms/index.d.ts +5 -5
  28. package/dist/api-contracts/src/telegram/index.d.ts +33 -49
  29. package/dist/api-contracts/src/telegram/index.d.ts.map +1 -1
  30. package/dist/api-contracts/src/viber/index.d.ts +33 -49
  31. package/dist/api-contracts/src/viber/index.d.ts.map +1 -1
  32. package/dist/api-contracts/src/webchat/index.d.ts +33 -49
  33. package/dist/api-contracts/src/webchat/index.d.ts.map +1 -1
  34. package/dist/api-contracts/src/whatsapp/index.d.ts +39 -96
  35. package/dist/api-contracts/src/whatsapp/index.d.ts.map +1 -1
  36. package/dist/api-contracts/src/whatsapp/validation.d.ts +3 -3
  37. package/dist/api-contracts/src/workflow-rule/index.d.ts +12 -29
  38. package/dist/api-contracts/src/workflow-rule/index.d.ts.map +1 -1
  39. package/dist/entities/src/enums/chat.d.ts +0 -12
  40. package/dist/entities/src/enums/chat.d.ts.map +1 -1
  41. package/dist/index.js +39 -137
  42. package/dist/index.js.map +1 -1
  43. package/dist/index.mjs +39 -137
  44. package/dist/index.mjs.map +1 -1
  45. 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", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
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" | "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";
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" | "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";
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", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
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" | "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";
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" | "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";
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" | "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";
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" | "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
711
  message?: string | undefined;
696
712
  };
697
713
  channelId: string;
@@ -1621,7 +1637,7 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
1621
1637
  id: z.ZodOptional<z.ZodString>;
1622
1638
  message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1623
1639
  direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
1624
- 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"]>;
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"]>;
1625
1641
  readAt: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodString]>>>;
1626
1642
  metadata: z.ZodOptional<z.ZodAny>;
1627
1643
  platformId: z.ZodOptional<z.ZodString>;
@@ -1673,7 +1689,7 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
1673
1689
  parentMessageId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1674
1690
  feedPostId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1675
1691
  }, "strip", z.ZodTypeAny, {
1676
- 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";
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";
1677
1693
  direction: "incoming" | "outgoing" | "system";
1678
1694
  id?: string | undefined;
1679
1695
  message?: string | null | undefined;
@@ -1704,7 +1720,7 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
1704
1720
  parentMessageId?: string | null | undefined;
1705
1721
  feedPostId?: string | null | undefined;
1706
1722
  }, {
1707
- 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";
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";
1708
1724
  direction: "incoming" | "outgoing" | "system";
1709
1725
  id?: string | undefined;
1710
1726
  message?: string | null | undefined;
@@ -1737,7 +1753,7 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
1737
1753
  }>;
1738
1754
  }, "strip", z.ZodTypeAny, {
1739
1755
  message: {
1740
- 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";
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";
1741
1757
  direction: "incoming" | "outgoing" | "system";
1742
1758
  id?: string | undefined;
1743
1759
  message?: string | null | undefined;
@@ -1821,7 +1837,7 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
1821
1837
  };
1822
1838
  }, {
1823
1839
  message: {
1824
- 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";
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";
1825
1841
  direction: "incoming" | "outgoing" | "system";
1826
1842
  id?: string | undefined;
1827
1843
  message?: string | null | undefined;
@@ -2464,7 +2480,7 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
2464
2480
  id: z.ZodOptional<z.ZodString>;
2465
2481
  message: z.ZodOptional<z.ZodString>;
2466
2482
  direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
2467
- 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"]>;
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"]>;
2468
2484
  readAt: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodString]>>>;
2469
2485
  metadata: z.ZodOptional<z.ZodAny>;
2470
2486
  platformId: z.ZodOptional<z.ZodString>;
@@ -2520,7 +2536,7 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
2520
2536
  editedAt: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodString]>>>;
2521
2537
  label: z.ZodOptional<z.ZodString>;
2522
2538
  }, "strip", z.ZodTypeAny, {
2523
- 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";
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";
2524
2540
  direction: "incoming" | "outgoing" | "system";
2525
2541
  id?: string | undefined;
2526
2542
  message?: string | undefined;
@@ -2555,7 +2571,7 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
2555
2571
  editedAt?: string | Date | null | undefined;
2556
2572
  label?: string | undefined;
2557
2573
  }, {
2558
- 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";
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";
2559
2575
  direction: "incoming" | "outgoing" | "system";
2560
2576
  id?: string | undefined;
2561
2577
  message?: string | undefined;
@@ -2592,7 +2608,7 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
2592
2608
  }>;
2593
2609
  }, "strip", z.ZodTypeAny, {
2594
2610
  message: {
2595
- 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";
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";
2596
2612
  direction: "incoming" | "outgoing" | "system";
2597
2613
  id?: string | undefined;
2598
2614
  message?: string | undefined;
@@ -2722,7 +2738,7 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
2722
2738
  isBot: boolean | null;
2723
2739
  }, {
2724
2740
  message: {
2725
- 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";
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";
2726
2742
  direction: "incoming" | "outgoing" | "system";
2727
2743
  id?: string | undefined;
2728
2744
  message?: string | undefined;
@@ -2856,7 +2872,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
2856
2872
  id: z.ZodOptional<z.ZodString>;
2857
2873
  message: z.ZodOptional<z.ZodString>;
2858
2874
  direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
2859
- 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"]>;
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"]>;
2860
2876
  readAt: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodString]>>>;
2861
2877
  metadata: z.ZodOptional<z.ZodAny>;
2862
2878
  platformId: z.ZodOptional<z.ZodString>;
@@ -2912,7 +2928,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
2912
2928
  editedAt: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodString]>>>;
2913
2929
  label: z.ZodOptional<z.ZodString>;
2914
2930
  }, "strip", z.ZodTypeAny, {
2915
- 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";
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";
2916
2932
  direction: "incoming" | "outgoing" | "system";
2917
2933
  id?: string | undefined;
2918
2934
  message?: string | undefined;
@@ -2947,7 +2963,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
2947
2963
  editedAt?: string | Date | null | undefined;
2948
2964
  label?: string | undefined;
2949
2965
  }, {
2950
- 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";
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";
2951
2967
  direction: "incoming" | "outgoing" | "system";
2952
2968
  id?: string | undefined;
2953
2969
  message?: string | undefined;
@@ -3549,7 +3565,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
3549
3565
  }>>;
3550
3566
  }, "strip", z.ZodTypeAny, {
3551
3567
  message: {
3552
- 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";
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";
3553
3569
  direction: "incoming" | "outgoing" | "system";
3554
3570
  id?: string | undefined;
3555
3571
  message?: string | undefined;
@@ -3683,7 +3699,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
3683
3699
  } | undefined;
3684
3700
  }, {
3685
3701
  message: {
3686
- 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";
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";
3687
3703
  direction: "incoming" | "outgoing" | "system";
3688
3704
  id?: string | undefined;
3689
3705
  message?: string | undefined;
@@ -3819,7 +3835,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
3819
3835
  export declare const SendMessageResponseSchema: z.ZodObject<{
3820
3836
  requestId: z.ZodString;
3821
3837
  data: z.ZodObject<{
3822
- 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"]>;
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"]>;
3823
3839
  message: z.ZodString;
3824
3840
  id: z.ZodString;
3825
3841
  url: z.ZodString;
@@ -5336,7 +5352,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
5336
5352
  channelId: string;
5337
5353
  socialPlatformId: string;
5338
5354
  }>;
5339
- csatStatus: z.ZodNullable<z.ZodString>;
5340
5355
  actor: z.ZodObject<{
5341
5356
  id: z.ZodString;
5342
5357
  createdAt: z.ZodDate;
@@ -7179,7 +7194,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
7179
7194
  closedAt: Date;
7180
7195
  lastMessageAt: Date | null;
7181
7196
  isBotRoom: boolean;
7182
- csatStatus: string | null;
7183
7197
  cxlog: {
7184
7198
  id: string;
7185
7199
  channel: string | null;
@@ -7607,7 +7621,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
7607
7621
  closedAt: Date;
7608
7622
  lastMessageAt: Date | null;
7609
7623
  isBotRoom: boolean;
7610
- csatStatus: string | null;
7611
7624
  cxlog: {
7612
7625
  id: string;
7613
7626
  channel: string | null;
@@ -7748,7 +7761,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
7748
7761
  deletedAt: z.ZodNullable<z.ZodDate>;
7749
7762
  message: z.ZodString;
7750
7763
  direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
7751
- 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"]>;
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"]>;
7752
7765
  readAt: z.ZodDate;
7753
7766
  metadata: z.ZodAny;
7754
7767
  platformId: z.ZodString;
@@ -8406,7 +8419,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
8406
8419
  };
8407
8420
  }>;
8408
8421
  }, "strip", z.ZodTypeAny, {
8409
- 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";
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";
8410
8423
  message: string;
8411
8424
  id: string;
8412
8425
  url: string;
@@ -8568,7 +8581,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
8568
8581
  metadata?: any;
8569
8582
  template?: any;
8570
8583
  }, {
8571
- 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";
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";
8572
8585
  message: string;
8573
8586
  id: string;
8574
8587
  url: string;
@@ -8942,7 +8955,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
8942
8955
  deletedAt: z.ZodNullable<z.ZodDate>;
8943
8956
  message: z.ZodString;
8944
8957
  direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
8945
- 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"]>;
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"]>;
8946
8959
  readAt: z.ZodDate;
8947
8960
  metadata: z.ZodAny;
8948
8961
  platformId: z.ZodString;
@@ -10016,7 +10029,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
10016
10029
  channelId: string;
10017
10030
  socialPlatformId: string;
10018
10031
  }>;
10019
- csatStatus: z.ZodNullable<z.ZodString>;
10020
10032
  actor: z.ZodObject<{
10021
10033
  id: z.ZodString;
10022
10034
  createdAt: z.ZodDate;
@@ -11859,7 +11871,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
11859
11871
  closedAt: Date;
11860
11872
  lastMessageAt: Date | null;
11861
11873
  isBotRoom: boolean;
11862
- csatStatus: string | null;
11863
11874
  cxlog: {
11864
11875
  id: string;
11865
11876
  channel: string | null;
@@ -12287,7 +12298,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
12287
12298
  closedAt: Date;
12288
12299
  lastMessageAt: Date | null;
12289
12300
  isBotRoom: boolean;
12290
- csatStatus: string | null;
12291
12301
  cxlog: {
12292
12302
  id: string;
12293
12303
  channel: string | null;
@@ -12431,7 +12441,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
12431
12441
  deletedAt: z.ZodNullable<z.ZodDate>;
12432
12442
  message: z.ZodString;
12433
12443
  direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
12434
- 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"]>;
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"]>;
12435
12445
  readAt: z.ZodDate;
12436
12446
  metadata: z.ZodAny;
12437
12447
  platformId: z.ZodString;
@@ -13089,7 +13099,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
13089
13099
  };
13090
13100
  }>;
13091
13101
  }, "strip", z.ZodTypeAny, {
13092
- 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";
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";
13093
13103
  message: string;
13094
13104
  id: string;
13095
13105
  url: string;
@@ -13251,7 +13261,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
13251
13261
  metadata?: any;
13252
13262
  template?: any;
13253
13263
  }, {
13254
- 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";
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";
13255
13265
  message: string;
13256
13266
  id: string;
13257
13267
  url: string;
@@ -14053,7 +14063,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
14053
14063
  editedMessageid: z.ZodString;
14054
14064
  label: z.ZodOptional<z.ZodString>;
14055
14065
  }, "strip", z.ZodTypeAny, {
14056
- 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";
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";
14057
14067
  message: string;
14058
14068
  id: string;
14059
14069
  url: string;
@@ -14488,7 +14498,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
14488
14498
  closedAt: Date;
14489
14499
  lastMessageAt: Date | null;
14490
14500
  isBotRoom: boolean;
14491
- csatStatus: string | null;
14492
14501
  cxlog: {
14493
14502
  id: string;
14494
14503
  channel: string | null;
@@ -14607,7 +14616,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
14607
14616
  previewUrl: string;
14608
14617
  imageSetId: string;
14609
14618
  repliedMessage: {
14610
- 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";
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";
14611
14620
  message: string;
14612
14621
  id: string;
14613
14622
  url: string;
@@ -14818,7 +14827,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
14818
14827
  template?: any;
14819
14828
  label?: string | undefined;
14820
14829
  }, {
14821
- 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";
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";
14822
14831
  message: string;
14823
14832
  id: string;
14824
14833
  url: string;
@@ -15253,7 +15262,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
15253
15262
  closedAt: Date;
15254
15263
  lastMessageAt: Date | null;
15255
15264
  isBotRoom: boolean;
15256
- csatStatus: string | null;
15257
15265
  cxlog: {
15258
15266
  id: string;
15259
15267
  channel: string | null;
@@ -15372,7 +15380,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
15372
15380
  previewUrl: string;
15373
15381
  imageSetId: string;
15374
15382
  repliedMessage: {
15375
- 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";
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";
15376
15384
  message: string;
15377
15385
  id: string;
15378
15386
  url: string;
@@ -15584,7 +15592,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
15584
15592
  label?: string | undefined;
15585
15593
  }>>>;
15586
15594
  }, "strip", z.ZodTypeAny, {
15587
- 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";
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";
15588
15596
  message: string;
15589
15597
  id: string;
15590
15598
  url: string;
@@ -16019,7 +16027,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
16019
16027
  closedAt: Date;
16020
16028
  lastMessageAt: Date | null;
16021
16029
  isBotRoom: boolean;
16022
- csatStatus: string | null;
16023
16030
  cxlog: {
16024
16031
  id: string;
16025
16032
  channel: string | null;
@@ -16138,7 +16145,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
16138
16145
  previewUrl: string;
16139
16146
  imageSetId: string;
16140
16147
  repliedMessage: {
16141
- 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";
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";
16142
16149
  message: string;
16143
16150
  id: string;
16144
16151
  url: string;
@@ -16349,7 +16356,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
16349
16356
  template?: any;
16350
16357
  metadata?: any;
16351
16358
  fromMessage?: {
16352
- 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";
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";
16353
16360
  message: string;
16354
16361
  id: string;
16355
16362
  url: string;
@@ -16784,7 +16791,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
16784
16791
  closedAt: Date;
16785
16792
  lastMessageAt: Date | null;
16786
16793
  isBotRoom: boolean;
16787
- csatStatus: string | null;
16788
16794
  cxlog: {
16789
16795
  id: string;
16790
16796
  channel: string | null;
@@ -16903,7 +16909,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
16903
16909
  previewUrl: string;
16904
16910
  imageSetId: string;
16905
16911
  repliedMessage: {
16906
- 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";
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";
16907
16913
  message: string;
16908
16914
  id: string;
16909
16915
  url: string;
@@ -17115,7 +17121,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
17115
17121
  label?: string | undefined;
17116
17122
  } | null | undefined;
17117
17123
  }, {
17118
- 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";
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";
17119
17125
  message: string;
17120
17126
  id: string;
17121
17127
  url: string;
@@ -17550,7 +17556,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
17550
17556
  closedAt: Date;
17551
17557
  lastMessageAt: Date | null;
17552
17558
  isBotRoom: boolean;
17553
- csatStatus: string | null;
17554
17559
  cxlog: {
17555
17560
  id: string;
17556
17561
  channel: string | null;
@@ -17669,7 +17674,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
17669
17674
  previewUrl: string;
17670
17675
  imageSetId: string;
17671
17676
  repliedMessage: {
17672
- 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";
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";
17673
17678
  message: string;
17674
17679
  id: string;
17675
17680
  url: string;
@@ -17880,7 +17885,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
17880
17885
  template?: any;
17881
17886
  metadata?: any;
17882
17887
  fromMessage?: {
17883
- 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";
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";
17884
17889
  message: string;
17885
17890
  id: string;
17886
17891
  url: string;
@@ -18315,7 +18320,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
18315
18320
  closedAt: Date;
18316
18321
  lastMessageAt: Date | null;
18317
18322
  isBotRoom: boolean;
18318
- csatStatus: string | null;
18319
18323
  cxlog: {
18320
18324
  id: string;
18321
18325
  channel: string | null;
@@ -18434,7 +18438,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
18434
18438
  previewUrl: string;
18435
18439
  imageSetId: string;
18436
18440
  repliedMessage: {
18437
- 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";
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";
18438
18442
  message: string;
18439
18443
  id: string;
18440
18444
  url: string;
@@ -18648,7 +18652,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
18648
18652
  }>;
18649
18653
  }, "strip", z.ZodTypeAny, {
18650
18654
  data: {
18651
- 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";
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";
18652
18656
  message: string;
18653
18657
  id: string;
18654
18658
  url: string;
@@ -19083,7 +19087,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
19083
19087
  closedAt: Date;
19084
19088
  lastMessageAt: Date | null;
19085
19089
  isBotRoom: boolean;
19086
- csatStatus: string | null;
19087
19090
  cxlog: {
19088
19091
  id: string;
19089
19092
  channel: string | null;
@@ -19202,7 +19205,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
19202
19205
  previewUrl: string;
19203
19206
  imageSetId: string;
19204
19207
  repliedMessage: {
19205
- 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";
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";
19206
19209
  message: string;
19207
19210
  id: string;
19208
19211
  url: string;
@@ -19413,7 +19416,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
19413
19416
  template?: any;
19414
19417
  metadata?: any;
19415
19418
  fromMessage?: {
19416
- 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";
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";
19417
19420
  message: string;
19418
19421
  id: string;
19419
19422
  url: string;
@@ -19848,7 +19851,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
19848
19851
  closedAt: Date;
19849
19852
  lastMessageAt: Date | null;
19850
19853
  isBotRoom: boolean;
19851
- csatStatus: string | null;
19852
19854
  cxlog: {
19853
19855
  id: string;
19854
19856
  channel: string | null;
@@ -19967,7 +19969,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
19967
19969
  previewUrl: string;
19968
19970
  imageSetId: string;
19969
19971
  repliedMessage: {
19970
- 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";
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";
19971
19973
  message: string;
19972
19974
  id: string;
19973
19975
  url: string;
@@ -20182,7 +20184,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
20182
20184
  requestId: string;
20183
20185
  }, {
20184
20186
  data: {
20185
- 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";
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";
20186
20188
  message: string;
20187
20189
  id: string;
20188
20190
  url: string;
@@ -20617,7 +20619,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
20617
20619
  closedAt: Date;
20618
20620
  lastMessageAt: Date | null;
20619
20621
  isBotRoom: boolean;
20620
- csatStatus: string | null;
20621
20622
  cxlog: {
20622
20623
  id: string;
20623
20624
  channel: string | null;
@@ -20736,7 +20737,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
20736
20737
  previewUrl: string;
20737
20738
  imageSetId: string;
20738
20739
  repliedMessage: {
20739
- 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";
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
20741
  message: string;
20741
20742
  id: string;
20742
20743
  url: string;
@@ -20947,7 +20948,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
20947
20948
  template?: any;
20948
20949
  metadata?: any;
20949
20950
  fromMessage?: {
20950
- 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";
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
20952
  message: string;
20952
20953
  id: string;
20953
20954
  url: string;
@@ -21382,7 +21383,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
21382
21383
  closedAt: Date;
21383
21384
  lastMessageAt: Date | null;
21384
21385
  isBotRoom: boolean;
21385
- csatStatus: string | null;
21386
21386
  cxlog: {
21387
21387
  id: string;
21388
21388
  channel: string | null;
@@ -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" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
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";
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", "csat", "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"]>;
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" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
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";
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" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
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";
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" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
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";
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" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
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";
27124
27124
  id: string;
27125
27125
  direction: "incoming" | "outgoing" | "system";
27126
27126
  createdAt: string;