@kl1/contracts 1.0.87 → 1.0.89

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (37) hide show
  1. package/dist/index.js +14 -3
  2. package/dist/index.js.map +1 -1
  3. package/dist/index.mjs +14 -3
  4. package/dist/index.mjs.map +1 -1
  5. package/dist/src/app/index.d.ts +17 -0
  6. package/dist/src/app/index.d.ts.map +1 -0
  7. package/dist/src/chat/index.d.ts +39 -39
  8. package/dist/src/chat/schema.d.ts +30 -18
  9. package/dist/src/chat/schema.d.ts.map +1 -1
  10. package/dist/src/chat/validation.d.ts +42 -32
  11. package/dist/src/chat/validation.d.ts.map +1 -1
  12. package/dist/src/chatwoot/index.d.ts +7527 -0
  13. package/dist/src/chatwoot/index.d.ts.map +1 -0
  14. package/dist/src/chatwoot/schema.d.ts +79 -0
  15. package/dist/src/chatwoot/schema.d.ts.map +1 -0
  16. package/dist/src/chatwoot/validation.d.ts +53 -0
  17. package/dist/src/chatwoot/validation.d.ts.map +1 -0
  18. package/dist/src/contact/index.d.ts +3 -0
  19. package/dist/src/contact/index.d.ts.map +1 -1
  20. package/dist/src/contact/validation.d.ts +3 -0
  21. package/dist/src/contact/validation.d.ts.map +1 -1
  22. package/dist/src/contract.d.ts +143 -100
  23. package/dist/src/contract.d.ts.map +1 -1
  24. package/dist/src/instagram/index.d.ts +27 -17
  25. package/dist/src/instagram/index.d.ts.map +1 -1
  26. package/dist/src/line/index.d.ts +32 -22
  27. package/dist/src/line/index.d.ts.map +1 -1
  28. package/dist/src/line/validation.d.ts +5 -5
  29. package/dist/src/mail/mail-server.d.ts +216 -0
  30. package/dist/src/mail/mail-server.d.ts.map +1 -0
  31. package/dist/src/messenger/index.d.ts +27 -17
  32. package/dist/src/messenger/index.d.ts.map +1 -1
  33. package/dist/src/platform-contact/schema.d.ts +30 -0
  34. package/dist/src/platform-contact/schema.d.ts.map +1 -0
  35. package/dist/src/viber/index.d.ts +27 -17
  36. package/dist/src/viber/index.d.ts.map +1 -1
  37. package/package.json +1 -1
@@ -41486,14 +41486,17 @@ export declare const contactContract: {
41486
41486
  page: import("zod").ZodOptional<import("zod").ZodDefault<import("zod").ZodNumber>>;
41487
41487
  pageSize: import("zod").ZodOptional<import("zod").ZodDefault<import("zod").ZodNumber>>;
41488
41488
  keyword: import("zod").ZodOptional<import("zod").ZodString>;
41489
+ relations: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodUnion<[import("zod").ZodLiteral<"company">, import("zod").ZodLiteral<"contactEmails">, import("zod").ZodLiteral<"contactPhones">]>, "many">>>;
41489
41490
  }, "strip", import("zod").ZodTypeAny, {
41490
41491
  page?: number | undefined;
41491
41492
  pageSize?: number | undefined;
41492
41493
  keyword?: string | undefined;
41494
+ relations?: ("company" | "contactEmails" | "contactPhones")[] | undefined;
41493
41495
  }, {
41494
41496
  page?: number | undefined;
41495
41497
  pageSize?: number | undefined;
41496
41498
  keyword?: string | undefined;
41499
+ relations?: ("company" | "contactEmails" | "contactPhones")[] | undefined;
41497
41500
  }>;
