@kl1/contracts 1.1.79-uat → 1.1.81-uat

Sign up to get free protection for your applications and to get access to all the features.
Files changed (47) hide show
  1. package/dist/api-contracts/src/automation-queue/index.d.ts +3410 -0
  2. package/dist/api-contracts/src/automation-queue/index.d.ts.map +1 -0
  3. package/dist/api-contracts/src/automation-queue/schema.d.ts +618 -0
  4. package/dist/api-contracts/src/automation-queue/schema.d.ts.map +1 -0
  5. package/dist/api-contracts/src/automation-queue/validation.d.ts +52 -0
  6. package/dist/api-contracts/src/automation-queue/validation.d.ts.map +1 -0
  7. package/dist/api-contracts/src/chat/index.d.ts +196 -145
  8. package/dist/api-contracts/src/chat/index.d.ts.map +1 -1
  9. package/dist/api-contracts/src/chat/schema.d.ts +78 -76
  10. package/dist/api-contracts/src/chat/schema.d.ts.map +1 -1
  11. package/dist/api-contracts/src/chat/validation.d.ts +78 -51
  12. package/dist/api-contracts/src/chat/validation.d.ts.map +1 -1
  13. package/dist/api-contracts/src/comment/index.d.ts +1 -1
  14. package/dist/api-contracts/src/comment/validation.d.ts +1 -1
  15. package/dist/api-contracts/src/contract.d.ts +379 -229
  16. package/dist/api-contracts/src/contract.d.ts.map +1 -1
  17. package/dist/api-contracts/src/dashboard/index.d.ts +8 -8
  18. package/dist/api-contracts/src/dashboard/schema.d.ts +8 -8
  19. package/dist/api-contracts/src/facebook-feed/index.d.ts +60 -43
  20. package/dist/api-contracts/src/facebook-feed/index.d.ts.map +1 -1
  21. package/dist/api-contracts/src/facebook-feed/schema.d.ts +3 -3
  22. package/dist/api-contracts/src/index.d.ts +1 -0
  23. package/dist/api-contracts/src/index.d.ts.map +1 -1
  24. package/dist/api-contracts/src/instagram/index.d.ts +50 -33
  25. package/dist/api-contracts/src/instagram/index.d.ts.map +1 -1
  26. package/dist/api-contracts/src/line/index.d.ts +55 -38
  27. package/dist/api-contracts/src/line/index.d.ts.map +1 -1
  28. package/dist/api-contracts/src/line/validation.d.ts +5 -5
  29. package/dist/api-contracts/src/messenger/index.d.ts +50 -33
  30. package/dist/api-contracts/src/messenger/index.d.ts.map +1 -1
  31. package/dist/api-contracts/src/role/index.d.ts +25 -1
  32. package/dist/api-contracts/src/role/index.d.ts.map +1 -1
  33. package/dist/api-contracts/src/role/schema.d.ts +26 -0
  34. package/dist/api-contracts/src/role/schema.d.ts.map +1 -1
  35. package/dist/api-contracts/src/sms/index.d.ts +10 -5
  36. package/dist/api-contracts/src/sms/index.d.ts.map +1 -1
  37. package/dist/api-contracts/src/viber/index.d.ts +50 -33
  38. package/dist/api-contracts/src/viber/index.d.ts.map +1 -1
  39. package/dist/api-contracts/src/webchat/index.d.ts +50 -33
  40. package/dist/api-contracts/src/webchat/index.d.ts.map +1 -1
  41. package/dist/entities/src/enums/chat.d.ts +2 -0
  42. package/dist/entities/src/enums/chat.d.ts.map +1 -1
  43. package/dist/index.js +505 -391
  44. package/dist/index.js.map +1 -1
  45. package/dist/index.mjs +504 -391
  46. package/dist/index.mjs.map +1 -1
  47. package/package.json +1 -1
