@kl1/contracts 1.2.60-uat → 1.2.62-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.
- package/dist/api-contracts/src/channel/index.d.ts +2629 -2687
- package/dist/api-contracts/src/channel/index.d.ts.map +1 -1
- package/dist/api-contracts/src/channel/validation.d.ts +10 -0
- package/dist/api-contracts/src/channel/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/index.d.ts +189 -285
- package/dist/api-contracts/src/chat/index.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/schema.d.ts +45 -70
- package/dist/api-contracts/src/chat/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/validation.d.ts +72 -72
- package/dist/api-contracts/src/chat/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/contract.d.ts +3632 -4224
- package/dist/api-contracts/src/contract.d.ts.map +1 -1
- package/dist/api-contracts/src/dashboard/index.d.ts +1 -290
- package/dist/api-contracts/src/dashboard/index.d.ts.map +1 -1
- package/dist/api-contracts/src/dashboard/schema.d.ts +0 -71
- package/dist/api-contracts/src/dashboard/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/facebook-feed/index.d.ts +43 -59
- package/dist/api-contracts/src/facebook-feed/index.d.ts.map +1 -1
- package/dist/api-contracts/src/facebook-feed/schema.d.ts +3 -3
- package/dist/api-contracts/src/instagram/index.d.ts +33 -49
- package/dist/api-contracts/src/instagram/index.d.ts.map +1 -1
- package/dist/api-contracts/src/line/index.d.ts +40 -56
- package/dist/api-contracts/src/line/index.d.ts.map +1 -1
- package/dist/api-contracts/src/line/validation.d.ts +5 -5
- package/dist/api-contracts/src/messenger/index.d.ts +33 -49
- package/dist/api-contracts/src/messenger/index.d.ts.map +1 -1
- package/dist/api-contracts/src/sms/index.d.ts +5 -5
- package/dist/api-contracts/src/telegram/index.d.ts +33 -49
- package/dist/api-contracts/src/telegram/index.d.ts.map +1 -1
- package/dist/api-contracts/src/viber/index.d.ts +33 -49
- package/dist/api-contracts/src/viber/index.d.ts.map +1 -1
- package/dist/api-contracts/src/webchat/index.d.ts +33 -49
- package/dist/api-contracts/src/webchat/index.d.ts.map +1 -1
- package/dist/api-contracts/src/whatsapp/index.d.ts +39 -96
- package/dist/api-contracts/src/whatsapp/index.d.ts.map +1 -1
- package/dist/api-contracts/src/whatsapp/validation.d.ts +3 -3
- package/dist/api-contracts/src/workflow-rule/index.d.ts +12 -29
- package/dist/api-contracts/src/workflow-rule/index.d.ts.map +1 -1
- package/dist/entities/src/enums/chat.d.ts +0 -12
- package/dist/entities/src/enums/chat.d.ts.map +1 -1
- package/dist/index.js +39 -137
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +39 -137
- package/dist/index.mjs.map +1 -1
- 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", "
|
|
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"]>;
|
|
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" | "
|
|
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";
|
|
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" | "
|
|
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";
|
|
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" | "
|
|
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";
|
|
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" | "
|
|
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";
|
|
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", "
|
|
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"]>;
|
|
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" | "
|
|
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";
|
|
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" | "
|
|
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";
|
|
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" | "
|
|
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";
|
|
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" | "
|
|
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";
|
|
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", "
|
|
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"]>;
|
|
2156
2156
|
message: z.ZodString;
|
|
2157
2157
|
id: z.ZodString;
|
|
2158
2158
|
url: z.ZodString;
|
|
@@ -3669,7 +3669,6 @@ export declare const telegramContract: {
|
|
|
3669
3669
|
channelId: string;
|
|
3670
3670
|
socialPlatformId: string;
|
|
3671
3671
|
}>;
|
|
3672
|
-
csatStatus: z.ZodNullable<z.ZodString>;
|
|
3673
3672
|
actor: z.ZodObject<{
|
|
3674
3673
|
id: z.ZodString;
|
|
3675
3674
|
createdAt: z.ZodDate;
|
|
@@ -5512,7 +5511,6 @@ export declare const telegramContract: {
|
|
|
5512
5511
|
closedAt: Date;
|
|
5513
5512
|
lastMessageAt: Date | null;
|
|
5514
5513
|
isBotRoom: boolean;
|
|
5515
|
-
csatStatus: string | null;
|
|
5516
5514
|
cxlog: {
|
|
5517
5515
|
id: string;
|
|
5518
5516
|
channel: string | null;
|
|
@@ -5940,7 +5938,6 @@ export declare const telegramContract: {
|
|
|
5940
5938
|
closedAt: Date;
|
|
5941
5939
|
lastMessageAt: Date | null;
|
|
5942
5940
|
isBotRoom: boolean;
|
|
5943
|
-
csatStatus: string | null;
|
|
5944
5941
|
cxlog: {
|
|
5945
5942
|
id: string;
|
|
5946
5943
|
channel: string | null;
|
|
@@ -6081,7 +6078,7 @@ export declare const telegramContract: {
|
|
|
6081
6078
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
6082
6079
|
message: z.ZodString;
|
|
6083
6080
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
|
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", "
|
|
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"]>;
|
|
6085
6082
|
readAt: z.ZodDate;
|
|
6086
6083
|
metadata: z.ZodAny;
|
|
6087
6084
|
platformId: z.ZodString;
|
|
@@ -6739,7 +6736,7 @@ export declare const telegramContract: {
|
|
|
6739
6736
|
};
|
|
6740
6737
|
}>;
|
|
6741
6738
|
}, "strip", z.ZodTypeAny, {
|
|
6742
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "
|
|
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";
|
|
6743
6740
|
message: string;
|
|
6744
6741
|
id: string;
|
|
6745
6742
|
url: string;
|
|
@@ -6901,7 +6898,7 @@ export declare const telegramContract: {
|
|
|
6901
6898
|
metadata?: any;
|
|
6902
6899
|
template?: any;
|
|
6903
6900
|
}, {
|
|
6904
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "
|
|
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";
|
|
6905
6902
|
message: string;
|
|
6906
6903
|
id: string;
|
|
6907
6904
|
url: string;
|
|
@@ -7275,7 +7272,7 @@ export declare const telegramContract: {
|
|
|
7275
7272
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
7276
7273
|
message: z.ZodString;
|
|
7277
7274
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
|
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", "
|
|
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"]>;
|
|
7279
7276
|
readAt: z.ZodDate;
|
|
7280
7277
|
metadata: z.ZodAny;
|
|
7281
7278
|
platformId: z.ZodString;
|
|
@@ -8349,7 +8346,6 @@ export declare const telegramContract: {
|
|
|
8349
8346
|
channelId: string;
|
|
8350
8347
|
socialPlatformId: string;
|
|
8351
8348
|
}>;
|
|
8352
|
-
csatStatus: z.ZodNullable<z.ZodString>;
|
|
8353
8349
|
actor: z.ZodObject<{
|
|
8354
8350
|
id: z.ZodString;
|
|
8355
8351
|
createdAt: z.ZodDate;
|
|
@@ -10192,7 +10188,6 @@ export declare const telegramContract: {
|
|
|
10192
10188
|
closedAt: Date;
|
|
10193
10189
|
lastMessageAt: Date | null;
|
|
10194
10190
|
isBotRoom: boolean;
|
|
10195
|
-
csatStatus: string | null;
|
|
10196
10191
|
cxlog: {
|
|
10197
10192
|
id: string;
|
|
10198
10193
|
channel: string | null;
|
|
@@ -10620,7 +10615,6 @@ export declare const telegramContract: {
|
|
|
10620
10615
|
closedAt: Date;
|
|
10621
10616
|
lastMessageAt: Date | null;
|
|
10622
10617
|
isBotRoom: boolean;
|
|
10623
|
-
csatStatus: string | null;
|
|
10624
10618
|
cxlog: {
|
|
10625
10619
|
id: string;
|
|
10626
10620
|
channel: string | null;
|
|
@@ -10764,7 +10758,7 @@ export declare const telegramContract: {
|
|
|
10764
10758
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
10765
10759
|
message: z.ZodString;
|
|
10766
10760
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
|
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", "
|
|
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"]>;
|
|
10768
10762
|
readAt: z.ZodDate;
|
|
10769
10763
|
metadata: z.ZodAny;
|
|
10770
10764
|
platformId: z.ZodString;
|
|
@@ -11422,7 +11416,7 @@ export declare const telegramContract: {
|
|
|
11422
11416
|
};
|
|
11423
11417
|
}>;
|
|
11424
11418
|
}, "strip", z.ZodTypeAny, {
|
|
11425
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "
|
|
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";
|
|
11426
11420
|
message: string;
|
|
11427
11421
|
id: string;
|
|
11428
11422
|
url: string;
|
|
@@ -11584,7 +11578,7 @@ export declare const telegramContract: {
|
|
|
11584
11578
|
metadata?: any;
|
|
11585
11579
|
template?: any;
|
|
11586
11580
|
}, {
|
|
11587
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "
|
|
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";
|
|
11588
11582
|
message: string;
|
|
11589
11583
|
id: string;
|
|
11590
11584
|
url: string;
|
|
@@ -12386,7 +12380,7 @@ export declare const telegramContract: {
|
|
|
12386
12380
|
editedMessageid: z.ZodString;
|
|
12387
12381
|
label: z.ZodOptional<z.ZodString>;
|
|
12388
12382
|
}, "strip", z.ZodTypeAny, {
|
|
12389
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "
|
|
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";
|
|
12390
12384
|
message: string;
|
|
12391
12385
|
id: string;
|
|
12392
12386
|
url: string;
|
|
@@ -12821,7 +12815,6 @@ export declare const telegramContract: {
|
|
|
12821
12815
|
closedAt: Date;
|
|
12822
12816
|
lastMessageAt: Date | null;
|
|
12823
12817
|
isBotRoom: boolean;
|
|
12824
|
-
csatStatus: string | null;
|
|
12825
12818
|
cxlog: {
|
|
12826
12819
|
id: string;
|
|
12827
12820
|
channel: string | null;
|
|
@@ -12940,7 +12933,7 @@ export declare const telegramContract: {
|
|
|
12940
12933
|
previewUrl: string;
|
|
12941
12934
|
imageSetId: string;
|
|
12942
12935
|
repliedMessage: {
|
|
12943
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "
|
|
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";
|
|
12944
12937
|
message: string;
|
|
12945
12938
|
id: string;
|
|
12946
12939
|
url: string;
|
|
@@ -13151,7 +13144,7 @@ export declare const telegramContract: {
|
|
|
13151
13144
|
template?: any;
|
|
13152
13145
|
label?: string | undefined;
|
|
13153
13146
|
}, {
|
|
13154
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "
|
|
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";
|
|
13155
13148
|
message: string;
|
|
13156
13149
|
id: string;
|
|
13157
13150
|
url: string;
|
|
@@ -13586,7 +13579,6 @@ export declare const telegramContract: {
|
|
|
13586
13579
|
closedAt: Date;
|
|
13587
13580
|
lastMessageAt: Date | null;
|
|
13588
13581
|
isBotRoom: boolean;
|
|
13589
|
-
csatStatus: string | null;
|
|
13590
13582
|
cxlog: {
|
|
13591
13583
|
id: string;
|
|
13592
13584
|
channel: string | null;
|
|
@@ -13705,7 +13697,7 @@ export declare const telegramContract: {
|
|
|
13705
13697
|
previewUrl: string;
|
|
13706
13698
|
imageSetId: string;
|
|
13707
13699
|
repliedMessage: {
|
|
13708
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "
|
|
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";
|
|
13709
13701
|
message: string;
|
|
13710
13702
|
id: string;
|
|
13711
13703
|
url: string;
|
|
@@ -13917,7 +13909,7 @@ export declare const telegramContract: {
|
|
|
13917
13909
|
label?: string | undefined;
|
|
13918
13910
|
}>>>;
|
|
13919
13911
|
}, "strip", z.ZodTypeAny, {
|
|
13920
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "
|
|
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";
|
|
13921
13913
|
message: string;
|
|
13922
13914
|
id: string;
|
|
13923
13915
|
url: string;
|
|
@@ -14352,7 +14344,6 @@ export declare const telegramContract: {
|
|
|
14352
14344
|
closedAt: Date;
|
|
14353
14345
|
lastMessageAt: Date | null;
|
|
14354
14346
|
isBotRoom: boolean;
|
|
14355
|
-
csatStatus: string | null;
|
|
14356
14347
|
cxlog: {
|
|
14357
14348
|
id: string;
|
|
14358
14349
|
channel: string | null;
|
|
@@ -14471,7 +14462,7 @@ export declare const telegramContract: {
|
|
|
14471
14462
|
previewUrl: string;
|
|
14472
14463
|
imageSetId: string;
|
|
14473
14464
|
repliedMessage: {
|
|
14474
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "
|
|
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";
|
|
14475
14466
|
message: string;
|
|
14476
14467
|
id: string;
|
|
14477
14468
|
url: string;
|
|
@@ -14682,7 +14673,7 @@ export declare const telegramContract: {
|
|
|
14682
14673
|
template?: any;
|
|
14683
14674
|
metadata?: any;
|
|
14684
14675
|
fromMessage?: {
|
|
14685
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "
|
|
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";
|
|
14686
14677
|
message: string;
|
|
14687
14678
|
id: string;
|
|
14688
14679
|
url: string;
|
|
@@ -15117,7 +15108,6 @@ export declare const telegramContract: {
|
|
|
15117
15108
|
closedAt: Date;
|
|
15118
15109
|
lastMessageAt: Date | null;
|
|
15119
15110
|
isBotRoom: boolean;
|
|
15120
|
-
csatStatus: string | null;
|
|
15121
15111
|
cxlog: {
|
|
15122
15112
|
id: string;
|
|
15123
15113
|
channel: string | null;
|
|
@@ -15236,7 +15226,7 @@ export declare const telegramContract: {
|
|
|
15236
15226
|
previewUrl: string;
|
|
15237
15227
|
imageSetId: string;
|
|
15238
15228
|
repliedMessage: {
|
|
15239
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "
|
|
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";
|
|
15240
15230
|
message: string;
|
|
15241
15231
|
id: string;
|
|
15242
15232
|
url: string;
|
|
@@ -15448,7 +15438,7 @@ export declare const telegramContract: {
|
|
|
15448
15438
|
label?: string | undefined;
|
|
15449
15439
|
} | null | undefined;
|
|
15450
15440
|
}, {
|
|
15451
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "
|
|
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";
|
|
15452
15442
|
message: string;
|
|
15453
15443
|
id: string;
|
|
15454
15444
|
url: string;
|
|
@@ -15883,7 +15873,6 @@ export declare const telegramContract: {
|
|
|
15883
15873
|
closedAt: Date;
|
|
15884
15874
|
lastMessageAt: Date | null;
|
|
15885
15875
|
isBotRoom: boolean;
|
|
15886
|
-
csatStatus: string | null;
|
|
15887
15876
|
cxlog: {
|
|
15888
15877
|
id: string;
|
|
15889
15878
|
channel: string | null;
|
|
@@ -16002,7 +15991,7 @@ export declare const telegramContract: {
|
|
|
16002
15991
|
previewUrl: string;
|
|
16003
15992
|
imageSetId: string;
|
|
16004
15993
|
repliedMessage: {
|
|
16005
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "
|
|
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";
|
|
16006
15995
|
message: string;
|
|
16007
15996
|
id: string;
|
|
16008
15997
|
url: string;
|
|
@@ -16213,7 +16202,7 @@ export declare const telegramContract: {
|
|
|
16213
16202
|
template?: any;
|
|
16214
16203
|
metadata?: any;
|
|
16215
16204
|
fromMessage?: {
|
|
16216
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "
|
|
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";
|
|
16217
16206
|
message: string;
|
|
16218
16207
|
id: string;
|
|
16219
16208
|
url: string;
|
|
@@ -16648,7 +16637,6 @@ export declare const telegramContract: {
|
|
|
16648
16637
|
closedAt: Date;
|
|
16649
16638
|
lastMessageAt: Date | null;
|
|
16650
16639
|
isBotRoom: boolean;
|
|
16651
|
-
csatStatus: string | null;
|
|
16652
16640
|
cxlog: {
|
|
16653
16641
|
id: string;
|
|
16654
16642
|
channel: string | null;
|
|
@@ -16767,7 +16755,7 @@ export declare const telegramContract: {
|
|
|
16767
16755
|
previewUrl: string;
|
|
16768
16756
|
imageSetId: string;
|
|
16769
16757
|
repliedMessage: {
|
|
16770
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "
|
|
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";
|
|
16771
16759
|
message: string;
|
|
16772
16760
|
id: string;
|
|
16773
16761
|
url: string;
|
|
@@ -16981,7 +16969,7 @@ export declare const telegramContract: {
|
|
|
16981
16969
|
}>;
|
|
16982
16970
|
}, "strip", z.ZodTypeAny, {
|
|
16983
16971
|
data: {
|
|
16984
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "
|
|
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";
|
|
16985
16973
|
message: string;
|
|
16986
16974
|
id: string;
|
|
16987
16975
|
url: string;
|
|
@@ -17416,7 +17404,6 @@ export declare const telegramContract: {
|
|
|
17416
17404
|
closedAt: Date;
|
|
17417
17405
|
lastMessageAt: Date | null;
|
|
17418
17406
|
isBotRoom: boolean;
|
|
17419
|
-
csatStatus: string | null;
|
|
17420
17407
|
cxlog: {
|
|
17421
17408
|
id: string;
|
|
17422
17409
|
channel: string | null;
|
|
@@ -17535,7 +17522,7 @@ export declare const telegramContract: {
|
|
|
17535
17522
|
previewUrl: string;
|
|
17536
17523
|
imageSetId: string;
|
|
17537
17524
|
repliedMessage: {
|
|
17538
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "
|
|
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";
|
|
17539
17526
|
message: string;
|
|
17540
17527
|
id: string;
|
|
17541
17528
|
url: string;
|
|
@@ -17746,7 +17733,7 @@ export declare const telegramContract: {
|
|
|
17746
17733
|
template?: any;
|
|
17747
17734
|
metadata?: any;
|
|
17748
17735
|
fromMessage?: {
|
|
17749
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "
|
|
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";
|
|
17750
17737
|
message: string;
|
|
17751
17738
|
id: string;
|
|
17752
17739
|
url: string;
|
|
@@ -18181,7 +18168,6 @@ export declare const telegramContract: {
|
|
|
18181
18168
|
closedAt: Date;
|
|
18182
18169
|
lastMessageAt: Date | null;
|
|
18183
18170
|
isBotRoom: boolean;
|
|
18184
|
-
csatStatus: string | null;
|
|
18185
18171
|
cxlog: {
|
|
18186
18172
|
id: string;
|
|
18187
18173
|
channel: string | null;
|
|
@@ -18300,7 +18286,7 @@ export declare const telegramContract: {
|
|
|
18300
18286
|
previewUrl: string;
|
|
18301
18287
|
imageSetId: string;
|
|
18302
18288
|
repliedMessage: {
|
|
18303
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "
|
|
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";
|
|
18304
18290
|
message: string;
|
|
18305
18291
|
id: string;
|
|
18306
18292
|
url: string;
|
|
@@ -18515,7 +18501,7 @@ export declare const telegramContract: {
|
|
|
18515
18501
|
requestId: string;
|
|
18516
18502
|
}, {
|
|
18517
18503
|
data: {
|
|
18518
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "
|
|
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";
|
|
18519
18505
|
message: string;
|
|
18520
18506
|
id: string;
|
|
18521
18507
|
url: string;
|
|
@@ -18950,7 +18936,6 @@ export declare const telegramContract: {
|
|
|
18950
18936
|
closedAt: Date;
|
|
18951
18937
|
lastMessageAt: Date | null;
|
|
18952
18938
|
isBotRoom: boolean;
|
|
18953
|
-
csatStatus: string | null;
|
|
18954
18939
|
cxlog: {
|
|
18955
18940
|
id: string;
|
|
18956
18941
|
channel: string | null;
|
|
@@ -19069,7 +19054,7 @@ export declare const telegramContract: {
|
|
|
19069
19054
|
previewUrl: string;
|
|
19070
19055
|
imageSetId: string;
|
|
19071
19056
|
repliedMessage: {
|
|
19072
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "
|
|
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";
|
|
19073
19058
|
message: string;
|
|
19074
19059
|
id: string;
|
|
19075
19060
|
url: string;
|
|
@@ -19280,7 +19265,7 @@ export declare const telegramContract: {
|
|
|
19280
19265
|
template?: any;
|
|
19281
19266
|
metadata?: any;
|
|
19282
19267
|
fromMessage?: {
|
|
19283
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "
|
|
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";
|
|
19284
19269
|
message: string;
|
|
19285
19270
|
id: string;
|
|
19286
19271
|
url: string;
|
|
@@ -19715,7 +19700,6 @@ export declare const telegramContract: {
|
|
|
19715
19700
|
closedAt: Date;
|
|
19716
19701
|
lastMessageAt: Date | null;
|
|
19717
19702
|
isBotRoom: boolean;
|
|
19718
|
-
csatStatus: string | null;
|
|
19719
19703
|
cxlog: {
|
|
19720
19704
|
id: string;
|
|
19721
19705
|
channel: string | null;
|
|
@@ -19834,7 +19818,7 @@ export declare const telegramContract: {
|
|
|
19834
19818
|
previewUrl: string;
|
|
19835
19819
|
imageSetId: string;
|
|
19836
19820
|
repliedMessage: {
|
|
19837
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "
|
|
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";
|
|
19838
19822
|
message: string;
|
|
19839
19823
|
id: string;
|
|
19840
19824
|
url: string;
|