@kl1/contracts 1.1.37 → 1.1.38

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 (56) hide show
  1. package/dist/api-contracts/src/chat/index.d.ts +7707 -133
  2. package/dist/api-contracts/src/chat/index.d.ts.map +1 -1
  3. package/dist/api-contracts/src/chat/schema.d.ts +59 -45
  4. package/dist/api-contracts/src/chat/schema.d.ts.map +1 -1
  5. package/dist/api-contracts/src/chat/validation.d.ts +93 -51
  6. package/dist/api-contracts/src/chat/validation.d.ts.map +1 -1
  7. package/dist/api-contracts/src/contract.d.ts +380 -218
  8. package/dist/api-contracts/src/contract.d.ts.map +1 -1
  9. package/dist/api-contracts/src/facebook-feed/index.d.ts +70 -43
  10. package/dist/api-contracts/src/facebook-feed/index.d.ts.map +1 -1
  11. package/dist/api-contracts/src/facebook-feed/schema.d.ts +3 -3
  12. package/dist/api-contracts/src/instagram/index.d.ts +60 -33
  13. package/dist/api-contracts/src/instagram/index.d.ts.map +1 -1
  14. package/dist/api-contracts/src/line/index.d.ts +65 -38
  15. package/dist/api-contracts/src/line/index.d.ts.map +1 -1
  16. package/dist/api-contracts/src/line/validation.d.ts +5 -5
  17. package/dist/api-contracts/src/messenger/index.d.ts +60 -33
  18. package/dist/api-contracts/src/messenger/index.d.ts.map +1 -1
  19. package/dist/api-contracts/src/sms/index.d.ts +20 -5
  20. package/dist/api-contracts/src/sms/index.d.ts.map +1 -1
  21. package/dist/api-contracts/src/telephony-cdr/call-report.schema.d.ts +28 -28
  22. package/dist/api-contracts/src/viber/index.d.ts +60 -33
  23. package/dist/api-contracts/src/viber/index.d.ts.map +1 -1
  24. package/dist/api-contracts/src/webchat/index.d.ts +60 -33
  25. package/dist/api-contracts/src/webchat/index.d.ts.map +1 -1
  26. package/dist/entities/src/enums/chat.d.ts +1 -0
  27. package/dist/entities/src/enums/chat.d.ts.map +1 -1
  28. package/dist/index.js +25 -8
  29. package/dist/index.js.map +1 -1
  30. package/dist/index.mjs +25 -8
  31. package/dist/index.mjs.map +1 -1
  32. package/package.json +1 -1
  33. package/dist/api-contracts/src/automation-queue/index.d.ts +0 -4212
  34. package/dist/api-contracts/src/automation-queue/index.d.ts.map +0 -1
  35. package/dist/api-contracts/src/automation-queue/schema.d.ts +0 -614
  36. package/dist/api-contracts/src/automation-queue/schema.d.ts.map +0 -1
  37. package/dist/api-contracts/src/automation-queue/validation.d.ts +0 -47
  38. package/dist/api-contracts/src/automation-queue/validation.d.ts.map +0 -1
  39. package/dist/api-contracts/src/hold-label/index.d.ts +0 -315
  40. package/dist/api-contracts/src/hold-label/index.d.ts.map +0 -1
  41. package/dist/api-contracts/src/hold-label/schema.d.ts +0 -24
  42. package/dist/api-contracts/src/hold-label/schema.d.ts.map +0 -1
  43. package/dist/api-contracts/src/hold-label/validation.d.ts +0 -24
  44. package/dist/api-contracts/src/hold-label/validation.d.ts.map +0 -1
  45. package/dist/api-contracts/src/presence-status/index.d.ts +0 -556
  46. package/dist/api-contracts/src/presence-status/index.d.ts.map +0 -1
  47. package/dist/api-contracts/src/presence-status/schema.d.ts +0 -31
  48. package/dist/api-contracts/src/presence-status/schema.d.ts.map +0 -1
  49. package/dist/api-contracts/src/presence-status/validation.d.ts +0 -28
  50. package/dist/api-contracts/src/presence-status/validation.d.ts.map +0 -1
  51. package/dist/api-contracts/src/subscription/index.d.ts +0 -1900
  52. package/dist/api-contracts/src/subscription/index.d.ts.map +0 -1
  53. package/dist/api-contracts/src/subscription/schema.d.ts +0 -2059
  54. package/dist/api-contracts/src/subscription/schema.d.ts.map +0 -1
  55. package/dist/api-contracts/src/subscription/validation.d.ts +0 -37
  56. package/dist/api-contracts/src/subscription/validation.d.ts.map +0 -1