@@ -6,8 +6,8 @@ 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", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "unsupported"]>;
10
- export declare const FeedPostTypeSchema: z.ZodEnum<["text", "added_photos", "shared_story", "mobile_status_update"]>;
9
+ export declare const MessageTypeSchema: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "deleted", "unsupported"]>;
10
+ export declare const FeedPostTypeSchema: z.ZodEnum<["text", "added_photos", "shared_story", "mobile_status_update", "no_data"]>;
11
11
  /**
12
12
  * Message Type Enum
13
13
  */
@@ -62,9 +62,6 @@ export declare const PlatformContactSchema: z.ZodObject<{
62
62
  id: z.ZodString;
63
63
  createdAt: z.ZodDate;
64
64
  updatedAt: z.ZodDate;
65
- /**
66
- * Platform Contact
67
- */
68
65
  deletedAt: z.ZodNullable<z.ZodDate>;
69
66
  name: z.ZodString;
70
67
  address: z.ZodNullable<z.ZodString>;
@@ -1032,9 +1029,6 @@ export declare const RoomSchema: z.ZodObject<z.objectUtil.extendShape<{
1032
1029
  id: z.ZodString;
1033
1030
  createdAt: z.ZodDate;
1034
1031
  updatedAt: z.ZodDate;
1035
- /**
1036
- * Platform Contact
1037
- */
1038
1032
  deletedAt: z.ZodNullable<z.ZodDate>;
1039
1033
  name: z.ZodString;
1040
1034
  address: z.ZodNullable<z.ZodString>;
@@ -2445,7 +2439,9 @@ export declare const RoomSchema: z.ZodObject<z.objectUtil.extendShape<{
2445
2439
  updatedAt: z.ZodDate;
2446
2440
  deletedAt: z.ZodNullable<z.ZodDate>;
2447
2441
  name: z.ZodString;
2448
- email: z.ZodString;
2442
+ email: z.ZodString; /**
2443
+ * Platform Contact
2444
+ */
2449
2445
  emailVerifiedAt: z.ZodNullable<z.ZodDate>;
2450
2446
  password: z.ZodString;
2451
2447
  address: z.ZodNullable<z.ZodString>;
@@ -4003,7 +3999,7 @@ export declare const MessageSchema: z.ZodObject<z.objectUtil.extendShape<{
4003
3999
  }, {
4004
4000
  message: z.ZodString;
4005
4001
  direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
4006
- type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "unsupported"]>;
4002
+ type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "deleted", "unsupported"]>;
4007
4003
  readAt: z.ZodDate;
4008
4004
  metadata: z.ZodAny;
4009
4005
  platformId: z.ZodString;
@@ -4059,9 +4055,6 @@ export declare const MessageSchema: z.ZodObject<z.objectUtil.extendShape<{
4059
4055
  id: z.ZodString;
4060
4056
  createdAt: z.ZodDate;
4061
4057
  updatedAt: z.ZodDate;
4062
- /**
4063
- * Platform Contact
4064
- */
4065
4058
  deletedAt: z.ZodNullable<z.ZodDate>;
4066
4059
  name: z.ZodString;
4067
4060
  address: z.ZodNullable<z.ZodString>;
@@ -5472,7 +5465,9 @@ export declare const MessageSchema: z.ZodObject<z.objectUtil.extendShape<{
5472
5465
  updatedAt: z.ZodDate;
5473
5466
  deletedAt: z.ZodNullable<z.ZodDate>;
5474
5467
  name: z.ZodString;
5475
- email: z.ZodString;
5468
+ email: z.ZodString; /**
5469
+ * Platform Contact
5470
+ */
5476
5471
  emailVerifiedAt: z.ZodNullable<z.ZodDate>;
5477
5472
  password: z.ZodString;
5478
5473
  address: z.ZodNullable<z.ZodString>;
@@ -7062,7 +7057,7 @@ export declare const MessageSchema: z.ZodObject<z.objectUtil.extendShape<{
7062
7057
  }, {
7063
7058
  message: z.ZodString;
7064
7059
  direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
7065
- type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "unsupported"]>;
7060
+ type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "deleted", "unsupported"]>;
7066
7061
  readAt: z.ZodDate;
7067
7062
  metadata: z.ZodAny;
7068
7063
  platformId: z.ZodString;
@@ -7721,7 +7716,7 @@ export declare const MessageSchema: z.ZodObject<z.objectUtil.extendShape<{
7721
7716
  };
7722
7717
  }>;
7723
7718
  }>, "strip", z.ZodTypeAny, {
7724
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
7719
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
7725
7720
  message: string;
7726
7721
  id: string;
7727
7722
  url: string;
@@ -7883,7 +7878,7 @@ export declare const MessageSchema: z.ZodObject<z.objectUtil.extendShape<{
7883
7878
  template?: any;
7884
7879
  metadata?: any;
7885
7880
  }, {
7886
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
7881
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
7887
7882
  message: string;
7888
7883
  id: string;
7889
7884
  url: string;
@@ -8684,8 +8679,9 @@ export declare const MessageSchema: z.ZodObject<z.objectUtil.extendShape<{
8684
8679
  isActive: boolean;
8685
8680
  }>;
8686
8681
  editedMessageid: z.ZodString;
8682
+ label: z.ZodOptional<z.ZodString>;
8687
8683
  }>, "strip", z.ZodTypeAny, {
8688
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
8684
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
8689
8685
  message: string;
8690
8686
  id: string;
8691
8687
  url: string;
@@ -9183,7 +9179,7 @@ export declare const MessageSchema: z.ZodObject<z.objectUtil.extendShape<{
9183
9179
  previewUrl: string;
9184
9180
  imageSetId: string;
9185
9181
  repliedMessage: {
9186
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
9182
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
9187
9183
  message: string;
9188
9184
  id: string;
9189
9185
  url: string;
@@ -9390,10 +9386,11 @@ export declare const MessageSchema: z.ZodObject<z.objectUtil.extendShape<{
9390
9386
  };
9391
9387
  };
9392
9388
  editedMessageid: string;
9389
+ label?: string | undefined;
9393
9390
  template?: any;
9394
9391
  metadata?: any;
9395
9392
  }, {
9396
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
9393
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
9397
9394
  message: string;
9398
9395
  id: string;
9399
9396
  url: string;
@@ -9891,7 +9888,7 @@ export declare const MessageSchema: z.ZodObject<z.objectUtil.extendShape<{
9891
9888
  previewUrl: string;
9892
9889
  imageSetId: string;
9893
9890
  repliedMessage: {
9894
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
9891
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
9895
9892
  message: string;
9896
9893
  id: string;
9897
9894
  url: string;
@@ -10098,6 +10095,7 @@ export declare const MessageSchema: z.ZodObject<z.objectUtil.extendShape<{
10098
10095
  };
10099
10096
  };
10100
10097
  editedMessageid: string;
10098
+ label?: string | undefined;
10101
10099
  template?: any;
10102
10100
  metadata?: any;
10103
10101
  }>;
@@ -10109,7 +10107,7 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<z.objectUtil.extendS
10109
10107
  }, {
10110
10108
  message: z.ZodString;
10111
10109
  direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
10112
- type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "unsupported"]>;
10110
+ type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "deleted", "unsupported"]>;
10113
10111
  readAt: z.ZodDate;
10114
10112
  metadata: z.ZodAny;
10115
10113
  platformId: z.ZodString;
@@ -10165,9 +10163,6 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<z.objectUtil.extendS
10165
10163
  id: z.ZodString;
10166
10164
  createdAt: z.ZodDate;
10167
10165
  updatedAt: z.ZodDate;
10168
- /**
10169
- * Platform Contact
10170
- */
10171
10166
  deletedAt: z.ZodNullable<z.ZodDate>;
10172
10167
  name: z.ZodString;
10173
10168
  address: z.ZodNullable<z.ZodString>;
@@ -11578,7 +11573,9 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<z.objectUtil.extendS
11578
11573
  updatedAt: z.ZodDate;
11579
11574
  deletedAt: z.ZodNullable<z.ZodDate>;
11580
11575
  name: z.ZodString;
11581
- email: z.ZodString;
11576
+ email: z.ZodString; /**
11577
+ * Platform Contact
11578
+ */
11582
11579
  emailVerifiedAt: z.ZodNullable<z.ZodDate>;
11583
11580
  password: z.ZodString;
11584
11581
  address: z.ZodNullable<z.ZodString>;
@@ -13168,7 +13165,7 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<z.objectUtil.extendS
13168
13165
  }, {
13169
13166
  message: z.ZodString;
13170
13167
  direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
13171
- type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "unsupported"]>;
13168
+ type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "deleted", "unsupported"]>;
13172
13169
  readAt: z.ZodDate;
