@kl1/contracts 1.1.78-uat → 1.1.80-uat

Sign up to get free protection for your applications and to get access to all the features.
Files changed (32) 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 +145 -145
  8. package/dist/api-contracts/src/chat/schema.d.ts +64 -76
  9. package/dist/api-contracts/src/chat/schema.d.ts.map +1 -1
  10. package/dist/api-contracts/src/chat/validation.d.ts +51 -51
  11. package/dist/api-contracts/src/comment/index.d.ts +1 -1
  12. package/dist/api-contracts/src/comment/validation.d.ts +1 -1
  13. package/dist/api-contracts/src/contract.d.ts +219 -219
  14. package/dist/api-contracts/src/facebook-feed/index.d.ts +43 -43
  15. package/dist/api-contracts/src/facebook-feed/schema.d.ts +3 -3
  16. package/dist/api-contracts/src/hold-label/index.d.ts +1 -1
  17. package/dist/api-contracts/src/index.d.ts +1 -0
  18. package/dist/api-contracts/src/index.d.ts.map +1 -1
  19. package/dist/api-contracts/src/instagram/index.d.ts +33 -33
  20. package/dist/api-contracts/src/line/index.d.ts +38 -38
  21. package/dist/api-contracts/src/line/validation.d.ts +5 -5
  22. package/dist/api-contracts/src/messenger/index.d.ts +33 -33
  23. package/dist/api-contracts/src/sms/index.d.ts +5 -5
  24. package/dist/api-contracts/src/viber/index.d.ts +33 -33
  25. package/dist/api-contracts/src/webchat/index.d.ts +33 -33
  26. package/dist/entities/src/enums/chat.d.ts +2 -0
  27. package/dist/entities/src/enums/chat.d.ts.map +1 -1
  28. package/dist/index.js +491 -388
  29. package/dist/index.js.map +1 -1
  30. package/dist/index.mjs +490 -388
  31. package/dist/index.mjs.map +1 -1
  32. 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;
@@ -8685,7 +8680,7 @@ export declare const MessageSchema: z.ZodObject<z.objectUtil.extendShape<{
8685
8680
  }>;
8686
8681
  editedMessageid: z.ZodString;
8687
8682
  }>, "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";
8683
+ 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
8684
  message: string;
8690
8685
  id: string;
8691
8686
  url: string;
@@ -9183,7 +9178,7 @@ export declare const MessageSchema: z.ZodObject<z.objectUtil.extendShape<{
9183
9178
  previewUrl: string;
9184
9179
  imageSetId: string;
9185
9180
  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";
9181
+ 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
9182
  message: string;
9188
9183
  id: string;
9189
9184
  url: string;
@@ -9393,7 +9388,7 @@ export declare const MessageSchema: z.ZodObject<z.objectUtil.extendShape<{
9393
9388
  template?: any;
9394
9389
  metadata?: any;
9395
9390
  }, {
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";
9391
+ 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
9392
  message: string;
9398
9393
  id: string;
9399
9394
  url: string;
@@ -9891,7 +9886,7 @@ export declare const MessageSchema: z.ZodObject<z.objectUtil.extendShape<{
9891
9886
  previewUrl: string;
9892
9887
  imageSetId: string;
9893
9888
  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";
9889
+ 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
9890
  message: string;
9896
9891
  id: string;
9897
9892
  url: string;
@@ -10109,7 +10104,7 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<z.objectUtil.extendS
10109
10104
  }, {
10110
10105
  message: z.ZodString;
10111
10106
  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"]>;
10107
+ 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
10108
  readAt: z.ZodDate;
10114
10109
  metadata: z.ZodAny;
10115
10110
  platformId: z.ZodString;
@@ -10165,9 +10160,6 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<z.objectUtil.extendS
10165
10160
  id: z.ZodString;
10166
10161
  createdAt: z.ZodDate;
10167
10162
  updatedAt: z.ZodDate;
10168
- /**
10169
- * Platform Contact
10170
- */
10171
10163
  deletedAt: z.ZodNullable<z.ZodDate>;
10172
10164
  name: z.ZodString;
10173
10165
  address: z.ZodNullable<z.ZodString>;
@@ -11578,7 +11570,9 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<z.objectUtil.extendS
11578
11570
  updatedAt: z.ZodDate;
11579
11571
  deletedAt: z.ZodNullable<z.ZodDate>;
11580
11572
  name: z.ZodString;
11581
- email: z.ZodString;
11573
+ email: z.ZodString; /**
11574
+ * Platform Contact
11575
+ */
11582
11576
  emailVerifiedAt: z.ZodNullable<z.ZodDate>;
11583
11577
  password: z.ZodString;
11584
11578
  address: z.ZodNullable<z.ZodString>;
@@ -13168,7 +13162,7 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<z.objectUtil.extendS
13168
13162
  }, {
13169
13163
  message: z.ZodString;
13170
13164
  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"]>;
13165
+ 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
13166
  readAt: z.ZodDate;
13173
13167
  metadata: z.ZodAny;
13174
13168
  platformId: z.ZodString;
@@ -13827,7 +13821,7 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<z.objectUtil.extendS
13827
13821
  };
13828
13822
  }>;
13829
13823
  }>, "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";
