@kl1/contracts 1.2.86-uat → 1.2.88-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/activity-log/index.d.ts +3 -3
- package/dist/api-contracts/src/activity-log/schema.d.ts +3 -3
- package/dist/api-contracts/src/auth/index.d.ts +3 -3
- package/dist/api-contracts/src/automation-queue/index.d.ts +30 -30
- package/dist/api-contracts/src/automation-queue/schema.d.ts +6 -6
- package/dist/api-contracts/src/business-calendar/index.d.ts.map +1 -1
- package/dist/api-contracts/src/channel/index.d.ts +7 -1
- package/dist/api-contracts/src/channel/index.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/index.d.ts +271 -271
- package/dist/api-contracts/src/chat/schema.d.ts +93 -93
- package/dist/api-contracts/src/chat/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/validation.d.ts +86 -86
- package/dist/api-contracts/src/comment/index.d.ts +45 -45
- package/dist/api-contracts/src/comment/schema.d.ts +15 -15
- package/dist/api-contracts/src/contract.d.ts +1137 -2963
- package/dist/api-contracts/src/contract.d.ts.map +1 -1
- package/dist/api-contracts/src/cx-log/index.d.ts +24 -24
- package/dist/api-contracts/src/cx-log/schema.d.ts +24 -24
- package/dist/api-contracts/src/dashboard/index.d.ts +9 -56
- package/dist/api-contracts/src/dashboard/index.d.ts.map +1 -1
- package/dist/api-contracts/src/dashboard/validation.d.ts +0 -13
- package/dist/api-contracts/src/dashboard/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/facebook-feed/index.d.ts +61 -61
- package/dist/api-contracts/src/facebook-feed/schema.d.ts +6 -6
- package/dist/api-contracts/src/instagram/index.d.ts +51 -51
- package/dist/api-contracts/src/line/index.d.ts +56 -56
- package/dist/api-contracts/src/line/validation.d.ts +5 -5
- package/dist/api-contracts/src/messenger/index.d.ts +51 -51
- package/dist/api-contracts/src/notification/index.d.ts +9 -9
- package/dist/api-contracts/src/notification/schema.d.ts +9 -9
- package/dist/api-contracts/src/notification/validation.d.ts +3 -3
- package/dist/api-contracts/src/sms/index.d.ts +5 -5
- package/dist/api-contracts/src/telegram/index.d.ts +51 -51
- package/dist/api-contracts/src/telephony-agent-presence-status/index.d.ts +6 -6
- package/dist/api-contracts/src/telephony-agent-presence-status/schema.d.ts +3 -3
- package/dist/api-contracts/src/telephony-cdr/index.d.ts +30 -30
- package/dist/api-contracts/src/telephony-cdr/schema.d.ts +18 -18
- package/dist/api-contracts/src/ticket/index.d.ts +36 -36
- package/dist/api-contracts/src/ticket/schema.d.ts +9 -9
- package/dist/api-contracts/src/user/index.d.ts +12 -142
- package/dist/api-contracts/src/user/index.d.ts.map +1 -1
- package/dist/api-contracts/src/user/schema.d.ts +1 -38
- package/dist/api-contracts/src/user/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/user-presence-status-log/schema.d.ts +3 -3
- package/dist/api-contracts/src/viber/index.d.ts +51 -51
- package/dist/api-contracts/src/webchat/index.d.ts +51 -51
- package/dist/api-contracts/src/whatsapp/index.d.ts +58 -52
- package/dist/api-contracts/src/whatsapp/index.d.ts.map +1 -1
- package/dist/api-contracts/src/widget/index.d.ts +39 -813
- package/dist/api-contracts/src/widget/index.d.ts.map +1 -1
- package/dist/api-contracts/src/widget/schema.d.ts +4 -98
- package/dist/api-contracts/src/widget/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/widget/validation.d.ts +12 -171
- package/dist/api-contracts/src/widget/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/workflow-rule/index.d.ts +21 -21
- package/dist/index.js +18 -89
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +18 -89
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -41,7 +41,7 @@ export declare const receiveMessageContract: {
|
|
|
41
41
|
deletedAt: z.ZodNullable<z.ZodString>;
|
|
42
42
|
message: z.ZodOptional<z.ZodString>;
|
|
43
43
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
|
44
|
-
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", "item"
|
|
44
|
+
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", "item"]>;
|
|
45
45
|
metadata: z.ZodAny;
|
|
46
46
|
platformId: z.ZodString;
|
|
47
47
|
platformMessageId: z.ZodString;
|
|
@@ -2934,15 +2934,15 @@ export declare const receiveMessageContract: {
|
|
|
2934
2934
|
status?: string | undefined;
|
|
2935
2935
|
}>>;
|
|
2936
2936
|
actor: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
2937
|
-
name: z.ZodString;
|
|
2938
2937
|
id: z.ZodString;
|
|
2939
|
-
address: z.ZodNullable<z.ZodString>;
|
|
2940
|
-
email: z.ZodString;
|
|
2941
2938
|
createdAt: z.ZodDate;
|
|
2942
2939
|
updatedAt: z.ZodDate;
|
|
2943
2940
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
2941
|
+
name: z.ZodString;
|
|
2942
|
+
email: z.ZodString;
|
|
2944
2943
|
emailVerifiedAt: z.ZodNullable<z.ZodDate>;
|
|
2945
2944
|
password: z.ZodString;
|
|
2945
|
+
address: z.ZodNullable<z.ZodString>;
|
|
2946
2946
|
phone: z.ZodNullable<z.ZodString>;
|
|
2947
2947
|
notificationCount: z.ZodNullable<z.ZodNumber>;
|
|
2948
2948
|
roles: z.ZodArray<z.ZodObject<{
|
|
@@ -3138,15 +3138,15 @@ export declare const receiveMessageContract: {
|
|
|
3138
3138
|
};
|
|
3139
3139
|
}>>>;
|
|
3140
3140
|
assignee: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
3141
|
-
name: z.ZodString;
|
|
3142
3141
|
id: z.ZodString;
|
|
3143
|
-
address: z.ZodNullable<z.ZodString>;
|
|
3144
|
-
email: z.ZodString;
|
|
3145
3142
|
createdAt: z.ZodDate;
|
|
3146
3143
|
updatedAt: z.ZodDate;
|
|
3147
3144
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
3145
|
+
name: z.ZodString;
|
|
3146
|
+
email: z.ZodString;
|
|
3148
3147
|
emailVerifiedAt: z.ZodNullable<z.ZodDate>;
|
|
3149
3148
|
password: z.ZodString;
|
|
3149
|
+
address: z.ZodNullable<z.ZodString>;
|
|
3150
3150
|
phone: z.ZodNullable<z.ZodString>;
|
|
3151
3151
|
notificationCount: z.ZodNullable<z.ZodNumber>;
|
|
3152
3152
|
roles: z.ZodArray<z.ZodObject<{
|
|
@@ -3342,15 +3342,15 @@ export declare const receiveMessageContract: {
|
|
|
3342
3342
|
};
|
|
3343
3343
|
}>>>;
|
|
3344
3344
|
sender: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
3345
|
-
name: z.ZodString;
|
|
3346
3345
|
id: z.ZodString;
|
|
3347
|
-
address: z.ZodNullable<z.ZodString>;
|
|
3348
|
-
email: z.ZodString;
|
|
3349
3346
|
createdAt: z.ZodDate;
|
|
3350
3347
|
updatedAt: z.ZodDate;
|
|
3351
3348
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
3349
|
+
name: z.ZodString;
|
|
3350
|
+
email: z.ZodString;
|
|
3352
3351
|
emailVerifiedAt: z.ZodNullable<z.ZodDate>;
|
|
3353
3352
|
password: z.ZodString;
|
|
3353
|
+
address: z.ZodNullable<z.ZodString>;
|
|
3354
3354
|
phone: z.ZodNullable<z.ZodString>;
|
|
3355
3355
|
notificationCount: z.ZodNullable<z.ZodNumber>;
|
|
3356
3356
|
roles: z.ZodArray<z.ZodObject<{
|
|
@@ -3547,7 +3547,7 @@ export declare const receiveMessageContract: {
|
|
|
3547
3547
|
}>>>;
|
|
3548
3548
|
label: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3549
3549
|
}, "strip", z.ZodTypeAny, {
|
|
3550
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
3550
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
3551
3551
|
id: string;
|
|
3552
3552
|
direction: "incoming" | "outgoing" | "system";
|
|
3553
3553
|
createdAt: string;
|
|
@@ -4063,7 +4063,7 @@ export declare const receiveMessageContract: {
|
|
|
4063
4063
|
} | null | undefined;
|
|
4064
4064
|
label?: string | null | undefined;
|
|
4065
4065
|
}, {
|
|
4066
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
4066
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
4067
4067
|
id: string;
|
|
4068
4068
|
direction: "incoming" | "outgoing" | "system";
|
|
4069
4069
|
createdAt: string;
|
|
@@ -4581,7 +4581,7 @@ export declare const receiveMessageContract: {
|
|
|
4581
4581
|
}>;
|
|
4582
4582
|
}, "strip", z.ZodTypeAny, {
|
|
4583
4583
|
message: {
|
|
4584
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
4584
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
4585
4585
|
id: string;
|
|
4586
4586
|
direction: "incoming" | "outgoing" | "system";
|
|
4587
4587
|
createdAt: string;
|
|
@@ -5099,7 +5099,7 @@ export declare const receiveMessageContract: {
|
|
|
5099
5099
|
};
|
|
5100
5100
|
}, {
|
|
5101
5101
|
message: {
|
|
5102
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
5102
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
5103
5103
|
id: string;
|
|
5104
5104
|
direction: "incoming" | "outgoing" | "system";
|
|
5105
5105
|
createdAt: string;
|
|
@@ -5664,7 +5664,7 @@ export declare const mainFeedContract: {
|
|
|
5664
5664
|
updatedAt: z.ZodDate;
|
|
5665
5665
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
5666
5666
|
message: z.ZodNullable<z.ZodString>;
|
|
5667
|
-
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", "item"
|
|
5667
|
+
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", "item"]>]>;
|
|
5668
5668
|
metadata: z.ZodAny;
|
|
5669
5669
|
platformId: z.ZodString;
|
|
5670
5670
|
platformMessageId: z.ZodString;
|
|
@@ -7272,15 +7272,15 @@ export declare const mainFeedContract: {
|
|
|
7272
7272
|
socialPlatformId: string;
|
|
7273
7273
|
}>;
|
|
7274
7274
|
actor: z.ZodObject<{
|
|
7275
|
-
name: z.ZodString;
|
|
7276
7275
|
id: z.ZodString;
|
|
7277
|
-
address: z.ZodNullable<z.ZodString>;
|
|
7278
|
-
email: z.ZodString;
|
|
7279
7276
|
createdAt: z.ZodDate;
|
|
7280
7277
|
updatedAt: z.ZodDate;
|
|
7281
7278
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
7279
|
+
name: z.ZodString;
|
|
7280
|
+
email: z.ZodString;
|
|
7282
7281
|
emailVerifiedAt: z.ZodNullable<z.ZodDate>;
|
|
7283
7282
|
password: z.ZodString;
|
|
7283
|
+
address: z.ZodNullable<z.ZodString>;
|
|
7284
7284
|
phone: z.ZodNullable<z.ZodString>;
|
|
7285
7285
|
notificationCount: z.ZodNullable<z.ZodNumber>;
|
|
7286
7286
|
roles: z.ZodArray<z.ZodObject<{
|
|
@@ -7477,7 +7477,7 @@ export declare const mainFeedContract: {
|
|
|
7477
7477
|
}>;
|
|
7478
7478
|
permalinkURL: z.ZodString;
|
|
7479
7479
|
}, "strip", z.ZodTypeAny, {
|
|
7480
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
7480
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
7481
7481
|
message: string | null;
|
|
7482
7482
|
id: string;
|
|
7483
7483
|
channel: {
|
|
@@ -7759,7 +7759,7 @@ export declare const mainFeedContract: {
|
|
|
7759
7759
|
metadata?: any;
|
|
7760
7760
|
template?: any;
|
|
7761
7761
|
}, {
|
|
7762
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
7762
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
7763
7763
|
message: string | null;
|
|
7764
7764
|
id: string;
|
|
7765
7765
|
channel: {
|
|
@@ -8043,7 +8043,7 @@ export declare const mainFeedContract: {
|
|
|
8043
8043
|
}>;
|
|
8044
8044
|
}, "strip", z.ZodTypeAny, {
|
|
8045
8045
|
data: {
|
|
8046
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
8046
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
8047
8047
|
message: string | null;
|
|
8048
8048
|
id: string;
|
|
8049
8049
|
channel: {
|
|
@@ -8328,7 +8328,7 @@ export declare const mainFeedContract: {
|
|
|
8328
8328
|
requestId: string;
|
|
8329
8329
|
}, {
|
|
8330
8330
|
data: {
|
|
8331
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
8331
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
8332
8332
|
message: string | null;
|
|
8333
8333
|
id: string;
|
|
8334
8334
|
channel: {
|
|
@@ -8658,7 +8658,7 @@ export declare const mainFeedContract: {
|
|
|
8658
8658
|
page: z.ZodNumber;
|
|
8659
8659
|
pageSize: z.ZodNumber;
|
|
8660
8660
|
data: z.ZodObject<{
|
|
8661
|
-
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", "item"
|
|
8661
|
+
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", "item"]>;
|
|
8662
8662
|
message: z.ZodString;
|
|
8663
8663
|
id: z.ZodString;
|
|
8664
8664
|
url: z.ZodString;
|
|
@@ -12594,7 +12594,7 @@ export declare const mainFeedContract: {
|
|
|
12594
12594
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
12595
12595
|
message: z.ZodString;
|
|
12596
12596
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
|
12597
|
-
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", "item"
|
|
12597
|
+
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", "item"]>;
|
|
12598
12598
|
readAt: z.ZodDate;
|
|
12599
12599
|
metadata: z.ZodAny;
|
|
12600
12600
|
platformId: z.ZodString;
|
|
@@ -12640,15 +12640,15 @@ export declare const mainFeedContract: {
|
|
|
12640
12640
|
fileUrl: string | null;
|
|
12641
12641
|
}>;
|
|
12642
12642
|
actor: z.ZodObject<{
|
|
12643
|
-
name: z.ZodString;
|
|
12644
12643
|
id: z.ZodString;
|
|
12645
|
-
address: z.ZodNullable<z.ZodString>;
|
|
12646
|
-
email: z.ZodString;
|
|
12647
12644
|
createdAt: z.ZodDate;
|
|
12648
12645
|
updatedAt: z.ZodDate;
|
|
12649
12646
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
12647
|
+
name: z.ZodString;
|
|
12648
|
+
email: z.ZodString;
|
|
12650
12649
|
emailVerifiedAt: z.ZodNullable<z.ZodDate>;
|
|
12651
12650
|
password: z.ZodString;
|
|
12651
|
+
address: z.ZodNullable<z.ZodString>;
|
|
12652
12652
|
phone: z.ZodNullable<z.ZodString>;
|
|
12653
12653
|
notificationCount: z.ZodNullable<z.ZodNumber>;
|
|
12654
12654
|
roles: z.ZodArray<z.ZodObject<{
|
|
@@ -12844,15 +12844,15 @@ export declare const mainFeedContract: {
|
|
|
12844
12844
|
};
|
|
12845
12845
|
}>;
|
|
12846
12846
|
assignee: z.ZodObject<{
|
|
12847
|
-
name: z.ZodString;
|
|
12848
12847
|
id: z.ZodString;
|
|
12849
|
-
address: z.ZodNullable<z.ZodString>;
|
|
12850
|
-
email: z.ZodString;
|
|
12851
12848
|
createdAt: z.ZodDate;
|
|
12852
12849
|
updatedAt: z.ZodDate;
|
|
12853
12850
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
12851
|
+
name: z.ZodString;
|
|
12852
|
+
email: z.ZodString;
|
|
12854
12853
|
emailVerifiedAt: z.ZodNullable<z.ZodDate>;
|
|
12855
12854
|
password: z.ZodString;
|
|
12855
|
+
address: z.ZodNullable<z.ZodString>;
|
|
12856
12856
|
phone: z.ZodNullable<z.ZodString>;
|
|
12857
12857
|
notificationCount: z.ZodNullable<z.ZodNumber>;
|
|
12858
12858
|
roles: z.ZodArray<z.ZodObject<{
|
|
@@ -13048,15 +13048,15 @@ export declare const mainFeedContract: {
|
|
|
13048
13048
|
};
|
|
13049
13049
|
}>;
|
|
13050
13050
|
sender: z.ZodObject<{
|
|
13051
|
-
name: z.ZodString;
|
|
13052
13051
|
id: z.ZodString;
|
|
13053
|
-
address: z.ZodNullable<z.ZodString>;
|
|
13054
|
-
email: z.ZodString;
|
|
13055
13052
|
createdAt: z.ZodDate;
|
|
13056
13053
|
updatedAt: z.ZodDate;
|
|
13057
13054
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
13055
|
+
name: z.ZodString;
|
|
13056
|
+
email: z.ZodString;
|
|
13058
13057
|
emailVerifiedAt: z.ZodNullable<z.ZodDate>;
|
|
13059
13058
|
password: z.ZodString;
|
|
13059
|
+
address: z.ZodNullable<z.ZodString>;
|
|
13060
13060
|
phone: z.ZodNullable<z.ZodString>;
|
|
13061
13061
|
notificationCount: z.ZodNullable<z.ZodNumber>;
|
|
13062
13062
|
roles: z.ZodArray<z.ZodObject<{
|
|
@@ -13252,7 +13252,7 @@ export declare const mainFeedContract: {
|
|
|
13252
13252
|
};
|
|
13253
13253
|
}>;
|
|
13254
13254
|
}, "strip", z.ZodTypeAny, {
|
|
13255
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
13255
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
13256
13256
|
message: string;
|
|
13257
13257
|
id: string;
|
|
13258
13258
|
url: string;
|
|
@@ -13414,7 +13414,7 @@ export declare const mainFeedContract: {
|
|
|
13414
13414
|
metadata?: any;
|
|
13415
13415
|
template?: any;
|
|
13416
13416
|
}, {
|
|
13417
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
13417
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
13418
13418
|
message: string;
|
|
13419
13419
|
id: string;
|
|
13420
13420
|
url: string;
|
|
@@ -14835,7 +14835,7 @@ export declare const mainFeedContract: {
|
|
|
14835
14835
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
14836
14836
|
message: z.ZodString;
|
|
14837
14837
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
|
14838
|
-
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", "item"
|
|
14838
|
+
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", "item"]>;
|
|
14839
14839
|
readAt: z.ZodDate;
|
|
14840
14840
|
metadata: z.ZodAny;
|
|
14841
14841
|
platformId: z.ZodString;
|
|
@@ -18331,7 +18331,7 @@ export declare const mainFeedContract: {
|
|
|
18331
18331
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
18332
18332
|
message: z.ZodString;
|
|
18333
18333
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
|
18334
|
-
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", "item"
|
|
18334
|
+
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", "item"]>;
|
|
18335
18335
|
readAt: z.ZodDate;
|
|
18336
18336
|
metadata: z.ZodAny;
|
|
18337
18337
|
platformId: z.ZodString;
|
|
@@ -18377,15 +18377,15 @@ export declare const mainFeedContract: {
|
|
|
18377
18377
|
fileUrl: string | null;
|
|
18378
18378
|
}>;
|
|
18379
18379
|
actor: z.ZodObject<{
|
|
18380
|
-
name: z.ZodString;
|
|
18381
18380
|
id: z.ZodString;
|
|
18382
|
-
address: z.ZodNullable<z.ZodString>;
|
|
18383
|
-
email: z.ZodString;
|
|
18384
18381
|
createdAt: z.ZodDate;
|
|
18385
18382
|
updatedAt: z.ZodDate;
|
|
18386
18383
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
18384
|
+
name: z.ZodString;
|
|
18385
|
+
email: z.ZodString;
|
|
18387
18386
|
emailVerifiedAt: z.ZodNullable<z.ZodDate>;
|
|
18388
18387
|
password: z.ZodString;
|
|
18388
|
+
address: z.ZodNullable<z.ZodString>;
|
|
18389
18389
|
phone: z.ZodNullable<z.ZodString>;
|
|
18390
18390
|
notificationCount: z.ZodNullable<z.ZodNumber>;
|
|
18391
18391
|
roles: z.ZodArray<z.ZodObject<{
|
|
@@ -18581,15 +18581,15 @@ export declare const mainFeedContract: {
|
|
|
18581
18581
|
};
|
|
18582
18582
|
}>;
|
|
18583
18583
|
assignee: z.ZodObject<{
|
|
18584
|
-
name: z.ZodString;
|
|
18585
18584
|
id: z.ZodString;
|
|
18586
|
-
address: z.ZodNullable<z.ZodString>;
|
|
18587
|
-
email: z.ZodString;
|
|
18588
18585
|
createdAt: z.ZodDate;
|
|
18589
18586
|
updatedAt: z.ZodDate;
|
|
18590
18587
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
18588
|
+
name: z.ZodString;
|
|
18589
|
+
email: z.ZodString;
|
|
18591
18590
|
emailVerifiedAt: z.ZodNullable<z.ZodDate>;
|
|
18592
18591
|
password: z.ZodString;
|
|
18592
|
+
address: z.ZodNullable<z.ZodString>;
|
|
18593
18593
|
phone: z.ZodNullable<z.ZodString>;
|
|
18594
18594
|
notificationCount: z.ZodNullable<z.ZodNumber>;
|
|
18595
18595
|
roles: z.ZodArray<z.ZodObject<{
|
|
@@ -18785,15 +18785,15 @@ export declare const mainFeedContract: {
|
|
|
18785
18785
|
};
|
|
18786
18786
|
}>;
|
|
18787
18787
|
sender: z.ZodObject<{
|
|
18788
|
-
name: z.ZodString;
|
|
18789
18788
|
id: z.ZodString;
|
|
18790
|
-
address: z.ZodNullable<z.ZodString>;
|
|
18791
|
-
email: z.ZodString;
|
|
18792
18789
|
createdAt: z.ZodDate;
|
|
18793
18790
|
updatedAt: z.ZodDate;
|
|
18794
18791
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
18792
|
+
name: z.ZodString;
|
|
18793
|
+
email: z.ZodString;
|
|
18795
18794
|
emailVerifiedAt: z.ZodNullable<z.ZodDate>;
|
|
18796
18795
|
password: z.ZodString;
|
|
18796
|
+
address: z.ZodNullable<z.ZodString>;
|
|
18797
18797
|
phone: z.ZodNullable<z.ZodString>;
|
|
18798
18798
|
notificationCount: z.ZodNullable<z.ZodNumber>;
|
|
18799
18799
|
roles: z.ZodArray<z.ZodObject<{
|
|
@@ -18989,7 +18989,7 @@ export declare const mainFeedContract: {
|
|
|
18989
18989
|
};
|
|
18990
18990
|
}>;
|
|
18991
18991
|
}, "strip", z.ZodTypeAny, {
|
|
18992
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
18992
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
18993
18993
|
message: string;
|
|
18994
18994
|
id: string;
|
|
18995
18995
|
url: string;
|
|
@@ -19151,7 +19151,7 @@ export declare const mainFeedContract: {
|
|
|
19151
19151
|
metadata?: any;
|
|
19152
19152
|
template?: any;
|
|
19153
19153
|
}, {
|
|
19154
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
19154
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
19155
19155
|
message: string;
|
|
19156
19156
|
id: string;
|
|
19157
19157
|
url: string;
|
|
@@ -19953,7 +19953,7 @@ export declare const mainFeedContract: {
|
|
|
19953
19953
|
editedMessageid: z.ZodString;
|
|
19954
19954
|
label: z.ZodOptional<z.ZodString>;
|
|
19955
19955
|
}, "strip", z.ZodTypeAny, {
|
|
19956
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
19956
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
19957
19957
|
message: string;
|
|
19958
19958
|
id: string;
|
|
19959
19959
|
url: string;
|
|
@@ -20508,7 +20508,7 @@ export declare const mainFeedContract: {
|
|
|
20508
20508
|
previewUrl: string;
|
|
20509
20509
|
imageSetId: string;
|
|
20510
20510
|
repliedMessage: {
|
|
20511
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
20511
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
20512
20512
|
message: string;
|
|
20513
20513
|
id: string;
|
|
20514
20514
|
url: string;
|
|
@@ -20719,7 +20719,7 @@ export declare const mainFeedContract: {
|
|
|
20719
20719
|
template?: any;
|
|
20720
20720
|
label?: string | undefined;
|
|
20721
20721
|
}, {
|
|
20722
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
20722
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
20723
20723
|
message: string;
|
|
20724
20724
|
id: string;
|
|
20725
20725
|
url: string;
|
|
@@ -21274,7 +21274,7 @@ export declare const mainFeedContract: {
|
|
|
21274
21274
|
previewUrl: string;
|
|
21275
21275
|
imageSetId: string;
|
|
21276
21276
|
repliedMessage: {
|
|
21277
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
21277
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
21278
21278
|
message: string;
|
|
21279
21279
|
id: string;
|
|
21280
21280
|
url: string;
|
|
@@ -21486,13 +21486,13 @@ export declare const mainFeedContract: {
|
|
|
21486
21486
|
label?: string | undefined;
|
|
21487
21487
|
}>, "many">;
|
|
21488
21488
|
}, "strip", z.ZodTypeAny, {
|
|
21489
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
21489
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
21490
21490
|
message: string;
|
|
21491
21491
|
id: string;
|
|
21492
21492
|
url: string;
|
|
21493
21493
|
direction: "incoming" | "outgoing" | "system";
|
|
21494
21494
|
children: {
|
|
21495
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
21495
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
21496
21496
|
message: string;
|
|
21497
21497
|
id: string;
|
|
21498
21498
|
url: string;
|
|
@@ -22047,7 +22047,7 @@ export declare const mainFeedContract: {
|
|
|
22047
22047
|
previewUrl: string;
|
|
22048
22048
|
imageSetId: string;
|
|
22049
22049
|
repliedMessage: {
|
|
22050
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
22050
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
22051
22051
|
message: string;
|
|
22052
22052
|
id: string;
|
|
22053
22053
|
url: string;
|
|
@@ -22808,7 +22808,7 @@ export declare const mainFeedContract: {
|
|
|
22808
22808
|
previewUrl: string;
|
|
22809
22809
|
imageSetId: string;
|
|
22810
22810
|
repliedMessage: {
|
|
22811
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
22811
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
22812
22812
|
message: string;
|
|
22813
22813
|
id: string;
|
|
22814
22814
|
url: string;
|
|
@@ -23146,13 +23146,13 @@ export declare const mainFeedContract: {
|
|
|
23146
23146
|
template?: any;
|
|
23147
23147
|
metadata?: any;
|
|
23148
23148
|
}, {
|
|
23149
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
23149
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
23150
23150
|
message: string;
|
|
23151
23151
|
id: string;
|
|
23152
23152
|
url: string;
|
|
23153
23153
|
direction: "incoming" | "outgoing" | "system";
|
|
23154
23154
|
children: {
|
|
23155
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
23155
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
23156
23156
|
message: string;
|
|
23157
23157
|
id: string;
|
|
23158
23158
|
url: string;
|
|
@@ -23707,7 +23707,7 @@ export declare const mainFeedContract: {
|
|
|
23707
23707
|
previewUrl: string;
|
|
23708
23708
|
imageSetId: string;
|
|
23709
23709
|
repliedMessage: {
|
|
23710
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
23710
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
23711
23711
|
message: string;
|
|
23712
23712
|
id: string;
|
|
23713
23713
|
url: string;
|
|
@@ -24468,7 +24468,7 @@ export declare const mainFeedContract: {
|
|
|
24468
24468
|
previewUrl: string;
|
|
24469
24469
|
imageSetId: string;
|
|
24470
24470
|
repliedMessage: {
|
|
24471
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
24471
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
24472
24472
|
message: string;
|
|
24473
24473
|
id: string;
|
|
24474
24474
|
url: string;
|
|
@@ -24808,13 +24808,13 @@ export declare const mainFeedContract: {
|
|
|
24808
24808
|
}>;
|
|
24809
24809
|
}, "strip", z.ZodTypeAny, {
|
|
24810
24810
|
data: {
|
|
24811
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
24811
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
24812
24812
|
message: string;
|
|
24813
24813
|
id: string;
|
|
24814
24814
|
url: string;
|
|
24815
24815
|
direction: "incoming" | "outgoing" | "system";
|
|
24816
24816
|
children: {
|
|
24817
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
24817
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
24818
24818
|
message: string;
|
|
24819
24819
|
id: string;
|
|
24820
24820
|
url: string;
|
|
@@ -25369,7 +25369,7 @@ export declare const mainFeedContract: {
|
|
|
25369
25369
|
previewUrl: string;
|
|
25370
25370
|
imageSetId: string;
|
|
25371
25371
|
repliedMessage: {
|
|
25372
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
25372
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
25373
25373
|
message: string;
|
|
25374
25374
|
id: string;
|
|
25375
25375
|
url: string;
|
|
@@ -26130,7 +26130,7 @@ export declare const mainFeedContract: {
|
|
|
26130
26130
|
previewUrl: string;
|
|
26131
26131
|
imageSetId: string;
|
|
26132
26132
|
repliedMessage: {
|
|
26133
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
26133
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
26134
26134
|
message: string;
|
|
26135
26135
|
id: string;
|
|
26136
26136
|
url: string;
|
|
@@ -26474,13 +26474,13 @@ export declare const mainFeedContract: {
|
|
|
26474
26474
|
requestId: string;
|
|
26475
26475
|
}, {
|
|
26476
26476
|
data: {
|
|
26477
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
26477
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
26478
26478
|
message: string;
|
|
26479
26479
|
id: string;
|
|
26480
26480
|
url: string;
|
|
26481
26481
|
direction: "incoming" | "outgoing" | "system";
|
|
26482
26482
|
children: {
|
|
26483
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
26483
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
26484
26484
|
message: string;
|
|
26485
26485
|
id: string;
|
|
26486
26486
|
url: string;
|
|
@@ -27035,7 +27035,7 @@ export declare const mainFeedContract: {
|
|
|
27035
27035
|
previewUrl: string;
|
|
27036
27036
|
imageSetId: string;
|
|
27037
27037
|
repliedMessage: {
|
|
27038
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
27038
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
27039
27039
|
message: string;
|
|
27040
27040
|
id: string;
|
|
27041
27041
|
url: string;
|
|
@@ -27796,7 +27796,7 @@ export declare const mainFeedContract: {
|
|
|
27796
27796
|
previewUrl: string;
|
|
27797
27797
|
imageSetId: string;
|
|
27798
27798
|
repliedMessage: {
|
|
27799
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
27799
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
27800
27800
|
message: string;
|
|
27801
27801
|
id: string;
|
|
27802
27802
|
url: string;
|
|
@@ -36126,7 +36126,7 @@ export declare const mainChatRoomContract: {
|
|
|
36126
36126
|
latestIncomingMessage: z.ZodObject<{
|
|
36127
36127
|
message: z.ZodString;
|
|
36128
36128
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
|
36129
|
-
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", "item"
|
|
36129
|
+
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", "item"]>;
|
|
36130
36130
|
readAt: z.ZodDate;
|
|
36131
36131
|
metadata: z.ZodAny;
|
|
36132
36132
|
platformId: z.ZodString;
|
|
@@ -36138,7 +36138,7 @@ export declare const mainChatRoomContract: {
|
|
|
36138
36138
|
previewUrl: z.ZodString;
|
|
36139
36139
|
imageSetId: z.ZodString;
|
|
36140
36140
|
}, "strip", z.ZodTypeAny, {
|
|
36141
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
36141
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
36142
36142
|
message: string;
|
|
36143
36143
|
url: string;
|
|
36144
36144
|
direction: "incoming" | "outgoing" | "system";
|
|
@@ -36152,7 +36152,7 @@ export declare const mainChatRoomContract: {
|
|
|
36152
36152
|
metadata?: any;
|
|
36153
36153
|
template?: any;
|
|
36154
36154
|
}, {
|
|
36155
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
36155
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
36156
36156
|
message: string;
|
|
36157
36157
|
url: string;
|
|
36158
36158
|
direction: "incoming" | "outgoing" | "system";
|
|
@@ -36169,7 +36169,7 @@ export declare const mainChatRoomContract: {
|
|
|
36169
36169
|
latestMessage: z.ZodObject<{
|
|
36170
36170
|
message: z.ZodString;
|
|
36171
36171
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
|
36172
|
-
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", "item"
|
|
36172
|
+
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", "item"]>;
|
|
36173
36173
|
readAt: z.ZodDate;
|
|
36174
36174
|
metadata: z.ZodAny;
|
|
36175
36175
|
platformId: z.ZodString;
|
|
@@ -36181,7 +36181,7 @@ export declare const mainChatRoomContract: {
|
|
|
36181
36181
|
previewUrl: z.ZodString;
|
|
36182
36182
|
imageSetId: z.ZodString;
|
|
36183
36183
|
}, "strip", z.ZodTypeAny, {
|
|
36184
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
36184
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
36185
36185
|
message: string;
|
|
36186
36186
|
url: string;
|
|
36187
36187
|
direction: "incoming" | "outgoing" | "system";
|
|
@@ -36195,7 +36195,7 @@ export declare const mainChatRoomContract: {
|
|
|
36195
36195
|
metadata?: any;
|
|
36196
36196
|
template?: any;
|
|
36197
36197
|
}, {
|
|
36198
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
36198
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
36199
36199
|
message: string;
|
|
36200
36200
|
url: string;
|
|
36201
36201
|
direction: "incoming" | "outgoing" | "system";
|
|
@@ -36641,7 +36641,7 @@ export declare const mainChatRoomContract: {
|
|
|
36641
36641
|
automationQueueId?: string | null | undefined;
|
|
36642
36642
|
};
|
|
36643
36643
|
latestIncomingMessage: {
|
|
36644
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
36644
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
36645
36645
|
message: string;
|
|
36646
36646
|
url: string;
|
|
36647
36647
|
direction: "incoming" | "outgoing" | "system";
|
|
@@ -36656,7 +36656,7 @@ export declare const mainChatRoomContract: {
|
|
|
36656
36656
|
template?: any;
|
|
36657
36657
|
};
|
|
36658
36658
|
latestMessage: {
|
|
36659
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
36659
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
36660
36660
|
message: string;
|
|
36661
36661
|
url: string;
|
|
36662
36662
|
direction: "incoming" | "outgoing" | "system";
|
|
@@ -37102,7 +37102,7 @@ export declare const mainChatRoomContract: {
|
|
|
37102
37102
|
automationQueueId?: string | null | undefined;
|
|
37103
37103
|
};
|
|
37104
37104
|
latestIncomingMessage: {
|
|
37105
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
37105
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
37106
37106
|
message: string;
|
|
37107
37107
|
url: string;
|
|
37108
37108
|
direction: "incoming" | "outgoing" | "system";
|
|
@@ -37117,7 +37117,7 @@ export declare const mainChatRoomContract: {
|
|
|
37117
37117
|
template?: any;
|
|
37118
37118
|
};
|
|
37119
37119
|
latestMessage: {
|
|
37120
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
37120
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
37121
37121
|
message: string;
|
|
37122
37122
|
url: string;
|
|
37123
37123
|
direction: "incoming" | "outgoing" | "system";
|
|
@@ -37565,7 +37565,7 @@ export declare const mainChatRoomContract: {
|
|
|
37565
37565
|
automationQueueId?: string | null | undefined;
|
|
37566
37566
|
};
|
|
37567
37567
|
latestIncomingMessage: {
|
|
37568
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
37568
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
37569
37569
|
message: string;
|
|
37570
37570
|
url: string;
|
|
37571
37571
|
direction: "incoming" | "outgoing" | "system";
|
|
@@ -37580,7 +37580,7 @@ export declare const mainChatRoomContract: {
|
|
|
37580
37580
|
template?: any;
|
|
37581
37581
|
};
|
|
37582
37582
|
latestMessage: {
|
|
37583
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
37583
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
37584
37584
|
message: string;
|
|
37585
37585
|
url: string;
|
|
37586
37586
|
direction: "incoming" | "outgoing" | "system";
|
|
@@ -38029,7 +38029,7 @@ export declare const mainChatRoomContract: {
|
|
|
38029
38029
|
automationQueueId?: string | null | undefined;
|
|
38030
38030
|
};
|
|
38031
38031
|
latestIncomingMessage: {
|
|
38032
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
38032
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
38033
38033
|
message: string;
|
|
38034
38034
|
url: string;
|
|
38035
38035
|
direction: "incoming" | "outgoing" | "system";
|
|
@@ -38044,7 +38044,7 @@ export declare const mainChatRoomContract: {
|
|
|
38044
38044
|
template?: any;
|
|
38045
38045
|
};
|
|
38046
38046
|
latestMessage: {
|
|
38047
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
38047
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
38048
38048
|
message: string;
|
|
38049
38049
|
url: string;
|
|
38050
38050
|
direction: "incoming" | "outgoing" | "system";
|
|
@@ -56728,7 +56728,7 @@ export declare const mainChatContract: {
|
|
|
56728
56728
|
sendMessage: {
|
|
56729
56729
|
body: z.ZodObject<{
|
|
56730
56730
|
roomId: z.ZodString;
|
|
56731
|
-
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", "item"
|
|
56731
|
+
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", "item"]>;
|
|
56732
56732
|
message: z.ZodOptional<z.ZodString>;
|
|
56733
56733
|
messageAttachments: z.ZodOptional<z.ZodObject<{
|
|
56734
56734
|
bucketName: z.ZodString;
|
|
@@ -56762,15 +56762,15 @@ export declare const mainChatContract: {
|
|
|
56762
56762
|
height?: string | undefined;
|
|
56763
56763
|
}>>;
|
|
56764
56764
|
user: z.ZodOptional<z.ZodObject<{
|
|
56765
|
-
name: z.ZodString;
|
|
56766
56765
|
id: z.ZodString;
|
|
56767
|
-
address: z.ZodNullable<z.ZodString>;
|
|
56768
|
-
email: z.ZodString;
|
|
56769
56766
|
createdAt: z.ZodDate;
|
|
56770
56767
|
updatedAt: z.ZodDate;
|
|
56771
56768
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
56769
|
+
name: z.ZodString;
|
|
56770
|
+
email: z.ZodString;
|
|
56772
56771
|
emailVerifiedAt: z.ZodNullable<z.ZodDate>;
|
|
56773
56772
|
password: z.ZodString;
|
|
56773
|
+
address: z.ZodNullable<z.ZodString>;
|
|
56774
56774
|
phone: z.ZodNullable<z.ZodString>;
|
|
56775
56775
|
notificationCount: z.ZodNullable<z.ZodNumber>;
|
|
56776
56776
|
roles: z.ZodArray<z.ZodObject<{
|
|
@@ -56993,7 +56993,7 @@ export declare const mainChatContract: {
|
|
|
56993
56993
|
mentions?: string[] | undefined;
|
|
56994
56994
|
}>>;
|
|
56995
56995
|
}, "strip", z.ZodTypeAny, {
|
|
56996
|
-
messageType: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
56996
|
+
messageType: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
56997
56997
|
roomId: string;
|
|
56998
56998
|
message?: string | undefined;
|
|
56999
56999
|
messageAttachments?: {
|
|
@@ -57067,7 +57067,7 @@ export declare const mainChatContract: {
|
|
|
57067
57067
|
mentions?: string[] | undefined;
|
|
57068
57068
|
} | undefined;
|
|
57069
57069
|
}, {
|
|
57070
|
-
messageType: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
57070
|
+
messageType: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
57071
57071
|
roomId: string;
|
|
57072
57072
|
message?: string | undefined;
|
|
57073
57073
|
messageAttachments?: {
|
|
@@ -57147,7 +57147,7 @@ export declare const mainChatContract: {
|
|
|
57147
57147
|
200: z.ZodObject<{
|
|
57148
57148
|
requestId: z.ZodString;
|
|
57149
57149
|
data: z.ZodObject<{
|
|
57150
|
-
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", "item"
|
|
57150
|
+
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", "item"]>;
|
|
57151
57151
|
message: z.ZodString;
|
|
57152
57152
|
id: z.ZodString;
|
|
57153
57153
|
url: z.ZodString;
|
|
@@ -61083,7 +61083,7 @@ export declare const mainChatContract: {
|
|
|
61083
61083
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
61084
61084
|
message: z.ZodString;
|
|
61085
61085
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
|
61086
|
-
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", "item"
|
|
61086
|
+
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", "item"]>;
|
|
61087
61087
|
readAt: z.ZodDate;
|
|
61088
61088
|
metadata: z.ZodAny;
|
|
61089
61089
|
platformId: z.ZodString;
|
|
@@ -61129,15 +61129,15 @@ export declare const mainChatContract: {
|
|
|
61129
61129
|
fileUrl: string | null;
|
|
61130
61130
|
}>;
|
|
61131
61131
|
actor: z.ZodObject<{
|
|
61132
|
-
name: z.ZodString;
|
|
61133
61132
|
id: z.ZodString;
|
|
61134
|
-
address: z.ZodNullable<z.ZodString>;
|
|
61135
|
-
email: z.ZodString;
|
|
61136
61133
|
createdAt: z.ZodDate;
|
|
61137
61134
|
updatedAt: z.ZodDate;
|
|
61138
61135
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
61136
|
+
name: z.ZodString;
|
|
61137
|
+
email: z.ZodString;
|
|
61139
61138
|
emailVerifiedAt: z.ZodNullable<z.ZodDate>;
|
|
61140
61139
|
password: z.ZodString;
|
|
61140
|
+
address: z.ZodNullable<z.ZodString>;
|
|
61141
61141
|
phone: z.ZodNullable<z.ZodString>;
|
|
61142
61142
|
notificationCount: z.ZodNullable<z.ZodNumber>;
|
|
61143
61143
|
roles: z.ZodArray<z.ZodObject<{
|
|
@@ -61333,15 +61333,15 @@ export declare const mainChatContract: {
|
|
|
61333
61333
|
};
|
|
61334
61334
|
}>;
|
|
61335
61335
|
assignee: z.ZodObject<{
|
|
61336
|
-
name: z.ZodString;
|
|
61337
61336
|
id: z.ZodString;
|
|
61338
|
-
address: z.ZodNullable<z.ZodString>;
|
|
61339
|
-
email: z.ZodString;
|
|
61340
61337
|
createdAt: z.ZodDate;
|
|
61341
61338
|
updatedAt: z.ZodDate;
|
|
61342
61339
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
61340
|
+
name: z.ZodString;
|
|
61341
|
+
email: z.ZodString;
|
|
61343
61342
|
emailVerifiedAt: z.ZodNullable<z.ZodDate>;
|
|
61344
61343
|
password: z.ZodString;
|
|
61344
|
+
address: z.ZodNullable<z.ZodString>;
|
|
61345
61345
|
phone: z.ZodNullable<z.ZodString>;
|
|
61346
61346
|
notificationCount: z.ZodNullable<z.ZodNumber>;
|
|
61347
61347
|
roles: z.ZodArray<z.ZodObject<{
|
|
@@ -61537,15 +61537,15 @@ export declare const mainChatContract: {
|
|
|
61537
61537
|
};
|
|
61538
61538
|
}>;
|
|
61539
61539
|
sender: z.ZodObject<{
|
|
61540
|
-
name: z.ZodString;
|
|
61541
61540
|
id: z.ZodString;
|
|
61542
|
-
address: z.ZodNullable<z.ZodString>;
|
|
61543
|
-
email: z.ZodString;
|
|
61544
61541
|
createdAt: z.ZodDate;
|
|
61545
61542
|
updatedAt: z.ZodDate;
|
|
61546
61543
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
61544
|
+
name: z.ZodString;
|
|
61545
|
+
email: z.ZodString;
|
|
61547
61546
|
emailVerifiedAt: z.ZodNullable<z.ZodDate>;
|
|
61548
61547
|
password: z.ZodString;
|
|
61548
|
+
address: z.ZodNullable<z.ZodString>;
|
|
61549
61549
|
phone: z.ZodNullable<z.ZodString>;
|
|
61550
61550
|
notificationCount: z.ZodNullable<z.ZodNumber>;
|
|
61551
61551
|
roles: z.ZodArray<z.ZodObject<{
|
|
@@ -61741,7 +61741,7 @@ export declare const mainChatContract: {
|
|
|
61741
61741
|
};
|
|
61742
61742
|
}>;
|
|
61743
61743
|
}, "strip", z.ZodTypeAny, {
|
|
61744
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
61744
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
61745
61745
|
message: string;
|
|
61746
61746
|
id: string;
|
|
61747
61747
|
url: string;
|
|
@@ -61903,7 +61903,7 @@ export declare const mainChatContract: {
|
|
|
61903
61903
|
metadata?: any;
|
|
61904
61904
|
template?: any;
|
|
61905
61905
|
}, {
|
|
61906
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
61906
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
61907
61907
|
message: string;
|
|
61908
61908
|
id: string;
|
|
61909
61909
|
url: string;
|
|
@@ -62277,7 +62277,7 @@ export declare const mainChatContract: {
|
|
|
62277
62277
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
62278
62278
|
message: z.ZodString;
|
|
62279
62279
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
|
62280
|
-
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", "item"
|
|
62280
|
+
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", "item"]>;
|
|
62281
62281
|
readAt: z.ZodDate;
|
|
62282
62282
|
metadata: z.ZodAny;
|
|
62283
62283
|
platformId: z.ZodString;
|
|
@@ -65773,7 +65773,7 @@ export declare const mainChatContract: {
|
|
|
65773
65773
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
65774
65774
|
message: z.ZodString;
|
|
65775
65775
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
|
65776
|
-
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", "item"
|
|
65776
|
+
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", "item"]>;
|
|
65777
65777
|
readAt: z.ZodDate;
|
|
65778
65778
|
metadata: z.ZodAny;
|
|
65779
65779
|
platformId: z.ZodString;
|
|
@@ -65819,15 +65819,15 @@ export declare const mainChatContract: {
|
|
|
65819
65819
|
fileUrl: string | null;
|
|
65820
65820
|
}>;
|
|
65821
65821
|
actor: z.ZodObject<{
|
|
65822
|
-
name: z.ZodString;
|
|
65823
65822
|
id: z.ZodString;
|
|
65824
|
-
address: z.ZodNullable<z.ZodString>;
|
|
65825
|
-
email: z.ZodString;
|
|
65826
65823
|
createdAt: z.ZodDate;
|
|
65827
65824
|
updatedAt: z.ZodDate;
|
|
65828
65825
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
65826
|
+
name: z.ZodString;
|
|
65827
|
+
email: z.ZodString;
|
|
65829
65828
|
emailVerifiedAt: z.ZodNullable<z.ZodDate>;
|
|
65830
65829
|
password: z.ZodString;
|
|
65830
|
+
address: z.ZodNullable<z.ZodString>;
|
|
65831
65831
|
phone: z.ZodNullable<z.ZodString>;
|
|
65832
65832
|
notificationCount: z.ZodNullable<z.ZodNumber>;
|
|
65833
65833
|
roles: z.ZodArray<z.ZodObject<{
|
|
@@ -66023,15 +66023,15 @@ export declare const mainChatContract: {
|
|
|
66023
66023
|
};
|
|
66024
66024
|
}>;
|
|
66025
66025
|
assignee: z.ZodObject<{
|
|
66026
|
-
name: z.ZodString;
|
|
66027
66026
|
id: z.ZodString;
|
|
66028
|
-
address: z.ZodNullable<z.ZodString>;
|
|
66029
|
-
email: z.ZodString;
|
|
66030
66027
|
createdAt: z.ZodDate;
|
|
66031
66028
|
updatedAt: z.ZodDate;
|
|
66032
66029
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
66030
|
+
name: z.ZodString;
|
|
66031
|
+
email: z.ZodString;
|
|
66033
66032
|
emailVerifiedAt: z.ZodNullable<z.ZodDate>;
|
|
66034
66033
|
password: z.ZodString;
|
|
66034
|
+
address: z.ZodNullable<z.ZodString>;
|
|
66035
66035
|
phone: z.ZodNullable<z.ZodString>;
|
|
66036
66036
|
notificationCount: z.ZodNullable<z.ZodNumber>;
|
|
66037
66037
|
roles: z.ZodArray<z.ZodObject<{
|
|
@@ -66227,15 +66227,15 @@ export declare const mainChatContract: {
|
|
|
66227
66227
|
};
|
|
66228
66228
|
}>;
|
|
66229
66229
|
sender: z.ZodObject<{
|
|
66230
|
-
name: z.ZodString;
|
|
66231
66230
|
id: z.ZodString;
|
|
66232
|
-
address: z.ZodNullable<z.ZodString>;
|
|
66233
|
-
email: z.ZodString;
|
|
66234
66231
|
createdAt: z.ZodDate;
|
|
66235
66232
|
updatedAt: z.ZodDate;
|
|
66236
66233
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
66234
|
+
name: z.ZodString;
|
|
66235
|
+
email: z.ZodString;
|
|
66237
66236
|
emailVerifiedAt: z.ZodNullable<z.ZodDate>;
|
|
66238
66237
|
password: z.ZodString;
|
|
66238
|
+
address: z.ZodNullable<z.ZodString>;
|
|
66239
66239
|
phone: z.ZodNullable<z.ZodString>;
|
|
66240
66240
|
notificationCount: z.ZodNullable<z.ZodNumber>;
|
|
66241
66241
|
roles: z.ZodArray<z.ZodObject<{
|
|
@@ -66431,7 +66431,7 @@ export declare const mainChatContract: {
|
|
|
66431
66431
|
};
|
|
66432
66432
|
}>;
|
|
66433
66433
|
}, "strip", z.ZodTypeAny, {
|
|
66434
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
66434
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
66435
66435
|
message: string;
|
|
66436
66436
|
id: string;
|
|
66437
66437
|
url: string;
|
|
@@ -66593,7 +66593,7 @@ export declare const mainChatContract: {
|
|
|
66593
66593
|
metadata?: any;
|
|
66594
66594
|
template?: any;
|
|
66595
66595
|
}, {
|
|
66596
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
66596
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
66597
66597
|
message: string;
|
|
66598
66598
|
id: string;
|
|
66599
66599
|
url: string;
|
|
@@ -67395,7 +67395,7 @@ export declare const mainChatContract: {
|
|
|
67395
67395
|
editedMessageid: z.ZodString;
|
|
67396
67396
|
label: z.ZodOptional<z.ZodString>;
|
|
67397
67397
|
}, "strip", z.ZodTypeAny, {
|
|
67398
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
67398
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
67399
67399
|
message: string;
|
|
67400
67400
|
id: string;
|
|
67401
67401
|
url: string;
|
|
@@ -67950,7 +67950,7 @@ export declare const mainChatContract: {
|
|
|
67950
67950
|
previewUrl: string;
|
|
67951
67951
|
imageSetId: string;
|
|
67952
67952
|
repliedMessage: {
|
|
67953
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
67953
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
67954
67954
|
message: string;
|
|
67955
67955
|
id: string;
|
|
67956
67956
|
url: string;
|
|
@@ -68161,7 +68161,7 @@ export declare const mainChatContract: {
|
|
|
68161
68161
|
template?: any;
|
|
68162
68162
|
label?: string | undefined;
|
|
68163
68163
|
}, {
|
|
68164
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
68164
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
68165
68165
|
message: string;
|
|
68166
68166
|
id: string;
|
|
68167
68167
|
url: string;
|
|
@@ -68716,7 +68716,7 @@ export declare const mainChatContract: {
|
|
|
68716
68716
|
previewUrl: string;
|
|
68717
68717
|
imageSetId: string;
|
|
68718
68718
|
repliedMessage: {
|
|
68719
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
68719
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
68720
68720
|
message: string;
|
|
68721
68721
|
id: string;
|
|
68722
68722
|
url: string;
|
|
@@ -68928,7 +68928,7 @@ export declare const mainChatContract: {
|
|
|
68928
68928
|
label?: string | undefined;
|
|
68929
68929
|
}>>>;
|
|
68930
68930
|
}, "strip", z.ZodTypeAny, {
|
|
68931
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
68931
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
68932
68932
|
message: string;
|
|
68933
68933
|
id: string;
|
|
68934
68934
|
url: string;
|
|
@@ -69483,7 +69483,7 @@ export declare const mainChatContract: {
|
|
|
69483
69483
|
previewUrl: string;
|
|
69484
69484
|
imageSetId: string;
|
|
69485
69485
|
repliedMessage: {
|
|
69486
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
69486
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
69487
69487
|
message: string;
|
|
69488
69488
|
id: string;
|
|
69489
69489
|
url: string;
|
|
@@ -69694,7 +69694,7 @@ export declare const mainChatContract: {
|
|
|
69694
69694
|
template?: any;
|
|
69695
69695
|
metadata?: any;
|
|
69696
69696
|
fromMessage?: {
|
|
69697
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
69697
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
69698
69698
|
message: string;
|
|
69699
69699
|
id: string;
|
|
69700
69700
|
url: string;
|
|
@@ -70249,7 +70249,7 @@ export declare const mainChatContract: {
|
|
|
70249
70249
|
previewUrl: string;
|
|
70250
70250
|
imageSetId: string;
|
|
70251
70251
|
repliedMessage: {
|
|
70252
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
70252
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
70253
70253
|
message: string;
|
|
70254
70254
|
id: string;
|
|
70255
70255
|
url: string;
|
|
@@ -70461,7 +70461,7 @@ export declare const mainChatContract: {
|
|
|
70461
70461
|
label?: string | undefined;
|
|
70462
70462
|
} | null | undefined;
|
|
70463
70463
|
}, {
|
|
70464
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
70464
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
70465
70465
|
message: string;
|
|
70466
70466
|
id: string;
|
|
70467
70467
|
url: string;
|
|
@@ -71016,7 +71016,7 @@ export declare const mainChatContract: {
|
|
|
71016
71016
|
previewUrl: string;
|
|
71017
71017
|
imageSetId: string;
|
|
71018
71018
|
repliedMessage: {
|
|
71019
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
71019
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
71020
71020
|
message: string;
|
|
71021
71021
|
id: string;
|
|
71022
71022
|
url: string;
|
|
@@ -71227,7 +71227,7 @@ export declare const mainChatContract: {
|
|
|
71227
71227
|
template?: any;
|
|
71228
71228
|
metadata?: any;
|
|
71229
71229
|
fromMessage?: {
|
|
71230
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
71230
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
71231
71231
|
message: string;
|
|
71232
71232
|
id: string;
|
|
71233
71233
|
url: string;
|
|
@@ -71782,7 +71782,7 @@ export declare const mainChatContract: {
|
|
|
71782
71782
|
previewUrl: string;
|
|
71783
71783
|
imageSetId: string;
|
|
71784
71784
|
repliedMessage: {
|
|
71785
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
71785
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
71786
71786
|
message: string;
|
|
71787
71787
|
id: string;
|
|
71788
71788
|
url: string;
|
|
@@ -71996,7 +71996,7 @@ export declare const mainChatContract: {
|
|
|
71996
71996
|
}>;
|
|
71997
71997
|
}, "strip", z.ZodTypeAny, {
|
|
71998
71998
|
data: {
|
|
71999
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
71999
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
72000
72000
|
message: string;
|
|
72001
72001
|
id: string;
|
|
72002
72002
|
url: string;
|
|
@@ -72551,7 +72551,7 @@ export declare const mainChatContract: {
|
|
|
72551
72551
|
previewUrl: string;
|
|
72552
72552
|
imageSetId: string;
|
|
72553
72553
|
repliedMessage: {
|
|
72554
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
72554
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
72555
72555
|
message: string;
|
|
72556
72556
|
id: string;
|
|
72557
72557
|
url: string;
|
|
@@ -72762,7 +72762,7 @@ export declare const mainChatContract: {
|
|
|
72762
72762
|
template?: any;
|
|
72763
72763
|
metadata?: any;
|
|
72764
72764
|
fromMessage?: {
|
|
72765
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
72765
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
72766
72766
|
message: string;
|
|
72767
72767
|
id: string;
|
|
72768
72768
|
url: string;
|
|
@@ -73317,7 +73317,7 @@ export declare const mainChatContract: {
|
|
|
73317
73317
|
previewUrl: string;
|
|
73318
73318
|
imageSetId: string;
|
|
73319
73319
|
repliedMessage: {
|
|
73320
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
73320
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
73321
73321
|
message: string;
|
|
73322
73322
|
id: string;
|
|
73323
73323
|
url: string;
|
|
@@ -73532,7 +73532,7 @@ export declare const mainChatContract: {
|
|
|
73532
73532
|
requestId: string;
|
|
73533
73533
|
}, {
|
|
73534
73534
|
data: {
|
|
73535
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
73535
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
73536
73536
|
message: string;
|
|
73537
73537
|
id: string;
|
|
73538
73538
|
url: string;
|
|
@@ -74087,7 +74087,7 @@ export declare const mainChatContract: {
|
|
|
74087
74087
|
previewUrl: string;
|
|
74088
74088
|
imageSetId: string;
|
|
74089
74089
|
repliedMessage: {
|
|
74090
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
74090
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
74091
74091
|
message: string;
|
|
74092
74092
|
id: string;
|
|
74093
74093
|
url: string;
|
|
@@ -74298,7 +74298,7 @@ export declare const mainChatContract: {
|
|
|
74298
74298
|
template?: any;
|
|
74299
74299
|
metadata?: any;
|
|
74300
74300
|
fromMessage?: {
|
|
74301
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
74301
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
74302
74302
|
message: string;
|
|
74303
74303
|
id: string;
|
|
74304
74304
|
url: string;
|
|
@@ -74853,7 +74853,7 @@ export declare const mainChatContract: {
|
|
|
74853
74853
|
previewUrl: string;
|
|
74854
74854
|
imageSetId: string;
|
|
74855
74855
|
repliedMessage: {
|
|
74856
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
74856
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
74857
74857
|
message: string;
|
|
74858
74858
|
id: string;
|
|
74859
74859
|
url: string;
|
|
@@ -75245,7 +75245,7 @@ export declare const mainChatContract: {
|
|
|
75245
75245
|
page: z.ZodNumber;
|
|
75246
75246
|
pageSize: z.ZodNumber;
|
|
75247
75247
|
data: z.ZodArray<z.ZodObject<{
|
|
75248
|
-
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", "item"
|
|
75248
|
+
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", "item"]>;
|
|
75249
75249
|
message: z.ZodString;
|
|
75250
75250
|
id: z.ZodString;
|
|
75251
75251
|
url: z.ZodString;
|
|
@@ -79181,7 +79181,7 @@ export declare const mainChatContract: {
|
|
|
79181
79181
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
79182
79182
|
message: z.ZodString;
|
|
79183
79183
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
|
79184
|
-
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", "item"
|
|
79184
|
+
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", "item"]>;
|
|
79185
79185
|
readAt: z.ZodDate;
|
|
79186
79186
|
metadata: z.ZodAny;
|
|
79187
79187
|
platformId: z.ZodString;
|
|
@@ -79227,15 +79227,15 @@ export declare const mainChatContract: {
|
|
|
79227
79227
|
fileUrl: string | null;
|
|
79228
79228
|
}>;
|
|
79229
79229
|
actor: z.ZodObject<{
|
|
79230
|
-
name: z.ZodString;
|
|
79231
79230
|
id: z.ZodString;
|
|
79232
|
-
address: z.ZodNullable<z.ZodString>;
|
|
79233
|
-
email: z.ZodString;
|
|
79234
79231
|
createdAt: z.ZodDate;
|
|
79235
79232
|
updatedAt: z.ZodDate;
|
|
79236
79233
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
79234
|
+
name: z.ZodString;
|
|
79235
|
+
email: z.ZodString;
|
|
79237
79236
|
emailVerifiedAt: z.ZodNullable<z.ZodDate>;
|
|
79238
79237
|
password: z.ZodString;
|
|
79238
|
+
address: z.ZodNullable<z.ZodString>;
|
|
79239
79239
|
phone: z.ZodNullable<z.ZodString>;
|
|
79240
79240
|
notificationCount: z.ZodNullable<z.ZodNumber>;
|
|
79241
79241
|
roles: z.ZodArray<z.ZodObject<{
|
|
@@ -79431,15 +79431,15 @@ export declare const mainChatContract: {
|
|
|
79431
79431
|
};
|
|
79432
79432
|
}>;
|
|
79433
79433
|
assignee: z.ZodObject<{
|
|
79434
|
-
name: z.ZodString;
|
|
79435
79434
|
id: z.ZodString;
|
|
79436
|
-
address: z.ZodNullable<z.ZodString>;
|
|
79437
|
-
email: z.ZodString;
|
|
79438
79435
|
createdAt: z.ZodDate;
|
|
79439
79436
|
updatedAt: z.ZodDate;
|
|
79440
79437
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
79438
|
+
name: z.ZodString;
|
|
79439
|
+
email: z.ZodString;
|
|
79441
79440
|
emailVerifiedAt: z.ZodNullable<z.ZodDate>;
|
|
79442
79441
|
password: z.ZodString;
|
|
79442
|
+
address: z.ZodNullable<z.ZodString>;
|
|
79443
79443
|
phone: z.ZodNullable<z.ZodString>;
|
|
79444
79444
|
notificationCount: z.ZodNullable<z.ZodNumber>;
|
|
79445
79445
|
roles: z.ZodArray<z.ZodObject<{
|
|
@@ -79635,15 +79635,15 @@ export declare const mainChatContract: {
|
|
|
79635
79635
|
};
|
|
79636
79636
|
}>;
|
|
79637
79637
|
sender: z.ZodObject<{
|
|
79638
|
-
name: z.ZodString;
|
|
79639
79638
|
id: z.ZodString;
|
|
79640
|
-
address: z.ZodNullable<z.ZodString>;
|
|
79641
|
-
email: z.ZodString;
|
|
79642
79639
|
createdAt: z.ZodDate;
|
|
79643
79640
|
updatedAt: z.ZodDate;
|
|
79644
79641
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
79642
|
+
name: z.ZodString;
|
|
79643
|
+
email: z.ZodString;
|
|
79645
79644
|
emailVerifiedAt: z.ZodNullable<z.ZodDate>;
|
|
79646
79645
|
password: z.ZodString;
|
|
79646
|
+
address: z.ZodNullable<z.ZodString>;
|
|
79647
79647
|
phone: z.ZodNullable<z.ZodString>;
|
|
79648
79648
|
notificationCount: z.ZodNullable<z.ZodNumber>;
|
|
79649
79649
|
roles: z.ZodArray<z.ZodObject<{
|
|
@@ -79839,7 +79839,7 @@ export declare const mainChatContract: {
|
|
|
79839
79839
|
};
|
|
79840
79840
|
}>;
|
|
79841
79841
|
}, "strip", z.ZodTypeAny, {
|
|
79842
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
79842
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
79843
79843
|
message: string;
|
|
79844
79844
|
id: string;
|
|
79845
79845
|
url: string;
|
|
@@ -80001,7 +80001,7 @@ export declare const mainChatContract: {
|
|
|
80001
80001
|
metadata?: any;
|
|
80002
80002
|
template?: any;
|
|
80003
80003
|
}, {
|
|
80004
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
80004
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
80005
80005
|
message: string;
|
|
80006
80006
|
id: string;
|
|
80007
80007
|
url: string;
|
|
@@ -80376,7 +80376,7 @@ export declare const mainChatContract: {
|
|
|
80376
80376
|
updatedAt: z.ZodDate;
|
|
80377
80377
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
80378
80378
|
message: z.ZodNullable<z.ZodString>;
|
|
80379
|
-
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", "item"
|
|
80379
|
+
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", "item"]>]>;
|
|
80380
80380
|
metadata: z.ZodAny;
|
|
80381
80381
|
platformId: z.ZodString;
|
|
80382
80382
|
platformMessageId: z.ZodString;
|
|
@@ -81984,15 +81984,15 @@ export declare const mainChatContract: {
|
|
|
81984
81984
|
socialPlatformId: string;
|
|
81985
81985
|
}>;
|
|
81986
81986
|
actor: z.ZodObject<{
|
|
81987
|
-
name: z.ZodString;
|
|
81988
81987
|
id: z.ZodString;
|
|
81989
|
-
address: z.ZodNullable<z.ZodString>;
|
|
81990
|
-
email: z.ZodString;
|
|
81991
81988
|
createdAt: z.ZodDate;
|
|
81992
81989
|
updatedAt: z.ZodDate;
|
|
81993
81990
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
81991
|
+
name: z.ZodString;
|
|
81992
|
+
email: z.ZodString;
|
|
81994
81993
|
emailVerifiedAt: z.ZodNullable<z.ZodDate>;
|
|
81995
81994
|
password: z.ZodString;
|
|
81995
|
+
address: z.ZodNullable<z.ZodString>;
|
|
81996
81996
|
phone: z.ZodNullable<z.ZodString>;
|
|
81997
81997
|
notificationCount: z.ZodNullable<z.ZodNumber>;
|
|
81998
81998
|
roles: z.ZodArray<z.ZodObject<{
|
|
@@ -82189,7 +82189,7 @@ export declare const mainChatContract: {
|
|
|
82189
82189
|
}>;
|
|
82190
82190
|
permalinkURL: z.ZodString;
|
|
82191
82191
|
}, "strip", z.ZodTypeAny, {
|
|
82192
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
82192
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
82193
82193
|
message: string | null;
|
|
82194
82194
|
id: string;
|
|
82195
82195
|
channel: {
|
|
@@ -82471,7 +82471,7 @@ export declare const mainChatContract: {
|
|
|
82471
82471
|
metadata?: any;
|
|
82472
82472
|
template?: any;
|
|
82473
82473
|
}, {
|
|
82474
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
82474
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
82475
82475
|
message: string | null;
|
|
82476
82476
|
id: string;
|
|
82477
82477
|
channel: {
|
|
@@ -82755,7 +82755,7 @@ export declare const mainChatContract: {
|
|
|
82755
82755
|
}>>;
|
|
82756
82756
|
replyReaction: z.ZodNullable<z.ZodString>;
|
|
82757
82757
|
}, "strip", z.ZodTypeAny, {
|
|
82758
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
82758
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
82759
82759
|
message: string;
|
|
82760
82760
|
id: string;
|
|
82761
82761
|
url: string;
|
|
@@ -83310,7 +83310,7 @@ export declare const mainChatContract: {
|
|
|
83310
83310
|
previewUrl: string;
|
|
83311
83311
|
imageSetId: string;
|
|
83312
83312
|
repliedMessage: {
|
|
83313
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
83313
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
83314
83314
|
message: string;
|
|
83315
83315
|
id: string;
|
|
83316
83316
|
url: string;
|
|
@@ -83520,7 +83520,7 @@ export declare const mainChatContract: {
|
|
|
83520
83520
|
parentMessageId: string | null;
|
|
83521
83521
|
feedPostId: string | null;
|
|
83522
83522
|
feedPost: {
|
|
83523
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
83523
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
83524
83524
|
message: string | null;
|
|
83525
83525
|
id: string;
|
|
83526
83526
|
channel: {
|
|
@@ -83807,7 +83807,7 @@ export declare const mainChatContract: {
|
|
|
83807
83807
|
template?: any;
|
|
83808
83808
|
metadata?: any;
|
|
83809
83809
|
}, {
|
|
83810
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
83810
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
83811
83811
|
message: string;
|
|
83812
83812
|
id: string;
|
|
83813
83813
|
url: string;
|
|
@@ -84362,7 +84362,7 @@ export declare const mainChatContract: {
|
|
|
84362
84362
|
previewUrl: string;
|
|
84363
84363
|
imageSetId: string;
|
|
84364
84364
|
repliedMessage: {
|
|
84365
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
84365
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
84366
84366
|
message: string;
|
|
84367
84367
|
id: string;
|
|
84368
84368
|
url: string;
|
|
@@ -84572,7 +84572,7 @@ export declare const mainChatContract: {
|
|
|
84572
84572
|
parentMessageId: string | null;
|
|
84573
84573
|
feedPostId: string | null;
|
|
84574
84574
|
feedPost: {
|
|
84575
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
84575
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
84576
84576
|
message: string | null;
|
|
84577
84577
|
id: string;
|
|
84578
84578
|
channel: {
|
|
@@ -84861,7 +84861,7 @@ export declare const mainChatContract: {
|
|
|
84861
84861
|
}>, "many">;
|
|
84862
84862
|
}, "strip", z.ZodTypeAny, {
|
|
84863
84863
|
data: {
|
|
84864
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
84864
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
84865
84865
|
message: string;
|
|
84866
84866
|
id: string;
|
|
84867
84867
|
url: string;
|
|
@@ -85416,7 +85416,7 @@ export declare const mainChatContract: {
|
|
|
85416
85416
|
previewUrl: string;
|
|
85417
85417
|
imageSetId: string;
|
|
85418
85418
|
repliedMessage: {
|
|
85419
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
85419
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
85420
85420
|
message: string;
|
|
85421
85421
|
id: string;
|
|
85422
85422
|
url: string;
|
|
@@ -85626,7 +85626,7 @@ export declare const mainChatContract: {
|
|
|
85626
85626
|
parentMessageId: string | null;
|
|
85627
85627
|
feedPostId: string | null;
|
|
85628
85628
|
feedPost: {
|
|
85629
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
85629
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
85630
85630
|
message: string | null;
|
|
85631
85631
|
id: string;
|
|
85632
85632
|
channel: {
|
|
@@ -85919,7 +85919,7 @@ export declare const mainChatContract: {
|
|
|
85919
85919
|
requestId: string;
|
|
85920
85920
|
}, {
|
|
85921
85921
|
data: {
|
|
85922
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
85922
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
85923
85923
|
message: string;
|
|
85924
85924
|
id: string;
|
|
85925
85925
|
url: string;
|
|
@@ -86474,7 +86474,7 @@ export declare const mainChatContract: {
|
|
|
86474
86474
|
previewUrl: string;
|
|
86475
86475
|
imageSetId: string;
|
|
86476
86476
|
repliedMessage: {
|
|
86477
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
86477
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
86478
86478
|
message: string;
|
|
86479
86479
|
id: string;
|
|
86480
86480
|
url: string;
|
|
@@ -86684,7 +86684,7 @@ export declare const mainChatContract: {
|
|
|
86684
86684
|
parentMessageId: string | null;
|
|
86685
86685
|
feedPostId: string | null;
|
|
86686
86686
|
feedPost: {
|
|
86687
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
86687
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
86688
86688
|
message: string | null;
|
|
86689
86689
|
id: string;
|
|
86690
86690
|
channel: {
|
|
@@ -101126,17 +101126,17 @@ export declare const initiateMessageContract: {
|
|
|
101126
101126
|
contactId: z.ZodOptional<z.ZodString>;
|
|
101127
101127
|
message: z.ZodObject<{
|
|
101128
101128
|
message: z.ZodOptional<z.ZodString>;
|
|
101129
|
-
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", "item"
|
|
101129
|
+
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", "item"]>;
|
|
101130
101130
|
}, "strip", z.ZodTypeAny, {
|
|
101131
|
-
messageType: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
101131
|
+
messageType: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
101132
101132
|
message?: string | undefined;
|
|
101133
101133
|
}, {
|
|
101134
|
-
messageType: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
101134
|
+
messageType: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
101135
101135
|
message?: string | undefined;
|
|
101136
101136
|
}>;
|
|
101137
101137
|
}, "strip", z.ZodTypeAny, {
|
|
101138
101138
|
message: {
|
|
101139
|
-
messageType: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
101139
|
+
messageType: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
101140
101140
|
message?: string | undefined;
|
|
101141
101141
|
};
|
|
101142
101142
|
channelId: string;
|
|
@@ -101144,7 +101144,7 @@ export declare const initiateMessageContract: {
|
|
|
101144
101144
|
contactId?: string | undefined;
|
|
101145
101145
|
}, {
|
|
101146
101146
|
message: {
|
|
101147
|
-
messageType: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
101147
|
+
messageType: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
101148
101148
|
message?: string | undefined;
|
|
101149
101149
|
};
|
|
101150
101150
|
channelId: string;
|
|
@@ -101162,7 +101162,7 @@ export declare const initiateMessageContract: {
|
|
|
101162
101162
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
101163
101163
|
message: z.ZodString;
|
|
101164
101164
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
|
101165
|
-
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", "item"
|
|
101165
|
+
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", "item"]>;
|
|
101166
101166
|
readAt: z.ZodDate;
|
|
101167
101167
|
metadata: z.ZodAny;
|
|
101168
101168
|
platformId: z.ZodString;
|
|
@@ -104658,7 +104658,7 @@ export declare const initiateMessageContract: {
|
|
|
104658
104658
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
104659
104659
|
message: z.ZodString;
|
|
104660
104660
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
|
104661
|
-
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", "item"
|
|
104661
|
+
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", "item"]>;
|
|
104662
104662
|
readAt: z.ZodDate;
|
|
104663
104663
|
metadata: z.ZodAny;
|
|
104664
104664
|
platformId: z.ZodString;
|
|
@@ -104704,15 +104704,15 @@ export declare const initiateMessageContract: {
|
|
|
104704
104704
|
fileUrl: string | null;
|
|
104705
104705
|
}>;
|
|
104706
104706
|
actor: z.ZodObject<{
|
|
104707
|
-
name: z.ZodString;
|
|
104708
104707
|
id: z.ZodString;
|
|
104709
|
-
address: z.ZodNullable<z.ZodString>;
|
|
104710
|
-
email: z.ZodString;
|
|
104711
104708
|
createdAt: z.ZodDate;
|
|
104712
104709
|
updatedAt: z.ZodDate;
|
|
104713
104710
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
104711
|
+
name: z.ZodString;
|
|
104712
|
+
email: z.ZodString;
|
|
104714
104713
|
emailVerifiedAt: z.ZodNullable<z.ZodDate>;
|
|
104715
104714
|
password: z.ZodString;
|
|
104715
|
+
address: z.ZodNullable<z.ZodString>;
|
|
104716
104716
|
phone: z.ZodNullable<z.ZodString>;
|
|
104717
104717
|
notificationCount: z.ZodNullable<z.ZodNumber>;
|
|
104718
104718
|
roles: z.ZodArray<z.ZodObject<{
|
|
@@ -104908,15 +104908,15 @@ export declare const initiateMessageContract: {
|
|
|
104908
104908
|
};
|
|
104909
104909
|
}>;
|
|
104910
104910
|
assignee: z.ZodObject<{
|
|
104911
|
-
name: z.ZodString;
|
|
104912
104911
|
id: z.ZodString;
|
|
104913
|
-
address: z.ZodNullable<z.ZodString>;
|
|
104914
|
-
email: z.ZodString;
|
|
104915
104912
|
createdAt: z.ZodDate;
|
|
104916
104913
|
updatedAt: z.ZodDate;
|
|
104917
104914
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
104915
|
+
name: z.ZodString;
|
|
104916
|
+
email: z.ZodString;
|
|
104918
104917
|
emailVerifiedAt: z.ZodNullable<z.ZodDate>;
|
|
104919
104918
|
password: z.ZodString;
|
|
104919
|
+
address: z.ZodNullable<z.ZodString>;
|
|
104920
104920
|
phone: z.ZodNullable<z.ZodString>;
|
|
104921
104921
|
notificationCount: z.ZodNullable<z.ZodNumber>;
|
|
104922
104922
|
roles: z.ZodArray<z.ZodObject<{
|
|
@@ -105112,15 +105112,15 @@ export declare const initiateMessageContract: {
|
|
|
105112
105112
|
};
|
|
105113
105113
|
}>;
|
|
105114
105114
|
sender: z.ZodObject<{
|
|
105115
|
-
name: z.ZodString;
|
|
105116
105115
|
id: z.ZodString;
|
|
105117
|
-
address: z.ZodNullable<z.ZodString>;
|
|
105118
|
-
email: z.ZodString;
|
|
105119
105116
|
createdAt: z.ZodDate;
|
|
105120
105117
|
updatedAt: z.ZodDate;
|
|
105121
105118
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
105119
|
+
name: z.ZodString;
|
|
105120
|
+
email: z.ZodString;
|
|
105122
105121
|
emailVerifiedAt: z.ZodNullable<z.ZodDate>;
|
|
105123
105122
|
password: z.ZodString;
|
|
105123
|
+
address: z.ZodNullable<z.ZodString>;
|
|
105124
105124
|
phone: z.ZodNullable<z.ZodString>;
|
|
105125
105125
|
notificationCount: z.ZodNullable<z.ZodNumber>;
|
|
105126
105126
|
roles: z.ZodArray<z.ZodObject<{
|
|
@@ -105316,7 +105316,7 @@ export declare const initiateMessageContract: {
|
|
|
105316
105316
|
};
|
|
105317
105317
|
}>;
|
|
105318
105318
|
}, "strip", z.ZodTypeAny, {
|
|
105319
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
105319
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
105320
105320
|
message: string;
|
|
105321
105321
|
id: string;
|
|
105322
105322
|
url: string;
|
|
@@ -105478,7 +105478,7 @@ export declare const initiateMessageContract: {
|
|
|
105478
105478
|
metadata?: any;
|
|
105479
105479
|
template?: any;
|
|
105480
105480
|
}, {
|
|
105481
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
105481
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
105482
105482
|
message: string;
|
|
105483
105483
|
id: string;
|
|
105484
105484
|
url: string;
|
|
@@ -106280,7 +106280,7 @@ export declare const initiateMessageContract: {
|
|
|
106280
106280
|
editedMessageid: z.ZodString;
|
|
106281
106281
|
label: z.ZodOptional<z.ZodString>;
|
|
106282
106282
|
}, "strip", z.ZodTypeAny, {
|
|
106283
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
106283
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
106284
106284
|
message: string;
|
|
106285
106285
|
id: string;
|
|
106286
106286
|
url: string;
|
|
@@ -106835,7 +106835,7 @@ export declare const initiateMessageContract: {
|
|
|
106835
106835
|
previewUrl: string;
|
|
106836
106836
|
imageSetId: string;
|
|
106837
106837
|
repliedMessage: {
|
|
106838
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
106838
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
106839
106839
|
message: string;
|
|
106840
106840
|
id: string;
|
|
106841
106841
|
url: string;
|
|
@@ -107046,7 +107046,7 @@ export declare const initiateMessageContract: {
|
|
|
107046
107046
|
template?: any;
|
|
107047
107047
|
label?: string | undefined;
|
|
107048
107048
|
}, {
|
|
107049
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
107049
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
107050
107050
|
message: string;
|
|
107051
107051
|
id: string;
|
|
107052
107052
|
url: string;
|
|
@@ -107601,7 +107601,7 @@ export declare const initiateMessageContract: {
|
|
|
107601
107601
|
previewUrl: string;
|
|
107602
107602
|
imageSetId: string;
|
|
107603
107603
|
repliedMessage: {
|
|
107604
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
107604
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
107605
107605
|
message: string;
|
|
107606
107606
|
id: string;
|
|
107607
107607
|
url: string;
|
|
@@ -107814,7 +107814,7 @@ export declare const initiateMessageContract: {
|
|
|
107814
107814
|
}>;
|
|
107815
107815
|
}, "strip", z.ZodTypeAny, {
|
|
107816
107816
|
data: {
|
|
107817
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
107817
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
107818
107818
|
message: string;
|
|
107819
107819
|
id: string;
|
|
107820
107820
|
url: string;
|
|
@@ -108369,7 +108369,7 @@ export declare const initiateMessageContract: {
|
|
|
108369
108369
|
previewUrl: string;
|
|
108370
108370
|
imageSetId: string;
|
|
108371
108371
|
repliedMessage: {
|
|
108372
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
108372
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
108373
108373
|
message: string;
|
|
108374
108374
|
id: string;
|
|
108375
108375
|
url: string;
|
|
@@ -108583,7 +108583,7 @@ export declare const initiateMessageContract: {
|
|
|
108583
108583
|
requestId: string;
|
|
108584
108584
|
}, {
|
|
108585
108585
|
data: {
|
|
108586
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
108586
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
108587
108587
|
message: string;
|
|
108588
108588
|
id: string;
|
|
108589
108589
|
url: string;
|
|
@@ -109138,7 +109138,7 @@ export declare const initiateMessageContract: {
|
|
|
109138
109138
|
previewUrl: string;
|
|
109139
109139
|
imageSetId: string;
|
|
109140
109140
|
repliedMessage: {
|
|
109141
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
109141
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
109142
109142
|
message: string;
|
|
109143
109143
|
id: string;
|
|
109144
109144
|
url: string;
|
|
@@ -109395,7 +109395,7 @@ export declare const mainChatMessageContract: {
|
|
|
109395
109395
|
sendMessage: {
|
|
109396
109396
|
body: z.ZodObject<{
|
|
109397
109397
|
roomId: z.ZodString;
|
|
109398
|
-
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", "item"
|
|
109398
|
+
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", "item"]>;
|
|
109399
109399
|
message: z.ZodOptional<z.ZodString>;
|
|
109400
109400
|
messageAttachments: z.ZodOptional<z.ZodObject<{
|
|
109401
109401
|
bucketName: z.ZodString;
|
|
@@ -109429,15 +109429,15 @@ export declare const mainChatMessageContract: {
|
|
|
109429
109429
|
height?: string | undefined;
|
|
109430
109430
|
}>>;
|
|
109431
109431
|
user: z.ZodOptional<z.ZodObject<{
|
|
109432
|
-
name: z.ZodString;
|
|
109433
109432
|
id: z.ZodString;
|
|
109434
|
-
address: z.ZodNullable<z.ZodString>;
|
|
109435
|
-
email: z.ZodString;
|
|
109436
109433
|
createdAt: z.ZodDate;
|
|
109437
109434
|
updatedAt: z.ZodDate;
|
|
109438
109435
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
109436
|
+
name: z.ZodString;
|
|
109437
|
+
email: z.ZodString;
|
|
109439
109438
|
emailVerifiedAt: z.ZodNullable<z.ZodDate>;
|
|
109440
109439
|
password: z.ZodString;
|
|
109440
|
+
address: z.ZodNullable<z.ZodString>;
|
|
109441
109441
|
phone: z.ZodNullable<z.ZodString>;
|
|
109442
109442
|
notificationCount: z.ZodNullable<z.ZodNumber>;
|
|
109443
109443
|
roles: z.ZodArray<z.ZodObject<{
|
|
@@ -109660,7 +109660,7 @@ export declare const mainChatMessageContract: {
|
|
|
109660
109660
|
mentions?: string[] | undefined;
|
|
109661
109661
|
}>>;
|
|
109662
109662
|
}, "strip", z.ZodTypeAny, {
|
|
109663
|
-
messageType: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
109663
|
+
messageType: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
109664
109664
|
roomId: string;
|
|
109665
109665
|
message?: string | undefined;
|
|
109666
109666
|
messageAttachments?: {
|
|
@@ -109734,7 +109734,7 @@ export declare const mainChatMessageContract: {
|
|
|
109734
109734
|
mentions?: string[] | undefined;
|
|
109735
109735
|
} | undefined;
|
|
109736
109736
|
}, {
|
|
109737
|
-
messageType: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
109737
|
+
messageType: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
109738
109738
|
roomId: string;
|
|
109739
109739
|
message?: string | undefined;
|
|
109740
109740
|
messageAttachments?: {
|
|
@@ -109814,7 +109814,7 @@ export declare const mainChatMessageContract: {
|
|
|
109814
109814
|
200: z.ZodObject<{
|
|
109815
109815
|
requestId: z.ZodString;
|
|
109816
109816
|
data: z.ZodObject<{
|
|
109817
|
-
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", "item"
|
|
109817
|
+
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", "item"]>;
|
|
109818
109818
|
message: z.ZodString;
|
|
109819
109819
|
id: z.ZodString;
|
|
109820
109820
|
url: z.ZodString;
|
|
@@ -113750,7 +113750,7 @@ export declare const mainChatMessageContract: {
|
|
|
113750
113750
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
113751
113751
|
message: z.ZodString;
|
|
113752
113752
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
|
113753
|
-
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", "item"
|
|
113753
|
+
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", "item"]>;
|
|
113754
113754
|
readAt: z.ZodDate;
|
|
113755
113755
|
metadata: z.ZodAny;
|
|
113756
113756
|
platformId: z.ZodString;
|
|
@@ -113796,15 +113796,15 @@ export declare const mainChatMessageContract: {
|
|
|
113796
113796
|
fileUrl: string | null;
|
|
113797
113797
|
}>;
|
|
113798
113798
|
actor: z.ZodObject<{
|
|
113799
|
-
name: z.ZodString;
|
|
113800
113799
|
id: z.ZodString;
|
|
113801
|
-
address: z.ZodNullable<z.ZodString>;
|
|
113802
|
-
email: z.ZodString;
|
|
113803
113800
|
createdAt: z.ZodDate;
|
|
113804
113801
|
updatedAt: z.ZodDate;
|
|
113805
113802
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
113803
|
+
name: z.ZodString;
|
|
113804
|
+
email: z.ZodString;
|
|
113806
113805
|
emailVerifiedAt: z.ZodNullable<z.ZodDate>;
|
|
113807
113806
|
password: z.ZodString;
|
|
113807
|
+
address: z.ZodNullable<z.ZodString>;
|
|
113808
113808
|
phone: z.ZodNullable<z.ZodString>;
|
|
113809
113809
|
notificationCount: z.ZodNullable<z.ZodNumber>;
|
|
113810
113810
|
roles: z.ZodArray<z.ZodObject<{
|
|
@@ -114000,15 +114000,15 @@ export declare const mainChatMessageContract: {
|
|
|
114000
114000
|
};
|
|
114001
114001
|
}>;
|
|
114002
114002
|
assignee: z.ZodObject<{
|
|
114003
|
-
name: z.ZodString;
|
|
114004
114003
|
id: z.ZodString;
|
|
114005
|
-
address: z.ZodNullable<z.ZodString>;
|
|
114006
|
-
email: z.ZodString;
|
|
114007
114004
|
createdAt: z.ZodDate;
|
|
114008
114005
|
updatedAt: z.ZodDate;
|
|
114009
114006
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
114007
|
+
name: z.ZodString;
|
|
114008
|
+
email: z.ZodString;
|
|
114010
114009
|
emailVerifiedAt: z.ZodNullable<z.ZodDate>;
|
|
114011
114010
|
password: z.ZodString;
|
|
114011
|
+
address: z.ZodNullable<z.ZodString>;
|
|
114012
114012
|
phone: z.ZodNullable<z.ZodString>;
|
|
114013
114013
|
notificationCount: z.ZodNullable<z.ZodNumber>;
|
|
114014
114014
|
roles: z.ZodArray<z.ZodObject<{
|
|
@@ -114204,15 +114204,15 @@ export declare const mainChatMessageContract: {
|
|
|
114204
114204
|
};
|
|
114205
114205
|
}>;
|
|
114206
114206
|
sender: z.ZodObject<{
|
|
114207
|
-
name: z.ZodString;
|
|
114208
114207
|
id: z.ZodString;
|
|
114209
|
-
address: z.ZodNullable<z.ZodString>;
|
|
114210
|
-
email: z.ZodString;
|
|
114211
114208
|
createdAt: z.ZodDate;
|
|
114212
114209
|
updatedAt: z.ZodDate;
|
|
114213
114210
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
114211
|
+
name: z.ZodString;
|
|
114212
|
+
email: z.ZodString;
|
|
114214
114213
|
emailVerifiedAt: z.ZodNullable<z.ZodDate>;
|
|
114215
114214
|
password: z.ZodString;
|
|
114215
|
+
address: z.ZodNullable<z.ZodString>;
|
|
114216
114216
|
phone: z.ZodNullable<z.ZodString>;
|
|
114217
114217
|
notificationCount: z.ZodNullable<z.ZodNumber>;
|
|
114218
114218
|
roles: z.ZodArray<z.ZodObject<{
|
|
@@ -114408,7 +114408,7 @@ export declare const mainChatMessageContract: {
|
|
|
114408
114408
|
};
|
|
114409
114409
|
}>;
|
|
114410
114410
|
}, "strip", z.ZodTypeAny, {
|
|
114411
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
114411
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
114412
114412
|
message: string;
|
|
114413
114413
|
id: string;
|
|
114414
114414
|
url: string;
|
|
@@ -114570,7 +114570,7 @@ export declare const mainChatMessageContract: {
|
|
|
114570
114570
|
metadata?: any;
|
|
114571
114571
|
template?: any;
|
|
114572
114572
|
}, {
|
|
114573
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
114573
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
114574
114574
|
message: string;
|
|
114575
114575
|
id: string;
|
|
114576
114576
|
url: string;
|
|
@@ -114944,7 +114944,7 @@ export declare const mainChatMessageContract: {
|
|
|
114944
114944
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
114945
114945
|
message: z.ZodString;
|
|
114946
114946
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
|
114947
|
-
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", "item"
|
|
114947
|
+
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", "item"]>;
|
|
114948
114948
|
readAt: z.ZodDate;
|
|
114949
114949
|
metadata: z.ZodAny;
|
|
114950
114950
|
platformId: z.ZodString;
|
|
@@ -118440,7 +118440,7 @@ export declare const mainChatMessageContract: {
|
|
|
118440
118440
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
118441
118441
|
message: z.ZodString;
|
|
118442
118442
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
|
118443
|
-
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", "item"
|
|
118443
|
+
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", "item"]>;
|
|
118444
118444
|
readAt: z.ZodDate;
|
|
118445
118445
|
metadata: z.ZodAny;
|
|
118446
118446
|
platformId: z.ZodString;
|
|
@@ -118486,15 +118486,15 @@ export declare const mainChatMessageContract: {
|
|
|
118486
118486
|
fileUrl: string | null;
|
|
118487
118487
|
}>;
|
|
118488
118488
|
actor: z.ZodObject<{
|
|
118489
|
-
name: z.ZodString;
|
|
118490
118489
|
id: z.ZodString;
|
|
118491
|
-
address: z.ZodNullable<z.ZodString>;
|
|
118492
|
-
email: z.ZodString;
|
|
118493
118490
|
createdAt: z.ZodDate;
|
|
118494
118491
|
updatedAt: z.ZodDate;
|
|
118495
118492
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
118493
|
+
name: z.ZodString;
|
|
118494
|
+
email: z.ZodString;
|
|
118496
118495
|
emailVerifiedAt: z.ZodNullable<z.ZodDate>;
|
|
118497
118496
|
password: z.ZodString;
|
|
118497
|
+
address: z.ZodNullable<z.ZodString>;
|
|
118498
118498
|
phone: z.ZodNullable<z.ZodString>;
|
|
118499
118499
|
notificationCount: z.ZodNullable<z.ZodNumber>;
|
|
118500
118500
|
roles: z.ZodArray<z.ZodObject<{
|
|
@@ -118690,15 +118690,15 @@ export declare const mainChatMessageContract: {
|
|
|
118690
118690
|
};
|
|
118691
118691
|
}>;
|
|
118692
118692
|
assignee: z.ZodObject<{
|
|
118693
|
-
name: z.ZodString;
|
|
118694
118693
|
id: z.ZodString;
|
|
118695
|
-
address: z.ZodNullable<z.ZodString>;
|
|
118696
|
-
email: z.ZodString;
|
|
118697
118694
|
createdAt: z.ZodDate;
|
|
118698
118695
|
updatedAt: z.ZodDate;
|
|
118699
118696
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
118697
|
+
name: z.ZodString;
|
|
118698
|
+
email: z.ZodString;
|
|
118700
118699
|
emailVerifiedAt: z.ZodNullable<z.ZodDate>;
|
|
118701
118700
|
password: z.ZodString;
|
|
118701
|
+
address: z.ZodNullable<z.ZodString>;
|
|
118702
118702
|
phone: z.ZodNullable<z.ZodString>;
|
|
118703
118703
|
notificationCount: z.ZodNullable<z.ZodNumber>;
|
|
118704
118704
|
roles: z.ZodArray<z.ZodObject<{
|
|
@@ -118894,15 +118894,15 @@ export declare const mainChatMessageContract: {
|
|
|
118894
118894
|
};
|
|
118895
118895
|
}>;
|
|
118896
118896
|
sender: z.ZodObject<{
|
|
118897
|
-
name: z.ZodString;
|
|
118898
118897
|
id: z.ZodString;
|
|
118899
|
-
address: z.ZodNullable<z.ZodString>;
|
|
118900
|
-
email: z.ZodString;
|
|
118901
118898
|
createdAt: z.ZodDate;
|
|
118902
118899
|
updatedAt: z.ZodDate;
|
|
118903
118900
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
118901
|
+
name: z.ZodString;
|
|
118902
|
+
email: z.ZodString;
|
|
118904
118903
|
emailVerifiedAt: z.ZodNullable<z.ZodDate>;
|
|
118905
118904
|
password: z.ZodString;
|
|
118905
|
+
address: z.ZodNullable<z.ZodString>;
|
|
118906
118906
|
phone: z.ZodNullable<z.ZodString>;
|
|
118907
118907
|
notificationCount: z.ZodNullable<z.ZodNumber>;
|
|
118908
118908
|
roles: z.ZodArray<z.ZodObject<{
|
|
@@ -119098,7 +119098,7 @@ export declare const mainChatMessageContract: {
|
|
|
119098
119098
|
};
|
|
119099
119099
|
}>;
|
|
119100
119100
|
}, "strip", z.ZodTypeAny, {
|
|
119101
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
119101
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
119102
119102
|
message: string;
|
|
119103
119103
|
id: string;
|
|
119104
119104
|
url: string;
|
|
@@ -119260,7 +119260,7 @@ export declare const mainChatMessageContract: {
|
|
|
119260
119260
|
metadata?: any;
|
|
119261
119261
|
template?: any;
|
|
119262
119262
|
}, {
|
|
119263
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
119263
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
119264
119264
|
message: string;
|
|
119265
119265
|
id: string;
|
|
119266
119266
|
url: string;
|
|
@@ -120062,7 +120062,7 @@ export declare const mainChatMessageContract: {
|
|
|
120062
120062
|
editedMessageid: z.ZodString;
|
|
120063
120063
|
label: z.ZodOptional<z.ZodString>;
|
|
120064
120064
|
}, "strip", z.ZodTypeAny, {
|
|
120065
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
120065
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
120066
120066
|
message: string;
|
|
120067
120067
|
id: string;
|
|
120068
120068
|
url: string;
|
|
@@ -120617,7 +120617,7 @@ export declare const mainChatMessageContract: {
|
|
|
120617
120617
|
previewUrl: string;
|
|
120618
120618
|
imageSetId: string;
|
|
120619
120619
|
repliedMessage: {
|
|
120620
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
120620
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
120621
120621
|
message: string;
|
|
120622
120622
|
id: string;
|
|
120623
120623
|
url: string;
|
|
@@ -120828,7 +120828,7 @@ export declare const mainChatMessageContract: {
|
|
|
120828
120828
|
template?: any;
|
|
120829
120829
|
label?: string | undefined;
|
|
120830
120830
|
}, {
|
|
120831
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
120831
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
120832
120832
|
message: string;
|
|
120833
120833
|
id: string;
|
|
120834
120834
|
url: string;
|
|
@@ -121383,7 +121383,7 @@ export declare const mainChatMessageContract: {
|
|
|
121383
121383
|
previewUrl: string;
|
|
121384
121384
|
imageSetId: string;
|
|
121385
121385
|
repliedMessage: {
|
|
121386
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
121386
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
121387
121387
|
message: string;
|
|
121388
121388
|
id: string;
|
|
121389
121389
|
url: string;
|
|
@@ -121595,7 +121595,7 @@ export declare const mainChatMessageContract: {
|
|
|
121595
121595
|
label?: string | undefined;
|
|
121596
121596
|
}>>>;
|
|
121597
121597
|
}, "strip", z.ZodTypeAny, {
|
|
121598
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
121598
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
121599
121599
|
message: string;
|
|
121600
121600
|
id: string;
|
|
121601
121601
|
url: string;
|
|
@@ -122150,7 +122150,7 @@ export declare const mainChatMessageContract: {
|
|
|
122150
122150
|
previewUrl: string;
|
|
122151
122151
|
imageSetId: string;
|
|
122152
122152
|
repliedMessage: {
|
|
122153
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
122153
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
122154
122154
|
message: string;
|
|
122155
122155
|
id: string;
|
|
122156
122156
|
url: string;
|
|
@@ -122361,7 +122361,7 @@ export declare const mainChatMessageContract: {
|
|
|
122361
122361
|
template?: any;
|
|
122362
122362
|
metadata?: any;
|
|
122363
122363
|
fromMessage?: {
|
|
122364
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
122364
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
122365
122365
|
message: string;
|
|
122366
122366
|
id: string;
|
|
122367
122367
|
url: string;
|
|
@@ -122916,7 +122916,7 @@ export declare const mainChatMessageContract: {
|
|
|
122916
122916
|
previewUrl: string;
|
|
122917
122917
|
imageSetId: string;
|
|
122918
122918
|
repliedMessage: {
|
|
122919
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
122919
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
122920
122920
|
message: string;
|
|
122921
122921
|
id: string;
|
|
122922
122922
|
url: string;
|
|
@@ -123128,7 +123128,7 @@ export declare const mainChatMessageContract: {
|
|
|
123128
123128
|
label?: string | undefined;
|
|
123129
123129
|
} | null | undefined;
|
|
123130
123130
|
}, {
|
|
123131
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
123131
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
123132
123132
|
message: string;
|
|
123133
123133
|
id: string;
|
|
123134
123134
|
url: string;
|
|
@@ -123683,7 +123683,7 @@ export declare const mainChatMessageContract: {
|
|
|
123683
123683
|
previewUrl: string;
|
|
123684
123684
|
imageSetId: string;
|
|
123685
123685
|
repliedMessage: {
|
|
123686
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
123686
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
123687
123687
|
message: string;
|
|
123688
123688
|
id: string;
|
|
123689
123689
|
url: string;
|
|
@@ -123894,7 +123894,7 @@ export declare const mainChatMessageContract: {
|
|
|
123894
123894
|
template?: any;
|
|
123895
123895
|
metadata?: any;
|
|
123896
123896
|
fromMessage?: {
|
|
123897
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
123897
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
123898
123898
|
message: string;
|
|
123899
123899
|
id: string;
|
|
123900
123900
|
url: string;
|
|
@@ -124449,7 +124449,7 @@ export declare const mainChatMessageContract: {
|
|
|
124449
124449
|
previewUrl: string;
|
|
124450
124450
|
imageSetId: string;
|
|
124451
124451
|
repliedMessage: {
|
|
124452
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
124452
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
124453
124453
|
message: string;
|
|
124454
124454
|
id: string;
|
|
124455
124455
|
url: string;
|
|
@@ -124663,7 +124663,7 @@ export declare const mainChatMessageContract: {
|
|
|
124663
124663
|
}>;
|
|
124664
124664
|
}, "strip", z.ZodTypeAny, {
|
|
124665
124665
|
data: {
|
|
124666
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
124666
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
124667
124667
|
message: string;
|
|
124668
124668
|
id: string;
|
|
124669
124669
|
url: string;
|
|
@@ -125218,7 +125218,7 @@ export declare const mainChatMessageContract: {
|
|
|
125218
125218
|
previewUrl: string;
|
|
125219
125219
|
imageSetId: string;
|
|
125220
125220
|
repliedMessage: {
|
|
125221
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
125221
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
125222
125222
|
message: string;
|
|
125223
125223
|
id: string;
|
|
125224
125224
|
url: string;
|
|
@@ -125429,7 +125429,7 @@ export declare const mainChatMessageContract: {
|
|
|
125429
125429
|
template?: any;
|
|
125430
125430
|
metadata?: any;
|
|
125431
125431
|
fromMessage?: {
|
|
125432
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
125432
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
125433
125433
|
message: string;
|
|
125434
125434
|
id: string;
|
|
125435
125435
|
url: string;
|
|
@@ -125984,7 +125984,7 @@ export declare const mainChatMessageContract: {
|
|
|
125984
125984
|
previewUrl: string;
|
|
125985
125985
|
imageSetId: string;
|
|
125986
125986
|
repliedMessage: {
|
|
125987
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
125987
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
125988
125988
|
message: string;
|
|
125989
125989
|
id: string;
|
|
125990
125990
|
url: string;
|
|
@@ -126199,7 +126199,7 @@ export declare const mainChatMessageContract: {
|
|
|
126199
126199
|
requestId: string;
|
|
126200
126200
|
}, {
|
|
126201
126201
|
data: {
|
|
126202
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
126202
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
126203
126203
|
message: string;
|
|
126204
126204
|
id: string;
|
|
126205
126205
|
url: string;
|
|
@@ -126754,7 +126754,7 @@ export declare const mainChatMessageContract: {
|
|
|
126754
126754
|
previewUrl: string;
|
|
126755
126755
|
imageSetId: string;
|
|
126756
126756
|
repliedMessage: {
|
|
126757
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
126757
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
126758
126758
|
message: string;
|
|
126759
126759
|
id: string;
|
|
126760
126760
|
url: string;
|
|
@@ -126965,7 +126965,7 @@ export declare const mainChatMessageContract: {
|
|
|
126965
126965
|
template?: any;
|
|
126966
126966
|
metadata?: any;
|
|
126967
126967
|
fromMessage?: {
|
|
126968
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
126968
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
126969
126969
|
message: string;
|
|
126970
126970
|
id: string;
|
|
126971
126971
|
url: string;
|
|
@@ -127520,7 +127520,7 @@ export declare const mainChatMessageContract: {
|
|
|
127520
127520
|
previewUrl: string;
|
|
127521
127521
|
imageSetId: string;
|
|
127522
127522
|
repliedMessage: {
|
|
127523
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
127523
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
127524
127524
|
message: string;
|
|
127525
127525
|
id: string;
|
|
127526
127526
|
url: string;
|
|
@@ -128160,7 +128160,7 @@ export declare const mainChatMessageContract: {
|
|
|
128160
128160
|
id: z.ZodOptional<z.ZodString>;
|
|
128161
128161
|
message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
128162
128162
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
|
128163
|
-
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", "item"
|
|
128163
|
+
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", "item"]>;
|
|
128164
128164
|
readAt: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodString]>>>;
|
|
128165
128165
|
metadata: z.ZodOptional<z.ZodAny>;
|
|
128166
128166
|
platformId: z.ZodOptional<z.ZodString>;
|
|
@@ -128212,7 +128212,7 @@ export declare const mainChatMessageContract: {
|
|
|
128212
128212
|
parentMessageId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
128213
128213
|
feedPostId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
128214
128214
|
}, "strip", z.ZodTypeAny, {
|
|
128215
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
128215
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
128216
128216
|
direction: "incoming" | "outgoing" | "system";
|
|
128217
128217
|
id?: string | undefined;
|
|
128218
128218
|
message?: string | null | undefined;
|
|
@@ -128243,7 +128243,7 @@ export declare const mainChatMessageContract: {
|
|
|
128243
128243
|
parentMessageId?: string | null | undefined;
|
|
128244
128244
|
feedPostId?: string | null | undefined;
|
|
128245
128245
|
}, {
|
|
128246
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
128246
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
128247
128247
|
direction: "incoming" | "outgoing" | "system";
|
|
128248
128248
|
id?: string | undefined;
|
|
128249
128249
|
message?: string | null | undefined;
|
|
@@ -128276,7 +128276,7 @@ export declare const mainChatMessageContract: {
|
|
|
128276
128276
|
}>;
|
|
128277
128277
|
}, "strip", z.ZodTypeAny, {
|
|
128278
128278
|
message: {
|
|
128279
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
128279
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
128280
128280
|
direction: "incoming" | "outgoing" | "system";
|
|
128281
128281
|
id?: string | undefined;
|
|
128282
128282
|
message?: string | null | undefined;
|
|
@@ -128361,7 +128361,7 @@ export declare const mainChatMessageContract: {
|
|
|
128361
128361
|
};
|
|
128362
128362
|
}, {
|
|
128363
128363
|
message: {
|
|
128364
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
128364
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
128365
128365
|
direction: "incoming" | "outgoing" | "system";
|
|
128366
128366
|
id?: string | undefined;
|
|
128367
128367
|
message?: string | null | undefined;
|
|
@@ -128448,7 +128448,7 @@ export declare const mainChatMessageContract: {
|
|
|
128448
128448
|
}, "strip", z.ZodTypeAny, {
|
|
128449
128449
|
data: {
|
|
128450
128450
|
message: {
|
|
128451
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
128451
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
128452
128452
|
direction: "incoming" | "outgoing" | "system";
|
|
128453
128453
|
id?: string | undefined;
|
|
128454
128454
|
message?: string | null | undefined;
|
|
@@ -128536,7 +128536,7 @@ export declare const mainChatMessageContract: {
|
|
|
128536
128536
|
}, {
|
|
128537
128537
|
data: {
|
|
128538
128538
|
message: {
|
|
128539
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
128539
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
128540
128540
|
direction: "incoming" | "outgoing" | "system";
|
|
128541
128541
|
id?: string | undefined;
|
|
128542
128542
|
message?: string | null | undefined;
|
|
@@ -128670,7 +128670,7 @@ export declare const mainChatMessageContract: {
|
|
|
128670
128670
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
128671
128671
|
message: z.ZodString;
|
|
128672
128672
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
|
128673
|
-
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", "item"
|
|
128673
|
+
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", "item"]>;
|
|
128674
128674
|
readAt: z.ZodDate;
|
|
128675
128675
|
metadata: z.ZodAny;
|
|
128676
128676
|
platformId: z.ZodString;
|
|
@@ -132166,7 +132166,7 @@ export declare const mainChatMessageContract: {
|
|
|
132166
132166
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
132167
132167
|
message: z.ZodString;
|
|
132168
132168
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
|
132169
|
-
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", "item"
|
|
132169
|
+
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", "item"]>;
|
|
132170
132170
|
readAt: z.ZodDate;
|
|
132171
132171
|
metadata: z.ZodAny;
|
|
132172
132172
|
platformId: z.ZodString;
|
|
@@ -132212,15 +132212,15 @@ export declare const mainChatMessageContract: {
|
|
|
132212
132212
|
fileUrl: string | null;
|
|
132213
132213
|
}>;
|
|
132214
132214
|
actor: z.ZodObject<{
|
|
132215
|
-
name: z.ZodString;
|
|
132216
132215
|
id: z.ZodString;
|
|
132217
|
-
address: z.ZodNullable<z.ZodString>;
|
|
132218
|
-
email: z.ZodString;
|
|
132219
132216
|
createdAt: z.ZodDate;
|
|
132220
132217
|
updatedAt: z.ZodDate;
|
|
132221
132218
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
132219
|
+
name: z.ZodString;
|
|
132220
|
+
email: z.ZodString;
|
|
132222
132221
|
emailVerifiedAt: z.ZodNullable<z.ZodDate>;
|
|
132223
132222
|
password: z.ZodString;
|
|
132223
|
+
address: z.ZodNullable<z.ZodString>;
|
|
132224
132224
|
phone: z.ZodNullable<z.ZodString>;
|
|
132225
132225
|
notificationCount: z.ZodNullable<z.ZodNumber>;
|
|
132226
132226
|
roles: z.ZodArray<z.ZodObject<{
|
|
@@ -132416,15 +132416,15 @@ export declare const mainChatMessageContract: {
|
|
|
132416
132416
|
};
|
|
132417
132417
|
}>;
|
|
132418
132418
|
assignee: z.ZodObject<{
|
|
132419
|
-
name: z.ZodString;
|
|
132420
132419
|
id: z.ZodString;
|
|
132421
|
-
address: z.ZodNullable<z.ZodString>;
|
|
132422
|
-
email: z.ZodString;
|
|
132423
132420
|
createdAt: z.ZodDate;
|
|
132424
132421
|
updatedAt: z.ZodDate;
|
|
132425
132422
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
132423
|
+
name: z.ZodString;
|
|
132424
|
+
email: z.ZodString;
|
|
132426
132425
|
emailVerifiedAt: z.ZodNullable<z.ZodDate>;
|
|
132427
132426
|
password: z.ZodString;
|
|
132427
|
+
address: z.ZodNullable<z.ZodString>;
|
|
132428
132428
|
phone: z.ZodNullable<z.ZodString>;
|
|
132429
132429
|
notificationCount: z.ZodNullable<z.ZodNumber>;
|
|
132430
132430
|
roles: z.ZodArray<z.ZodObject<{
|
|
@@ -132620,15 +132620,15 @@ export declare const mainChatMessageContract: {
|
|
|
132620
132620
|
};
|
|
132621
132621
|
}>;
|
|
132622
132622
|
sender: z.ZodObject<{
|
|
132623
|
-
name: z.ZodString;
|
|
132624
132623
|
id: z.ZodString;
|
|
132625
|
-
address: z.ZodNullable<z.ZodString>;
|
|
132626
|
-
email: z.ZodString;
|
|
132627
132624
|
createdAt: z.ZodDate;
|
|
132628
132625
|
updatedAt: z.ZodDate;
|
|
132629
132626
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
132627
|
+
name: z.ZodString;
|
|
132628
|
+
email: z.ZodString;
|
|
132630
132629
|
emailVerifiedAt: z.ZodNullable<z.ZodDate>;
|
|
132631
132630
|
password: z.ZodString;
|
|
132631
|
+
address: z.ZodNullable<z.ZodString>;
|
|
132632
132632
|
phone: z.ZodNullable<z.ZodString>;
|
|
132633
132633
|
notificationCount: z.ZodNullable<z.ZodNumber>;
|
|
132634
132634
|
roles: z.ZodArray<z.ZodObject<{
|
|
@@ -132824,7 +132824,7 @@ export declare const mainChatMessageContract: {
|
|
|
132824
132824
|
};
|
|
132825
132825
|
}>;
|
|
132826
132826
|
}, "strip", z.ZodTypeAny, {
|
|
132827
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
132827
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
132828
132828
|
message: string;
|
|
132829
132829
|
id: string;
|
|
132830
132830
|
url: string;
|
|
@@ -132986,7 +132986,7 @@ export declare const mainChatMessageContract: {
|
|
|
132986
132986
|
metadata?: any;
|
|
132987
132987
|
template?: any;
|
|
132988
132988
|
}, {
|
|
132989
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
132989
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
132990
132990
|
message: string;
|
|
132991
132991
|
id: string;
|
|
132992
132992
|
url: string;
|
|
@@ -133788,7 +133788,7 @@ export declare const mainChatMessageContract: {
|
|
|
133788
133788
|
editedMessageid: z.ZodString;
|
|
133789
133789
|
label: z.ZodOptional<z.ZodString>;
|
|
133790
133790
|
}, "strip", z.ZodTypeAny, {
|
|
133791
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
133791
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
133792
133792
|
message: string;
|
|
133793
133793
|
id: string;
|
|
133794
133794
|
url: string;
|
|
@@ -134343,7 +134343,7 @@ export declare const mainChatMessageContract: {
|
|
|
134343
134343
|
previewUrl: string;
|
|
134344
134344
|
imageSetId: string;
|
|
134345
134345
|
repliedMessage: {
|
|
134346
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
134346
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
134347
134347
|
message: string;
|
|
134348
134348
|
id: string;
|
|
134349
134349
|
url: string;
|
|
@@ -134554,7 +134554,7 @@ export declare const mainChatMessageContract: {
|
|
|
134554
134554
|
template?: any;
|
|
134555
134555
|
label?: string | undefined;
|
|
134556
134556
|
}, {
|
|
134557
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
134557
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
134558
134558
|
message: string;
|
|
134559
134559
|
id: string;
|
|
134560
134560
|
url: string;
|
|
@@ -135109,7 +135109,7 @@ export declare const mainChatMessageContract: {
|
|
|
135109
135109
|
previewUrl: string;
|
|
135110
135110
|
imageSetId: string;
|
|
135111
135111
|
repliedMessage: {
|
|
135112
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
135112
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
135113
135113
|
message: string;
|
|
135114
135114
|
id: string;
|
|
135115
135115
|
url: string;
|
|
@@ -135322,7 +135322,7 @@ export declare const mainChatMessageContract: {
|
|
|
135322
135322
|
}>, "many">;
|
|
135323
135323
|
}, "strip", z.ZodTypeAny, {
|
|
135324
135324
|
data: {
|
|
135325
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
135325
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
135326
135326
|
message: string;
|
|
135327
135327
|
id: string;
|
|
135328
135328
|
url: string;
|
|
@@ -135877,7 +135877,7 @@ export declare const mainChatMessageContract: {
|
|
|
135877
135877
|
previewUrl: string;
|
|
135878
135878
|
imageSetId: string;
|
|
135879
135879
|
repliedMessage: {
|
|
135880
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
135880
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
135881
135881
|
message: string;
|
|
135882
135882
|
id: string;
|
|
135883
135883
|
url: string;
|
|
@@ -136091,7 +136091,7 @@ export declare const mainChatMessageContract: {
|
|
|
136091
136091
|
requestId: string;
|
|
136092
136092
|
}, {
|
|
136093
136093
|
data: {
|
|
136094
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
136094
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
136095
136095
|
message: string;
|
|
136096
136096
|
id: string;
|
|
136097
136097
|
url: string;
|
|
@@ -136646,7 +136646,7 @@ export declare const mainChatMessageContract: {
|
|
|
136646
136646
|
previewUrl: string;
|
|
136647
136647
|
imageSetId: string;
|
|
136648
136648
|
repliedMessage: {
|
|
136649
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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"
|
|
136649
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "item" | "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";
|
|
136650
136650
|
message: string;
|
|
136651
136651
|
id: string;
|
|
136652
136652
|
url: string;
|