13173
13170
  metadata: z.ZodAny;
13174
13171
  platformId: z.ZodString;
@@ -13827,7 +13824,7 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<z.objectUtil.extendS
13827
13824
  };
13828
13825
  }>;
13829
13826
  }>, "strip", z.ZodTypeAny, {
13830
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
13827
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
13831
13828
  message: string;
13832
13829
  id: string;
13833
13830
  url: string;
@@ -13989,7 +13986,7 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<z.objectUtil.extendS
13989
13986
  template?: any;
13990
13987
  metadata?: any;
13991
13988
  }, {
13992
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
13989
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
13993
13990
  message: string;
13994
13991
  id: string;
13995
13992
  url: string;
@@ -14790,6 +14787,7 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<z.objectUtil.extendS
14790
14787
  isActive: boolean;
14791
14788
  }>;
14792
14789
  editedMessageid: z.ZodString;
14790
+ label: z.ZodOptional<z.ZodString>;
14793
14791
  }>, {
14794
14792
  parentMessageId: z.ZodNullable<z.ZodString>;
14795
14793
  feedPostId: z.ZodNullable<z.ZodString>;
@@ -14800,7 +14798,7 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<z.objectUtil.extendS
14800
14798
  deletedAt: z.ZodNullable<z.ZodDate>;
14801
14799
  }, {
14802
14800
  message: z.ZodNullable<z.ZodString>;
14803
- type: z.ZodUnion<[z.ZodEnum<["text", "added_photos", "shared_story", "mobile_status_update"]>, z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "unsupported"]>]>;
14801
+ type: z.ZodUnion<[z.ZodEnum<["text", "added_photos", "shared_story", "mobile_status_update", "no_data"]>, z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "deleted", "unsupported"]>]>;
14804
14802
  metadata: z.ZodAny;