13824
+ 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
13825
  message: string;
13832
13826
  id: string;
13833
13827
  url: string;
@@ -13989,7 +13983,7 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<z.objectUtil.extendS
13989
13983
  template?: any;
13990
13984
  metadata?: any;
13991
13985
  }, {
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";
13986
+ 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
13987
  message: string;
13994
13988
  id: string;
13995
13989
  url: string;
@@ -14800,7 +14794,7 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<z.objectUtil.extendS
14800
14794
  deletedAt: z.ZodNullable<z.ZodDate>;
14801
14795
  }, {
14802
14796
  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"]>]>;
14797
+ 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
14798
  metadata: z.ZodAny;
14805
14799
  platformId: z.ZodString;
14806
14800
  platformMessageId: z.ZodString;
@@ -14890,7 +14884,9 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<z.objectUtil.extendS
14890
14884
  updatedAt: z.ZodDate;
14891
14885
  deletedAt: z.ZodNullable<z.ZodDate>;
14892
14886
  name: z.ZodString;
14893
- email: z.ZodString;
14887
+ email: z.ZodString; /**
14888
+ * Platform Contact
14889
+ */
14894
14890
  emailVerifiedAt: z.ZodNullable<z.ZodDate>;
14895
14891
  password: z.ZodString;
14896
14892
  address: z.ZodNullable<z.ZodString>;
@@ -15271,9 +15267,6 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<z.objectUtil.extendS
15271
15267
  id: z.ZodString;
15272
15268
  createdAt: z.ZodDate;
15273
15269
  updatedAt: z.ZodDate;
15274
- /**
15275
- * Platform Contact
15276
- */
15277
15270
  deletedAt: z.ZodNullable<z.ZodDate>;
15278
15271
  name: z.ZodString;
15279
15272
  address: z.ZodNullable<z.ZodString>;
@@ -16400,7 +16393,7 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<z.objectUtil.extendS
16400
16393
  imageURL: z.ZodString;
16401
16394
  permalinkURL: z.ZodString;
16402
16395
  }>, "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";
16396
+ 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
16397
  message: string | null;
16405
16398
  id: string;
16406
16399
  channel: {
@@ -16649,7 +16642,7 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<z.objectUtil.extendS
16649
16642
  permalinkURL: string;
16650
16643
  metadata?: any;
16651
16644
  }, {
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";
16645
+ 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
16646
  message: string | null;
16654
16647
  id: string;
16655
16648
  channel: {
@@ -16900,7 +16893,7 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<z.objectUtil.extendS
16900
16893
  }>>;
16901
16894
  replyReaction: z.ZodNullable<z.ZodString>;
16902
16895
  }>, "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";
16896
+ 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
16897
  message: string;
16905
16898
  id: string;
16906
16899
  url: string;
@@ -17398,7 +17391,7 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<z.objectUtil.extendS
17398
17391
  previewUrl: string;
17399
17392
  imageSetId: string;
17400
17393
  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";
17394
+ 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
17395
  message: string;
17403
17396
  id: string;
17404
17397
  url: string;
@@ -17608,7 +17601,7 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<z.objectUtil.extendS
17608
17601
  parentMessageId: string | null;
17609
17602
  feedPostId: string | null;
17610
17603
  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";
17604
+ 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
17605
  message: string | null;
17613
17606
  id: string;
17614
17607
  channel: {
@@ -17861,7 +17854,7 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<z.objectUtil.extendS
17861
17854
  template?: any;
17862
17855
  metadata?: any;
17863
17856
  }, {
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";
17857
+ 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
17858
  message: string;
17866
17859
  id: string;
17867
17860
  url: string;
@@ -18359,7 +18352,7 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<z.objectUtil.extendS
18359
18352
  previewUrl: string;
18360
18353
  imageSetId: string;
18361
18354
  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";
18355
+ 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
18356
  message: string;
18364
18357
  id: string;
18365
18358
  url: string;
@@ -18569,7 +18562,7 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<z.objectUtil.extendS
18569
18562
  parentMessageId: string | null;
18570
18563
  feedPostId: string | null;
18571
18564
  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";
18565
+ 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
18566
  message: string | null;
18574
18567
  id: string;
18575
18568
  channel: {
@@ -18830,7 +18823,7 @@ export declare const RepliedMessageSchema: z.ZodObject<z.objectUtil.extendShape<
18830
18823
  }, {
18831
18824
  message: z.ZodString;
18832
18825
  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"]>;
18826
+ 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
18827
  readAt: z.ZodDate;
18835
18828
  metadata: z.ZodAny;
18836
18829
  platformId: z.ZodString;
@@ -19489,7 +19482,7 @@ export declare const RepliedMessageSchema: z.ZodObject<z.objectUtil.extendShape<
19489
19482
  };
19490
19483
  }>;