@@ -6,7 +6,7 @@ export declare const MessageDirectionTypeSchema: z.ZodEnum<["incoming", "outgoin
6
6
  /**
7
7
  * Message Type Enum
8
8
  */
9
- export declare const MessageTypeSchema: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
9
+ export declare const MessageTypeSchema: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "unsupported"]>;
10
10
  export declare const FeedPostTypeSchema: z.ZodEnum<["text", "added_photos", "shared_story", "mobile_status_update"]>;
11
11
  /**
12
12
  * Message Type Enum
@@ -3964,7 +3964,7 @@ export declare const MessageSchema: z.ZodObject<{
3964
3964
  deletedAt: z.ZodNullable<z.ZodDate>;
3965
3965
  message: z.ZodString;
3966
3966
  direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
3967
- type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
3967
+ type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "unsupported"]>;
3968
3968
  readAt: z.ZodDate;
3969
3969
  metadata: z.ZodAny;
3970
3970
  platformId: z.ZodString;
@@ -6999,7 +6999,7 @@ export declare const MessageSchema: z.ZodObject<{
6999
6999
  deletedAt: z.ZodNullable<z.ZodDate>;
7000
7000
  message: z.ZodString;
7001
7001
  direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
7002
- type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
7002
+ type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "unsupported"]>;
7003
7003
  readAt: z.ZodDate;
7004
7004
  metadata: z.ZodAny;
7005
7005
  platformId: z.ZodString;
@@ -7657,7 +7657,7 @@ export declare const MessageSchema: z.ZodObject<{
7657
7657
  };
7658
7658
  }>;
7659
7659
  }, "strip", z.ZodTypeAny, {
7660
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
7660
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
7661
7661
  message: string;
7662
7662
  id: string;
7663
7663
  url: string;
@@ -7819,7 +7819,7 @@ export declare const MessageSchema: z.ZodObject<{
7819
7819
  metadata?: any;
7820
7820
  template?: any;
7821
7821
  }, {
7822
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
7822
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
7823
7823
  message: string;
7824
7824
  id: string;
7825
7825
  url: string;
@@ -8618,8 +8618,9 @@ export declare const MessageSchema: z.ZodObject<{
8618
8618
  deletedAt: Date | null;
8619
8619
  isActive: boolean;
8620
8620
  }>;
8621
+ editedMessageid: z.ZodString;
8621
8622
  }, "strip", z.ZodTypeAny, {
8622
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
8623
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
8623
8624
  message: string;
8624
8625
  id: string;
8625
8626
  url: string;
@@ -9117,7 +9118,7 @@ export declare const MessageSchema: z.ZodObject<{
9117
9118
  previewUrl: string;
9118
9119
  imageSetId: string;
9119
9120
  repliedMessage: {
9120
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
9121
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
9121
9122
  message: string;
9122
9123
  id: string;
9123
9124
  url: string;
@@ -9323,10 +9324,11 @@ export declare const MessageSchema: z.ZodObject<{
9323
9324
  telephonySignature: string | null;
9324
9325
  };
9325
9326
  };
9327
+ editedMessageid: string;
9326
9328
  metadata?: any;
9327
9329
  template?: any;
9328
9330
  }, {
9329
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
9331
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
9330
9332
  message: string;
9331
9333
  id: string;
9332
9334
  url: string;
@@ -9824,7 +9826,7 @@ export declare const MessageSchema: z.ZodObject<{
9824
9826
  previewUrl: string;
9825
9827
  imageSetId: string;
9826
9828
  repliedMessage: {
9827
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
9829
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
9828
9830
  message: string;
9829
9831
  id: string;
9830
9832
  url: string;
@@ -10030,11 +10032,12 @@ export declare const MessageSchema: z.ZodObject<{
10030
10032
  telephonySignature: string | null;
10031
10033
  };
10032
10034
  };
10035
+ editedMessageid: string;
10033
10036
  metadata?: any;
10034
10037
  template?: any;
10035
10038
  }>;
10036
10039
  export declare const MessageWithFeedPostSchema: z.ZodObject<{
10037
- type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
10040
+ type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "unsupported"]>;
10038
10041
  message: z.ZodString;
10039
10042
  id: z.ZodString;
10040
10043
  url: z.ZodString;
@@ -13508,7 +13511,7 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
13508
13511
  deletedAt: z.ZodNullable<z.ZodDate>;
13509
13512
  message: z.ZodString;
13510
13513
  direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
13511
- type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
13514
+ type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "unsupported"]>;
13512
13515
  readAt: z.ZodDate;
13513
13516
  metadata: z.ZodAny;
13514
13517
  platformId: z.ZodString;
@@ -14166,7 +14169,7 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
14166
14169
  };
14167
14170
  }>;
14168
14171
  }, "strip", z.ZodTypeAny, {
14169
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
14172
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
14170
14173
  message: string;
14171
14174
  id: string;
14172
14175
  url: string;
@@ -14328,7 +14331,7 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
14328
14331
  metadata?: any;
14329
14332
  template?: any;
14330
14333
  }, {
14331
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
14334
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
14332
14335
  message: string;
14333
14336
  id: string;
14334
14337
  url: string;
@@ -14694,6 +14697,7 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
14694
14697
  telephonySignature: string | null;
14695
14698
  };
14696
14699
  }>;
14700
+ editedMessageid: z.ZodString;
14697
14701
  parentMessageId: z.ZodNullable<z.ZodString>;
14698
14702
  feedPostId: z.ZodNullable<z.ZodString>;
14699
14703
  feedPost: z.ZodNullable<z.ZodObject<{
@@ -14702,7 +14706,7 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
14702
14706
  updatedAt: z.ZodDate;
14703
14707
  deletedAt: z.ZodNullable<z.ZodDate>;
14704
14708
  message: z.ZodNullable<z.ZodString>;
14705
- type: z.ZodUnion<[z.ZodEnum<["text", "added_photos", "shared_story", "mobile_status_update"]>, z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>]>;
14709
+ type: z.ZodUnion<[z.ZodEnum<["text", "added_photos", "shared_story", "mobile_status_update"]>, z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "unsupported"]>]>;
14706
14710
  metadata: z.ZodAny;
14707
14711
  platformId: z.ZodString;
14708
14712
  platformMessageId: z.ZodString;
@@ -16286,7 +16290,7 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
16286
16290
  imageURL: z.ZodString;
16287
16291
  permalinkURL: z.ZodString;
16288
16292
  }, "strip", z.ZodTypeAny, {
16289
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "added_photos" | "shared_story" | "mobile_status_update" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
16293
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "added_photos" | "shared_story" | "mobile_status_update" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
16290
16294
  message: string | null;
16291
16295
  id: string;
16292
16296
  channel: {
@@ -16535,7 +16539,7 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
16535
16539
  permalinkURL: string;
16536
16540
  metadata?: any;
16537
16541
  }, {
16538
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "added_photos" | "shared_story" | "mobile_status_update" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
16542
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "added_photos" | "shared_story" | "mobile_status_update" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
16539
16543
  message: string | null;
16540
16544
  id: string;
16541
16545
  channel: {
@@ -16786,7 +16790,7 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
16786
16790
  }>>;
16787
16791
  replyReaction: z.ZodNullable<z.ZodString>;
16788
16792
  }, "strip", z.ZodTypeAny, {
16789
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
16793
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
16790
16794
  message: string;
16791
16795
  id: string;
16792
16796
  url: string;
@@ -17284,7 +17288,7 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
17284
17288
  previewUrl: string;
17285
17289
  imageSetId: string;
17286
17290
  repliedMessage: {
17287
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
17291
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
17288
17292
  message: string;
17289
17293
  id: string;
17290
17294
  url: string;
@@ -17490,10 +17494,11 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
17490
17494
  telephonySignature: string | null;
17491
17495
  };
17492
17496
  };
17497
+ editedMessageid: string;
17493
17498
  parentMessageId: string | null;
17494
17499
  feedPostId: string | null;
17495
17500
  feedPost: {
17496
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "added_photos" | "shared_story" | "mobile_status_update" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
17501
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "added_photos" | "shared_story" | "mobile_status_update" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
17497
17502
  message: string | null;
17498
17503
  id: string;
17499
17504
  channel: {
@@ -17746,7 +17751,7 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
17746
17751
  template?: any;
17747
17752
  metadata?: any;
17748
17753
  }, {
17749
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
17754
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
17750
17755
  message: string;
17751
17756
  id: string;
17752
17757
  url: string;
@@ -18244,7 +18249,7 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
18244
18249
  previewUrl: string;
18245
18250
  imageSetId: string;
18246
18251
  repliedMessage: {
18247
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
18252
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
18248
18253
  message: string;
18249
18254
  id: string;
18250
18255
  url: string;
@@ -18450,10 +18455,11 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
18450
18455
  telephonySignature: string | null;
18451
18456
  };
18452
18457
  };
18458
+ editedMessageid: string;
18453
18459
  parentMessageId: string | null;
18454
18460
  feedPostId: string | null;
18455
18461
  feedPost: {
18456
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "added_photos" | "shared_story" | "mobile_status_update" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
18462
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "added_photos" | "shared_story" | "mobile_status_update" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
18457
18463
  message: string | null;
18458
18464
  id: string;
18459
18465
  channel: {
@@ -18713,7 +18719,7 @@ export declare const RepliedMessageSchema: z.ZodObject<{
18713
18719
  deletedAt: z.ZodNullable<z.ZodDate>;
18714
18720
  message: z.ZodString;
18715
18721
  direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
18716
- type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
18722
+ type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "unsupported"]>;
18717
18723
  readAt: z.ZodDate;
18718
18724
  metadata: z.ZodAny;
18719
18725
  platformId: z.ZodString;
@@ -19371,7 +19377,7 @@ export declare const RepliedMessageSchema: z.ZodObject<{
19371
19377
  };
19372
19378
  }>;
19373
19379
  }, "strip", z.ZodTypeAny, {
19374
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
19380
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
19375
19381
  message: string;
19376
19382
  id: string;
19377
19383
  url: string;
@@ -19533,7 +19539,7 @@ export declare const RepliedMessageSchema: z.ZodObject<{
19533
19539
  metadata?: any;
19534
19540
  template?: any;
19535
19541
  }, {
19536
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
19542
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
19537
19543
  message: string;
19538
19544
  id: string;
19539
19545
  url: string;
@@ -19709,7 +19715,7 @@ export declare const UnreadCountsByAssigneeSchema: z.ZodObject<{
19709
19715
  totalUnreadCount: number;
19710
19716
  }>;
19711
19717
  export declare const MessageRelevanceSchema: z.ZodObject<{
19712
- type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
19718
+ type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "unsupported"]>;
19713
19719
  message: z.ZodString;
19714
19720
  id: z.ZodString;
19715
19721
  url: z.ZodString;
@@ -23183,7 +23189,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
23183
23189
  deletedAt: z.ZodNullable<z.ZodDate>;
23184
23190
  message: z.ZodString;
23185
23191
  direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
23186
- type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
23192
+ type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "unsupported"]>;
23187
23193
  readAt: z.ZodDate;
23188
23194
  metadata: z.ZodAny;
23189
23195
  platformId: z.ZodString;
@@ -23841,7 +23847,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
23841
23847
  };
23842
23848
  }>;
23843
23849
  }, "strip", z.ZodTypeAny, {
23844
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
23850
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
23845
23851
  message: string;
23846
23852
  id: string;
23847
23853
  url: string;
@@ -24003,7 +24009,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
24003
24009
  metadata?: any;
24004
24010
  template?: any;
24005
24011
  }, {
24006
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
24012
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
24007
24013
  message: string;
24008
24014
  id: string;
24009
24015
  url: string;
@@ -24369,6 +24375,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
24369
24375
  telephonySignature: string | null;
24370
24376
  };
24371
24377
  }>;
24378
+ editedMessageid: z.ZodString;
24372
24379
  platformContract: z.ZodObject<{
24373
24380
  id: z.ZodString;
24374
24381
  createdAt: z.ZodDate;
@@ -25310,7 +25317,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
25310
25317
  deletedAt: z.ZodNullable<z.ZodDate>;
25311
25318
  message: z.ZodString;
25312
25319
  direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
25313
- type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
25320
+ type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "unsupported"]>;
25314
25321
  readAt: z.ZodDate;
25315
25322
  metadata: z.ZodAny;
25316
25323
  platformId: z.ZodString;
@@ -28345,7 +28352,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
28345
28352
  deletedAt: z.ZodNullable<z.ZodDate>;
28346
28353
  message: z.ZodString;
28347
28354
  direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
28348
- type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
28355
+ type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "unsupported"]>;
28349
28356
  readAt: z.ZodDate;
28350
28357
  metadata: z.ZodAny;
28351
28358
  platformId: z.ZodString;
@@ -29003,7 +29010,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
29003
29010
  };
29004
29011
  }>;
29005
29012
  }, "strip", z.ZodTypeAny, {
29006
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
29013
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
29007
29014
  message: string;
29008
29015
  id: string;
29009
29016
  url: string;
@@ -29165,7 +29172,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
29165
29172
  metadata?: any;
29166
29173
  template?: any;
29167
29174
  }, {
29168
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
29175
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
29169
29176
  message: string;
29170
29177
  id: string;
29171
29178
  url: string;
@@ -29964,8 +29971,9 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
29964
29971
  deletedAt: Date | null;
29965
29972
  isActive: boolean;
29966
29973
  }>;
29974
+ editedMessageid: z.ZodString;
29967
29975
  }, "strip", z.ZodTypeAny, {
29968
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
29976
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
29969
29977
  message: string;
29970
29978
  id: string;
29971
29979
  url: string;
@@ -30463,7 +30471,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
30463
30471
  previewUrl: string;
30464
30472
  imageSetId: string;
30465
30473
  repliedMessage: {
30466
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
30474
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
30467
30475
  message: string;
30468
30476
  id: string;
30469
30477
  url: string;
@@ -30669,10 +30677,11 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
30669
30677
  telephonySignature: string | null;
30670
30678
  };
30671
30679
  };
30680
+ editedMessageid: string;
30672
30681
  metadata?: any;
30673
30682
  template?: any;
30674
30683
  }, {
30675
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
30684
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
30676
30685
  message: string;
30677
30686
  id: string;
30678
30687
  url: string;
@@ -31170,7 +31179,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
31170
31179
  previewUrl: string;
31171
31180
  imageSetId: string;
31172
31181
  repliedMessage: {
31173
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
31182
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
31174
31183
  message: string;
31175
31184
  id: string;
31176
31185
  url: string;
@@ -31376,17 +31385,18 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
31376
31385
  telephonySignature: string | null;
31377
31386
  };
31378
31387
  };
31388
+ editedMessageid: string;
31379
31389
  metadata?: any;
31380
31390
  template?: any;
31381
31391
  }>, "many">;
31382
31392
  }, "strip", z.ZodTypeAny, {
31383
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
31393
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
31384
31394
  message: string;
31385
31395
  id: string;
31386
31396
  url: string;
31387
31397
  direction: "incoming" | "outgoing" | "system";
31388
31398
  children: {
31389
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
31399
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
31390
31400
  message: string;
31391
31401
  id: string;
31392
31402
  url: string;
@@ -31884,7 +31894,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
31884
31894
  previewUrl: string;
31885
31895
  imageSetId: string;
31886
31896
  repliedMessage: {
31887
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
31897
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
31888
31898
  message: string;
31889
31899
  id: string;
31890
31900
  url: string;
@@ -32090,6 +32100,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
32090
32100
  telephonySignature: string | null;
32091
32101
  };
32092
32102
  };
32103
+ editedMessageid: string;
32093
32104
  metadata?: any;
32094
32105
  template?: any;
32095
32106
  }[];
@@ -32586,7 +32597,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
32586
32597
  previewUrl: string;
32587
32598
  imageSetId: string;
32588
32599
  repliedMessage: {
32589
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
32600
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
32590
32601
  message: string;
32591
32602
  id: string;
32592
32603
  url: string;
@@ -32792,6 +32803,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
32792
32803
  telephonySignature: string | null;
32793
32804
  };
32794
32805
  };
32806
+ editedMessageid: string;
32795
32807
  platformContract: {
32796
32808
  type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada" | "webchat" | "facebook_feed" | "sms_vonage";
32797
32809
  id: string;
@@ -32907,13 +32919,13 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
32907
32919
  template?: any;
32908
32920
  metadata?: any;
32909
32921
  }, {
32910
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
32922
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
32911
32923
  message: string;
32912
32924
  id: string;
32913
32925
  url: string;
32914
32926
  direction: "incoming" | "outgoing" | "system";
32915
32927
  children: {
32916
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
32928
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
32917
32929
  message: string;
32918
32930
  id: string;
32919
32931
  url: string;
@@ -33411,7 +33423,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
33411
33423
  previewUrl: string;
33412
33424
  imageSetId: string;
33413
33425
  repliedMessage: {
33414
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
33426
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
33415
33427
  message: string;
33416
33428
  id: string;
33417
33429
  url: string;
@@ -33617,6 +33629,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
33617
33629
  telephonySignature: string | null;
33618
33630
  };
33619
33631
  };
33632
+ editedMessageid: string;
33620
33633
  metadata?: any;
33621
33634
  template?: any;
33622
33635
  }[];
@@ -34113,7 +34126,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
34113
34126
  previewUrl: string;
34114
34127
  imageSetId: string;
34115
34128
  repliedMessage: {
34116
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
34129
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
34117
34130
  message: string;
34118
34131
  id: string;
34119
34132
  url: string;
@@ -34319,6 +34332,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
34319
34332
  telephonySignature: string | null;
34320
34333
  };
34321
34334
  };
34335
+ editedMessageid: string;
34322
34336
  platformContract: {
34323
34337
  type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada" | "webchat" | "facebook_feed" | "sms_vonage";
34324
34338
  id: string;