14805
14803
  platformId: z.ZodString;
14806
14804
  platformMessageId: z.ZodString;
@@ -14890,7 +14888,9 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<z.objectUtil.extendS
14890
14888
  updatedAt: z.ZodDate;
14891
14889
  deletedAt: z.ZodNullable<z.ZodDate>;
14892
14890
  name: z.ZodString;
14893
- email: z.ZodString;
14891
+ email: z.ZodString; /**
14892
+ * Platform Contact
14893
+ */
14894
14894
  emailVerifiedAt: z.ZodNullable<z.ZodDate>;
14895
14895
  password: z.ZodString;
14896
14896
  address: z.ZodNullable<z.ZodString>;
@@ -15271,9 +15271,6 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<z.objectUtil.extendS
15271
15271
  id: z.ZodString;
15272
15272
  createdAt: z.ZodDate;
15273
15273
  updatedAt: z.ZodDate;
15274
- /**
15275
- * Platform Contact
15276
- */
15277
15274
  deletedAt: z.ZodNullable<z.ZodDate>;
15278
15275
  name: z.ZodString;
15279
15276
  address: z.ZodNullable<z.ZodString>;
@@ -16400,7 +16397,7 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<z.objectUtil.extendS
16400
16397
  imageURL: z.ZodString;
16401
16398
  permalinkURL: z.ZodString;