19491
19484
  }>, "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";
19485
+ 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
19486
  message: string;
19494
19487
  id: string;
19495
19488
  url: string;
@@ -19651,7 +19644,7 @@ export declare const RepliedMessageSchema: z.ZodObject<z.objectUtil.extendShape<
19651
19644
  template?: any;
19652
19645
  metadata?: any;
19653
19646
  }, {
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";
19647
+ 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
19648
  message: string;
19656
19649
  id: string;
19657
19650
  url: string;
@@ -19834,7 +19827,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<z.objectUtil.extendShap
19834
19827
  }, {
19835
19828
  message: z.ZodString;
19836
19829
  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"]>;
19830
+ 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
19831
  readAt: z.ZodDate;
19839
19832
  metadata: z.ZodAny;
19840
19833
  platformId: z.ZodString;
@@ -19890,9 +19883,6 @@ export declare const MessageRelevanceSchema: z.ZodObject<z.objectUtil.extendShap
19890
19883
  id: z.ZodString;
19891
19884
  createdAt: z.ZodDate;
19892
19885
  updatedAt: z.ZodDate;
19893
- /**
19894
- * Platform Contact
19895
- */
19896
19886
  deletedAt: z.ZodNullable<z.ZodDate>;
19897
19887
  name: z.ZodString;
19898
19888
  address: z.ZodNullable<z.ZodString>;
@@ -21303,7 +21293,9 @@ export declare const MessageRelevanceSchema: z.ZodObject<z.objectUtil.extendShap
21303
21293
  updatedAt: z.ZodDate;
21304
21294
  deletedAt: z.ZodNullable<z.ZodDate>;
21305
21295
  name: z.ZodString;
21306
- email: z.ZodString;
21296
+ email: z.ZodString; /**
21297
+ * Platform Contact
21298
+ */
21307
21299
  emailVerifiedAt: z.ZodNullable<z.ZodDate>;
21308
21300
  password: z.ZodString;
21309
21301
  address: z.ZodNullable<z.ZodString>;
@@ -22893,7 +22885,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<z.objectUtil.extendShap
22893
22885
  }, {
22894
22886
  message: z.ZodString;
22895
22887
  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"]>;
22888
+ 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
22889
  readAt: z.ZodDate;
22898
22890
  metadata: z.ZodAny;
22899
22891
  platformId: z.ZodString;
@@ -23552,7 +23544,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<z.objectUtil.extendShap
23552
23544
  };
23553
23545
  }>;
23554
23546
  }>, "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";
23547
+ 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
23548
  message: string;
23557
23549
  id: string;
23558
23550
  url: string;
@@ -23714,7 +23706,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<z.objectUtil.extendShap
23714
23706
  template?: any;
23715
23707
  metadata?: any;
23716
23708
  }, {
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";
23709
+ 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
23710
  message: string;
23719
23711
  id: string;
23720
23712
  url: string;
@@ -24544,9 +24536,6 @@ export declare const MessageRelevanceSchema: z.ZodObject<z.objectUtil.extendShap
24544
24536
  id: z.ZodString;
24545
24537
  createdAt: z.ZodDate;
24546
24538
  updatedAt: z.ZodDate;
24547
- /**
24548
- * Platform Contact
24549
- */
24550
24539
  deletedAt: z.ZodNullable<z.ZodDate>;
24551
24540
  name: z.ZodString;
24552
24541
  address: z.ZodNullable<z.ZodString>;
@@ -25474,7 +25463,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<z.objectUtil.extendShap
25474
25463
  }, {
25475
25464
  message: z.ZodString;
25476
25465
  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"]>;
25466
+ 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
25467
  readAt: z.ZodDate;
25479
25468
  metadata: z.ZodAny;
25480
25469
  platformId: z.ZodString;
@@ -25530,9 +25519,6 @@ export declare const MessageRelevanceSchema: z.ZodObject<z.objectUtil.extendShap
25530
25519
  id: z.ZodString;
25531
25520
  createdAt: z.ZodDate;
25532
25521
  updatedAt: z.ZodDate;
25533
- /**
25534
- * Platform Contact
25535
- */
25536
25522
  deletedAt: z.ZodNullable<z.ZodDate>;
25537
25523
  name: z.ZodString;
25538
25524
  address: z.ZodNullable<z.ZodString>;
@@ -26943,7 +26929,9 @@ export declare const MessageRelevanceSchema: z.ZodObject<z.objectUtil.extendShap
26943
26929
  updatedAt: z.ZodDate;
26944
26930
  deletedAt: z.ZodNullable<z.ZodDate>;
26945
26931
  name: z.ZodString;
26946
- email: z.ZodString;
26932
+ email: z.ZodString; /**
26933
+ * Platform Contact
26934
+ */
26947
26935
  emailVerifiedAt: z.ZodNullable<z.ZodDate>;
26948
26936
  password: z.ZodString;
26949
26937
  address: z.ZodNullable<z.ZodString>;
@@ -28533,7 +28521,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<z.objectUtil.extendShap
28533
28521
  }, {
28534
28522
  message: z.ZodString;
28535
28523
  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"]>;
28524
+ 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
28525
  readAt: z.ZodDate;
28538
28526
  metadata: z.ZodAny;
28539
28527
  platformId: z.ZodString;
@@ -29192,7 +29180,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<z.objectUtil.extendShap
29192
29180
  };
