@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.
- package/dist/api-contracts/src/channel/index.d.ts +791 -0
- package/dist/api-contracts/src/channel/index.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/index.d.ts +285 -169
- package/dist/api-contracts/src/chat/index.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/schema.d.ts +70 -45
- package/dist/api-contracts/src/chat/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/validation.d.ts +72 -56
- package/dist/api-contracts/src/chat/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/contract.d.ts +2366 -639
- package/dist/api-contracts/src/contract.d.ts.map +1 -1
- package/dist/api-contracts/src/facebook-feed/index.d.ts +59 -43
- 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 +49 -33
- package/dist/api-contracts/src/instagram/index.d.ts.map +1 -1
- package/dist/api-contracts/src/line/index.d.ts +54 -38
- 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 +49 -33
- 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 +49 -33
- package/dist/api-contracts/src/telegram/index.d.ts.map +1 -1
- package/dist/api-contracts/src/viber/index.d.ts +49 -33
- package/dist/api-contracts/src/viber/index.d.ts.map +1 -1
- package/dist/api-contracts/src/webchat/index.d.ts +49 -33
- package/dist/api-contracts/src/webchat/index.d.ts.map +1 -1
- package/dist/api-contracts/src/whatsapp/index.d.ts +49 -33
- package/dist/api-contracts/src/whatsapp/index.d.ts.map +1 -1
- package/dist/api-contracts/src/workflow-rule/index.d.ts +29 -12
- package/dist/api-contracts/src/workflow-rule/index.d.ts.map +1 -1
- package/dist/entities/src/enums/chat.d.ts +12 -0
- package/dist/entities/src/enums/chat.d.ts.map +1 -1
- package/dist/index.js +19 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +19 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -40,7 +40,7 @@ export declare const receiveMessageContract: {
|
|
|
40
40
|
deletedAt: z.ZodNullable<z.ZodString>;
|
|
41
41
|
message: z.ZodOptional<z.ZodString>;
|
|
42
42
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
|
43
|
-
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"]>;
|
|
43
|
+
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"]>;
|
|
44
44
|
metadata: z.ZodAny;
|
|
45
45
|
platformId: z.ZodString;
|
|
46
46
|
platformMessageId: z.ZodString;
|
|
@@ -3539,7 +3539,7 @@ export declare const receiveMessageContract: {
|
|
|
3539
3539
|
}>>>;
|
|
3540
3540
|
label: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3541
3541
|
}, "strip", z.ZodTypeAny, {
|
|
3542
|
-
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";
|
|
3542
|
+
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";
|
|
3543
3543
|
id: string;
|
|
3544
3544
|
direction: "incoming" | "outgoing" | "system";
|
|
3545
3545
|
createdAt: string;
|
|
@@ -4054,7 +4054,7 @@ export declare const receiveMessageContract: {
|
|
|
4054
4054
|
} | null | undefined;
|
|
4055
4055
|
label?: string | null | undefined;
|
|
4056
4056
|
}, {
|
|
4057
|
-
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";
|
|
4057
|
+
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";
|
|
4058
4058
|
id: string;
|
|
4059
4059
|
direction: "incoming" | "outgoing" | "system";
|
|
4060
4060
|
createdAt: string;
|
|
@@ -4571,7 +4571,7 @@ export declare const receiveMessageContract: {
|
|
|
4571
4571
|
}>;
|
|
4572
4572
|
}, "strip", z.ZodTypeAny, {
|
|
4573
4573
|
message: {
|
|
4574
|
-
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";
|
|
4574
|
+
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";
|
|
4575
4575
|
id: string;
|
|
4576
4576
|
direction: "incoming" | "outgoing" | "system";
|
|
4577
4577
|
createdAt: string;
|
|
@@ -5088,7 +5088,7 @@ export declare const receiveMessageContract: {
|
|
|
5088
5088
|
};
|
|
5089
5089
|
}, {
|
|
5090
5090
|
message: {
|
|
5091
|
-
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";
|
|
5091
|
+
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";
|
|
5092
5092
|
id: string;
|
|
5093
5093
|
direction: "incoming" | "outgoing" | "system";
|
|
5094
5094
|
createdAt: string;
|
|
@@ -5652,7 +5652,7 @@ export declare const mainFeedContract: {
|
|
|
5652
5652
|
updatedAt: z.ZodDate;
|
|
5653
5653
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
5654
5654
|
message: z.ZodNullable<z.ZodString>;
|
|
5655
|
-
type: z.ZodUnion<[z.ZodEnum<["text", "added_photos", "added_video", "shared_story", "mobile_status_update", "no_data"]>, 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"]>]>;
|
|
5655
|
+
type: z.ZodUnion<[z.ZodEnum<["text", "added_photos", "added_video", "shared_story", "mobile_status_update", "no_data"]>, 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"]>]>;
|
|
5656
5656
|
metadata: z.ZodAny;
|
|
5657
5657
|
platformId: z.ZodString;
|
|
5658
5658
|
platformMessageId: z.ZodString;
|
|
@@ -7460,7 +7460,7 @@ export declare const mainFeedContract: {
|
|
|
7460
7460
|
}>;
|
|
7461
7461
|
permalinkURL: z.ZodString;
|
|
7462
7462
|
}, "strip", z.ZodTypeAny, {
|
|
7463
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "added_photos" | "added_video" | "shared_story" | "mobile_status_update" | "no_data" | "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";
|
|
7463
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "added_photos" | "added_video" | "shared_story" | "mobile_status_update" | "no_data" | "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";
|
|
7464
7464
|
message: string | null;
|
|
7465
7465
|
id: string;
|
|
7466
7466
|
channel: {
|
|
@@ -7741,7 +7741,7 @@ export declare const mainFeedContract: {
|
|
|
7741
7741
|
metadata?: any;
|
|
7742
7742
|
template?: any;
|
|
7743
7743
|
}, {
|
|
7744
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "added_photos" | "added_video" | "shared_story" | "mobile_status_update" | "no_data" | "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";
|
|
7744
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "added_photos" | "added_video" | "shared_story" | "mobile_status_update" | "no_data" | "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";
|
|
7745
7745
|
message: string | null;
|
|
7746
7746
|
id: string;
|
|
7747
7747
|
channel: {
|
|
@@ -8024,7 +8024,7 @@ export declare const mainFeedContract: {
|
|
|
8024
8024
|
}>;
|
|
8025
8025
|
}, "strip", z.ZodTypeAny, {
|
|
8026
8026
|
data: {
|
|
8027
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "added_photos" | "added_video" | "shared_story" | "mobile_status_update" | "no_data" | "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";
|
|
8027
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "added_photos" | "added_video" | "shared_story" | "mobile_status_update" | "no_data" | "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";
|
|
8028
8028
|
message: string | null;
|
|
8029
8029
|
id: string;
|
|
8030
8030
|
channel: {
|
|
@@ -8308,7 +8308,7 @@ export declare const mainFeedContract: {
|
|
|
8308
8308
|
requestId: string;
|
|
8309
8309
|
}, {
|
|
8310
8310
|
data: {
|
|
8311
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "added_photos" | "added_video" | "shared_story" | "mobile_status_update" | "no_data" | "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";
|
|
8311
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "added_photos" | "added_video" | "shared_story" | "mobile_status_update" | "no_data" | "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";
|
|
8312
8312
|
message: string | null;
|
|
8313
8313
|
id: string;
|
|
8314
8314
|
channel: {
|
|
@@ -8637,7 +8637,7 @@ export declare const mainFeedContract: {
|
|
|
8637
8637
|
page: z.ZodNumber;
|
|
8638
8638
|
pageSize: z.ZodNumber;
|
|
8639
8639
|
data: z.ZodObject<{
|
|
8640
|
-
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"]>;
|
|
8640
|
+
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"]>;
|
|
8641
8641
|
message: z.ZodString;
|
|
8642
8642
|
id: z.ZodString;
|
|
8643
8643
|
url: z.ZodString;
|
|
@@ -10154,6 +10154,7 @@ export declare const mainFeedContract: {
|
|
|
10154
10154
|
channelId: string;
|
|
10155
10155
|
socialPlatformId: string;
|
|
10156
10156
|
}>;
|
|
10157
|
+
csatStatus: z.ZodNullable<z.ZodString>;
|
|
10157
10158
|
actor: z.ZodObject<{
|
|
10158
10159
|
id: z.ZodString;
|
|
10159
10160
|
createdAt: z.ZodDate;
|
|
@@ -11996,6 +11997,7 @@ export declare const mainFeedContract: {
|
|
|
11996
11997
|
closedAt: Date;
|
|
11997
11998
|
lastMessageAt: Date | null;
|
|
11998
11999
|
isBotRoom: boolean;
|
|
12000
|
+
csatStatus: string | null;
|
|
11999
12001
|
cxlog: {
|
|
12000
12002
|
id: string;
|
|
12001
12003
|
channel: string | null;
|
|
@@ -12423,6 +12425,7 @@ export declare const mainFeedContract: {
|
|
|
12423
12425
|
closedAt: Date;
|
|
12424
12426
|
lastMessageAt: Date | null;
|
|
12425
12427
|
isBotRoom: boolean;
|
|
12428
|
+
csatStatus: string | null;
|
|
12426
12429
|
cxlog: {
|
|
12427
12430
|
id: string;
|
|
12428
12431
|
channel: string | null;
|
|
@@ -12563,7 +12566,7 @@ export declare const mainFeedContract: {
|
|
|
12563
12566
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
12564
12567
|
message: z.ZodString;
|
|
12565
12568
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
|
12566
|
-
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"]>;
|
|
12569
|
+
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"]>;
|
|
12567
12570
|
readAt: z.ZodDate;
|
|
12568
12571
|
metadata: z.ZodAny;
|
|
12569
12572
|
platformId: z.ZodString;
|
|
@@ -13221,7 +13224,7 @@ export declare const mainFeedContract: {
|
|
|
13221
13224
|
};
|
|
13222
13225
|
}>;
|
|
13223
13226
|
}, "strip", z.ZodTypeAny, {
|
|
13224
|
-
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";
|
|
13227
|
+
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";
|
|
13225
13228
|
message: string;
|
|
13226
13229
|
id: string;
|
|
13227
13230
|
url: string;
|
|
@@ -13383,7 +13386,7 @@ export declare const mainFeedContract: {
|
|
|
13383
13386
|
metadata?: any;
|
|
13384
13387
|
template?: any;
|
|
13385
13388
|
}, {
|
|
13386
|
-
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";
|
|
13389
|
+
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";
|
|
13387
13390
|
message: string;
|
|
13388
13391
|
id: string;
|
|
13389
13392
|
url: string;
|
|
@@ -14804,7 +14807,7 @@ export declare const mainFeedContract: {
|
|
|
14804
14807
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
14805
14808
|
message: z.ZodString;
|
|
14806
14809
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
|
14807
|
-
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"]>;
|
|
14810
|
+
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"]>;
|
|
14808
14811
|
readAt: z.ZodDate;
|
|
14809
14812
|
metadata: z.ZodAny;
|
|
14810
14813
|
platformId: z.ZodString;
|
|
@@ -15878,6 +15881,7 @@ export declare const mainFeedContract: {
|
|
|
15878
15881
|
channelId: string;
|
|
15879
15882
|
socialPlatformId: string;
|
|
15880
15883
|
}>;
|
|
15884
|
+
csatStatus: z.ZodNullable<z.ZodString>;
|
|
15881
15885
|
actor: z.ZodObject<{
|
|
15882
15886
|
id: z.ZodString;
|
|
15883
15887
|
createdAt: z.ZodDate;
|
|
@@ -17720,6 +17724,7 @@ export declare const mainFeedContract: {
|
|
|
17720
17724
|
closedAt: Date;
|
|
17721
17725
|
lastMessageAt: Date | null;
|
|
17722
17726
|
isBotRoom: boolean;
|
|
17727
|
+
csatStatus: string | null;
|
|
17723
17728
|
cxlog: {
|
|
17724
17729
|
id: string;
|
|
17725
17730
|
channel: string | null;
|
|
@@ -18147,6 +18152,7 @@ export declare const mainFeedContract: {
|
|
|
18147
18152
|
closedAt: Date;
|
|
18148
18153
|
lastMessageAt: Date | null;
|
|
18149
18154
|
isBotRoom: boolean;
|
|
18155
|
+
csatStatus: string | null;
|
|
18150
18156
|
cxlog: {
|
|
18151
18157
|
id: string;
|
|
18152
18158
|
channel: string | null;
|
|
@@ -18290,7 +18296,7 @@ export declare const mainFeedContract: {
|
|
|
18290
18296
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
18291
18297
|
message: z.ZodString;
|
|
18292
18298
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
|
18293
|
-
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"]>;
|
|
18299
|
+
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"]>;
|
|
18294
18300
|
readAt: z.ZodDate;
|
|
18295
18301
|
metadata: z.ZodAny;
|
|
18296
18302
|
platformId: z.ZodString;
|
|
@@ -18948,7 +18954,7 @@ export declare const mainFeedContract: {
|
|
|
18948
18954
|
};
|
|
18949
18955
|
}>;
|
|
18950
18956
|
}, "strip", z.ZodTypeAny, {
|
|
18951
|
-
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";
|
|
18957
|
+
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";
|
|
18952
18958
|
message: string;
|
|
18953
18959
|
id: string;
|
|
18954
18960
|
url: string;
|
|
@@ -19110,7 +19116,7 @@ export declare const mainFeedContract: {
|
|
|
19110
19116
|
metadata?: any;
|
|
19111
19117
|
template?: any;
|
|
19112
19118
|
}, {
|
|
19113
|
-
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";
|
|
19119
|
+
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";
|
|
19114
19120
|
message: string;
|
|
19115
19121
|
id: string;
|
|
19116
19122
|
url: string;
|
|
@@ -19912,7 +19918,7 @@ export declare const mainFeedContract: {
|
|
|
19912
19918
|
editedMessageid: z.ZodString;
|
|
19913
19919
|
label: z.ZodOptional<z.ZodString>;
|
|
19914
19920
|
}, "strip", z.ZodTypeAny, {
|
|
19915
|
-
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";
|
|
19921
|
+
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";
|
|
19916
19922
|
message: string;
|
|
19917
19923
|
id: string;
|
|
19918
19924
|
url: string;
|
|
@@ -20347,6 +20353,7 @@ export declare const mainFeedContract: {
|
|
|
20347
20353
|
closedAt: Date;
|
|
20348
20354
|
lastMessageAt: Date | null;
|
|
20349
20355
|
isBotRoom: boolean;
|
|
20356
|
+
csatStatus: string | null;
|
|
20350
20357
|
cxlog: {
|
|
20351
20358
|
id: string;
|
|
20352
20359
|
channel: string | null;
|
|
@@ -20465,7 +20472,7 @@ export declare const mainFeedContract: {
|
|
|
20465
20472
|
previewUrl: string;
|
|
20466
20473
|
imageSetId: string;
|
|
20467
20474
|
repliedMessage: {
|
|
20468
|
-
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";
|
|
20475
|
+
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";
|
|
20469
20476
|
message: string;
|
|
20470
20477
|
id: string;
|
|
20471
20478
|
url: string;
|
|
@@ -20676,7 +20683,7 @@ export declare const mainFeedContract: {
|
|
|
20676
20683
|
template?: any;
|
|
20677
20684
|
label?: string | undefined;
|
|
20678
20685
|
}, {
|
|
20679
|
-
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";
|
|
20686
|
+
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";
|
|
20680
20687
|
message: string;
|
|
20681
20688
|
id: string;
|
|
20682
20689
|
url: string;
|
|
@@ -21111,6 +21118,7 @@ export declare const mainFeedContract: {
|
|
|
21111
21118
|
closedAt: Date;
|
|
21112
21119
|
lastMessageAt: Date | null;
|
|
21113
21120
|
isBotRoom: boolean;
|
|
21121
|
+
csatStatus: string | null;
|
|
21114
21122
|
cxlog: {
|
|
21115
21123
|
id: string;
|
|
21116
21124
|
channel: string | null;
|
|
@@ -21229,7 +21237,7 @@ export declare const mainFeedContract: {
|
|
|
21229
21237
|
previewUrl: string;
|
|
21230
21238
|
imageSetId: string;
|
|
21231
21239
|
repliedMessage: {
|
|
21232
|
-
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";
|
|
21240
|
+
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";
|
|
21233
21241
|
message: string;
|
|
21234
21242
|
id: string;
|
|
21235
21243
|
url: string;
|
|
@@ -21441,13 +21449,13 @@ export declare const mainFeedContract: {
|
|
|
21441
21449
|
label?: string | undefined;
|
|
21442
21450
|
}>, "many">;
|
|
21443
21451
|
}, "strip", z.ZodTypeAny, {
|
|
21444
|
-
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";
|
|
21452
|
+
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";
|
|
21445
21453
|
message: string;
|
|
21446
21454
|
id: string;
|
|
21447
21455
|
url: string;
|
|
21448
21456
|
direction: "incoming" | "outgoing" | "system";
|
|
21449
21457
|
children: {
|
|
21450
|
-
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";
|
|
21458
|
+
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";
|
|
21451
21459
|
message: string;
|
|
21452
21460
|
id: string;
|
|
21453
21461
|
url: string;
|
|
@@ -21882,6 +21890,7 @@ export declare const mainFeedContract: {
|
|
|
21882
21890
|
closedAt: Date;
|
|
21883
21891
|
lastMessageAt: Date | null;
|
|
21884
21892
|
isBotRoom: boolean;
|
|
21893
|
+
csatStatus: string | null;
|
|
21885
21894
|
cxlog: {
|
|
21886
21895
|
id: string;
|
|
21887
21896
|
channel: string | null;
|
|
@@ -22000,7 +22009,7 @@ export declare const mainFeedContract: {
|
|
|
22000
22009
|
previewUrl: string;
|
|
22001
22010
|
imageSetId: string;
|
|
22002
22011
|
repliedMessage: {
|
|
22003
|
-
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";
|
|
22012
|
+
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";
|
|
22004
22013
|
message: string;
|
|
22005
22014
|
id: string;
|
|
22006
22015
|
url: string;
|
|
@@ -22641,6 +22650,7 @@ export declare const mainFeedContract: {
|
|
|
22641
22650
|
closedAt: Date;
|
|
22642
22651
|
lastMessageAt: Date | null;
|
|
22643
22652
|
isBotRoom: boolean;
|
|
22653
|
+
csatStatus: string | null;
|
|
22644
22654
|
cxlog: {
|
|
22645
22655
|
id: string;
|
|
22646
22656
|
channel: string | null;
|
|
@@ -22759,7 +22769,7 @@ export declare const mainFeedContract: {
|
|
|
22759
22769
|
previewUrl: string;
|
|
22760
22770
|
imageSetId: string;
|
|
22761
22771
|
repliedMessage: {
|
|
22762
|
-
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";
|
|
22772
|
+
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";
|
|
22763
22773
|
message: string;
|
|
22764
22774
|
id: string;
|
|
22765
22775
|
url: string;
|
|
@@ -23097,13 +23107,13 @@ export declare const mainFeedContract: {
|
|
|
23097
23107
|
template?: any;
|
|
23098
23108
|
metadata?: any;
|
|
23099
23109
|
}, {
|
|
23100
|
-
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";
|
|
23110
|
+
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";
|
|
23101
23111
|
message: string;
|
|
23102
23112
|
id: string;
|
|
23103
23113
|
url: string;
|
|
23104
23114
|
direction: "incoming" | "outgoing" | "system";
|
|
23105
23115
|
children: {
|
|
23106
|
-
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";
|
|
23116
|
+
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";
|
|
23107
23117
|
message: string;
|
|
23108
23118
|
id: string;
|
|
23109
23119
|
url: string;
|
|
@@ -23538,6 +23548,7 @@ export declare const mainFeedContract: {
|
|
|
23538
23548
|
closedAt: Date;
|
|
23539
23549
|
lastMessageAt: Date | null;
|
|
23540
23550
|
isBotRoom: boolean;
|
|
23551
|
+
csatStatus: string | null;
|
|
23541
23552
|
cxlog: {
|
|
23542
23553
|
id: string;
|
|
23543
23554
|
channel: string | null;
|
|
@@ -23656,7 +23667,7 @@ export declare const mainFeedContract: {
|
|
|
23656
23667
|
previewUrl: string;
|
|
23657
23668
|
imageSetId: string;
|
|
23658
23669
|
repliedMessage: {
|
|
23659
|
-
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";
|
|
23670
|
+
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";
|
|
23660
23671
|
message: string;
|
|
23661
23672
|
id: string;
|
|
23662
23673
|
url: string;
|
|
@@ -24297,6 +24308,7 @@ export declare const mainFeedContract: {
|
|
|
24297
24308
|
closedAt: Date;
|
|
24298
24309
|
lastMessageAt: Date | null;
|
|
24299
24310
|
isBotRoom: boolean;
|
|
24311
|
+
csatStatus: string | null;
|
|
24300
24312
|
cxlog: {
|
|
24301
24313
|
id: string;
|
|
24302
24314
|
channel: string | null;
|
|
@@ -24415,7 +24427,7 @@ export declare const mainFeedContract: {
|
|
|
24415
24427
|
previewUrl: string;
|
|
24416
24428
|
imageSetId: string;
|
|
24417
24429
|
repliedMessage: {
|
|
24418
|
-
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";
|
|
24430
|
+
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";
|
|
24419
24431
|
message: string;
|
|
24420
24432
|
id: string;
|
|
24421
24433
|
url: string;
|
|
@@ -24755,13 +24767,13 @@ export declare const mainFeedContract: {
|
|
|
24755
24767
|
}>;
|
|
24756
24768
|
}, "strip", z.ZodTypeAny, {
|
|
24757
24769
|
data: {
|
|
24758
|
-
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";
|
|
24770
|
+
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";
|
|
24759
24771
|
message: string;
|
|
24760
24772
|
id: string;
|
|
24761
24773
|
url: string;
|
|
24762
24774
|
direction: "incoming" | "outgoing" | "system";
|
|
24763
24775
|
children: {
|
|
24764
|
-
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";
|
|
24776
|
+
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";
|
|
24765
24777
|
message: string;
|
|
24766
24778
|
id: string;
|
|
24767
24779
|
url: string;
|
|
@@ -25196,6 +25208,7 @@ export declare const mainFeedContract: {
|
|
|
25196
25208
|
closedAt: Date;
|
|
25197
25209
|
lastMessageAt: Date | null;
|
|
25198
25210
|
isBotRoom: boolean;
|
|
25211
|
+
csatStatus: string | null;
|
|
25199
25212
|
cxlog: {
|
|
25200
25213
|
id: string;
|
|
25201
25214
|
channel: string | null;
|
|
@@ -25314,7 +25327,7 @@ export declare const mainFeedContract: {
|
|
|
25314
25327
|
previewUrl: string;
|
|
25315
25328
|
imageSetId: string;
|
|
25316
25329
|
repliedMessage: {
|
|
25317
|
-
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";
|
|
25330
|
+
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";
|
|
25318
25331
|
message: string;
|
|
25319
25332
|
id: string;
|
|
25320
25333
|
url: string;
|
|
@@ -25955,6 +25968,7 @@ export declare const mainFeedContract: {
|
|
|
25955
25968
|
closedAt: Date;
|
|
25956
25969
|
lastMessageAt: Date | null;
|
|
25957
25970
|
isBotRoom: boolean;
|
|
25971
|
+
csatStatus: string | null;
|
|
25958
25972
|
cxlog: {
|
|
25959
25973
|
id: string;
|
|
25960
25974
|
channel: string | null;
|
|
@@ -26073,7 +26087,7 @@ export declare const mainFeedContract: {
|
|
|
26073
26087
|
previewUrl: string;
|
|
26074
26088
|
imageSetId: string;
|
|
26075
26089
|
repliedMessage: {
|
|
26076
|
-
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";
|
|
26090
|
+
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";
|
|
26077
26091
|
message: string;
|
|
26078
26092
|
id: string;
|
|
26079
26093
|
url: string;
|
|
@@ -26417,13 +26431,13 @@ export declare const mainFeedContract: {
|
|
|
26417
26431
|
requestId: string;
|
|
26418
26432
|
}, {
|
|
26419
26433
|
data: {
|
|
26420
|
-
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";
|
|
26434
|
+
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";
|
|
26421
26435
|
message: string;
|
|
26422
26436
|
id: string;
|
|
26423
26437
|
url: string;
|
|
26424
26438
|
direction: "incoming" | "outgoing" | "system";
|
|
26425
26439
|
children: {
|
|
26426
|
-
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";
|
|
26440
|
+
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";
|
|
26427
26441
|
message: string;
|
|
26428
26442
|
id: string;
|
|
26429
26443
|
url: string;
|
|
@@ -26858,6 +26872,7 @@ export declare const mainFeedContract: {
|
|
|
26858
26872
|
closedAt: Date;
|
|
26859
26873
|
lastMessageAt: Date | null;
|
|
26860
26874
|
isBotRoom: boolean;
|
|
26875
|
+
csatStatus: string | null;
|
|
26861
26876
|
cxlog: {
|
|
26862
26877
|
id: string;
|
|
26863
26878
|
channel: string | null;
|
|
@@ -26976,7 +26991,7 @@ export declare const mainFeedContract: {
|
|
|
26976
26991
|
previewUrl: string;
|
|
26977
26992
|
imageSetId: string;
|
|
26978
26993
|
repliedMessage: {
|
|
26979
|
-
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";
|
|
26994
|
+
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";
|
|
26980
26995
|
message: string;
|
|
26981
26996
|
id: string;
|
|
26982
26997
|
url: string;
|
|
@@ -27617,6 +27632,7 @@ export declare const mainFeedContract: {
|
|
|
27617
27632
|
closedAt: Date;
|
|
27618
27633
|
lastMessageAt: Date | null;
|
|
27619
27634
|
isBotRoom: boolean;
|
|
27635
|
+
csatStatus: string | null;
|
|
27620
27636
|
cxlog: {
|
|
27621
27637
|
id: string;
|
|
27622
27638
|
channel: string | null;
|
|
@@ -27735,7 +27751,7 @@ export declare const mainFeedContract: {
|
|
|
27735
27751
|
previewUrl: string;
|
|
27736
27752
|
imageSetId: string;
|
|
27737
27753
|
repliedMessage: {
|
|
27738
|
-
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";
|
|
27754
|
+
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";
|
|
27739
27755
|
message: string;
|
|
27740
27756
|
id: string;
|
|
27741
27757
|
url: string;
|
|
@@ -29305,6 +29321,7 @@ export declare const mainChatRoomContract: {
|
|
|
29305
29321
|
channelId: string;
|
|
29306
29322
|
socialPlatformId: string;
|
|
29307
29323
|
}>;
|
|
29324
|
+
csatStatus: z.ZodNullable<z.ZodString>;
|
|
29308
29325
|
actor: z.ZodObject<{
|
|
29309
29326
|
id: z.ZodString;
|
|
29310
29327
|
createdAt: z.ZodDate;
|
|
@@ -31147,6 +31164,7 @@ export declare const mainChatRoomContract: {
|
|
|
31147
31164
|
closedAt: Date;
|
|
31148
31165
|
lastMessageAt: Date | null;
|
|
31149
31166
|
isBotRoom: boolean;
|
|
31167
|
+
csatStatus: string | null;
|
|
31150
31168
|
cxlog: {
|
|
31151
31169
|
id: string;
|
|
31152
31170
|
channel: string | null;
|
|
@@ -31574,6 +31592,7 @@ export declare const mainChatRoomContract: {
|
|
|
31574
31592
|
closedAt: Date;
|
|
31575
31593
|
lastMessageAt: Date | null;
|
|
31576
31594
|
isBotRoom: boolean;
|
|
31595
|
+
csatStatus: string | null;
|
|
31577
31596
|
cxlog: {
|
|
31578
31597
|
id: string;
|
|
31579
31598
|
channel: string | null;
|
|
@@ -32013,6 +32032,7 @@ export declare const mainChatRoomContract: {
|
|
|
32013
32032
|
closedAt: Date;
|
|
32014
32033
|
lastMessageAt: Date | null;
|
|
32015
32034
|
isBotRoom: boolean;
|
|
32035
|
+
csatStatus: string | null;
|
|
32016
32036
|
cxlog: {
|
|
32017
32037
|
id: string;
|
|
32018
32038
|
channel: string | null;
|
|
@@ -32450,6 +32470,7 @@ export declare const mainChatRoomContract: {
|
|
|
32450
32470
|
closedAt: Date;
|
|
32451
32471
|
lastMessageAt: Date | null;
|
|
32452
32472
|
isBotRoom: boolean;
|
|
32473
|
+
csatStatus: string | null;
|
|
32453
32474
|
cxlog: {
|
|
32454
32475
|
id: string;
|
|
32455
32476
|
channel: string | null;
|
|
@@ -33667,6 +33688,7 @@ export declare const mainChatRoomContract: {
|
|
|
33667
33688
|
channelId: string;
|
|
33668
33689
|
socialPlatformId: string;
|
|
33669
33690
|
}>;
|
|
33691
|
+
csatStatus: z.ZodNullable<z.ZodString>;
|
|
33670
33692
|
actor: z.ZodObject<{
|
|
33671
33693
|
id: z.ZodString;
|
|
33672
33694
|
createdAt: z.ZodDate;
|
|
@@ -35509,6 +35531,7 @@ export declare const mainChatRoomContract: {
|
|
|
35509
35531
|
closedAt: Date;
|
|
35510
35532
|
lastMessageAt: Date | null;
|
|
35511
35533
|
isBotRoom: boolean;
|
|
35534
|
+
csatStatus: string | null;
|
|
35512
35535
|
cxlog: {
|
|
35513
35536
|
id: string;
|
|
35514
35537
|
channel: string | null;
|
|
@@ -35936,6 +35959,7 @@ export declare const mainChatRoomContract: {
|
|
|
35936
35959
|
closedAt: Date;
|
|
35937
35960
|
lastMessageAt: Date | null;
|
|
35938
35961
|
isBotRoom: boolean;
|
|
35962
|
+
csatStatus: string | null;
|
|
35939
35963
|
cxlog: {
|
|
35940
35964
|
id: string;
|
|
35941
35965
|
channel: string | null;
|
|
@@ -36041,7 +36065,7 @@ export declare const mainChatRoomContract: {
|
|
|
36041
36065
|
latestIncomingMessage: z.ZodObject<{
|
|
36042
36066
|
message: z.ZodString;
|
|
36043
36067
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
|
36044
|
-
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"]>;
|
|
36068
|
+
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"]>;
|
|
36045
36069
|
readAt: z.ZodDate;
|
|
36046
36070
|
metadata: z.ZodAny;
|
|
36047
36071
|
platformId: z.ZodString;
|
|
@@ -36053,7 +36077,7 @@ export declare const mainChatRoomContract: {
|
|
|
36053
36077
|
previewUrl: z.ZodString;
|
|
36054
36078
|
imageSetId: z.ZodString;
|
|
36055
36079
|
}, "strip", z.ZodTypeAny, {
|
|
36056
|
-
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";
|
|
36080
|
+
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";
|
|
36057
36081
|
message: string;
|
|
36058
36082
|
url: string;
|
|
36059
36083
|
direction: "incoming" | "outgoing" | "system";
|
|
@@ -36067,7 +36091,7 @@ export declare const mainChatRoomContract: {
|
|
|
36067
36091
|
metadata?: any;
|
|
36068
36092
|
template?: any;
|
|
36069
36093
|
}, {
|
|
36070
|
-
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";
|
|
36094
|
+
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";
|
|
36071
36095
|
message: string;
|
|
36072
36096
|
url: string;
|
|
36073
36097
|
direction: "incoming" | "outgoing" | "system";
|
|
@@ -36084,7 +36108,7 @@ export declare const mainChatRoomContract: {
|
|
|
36084
36108
|
latestMessage: z.ZodObject<{
|
|
36085
36109
|
message: z.ZodString;
|
|
36086
36110
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
|
36087
|
-
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"]>;
|
|
36111
|
+
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"]>;
|
|
36088
36112
|
readAt: z.ZodDate;
|
|
36089
36113
|
metadata: z.ZodAny;
|
|
36090
36114
|
platformId: z.ZodString;
|
|
@@ -36096,7 +36120,7 @@ export declare const mainChatRoomContract: {
|
|
|
36096
36120
|
previewUrl: z.ZodString;
|
|
36097
36121
|
imageSetId: z.ZodString;
|
|
36098
36122
|
}, "strip", z.ZodTypeAny, {
|
|
36099
|
-
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";
|
|
36123
|
+
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";
|
|
36100
36124
|
message: string;
|
|
36101
36125
|
url: string;
|
|
36102
36126
|
direction: "incoming" | "outgoing" | "system";
|
|
@@ -36110,7 +36134,7 @@ export declare const mainChatRoomContract: {
|
|
|
36110
36134
|
metadata?: any;
|
|
36111
36135
|
template?: any;
|
|
36112
36136
|
}, {
|
|
36113
|
-
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";
|
|
36137
|
+
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";
|
|
36114
36138
|
message: string;
|
|
36115
36139
|
url: string;
|
|
36116
36140
|
direction: "incoming" | "outgoing" | "system";
|
|
@@ -36451,6 +36475,7 @@ export declare const mainChatRoomContract: {
|
|
|
36451
36475
|
closedAt: Date;
|
|
36452
36476
|
lastMessageAt: Date | null;
|
|
36453
36477
|
isBotRoom: boolean;
|
|
36478
|
+
csatStatus: string | null;
|
|
36454
36479
|
cxlog: {
|
|
36455
36480
|
id: string;
|
|
36456
36481
|
channel: string | null;
|
|
@@ -36554,7 +36579,7 @@ export declare const mainChatRoomContract: {
|
|
|
36554
36579
|
automationQueueId?: string | null | undefined;
|
|
36555
36580
|
};
|
|
36556
36581
|
latestIncomingMessage: {
|
|
36557
|
-
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";
|
|
36582
|
+
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";
|
|
36558
36583
|
message: string;
|
|
36559
36584
|
url: string;
|
|
36560
36585
|
direction: "incoming" | "outgoing" | "system";
|
|
@@ -36569,7 +36594,7 @@ export declare const mainChatRoomContract: {
|
|
|
36569
36594
|
template?: any;
|
|
36570
36595
|
};
|
|
36571
36596
|
latestMessage: {
|
|
36572
|
-
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";
|
|
36597
|
+
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";
|
|
36573
36598
|
message: string;
|
|
36574
36599
|
url: string;
|
|
36575
36600
|
direction: "incoming" | "outgoing" | "system";
|
|
@@ -36910,6 +36935,7 @@ export declare const mainChatRoomContract: {
|
|
|
36910
36935
|
closedAt: Date;
|
|
36911
36936
|
lastMessageAt: Date | null;
|
|
36912
36937
|
isBotRoom: boolean;
|
|
36938
|
+
csatStatus: string | null;
|
|
36913
36939
|
cxlog: {
|
|
36914
36940
|
id: string;
|
|
36915
36941
|
channel: string | null;
|
|
@@ -37013,7 +37039,7 @@ export declare const mainChatRoomContract: {
|
|
|
37013
37039
|
automationQueueId?: string | null | undefined;
|
|
37014
37040
|
};
|
|
37015
37041
|
latestIncomingMessage: {
|
|
37016
|
-
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";
|
|
37042
|
+
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";
|
|
37017
37043
|
message: string;
|
|
37018
37044
|
url: string;
|
|
37019
37045
|
direction: "incoming" | "outgoing" | "system";
|
|
@@ -37028,7 +37054,7 @@ export declare const mainChatRoomContract: {
|
|
|
37028
37054
|
template?: any;
|
|
37029
37055
|
};
|
|
37030
37056
|
latestMessage: {
|
|
37031
|
-
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";
|
|
37057
|
+
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";
|
|
37032
37058
|
message: string;
|
|
37033
37059
|
url: string;
|
|
37034
37060
|
direction: "incoming" | "outgoing" | "system";
|
|
@@ -37371,6 +37397,7 @@ export declare const mainChatRoomContract: {
|
|
|
37371
37397
|
closedAt: Date;
|
|
37372
37398
|
lastMessageAt: Date | null;
|
|
37373
37399
|
isBotRoom: boolean;
|
|
37400
|
+
csatStatus: string | null;
|
|
37374
37401
|
cxlog: {
|
|
37375
37402
|
id: string;
|
|
37376
37403
|
channel: string | null;
|
|
@@ -37474,7 +37501,7 @@ export declare const mainChatRoomContract: {
|
|
|
37474
37501
|
automationQueueId?: string | null | undefined;
|
|
37475
37502
|
};
|
|
37476
37503
|
latestIncomingMessage: {
|
|
37477
|
-
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";
|
|
37504
|
+
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";
|
|
37478
37505
|
message: string;
|
|
37479
37506
|
url: string;
|
|
37480
37507
|
direction: "incoming" | "outgoing" | "system";
|
|
@@ -37489,7 +37516,7 @@ export declare const mainChatRoomContract: {
|
|
|
37489
37516
|
template?: any;
|
|
37490
37517
|
};
|
|
37491
37518
|
latestMessage: {
|
|
37492
|
-
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";
|
|
37519
|
+
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";
|
|
37493
37520
|
message: string;
|
|
37494
37521
|
url: string;
|
|
37495
37522
|
direction: "incoming" | "outgoing" | "system";
|
|
@@ -37833,6 +37860,7 @@ export declare const mainChatRoomContract: {
|
|
|
37833
37860
|
closedAt: Date;
|
|
37834
37861
|
lastMessageAt: Date | null;
|
|
37835
37862
|
isBotRoom: boolean;
|
|
37863
|
+
csatStatus: string | null;
|
|
37836
37864
|
cxlog: {
|
|
37837
37865
|
id: string;
|
|
37838
37866
|
channel: string | null;
|
|
@@ -37936,7 +37964,7 @@ export declare const mainChatRoomContract: {
|
|
|
37936
37964
|
automationQueueId?: string | null | undefined;
|
|
37937
37965
|
};
|
|
37938
37966
|
latestIncomingMessage: {
|
|
37939
|
-
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";
|
|
37967
|
+
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";
|
|
37940
37968
|
message: string;
|
|
37941
37969
|
url: string;
|
|
37942
37970
|
direction: "incoming" | "outgoing" | "system";
|
|
@@ -37951,7 +37979,7 @@ export declare const mainChatRoomContract: {
|
|
|
37951
37979
|
template?: any;
|
|
37952
37980
|
};
|
|
37953
37981
|
latestMessage: {
|
|
37954
|
-
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";
|
|
37982
|
+
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";
|
|
37955
37983
|
message: string;
|
|
37956
37984
|
url: string;
|
|
37957
37985
|
direction: "incoming" | "outgoing" | "system";
|
|
@@ -40031,6 +40059,7 @@ export declare const mainChatRoomContract: {
|
|
|
40031
40059
|
closedAt: z.ZodDate;
|
|
40032
40060
|
lastMessageAt: z.ZodNullable<z.ZodDate>;
|
|
40033
40061
|
isBotRoom: z.ZodBoolean;
|
|
40062
|
+
csatStatus: z.ZodNullable<z.ZodString>;
|
|
40034
40063
|
cxlog: z.ZodObject<{
|
|
40035
40064
|
id: z.ZodString;
|
|
40036
40065
|
createdAt: z.ZodDate;
|
|
@@ -40919,6 +40948,7 @@ export declare const mainChatRoomContract: {
|
|
|
40919
40948
|
closedAt: Date;
|
|
40920
40949
|
lastMessageAt: Date | null;
|
|
40921
40950
|
isBotRoom: boolean;
|
|
40951
|
+
csatStatus: string | null;
|
|
40922
40952
|
cxlog: {
|
|
40923
40953
|
id: string;
|
|
40924
40954
|
channel: string | null;
|
|
@@ -41347,6 +41377,7 @@ export declare const mainChatRoomContract: {
|
|
|
41347
41377
|
closedAt: Date;
|
|
41348
41378
|
lastMessageAt: Date | null;
|
|
41349
41379
|
isBotRoom: boolean;
|
|
41380
|
+
csatStatus: string | null;
|
|
41350
41381
|
cxlog: {
|
|
41351
41382
|
id: string;
|
|
41352
41383
|
channel: string | null;
|
|
@@ -41777,6 +41808,7 @@ export declare const mainChatRoomContract: {
|
|
|
41777
41808
|
closedAt: Date;
|
|
41778
41809
|
lastMessageAt: Date | null;
|
|
41779
41810
|
isBotRoom: boolean;
|
|
41811
|
+
csatStatus: string | null;
|
|
41780
41812
|
cxlog: {
|
|
41781
41813
|
id: string;
|
|
41782
41814
|
channel: string | null;
|
|
@@ -42208,6 +42240,7 @@ export declare const mainChatRoomContract: {
|
|
|
42208
42240
|
closedAt: Date;
|
|
42209
42241
|
lastMessageAt: Date | null;
|
|
42210
42242
|
isBotRoom: boolean;
|
|
42243
|
+
csatStatus: string | null;
|
|
42211
42244
|
cxlog: {
|
|
42212
42245
|
id: string;
|
|
42213
42246
|
channel: string | null;
|
|
@@ -44374,6 +44407,7 @@ export declare const mainChatRoomContract: {
|
|
|
44374
44407
|
closedAt: z.ZodDate;
|
|
44375
44408
|
lastMessageAt: z.ZodNullable<z.ZodDate>;
|
|
44376
44409
|
isBotRoom: z.ZodBoolean;
|
|
44410
|
+
csatStatus: z.ZodNullable<z.ZodString>;
|
|
44377
44411
|
cxlog: z.ZodObject<{
|
|
44378
44412
|
id: z.ZodString;
|
|
44379
44413
|
createdAt: z.ZodDate;
|
|
@@ -46144,6 +46178,7 @@ export declare const mainChatRoomContract: {
|
|
|
46144
46178
|
closedAt: Date;
|
|
46145
46179
|
lastMessageAt: Date | null;
|
|
46146
46180
|
isBotRoom: boolean;
|
|
46181
|
+
csatStatus: string | null;
|
|
46147
46182
|
cxlog: {
|
|
46148
46183
|
id: string;
|
|
46149
46184
|
channel: string | null;
|
|
@@ -46684,6 +46719,7 @@ export declare const mainChatRoomContract: {
|
|
|
46684
46719
|
closedAt: Date;
|
|
46685
46720
|
lastMessageAt: Date | null;
|
|
46686
46721
|
isBotRoom: boolean;
|
|
46722
|
+
csatStatus: string | null;
|
|
46687
46723
|
cxlog: {
|
|
46688
46724
|
id: string;
|
|
46689
46725
|
channel: string | null;
|
|
@@ -47226,6 +47262,7 @@ export declare const mainChatRoomContract: {
|
|
|
47226
47262
|
closedAt: Date;
|
|
47227
47263
|
lastMessageAt: Date | null;
|
|
47228
47264
|
isBotRoom: boolean;
|
|
47265
|
+
csatStatus: string | null;
|
|
47229
47266
|
cxlog: {
|
|
47230
47267
|
id: string;
|
|
47231
47268
|
channel: string | null;
|
|
@@ -47769,6 +47806,7 @@ export declare const mainChatRoomContract: {
|
|
|
47769
47806
|
closedAt: Date;
|
|
47770
47807
|
lastMessageAt: Date | null;
|
|
47771
47808
|
isBotRoom: boolean;
|
|
47809
|
+
csatStatus: string | null;
|
|
47772
47810
|
cxlog: {
|
|
47773
47811
|
id: string;
|
|
47774
47812
|
channel: string | null;
|
|
@@ -49925,6 +49963,7 @@ export declare const mainChatRoomContract: {
|
|
|
49925
49963
|
closedAt: z.ZodDate;
|
|
49926
49964
|
lastMessageAt: z.ZodNullable<z.ZodDate>;
|
|
49927
49965
|
isBotRoom: z.ZodBoolean;
|
|
49966
|
+
csatStatus: z.ZodNullable<z.ZodString>;
|
|
49928
49967
|
cxlog: z.ZodObject<{
|
|
49929
49968
|
id: z.ZodString;
|
|
49930
49969
|
createdAt: z.ZodDate;
|
|
@@ -50814,6 +50853,7 @@ export declare const mainChatRoomContract: {
|
|
|
50814
50853
|
closedAt: Date;
|
|
50815
50854
|
lastMessageAt: Date | null;
|
|
50816
50855
|
isBotRoom: boolean;
|
|
50856
|
+
csatStatus: string | null;
|
|
50817
50857
|
cxlog: {
|
|
50818
50858
|
id: string;
|
|
50819
50859
|
channel: string | null;
|
|
@@ -51242,6 +51282,7 @@ export declare const mainChatRoomContract: {
|
|
|
51242
51282
|
closedAt: Date;
|
|
51243
51283
|
lastMessageAt: Date | null;
|
|
51244
51284
|
isBotRoom: boolean;
|
|
51285
|
+
csatStatus: string | null;
|
|
51245
51286
|
cxlog: {
|
|
51246
51287
|
id: string;
|
|
51247
51288
|
channel: string | null;
|
|
@@ -51672,6 +51713,7 @@ export declare const mainChatRoomContract: {
|
|
|
51672
51713
|
closedAt: Date;
|
|
51673
51714
|
lastMessageAt: Date | null;
|
|
51674
51715
|
isBotRoom: boolean;
|
|
51716
|
+
csatStatus: string | null;
|
|
51675
51717
|
cxlog: {
|
|
51676
51718
|
id: string;
|
|
51677
51719
|
channel: string | null;
|
|
@@ -52103,6 +52145,7 @@ export declare const mainChatRoomContract: {
|
|
|
52103
52145
|
closedAt: Date;
|
|
52104
52146
|
lastMessageAt: Date | null;
|
|
52105
52147
|
isBotRoom: boolean;
|
|
52148
|
+
csatStatus: string | null;
|
|
52106
52149
|
cxlog: {
|
|
52107
52150
|
id: string;
|
|
52108
52151
|
channel: string | null;
|
|
@@ -54272,6 +54315,7 @@ export declare const mainChatRoomContract: {
|
|
|
54272
54315
|
closedAt: z.ZodDate;
|
|
54273
54316
|
lastMessageAt: z.ZodNullable<z.ZodDate>;
|
|
54274
54317
|
isBotRoom: z.ZodBoolean;
|
|
54318
|
+
csatStatus: z.ZodNullable<z.ZodString>;
|
|
54275
54319
|
cxlog: z.ZodObject<{
|
|
54276
54320
|
id: z.ZodString;
|
|
54277
54321
|
createdAt: z.ZodDate;
|
|
@@ -55159,6 +55203,7 @@ export declare const mainChatRoomContract: {
|
|
|
55159
55203
|
closedAt: Date;
|
|
55160
55204
|
lastMessageAt: Date | null;
|
|
55161
55205
|
isBotRoom: boolean;
|
|
55206
|
+
csatStatus: string | null;
|
|
55162
55207
|
cxlog: {
|
|
55163
55208
|
id: string;
|
|
55164
55209
|
channel: string | null;
|
|
@@ -55586,6 +55631,7 @@ export declare const mainChatRoomContract: {
|
|
|
55586
55631
|
closedAt: Date;
|
|
55587
55632
|
lastMessageAt: Date | null;
|
|
55588
55633
|
isBotRoom: boolean;
|
|
55634
|
+
csatStatus: string | null;
|
|
55589
55635
|
cxlog: {
|
|
55590
55636
|
id: string;
|
|
55591
55637
|
channel: string | null;
|
|
@@ -56015,6 +56061,7 @@ export declare const mainChatRoomContract: {
|
|
|
56015
56061
|
closedAt: Date;
|
|
56016
56062
|
lastMessageAt: Date | null;
|
|
56017
56063
|
isBotRoom: boolean;
|
|
56064
|
+
csatStatus: string | null;
|
|
56018
56065
|
cxlog: {
|
|
56019
56066
|
id: string;
|
|
56020
56067
|
channel: string | null;
|
|
@@ -56448,6 +56495,7 @@ export declare const mainChatRoomContract: {
|
|
|
56448
56495
|
closedAt: Date;
|
|
56449
56496
|
lastMessageAt: Date | null;
|
|
56450
56497
|
isBotRoom: boolean;
|
|
56498
|
+
csatStatus: string | null;
|
|
56451
56499
|
cxlog: {
|
|
56452
56500
|
id: string;
|
|
56453
56501
|
channel: string | null;
|
|
@@ -56579,7 +56627,7 @@ export declare const mainChatContract: {
|
|
|
56579
56627
|
sendMessage: {
|
|
56580
56628
|
body: z.ZodObject<{
|
|
56581
56629
|
roomId: z.ZodString;
|
|
56582
|
-
messageType: 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"]>;
|
|
56630
|
+
messageType: 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"]>;
|
|
56583
56631
|
message: z.ZodOptional<z.ZodString>;
|
|
56584
56632
|
messageAttachments: z.ZodOptional<z.ZodObject<{
|
|
56585
56633
|
bucketName: z.ZodString;
|
|
@@ -56838,7 +56886,7 @@ export declare const mainChatContract: {
|
|
|
56838
56886
|
mentions?: string[] | undefined;
|
|
56839
56887
|
}>>;
|
|
56840
56888
|
}, "strip", z.ZodTypeAny, {
|
|
56841
|
-
messageType: "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";
|
|
56889
|
+
messageType: "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";
|
|
56842
56890
|
roomId: string;
|
|
56843
56891
|
message?: string | undefined;
|
|
56844
56892
|
messageAttachments?: {
|
|
@@ -56910,7 +56958,7 @@ export declare const mainChatContract: {
|
|
|
56910
56958
|
mentions?: string[] | undefined;
|
|
56911
56959
|
} | undefined;
|
|
56912
56960
|
}, {
|
|
56913
|
-
messageType: "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";
|
|
56961
|
+
messageType: "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";
|
|
56914
56962
|
roomId: string;
|
|
56915
56963
|
message?: string | undefined;
|
|
56916
56964
|
messageAttachments?: {
|
|
@@ -56988,7 +57036,7 @@ export declare const mainChatContract: {
|
|
|
56988
57036
|
200: z.ZodObject<{
|
|
56989
57037
|
requestId: z.ZodString;
|
|
56990
57038
|
data: z.ZodObject<{
|
|
56991
|
-
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"]>;
|
|
57039
|
+
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"]>;
|
|
56992
57040
|
message: z.ZodString;
|
|
56993
57041
|
id: z.ZodString;
|
|
56994
57042
|
url: z.ZodString;
|
|
@@ -58505,6 +58553,7 @@ export declare const mainChatContract: {
|
|
|
58505
58553
|
channelId: string;
|
|
58506
58554
|
socialPlatformId: string;
|
|
58507
58555
|
}>;
|
|
58556
|
+
csatStatus: z.ZodNullable<z.ZodString>;
|
|
58508
58557
|
actor: z.ZodObject<{
|
|
58509
58558
|
id: z.ZodString;
|
|
58510
58559
|
createdAt: z.ZodDate;
|
|
@@ -60347,6 +60396,7 @@ export declare const mainChatContract: {
|
|
|
60347
60396
|
closedAt: Date;
|
|
60348
60397
|
lastMessageAt: Date | null;
|
|
60349
60398
|
isBotRoom: boolean;
|
|
60399
|
+
csatStatus: string | null;
|
|
60350
60400
|
cxlog: {
|
|
60351
60401
|
id: string;
|
|
60352
60402
|
channel: string | null;
|
|
@@ -60774,6 +60824,7 @@ export declare const mainChatContract: {
|
|
|
60774
60824
|
closedAt: Date;
|
|
60775
60825
|
lastMessageAt: Date | null;
|
|
60776
60826
|
isBotRoom: boolean;
|
|
60827
|
+
csatStatus: string | null;
|
|
60777
60828
|
cxlog: {
|
|
60778
60829
|
id: string;
|
|
60779
60830
|
channel: string | null;
|
|
@@ -60914,7 +60965,7 @@ export declare const mainChatContract: {
|
|
|
60914
60965
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
60915
60966
|
message: z.ZodString;
|
|
60916
60967
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
|
60917
|
-
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"]>;
|
|
60968
|
+
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"]>;
|
|
60918
60969
|
readAt: z.ZodDate;
|
|
60919
60970
|
metadata: z.ZodAny;
|
|
60920
60971
|
platformId: z.ZodString;
|
|
@@ -61572,7 +61623,7 @@ export declare const mainChatContract: {
|
|
|
61572
61623
|
};
|
|
61573
61624
|
}>;
|
|
61574
61625
|
}, "strip", z.ZodTypeAny, {
|
|
61575
|
-
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";
|
|
61626
|
+
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";
|
|
61576
61627
|
message: string;
|
|
61577
61628
|
id: string;
|
|
61578
61629
|
url: string;
|
|
@@ -61734,7 +61785,7 @@ export declare const mainChatContract: {
|
|
|
61734
61785
|
metadata?: any;
|
|
61735
61786
|
template?: any;
|
|
61736
61787
|
}, {
|
|
61737
|
-
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";
|
|
61788
|
+
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";
|
|
61738
61789
|
message: string;
|
|
61739
61790
|
id: string;
|
|
61740
61791
|
url: string;
|
|
@@ -62108,7 +62159,7 @@ export declare const mainChatContract: {
|
|
|
62108
62159
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
62109
62160
|
message: z.ZodString;
|
|
62110
62161
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
|
62111
|
-
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"]>;
|
|
62162
|
+
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"]>;
|
|
62112
62163
|
readAt: z.ZodDate;
|
|
62113
62164
|
metadata: z.ZodAny;
|
|
62114
62165
|
platformId: z.ZodString;
|
|
@@ -63182,6 +63233,7 @@ export declare const mainChatContract: {
|
|
|
63182
63233
|
channelId: string;
|
|
63183
63234
|
socialPlatformId: string;
|
|
63184
63235
|
}>;
|
|
63236
|
+
csatStatus: z.ZodNullable<z.ZodString>;
|
|
63185
63237
|
actor: z.ZodObject<{
|
|
63186
63238
|
id: z.ZodString;
|
|
63187
63239
|
createdAt: z.ZodDate;
|
|
@@ -65024,6 +65076,7 @@ export declare const mainChatContract: {
|
|
|
65024
65076
|
closedAt: Date;
|
|
65025
65077
|
lastMessageAt: Date | null;
|
|
65026
65078
|
isBotRoom: boolean;
|
|
65079
|
+
csatStatus: string | null;
|
|
65027
65080
|
cxlog: {
|
|
65028
65081
|
id: string;
|
|
65029
65082
|
channel: string | null;
|
|
@@ -65451,6 +65504,7 @@ export declare const mainChatContract: {
|
|
|
65451
65504
|
closedAt: Date;
|
|
65452
65505
|
lastMessageAt: Date | null;
|
|
65453
65506
|
isBotRoom: boolean;
|
|
65507
|
+
csatStatus: string | null;
|
|
65454
65508
|
cxlog: {
|
|
65455
65509
|
id: string;
|
|
65456
65510
|
channel: string | null;
|
|
@@ -65594,7 +65648,7 @@ export declare const mainChatContract: {
|
|
|
65594
65648
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
65595
65649
|
message: z.ZodString;
|
|
65596
65650
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
|
65597
|
-
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"]>;
|
|
65651
|
+
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"]>;
|
|
65598
65652
|
readAt: z.ZodDate;
|
|
65599
65653
|
metadata: z.ZodAny;
|
|
65600
65654
|
platformId: z.ZodString;
|
|
@@ -66252,7 +66306,7 @@ export declare const mainChatContract: {
|
|
|
66252
66306
|
};
|
|
66253
66307
|
}>;
|
|
66254
66308
|
}, "strip", z.ZodTypeAny, {
|
|
66255
|
-
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";
|
|
66309
|
+
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";
|
|
66256
66310
|
message: string;
|
|
66257
66311
|
id: string;
|
|
66258
66312
|
url: string;
|
|
@@ -66414,7 +66468,7 @@ export declare const mainChatContract: {
|
|
|
66414
66468
|
metadata?: any;
|
|
66415
66469
|
template?: any;
|
|
66416
66470
|
}, {
|
|
66417
|
-
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";
|
|
66471
|
+
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";
|
|
66418
66472
|
message: string;
|
|
66419
66473
|
id: string;
|
|
66420
66474
|
url: string;
|
|
@@ -67216,7 +67270,7 @@ export declare const mainChatContract: {
|
|
|
67216
67270
|
editedMessageid: z.ZodString;
|
|
67217
67271
|
label: z.ZodOptional<z.ZodString>;
|
|
67218
67272
|
}, "strip", z.ZodTypeAny, {
|
|
67219
|
-
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";
|
|
67273
|
+
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";
|
|
67220
67274
|
message: string;
|
|
67221
67275
|
id: string;
|
|
67222
67276
|
url: string;
|
|
@@ -67651,6 +67705,7 @@ export declare const mainChatContract: {
|
|
|
67651
67705
|
closedAt: Date;
|
|
67652
67706
|
lastMessageAt: Date | null;
|
|
67653
67707
|
isBotRoom: boolean;
|
|
67708
|
+
csatStatus: string | null;
|
|
67654
67709
|
cxlog: {
|
|
67655
67710
|
id: string;
|
|
67656
67711
|
channel: string | null;
|
|
@@ -67769,7 +67824,7 @@ export declare const mainChatContract: {
|
|
|
67769
67824
|
previewUrl: string;
|
|
67770
67825
|
imageSetId: string;
|
|
67771
67826
|
repliedMessage: {
|
|
67772
|
-
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";
|
|
67827
|
+
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";
|
|
67773
67828
|
message: string;
|
|
67774
67829
|
id: string;
|
|
67775
67830
|
url: string;
|
|
@@ -67980,7 +68035,7 @@ export declare const mainChatContract: {
|
|
|
67980
68035
|
template?: any;
|
|
67981
68036
|
label?: string | undefined;
|
|
67982
68037
|
}, {
|
|
67983
|
-
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";
|
|
68038
|
+
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";
|
|
67984
68039
|
message: string;
|
|
67985
68040
|
id: string;
|
|
67986
68041
|
url: string;
|
|
@@ -68415,6 +68470,7 @@ export declare const mainChatContract: {
|
|
|
68415
68470
|
closedAt: Date;
|
|
68416
68471
|
lastMessageAt: Date | null;
|
|
68417
68472
|
isBotRoom: boolean;
|
|
68473
|
+
csatStatus: string | null;
|
|
68418
68474
|
cxlog: {
|
|
68419
68475
|
id: string;
|
|
68420
68476
|
channel: string | null;
|
|
@@ -68533,7 +68589,7 @@ export declare const mainChatContract: {
|
|
|
68533
68589
|
previewUrl: string;
|
|
68534
68590
|
imageSetId: string;
|
|
68535
68591
|
repliedMessage: {
|
|
68536
|
-
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";
|
|
68592
|
+
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";
|
|
68537
68593
|
message: string;
|
|
68538
68594
|
id: string;
|
|
68539
68595
|
url: string;
|
|
@@ -68745,7 +68801,7 @@ export declare const mainChatContract: {
|
|
|
68745
68801
|
label?: string | undefined;
|
|
68746
68802
|
}>>>;
|
|
68747
68803
|
}, "strip", z.ZodTypeAny, {
|
|
68748
|
-
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";
|
|
68804
|
+
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";
|
|
68749
68805
|
message: string;
|
|
68750
68806
|
id: string;
|
|
68751
68807
|
url: string;
|
|
@@ -69180,6 +69236,7 @@ export declare const mainChatContract: {
|
|
|
69180
69236
|
closedAt: Date;
|
|
69181
69237
|
lastMessageAt: Date | null;
|
|
69182
69238
|
isBotRoom: boolean;
|
|
69239
|
+
csatStatus: string | null;
|
|
69183
69240
|
cxlog: {
|
|
69184
69241
|
id: string;
|
|
69185
69242
|
channel: string | null;
|
|
@@ -69298,7 +69355,7 @@ export declare const mainChatContract: {
|
|
|
69298
69355
|
previewUrl: string;
|
|
69299
69356
|
imageSetId: string;
|
|
69300
69357
|
repliedMessage: {
|
|
69301
|
-
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";
|
|
69358
|
+
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";
|
|
69302
69359
|
message: string;
|
|
69303
69360
|
id: string;
|
|
69304
69361
|
url: string;
|
|
@@ -69509,7 +69566,7 @@ export declare const mainChatContract: {
|
|
|
69509
69566
|
template?: any;
|
|
69510
69567
|
metadata?: any;
|
|
69511
69568
|
fromMessage?: {
|
|
69512
|
-
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";
|
|
69569
|
+
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";
|
|
69513
69570
|
message: string;
|
|
69514
69571
|
id: string;
|
|
69515
69572
|
url: string;
|
|
@@ -69944,6 +70001,7 @@ export declare const mainChatContract: {
|
|
|
69944
70001
|
closedAt: Date;
|
|
69945
70002
|
lastMessageAt: Date | null;
|
|
69946
70003
|
isBotRoom: boolean;
|
|
70004
|
+
csatStatus: string | null;
|
|
69947
70005
|
cxlog: {
|
|
69948
70006
|
id: string;
|
|
69949
70007
|
channel: string | null;
|
|
@@ -70062,7 +70120,7 @@ export declare const mainChatContract: {
|
|
|
70062
70120
|
previewUrl: string;
|
|
70063
70121
|
imageSetId: string;
|
|
70064
70122
|
repliedMessage: {
|
|
70065
|
-
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";
|
|
70123
|
+
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";
|
|
70066
70124
|
message: string;
|
|
70067
70125
|
id: string;
|
|
70068
70126
|
url: string;
|
|
@@ -70274,7 +70332,7 @@ export declare const mainChatContract: {
|
|
|
70274
70332
|
label?: string | undefined;
|
|
70275
70333
|
} | null | undefined;
|
|
70276
70334
|
}, {
|
|
70277
|
-
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";
|
|
70335
|
+
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";
|
|
70278
70336
|
message: string;
|
|
70279
70337
|
id: string;
|
|
70280
70338
|
url: string;
|
|
@@ -70709,6 +70767,7 @@ export declare const mainChatContract: {
|
|
|
70709
70767
|
closedAt: Date;
|
|
70710
70768
|
lastMessageAt: Date | null;
|
|
70711
70769
|
isBotRoom: boolean;
|
|
70770
|
+
csatStatus: string | null;
|
|
70712
70771
|
cxlog: {
|
|
70713
70772
|
id: string;
|
|
70714
70773
|
channel: string | null;
|
|
@@ -70827,7 +70886,7 @@ export declare const mainChatContract: {
|
|
|
70827
70886
|
previewUrl: string;
|
|
70828
70887
|
imageSetId: string;
|
|
70829
70888
|
repliedMessage: {
|
|
70830
|
-
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";
|
|
70889
|
+
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";
|
|
70831
70890
|
message: string;
|
|
70832
70891
|
id: string;
|
|
70833
70892
|
url: string;
|
|
@@ -71038,7 +71097,7 @@ export declare const mainChatContract: {
|
|
|
71038
71097
|
template?: any;
|
|
71039
71098
|
metadata?: any;
|
|
71040
71099
|
fromMessage?: {
|
|
71041
|
-
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";
|
|
71100
|
+
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";
|
|
71042
71101
|
message: string;
|
|
71043
71102
|
id: string;
|
|
71044
71103
|
url: string;
|
|
@@ -71473,6 +71532,7 @@ export declare const mainChatContract: {
|
|
|
71473
71532
|
closedAt: Date;
|
|
71474
71533
|
lastMessageAt: Date | null;
|
|
71475
71534
|
isBotRoom: boolean;
|
|
71535
|
+
csatStatus: string | null;
|
|
71476
71536
|
cxlog: {
|
|
71477
71537
|
id: string;
|
|
71478
71538
|
channel: string | null;
|
|
@@ -71591,7 +71651,7 @@ export declare const mainChatContract: {
|
|
|
71591
71651
|
previewUrl: string;
|
|
71592
71652
|
imageSetId: string;
|
|
71593
71653
|
repliedMessage: {
|
|
71594
|
-
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";
|
|
71654
|
+
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";
|
|
71595
71655
|
message: string;
|
|
71596
71656
|
id: string;
|
|
71597
71657
|
url: string;
|
|
@@ -71805,7 +71865,7 @@ export declare const mainChatContract: {
|
|
|
71805
71865
|
}>;
|
|
71806
71866
|
}, "strip", z.ZodTypeAny, {
|
|
71807
71867
|
data: {
|
|
71808
|
-
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";
|
|
71868
|
+
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";
|
|
71809
71869
|
message: string;
|
|
71810
71870
|
id: string;
|
|
71811
71871
|
url: string;
|
|
@@ -72240,6 +72300,7 @@ export declare const mainChatContract: {
|
|
|
72240
72300
|
closedAt: Date;
|
|
72241
72301
|
lastMessageAt: Date | null;
|
|
72242
72302
|
isBotRoom: boolean;
|
|
72303
|
+
csatStatus: string | null;
|
|
72243
72304
|
cxlog: {
|
|
72244
72305
|
id: string;
|
|
72245
72306
|
channel: string | null;
|
|
@@ -72358,7 +72419,7 @@ export declare const mainChatContract: {
|
|
|
72358
72419
|
previewUrl: string;
|
|
72359
72420
|
imageSetId: string;
|
|
72360
72421
|
repliedMessage: {
|
|
72361
|
-
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";
|
|
72422
|
+
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";
|
|
72362
72423
|
message: string;
|
|
72363
72424
|
id: string;
|
|
72364
72425
|
url: string;
|
|
@@ -72569,7 +72630,7 @@ export declare const mainChatContract: {
|
|
|
72569
72630
|
template?: any;
|
|
72570
72631
|
metadata?: any;
|
|
72571
72632
|
fromMessage?: {
|
|
72572
|
-
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";
|
|
72633
|
+
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";
|
|
72573
72634
|
message: string;
|
|
72574
72635
|
id: string;
|
|
72575
72636
|
url: string;
|
|
@@ -73004,6 +73065,7 @@ export declare const mainChatContract: {
|
|
|
73004
73065
|
closedAt: Date;
|
|
73005
73066
|
lastMessageAt: Date | null;
|
|
73006
73067
|
isBotRoom: boolean;
|
|
73068
|
+
csatStatus: string | null;
|
|
73007
73069
|
cxlog: {
|
|
73008
73070
|
id: string;
|
|
73009
73071
|
channel: string | null;
|
|
@@ -73122,7 +73184,7 @@ export declare const mainChatContract: {
|
|
|
73122
73184
|
previewUrl: string;
|
|
73123
73185
|
imageSetId: string;
|
|
73124
73186
|
repliedMessage: {
|
|
73125
|
-
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";
|
|
73187
|
+
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";
|
|
73126
73188
|
message: string;
|
|
73127
73189
|
id: string;
|
|
73128
73190
|
url: string;
|
|
@@ -73337,7 +73399,7 @@ export declare const mainChatContract: {
|
|
|
73337
73399
|
requestId: string;
|
|
73338
73400
|
}, {
|
|
73339
73401
|
data: {
|
|
73340
|
-
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";
|
|
73402
|
+
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";
|
|
73341
73403
|
message: string;
|
|
73342
73404
|
id: string;
|
|
73343
73405
|
url: string;
|
|
@@ -73772,6 +73834,7 @@ export declare const mainChatContract: {
|
|
|
73772
73834
|
closedAt: Date;
|
|
73773
73835
|
lastMessageAt: Date | null;
|
|
73774
73836
|
isBotRoom: boolean;
|
|
73837
|
+
csatStatus: string | null;
|
|
73775
73838
|
cxlog: {
|
|
73776
73839
|
id: string;
|
|
73777
73840
|
channel: string | null;
|
|
@@ -73890,7 +73953,7 @@ export declare const mainChatContract: {
|
|
|
73890
73953
|
previewUrl: string;
|
|
73891
73954
|
imageSetId: string;
|
|
73892
73955
|
repliedMessage: {
|
|
73893
|
-
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";
|
|
73956
|
+
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";
|
|
73894
73957
|
message: string;
|
|
73895
73958
|
id: string;
|
|
73896
73959
|
url: string;
|
|
@@ -74101,7 +74164,7 @@ export declare const mainChatContract: {
|
|
|
74101
74164
|
template?: any;
|
|
74102
74165
|
metadata?: any;
|
|
74103
74166
|
fromMessage?: {
|
|
74104
|
-
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";
|
|
74167
|
+
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";
|
|
74105
74168
|
message: string;
|
|
74106
74169
|
id: string;
|
|
74107
74170
|
url: string;
|
|
@@ -74536,6 +74599,7 @@ export declare const mainChatContract: {
|
|
|
74536
74599
|
closedAt: Date;
|
|
74537
74600
|
lastMessageAt: Date | null;
|
|
74538
74601
|
isBotRoom: boolean;
|
|
74602
|
+
csatStatus: string | null;
|
|
74539
74603
|
cxlog: {
|
|
74540
74604
|
id: string;
|
|
74541
74605
|
channel: string | null;
|
|
@@ -74654,7 +74718,7 @@ export declare const mainChatContract: {
|
|
|
74654
74718
|
previewUrl: string;
|
|
74655
74719
|
imageSetId: string;
|
|
74656
74720
|
repliedMessage: {
|
|
74657
|
-
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";
|
|
74721
|
+
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";
|
|
74658
74722
|
message: string;
|
|
74659
74723
|
id: string;
|
|
74660
74724
|
url: string;
|
|
@@ -75046,7 +75110,7 @@ export declare const mainChatContract: {
|
|
|
75046
75110
|
page: z.ZodNumber;
|
|
75047
75111
|
pageSize: z.ZodNumber;
|
|
75048
75112
|
data: z.ZodArray<z.ZodObject<{
|
|
75049
|
-
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"]>;
|
|
75113
|
+
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"]>;
|
|
75050
75114
|
message: z.ZodString;
|
|
75051
75115
|
id: z.ZodString;
|
|
75052
75116
|
url: z.ZodString;
|
|
@@ -76563,6 +76627,7 @@ export declare const mainChatContract: {
|
|
|
76563
76627
|
channelId: string;
|
|
76564
76628
|
socialPlatformId: string;
|
|
76565
76629
|
}>;
|
|
76630
|
+
csatStatus: z.ZodNullable<z.ZodString>;
|
|
76566
76631
|
actor: z.ZodObject<{
|
|
76567
76632
|
id: z.ZodString;
|
|
76568
76633
|
createdAt: z.ZodDate;
|
|
@@ -78405,6 +78470,7 @@ export declare const mainChatContract: {
|
|
|
78405
78470
|
closedAt: Date;
|
|
78406
78471
|
lastMessageAt: Date | null;
|
|
78407
78472
|
isBotRoom: boolean;
|
|
78473
|
+
csatStatus: string | null;
|
|
78408
78474
|
cxlog: {
|
|
78409
78475
|
id: string;
|
|
78410
78476
|
channel: string | null;
|
|
@@ -78832,6 +78898,7 @@ export declare const mainChatContract: {
|
|
|
78832
78898
|
closedAt: Date;
|
|
78833
78899
|
lastMessageAt: Date | null;
|
|
78834
78900
|
isBotRoom: boolean;
|
|
78901
|
+
csatStatus: string | null;
|
|
78835
78902
|
cxlog: {
|
|
78836
78903
|
id: string;
|
|
78837
78904
|
channel: string | null;
|
|
@@ -78972,7 +79039,7 @@ export declare const mainChatContract: {
|
|
|
78972
79039
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
78973
79040
|
message: z.ZodString;
|
|
78974
79041
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
|
78975
|
-
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"]>;
|
|
79042
|
+
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"]>;
|
|
78976
79043
|
readAt: z.ZodDate;
|
|
78977
79044
|
metadata: z.ZodAny;
|
|
78978
79045
|
platformId: z.ZodString;
|
|
@@ -79630,7 +79697,7 @@ export declare const mainChatContract: {
|
|
|
79630
79697
|
};
|
|
79631
79698
|
}>;
|
|
79632
79699
|
}, "strip", z.ZodTypeAny, {
|
|
79633
|
-
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";
|
|
79700
|
+
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";
|
|
79634
79701
|
message: string;
|
|
79635
79702
|
id: string;
|
|
79636
79703
|
url: string;
|
|
@@ -79792,7 +79859,7 @@ export declare const mainChatContract: {
|
|
|
79792
79859
|
metadata?: any;
|
|
79793
79860
|
template?: any;
|
|
79794
79861
|
}, {
|
|
79795
|
-
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";
|
|
79862
|
+
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";
|
|
79796
79863
|
message: string;
|
|
79797
79864
|
id: string;
|
|
79798
79865
|
url: string;
|
|
@@ -80167,7 +80234,7 @@ export declare const mainChatContract: {
|
|
|
80167
80234
|
updatedAt: z.ZodDate;
|
|
80168
80235
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
80169
80236
|
message: z.ZodNullable<z.ZodString>;
|
|
80170
|
-
type: z.ZodUnion<[z.ZodEnum<["text", "added_photos", "added_video", "shared_story", "mobile_status_update", "no_data"]>, 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"]>]>;
|
|
80237
|
+
type: z.ZodUnion<[z.ZodEnum<["text", "added_photos", "added_video", "shared_story", "mobile_status_update", "no_data"]>, 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"]>]>;
|
|
80171
80238
|
metadata: z.ZodAny;
|
|
80172
80239
|
platformId: z.ZodString;
|
|
80173
80240
|
platformMessageId: z.ZodString;
|
|
@@ -81975,7 +82042,7 @@ export declare const mainChatContract: {
|
|
|
81975
82042
|
}>;
|
|
81976
82043
|
permalinkURL: z.ZodString;
|
|
81977
82044
|
}, "strip", z.ZodTypeAny, {
|
|
81978
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "added_photos" | "added_video" | "shared_story" | "mobile_status_update" | "no_data" | "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";
|
|
82045
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "added_photos" | "added_video" | "shared_story" | "mobile_status_update" | "no_data" | "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";
|
|
81979
82046
|
message: string | null;
|
|
81980
82047
|
id: string;
|
|
81981
82048
|
channel: {
|
|
@@ -82256,7 +82323,7 @@ export declare const mainChatContract: {
|
|
|
82256
82323
|
metadata?: any;
|
|
82257
82324
|
template?: any;
|
|
82258
82325
|
}, {
|
|
82259
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "added_photos" | "added_video" | "shared_story" | "mobile_status_update" | "no_data" | "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";
|
|
82326
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "added_photos" | "added_video" | "shared_story" | "mobile_status_update" | "no_data" | "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";
|
|
82260
82327
|
message: string | null;
|
|
82261
82328
|
id: string;
|
|
82262
82329
|
channel: {
|
|
@@ -82539,7 +82606,7 @@ export declare const mainChatContract: {
|
|
|
82539
82606
|
}>>;
|
|
82540
82607
|
replyReaction: z.ZodNullable<z.ZodString>;
|
|
82541
82608
|
}, "strip", z.ZodTypeAny, {
|
|
82542
|
-
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";
|
|
82609
|
+
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";
|
|
82543
82610
|
message: string;
|
|
82544
82611
|
id: string;
|
|
82545
82612
|
url: string;
|
|
@@ -82974,6 +83041,7 @@ export declare const mainChatContract: {
|
|
|
82974
83041
|
closedAt: Date;
|
|
82975
83042
|
lastMessageAt: Date | null;
|
|
82976
83043
|
isBotRoom: boolean;
|
|
83044
|
+
csatStatus: string | null;
|
|
82977
83045
|
cxlog: {
|
|
82978
83046
|
id: string;
|
|
82979
83047
|
channel: string | null;
|
|
@@ -83092,7 +83160,7 @@ export declare const mainChatContract: {
|
|
|
83092
83160
|
previewUrl: string;
|
|
83093
83161
|
imageSetId: string;
|
|
83094
83162
|
repliedMessage: {
|
|
83095
|
-
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";
|
|
83163
|
+
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";
|
|
83096
83164
|
message: string;
|
|
83097
83165
|
id: string;
|
|
83098
83166
|
url: string;
|
|
@@ -83302,7 +83370,7 @@ export declare const mainChatContract: {
|
|
|
83302
83370
|
parentMessageId: string | null;
|
|
83303
83371
|
feedPostId: string | null;
|
|
83304
83372
|
feedPost: {
|
|
83305
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "added_photos" | "added_video" | "shared_story" | "mobile_status_update" | "no_data" | "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";
|
|
83373
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "added_photos" | "added_video" | "shared_story" | "mobile_status_update" | "no_data" | "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";
|
|
83306
83374
|
message: string | null;
|
|
83307
83375
|
id: string;
|
|
83308
83376
|
channel: {
|
|
@@ -83588,7 +83656,7 @@ export declare const mainChatContract: {
|
|
|
83588
83656
|
template?: any;
|
|
83589
83657
|
metadata?: any;
|
|
83590
83658
|
}, {
|
|
83591
|
-
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";
|
|
83659
|
+
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";
|
|
83592
83660
|
message: string;
|
|
83593
83661
|
id: string;
|
|
83594
83662
|
url: string;
|
|
@@ -84023,6 +84091,7 @@ export declare const mainChatContract: {
|
|
|
84023
84091
|
closedAt: Date;
|
|
84024
84092
|
lastMessageAt: Date | null;
|
|
84025
84093
|
isBotRoom: boolean;
|
|
84094
|
+
csatStatus: string | null;
|
|
84026
84095
|
cxlog: {
|
|
84027
84096
|
id: string;
|
|
84028
84097
|
channel: string | null;
|
|
@@ -84141,7 +84210,7 @@ export declare const mainChatContract: {
|
|
|
84141
84210
|
previewUrl: string;
|
|
84142
84211
|
imageSetId: string;
|
|
84143
84212
|
repliedMessage: {
|
|
84144
|
-
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";
|
|
84213
|
+
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";
|
|
84145
84214
|
message: string;
|
|
84146
84215
|
id: string;
|
|
84147
84216
|
url: string;
|
|
@@ -84351,7 +84420,7 @@ export declare const mainChatContract: {
|
|
|
84351
84420
|
parentMessageId: string | null;
|
|
84352
84421
|
feedPostId: string | null;
|
|
84353
84422
|
feedPost: {
|
|
84354
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "added_photos" | "added_video" | "shared_story" | "mobile_status_update" | "no_data" | "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";
|
|
84423
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "added_photos" | "added_video" | "shared_story" | "mobile_status_update" | "no_data" | "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";
|
|
84355
84424
|
message: string | null;
|
|
84356
84425
|
id: string;
|
|
84357
84426
|
channel: {
|
|
@@ -84639,7 +84708,7 @@ export declare const mainChatContract: {
|
|
|
84639
84708
|
}>, "many">;
|
|
84640
84709
|
}, "strip", z.ZodTypeAny, {
|
|
84641
84710
|
data: {
|
|
84642
|
-
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";
|
|
84711
|
+
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";
|
|
84643
84712
|
message: string;
|
|
84644
84713
|
id: string;
|
|
84645
84714
|
url: string;
|
|
@@ -85074,6 +85143,7 @@ export declare const mainChatContract: {
|
|
|
85074
85143
|
closedAt: Date;
|
|
85075
85144
|
lastMessageAt: Date | null;
|
|
85076
85145
|
isBotRoom: boolean;
|
|
85146
|
+
csatStatus: string | null;
|
|
85077
85147
|
cxlog: {
|
|
85078
85148
|
id: string;
|
|
85079
85149
|
channel: string | null;
|
|
@@ -85192,7 +85262,7 @@ export declare const mainChatContract: {
|
|
|
85192
85262
|
previewUrl: string;
|
|
85193
85263
|
imageSetId: string;
|
|
85194
85264
|
repliedMessage: {
|
|
85195
|
-
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";
|
|
85265
|
+
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";
|
|
85196
85266
|
message: string;
|
|
85197
85267
|
id: string;
|
|
85198
85268
|
url: string;
|
|
@@ -85402,7 +85472,7 @@ export declare const mainChatContract: {
|
|
|
85402
85472
|
parentMessageId: string | null;
|
|
85403
85473
|
feedPostId: string | null;
|
|
85404
85474
|
feedPost: {
|
|
85405
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "added_photos" | "added_video" | "shared_story" | "mobile_status_update" | "no_data" | "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";
|
|
85475
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "added_photos" | "added_video" | "shared_story" | "mobile_status_update" | "no_data" | "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";
|
|
85406
85476
|
message: string | null;
|
|
85407
85477
|
id: string;
|
|
85408
85478
|
channel: {
|
|
@@ -85694,7 +85764,7 @@ export declare const mainChatContract: {
|
|
|
85694
85764
|
requestId: string;
|
|
85695
85765
|
}, {
|
|
85696
85766
|
data: {
|
|
85697
|
-
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";
|
|
85767
|
+
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";
|
|
85698
85768
|
message: string;
|
|
85699
85769
|
id: string;
|
|
85700
85770
|
url: string;
|
|
@@ -86129,6 +86199,7 @@ export declare const mainChatContract: {
|
|
|
86129
86199
|
closedAt: Date;
|
|
86130
86200
|
lastMessageAt: Date | null;
|
|
86131
86201
|
isBotRoom: boolean;
|
|
86202
|
+
csatStatus: string | null;
|
|
86132
86203
|
cxlog: {
|
|
86133
86204
|
id: string;
|
|
86134
86205
|
channel: string | null;
|
|
@@ -86247,7 +86318,7 @@ export declare const mainChatContract: {
|
|
|
86247
86318
|
previewUrl: string;
|
|
86248
86319
|
imageSetId: string;
|
|
86249
86320
|
repliedMessage: {
|
|
86250
|
-
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";
|
|
86321
|
+
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";
|
|
86251
86322
|
message: string;
|
|
86252
86323
|
id: string;
|
|
86253
86324
|
url: string;
|
|
@@ -86457,7 +86528,7 @@ export declare const mainChatContract: {
|
|
|
86457
86528
|
parentMessageId: string | null;
|
|
86458
86529
|
feedPostId: string | null;
|
|
86459
86530
|
feedPost: {
|
|
86460
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "added_photos" | "added_video" | "shared_story" | "mobile_status_update" | "no_data" | "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";
|
|
86531
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "added_photos" | "added_video" | "shared_story" | "mobile_status_update" | "no_data" | "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";
|
|
86461
86532
|
message: string | null;
|
|
86462
86533
|
id: string;
|
|
86463
86534
|
channel: {
|
|
@@ -87849,6 +87920,7 @@ export declare const mainChatContract: {
|
|
|
87849
87920
|
channelId: string;
|
|
87850
87921
|
socialPlatformId: string;
|
|
87851
87922
|
}>;
|
|
87923
|
+
csatStatus: z.ZodNullable<z.ZodString>;
|
|
87852
87924
|
actor: z.ZodObject<{
|
|
87853
87925
|
id: z.ZodString;
|
|
87854
87926
|
createdAt: z.ZodDate;
|
|
@@ -89691,6 +89763,7 @@ export declare const mainChatContract: {
|
|
|
89691
89763
|
closedAt: Date;
|
|
89692
89764
|
lastMessageAt: Date | null;
|
|
89693
89765
|
isBotRoom: boolean;
|
|
89766
|
+
csatStatus: string | null;
|
|
89694
89767
|
cxlog: {
|
|
89695
89768
|
id: string;
|
|
89696
89769
|
channel: string | null;
|
|
@@ -90118,6 +90191,7 @@ export declare const mainChatContract: {
|
|
|
90118
90191
|
closedAt: Date;
|
|
90119
90192
|
lastMessageAt: Date | null;
|
|
90120
90193
|
isBotRoom: boolean;
|
|
90194
|
+
csatStatus: string | null;
|
|
90121
90195
|
cxlog: {
|
|
90122
90196
|
id: string;
|
|
90123
90197
|
channel: string | null;
|
|
@@ -90547,6 +90621,7 @@ export declare const mainChatContract: {
|
|
|
90547
90621
|
closedAt: Date;
|
|
90548
90622
|
lastMessageAt: Date | null;
|
|
90549
90623
|
isBotRoom: boolean;
|
|
90624
|
+
csatStatus: string | null;
|
|
90550
90625
|
cxlog: {
|
|
90551
90626
|
id: string;
|
|
90552
90627
|
channel: string | null;
|
|
@@ -90977,6 +91052,7 @@ export declare const mainChatContract: {
|
|
|
90977
91052
|
closedAt: Date;
|
|
90978
91053
|
lastMessageAt: Date | null;
|
|
90979
91054
|
isBotRoom: boolean;
|
|
91055
|
+
csatStatus: string | null;
|
|
90980
91056
|
cxlog: {
|
|
90981
91057
|
id: string;
|
|
90982
91058
|
channel: string | null;
|
|
@@ -92192,6 +92268,7 @@ export declare const mainChatContract: {
|
|
|
92192
92268
|
channelId: string;
|
|
92193
92269
|
socialPlatformId: string;
|
|
92194
92270
|
}>;
|
|
92271
|
+
csatStatus: z.ZodNullable<z.ZodString>;
|
|
92195
92272
|
actor: z.ZodObject<{
|
|
92196
92273
|
id: z.ZodString;
|
|
92197
92274
|
createdAt: z.ZodDate;
|
|
@@ -94034,6 +94111,7 @@ export declare const mainChatContract: {
|
|
|
94034
94111
|
closedAt: Date;
|
|
94035
94112
|
lastMessageAt: Date | null;
|
|
94036
94113
|
isBotRoom: boolean;
|
|
94114
|
+
csatStatus: string | null;
|
|
94037
94115
|
cxlog: {
|
|
94038
94116
|
id: string;
|
|
94039
94117
|
channel: string | null;
|
|
@@ -94461,6 +94539,7 @@ export declare const mainChatContract: {
|
|
|
94461
94539
|
closedAt: Date;
|
|
94462
94540
|
lastMessageAt: Date | null;
|
|
94463
94541
|
isBotRoom: boolean;
|
|
94542
|
+
csatStatus: string | null;
|
|
94464
94543
|
cxlog: {
|
|
94465
94544
|
id: string;
|
|
94466
94545
|
channel: string | null;
|
|
@@ -94890,6 +94969,7 @@ export declare const mainChatContract: {
|
|
|
94890
94969
|
closedAt: Date;
|
|
94891
94970
|
lastMessageAt: Date | null;
|
|
94892
94971
|
isBotRoom: boolean;
|
|
94972
|
+
csatStatus: string | null;
|
|
94893
94973
|
cxlog: {
|
|
94894
94974
|
id: string;
|
|
94895
94975
|
channel: string | null;
|
|
@@ -95320,6 +95400,7 @@ export declare const mainChatContract: {
|
|
|
95320
95400
|
closedAt: Date;
|
|
95321
95401
|
lastMessageAt: Date | null;
|
|
95322
95402
|
isBotRoom: boolean;
|
|
95403
|
+
csatStatus: string | null;
|
|
95323
95404
|
cxlog: {
|
|
95324
95405
|
id: string;
|
|
95325
95406
|
channel: string | null;
|
|
@@ -97596,6 +97677,7 @@ export declare const mainChatContract: {
|
|
|
97596
97677
|
channelId: string;
|
|
97597
97678
|
socialPlatformId: string;
|
|
97598
97679
|
}>;
|
|
97680
|
+
csatStatus: z.ZodNullable<z.ZodString>;
|
|
97599
97681
|
actor: z.ZodObject<{
|
|
97600
97682
|
id: z.ZodString;
|
|
97601
97683
|
createdAt: z.ZodDate;
|
|
@@ -99438,6 +99520,7 @@ export declare const mainChatContract: {
|
|
|
99438
99520
|
closedAt: Date;
|
|
99439
99521
|
lastMessageAt: Date | null;
|
|
99440
99522
|
isBotRoom: boolean;
|
|
99523
|
+
csatStatus: string | null;
|
|
99441
99524
|
cxlog: {
|
|
99442
99525
|
id: string;
|
|
99443
99526
|
channel: string | null;
|
|
@@ -99865,6 +99948,7 @@ export declare const mainChatContract: {
|
|
|
99865
99948
|
closedAt: Date;
|
|
99866
99949
|
lastMessageAt: Date | null;
|
|
99867
99950
|
isBotRoom: boolean;
|
|
99951
|
+
csatStatus: string | null;
|
|
99868
99952
|
cxlog: {
|
|
99869
99953
|
id: string;
|
|
99870
99954
|
channel: string | null;
|
|
@@ -100294,6 +100378,7 @@ export declare const mainChatContract: {
|
|
|
100294
100378
|
closedAt: Date;
|
|
100295
100379
|
lastMessageAt: Date | null;
|
|
100296
100380
|
isBotRoom: boolean;
|
|
100381
|
+
csatStatus: string | null;
|
|
100297
100382
|
cxlog: {
|
|
100298
100383
|
id: string;
|
|
100299
100384
|
channel: string | null;
|
|
@@ -100724,6 +100809,7 @@ export declare const mainChatContract: {
|
|
|
100724
100809
|
closedAt: Date;
|
|
100725
100810
|
lastMessageAt: Date | null;
|
|
100726
100811
|
isBotRoom: boolean;
|
|
100812
|
+
csatStatus: string | null;
|
|
100727
100813
|
cxlog: {
|
|
100728
100814
|
id: string;
|
|
100729
100815
|
channel: string | null;
|
|
@@ -100856,17 +100942,17 @@ export declare const initiateMessageContract: {
|
|
|
100856
100942
|
contactId: z.ZodOptional<z.ZodString>;
|
|
100857
100943
|
message: z.ZodObject<{
|
|
100858
100944
|
message: z.ZodOptional<z.ZodString>;
|
|
100859
|
-
messageType: 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"]>;
|
|
100945
|
+
messageType: 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"]>;
|
|
100860
100946
|
}, "strip", z.ZodTypeAny, {
|
|
100861
|
-
messageType: "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";
|
|
100947
|
+
messageType: "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";
|
|
100862
100948
|
message?: string | undefined;
|
|
100863
100949
|
}, {
|
|
100864
|
-
messageType: "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";
|
|
100950
|
+
messageType: "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";
|
|
100865
100951
|
message?: string | undefined;
|
|
100866
100952
|
}>;
|
|
100867
100953
|
}, "strip", z.ZodTypeAny, {
|
|
100868
100954
|
message: {
|
|
100869
|
-
messageType: "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";
|
|
100955
|
+
messageType: "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";
|
|
100870
100956
|
message?: string | undefined;
|
|
100871
100957
|
};
|
|
100872
100958
|
channelId: string;
|
|
@@ -100874,7 +100960,7 @@ export declare const initiateMessageContract: {
|
|
|
100874
100960
|
contactId?: string | undefined;
|
|
100875
100961
|
}, {
|
|
100876
100962
|
message: {
|
|
100877
|
-
messageType: "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";
|
|
100963
|
+
messageType: "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";
|
|
100878
100964
|
message?: string | undefined;
|
|
100879
100965
|
};
|
|
100880
100966
|
channelId: string;
|
|
@@ -100892,7 +100978,7 @@ export declare const initiateMessageContract: {
|
|
|
100892
100978
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
100893
100979
|
message: z.ZodString;
|
|
100894
100980
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
|
100895
|
-
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"]>;
|
|
100981
|
+
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"]>;
|
|
100896
100982
|
readAt: z.ZodDate;
|
|
100897
100983
|
metadata: z.ZodAny;
|
|
100898
100984
|
platformId: z.ZodString;
|
|
@@ -101966,6 +102052,7 @@ export declare const initiateMessageContract: {
|
|
|
101966
102052
|
channelId: string;
|
|
101967
102053
|
socialPlatformId: string;
|
|
101968
102054
|
}>;
|
|
102055
|
+
csatStatus: z.ZodNullable<z.ZodString>;
|
|
101969
102056
|
actor: z.ZodObject<{
|
|
101970
102057
|
id: z.ZodString;
|
|
101971
102058
|
createdAt: z.ZodDate;
|
|
@@ -103808,6 +103895,7 @@ export declare const initiateMessageContract: {
|
|
|
103808
103895
|
closedAt: Date;
|
|
103809
103896
|
lastMessageAt: Date | null;
|
|
103810
103897
|
isBotRoom: boolean;
|
|
103898
|
+
csatStatus: string | null;
|
|
103811
103899
|
cxlog: {
|
|
103812
103900
|
id: string;
|
|
103813
103901
|
channel: string | null;
|
|
@@ -104235,6 +104323,7 @@ export declare const initiateMessageContract: {
|
|
|
104235
104323
|
closedAt: Date;
|
|
104236
104324
|
lastMessageAt: Date | null;
|
|
104237
104325
|
isBotRoom: boolean;
|
|
104326
|
+
csatStatus: string | null;
|
|
104238
104327
|
cxlog: {
|
|
104239
104328
|
id: string;
|
|
104240
104329
|
channel: string | null;
|
|
@@ -104378,7 +104467,7 @@ export declare const initiateMessageContract: {
|
|
|
104378
104467
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
104379
104468
|
message: z.ZodString;
|
|
104380
104469
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
|
104381
|
-
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"]>;
|
|
104470
|
+
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"]>;
|
|
104382
104471
|
readAt: z.ZodDate;
|
|
104383
104472
|
metadata: z.ZodAny;
|
|
104384
104473
|
platformId: z.ZodString;
|
|
@@ -105036,7 +105125,7 @@ export declare const initiateMessageContract: {
|
|
|
105036
105125
|
};
|
|
105037
105126
|
}>;
|
|
105038
105127
|
}, "strip", z.ZodTypeAny, {
|
|
105039
|
-
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";
|
|
105128
|
+
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";
|
|
105040
105129
|
message: string;
|
|
105041
105130
|
id: string;
|
|
105042
105131
|
url: string;
|
|
@@ -105198,7 +105287,7 @@ export declare const initiateMessageContract: {
|
|
|
105198
105287
|
metadata?: any;
|
|
105199
105288
|
template?: any;
|
|
105200
105289
|
}, {
|
|
105201
|
-
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";
|
|
105290
|
+
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";
|
|
105202
105291
|
message: string;
|
|
105203
105292
|
id: string;
|
|
105204
105293
|
url: string;
|
|
@@ -106000,7 +106089,7 @@ export declare const initiateMessageContract: {
|
|
|
106000
106089
|
editedMessageid: z.ZodString;
|
|
106001
106090
|
label: z.ZodOptional<z.ZodString>;
|
|
106002
106091
|
}, "strip", z.ZodTypeAny, {
|
|
106003
|
-
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";
|
|
106092
|
+
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";
|
|
106004
106093
|
message: string;
|
|
106005
106094
|
id: string;
|
|
106006
106095
|
url: string;
|
|
@@ -106435,6 +106524,7 @@ export declare const initiateMessageContract: {
|
|
|
106435
106524
|
closedAt: Date;
|
|
106436
106525
|
lastMessageAt: Date | null;
|
|
106437
106526
|
isBotRoom: boolean;
|
|
106527
|
+
csatStatus: string | null;
|
|
106438
106528
|
cxlog: {
|
|
106439
106529
|
id: string;
|
|
106440
106530
|
channel: string | null;
|
|
@@ -106553,7 +106643,7 @@ export declare const initiateMessageContract: {
|
|
|
106553
106643
|
previewUrl: string;
|
|
106554
106644
|
imageSetId: string;
|
|
106555
106645
|
repliedMessage: {
|
|
106556
|
-
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";
|
|
106646
|
+
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";
|
|
106557
106647
|
message: string;
|
|
106558
106648
|
id: string;
|
|
106559
106649
|
url: string;
|
|
@@ -106764,7 +106854,7 @@ export declare const initiateMessageContract: {
|
|
|
106764
106854
|
template?: any;
|
|
106765
106855
|
label?: string | undefined;
|
|
106766
106856
|
}, {
|
|
106767
|
-
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";
|
|
106857
|
+
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";
|
|
106768
106858
|
message: string;
|
|
106769
106859
|
id: string;
|
|
106770
106860
|
url: string;
|
|
@@ -107199,6 +107289,7 @@ export declare const initiateMessageContract: {
|
|
|
107199
107289
|
closedAt: Date;
|
|
107200
107290
|
lastMessageAt: Date | null;
|
|
107201
107291
|
isBotRoom: boolean;
|
|
107292
|
+
csatStatus: string | null;
|
|
107202
107293
|
cxlog: {
|
|
107203
107294
|
id: string;
|
|
107204
107295
|
channel: string | null;
|
|
@@ -107317,7 +107408,7 @@ export declare const initiateMessageContract: {
|
|
|
107317
107408
|
previewUrl: string;
|
|
107318
107409
|
imageSetId: string;
|
|
107319
107410
|
repliedMessage: {
|
|
107320
|
-
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";
|
|
107411
|
+
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";
|
|
107321
107412
|
message: string;
|
|
107322
107413
|
id: string;
|
|
107323
107414
|
url: string;
|
|
@@ -107530,7 +107621,7 @@ export declare const initiateMessageContract: {
|
|
|
107530
107621
|
}>;
|
|
107531
107622
|
}, "strip", z.ZodTypeAny, {
|
|
107532
107623
|
data: {
|
|
107533
|
-
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";
|
|
107624
|
+
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";
|
|
107534
107625
|
message: string;
|
|
107535
107626
|
id: string;
|
|
107536
107627
|
url: string;
|
|
@@ -107965,6 +108056,7 @@ export declare const initiateMessageContract: {
|
|
|
107965
108056
|
closedAt: Date;
|
|
107966
108057
|
lastMessageAt: Date | null;
|
|
107967
108058
|
isBotRoom: boolean;
|
|
108059
|
+
csatStatus: string | null;
|
|
107968
108060
|
cxlog: {
|
|
107969
108061
|
id: string;
|
|
107970
108062
|
channel: string | null;
|
|
@@ -108083,7 +108175,7 @@ export declare const initiateMessageContract: {
|
|
|
108083
108175
|
previewUrl: string;
|
|
108084
108176
|
imageSetId: string;
|
|
108085
108177
|
repliedMessage: {
|
|
108086
|
-
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";
|
|
108178
|
+
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";
|
|
108087
108179
|
message: string;
|
|
108088
108180
|
id: string;
|
|
108089
108181
|
url: string;
|
|
@@ -108297,7 +108389,7 @@ export declare const initiateMessageContract: {
|
|
|
108297
108389
|
requestId: string;
|
|
108298
108390
|
}, {
|
|
108299
108391
|
data: {
|
|
108300
|
-
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";
|
|
108392
|
+
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";
|
|
108301
108393
|
message: string;
|
|
108302
108394
|
id: string;
|
|
108303
108395
|
url: string;
|
|
@@ -108732,6 +108824,7 @@ export declare const initiateMessageContract: {
|
|
|
108732
108824
|
closedAt: Date;
|
|
108733
108825
|
lastMessageAt: Date | null;
|
|
108734
108826
|
isBotRoom: boolean;
|
|
108827
|
+
csatStatus: string | null;
|
|
108735
108828
|
cxlog: {
|
|
108736
108829
|
id: string;
|
|
108737
108830
|
channel: string | null;
|
|
@@ -108850,7 +108943,7 @@ export declare const initiateMessageContract: {
|
|
|
108850
108943
|
previewUrl: string;
|
|
108851
108944
|
imageSetId: string;
|
|
108852
108945
|
repliedMessage: {
|
|
108853
|
-
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";
|
|
108946
|
+
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";
|
|
108854
108947
|
message: string;
|
|
108855
108948
|
id: string;
|
|
108856
108949
|
url: string;
|
|
@@ -109107,7 +109200,7 @@ export declare const mainChatMessageContract: {
|
|
|
109107
109200
|
sendMessage: {
|
|
109108
109201
|
body: z.ZodObject<{
|
|
109109
109202
|
roomId: z.ZodString;
|
|
109110
|
-
messageType: 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"]>;
|
|
109203
|
+
messageType: 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"]>;
|
|
109111
109204
|
message: z.ZodOptional<z.ZodString>;
|
|
109112
109205
|
messageAttachments: z.ZodOptional<z.ZodObject<{
|
|
109113
109206
|
bucketName: z.ZodString;
|
|
@@ -109366,7 +109459,7 @@ export declare const mainChatMessageContract: {
|
|
|
109366
109459
|
mentions?: string[] | undefined;
|
|
109367
109460
|
}>>;
|
|
109368
109461
|
}, "strip", z.ZodTypeAny, {
|
|
109369
|
-
messageType: "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";
|
|
109462
|
+
messageType: "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";
|
|
109370
109463
|
roomId: string;
|
|
109371
109464
|
message?: string | undefined;
|
|
109372
109465
|
messageAttachments?: {
|
|
@@ -109438,7 +109531,7 @@ export declare const mainChatMessageContract: {
|
|
|
109438
109531
|
mentions?: string[] | undefined;
|
|
109439
109532
|
} | undefined;
|
|
109440
109533
|
}, {
|
|
109441
|
-
messageType: "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";
|
|
109534
|
+
messageType: "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";
|
|
109442
109535
|
roomId: string;
|
|
109443
109536
|
message?: string | undefined;
|
|
109444
109537
|
messageAttachments?: {
|
|
@@ -109516,7 +109609,7 @@ export declare const mainChatMessageContract: {
|
|
|
109516
109609
|
200: z.ZodObject<{
|
|
109517
109610
|
requestId: z.ZodString;
|
|
109518
109611
|
data: z.ZodObject<{
|
|
109519
|
-
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"]>;
|
|
109612
|
+
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"]>;
|
|
109520
109613
|
message: z.ZodString;
|
|
109521
109614
|
id: z.ZodString;
|
|
109522
109615
|
url: z.ZodString;
|
|
@@ -111033,6 +111126,7 @@ export declare const mainChatMessageContract: {
|
|
|
111033
111126
|
channelId: string;
|
|
111034
111127
|
socialPlatformId: string;
|
|
111035
111128
|
}>;
|
|
111129
|
+
csatStatus: z.ZodNullable<z.ZodString>;
|
|
111036
111130
|
actor: z.ZodObject<{
|
|
111037
111131
|
id: z.ZodString;
|
|
111038
111132
|
createdAt: z.ZodDate;
|
|
@@ -112875,6 +112969,7 @@ export declare const mainChatMessageContract: {
|
|
|
112875
112969
|
closedAt: Date;
|
|
112876
112970
|
lastMessageAt: Date | null;
|
|
112877
112971
|
isBotRoom: boolean;
|
|
112972
|
+
csatStatus: string | null;
|
|
112878
112973
|
cxlog: {
|
|
112879
112974
|
id: string;
|
|
112880
112975
|
channel: string | null;
|
|
@@ -113302,6 +113397,7 @@ export declare const mainChatMessageContract: {
|
|
|
113302
113397
|
closedAt: Date;
|
|
113303
113398
|
lastMessageAt: Date | null;
|
|
113304
113399
|
isBotRoom: boolean;
|
|
113400
|
+
csatStatus: string | null;
|
|
113305
113401
|
cxlog: {
|
|
113306
113402
|
id: string;
|
|
113307
113403
|
channel: string | null;
|
|
@@ -113442,7 +113538,7 @@ export declare const mainChatMessageContract: {
|
|
|
113442
113538
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
113443
113539
|
message: z.ZodString;
|
|
113444
113540
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
|
113445
|
-
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"]>;
|
|
113541
|
+
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"]>;
|
|
113446
113542
|
readAt: z.ZodDate;
|
|
113447
113543
|
metadata: z.ZodAny;
|
|
113448
113544
|
platformId: z.ZodString;
|
|
@@ -114100,7 +114196,7 @@ export declare const mainChatMessageContract: {
|
|
|
114100
114196
|
};
|
|
114101
114197
|
}>;
|
|
114102
114198
|
}, "strip", z.ZodTypeAny, {
|
|
114103
|
-
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";
|
|
114199
|
+
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";
|
|
114104
114200
|
message: string;
|
|
114105
114201
|
id: string;
|
|
114106
114202
|
url: string;
|
|
@@ -114262,7 +114358,7 @@ export declare const mainChatMessageContract: {
|
|
|
114262
114358
|
metadata?: any;
|
|
114263
114359
|
template?: any;
|
|
114264
114360
|
}, {
|
|
114265
|
-
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";
|
|
114361
|
+
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";
|
|
114266
114362
|
message: string;
|
|
114267
114363
|
id: string;
|
|
114268
114364
|
url: string;
|
|
@@ -114636,7 +114732,7 @@ export declare const mainChatMessageContract: {
|
|
|
114636
114732
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
114637
114733
|
message: z.ZodString;
|
|
114638
114734
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
|
114639
|
-
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"]>;
|
|
114735
|
+
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"]>;
|
|
114640
114736
|
readAt: z.ZodDate;
|
|
114641
114737
|
metadata: z.ZodAny;
|
|
114642
114738
|
platformId: z.ZodString;
|
|
@@ -115710,6 +115806,7 @@ export declare const mainChatMessageContract: {
|
|
|
115710
115806
|
channelId: string;
|
|
115711
115807
|
socialPlatformId: string;
|
|
115712
115808
|
}>;
|
|
115809
|
+
csatStatus: z.ZodNullable<z.ZodString>;
|
|
115713
115810
|
actor: z.ZodObject<{
|
|
115714
115811
|
id: z.ZodString;
|
|
115715
115812
|
createdAt: z.ZodDate;
|
|
@@ -117552,6 +117649,7 @@ export declare const mainChatMessageContract: {
|
|
|
117552
117649
|
closedAt: Date;
|
|
117553
117650
|
lastMessageAt: Date | null;
|
|
117554
117651
|
isBotRoom: boolean;
|
|
117652
|
+
csatStatus: string | null;
|
|
117555
117653
|
cxlog: {
|
|
117556
117654
|
id: string;
|
|
117557
117655
|
channel: string | null;
|
|
@@ -117979,6 +118077,7 @@ export declare const mainChatMessageContract: {
|
|
|
117979
118077
|
closedAt: Date;
|
|
117980
118078
|
lastMessageAt: Date | null;
|
|
117981
118079
|
isBotRoom: boolean;
|
|
118080
|
+
csatStatus: string | null;
|
|
117982
118081
|
cxlog: {
|
|
117983
118082
|
id: string;
|
|
117984
118083
|
channel: string | null;
|
|
@@ -118122,7 +118221,7 @@ export declare const mainChatMessageContract: {
|
|
|
118122
118221
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
118123
118222
|
message: z.ZodString;
|
|
118124
118223
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
|
118125
|
-
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"]>;
|
|
118224
|
+
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"]>;
|
|
118126
118225
|
readAt: z.ZodDate;
|
|
118127
118226
|
metadata: z.ZodAny;
|
|
118128
118227
|
platformId: z.ZodString;
|
|
@@ -118780,7 +118879,7 @@ export declare const mainChatMessageContract: {
|
|
|
118780
118879
|
};
|
|
118781
118880
|
}>;
|
|
118782
118881
|
}, "strip", z.ZodTypeAny, {
|
|
118783
|
-
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";
|
|
118882
|
+
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";
|
|
118784
118883
|
message: string;
|
|
118785
118884
|
id: string;
|
|
118786
118885
|
url: string;
|
|
@@ -118942,7 +119041,7 @@ export declare const mainChatMessageContract: {
|
|
|
118942
119041
|
metadata?: any;
|
|
118943
119042
|
template?: any;
|
|
118944
119043
|
}, {
|
|
118945
|
-
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";
|
|
119044
|
+
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";
|
|
118946
119045
|
message: string;
|
|
118947
119046
|
id: string;
|
|
118948
119047
|
url: string;
|
|
@@ -119744,7 +119843,7 @@ export declare const mainChatMessageContract: {
|
|
|
119744
119843
|
editedMessageid: z.ZodString;
|
|
119745
119844
|
label: z.ZodOptional<z.ZodString>;
|
|
119746
119845
|
}, "strip", z.ZodTypeAny, {
|
|
119747
|
-
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";
|
|
119846
|
+
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";
|
|
119748
119847
|
message: string;
|
|
119749
119848
|
id: string;
|
|
119750
119849
|
url: string;
|
|
@@ -120179,6 +120278,7 @@ export declare const mainChatMessageContract: {
|
|
|
120179
120278
|
closedAt: Date;
|
|
120180
120279
|
lastMessageAt: Date | null;
|
|
120181
120280
|
isBotRoom: boolean;
|
|
120281
|
+
csatStatus: string | null;
|
|
120182
120282
|
cxlog: {
|
|
120183
120283
|
id: string;
|
|
120184
120284
|
channel: string | null;
|
|
@@ -120297,7 +120397,7 @@ export declare const mainChatMessageContract: {
|
|
|
120297
120397
|
previewUrl: string;
|
|
120298
120398
|
imageSetId: string;
|
|
120299
120399
|
repliedMessage: {
|
|
120300
|
-
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";
|
|
120400
|
+
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";
|
|
120301
120401
|
message: string;
|
|
120302
120402
|
id: string;
|
|
120303
120403
|
url: string;
|
|
@@ -120508,7 +120608,7 @@ export declare const mainChatMessageContract: {
|
|
|
120508
120608
|
template?: any;
|
|
120509
120609
|
label?: string | undefined;
|
|
120510
120610
|
}, {
|
|
120511
|
-
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";
|
|
120611
|
+
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";
|
|
120512
120612
|
message: string;
|
|
120513
120613
|
id: string;
|
|
120514
120614
|
url: string;
|
|
@@ -120943,6 +121043,7 @@ export declare const mainChatMessageContract: {
|
|
|
120943
121043
|
closedAt: Date;
|
|
120944
121044
|
lastMessageAt: Date | null;
|
|
120945
121045
|
isBotRoom: boolean;
|
|
121046
|
+
csatStatus: string | null;
|
|
120946
121047
|
cxlog: {
|
|
120947
121048
|
id: string;
|
|
120948
121049
|
channel: string | null;
|
|
@@ -121061,7 +121162,7 @@ export declare const mainChatMessageContract: {
|
|
|
121061
121162
|
previewUrl: string;
|
|
121062
121163
|
imageSetId: string;
|
|
121063
121164
|
repliedMessage: {
|
|
121064
|
-
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";
|
|
121165
|
+
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";
|
|
121065
121166
|
message: string;
|
|
121066
121167
|
id: string;
|
|
121067
121168
|
url: string;
|
|
@@ -121273,7 +121374,7 @@ export declare const mainChatMessageContract: {
|
|
|
121273
121374
|
label?: string | undefined;
|
|
121274
121375
|
}>>>;
|
|
121275
121376
|
}, "strip", z.ZodTypeAny, {
|
|
121276
|
-
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";
|
|
121377
|
+
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";
|
|
121277
121378
|
message: string;
|
|
121278
121379
|
id: string;
|
|
121279
121380
|
url: string;
|
|
@@ -121708,6 +121809,7 @@ export declare const mainChatMessageContract: {
|
|
|
121708
121809
|
closedAt: Date;
|
|
121709
121810
|
lastMessageAt: Date | null;
|
|
121710
121811
|
isBotRoom: boolean;
|
|
121812
|
+
csatStatus: string | null;
|
|
121711
121813
|
cxlog: {
|
|
121712
121814
|
id: string;
|
|
121713
121815
|
channel: string | null;
|
|
@@ -121826,7 +121928,7 @@ export declare const mainChatMessageContract: {
|
|
|
121826
121928
|
previewUrl: string;
|
|
121827
121929
|
imageSetId: string;
|
|
121828
121930
|
repliedMessage: {
|
|
121829
|
-
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";
|
|
121931
|
+
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";
|
|
121830
121932
|
message: string;
|
|
121831
121933
|
id: string;
|
|
121832
121934
|
url: string;
|
|
@@ -122037,7 +122139,7 @@ export declare const mainChatMessageContract: {
|
|
|
122037
122139
|
template?: any;
|
|
122038
122140
|
metadata?: any;
|
|
122039
122141
|
fromMessage?: {
|
|
122040
|
-
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";
|
|
122142
|
+
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";
|
|
122041
122143
|
message: string;
|
|
122042
122144
|
id: string;
|
|
122043
122145
|
url: string;
|
|
@@ -122472,6 +122574,7 @@ export declare const mainChatMessageContract: {
|
|
|
122472
122574
|
closedAt: Date;
|
|
122473
122575
|
lastMessageAt: Date | null;
|
|
122474
122576
|
isBotRoom: boolean;
|
|
122577
|
+
csatStatus: string | null;
|
|
122475
122578
|
cxlog: {
|
|
122476
122579
|
id: string;
|
|
122477
122580
|
channel: string | null;
|
|
@@ -122590,7 +122693,7 @@ export declare const mainChatMessageContract: {
|
|
|
122590
122693
|
previewUrl: string;
|
|
122591
122694
|
imageSetId: string;
|
|
122592
122695
|
repliedMessage: {
|
|
122593
|
-
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";
|
|
122696
|
+
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";
|
|
122594
122697
|
message: string;
|
|
122595
122698
|
id: string;
|
|
122596
122699
|
url: string;
|
|
@@ -122802,7 +122905,7 @@ export declare const mainChatMessageContract: {
|
|
|
122802
122905
|
label?: string | undefined;
|
|
122803
122906
|
} | null | undefined;
|
|
122804
122907
|
}, {
|
|
122805
|
-
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";
|
|
122908
|
+
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";
|
|
122806
122909
|
message: string;
|
|
122807
122910
|
id: string;
|
|
122808
122911
|
url: string;
|
|
@@ -123237,6 +123340,7 @@ export declare const mainChatMessageContract: {
|
|
|
123237
123340
|
closedAt: Date;
|
|
123238
123341
|
lastMessageAt: Date | null;
|
|
123239
123342
|
isBotRoom: boolean;
|
|
123343
|
+
csatStatus: string | null;
|
|
123240
123344
|
cxlog: {
|
|
123241
123345
|
id: string;
|
|
123242
123346
|
channel: string | null;
|
|
@@ -123355,7 +123459,7 @@ export declare const mainChatMessageContract: {
|
|
|
123355
123459
|
previewUrl: string;
|
|
123356
123460
|
imageSetId: string;
|
|
123357
123461
|
repliedMessage: {
|
|
123358
|
-
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";
|
|
123462
|
+
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";
|
|
123359
123463
|
message: string;
|
|
123360
123464
|
id: string;
|
|
123361
123465
|
url: string;
|
|
@@ -123566,7 +123670,7 @@ export declare const mainChatMessageContract: {
|
|
|
123566
123670
|
template?: any;
|
|
123567
123671
|
metadata?: any;
|
|
123568
123672
|
fromMessage?: {
|
|
123569
|
-
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";
|
|
123673
|
+
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";
|
|
123570
123674
|
message: string;
|
|
123571
123675
|
id: string;
|
|
123572
123676
|
url: string;
|
|
@@ -124001,6 +124105,7 @@ export declare const mainChatMessageContract: {
|
|
|
124001
124105
|
closedAt: Date;
|
|
124002
124106
|
lastMessageAt: Date | null;
|
|
124003
124107
|
isBotRoom: boolean;
|
|
124108
|
+
csatStatus: string | null;
|
|
124004
124109
|
cxlog: {
|
|
124005
124110
|
id: string;
|
|
124006
124111
|
channel: string | null;
|
|
@@ -124119,7 +124224,7 @@ export declare const mainChatMessageContract: {
|
|
|
124119
124224
|
previewUrl: string;
|
|
124120
124225
|
imageSetId: string;
|
|
124121
124226
|
repliedMessage: {
|
|
124122
|
-
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";
|
|
124227
|
+
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";
|
|
124123
124228
|
message: string;
|
|
124124
124229
|
id: string;
|
|
124125
124230
|
url: string;
|
|
@@ -124333,7 +124438,7 @@ export declare const mainChatMessageContract: {
|
|
|
124333
124438
|
}>;
|
|
124334
124439
|
}, "strip", z.ZodTypeAny, {
|
|
124335
124440
|
data: {
|
|
124336
|
-
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";
|
|
124441
|
+
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";
|
|
124337
124442
|
message: string;
|
|
124338
124443
|
id: string;
|
|
124339
124444
|
url: string;
|
|
@@ -124768,6 +124873,7 @@ export declare const mainChatMessageContract: {
|
|
|
124768
124873
|
closedAt: Date;
|
|
124769
124874
|
lastMessageAt: Date | null;
|
|
124770
124875
|
isBotRoom: boolean;
|
|
124876
|
+
csatStatus: string | null;
|
|
124771
124877
|
cxlog: {
|
|
124772
124878
|
id: string;
|
|
124773
124879
|
channel: string | null;
|
|
@@ -124886,7 +124992,7 @@ export declare const mainChatMessageContract: {
|
|
|
124886
124992
|
previewUrl: string;
|
|
124887
124993
|
imageSetId: string;
|
|
124888
124994
|
repliedMessage: {
|
|
124889
|
-
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";
|
|
124995
|
+
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";
|
|
124890
124996
|
message: string;
|
|
124891
124997
|
id: string;
|
|
124892
124998
|
url: string;
|
|
@@ -125097,7 +125203,7 @@ export declare const mainChatMessageContract: {
|
|
|
125097
125203
|
template?: any;
|
|
125098
125204
|
metadata?: any;
|
|
125099
125205
|
fromMessage?: {
|
|
125100
|
-
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";
|
|
125206
|
+
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";
|
|
125101
125207
|
message: string;
|
|
125102
125208
|
id: string;
|
|
125103
125209
|
url: string;
|
|
@@ -125532,6 +125638,7 @@ export declare const mainChatMessageContract: {
|
|
|
125532
125638
|
closedAt: Date;
|
|
125533
125639
|
lastMessageAt: Date | null;
|
|
125534
125640
|
isBotRoom: boolean;
|
|
125641
|
+
csatStatus: string | null;
|
|
125535
125642
|
cxlog: {
|
|
125536
125643
|
id: string;
|
|
125537
125644
|
channel: string | null;
|
|
@@ -125650,7 +125757,7 @@ export declare const mainChatMessageContract: {
|
|
|
125650
125757
|
previewUrl: string;
|
|
125651
125758
|
imageSetId: string;
|
|
125652
125759
|
repliedMessage: {
|
|
125653
|
-
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";
|
|
125760
|
+
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";
|
|
125654
125761
|
message: string;
|
|
125655
125762
|
id: string;
|
|
125656
125763
|
url: string;
|
|
@@ -125865,7 +125972,7 @@ export declare const mainChatMessageContract: {
|
|
|
125865
125972
|
requestId: string;
|
|
125866
125973
|
}, {
|
|
125867
125974
|
data: {
|
|
125868
|
-
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";
|
|
125975
|
+
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";
|
|
125869
125976
|
message: string;
|
|
125870
125977
|
id: string;
|
|
125871
125978
|
url: string;
|
|
@@ -126300,6 +126407,7 @@ export declare const mainChatMessageContract: {
|
|
|
126300
126407
|
closedAt: Date;
|
|
126301
126408
|
lastMessageAt: Date | null;
|
|
126302
126409
|
isBotRoom: boolean;
|
|
126410
|
+
csatStatus: string | null;
|
|
126303
126411
|
cxlog: {
|
|
126304
126412
|
id: string;
|
|
126305
126413
|
channel: string | null;
|
|
@@ -126418,7 +126526,7 @@ export declare const mainChatMessageContract: {
|
|
|
126418
126526
|
previewUrl: string;
|
|
126419
126527
|
imageSetId: string;
|
|
126420
126528
|
repliedMessage: {
|
|
126421
|
-
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";
|
|
126529
|
+
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";
|
|
126422
126530
|
message: string;
|
|
126423
126531
|
id: string;
|
|
126424
126532
|
url: string;
|
|
@@ -126629,7 +126737,7 @@ export declare const mainChatMessageContract: {
|
|
|
126629
126737
|
template?: any;
|
|
126630
126738
|
metadata?: any;
|
|
126631
126739
|
fromMessage?: {
|
|
126632
|
-
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";
|
|
126740
|
+
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";
|
|
126633
126741
|
message: string;
|
|
126634
126742
|
id: string;
|
|
126635
126743
|
url: string;
|
|
@@ -127064,6 +127172,7 @@ export declare const mainChatMessageContract: {
|
|
|
127064
127172
|
closedAt: Date;
|
|
127065
127173
|
lastMessageAt: Date | null;
|
|
127066
127174
|
isBotRoom: boolean;
|
|
127175
|
+
csatStatus: string | null;
|
|
127067
127176
|
cxlog: {
|
|
127068
127177
|
id: string;
|
|
127069
127178
|
channel: string | null;
|
|
@@ -127182,7 +127291,7 @@ export declare const mainChatMessageContract: {
|
|
|
127182
127291
|
previewUrl: string;
|
|
127183
127292
|
imageSetId: string;
|
|
127184
127293
|
repliedMessage: {
|
|
127185
|
-
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";
|
|
127294
|
+
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";
|
|
127186
127295
|
message: string;
|
|
127187
127296
|
id: string;
|
|
127188
127297
|
url: string;
|
|
@@ -127815,7 +127924,7 @@ export declare const mainChatMessageContract: {
|
|
|
127815
127924
|
id: z.ZodOptional<z.ZodString>;
|
|
127816
127925
|
message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
127817
127926
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
|
127818
|
-
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"]>;
|
|
127927
|
+
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"]>;
|
|
127819
127928
|
readAt: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodString]>>>;
|
|
127820
127929
|
metadata: z.ZodOptional<z.ZodAny>;
|
|
127821
127930
|
platformId: z.ZodOptional<z.ZodString>;
|
|
@@ -127867,7 +127976,7 @@ export declare const mainChatMessageContract: {
|
|
|
127867
127976
|
parentMessageId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
127868
127977
|
feedPostId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
127869
127978
|
}, "strip", z.ZodTypeAny, {
|
|
127870
|
-
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";
|
|
127979
|
+
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";
|
|
127871
127980
|
direction: "incoming" | "outgoing" | "system";
|
|
127872
127981
|
id?: string | undefined;
|
|
127873
127982
|
message?: string | null | undefined;
|
|
@@ -127898,7 +128007,7 @@ export declare const mainChatMessageContract: {
|
|
|
127898
128007
|
parentMessageId?: string | null | undefined;
|
|
127899
128008
|
feedPostId?: string | null | undefined;
|
|
127900
128009
|
}, {
|
|
127901
|
-
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";
|
|
128010
|
+
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";
|
|
127902
128011
|
direction: "incoming" | "outgoing" | "system";
|
|
127903
128012
|
id?: string | undefined;
|
|
127904
128013
|
message?: string | null | undefined;
|
|
@@ -127931,7 +128040,7 @@ export declare const mainChatMessageContract: {
|
|
|
127931
128040
|
}>;
|
|
127932
128041
|
}, "strip", z.ZodTypeAny, {
|
|
127933
128042
|
message: {
|
|
127934
|
-
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";
|
|
128043
|
+
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";
|
|
127935
128044
|
direction: "incoming" | "outgoing" | "system";
|
|
127936
128045
|
id?: string | undefined;
|
|
127937
128046
|
message?: string | null | undefined;
|
|
@@ -128015,7 +128124,7 @@ export declare const mainChatMessageContract: {
|
|
|
128015
128124
|
};
|
|
128016
128125
|
}, {
|
|
128017
128126
|
message: {
|
|
128018
|
-
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";
|
|
128127
|
+
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";
|
|
128019
128128
|
direction: "incoming" | "outgoing" | "system";
|
|
128020
128129
|
id?: string | undefined;
|
|
128021
128130
|
message?: string | null | undefined;
|
|
@@ -128101,7 +128210,7 @@ export declare const mainChatMessageContract: {
|
|
|
128101
128210
|
}, "strip", z.ZodTypeAny, {
|
|
128102
128211
|
data: {
|
|
128103
128212
|
message: {
|
|
128104
|
-
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";
|
|
128213
|
+
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";
|
|
128105
128214
|
direction: "incoming" | "outgoing" | "system";
|
|
128106
128215
|
id?: string | undefined;
|
|
128107
128216
|
message?: string | null | undefined;
|
|
@@ -128188,7 +128297,7 @@ export declare const mainChatMessageContract: {
|
|
|
128188
128297
|
}, {
|
|
128189
128298
|
data: {
|
|
128190
128299
|
message: {
|
|
128191
|
-
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";
|
|
128300
|
+
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";
|
|
128192
128301
|
direction: "incoming" | "outgoing" | "system";
|
|
128193
128302
|
id?: string | undefined;
|
|
128194
128303
|
message?: string | null | undefined;
|
|
@@ -128321,7 +128430,7 @@ export declare const mainChatMessageContract: {
|
|
|
128321
128430
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
128322
128431
|
message: z.ZodString;
|
|
128323
128432
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
|
128324
|
-
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"]>;
|
|
128433
|
+
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"]>;
|
|
128325
128434
|
readAt: z.ZodDate;
|
|
128326
128435
|
metadata: z.ZodAny;
|
|
128327
128436
|
platformId: z.ZodString;
|
|
@@ -129395,6 +129504,7 @@ export declare const mainChatMessageContract: {
|
|
|
129395
129504
|
channelId: string;
|
|
129396
129505
|
socialPlatformId: string;
|
|
129397
129506
|
}>;
|
|
129507
|
+
csatStatus: z.ZodNullable<z.ZodString>;
|
|
129398
129508
|
actor: z.ZodObject<{
|
|
129399
129509
|
id: z.ZodString;
|
|
129400
129510
|
createdAt: z.ZodDate;
|
|
@@ -131237,6 +131347,7 @@ export declare const mainChatMessageContract: {
|
|
|
131237
131347
|
closedAt: Date;
|
|
131238
131348
|
lastMessageAt: Date | null;
|
|
131239
131349
|
isBotRoom: boolean;
|
|
131350
|
+
csatStatus: string | null;
|
|
131240
131351
|
cxlog: {
|
|
131241
131352
|
id: string;
|
|
131242
131353
|
channel: string | null;
|
|
@@ -131664,6 +131775,7 @@ export declare const mainChatMessageContract: {
|
|
|
131664
131775
|
closedAt: Date;
|
|
131665
131776
|
lastMessageAt: Date | null;
|
|
131666
131777
|
isBotRoom: boolean;
|
|
131778
|
+
csatStatus: string | null;
|
|
131667
131779
|
cxlog: {
|
|
131668
131780
|
id: string;
|
|
131669
131781
|
channel: string | null;
|
|
@@ -131807,7 +131919,7 @@ export declare const mainChatMessageContract: {
|
|
|
131807
131919
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
131808
131920
|
message: z.ZodString;
|
|
131809
131921
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
|
131810
|
-
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"]>;
|
|
131922
|
+
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"]>;
|
|
131811
131923
|
readAt: z.ZodDate;
|
|
131812
131924
|
metadata: z.ZodAny;
|
|
131813
131925
|
platformId: z.ZodString;
|
|
@@ -132465,7 +132577,7 @@ export declare const mainChatMessageContract: {
|
|
|
132465
132577
|
};
|
|
132466
132578
|
}>;
|
|
132467
132579
|
}, "strip", z.ZodTypeAny, {
|
|
132468
|
-
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";
|
|
132580
|
+
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";
|
|
132469
132581
|
message: string;
|
|
132470
132582
|
id: string;
|
|
132471
132583
|
url: string;
|
|
@@ -132627,7 +132739,7 @@ export declare const mainChatMessageContract: {
|
|
|
132627
132739
|
metadata?: any;
|
|
132628
132740
|
template?: any;
|
|
132629
132741
|
}, {
|
|
132630
|
-
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";
|
|
132742
|
+
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";
|
|
132631
132743
|
message: string;
|
|
132632
132744
|
id: string;
|
|
132633
132745
|
url: string;
|
|
@@ -133429,7 +133541,7 @@ export declare const mainChatMessageContract: {
|
|
|
133429
133541
|
editedMessageid: z.ZodString;
|
|
133430
133542
|
label: z.ZodOptional<z.ZodString>;
|
|
133431
133543
|
}, "strip", z.ZodTypeAny, {
|
|
133432
|
-
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";
|
|
133544
|
+
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";
|
|
133433
133545
|
message: string;
|
|
133434
133546
|
id: string;
|
|
133435
133547
|
url: string;
|
|
@@ -133864,6 +133976,7 @@ export declare const mainChatMessageContract: {
|
|
|
133864
133976
|
closedAt: Date;
|
|
133865
133977
|
lastMessageAt: Date | null;
|
|
133866
133978
|
isBotRoom: boolean;
|
|
133979
|
+
csatStatus: string | null;
|
|
133867
133980
|
cxlog: {
|
|
133868
133981
|
id: string;
|
|
133869
133982
|
channel: string | null;
|
|
@@ -133982,7 +134095,7 @@ export declare const mainChatMessageContract: {
|
|
|
133982
134095
|
previewUrl: string;
|
|
133983
134096
|
imageSetId: string;
|
|
133984
134097
|
repliedMessage: {
|
|
133985
|
-
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";
|
|
134098
|
+
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";
|
|
133986
134099
|
message: string;
|
|
133987
134100
|
id: string;
|
|
133988
134101
|
url: string;
|
|
@@ -134193,7 +134306,7 @@ export declare const mainChatMessageContract: {
|
|
|
134193
134306
|
template?: any;
|
|
134194
134307
|
label?: string | undefined;
|
|
134195
134308
|
}, {
|
|
134196
|
-
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";
|
|
134309
|
+
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";
|
|
134197
134310
|
message: string;
|
|
134198
134311
|
id: string;
|
|
134199
134312
|
url: string;
|
|
@@ -134628,6 +134741,7 @@ export declare const mainChatMessageContract: {
|
|
|
134628
134741
|
closedAt: Date;
|
|
134629
134742
|
lastMessageAt: Date | null;
|
|
134630
134743
|
isBotRoom: boolean;
|
|
134744
|
+
csatStatus: string | null;
|
|
134631
134745
|
cxlog: {
|
|
134632
134746
|
id: string;
|
|
134633
134747
|
channel: string | null;
|
|
@@ -134746,7 +134860,7 @@ export declare const mainChatMessageContract: {
|
|
|
134746
134860
|
previewUrl: string;
|
|
134747
134861
|
imageSetId: string;
|
|
134748
134862
|
repliedMessage: {
|
|
134749
|
-
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";
|
|
134863
|
+
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";
|
|
134750
134864
|
message: string;
|
|
134751
134865
|
id: string;
|
|
134752
134866
|
url: string;
|
|
@@ -134959,7 +135073,7 @@ export declare const mainChatMessageContract: {
|
|
|
134959
135073
|
}>, "many">;
|
|
134960
135074
|
}, "strip", z.ZodTypeAny, {
|
|
134961
135075
|
data: {
|
|
134962
|
-
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";
|
|
135076
|
+
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";
|
|
134963
135077
|
message: string;
|
|
134964
135078
|
id: string;
|
|
134965
135079
|
url: string;
|
|
@@ -135394,6 +135508,7 @@ export declare const mainChatMessageContract: {
|
|
|
135394
135508
|
closedAt: Date;
|
|
135395
135509
|
lastMessageAt: Date | null;
|
|
135396
135510
|
isBotRoom: boolean;
|
|
135511
|
+
csatStatus: string | null;
|
|
135397
135512
|
cxlog: {
|
|
135398
135513
|
id: string;
|
|
135399
135514
|
channel: string | null;
|
|
@@ -135512,7 +135627,7 @@ export declare const mainChatMessageContract: {
|
|
|
135512
135627
|
previewUrl: string;
|
|
135513
135628
|
imageSetId: string;
|
|
135514
135629
|
repliedMessage: {
|
|
135515
|
-
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";
|
|
135630
|
+
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";
|
|
135516
135631
|
message: string;
|
|
135517
135632
|
id: string;
|
|
135518
135633
|
url: string;
|
|
@@ -135726,7 +135841,7 @@ export declare const mainChatMessageContract: {
|
|
|
135726
135841
|
requestId: string;
|
|
135727
135842
|
}, {
|
|
135728
135843
|
data: {
|
|
135729
|
-
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";
|
|
135844
|
+
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";
|
|
135730
135845
|
message: string;
|
|
135731
135846
|
id: string;
|
|
135732
135847
|
url: string;
|
|
@@ -136161,6 +136276,7 @@ export declare const mainChatMessageContract: {
|
|
|
136161
136276
|
closedAt: Date;
|
|
136162
136277
|
lastMessageAt: Date | null;
|
|
136163
136278
|
isBotRoom: boolean;
|
|
136279
|
+
csatStatus: string | null;
|
|
136164
136280
|
cxlog: {
|
|
136165
136281
|
id: string;
|
|
136166
136282
|
channel: string | null;
|
|
@@ -136279,7 +136395,7 @@ export declare const mainChatMessageContract: {
|
|
|
136279
136395
|
previewUrl: string;
|
|
136280
136396
|
imageSetId: string;
|
|
136281
136397
|
repliedMessage: {
|
|
136282
|
-
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";
|
|
136398
|
+
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";
|
|
136283
136399
|
message: string;
|
|
136284
136400
|
id: string;
|
|
136285
136401
|
url: string;
|