16402
16399
  }>, "strip", z.ZodTypeAny, {
16403
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "added_photos" | "shared_story" | "mobile_status_update" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
16400
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "added_photos" | "shared_story" | "mobile_status_update" | "no_data" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
16404
16401
  message: string | null;
16405
16402
  id: string;
16406
16403
  channel: {
@@ -16649,7 +16646,7 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<z.objectUtil.extendS
16649
16646
  permalinkURL: string;
16650
16647
  metadata?: any;
16651
16648
  }, {
16652
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "added_photos" | "shared_story" | "mobile_status_update" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
16649
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "added_photos" | "shared_story" | "mobile_status_update" | "no_data" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
16653
16650
  message: string | null;
16654
16651
  id: string;
16655
16652
  channel: {
@@ -16900,7 +16897,7 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<z.objectUtil.extendS
16900
16897
  }>>;
16901
16898
  replyReaction: z.ZodNullable<z.ZodString>;
16902
16899
  }>, "strip", z.ZodTypeAny, {
16903
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
16900
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
16904
16901
  message: string;
16905
16902
  id: string;
16906
16903
  url: string;
@@ -17398,7 +17395,7 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<z.objectUtil.extendS
17398
17395
  previewUrl: string;
17399
17396
  imageSetId: string;
17400
17397
  repliedMessage: {
17401
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
17398
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
17402
17399
  message: string;
17403
17400
  id: string;
17404
17401
  url: string;
@@ -17608,7 +17605,7 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<z.objectUtil.extendS
17608
17605
  parentMessageId: string | null;
17609
17606
  feedPostId: string | null;
17610
17607
  feedPost: {
17611
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "added_photos" | "shared_story" | "mobile_status_update" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
17608
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "added_photos" | "shared_story" | "mobile_status_update" | "no_data" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
17612
17609
  message: string | null;
17613
17610
  id: string;
17614
17611
  channel: {
@@ -17858,10 +17855,11 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<z.objectUtil.extendS
17858
17855
  metadata?: any;
17859
17856
  } | null;
17860
17857
  replyReaction: string | null;
17858
+ label?: string | undefined;
17861
17859
  template?: any;
17862
17860
  metadata?: any;
17863
17861
  }, {
17864
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
17862
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
17865
17863
  message: string;
17866
17864
  id: string;
17867
17865
  url: string;
@@ -18359,7 +18357,7 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<z.objectUtil.extendS
18359
18357
  previewUrl: string;
18360
18358
  imageSetId: string;
18361
18359
  repliedMessage: {
18362
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
18360
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
18363
18361
  message: string;
18364
18362
  id: string;
18365
18363
  url: string;
@@ -18569,7 +18567,7 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<z.objectUtil.extendS
18569
18567
  parentMessageId: string | null;
18570
18568
  feedPostId: string | null;
18571
18569
  feedPost: {
18572
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "added_photos" | "shared_story" | "mobile_status_update" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
18570
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "added_photos" | "shared_story" | "mobile_status_update" | "no_data" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
18573
18571
  message: string | null;
18574
18572
  id: string;
18575
18573
  channel: {
@@ -18819,6 +18817,7 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<z.objectUtil.extendS
18819
18817
  metadata?: any;
18820
18818
  } | null;
18821
18819
  replyReaction: string | null;
18820
+ label?: string | undefined;
18822
18821
  template?: any;
18823
18822
  metadata?: any;
18824
18823
  }>;
@@ -18830,7 +18829,7 @@ export declare const RepliedMessageSchema: z.ZodObject<z.objectUtil.extendShape<
18830
18829
  }, {
18831
18830
  message: z.ZodString;
18832
18831
  direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
18833
- type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "unsupported"]>;
18832
+ type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "deleted", "unsupported"]>;
18834
18833
  readAt: z.ZodDate;
18835
18834
  metadata: z.ZodAny;
18836
18835
  platformId: z.ZodString;
@@ -19489,7 +19488,7 @@ export declare const RepliedMessageSchema: z.ZodObject<z.objectUtil.extendShape<
19489
19488
  };
19490
19489
  }>;
19491
19490
  }>, "strip", z.ZodTypeAny, {
19492
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
19491
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
19493
19492
  message: string;
19494
19493
  id: string;
19495
19494
  url: string;
@@ -19651,7 +19650,7 @@ export declare const RepliedMessageSchema: z.ZodObject<z.objectUtil.extendShape<
19651
19650
  template?: any;
19652
19651
  metadata?: any;
19653
19652
  }, {
19654
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
19653
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
19655
19654
  message: string;
19656
19655
  id: string;
19657
19656
  url: string;
@@ -19834,7 +19833,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<z.objectUtil.extendShap
19834
19833
  }, {
19835
19834
  message: z.ZodString;
19836
19835
  direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
19837
- type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "unsupported"]>;
19836
+ type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "deleted", "unsupported"]>;
19838
19837
  readAt: z.ZodDate;