29193
29181
  }>;
29194
29182
  }>, "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";
29183
+ 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
29184
  message: string;
29197
29185
  id: string;
29198
29186
  url: string;
@@ -29354,7 +29342,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<z.objectUtil.extendShap
29354
29342
  template?: any;
29355
29343
  metadata?: any;
29356
29344
  }, {
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";
29345
+ 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
29346
  message: string;
29359
29347
  id: string;
29360
29348
  url: string;
@@ -30156,7 +30144,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<z.objectUtil.extendShap
30156
30144
  }>;
30157
30145
  editedMessageid: z.ZodString;
30158
30146
  }>, "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";
30147
+ 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
30148
  message: string;
30161
30149
  id: string;
30162
30150
  url: string;
@@ -30654,7 +30642,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<z.objectUtil.extendShap
30654
30642
  previewUrl: string;
30655
30643
  imageSetId: string;
30656
30644
  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";
30645
+ 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
30646
  message: string;
30659
30647
  id: string;
30660
30648
  url: string;
@@ -30864,7 +30852,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<z.objectUtil.extendShap
30864
30852
  template?: any;
30865
30853
  metadata?: any;
30866
30854
  }, {
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";
30855
+ 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
30856
  message: string;
30869
30857
  id: string;
30870
30858
  url: string;
@@ -31362,7 +31350,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<z.objectUtil.extendShap
31362
31350
  previewUrl: string;
31363
31351
  imageSetId: string;
31364
31352
  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";
31353
+ 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
31354
  message: string;
31367
31355
  id: string;
31368
31356
  url: string;
@@ -31573,13 +31561,13 @@ export declare const MessageRelevanceSchema: z.ZodObject<z.objectUtil.extendShap
31573
31561
  metadata?: any;
31574
31562
  }>, "many">;
31575
31563
  }>, "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";
31564
+ 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
31565
  message: string;
31578
31566
  id: string;
31579
31567
  url: string;
31580
31568
  direction: "incoming" | "outgoing" | "system";
31581
31569
  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";
31570
+ 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
31571
  message: string;
31584
31572
  id: string;
31585
31573
  url: string;
@@ -32077,7 +32065,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<z.objectUtil.extendShap
32077
32065
  previewUrl: string;
32078
32066
  imageSetId: string;
32079
32067
  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";
32068
+ 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
32069
  message: string;
32082
32070
  id: string;
32083
32071
  url: string;
@@ -32780,7 +32768,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<z.objectUtil.extendShap
32780
32768
  previewUrl: string;
32781
32769
  imageSetId: string;
32782
32770
  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";
32771
+ 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
32772
  message: string;
32785
32773
  id: string;
32786
32774
  url: string;
@@ -33102,13 +33090,13 @@ export declare const MessageRelevanceSchema: z.ZodObject<z.objectUtil.extendShap
33102
33090
  template?: any;
33103
33091
  metadata?: any;
33104
33092
  }, {
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";
33093
+ 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
33094
  message: string;
33107
33095
  id: string;
33108
33096
  url: string;
33109
33097
  direction: "incoming" | "outgoing" | "system";
33110
33098
  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";
33099
+ 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
33100
  message: string;
33113
33101
  id: string;
33114
33102
  url: string;
@@ -33606,7 +33594,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<z.objectUtil.extendShap
33606
33594
  previewUrl: string;
33607
33595
  imageSetId: string;
33608
33596
  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";
33597
+ 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
33598
  message: string;
33611
33599
  id: string;
33612
33600
  url: string;
@@ -34309,7 +34297,7 @@ export declare const MessageRelevanceSchema: z.ZodObject<z.objectUtil.extendShap
34309
34297
  previewUrl: string;
34310
34298
  imageSetId: string;
34311
34299
  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";
34300
+ 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
34301
  message: string;
34314
34302
  id: string;
34315
34303
  url: string;