@kl1/contracts 1.2.59-uat → 1.2.60-uat

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (38) hide show
  1. package/dist/api-contracts/src/channel/index.d.ts +791 -0
  2. package/dist/api-contracts/src/channel/index.d.ts.map +1 -1
  3. package/dist/api-contracts/src/chat/index.d.ts +285 -169
  4. package/dist/api-contracts/src/chat/index.d.ts.map +1 -1
  5. package/dist/api-contracts/src/chat/schema.d.ts +70 -45
  6. package/dist/api-contracts/src/chat/schema.d.ts.map +1 -1
  7. package/dist/api-contracts/src/chat/validation.d.ts +72 -56
  8. package/dist/api-contracts/src/chat/validation.d.ts.map +1 -1
  9. package/dist/api-contracts/src/contract.d.ts +2366 -639
  10. package/dist/api-contracts/src/contract.d.ts.map +1 -1
  11. package/dist/api-contracts/src/facebook-feed/index.d.ts +59 -43
  12. package/dist/api-contracts/src/facebook-feed/index.d.ts.map +1 -1
  13. package/dist/api-contracts/src/facebook-feed/schema.d.ts +3 -3
  14. package/dist/api-contracts/src/instagram/index.d.ts +49 -33
  15. package/dist/api-contracts/src/instagram/index.d.ts.map +1 -1
  16. package/dist/api-contracts/src/line/index.d.ts +54 -38
  17. package/dist/api-contracts/src/line/index.d.ts.map +1 -1
  18. package/dist/api-contracts/src/line/validation.d.ts +5 -5
  19. package/dist/api-contracts/src/messenger/index.d.ts +49 -33
  20. package/dist/api-contracts/src/messenger/index.d.ts.map +1 -1
  21. package/dist/api-contracts/src/sms/index.d.ts +5 -5
  22. package/dist/api-contracts/src/telegram/index.d.ts +49 -33
  23. package/dist/api-contracts/src/telegram/index.d.ts.map +1 -1
  24. package/dist/api-contracts/src/viber/index.d.ts +49 -33
  25. package/dist/api-contracts/src/viber/index.d.ts.map +1 -1
  26. package/dist/api-contracts/src/webchat/index.d.ts +49 -33
  27. package/dist/api-contracts/src/webchat/index.d.ts.map +1 -1
  28. package/dist/api-contracts/src/whatsapp/index.d.ts +49 -33
  29. package/dist/api-contracts/src/whatsapp/index.d.ts.map +1 -1
  30. package/dist/api-contracts/src/workflow-rule/index.d.ts +29 -12
  31. package/dist/api-contracts/src/workflow-rule/index.d.ts.map +1 -1
  32. package/dist/entities/src/enums/chat.d.ts +12 -0
  33. package/dist/entities/src/enums/chat.d.ts.map +1 -1
  34. package/dist/index.js +19 -0
  35. package/dist/index.js.map +1 -1
  36. package/dist/index.mjs +19 -0
  37. package/dist/index.mjs.map +1 -1
  38. package/package.json +1 -1
@@ -3760,7 +3760,7 @@ export declare const smsContract: {
3760
3760
  id: z.ZodOptional<z.ZodString>;
3761
3761
  message: z.ZodOptional<z.ZodString>;
3762
3762
  direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
3763
- type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
3763
+ type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "csat", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
3764
3764
  readAt: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodString]>>>;
3765
3765
  metadata: z.ZodOptional<z.ZodAny>;
3766
3766
  platformId: z.ZodOptional<z.ZodString>;
@@ -3816,7 +3816,7 @@ export declare const smsContract: {
3816
3816
  editedAt: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodString]>>>;
3817
3817
  label: z.ZodOptional<z.ZodString>;