19839
19838
  metadata: z.ZodAny;
19840
19839
  platformId: z.ZodString;
@@ -19890,9 +19889,6 @@ export declare const MessageRelevanceSchema: z.ZodObject<z.objectUtil.extendShap
19890
19889
  id: z.ZodString;
19891
19890
  createdAt: z.ZodDate;
19892
19891
  updatedAt: z.ZodDate;
19893
- /**
19894
- * Platform Contact
19895
- */
19896
19892
  deletedAt: z.ZodNullable<z.ZodDate>;
19897
19893
  name: z.ZodString;
19898
19894
  address: z.ZodNullable<z.ZodString>;
@@ -21303,7 +21299,9 @@ export declare const MessageRelevanceSchema: z.ZodObject<z.objectUtil.extendShap
21303
21299
  updatedAt: z.ZodDate;
21304
21300
  deletedAt: z.ZodNullable<z.ZodDate>;
21305
21301
  name: z.ZodString;
21306
- email: z.ZodString;
21302
+ email: z.ZodString; /**
21303
+ * Platform Contact
21304
+ */
21307
21305
  emailVerifiedAt: z.ZodNullable<z.ZodDate>;
21308
21306
  password: z.ZodString;
21309
21307
  address: z.ZodNullable<z.ZodString>;
@@ -22893,7 +22891,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<z.objectUtil.extendShap
22893
22891
  }, {
22894
22892
  message: z.ZodString;
22895
22893
  direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
22896
- type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "unsupported"]>;
22894
+ type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "deleted", "unsupported"]>;
22897
22895
  readAt: z.ZodDate;
22898
22896
  metadata: z.ZodAny;
22899
22897
  platformId: z.ZodString;
@@ -23552,7 +23550,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<z.objectUtil.extendShap
23552
23550
  };
23553
23551
  }>;
23554
23552
  }>, "strip", z.ZodTypeAny, {
23555
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
23553
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
23556
23554
  message: string;
23557
23555
  id: string;
23558
23556
  url: string;
@@ -23714,7 +23712,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<z.objectUtil.extendShap
23714
23712
  template?: any;
23715
23713
  metadata?: any;
23716
23714
  }, {
23717
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
23715
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
23718
23716
  message: string;
23719
23717
  id: string;
23720
23718
  url: string;
@@ -24515,6 +24513,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<z.objectUtil.extendShap
24515
24513
  isActive: boolean;
24516
24514
  }>;
24517
24515
  editedMessageid: z.ZodString;
24516
+ label: z.ZodOptional<z.ZodString>;
24518
24517
  }>, {
24519
24518
  platformContract: z.ZodObject<{
24520
24519
  id: z.ZodString;
@@ -24544,9 +24543,6 @@ export declare const MessageRelevanceSchema: z.ZodObject<z.objectUtil.extendShap
24544
24543
  id: z.ZodString;
24545
24544
  createdAt: z.ZodDate;
24546
24545
  updatedAt: z.ZodDate;
24547
- /**
24548
- * Platform Contact
24549
- */
24550
24546
  deletedAt: z.ZodNullable<z.ZodDate>;
24551
24547
  name: z.ZodString;
24552
24548
  address: z.ZodNullable<z.ZodString>;
@@ -25474,7 +25470,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<z.objectUtil.extendShap
25474
25470
  }, {
25475
25471
  message: z.ZodString;
25476
25472
  direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
25477
- type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "unsupported"]>;
25473
+ type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "deleted", "unsupported"]>;
25478
25474
  readAt: z.ZodDate;