41498
41501
  responses: {
41499
41502
  200: import("zod").ZodObject<{
@@ -81997,7 +82000,7 @@ export declare const platformContract: {
81997
82000
  message: import("zod").ZodObject<{
81998
82001
  message: import("zod").ZodOptional<import("zod").ZodString>;
81999
82002
  direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
82000
- type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started"]>;
82003
+ type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
82001
82004
  readAt: import("zod").ZodOptional<import("zod").ZodDate>;
82002
82005
  metadata: import("zod").ZodOptional<import("zod").ZodAny>;
82003
82006
  platformId: import("zod").ZodOptional<import("zod").ZodString>;
@@ -82041,7 +82044,7 @@ export declare const platformContract: {
82041
82044
  phone: string | null;
82042
82045
  }>;
82043
82046
  }, "strip", import("zod").ZodTypeAny, {
82044
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
82047
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
82045
82048
  direction: "incoming" | "outgoing" | "system";
82046
82049
  sender: {
82047
82050
  address: string | null;
@@ -82067,7 +82070,7 @@ export declare const platformContract: {
82067
82070
  fileSize: number;
82068
82071
  } | undefined;
82069
82072
  }, {
82070
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
82073
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
82071
82074
  direction: "incoming" | "outgoing" | "system";
82072
82075
  sender: {
82073
82076
  address: string | null;
@@ -82095,7 +82098,7 @@ export declare const platformContract: {
82095
82098
  }>;
82096
82099
  }, "strip", import("zod").ZodTypeAny, {
82097
82100
  message: {
82098
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
82101
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
82099
82102
  direction: "incoming" | "outgoing" | "system";
82100
82103
  sender: {
82101
82104
  address: string | null;
@@ -82181,7 +82184,7 @@ export declare const platformContract: {
82181
82184
  stickerId: number;
82182
82185
  }, {
82183
82186
  message: {
82184
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
82187
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
82185
82188
  direction: "incoming" | "outgoing" | "system";
82186
82189
  sender: {
82187
82190
  address: string | null;
@@ -82528,6 +82531,8 @@ export declare const platformContract: {
82528
82531
  handleTime: import("zod").ZodOptional<import("zod").ZodNumber>;
82529
82532
  isLatest: import("zod").ZodBoolean;
82530
82533
  direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
82534
+ createdAt: import("zod").ZodString;
82535
+ updatedAt: import("zod").ZodString;
82531
82536
  platformContact: import("zod").ZodObject<{
82532
82537
  channelId: import("zod").ZodString;
82533
82538
  socialPlatformId: import("zod").ZodNullable<import("zod").ZodString>;
@@ -82744,6 +82749,8 @@ export declare const platformContract: {
82744
82749
  } | undefined;
82745
82750
  };
82746
82751
  direction: "incoming" | "outgoing" | "system";
82752
+ createdAt: string;
82753
+ updatedAt: string;
82747
82754
  actor: {
82748
82755
  address: string | null;
82749
82756
  name: string;
@@ -82799,6 +82806,8 @@ export declare const platformContract: {
82799
82806
  } | undefined;
82800
82807
  };
82801
82808
  direction: "incoming" | "outgoing" | "system";
82809
+ createdAt: string;
82810
+ updatedAt: string;
82802
82811
  actor: {
82803
82812
  address: string | null;
82804
82813
  name: string;
@@ -82831,7 +82840,7 @@ export declare const platformContract: {
82831
82840
  message: import("zod").ZodObject<{
82832
82841
  message: import("zod").ZodOptional<import("zod").ZodString>;
82833
82842
  direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
82834
- type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started"]>;
82843
+ type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
82835
82844
  readAt: import("zod").ZodOptional<import("zod").ZodDate>;
82836
82845
  metadata: import("zod").ZodOptional<import("zod").ZodAny>;
82837
82846
  platformId: import("zod").ZodOptional<import("zod").ZodString>;
@@ -82878,7 +82887,7 @@ export declare const platformContract: {
82878
82887
  phone: string | null;
82879
82888
  }>;
82880
82889
  }, "strip", import("zod").ZodTypeAny, {
82881
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
82890
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
82882
82891
  direction: "incoming" | "outgoing" | "system";
82883
82892
  sender: {
82884
82893
  id: string;
@@ -82905,7 +82914,7 @@ export declare const platformContract: {
82905
82914
  fileSize: number;
82906
82915
  } | undefined;
82907
82916
  }, {
82908
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
82917
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
82909
82918
  direction: "incoming" | "outgoing" | "system";
82910
82919
  sender: {
82911
82920
  id: string;
@@ -82934,7 +82943,7 @@ export declare const platformContract: {
82934
82943
  }>;
82935
82944
  }, "strip", import("zod").ZodTypeAny, {
82936
82945
  message: {
82937
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
82946
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
82938
82947
  direction: "incoming" | "outgoing" | "system";
82939
82948
  sender: {
82940
82949
  id: string;
@@ -82988,6 +82997,8 @@ export declare const platformContract: {
82988
82997
  } | undefined;
82989
82998
  };
82990
82999
  direction: "incoming" | "outgoing" | "system";
83000
+ createdAt: string;
83001
+ updatedAt: string;
82991
83002
  actor: {
82992
83003
  address: string | null;
82993
83004
  name: string;
@@ -83019,7 +83030,7 @@ export declare const platformContract: {
83019
83030
  };
83020
83031
  }, {
83021
83032
  message: {
83022
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
83033
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
83023
83034
  direction: "incoming" | "outgoing" | "system";
83024
83035
  sender: {
83025
83036
  id: string;
@@ -83073,6 +83084,8 @@ export declare const platformContract: {
83073
83084
  } | undefined;
83074
83085
  };
83075
83086
  direction: "incoming" | "outgoing" | "system";
83087
+ createdAt: string;
83088
+ updatedAt: string;
83076
83089
  actor: {
83077
83090
  address: string | null;
83078
83091
  name: string;
@@ -83114,7 +83127,7 @@ export declare const platformContract: {
83114
83127
  deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
83115
83128
  message: import("zod").ZodString;
83116
83129
  direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
83117
- type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started"]>;
83130
+ type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
83118
83131
  readAt: import("zod").ZodDate;
83119
83132
  metadata: import("zod").ZodAny;
83120
83133
  platformId: import("zod").ZodString;
@@ -85655,7 +85668,7 @@ export declare const platformContract: {
85655
85668
  deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
85656
85669
  message: import("zod").ZodString;
85657
85670
  direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
85658
- type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started"]>;
85671
+ type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
85659
85672
  readAt: import("zod").ZodDate;
85660
85673
  metadata: import("zod").ZodAny;
85661
85674
  platformId: import("zod").ZodString;
@@ -86313,7 +86326,7 @@ export declare const platformContract: {
86313
86326
  };
86314
86327
  }>;
86315
86328
  }, "strip", import("zod").ZodTypeAny, {
86316
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
86329
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
86317
86330
  message: string;
86318
86331
  id: string;
86319
86332
  url: string;
@@ -86475,7 +86488,7 @@ export declare const platformContract: {
86475
86488
  metadata?: any;
86476
86489
  template?: any;
86477
86490
  }, {
86478
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
86491
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
86479
86492
  message: string;
86480
86493
  id: string;
86481
86494
  url: string;
@@ -87250,7 +87263,7 @@ export declare const platformContract: {
87250
87263
  };
87251
87264
  }>;
87252
87265
  }, "strip", import("zod").ZodTypeAny, {
87253
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
87266
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
87254
87267
  message: string;
87255
87268
  id: string;
87256
87269
  url: string;
@@ -87679,7 +87692,7 @@ export declare const platformContract: {
87679
87692
  previewUrl: string;
87680
87693
  imageSetId: string;
87681
87694
  repliedMessage: {
87682
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
87695
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
87683
87696
  message: string;
87684
87697
  id: string;
87685
87698
  url: string;
@@ -87888,7 +87901,7 @@ export declare const platformContract: {
87888
87901
  metadata?: any;
87889
87902
  template?: any;
87890
87903
  }, {
87891
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
87904
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
87892
87905
  message: string;
87893
87906
  id: string;
87894
87907
  url: string;
@@ -88317,7 +88330,7 @@ export declare const platformContract: {
88317
88330
  previewUrl: string;
88318
88331
  imageSetId: string;
88319
88332
  repliedMessage: {
88320
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
88333
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
88321
88334
  message: string;
88322
88335
  id: string;
88323
88336
  url: string;
@@ -88528,7 +88541,7 @@ export declare const platformContract: {
88528
88541
  }>;
88529
88542
  }, "strip", import("zod").ZodTypeAny, {
88530
88543
  data: {
88531
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
88544
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
88532
88545
  message: string;
88533
88546
  id: string;
88534
88547
  url: string;
@@ -88957,7 +88970,7 @@ export declare const platformContract: {
88957
88970
  previewUrl: string;
88958
88971
  imageSetId: string;
88959
88972
  repliedMessage: {
88960
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
88973
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
88961
88974
  message: string;
88962
88975
  id: string;
88963
88976
  url: string;
@@ -89169,7 +89182,7 @@ export declare const platformContract: {
89169
89182
  requestId: string;
89170
89183
  }, {
89171
89184
  data: {
89172
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
89185
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
89173
89186
  message: string;
89174
89187
  id: string;
89175
89188
  url: string;
@@ -89598,7 +89611,7 @@ export declare const platformContract: {
89598
89611
  previewUrl: string;
89599
89612
  imageSetId: string;
89600
89613
  repliedMessage: {
89601
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
89614
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
89602
89615
  message: string;
89603
89616
  id: string;
89604
89617
  url: string;
@@ -90467,6 +90480,8 @@ export declare const platformContract: {
90467
90480
  handleTime: import("zod").ZodOptional<import("zod").ZodNumber>;
90468
90481
  isLatest: import("zod").ZodBoolean;
90469
90482
  direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
90483
+ createdAt: import("zod").ZodString;
90484
+ updatedAt: import("zod").ZodString;
90470
90485
  platformContact: import("zod").ZodObject<{
90471
90486
  channelId: import("zod").ZodString;
90472
90487
  socialPlatformId: import("zod").ZodNullable<import("zod").ZodString>;
@@ -90683,6 +90698,8 @@ export declare const platformContract: {
90683
90698
  } | undefined;
90684
90699
  };
90685
90700
  direction: "incoming" | "outgoing" | "system";
90701
+ createdAt: string;
90702
+ updatedAt: string;
90686
90703
  actor: {
90687
90704
  address: string | null;
90688
90705
  name: string;
@@ -90738,6 +90755,8 @@ export declare const platformContract: {
90738
90755
  } | undefined;
90739
90756
  };
90740
90757
  direction: "incoming" | "outgoing" | "system";
90758
+ createdAt: string;
90759
+ updatedAt: string;
90741
90760
  actor: {
90742
90761
  address: string | null;
90743
90762
  name: string;
@@ -90770,7 +90789,7 @@ export declare const platformContract: {
90770
90789
  message: import("zod").ZodObject<{
90771
90790
  message: import("zod").ZodOptional<import("zod").ZodString>;
90772
90791
  direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
90773
- type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started"]>;
90792
+ type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
90774
90793
  readAt: import("zod").ZodOptional<import("zod").ZodDate>;
90775
90794
  metadata: import("zod").ZodOptional<import("zod").ZodAny>;
90776
90795
  platformId: import("zod").ZodOptional<import("zod").ZodString>;
@@ -90817,7 +90836,7 @@ export declare const platformContract: {
90817
90836
  phone: string | null;
90818
90837
  }>;
90819
90838
  }, "strip", import("zod").ZodTypeAny, {
90820
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
90839
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
90821
90840
  direction: "incoming" | "outgoing" | "system";
90822
90841
  sender: {
90823
90842
  id: string;
@@ -90844,7 +90863,7 @@ export declare const platformContract: {
90844
90863
  fileSize: number;
90845
90864
  } | undefined;
90846
90865
  }, {
90847
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
90866
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
90848
90867
  direction: "incoming" | "outgoing" | "system";
90849
90868
  sender: {
90850
90869
  id: string;
@@ -90873,7 +90892,7 @@ export declare const platformContract: {
90873
90892
  }>;
90874
90893
  }, "strip", import("zod").ZodTypeAny, {
90875
90894
  message: {
90876
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
90895
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
90877
90896
  direction: "incoming" | "outgoing" | "system";
90878
90897
  sender: {
90879
90898
  id: string;
@@ -90927,6 +90946,8 @@ export declare const platformContract: {
90927
90946
  } | undefined;
90928
90947
  };
90929
90948
  direction: "incoming" | "outgoing" | "system";
90949
+ createdAt: string;
90950
+ updatedAt: string;
90930
90951
  actor: {
90931
90952
  address: string | null;
90932
90953
  name: string;
@@ -90958,7 +90979,7 @@ export declare const platformContract: {
90958
90979
  };
90959
90980
  }, {
90960
90981
  message: {
90961
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
90982
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
90962
90983
  direction: "incoming" | "outgoing" | "system";
90963
90984
  sender: {
90964
90985
  id: string;
@@ -91012,6 +91033,8 @@ export declare const platformContract: {
91012
91033
  } | undefined;
91013
91034
  };
91014
91035
  direction: "incoming" | "outgoing" | "system";
91036
+ createdAt: string;
91037
+ updatedAt: string;
91015
91038
  actor: {
91016
91039
  address: string | null;
91017
91040
  name: string;
@@ -91053,7 +91076,7 @@ export declare const platformContract: {
91053
91076
  deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
91054
91077
  message: import("zod").ZodString;
91055
91078
  direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
91056
- type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started"]>;
91079
+ type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
91057
91080
  readAt: import("zod").ZodDate;
91058
91081
  metadata: import("zod").ZodAny;
91059
91082
  platformId: import("zod").ZodString;
@@ -93594,7 +93617,7 @@ export declare const platformContract: {
93594
93617
  deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
93595
93618
  message: import("zod").ZodString;
93596
93619
  direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
93597
- type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started"]>;
93620
+ type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
93598
93621
  readAt: import("zod").ZodDate;
93599
93622
  metadata: import("zod").ZodAny;
93600
93623
  platformId: import("zod").ZodString;
@@ -94252,7 +94275,7 @@ export declare const platformContract: {
94252
94275
  };
94253
94276
  }>;
94254
94277
  }, "strip", import("zod").ZodTypeAny, {
94255
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
94278
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
94256
94279
  message: string;
94257
94280
  id: string;
94258
94281
  url: string;
@@ -94414,7 +94437,7 @@ export declare const platformContract: {
94414
94437
  metadata?: any;
94415
94438
  template?: any;
94416
94439
  }, {
94417
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
94440
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
94418
94441
  message: string;
94419
94442
  id: string;
94420
94443
  url: string;
@@ -95189,7 +95212,7 @@ export declare const platformContract: {
95189
95212
  };
95190
95213
  }>;
95191
95214
  }, "strip", import("zod").ZodTypeAny, {
95192
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
95215
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
95193
95216
  message: string;
95194
95217
  id: string;
95195
95218
  url: string;
@@ -95618,7 +95641,7 @@ export declare const platformContract: {
95618
95641
  previewUrl: string;
95619
95642
  imageSetId: string;
95620
95643
  repliedMessage: {
95621
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
95644
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
95622
95645
  message: string;
95623
95646
  id: string;
95624
95647
  url: string;
@@ -95827,7 +95850,7 @@ export declare const platformContract: {
95827
95850
  metadata?: any;
95828
95851
  template?: any;
95829
95852
  }, {
95830
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
95853
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
95831
95854
  message: string;
95832
95855
  id: string;
95833
95856
  url: string;
@@ -96256,7 +96279,7 @@ export declare const platformContract: {
96256
96279
  previewUrl: string;
96257
96280
  imageSetId: string;
96258
96281
  repliedMessage: {
96259
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
96282
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
96260
96283
  message: string;
96261
96284
  id: string;
96262
96285
  url: string;
@@ -96467,7 +96490,7 @@ export declare const platformContract: {
96467
96490
  }>;
96468
96491
  }, "strip", import("zod").ZodTypeAny, {
96469
96492
  data: {
96470
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
96493
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
96471
96494
  message: string;
96472
96495
  id: string;
96473
96496
  url: string;
@@ -96896,7 +96919,7 @@ export declare const platformContract: {
96896
96919
  previewUrl: string;
96897
96920
  imageSetId: string;
96898
96921
  repliedMessage: {
96899
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
96922
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
96900
96923
  message: string;
96901
96924
  id: string;
96902
96925
  url: string;
@@ -97108,7 +97131,7 @@ export declare const platformContract: {
97108
97131
  requestId: string;
97109
97132
  }, {
97110
97133
  data: {
97111
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
97134
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
97112
97135
  message: string;
97113
97136
  id: string;
97114
97137
  url: string;
@@ -97537,7 +97560,7 @@ export declare const platformContract: {
97537
97560
  previewUrl: string;
97538
97561
  imageSetId: string;
97539
97562
  repliedMessage: {
97540
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
97563
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
97541
97564
  message: string;
97542
97565
  id: string;
97543
97566
  url: string;
@@ -99073,6 +99096,8 @@ export declare const platformContract: {
99073
99096
  handleTime: import("zod").ZodOptional<import("zod").ZodNumber>;
99074
99097
  isLatest: import("zod").ZodBoolean;
99075
99098
  direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
99099
+ createdAt: import("zod").ZodString;
99100
+ updatedAt: import("zod").ZodString;
99076
99101
  platformContact: import("zod").ZodObject<{
99077
99102
  channelId: import("zod").ZodString;
99078
99103
  socialPlatformId: import("zod").ZodNullable<import("zod").ZodString>;
@@ -99289,6 +99314,8 @@ export declare const platformContract: {
99289
99314
  } | undefined;
99290
99315
  };
99291
99316
  direction: "incoming" | "outgoing" | "system";
99317
+ createdAt: string;
99318
+ updatedAt: string;
99292
99319
  actor: {
99293
99320
  address: string | null;
99294
99321
  name: string;
@@ -99344,6 +99371,8 @@ export declare const platformContract: {
99344
99371
  } | undefined;
99345
99372
  };
99346
99373
  direction: "incoming" | "outgoing" | "system";
99374
+ createdAt: string;
99375
+ updatedAt: string;
99347
99376
  actor: {
99348
99377
  address: string | null;
99349
99378
  name: string;
@@ -99376,7 +99405,7 @@ export declare const platformContract: {
99376
99405
  message: import("zod").ZodObject<{
99377
99406
  message: import("zod").ZodOptional<import("zod").ZodString>;
99378
99407
  direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
99379
- type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started"]>;
99408
+ type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
99380
99409
  readAt: import("zod").ZodOptional<import("zod").ZodDate>;
99381
99410
  metadata: import("zod").ZodOptional<import("zod").ZodAny>;
99382
99411
  platformId: import("zod").ZodOptional<import("zod").ZodString>;
@@ -99423,7 +99452,7 @@ export declare const platformContract: {
99423
99452
  phone: string | null;
99424
99453
  }>;
99425
99454
  }, "strip", import("zod").ZodTypeAny, {
99426
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
99455
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
99427
99456
  direction: "incoming" | "outgoing" | "system";
99428
99457
  sender: {
99429
99458
  id: string;
@@ -99450,7 +99479,7 @@ export declare const platformContract: {
99450
99479
  fileSize: number;
99451
99480
  } | undefined;
99452
99481
  }, {
99453
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
99482
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
99454
99483
  direction: "incoming" | "outgoing" | "system";
99455
99484
  sender: {
99456
99485
  id: string;
@@ -99479,7 +99508,7 @@ export declare const platformContract: {
99479
99508
  }>;
99480
99509
  }, "strip", import("zod").ZodTypeAny, {
99481
99510
  message: {
99482
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
99511
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
99483
99512
  direction: "incoming" | "outgoing" | "system";
99484
99513
  sender: {
99485
99514
  id: string;
@@ -99533,6 +99562,8 @@ export declare const platformContract: {
99533
99562
  } | undefined;
99534
99563
  };
99535
99564
  direction: "incoming" | "outgoing" | "system";
99565
+ createdAt: string;
99566
+ updatedAt: string;
99536
99567
  actor: {
99537
99568
  address: string | null;
99538
99569
  name: string;
@@ -99564,7 +99595,7 @@ export declare const platformContract: {
99564
99595
  };
99565
99596
  }, {
99566
99597
  message: {
99567
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
99598
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
99568
99599
  direction: "incoming" | "outgoing" | "system";
99569
99600
  sender: {
99570
99601
  id: string;
@@ -99618,6 +99649,8 @@ export declare const platformContract: {
99618
99649
  } | undefined;
99619
99650
  };
99620
99651
  direction: "incoming" | "outgoing" | "system";
99652
+ createdAt: string;
99653
+ updatedAt: string;
99621
99654
  actor: {
99622
99655
  address: string | null;
99623
99656
  name: string;
@@ -99659,7 +99692,7 @@ export declare const platformContract: {
99659
99692
  deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
99660
99693
  message: import("zod").ZodString;
99661
99694
  direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
99662
- type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started"]>;
99695
+ type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
99663
99696
  readAt: import("zod").ZodDate;
99664
99697
  metadata: import("zod").ZodAny;
99665
99698
  platformId: import("zod").ZodString;
@@ -102200,7 +102233,7 @@ export declare const platformContract: {
102200
102233
  deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
102201
102234
  message: import("zod").ZodString;
102202
102235
  direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
102203
- type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started"]>;
102236
+ type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
102204
102237
  readAt: import("zod").ZodDate;
102205
102238
  metadata: import("zod").ZodAny;
102206
102239
  platformId: import("zod").ZodString;
@@ -102858,7 +102891,7 @@ export declare const platformContract: {
102858
102891
  };
102859
102892
  }>;
102860
102893
  }, "strip", import("zod").ZodTypeAny, {
102861
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
102894
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
102862
102895
  message: string;
102863
102896
  id: string;
102864
102897
  url: string;
@@ -103020,7 +103053,7 @@ export declare const platformContract: {
103020
103053
  metadata?: any;
103021
103054
  template?: any;
103022
103055
  }, {
103023
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
103056
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
103024
103057
  message: string;
103025
103058
  id: string;
103026
103059
  url: string;
@@ -103795,7 +103828,7 @@ export declare const platformContract: {
103795
103828
  };
103796
103829
  }>;
103797
103830
  }, "strip", import("zod").ZodTypeAny, {
103798
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
103831
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
103799
103832
  message: string;
103800
103833
  id: string;
103801
103834
  url: string;
@@ -104224,7 +104257,7 @@ export declare const platformContract: {
104224
104257
  previewUrl: string;
104225
104258
  imageSetId: string;
104226
104259
  repliedMessage: {
104227
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
104260
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
104228
104261
  message: string;
104229
104262
  id: string;
104230
104263
  url: string;
@@ -104433,7 +104466,7 @@ export declare const platformContract: {
104433
104466
  metadata?: any;
104434
104467
  template?: any;
104435
104468
  }, {
104436
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
104469
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
104437
104470
  message: string;
104438
104471
  id: string;
104439
104472
  url: string;
@@ -104862,7 +104895,7 @@ export declare const platformContract: {
104862
104895
  previewUrl: string;
104863
104896
  imageSetId: string;
104864
104897
  repliedMessage: {
104865
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
104898
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
104866
104899
  message: string;
104867
104900
  id: string;
104868
104901
  url: string;
@@ -105073,7 +105106,7 @@ export declare const platformContract: {
105073
105106
  }>;
105074
105107
  }, "strip", import("zod").ZodTypeAny, {
105075
105108
  data: {
105076
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
105109
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
105077
105110
  message: string;
105078
105111
  id: string;
105079
105112
  url: string;
@@ -105502,7 +105535,7 @@ export declare const platformContract: {
105502
105535
  previewUrl: string;
105503
105536
  imageSetId: string;
105504
105537
  repliedMessage: {
105505
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
105538
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
105506
105539
  message: string;
105507
105540
  id: string;
105508
105541
  url: string;
@@ -105714,7 +105747,7 @@ export declare const platformContract: {
105714
105747
  requestId: string;
105715
105748
  }, {
105716
105749
  data: {
105717
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
105750
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
105718
105751
  message: string;
105719
105752
  id: string;
105720
105753
  url: string;
@@ -106143,7 +106176,7 @@ export declare const platformContract: {
106143
106176
  previewUrl: string;
106144
106177
  imageSetId: string;
106145
106178
  repliedMessage: {
106146
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
106179
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
106147
106180
  message: string;
106148
106181
  id: string;
106149
106182
  url: string;
@@ -108778,6 +108811,8 @@ export declare const platformContract: {
108778
108811
  handleTime: import("zod").ZodOptional<import("zod").ZodNumber>;
108779
108812
  isLatest: import("zod").ZodBoolean;
108780
108813
  direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
108814
+ createdAt: import("zod").ZodString;
108815
+ updatedAt: import("zod").ZodString;
108781
108816
  platformContact: import("zod").ZodObject<{
108782
108817
  channelId: import("zod").ZodString;
108783
108818
  socialPlatformId: import("zod").ZodNullable<import("zod").ZodString>;
@@ -108994,6 +109029,8 @@ export declare const platformContract: {
108994
109029
  } | undefined;
108995
109030
  };
108996
109031
  direction: "incoming" | "outgoing" | "system";
109032
+ createdAt: string;
109033
+ updatedAt: string;
108997
109034
  actor: {
108998
109035
  address: string | null;
108999
109036
  name: string;
@@ -109049,6 +109086,8 @@ export declare const platformContract: {
109049
109086
  } | undefined;
109050
109087
  };
109051
109088
  direction: "incoming" | "outgoing" | "system";
109089
+ createdAt: string;
109090
+ updatedAt: string;
109052
109091
  actor: {
109053
109092
  address: string | null;
109054
109093
  name: string;
@@ -109081,7 +109120,7 @@ export declare const platformContract: {
109081
109120
  message: import("zod").ZodObject<{
109082
109121
  message: import("zod").ZodOptional<import("zod").ZodString>;
109083
109122
  direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
109084
- type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started"]>;
109123
+ type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
109085
109124
  readAt: import("zod").ZodOptional<import("zod").ZodDate>;
109086
109125
  metadata: import("zod").ZodOptional<import("zod").ZodAny>;
109087
109126
  platformId: import("zod").ZodOptional<import("zod").ZodString>;
@@ -109128,7 +109167,7 @@ export declare const platformContract: {
109128
109167
  phone: string | null;
109129
109168
  }>;
109130
109169
  }, "strip", import("zod").ZodTypeAny, {
109131
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
109170
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
109132
109171
  direction: "incoming" | "outgoing" | "system";
109133
109172
  sender: {
109134
109173
  id: string;
@@ -109155,7 +109194,7 @@ export declare const platformContract: {
109155
109194
  fileSize: number;
109156
109195
  } | undefined;
109157
109196
  }, {
109158
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
109197
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
109159
109198
  direction: "incoming" | "outgoing" | "system";
109160
109199
  sender: {
109161
109200
  id: string;
@@ -109184,7 +109223,7 @@ export declare const platformContract: {
109184
109223
  }>;
109185
109224
  }, "strip", import("zod").ZodTypeAny, {
109186
109225
  message: {
109187
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
109226
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
109188
109227
  direction: "incoming" | "outgoing" | "system";
109189
109228
  sender: {
109190
109229
  id: string;
@@ -109238,6 +109277,8 @@ export declare const platformContract: {
109238
109277
  } | undefined;
109239
109278
  };
109240
109279
  direction: "incoming" | "outgoing" | "system";
109280
+ createdAt: string;
109281
+ updatedAt: string;
109241
109282
  actor: {
109242
109283
  address: string | null;
109243
109284
  name: string;
@@ -109269,7 +109310,7 @@ export declare const platformContract: {
109269
109310
  };
109270
109311
  }, {
109271
109312
  message: {
109272
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
109313
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
109273
109314
  direction: "incoming" | "outgoing" | "system";
109274
109315
  sender: {
109275
109316
  id: string;
@@ -109323,6 +109364,8 @@ export declare const platformContract: {
109323
109364
  } | undefined;
109324
109365
  };
109325
109366
  direction: "incoming" | "outgoing" | "system";
109367
+ createdAt: string;
109368
+ updatedAt: string;
109326
109369
  actor: {
109327
109370
  address: string | null;
109328
109371
  name: string;
@@ -109364,7 +109407,7 @@ export declare const platformContract: {
109364
109407
  deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
109365
109408
  message: import("zod").ZodString;
109366
109409
  direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
109367
- type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started"]>;
109410
+ type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
109368
109411
  readAt: import("zod").ZodDate;
109369
109412
  metadata: import("zod").ZodAny;
109370
109413
  platformId: import("zod").ZodString;
@@ -111905,7 +111948,7 @@ export declare const platformContract: {
111905
111948
  deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
111906
111949
  message: import("zod").ZodString;
111907
111950
  direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
111908
- type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started"]>;
111951
+ type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
111909
111952
  readAt: import("zod").ZodDate;
111910
111953
  metadata: import("zod").ZodAny;
111911
111954
  platformId: import("zod").ZodString;
@@ -112563,7 +112606,7 @@ export declare const platformContract: {
112563
112606
  };
112564
112607
  }>;
112565
112608
  }, "strip", import("zod").ZodTypeAny, {
112566
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
112609
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
112567
112610
  message: string;
112568
112611
  id: string;
112569
112612
  url: string;
@@ -112725,7 +112768,7 @@ export declare const platformContract: {
112725
112768
  metadata?: any;
112726
112769
  template?: any;
112727
112770
  }, {
112728
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
112771
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
112729
112772
  message: string;
112730
112773
  id: string;
112731
112774
  url: string;
@@ -113500,7 +113543,7 @@ export declare const platformContract: {
113500
113543
  };
113501
113544
  }>;
113502
113545
  }, "strip", import("zod").ZodTypeAny, {
113503
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
113546
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
113504
113547
  message: string;
113505
113548
  id: string;
113506
113549
  url: string;
@@ -113929,7 +113972,7 @@ export declare const platformContract: {
113929
113972
  previewUrl: string;
113930
113973
  imageSetId: string;
113931
113974
  repliedMessage: {
113932
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
113975
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
113933
113976
  message: string;
113934
113977
  id: string;
113935
113978
  url: string;
@@ -114138,7 +114181,7 @@ export declare const platformContract: {
114138
114181
  metadata?: any;
114139
114182
  template?: any;
114140
114183
  }, {
114141
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
114184
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
114142
114185
  message: string;
114143
114186
  id: string;
114144
114187
  url: string;
@@ -114567,7 +114610,7 @@ export declare const platformContract: {
114567
114610
  previewUrl: string;
114568
114611
  imageSetId: string;
114569
114612
  repliedMessage: {
114570
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
114613
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
114571
114614
  message: string;
114572
114615
  id: string;
114573
114616
  url: string;
@@ -114778,7 +114821,7 @@ export declare const platformContract: {
114778
114821
  }>;
114779
114822
  }, "strip", import("zod").ZodTypeAny, {
114780
114823
  data: {
114781
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
114824
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
114782
114825
  message: string;
114783
114826
  id: string;
114784
114827
  url: string;
@@ -115207,7 +115250,7 @@ export declare const platformContract: {
115207
115250
  previewUrl: string;
115208
115251
  imageSetId: string;
115209
115252
  repliedMessage: {
115210
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
115253
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
115211
115254
  message: string;
115212
115255
  id: string;
115213
115256
  url: string;
@@ -115419,7 +115462,7 @@ export declare const platformContract: {
115419
115462
  requestId: string;
115420
115463
  }, {
115421
115464
  data: {
115422
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
115465
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
115423
115466
  message: string;
115424
115467
  id: string;
115425
115468
  url: string;
@@ -115848,7 +115891,7 @@ export declare const platformContract: {
115848
115891
  previewUrl: string;
115849
115892
  imageSetId: string;
115850
115893
  repliedMessage: {
115851
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
115894
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
115852
115895
  message: string;
115853
115896
  id: string;
115854
115897
  url: string;
@@ -124209,7 +124252,7 @@ export declare const chatContract: {
124209
124252
  sendMessage: {
124210
124253
  body: import("zod").ZodObject<{
124211
124254
  roomId: import("zod").ZodString;
124212
- messageType: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started"]>;
124255
+ messageType: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
124213
124256
  message: import("zod").ZodOptional<import("zod").ZodString>;
124214
124257
  messageAttachments: import("zod").ZodOptional<import("zod").ZodObject<{
124215
124258
  bucketName: import("zod").ZodString;
@@ -124452,7 +124495,7 @@ export declare const chatContract: {
124452
124495
  }>>;
124453
124496
  file: import("zod").ZodOptional<import("zod").ZodType<File, import("zod").ZodTypeDef, File>>;
124454
124497
  }, "strip", import("zod").ZodTypeAny, {
124455
- messageType: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
124498
+ messageType: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
124456
124499
  roomId: string;
124457
124500
  message?: string | undefined;
124458
124501
  messageAttachments?: {
@@ -124514,7 +124557,7 @@ export declare const chatContract: {
124514
124557
  } | undefined;
124515
124558
  file?: File | undefined;
124516
124559
  }, {
124517
- messageType: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
124560
+ messageType: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
124518
124561
  roomId: string;
124519
124562
  message?: string | undefined;
124520
124563
  messageAttachments?: {
@@ -124588,7 +124631,7 @@ export declare const chatContract: {
124588
124631
  deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
124589
124632
  message: import("zod").ZodString;
124590
124633
  direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
124591
- type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started"]>;
124634
+ type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
124592
124635
  readAt: import("zod").ZodDate;
124593
124636
  metadata: import("zod").ZodAny;
124594
124637
  platformId: import("zod").ZodString;
@@ -127129,7 +127172,7 @@ export declare const chatContract: {
127129
127172
  deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
127130
127173
  message: import("zod").ZodString;
127131
127174
  direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
127132
- type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started"]>;
127175
+ type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
127133
127176
  readAt: import("zod").ZodDate;
127134
127177
  metadata: import("zod").ZodAny;
127135
127178
  platformId: import("zod").ZodString;
@@ -127787,7 +127830,7 @@ export declare const chatContract: {
127787
127830
  };
127788
127831
  }>;
127789
127832
  }, "strip", import("zod").ZodTypeAny, {
127790
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
127833
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
127791
127834
  message: string;
127792
127835
  id: string;
127793
127836
  url: string;
@@ -127949,7 +127992,7 @@ export declare const chatContract: {
127949
127992
  metadata?: any;
127950
127993
  template?: any;
127951
127994
  }, {
127952
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
127995
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
127953
127996
  message: string;
127954
127997
  id: string;
127955
127998
  url: string;
@@ -128724,7 +128767,7 @@ export declare const chatContract: {
128724
128767
  };
128725
128768
  }>;
128726
128769
  }, "strip", import("zod").ZodTypeAny, {
128727
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
128770
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
128728
128771
  message: string;
128729
128772
  id: string;
128730
128773
  url: string;
@@ -129153,7 +129196,7 @@ export declare const chatContract: {
129153
129196
  previewUrl: string;
129154
129197
  imageSetId: string;
129155
129198
  repliedMessage: {
129156
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
129199
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
129157
129200
  message: string;
129158
129201
  id: string;
129159
129202
  url: string;
@@ -129362,7 +129405,7 @@ export declare const chatContract: {
129362
129405
  metadata?: any;
129363
129406
  template?: any;
129364
129407
  }, {
129365
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
129408
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
129366
129409
  message: string;
129367
129410
  id: string;
129368
129411
  url: string;
@@ -129791,7 +129834,7 @@ export declare const chatContract: {
129791
129834
  previewUrl: string;
129792
129835
  imageSetId: string;
129793
129836
  repliedMessage: {
129794
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
129837
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
129795
129838
  message: string;
129796
129839
  id: string;
129797
129840
  url: string;
@@ -130002,7 +130045,7 @@ export declare const chatContract: {
130002
130045
  }>;
130003
130046
  }, "strip", import("zod").ZodTypeAny, {
130004
130047
  data: {
130005
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
130048
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
130006
130049
  message: string;
130007
130050
  id: string;
130008
130051
  url: string;
@@ -130431,7 +130474,7 @@ export declare const chatContract: {
130431
130474
  previewUrl: string;
130432
130475
  imageSetId: string;
130433
130476
  repliedMessage: {
130434
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
130477
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
130435
130478
  message: string;
130436
130479
  id: string;
130437
130480
  url: string;
@@ -130643,7 +130686,7 @@ export declare const chatContract: {
130643
130686
  requestId: string;
130644
130687
  }, {
130645
130688
  data: {
130646
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
130689
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
130647
130690
  message: string;
130648
130691
  id: string;
130649
130692
  url: string;
@@ -131072,7 +131115,7 @@ export declare const chatContract: {
131072
131115
  previewUrl: string;
131073
131116
  imageSetId: string;
131074
131117
  repliedMessage: {
131075
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
131118
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
131076
131119
  message: string;
131077
131120
  id: string;
131078
131121
  url: string;
@@ -131407,7 +131450,7 @@ export declare const chatContract: {
131407
131450
  deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
131408
131451
  message: import("zod").ZodString;
131409
131452
  direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
131410
- type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started"]>;
131453
+ type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
131411
131454
  readAt: import("zod").ZodDate;
131412
131455
  metadata: import("zod").ZodAny;
131413
131456
  platformId: import("zod").ZodString;
@@ -133948,7 +133991,7 @@ export declare const chatContract: {
133948
133991
  deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
133949
133992
  message: import("zod").ZodString;
133950
133993
  direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
133951
- type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started"]>;
133994
+ type: import("zod").ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "unsupported"]>;
133952
133995
  readAt: import("zod").ZodDate;
133953
133996
  metadata: import("zod").ZodAny;
133954
133997
  platformId: import("zod").ZodString;
@@ -134606,7 +134649,7 @@ export declare const chatContract: {
134606
134649
  };
134607
134650
  }>;
134608
134651
  }, "strip", import("zod").ZodTypeAny, {
134609
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
134652
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
134610
134653
  message: string;
134611
134654
  id: string;
134612
134655
  url: string;
@@ -134768,7 +134811,7 @@ export declare const chatContract: {
134768
134811
  metadata?: any;
134769
134812
  template?: any;
134770
134813
  }, {
134771
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
134814
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
134772
134815
  message: string;
134773
134816
  id: string;
134774
134817
  url: string;
@@ -135543,7 +135586,7 @@ export declare const chatContract: {
135543
135586
  };
135544
135587
  }>;
135545
135588
  }, "strip", import("zod").ZodTypeAny, {
135546
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
135589
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
135547
135590
  message: string;
135548
135591
  id: string;
135549
135592
  url: string;
@@ -135972,7 +136015,7 @@ export declare const chatContract: {
135972
136015
  previewUrl: string;
135973
136016
  imageSetId: string;
135974
136017
  repliedMessage: {
135975
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
136018
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
135976
136019
  message: string;
135977
136020
  id: string;
135978
136021
  url: string;
@@ -136181,7 +136224,7 @@ export declare const chatContract: {
136181
136224
  metadata?: any;
136182
136225
  template?: any;
136183
136226
  }, {
136184
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
136227
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
136185
136228
  message: string;
136186
136229
  id: string;
136187
136230
  url: string;
@@ -136610,7 +136653,7 @@ export declare const chatContract: {
136610
136653
  previewUrl: string;
136611
136654
  imageSetId: string;
136612
136655
  repliedMessage: {
136613
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
136656
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
136614
136657
  message: string;
136615
136658
  id: string;
136616
136659
  url: string;
@@ -136821,7 +136864,7 @@ export declare const chatContract: {
136821
136864
  }>, "many">;
136822
136865
  }, "strip", import("zod").ZodTypeAny, {
136823
136866
  data: {
136824
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
136867
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
136825
136868
  message: string;
136826
136869
  id: string;
136827
136870
  url: string;
@@ -137250,7 +137293,7 @@ export declare const chatContract: {
137250
137293
  previewUrl: string;
137251
137294
  imageSetId: string;
137252
137295
  repliedMessage: {
137253
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
137296
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
137254
137297
  message: string;
137255
137298
  id: string;
137256
137299
  url: string;
@@ -137465,7 +137508,7 @@ export declare const chatContract: {
137465
137508
  requestId: string;
137466
137509
  }, {
137467
137510
  data: {
137468
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
137511
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
137469
137512
  message: string;
137470
137513
  id: string;
137471
137514
  url: string;
@@ -137894,7 +137937,7 @@ export declare const chatContract: {
137894
137937
  previewUrl: string;
137895
137938
  imageSetId: string;
137896
137939
  repliedMessage: {
137897
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started";
137940
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
137898
137941
  message: string;
137899
137942
  id: string;
137900
137943
  url: string;