3818
3818
  }, "strip", z.ZodTypeAny, {
3819
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
3819
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
3820
3820
  direction: "incoming" | "outgoing" | "system";
3821
3821
  id?: string | undefined;
3822
3822
  message?: string | undefined;
@@ -3851,7 +3851,7 @@ export declare const smsContract: {
3851
3851
  editedAt?: string | Date | null | undefined;
3852
3852
  label?: string | undefined;
3853
3853
  }, {
3854
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
3854
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
3855
3855
  direction: "incoming" | "outgoing" | "system";
3856
3856
  id?: string | undefined;
3857
3857
  message?: string | undefined;
@@ -3888,7 +3888,7 @@ export declare const smsContract: {
3888
3888
  }>;
3889
3889
  }, "strip", z.ZodTypeAny, {
3890
3890
  message: {
3891
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
3891
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
3892
3892
  direction: "incoming" | "outgoing" | "system";
3893
3893
  id?: string | undefined;
3894
3894
  message?: string | undefined;
@@ -4018,7 +4018,7 @@ export declare const smsContract: {
4018
4018
  isBot: boolean | null;
4019
4019
  }, {
4020
4020
  message: {
4021
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
4021
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
4022
4022
  direction: "incoming" | "outgoing" | "system";
4023
4023
  id?: string | undefined;
4024
4024
  message?: string | undefined;
@@ -1760,7 +1760,7 @@ export declare const telegramContract: {
1760
1760
  id: z.ZodOptional<z.ZodString>;
1761
1761
  message: z.ZodOptional<z.ZodString>;
1762
1762
  direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
1763
- type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
1763
+ type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "csat", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
1764
1764
  readAt: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodString]>>>;
1765
1765
  metadata: z.ZodOptional<z.ZodAny>;
1766
1766
  platformId: z.ZodOptional<z.ZodString>;
@@ -1816,7 +1816,7 @@ export declare const telegramContract: {
1816
1816
  editedAt: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodString]>>>;
1817
1817
  label: z.ZodOptional<z.ZodString>;
1818
1818
  }, "strip", z.ZodTypeAny, {
1819
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
1819
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
1820
1820
  direction: "incoming" | "outgoing" | "system";
1821
1821
  id?: string | undefined;
1822
1822
  message?: string | undefined;
@@ -1851,7 +1851,7 @@ export declare const telegramContract: {
1851
1851
  editedAt?: string | Date | null | undefined;
1852
1852
  label?: string | undefined;
1853
1853
  }, {
1854
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
1854
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
1855
1855
  direction: "incoming" | "outgoing" | "system";
1856
1856
  id?: string | undefined;
1857
1857
  message?: string | undefined;
@@ -1888,7 +1888,7 @@ export declare const telegramContract: {
1888
1888
  }>;
1889
1889
  }, "strip", z.ZodTypeAny, {
1890
1890
  message: {
1891
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
1891
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
1892
1892
  direction: "incoming" | "outgoing" | "system";
1893
1893
  id?: string | undefined;
1894
1894
  message?: string | undefined;
@@ -2018,7 +2018,7 @@ export declare const telegramContract: {
2018
2018
  isBot: boolean | null;
2019
2019
  }, {
2020
2020
  message: {
2021
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
2021
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
2022
2022
  direction: "incoming" | "outgoing" | "system";
2023
2023
  id?: string | undefined;
2024
2024
  message?: string | undefined;
@@ -2152,7 +2152,7 @@ export declare const telegramContract: {
2152
2152
  200: z.ZodObject<{
2153
2153
  requestId: z.ZodString;
2154
2154
  data: z.ZodObject<{
2155
- type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
2155
+ type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "csat", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
2156
2156
  message: z.ZodString;
2157
2157
  id: z.ZodString;
2158
2158
  url: z.ZodString;
@@ -3669,6 +3669,7 @@ export declare const telegramContract: {
3669
3669
  channelId: string;
3670
3670
  socialPlatformId: string;
3671
3671
  }>;
3672
+ csatStatus: z.ZodNullable<z.ZodString>;
3672
3673
  actor: z.ZodObject<{
3673
3674
  id: z.ZodString;
3674
3675
  createdAt: z.ZodDate;
@@ -5511,6 +5512,7 @@ export declare const telegramContract: {
5511
5512
  closedAt: Date;
5512
5513
  lastMessageAt: Date | null;
5513
5514
  isBotRoom: boolean;
5515
+ csatStatus: string | null;
5514
5516
  cxlog: {
5515
5517
  id: string;
5516
5518
  channel: string | null;
@@ -5938,6 +5940,7 @@ export declare const telegramContract: {
5938
5940
  closedAt: Date;
5939
5941
  lastMessageAt: Date | null;
5940
5942
  isBotRoom: boolean;
5943
+ csatStatus: string | null;
5941
5944
  cxlog: {
5942
5945
  id: string;
5943
5946
  channel: string | null;
@@ -6078,7 +6081,7 @@ export declare const telegramContract: {
6078
6081
  deletedAt: z.ZodNullable<z.ZodDate>;
6079
6082
  message: z.ZodString;
6080
6083
  direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
6081
- type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
6084
+ type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "csat", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
6082
6085
  readAt: z.ZodDate;
6083
6086
  metadata: z.ZodAny;
6084
6087
  platformId: z.ZodString;
@@ -6736,7 +6739,7 @@ export declare const telegramContract: {
6736
6739
  };
6737
6740
  }>;
6738
6741
  }, "strip", z.ZodTypeAny, {
6739
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
6742
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
6740
6743
  message: string;
6741
6744
  id: string;
6742
6745
  url: string;
@@ -6898,7 +6901,7 @@ export declare const telegramContract: {
6898
6901
  metadata?: any;
6899
6902
  template?: any;
6900
6903
  }, {
6901
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
6904
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
6902
6905
  message: string;
6903
6906
  id: string;
6904
6907
  url: string;
@@ -7272,7 +7275,7 @@ export declare const telegramContract: {
7272
7275
  deletedAt: z.ZodNullable<z.ZodDate>;
7273
7276
  message: z.ZodString;
7274
7277
  direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
7275
- type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
7278
+ type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "csat", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
7276
7279
  readAt: z.ZodDate;
7277
7280
  metadata: z.ZodAny;
7278
7281
  platformId: z.ZodString;
@@ -8346,6 +8349,7 @@ export declare const telegramContract: {
8346
8349
  channelId: string;
8347
8350
  socialPlatformId: string;
8348
8351
  }>;
8352
+ csatStatus: z.ZodNullable<z.ZodString>;
8349
8353
  actor: z.ZodObject<{
8350
8354
  id: z.ZodString;
8351
8355
  createdAt: z.ZodDate;
@@ -10188,6 +10192,7 @@ export declare const telegramContract: {
10188
10192
  closedAt: Date;
10189
10193
  lastMessageAt: Date | null;
10190
10194
  isBotRoom: boolean;
10195
+ csatStatus: string | null;
10191
10196
  cxlog: {
10192
10197
  id: string;
10193
10198
  channel: string | null;
@@ -10615,6 +10620,7 @@ export declare const telegramContract: {
10615
10620
  closedAt: Date;
10616
10621
  lastMessageAt: Date | null;
10617
10622
  isBotRoom: boolean;
10623
+ csatStatus: string | null;
10618
10624
  cxlog: {
10619
10625
  id: string;
10620
10626
  channel: string | null;
@@ -10758,7 +10764,7 @@ export declare const telegramContract: {
10758
10764
  deletedAt: z.ZodNullable<z.ZodDate>;
10759
10765
  message: z.ZodString;
10760
10766
  direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
10761
- type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
10767
+ type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "csat", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
10762
10768
  readAt: z.ZodDate;
10763
10769
  metadata: z.ZodAny;
10764
10770
  platformId: z.ZodString;
@@ -11416,7 +11422,7 @@ export declare const telegramContract: {
11416
11422
  };
11417
11423
  }>;
11418
11424
  }, "strip", z.ZodTypeAny, {
11419
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
11425
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
11420
11426
  message: string;
11421
11427
  id: string;
11422
11428
  url: string;
@@ -11578,7 +11584,7 @@ export declare const telegramContract: {
11578
11584
  metadata?: any;
11579
11585
  template?: any;
11580
11586
  }, {
11581
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
11587
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
11582
11588
  message: string;
11583
11589
  id: string;
11584
11590
  url: string;
@@ -12380,7 +12386,7 @@ export declare const telegramContract: {
12380
12386
  editedMessageid: z.ZodString;
12381
12387
  label: z.ZodOptional<z.ZodString>;
12382
12388
  }, "strip", z.ZodTypeAny, {
12383
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
12389
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
12384
12390
  message: string;
12385
12391
  id: string;
12386
12392
  url: string;
@@ -12815,6 +12821,7 @@ export declare const telegramContract: {
12815
12821
  closedAt: Date;
12816
12822
  lastMessageAt: Date | null;
12817
12823
  isBotRoom: boolean;
12824
+ csatStatus: string | null;
12818
12825
  cxlog: {
12819
12826
  id: string;
12820
12827
  channel: string | null;
@@ -12933,7 +12940,7 @@ export declare const telegramContract: {
12933
12940
  previewUrl: string;
12934
12941
  imageSetId: string;
12935
12942
  repliedMessage: {
12936
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
12943
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
12937
12944
  message: string;
12938
12945
  id: string;
12939
12946
  url: string;
@@ -13144,7 +13151,7 @@ export declare const telegramContract: {
13144
13151
  template?: any;
13145
13152
  label?: string | undefined;
13146
13153
  }, {
13147
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
13154
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
13148
13155
  message: string;
13149
13156
  id: string;
13150
13157
  url: string;
@@ -13579,6 +13586,7 @@ export declare const telegramContract: {
13579
13586
  closedAt: Date;
13580
13587
  lastMessageAt: Date | null;
13581
13588
  isBotRoom: boolean;
13589
+ csatStatus: string | null;
13582
13590
  cxlog: {
13583
13591
  id: string;
13584
13592
  channel: string | null;
@@ -13697,7 +13705,7 @@ export declare const telegramContract: {
13697
13705
  previewUrl: string;
13698
13706
  imageSetId: string;
13699
13707
  repliedMessage: {
13700
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
13708
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
13701
13709
  message: string;
13702
13710
  id: string;
13703
13711
  url: string;
@@ -13909,7 +13917,7 @@ export declare const telegramContract: {
13909
13917
  label?: string | undefined;
13910
13918
  }>>>;
13911
13919
  }, "strip", z.ZodTypeAny, {
13912
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
13920
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
13913
13921
  message: string;
13914
13922
  id: string;
13915
13923
  url: string;
@@ -14344,6 +14352,7 @@ export declare const telegramContract: {
14344
14352
  closedAt: Date;
14345
14353
  lastMessageAt: Date | null;
14346
14354
  isBotRoom: boolean;
14355
+ csatStatus: string | null;
14347
14356
  cxlog: {
14348
14357
  id: string;
14349
14358
  channel: string | null;
@@ -14462,7 +14471,7 @@ export declare const telegramContract: {
14462
14471
  previewUrl: string;
14463
14472
  imageSetId: string;
14464
14473
  repliedMessage: {
14465
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
14474
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
14466
14475
  message: string;
14467
14476
  id: string;
14468
14477
  url: string;
@@ -14673,7 +14682,7 @@ export declare const telegramContract: {
14673
14682
  template?: any;
14674
14683
  metadata?: any;
14675
14684
  fromMessage?: {
14676
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
14685
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
14677
14686
  message: string;
14678
14687
  id: string;
14679
14688
  url: string;
@@ -15108,6 +15117,7 @@ export declare const telegramContract: {
15108
15117
  closedAt: Date;
15109
15118
  lastMessageAt: Date | null;
15110
15119
  isBotRoom: boolean;
15120
+ csatStatus: string | null;
15111
15121
  cxlog: {
15112
15122
  id: string;
15113
15123
  channel: string | null;
@@ -15226,7 +15236,7 @@ export declare const telegramContract: {
15226
15236
  previewUrl: string;
15227
15237
  imageSetId: string;
15228
15238
  repliedMessage: {
15229
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
15239
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
15230
15240
  message: string;
15231
15241
  id: string;
15232
15242
  url: string;
@@ -15438,7 +15448,7 @@ export declare const telegramContract: {
15438
15448
  label?: string | undefined;
15439
15449
  } | null | undefined;
15440
15450
  }, {
15441
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
15451
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
15442
15452
  message: string;
15443
15453
  id: string;
15444
15454
  url: string;
@@ -15873,6 +15883,7 @@ export declare const telegramContract: {
15873
15883
  closedAt: Date;
15874
15884
  lastMessageAt: Date | null;
15875
15885
  isBotRoom: boolean;
15886
+ csatStatus: string | null;
15876
15887
  cxlog: {
15877
15888
  id: string;
15878
15889
  channel: string | null;
@@ -15991,7 +16002,7 @@ export declare const telegramContract: {
15991
16002
  previewUrl: string;
15992
16003
  imageSetId: string;
15993
16004
  repliedMessage: {
15994
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
16005
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
15995
16006
  message: string;
15996
16007
  id: string;
15997
16008
  url: string;
@@ -16202,7 +16213,7 @@ export declare const telegramContract: {
16202
16213
  template?: any;
16203
16214
  metadata?: any;
16204
16215
  fromMessage?: {
16205
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
16216
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
16206
16217
  message: string;
16207
16218
  id: string;
16208
16219
  url: string;
@@ -16637,6 +16648,7 @@ export declare const telegramContract: {
16637
16648
  closedAt: Date;
16638
16649
  lastMessageAt: Date | null;
16639
16650
  isBotRoom: boolean;
16651
+ csatStatus: string | null;
16640
16652
  cxlog: {
16641
16653
  id: string;
16642
16654
  channel: string | null;
@@ -16755,7 +16767,7 @@ export declare const telegramContract: {
16755
16767
  previewUrl: string;
16756
16768
  imageSetId: string;
16757
16769
  repliedMessage: {
16758
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
16770
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
16759
16771
  message: string;
16760
16772
  id: string;
16761
16773
  url: string;
@@ -16969,7 +16981,7 @@ export declare const telegramContract: {
16969
16981
  }>;
16970
16982
  }, "strip", z.ZodTypeAny, {
16971
16983
  data: {
16972
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
16984
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
16973
16985
  message: string;
16974
16986
  id: string;
16975
16987
  url: string;
@@ -17404,6 +17416,7 @@ export declare const telegramContract: {
17404
17416
  closedAt: Date;
17405
17417
  lastMessageAt: Date | null;
17406
17418
  isBotRoom: boolean;
17419
+ csatStatus: string | null;
17407
17420
  cxlog: {
17408
17421
  id: string;
17409
17422
  channel: string | null;
@@ -17522,7 +17535,7 @@ export declare const telegramContract: {
17522
17535
  previewUrl: string;
17523
17536
  imageSetId: string;
17524
17537
  repliedMessage: {
17525
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
17538
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
17526
17539
  message: string;
17527
17540
  id: string;
17528
17541
  url: string;
@@ -17733,7 +17746,7 @@ export declare const telegramContract: {
17733
17746
  template?: any;
17734
17747
  metadata?: any;
17735
17748
  fromMessage?: {
17736
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
17749
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
17737
17750
  message: string;
17738
17751
  id: string;
17739
17752
  url: string;
@@ -18168,6 +18181,7 @@ export declare const telegramContract: {
18168
18181
  closedAt: Date;
18169
18182
  lastMessageAt: Date | null;
18170
18183
  isBotRoom: boolean;
18184
+ csatStatus: string | null;
18171
18185
  cxlog: {
18172
18186
  id: string;
18173
18187
  channel: string | null;
@@ -18286,7 +18300,7 @@ export declare const telegramContract: {
18286
18300
  previewUrl: string;
18287
18301
  imageSetId: string;
18288
18302
  repliedMessage: {
18289
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
18303
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
18290
18304
  message: string;
18291
18305
  id: string;
18292
18306
  url: string;
@@ -18501,7 +18515,7 @@ export declare const telegramContract: {
18501
18515
  requestId: string;
18502
18516
  }, {
18503
18517
  data: {
18504
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
18518
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
18505
18519
  message: string;
18506
18520
  id: string;
18507
18521
  url: string;
@@ -18936,6 +18950,7 @@ export declare const telegramContract: {
18936
18950
  closedAt: Date;
18937
18951
  lastMessageAt: Date | null;
18938
18952
  isBotRoom: boolean;
18953
+ csatStatus: string | null;
18939
18954
  cxlog: {
18940
18955
  id: string;
18941
18956
  channel: string | null;
@@ -19054,7 +19069,7 @@ export declare const telegramContract: {
19054
19069
  previewUrl: string;
19055
19070
  imageSetId: string;
19056
19071
  repliedMessage: {
19057
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
19072
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
19058
19073
  message: string;
19059
19074
  id: string;
19060
19075
  url: string;
@@ -19265,7 +19280,7 @@ export declare const telegramContract: {
19265
19280
  template?: any;
19266
19281
  metadata?: any;
19267
19282
  fromMessage?: {
19268
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
19283
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
19269
19284
  message: string;
19270
19285
  id: string;
19271
19286
  url: string;
@@ -19700,6 +19715,7 @@ export declare const telegramContract: {
19700
19715
  closedAt: Date;
19701
19716
  lastMessageAt: Date | null;
19702
19717
  isBotRoom: boolean;
19718
+ csatStatus: string | null;
19703
19719
  cxlog: {
19704
19720
  id: string;
19705
19721
  channel: string | null;
@@ -19818,7 +19834,7 @@ export declare const telegramContract: {
19818
19834
  previewUrl: string;
19819
19835
  imageSetId: string;
19820
19836
  repliedMessage: {
19821
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
19837
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
19822
19838
  message: string;
19823
19839
  id: string;
19824
19840
  url: string;