25479
25475
  metadata: z.ZodAny;
25480
25476
  platformId: z.ZodString;
@@ -25530,9 +25526,6 @@ export declare const MessageRelevanceSchema: z.ZodObject<z.objectUtil.extendShap
25530
25526
  id: z.ZodString;
25531
25527
  createdAt: z.ZodDate;
25532
25528
  updatedAt: z.ZodDate;
25533
- /**
25534
- * Platform Contact
25535
- */
25536
25529
  deletedAt: z.ZodNullable<z.ZodDate>;
25537
25530
  name: z.ZodString;
25538
25531
  address: z.ZodNullable<z.ZodString>;
@@ -26943,7 +26936,9 @@ export declare const MessageRelevanceSchema: z.ZodObject<z.objectUtil.extendShap
26943
26936
  updatedAt: z.ZodDate;
26944
26937
  deletedAt: z.ZodNullable<z.ZodDate>;
26945
26938
  name: z.ZodString;
26946
- email: z.ZodString;
26939
+ email: z.ZodString; /**
26940
+ * Platform Contact
26941
+ */
26947
26942
  emailVerifiedAt: z.ZodNullable<z.ZodDate>;
26948
26943
  password: z.ZodString;
26949
26944
  address: z.ZodNullable<z.ZodString>;
@@ -28533,7 +28528,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<z.objectUtil.extendShap
28533
28528
  }, {
28534
28529
  message: z.ZodString;
28535
28530
  direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
28536
- type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "unsupported"]>;
28531
+ type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "deleted", "unsupported"]>;
28537
28532
  readAt: z.ZodDate;
28538
28533
  metadata: z.ZodAny;
28539
28534
  platformId: z.ZodString;
@@ -29192,7 +29187,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<z.objectUtil.extendShap
29192
29187
  };
29193
29188
  }>;
29194
29189
  }>, "strip", z.ZodTypeAny, {
29195
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
29190
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
29196
29191
  message: string;
29197
29192
  id: string;
29198
29193
  url: string;
@@ -29354,7 +29349,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<z.objectUtil.extendShap
29354
29349
  template?: any;
29355
29350
  metadata?: any;
29356
29351
  }, {
29357
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
29352
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
29358
29353
  message: string;
29359
29354
  id: string;
29360
29355
  url: string;
@@ -30155,8 +30150,9 @@ export declare const MessageRelevanceSchema: z.ZodObject<z.objectUtil.extendShap
30155
30150
  isActive: boolean;
30156
30151
  }>;
30157
30152
  editedMessageid: z.ZodString;
30153
+ label: z.ZodOptional<z.ZodString>;
30158
30154
  }>, "strip", z.ZodTypeAny, {
30159
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
30155
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
30160
30156
  message: string;
30161
30157
  id: string;
30162
30158
  url: string;
@@ -30654,7 +30650,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<z.objectUtil.extendShap
30654
30650
  previewUrl: string;
30655
30651
  imageSetId: string;
30656
30652
  repliedMessage: {
30657
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
30653
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
30658
30654
  message: string;
30659
30655
  id: string;
30660
30656
  url: string;
@@ -30861,10 +30857,11 @@ export declare const MessageRelevanceSchema: z.ZodObject<z.objectUtil.extendShap
30861
30857
  };
30862
30858
  };
30863
30859
  editedMessageid: string;
30860
+ label?: string | undefined;
30864
30861
  template?: any;
30865
30862
  metadata?: any;
30866
30863
  }, {
30867
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
30864
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
30868
30865
  message: string;
30869
30866
  id: string;
30870
30867
  url: string;
@@ -31362,7 +31359,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<z.objectUtil.extendShap
31362
31359
  previewUrl: string;
31363
31360
  imageSetId: string;
31364
31361
  repliedMessage: {
31365
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
31362
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
31366
31363
  message: string;
31367
31364
  id: string;
31368
31365
  url: string;
@@ -31569,17 +31566,18 @@ export declare const MessageRelevanceSchema: z.ZodObject<z.objectUtil.extendShap
31569
31566
  };
31570
31567
  };
31571
31568
  editedMessageid: string;
31569
+ label?: string | undefined;
31572
31570
  template?: any;
31573
31571
  metadata?: any;
31574
31572
  }>, "many">;
31575
31573
  }>, "strip", z.ZodTypeAny, {
31576
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
31574
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
31577
31575
  message: string;
31578
31576
  id: string;
31579
31577
  url: string;
31580
31578
  direction: "incoming" | "outgoing" | "system";
31581
31579
  children: {
31582
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
31580
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
31583
31581
  message: string;
31584
31582
  id: string;
31585
31583
  url: string;
@@ -32077,7 +32075,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<z.objectUtil.extendShap
32077
32075
  previewUrl: string;
32078
32076
  imageSetId: string;
32079
32077
  repliedMessage: {
32080
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
32078
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
32081
32079
  message: string;
32082
32080
  id: string;
32083
32081
  url: string;
@@ -32284,6 +32282,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<z.objectUtil.extendShap
32284
32282
  };
32285
32283
  };
32286
32284
  editedMessageid: string;
32285
+ label?: string | undefined;
32287
32286
  template?: any;
32288
32287
  metadata?: any;
32289
32288
  }[];
@@ -32780,7 +32779,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<z.objectUtil.extendShap
32780
32779
  previewUrl: string;
32781
32780
  imageSetId: string;
32782
32781
  repliedMessage: {
32783
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
32782
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
32784
32783
  message: string;
32785
32784
  id: string;
32786
32785
  url: string;
@@ -33099,16 +33098,17 @@ export declare const MessageRelevanceSchema: z.ZodObject<z.objectUtil.extendShap
33099
33098
  channelId: string;
33100
33099
  socialPlatformId: string;
33101
33100
  };
33101
+ label?: string | undefined;
33102
33102
  template?: any;
33103
33103
  metadata?: any;
33104
33104
  }, {
33105
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
33105
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
33106
33106
  message: string;
33107
33107
  id: string;
33108
33108
  url: string;
33109
33109
  direction: "incoming" | "outgoing" | "system";
33110
33110
  children: {
33111
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
33111
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
33112
33112
  message: string;
33113
33113
  id: string;
33114
33114
  url: string;
@@ -33606,7 +33606,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<z.objectUtil.extendShap
33606
33606
  previewUrl: string;
33607
33607
  imageSetId: string;
33608
33608
  repliedMessage: {
33609
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
33609
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
33610
33610
  message: string;
33611
33611
  id: string;
33612
33612
  url: string;
@@ -33813,6 +33813,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<z.objectUtil.extendShap
33813
33813
  };
33814
33814
  };
33815
33815
  editedMessageid: string;
33816
+ label?: string | undefined;
33816
33817
  template?: any;
33817
33818
  metadata?: any;
33818
33819
  }[];
@@ -34309,7 +34310,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<z.objectUtil.extendShap
34309
34310
  previewUrl: string;
34310
34311
  imageSetId: string;
34311
34312
  repliedMessage: {
34312
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
34313
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
34313
34314
  message: string;
34314
34315
  id: string;
34315
34316
  url: string;
@@ -34628,6 +34629,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<z.objectUtil.extendShap
34628
34629
  channelId: string;
34629
34630
  socialPlatformId: string;
34630
34631
  };
34632
+ label?: string | undefined;
34631
34633
  template?: any;
34632
34634
  metadata?: any;
34633
34635
  }>;