@kl1/contracts 1.1.45 → 1.1.46
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/chat/index.d.ts +230 -174
- package/dist/api-contracts/src/chat/index.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/schema.d.ts +65 -51
- package/dist/api-contracts/src/chat/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/validation.d.ts +83 -56
- package/dist/api-contracts/src/chat/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/contract.d.ts +325 -223
- package/dist/api-contracts/src/contract.d.ts.map +1 -1
- package/dist/api-contracts/src/facebook-feed/index.d.ts +60 -43
- package/dist/api-contracts/src/facebook-feed/index.d.ts.map +1 -1
- package/dist/api-contracts/src/facebook-feed/schema.d.ts +6 -6
- package/dist/api-contracts/src/instagram/index.d.ts +50 -33
- package/dist/api-contracts/src/instagram/index.d.ts.map +1 -1
- package/dist/api-contracts/src/line/index.d.ts +55 -38
- package/dist/api-contracts/src/line/index.d.ts.map +1 -1
- package/dist/api-contracts/src/line/validation.d.ts +5 -5
- package/dist/api-contracts/src/messenger/index.d.ts +50 -33
- package/dist/api-contracts/src/messenger/index.d.ts.map +1 -1
- package/dist/api-contracts/src/sms/index.d.ts +10 -5
- package/dist/api-contracts/src/sms/index.d.ts.map +1 -1
- package/dist/api-contracts/src/viber/index.d.ts +50 -33
- package/dist/api-contracts/src/viber/index.d.ts.map +1 -1
- package/dist/api-contracts/src/webchat/index.d.ts +50 -33
- package/dist/api-contracts/src/webchat/index.d.ts.map +1 -1
- package/dist/entities/src/enums/chat.d.ts +5 -1
- package/dist/entities/src/enums/chat.d.ts.map +1 -1
- package/dist/index.js +12 -5
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +12 -5
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
@@ -39,7 +39,7 @@ export declare const receiveMessageContract: {
|
|
39
39
|
deletedAt: z.ZodNullable<z.ZodString>;
|
40
40
|
message: z.ZodOptional<z.ZodString>;
|
41
41
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
42
|
-
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "unsupported"]>;
|
42
|
+
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "reaction", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "deleted", "unsupported"]>;
|
43
43
|
metadata: z.ZodAny;
|
44
44
|
platformId: z.ZodString;
|
45
45
|
platformMessageId: z.ZodString;
|
@@ -3231,8 +3231,9 @@ export declare const receiveMessageContract: {
|
|
3231
3231
|
telephonySignature: string | null;
|
3232
3232
|
};
|
3233
3233
|
}>>>;
|
3234
|
+
label: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
3234
3235
|
}, "strip", z.ZodTypeAny, {
|
3235
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
3236
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
3236
3237
|
id: string;
|
3237
3238
|
direction: "incoming" | "outgoing" | "system";
|
3238
3239
|
createdAt: string;
|
@@ -3706,8 +3707,9 @@ export declare const receiveMessageContract: {
|
|
3706
3707
|
telephonySignature: string | null;
|
3707
3708
|
};
|
3708
3709
|
} | null | undefined;
|
3710
|
+
label?: string | null | undefined;
|
3709
3711
|
}, {
|
3710
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
3712
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
3711
3713
|
id: string;
|
3712
3714
|
direction: "incoming" | "outgoing" | "system";
|
3713
3715
|
createdAt: string;
|
@@ -4181,10 +4183,11 @@ export declare const receiveMessageContract: {
|
|
4181
4183
|
telephonySignature: string | null;
|
4182
4184
|
};
|
4183
4185
|
} | null | undefined;
|
4186
|
+
label?: string | null | undefined;
|
4184
4187
|
}>;
|
4185
4188
|
}, "strip", z.ZodTypeAny, {
|
4186
4189
|
message: {
|
4187
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
4190
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
4188
4191
|
id: string;
|
4189
4192
|
direction: "incoming" | "outgoing" | "system";
|
4190
4193
|
createdAt: string;
|
@@ -4658,10 +4661,11 @@ export declare const receiveMessageContract: {
|
|
4658
4661
|
telephonySignature: string | null;
|
4659
4662
|
};
|
4660
4663
|
} | null | undefined;
|
4664
|
+
label?: string | null | undefined;
|
4661
4665
|
};
|
4662
4666
|
}, {
|
4663
4667
|
message: {
|
4664
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
4668
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
4665
4669
|
id: string;
|
4666
4670
|
direction: "incoming" | "outgoing" | "system";
|
4667
4671
|
createdAt: string;
|
@@ -5135,6 +5139,7 @@ export declare const receiveMessageContract: {
|
|
5135
5139
|
telephonySignature: string | null;
|
5136
5140
|
};
|
5137
5141
|
} | null | undefined;
|
5142
|
+
label?: string | null | undefined;
|
5138
5143
|
};
|
5139
5144
|
}>;
|
5140
5145
|
summary: "Receive message";
|
@@ -5185,13 +5190,14 @@ export declare const mainFeedContract: {
|
|
5185
5190
|
updatedAt: z.ZodDate;
|
5186
5191
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
5187
5192
|
message: z.ZodNullable<z.ZodString>;
|
5188
|
-
type: z.ZodUnion<[z.ZodEnum<["text", "added_photos", "shared_story", "mobile_status_update"]>, z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "unsupported"]>]>;
|
5193
|
+
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", "fallback", "location", "sticker", "text_with_image", "reaction", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "deleted", "unsupported"]>]>;
|
5189
5194
|
metadata: z.ZodAny;
|
5190
5195
|
platformId: z.ZodString;
|
5191
5196
|
platformMessageId: z.ZodString;
|
5192
5197
|
postCreatedAt: z.ZodDate;
|
5193
5198
|
postUpdatedAt: z.ZodDate;
|
5194
5199
|
socialPlatformId: z.ZodString;
|
5200
|
+
template: z.ZodAny;
|
5195
5201
|
channel: z.ZodObject<{
|
5196
5202
|
id: z.ZodString;
|
5197
5203
|
createdAt: z.ZodDate;
|
@@ -6879,10 +6885,9 @@ export declare const mainFeedContract: {
|
|
6879
6885
|
telephonySignature: string | null;
|
6880
6886
|
};
|
6881
6887
|
}>;
|
6882
|
-
imageURL: z.ZodString;
|
6883
6888
|
permalinkURL: z.ZodString;
|
6884
6889
|
}, "strip", z.ZodTypeAny, {
|
6885
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "added_photos" | "shared_story" | "mobile_status_update" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
6890
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "added_photos" | "added_video" | "shared_story" | "mobile_status_update" | "no_data" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
6886
6891
|
message: string | null;
|
6887
6892
|
id: string;
|
6888
6893
|
channel: {
|
@@ -7142,11 +7147,11 @@ export declare const mainFeedContract: {
|
|
7142
7147
|
platformMessageId: string;
|
7143
7148
|
postCreatedAt: Date;
|
7144
7149
|
postUpdatedAt: Date;
|
7145
|
-
imageURL: string;
|
7146
7150
|
permalinkURL: string;
|
7147
7151
|
metadata?: any;
|
7152
|
+
template?: any;
|
7148
7153
|
}, {
|
7149
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "added_photos" | "shared_story" | "mobile_status_update" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
7154
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "added_photos" | "added_video" | "shared_story" | "mobile_status_update" | "no_data" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
7150
7155
|
message: string | null;
|
7151
7156
|
id: string;
|
7152
7157
|
channel: {
|
@@ -7406,13 +7411,13 @@ export declare const mainFeedContract: {
|
|
7406
7411
|
platformMessageId: string;
|
7407
7412
|
postCreatedAt: Date;
|
7408
7413
|
postUpdatedAt: Date;
|
7409
|
-
imageURL: string;
|
7410
7414
|
permalinkURL: string;
|
7411
7415
|
metadata?: any;
|
7416
|
+
template?: any;
|
7412
7417
|
}>;
|
7413
7418
|
}, "strip", z.ZodTypeAny, {
|
7414
7419
|
data: {
|
7415
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "added_photos" | "shared_story" | "mobile_status_update" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
7420
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "added_photos" | "added_video" | "shared_story" | "mobile_status_update" | "no_data" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
7416
7421
|
message: string | null;
|
7417
7422
|
id: string;
|
7418
7423
|
channel: {
|
@@ -7672,14 +7677,14 @@ export declare const mainFeedContract: {
|
|
7672
7677
|
platformMessageId: string;
|
7673
7678
|
postCreatedAt: Date;
|
7674
7679
|
postUpdatedAt: Date;
|
7675
|
-
imageURL: string;
|
7676
7680
|
permalinkURL: string;
|
7677
7681
|
metadata?: any;
|
7682
|
+
template?: any;
|
7678
7683
|
};
|
7679
7684
|
requestId: string;
|
7680
7685
|
}, {
|
7681
7686
|
data: {
|
7682
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "added_photos" | "shared_story" | "mobile_status_update" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
7687
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "added_photos" | "added_video" | "shared_story" | "mobile_status_update" | "no_data" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
7683
7688
|
message: string | null;
|
7684
7689
|
id: string;
|
7685
7690
|
channel: {
|
@@ -7939,9 +7944,9 @@ export declare const mainFeedContract: {
|
|
7939
7944
|
platformMessageId: string;
|
7940
7945
|
postCreatedAt: Date;
|
7941
7946
|
postUpdatedAt: Date;
|
7942
|
-
imageURL: string;
|
7943
7947
|
permalinkURL: string;
|
7944
7948
|
metadata?: any;
|
7949
|
+
template?: any;
|
7945
7950
|
};
|
7946
7951
|
requestId: string;
|
7947
7952
|
}>;
|
@@ -7991,11 +7996,12 @@ export declare const mainFeedContract: {
|
|
7991
7996
|
page: z.ZodNumber;
|
7992
7997
|
pageSize: z.ZodNumber;
|
7993
7998
|
data: z.ZodObject<{
|
7994
|
-
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "unsupported"]>;
|
7999
|
+
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "reaction", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "deleted", "unsupported"]>;
|
7995
8000
|
message: z.ZodString;
|
7996
8001
|
id: z.ZodString;
|
7997
8002
|
url: z.ZodString;
|
7998
8003
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
8004
|
+
label: z.ZodOptional<z.ZodString>;
|
7999
8005
|
template: z.ZodAny;
|
8000
8006
|
metadata: z.ZodAny;
|
8001
8007
|
createdAt: z.ZodDate;
|
@@ -11611,7 +11617,7 @@ export declare const mainFeedContract: {
|
|
11611
11617
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
11612
11618
|
message: z.ZodString;
|
11613
11619
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
11614
|
-
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "unsupported"]>;
|
11620
|
+
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "reaction", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "deleted", "unsupported"]>;
|
11615
11621
|
readAt: z.ZodDate;
|
11616
11622
|
metadata: z.ZodAny;
|
11617
11623
|
platformId: z.ZodString;
|
@@ -12269,7 +12275,7 @@ export declare const mainFeedContract: {
|
|
12269
12275
|
};
|
12270
12276
|
}>;
|
12271
12277
|
}, "strip", z.ZodTypeAny, {
|
12272
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
12278
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
12273
12279
|
message: string;
|
12274
12280
|
id: string;
|
12275
12281
|
url: string;
|
@@ -12431,7 +12437,7 @@ export declare const mainFeedContract: {
|
|
12431
12437
|
metadata?: any;
|
12432
12438
|
template?: any;
|
12433
12439
|
}, {
|
12434
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
12440
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
12435
12441
|
message: string;
|
12436
12442
|
id: string;
|
12437
12443
|
url: string;
|
@@ -13852,7 +13858,7 @@ export declare const mainFeedContract: {
|
|
13852
13858
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
13853
13859
|
message: z.ZodString;
|
13854
13860
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
13855
|
-
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "unsupported"]>;
|
13861
|
+
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "reaction", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "deleted", "unsupported"]>;
|
13856
13862
|
readAt: z.ZodDate;
|
13857
13863
|
metadata: z.ZodAny;
|
13858
13864
|
platformId: z.ZodString;
|
@@ -17033,7 +17039,7 @@ export declare const mainFeedContract: {
|
|
17033
17039
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
17034
17040
|
message: z.ZodString;
|
17035
17041
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
17036
|
-
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "unsupported"]>;
|
17042
|
+
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "reaction", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "deleted", "unsupported"]>;
|
17037
17043
|
readAt: z.ZodDate;
|
17038
17044
|
metadata: z.ZodAny;
|
17039
17045
|
platformId: z.ZodString;
|
@@ -17691,7 +17697,7 @@ export declare const mainFeedContract: {
|
|
17691
17697
|
};
|
17692
17698
|
}>;
|
17693
17699
|
}, "strip", z.ZodTypeAny, {
|
17694
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
17700
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
17695
17701
|
message: string;
|
17696
17702
|
id: string;
|
17697
17703
|
url: string;
|
@@ -17853,7 +17859,7 @@ export declare const mainFeedContract: {
|
|
17853
17859
|
metadata?: any;
|
17854
17860
|
template?: any;
|
17855
17861
|
}, {
|
17856
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
17862
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
17857
17863
|
message: string;
|
17858
17864
|
id: string;
|
17859
17865
|
url: string;
|
@@ -18653,8 +18659,9 @@ export declare const mainFeedContract: {
|
|
18653
18659
|
isActive: boolean;
|
18654
18660
|
}>;
|
18655
18661
|
editedMessageid: z.ZodString;
|
18662
|
+
label: z.ZodOptional<z.ZodString>;
|
18656
18663
|
}, "strip", z.ZodTypeAny, {
|
18657
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
18664
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
18658
18665
|
message: string;
|
18659
18666
|
id: string;
|
18660
18667
|
url: string;
|
@@ -19168,7 +19175,7 @@ export declare const mainFeedContract: {
|
|
19168
19175
|
previewUrl: string;
|
19169
19176
|
imageSetId: string;
|
19170
19177
|
repliedMessage: {
|
19171
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
19178
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
19172
19179
|
message: string;
|
19173
19180
|
id: string;
|
19174
19181
|
url: string;
|
@@ -19377,8 +19384,9 @@ export declare const mainFeedContract: {
|
|
19377
19384
|
editedMessageid: string;
|
19378
19385
|
metadata?: any;
|
19379
19386
|
template?: any;
|
19387
|
+
label?: string | undefined;
|
19380
19388
|
}, {
|
19381
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
19389
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
19382
19390
|
message: string;
|
19383
19391
|
id: string;
|
19384
19392
|
url: string;
|
@@ -19892,7 +19900,7 @@ export declare const mainFeedContract: {
|
|
19892
19900
|
previewUrl: string;
|
19893
19901
|
imageSetId: string;
|
19894
19902
|
repliedMessage: {
|
19895
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
19903
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
19896
19904
|
message: string;
|
19897
19905
|
id: string;
|
19898
19906
|
url: string;
|
@@ -20101,15 +20109,16 @@ export declare const mainFeedContract: {
|
|
20101
20109
|
editedMessageid: string;
|
20102
20110
|
metadata?: any;
|
20103
20111
|
template?: any;
|
20112
|
+
label?: string | undefined;
|
20104
20113
|
}>, "many">;
|
20105
20114
|
}, "strip", z.ZodTypeAny, {
|
20106
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
20115
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
20107
20116
|
message: string;
|
20108
20117
|
id: string;
|
20109
20118
|
url: string;
|
20110
20119
|
direction: "incoming" | "outgoing" | "system";
|
20111
20120
|
children: {
|
20112
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
20121
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
20113
20122
|
message: string;
|
20114
20123
|
id: string;
|
20115
20124
|
url: string;
|
@@ -20623,7 +20632,7 @@ export declare const mainFeedContract: {
|
|
20623
20632
|
previewUrl: string;
|
20624
20633
|
imageSetId: string;
|
20625
20634
|
repliedMessage: {
|
20626
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
20635
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
20627
20636
|
message: string;
|
20628
20637
|
id: string;
|
20629
20638
|
url: string;
|
@@ -20832,6 +20841,7 @@ export declare const mainFeedContract: {
|
|
20832
20841
|
editedMessageid: string;
|
20833
20842
|
metadata?: any;
|
20834
20843
|
template?: any;
|
20844
|
+
label?: string | undefined;
|
20835
20845
|
}[];
|
20836
20846
|
createdAt: Date;
|
20837
20847
|
updatedAt: Date;
|
@@ -21342,7 +21352,7 @@ export declare const mainFeedContract: {
|
|
21342
21352
|
previewUrl: string;
|
21343
21353
|
imageSetId: string;
|
21344
21354
|
repliedMessage: {
|
21345
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
21355
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
21346
21356
|
message: string;
|
21347
21357
|
id: string;
|
21348
21358
|
url: string;
|
@@ -21676,16 +21686,17 @@ export declare const mainFeedContract: {
|
|
21676
21686
|
channelId: string;
|
21677
21687
|
socialPlatformId: string;
|
21678
21688
|
};
|
21689
|
+
label?: string | undefined;
|
21679
21690
|
template?: any;
|
21680
21691
|
metadata?: any;
|
21681
21692
|
}, {
|
21682
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
21693
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
21683
21694
|
message: string;
|
21684
21695
|
id: string;
|
21685
21696
|
url: string;
|
21686
21697
|
direction: "incoming" | "outgoing" | "system";
|
21687
21698
|
children: {
|
21688
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
21699
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
21689
21700
|
message: string;
|
21690
21701
|
id: string;
|
21691
21702
|
url: string;
|
@@ -22199,7 +22210,7 @@ export declare const mainFeedContract: {
|
|
22199
22210
|
previewUrl: string;
|
22200
22211
|
imageSetId: string;
|
22201
22212
|
repliedMessage: {
|
22202
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
22213
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
22203
22214
|
message: string;
|
22204
22215
|
id: string;
|
22205
22216
|
url: string;
|
@@ -22408,6 +22419,7 @@ export declare const mainFeedContract: {
|
|
22408
22419
|
editedMessageid: string;
|
22409
22420
|
metadata?: any;
|
22410
22421
|
template?: any;
|
22422
|
+
label?: string | undefined;
|
22411
22423
|
}[];
|
22412
22424
|
createdAt: Date;
|
22413
22425
|
updatedAt: Date;
|
@@ -22918,7 +22930,7 @@ export declare const mainFeedContract: {
|
|
22918
22930
|
previewUrl: string;
|
22919
22931
|
imageSetId: string;
|
22920
22932
|
repliedMessage: {
|
22921
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
22933
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
22922
22934
|
message: string;
|
22923
22935
|
id: string;
|
22924
22936
|
url: string;
|
@@ -23252,18 +23264,19 @@ export declare const mainFeedContract: {
|
|
23252
23264
|
channelId: string;
|
23253
23265
|
socialPlatformId: string;
|
23254
23266
|
};
|
23267
|
+
label?: string | undefined;
|
23255
23268
|
template?: any;
|
23256
23269
|
metadata?: any;
|
23257
23270
|
}>;
|
23258
23271
|
}, "strip", z.ZodTypeAny, {
|
23259
23272
|
data: {
|
23260
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
23273
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
23261
23274
|
message: string;
|
23262
23275
|
id: string;
|
23263
23276
|
url: string;
|
23264
23277
|
direction: "incoming" | "outgoing" | "system";
|
23265
23278
|
children: {
|
23266
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
23279
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
23267
23280
|
message: string;
|
23268
23281
|
id: string;
|
23269
23282
|
url: string;
|
@@ -23777,7 +23790,7 @@ export declare const mainFeedContract: {
|
|
23777
23790
|
previewUrl: string;
|
23778
23791
|
imageSetId: string;
|
23779
23792
|
repliedMessage: {
|
23780
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
23793
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
23781
23794
|
message: string;
|
23782
23795
|
id: string;
|
23783
23796
|
url: string;
|
@@ -23986,6 +23999,7 @@ export declare const mainFeedContract: {
|
|
23986
23999
|
editedMessageid: string;
|
23987
24000
|
metadata?: any;
|
23988
24001
|
template?: any;
|
24002
|
+
label?: string | undefined;
|
23989
24003
|
}[];
|
23990
24004
|
createdAt: Date;
|
23991
24005
|
updatedAt: Date;
|
@@ -24496,7 +24510,7 @@ export declare const mainFeedContract: {
|
|
24496
24510
|
previewUrl: string;
|
24497
24511
|
imageSetId: string;
|
24498
24512
|
repliedMessage: {
|
24499
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
24513
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
24500
24514
|
message: string;
|
24501
24515
|
id: string;
|
24502
24516
|
url: string;
|
@@ -24830,6 +24844,7 @@ export declare const mainFeedContract: {
|
|
24830
24844
|
channelId: string;
|
24831
24845
|
socialPlatformId: string;
|
24832
24846
|
};
|
24847
|
+
label?: string | undefined;
|
24833
24848
|
template?: any;
|
24834
24849
|
metadata?: any;
|
24835
24850
|
};
|
@@ -24839,13 +24854,13 @@ export declare const mainFeedContract: {
|
|
24839
24854
|
requestId: string;
|
24840
24855
|
}, {
|
24841
24856
|
data: {
|
24842
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
24857
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
24843
24858
|
message: string;
|
24844
24859
|
id: string;
|
24845
24860
|
url: string;
|
24846
24861
|
direction: "incoming" | "outgoing" | "system";
|
24847
24862
|
children: {
|
24848
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
24863
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
24849
24864
|
message: string;
|
24850
24865
|
id: string;
|
24851
24866
|
url: string;
|
@@ -25359,7 +25374,7 @@ export declare const mainFeedContract: {
|
|
25359
25374
|
previewUrl: string;
|
25360
25375
|
imageSetId: string;
|
25361
25376
|
repliedMessage: {
|
25362
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
25377
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
25363
25378
|
message: string;
|
25364
25379
|
id: string;
|
25365
25380
|
url: string;
|
@@ -25568,6 +25583,7 @@ export declare const mainFeedContract: {
|
|
25568
25583
|
editedMessageid: string;
|
25569
25584
|
metadata?: any;
|
25570
25585
|
template?: any;
|
25586
|
+
label?: string | undefined;
|
25571
25587
|
}[];
|
25572
25588
|
createdAt: Date;
|
25573
25589
|
updatedAt: Date;
|
@@ -26078,7 +26094,7 @@ export declare const mainFeedContract: {
|
|
26078
26094
|
previewUrl: string;
|
26079
26095
|
imageSetId: string;
|
26080
26096
|
repliedMessage: {
|
26081
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
26097
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
26082
26098
|
message: string;
|
26083
26099
|
id: string;
|
26084
26100
|
url: string;
|
@@ -26412,6 +26428,7 @@ export declare const mainFeedContract: {
|
|
26412
26428
|
channelId: string;
|
26413
26429
|
socialPlatformId: string;
|
26414
26430
|
};
|
26431
|
+
label?: string | undefined;
|
26415
26432
|
template?: any;
|
26416
26433
|
metadata?: any;
|
26417
26434
|
};
|
@@ -33692,7 +33709,7 @@ export declare const mainChatRoomContract: {
|
|
33692
33709
|
latestIncomingMessage: z.ZodObject<{
|
33693
33710
|
message: z.ZodString;
|
33694
33711
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
33695
|
-
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "unsupported"]>;
|
33712
|
+
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "reaction", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "deleted", "unsupported"]>;
|
33696
33713
|
readAt: z.ZodDate;
|
33697
33714
|
metadata: z.ZodAny;
|
33698
33715
|
platformId: z.ZodString;
|
@@ -33704,7 +33721,7 @@ export declare const mainChatRoomContract: {
|
|
33704
33721
|
previewUrl: z.ZodString;
|
33705
33722
|
imageSetId: z.ZodString;
|
33706
33723
|
}, "strip", z.ZodTypeAny, {
|
33707
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
33724
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
33708
33725
|
message: string;
|
33709
33726
|
url: string;
|
33710
33727
|
direction: "incoming" | "outgoing" | "system";
|
@@ -33718,7 +33735,7 @@ export declare const mainChatRoomContract: {
|
|
33718
33735
|
metadata?: any;
|
33719
33736
|
template?: any;
|
33720
33737
|
}, {
|
33721
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
33738
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
33722
33739
|
message: string;
|
33723
33740
|
url: string;
|
33724
33741
|
direction: "incoming" | "outgoing" | "system";
|
@@ -34123,7 +34140,7 @@ export declare const mainChatRoomContract: {
|
|
34123
34140
|
automationQueueId?: string | null | undefined;
|
34124
34141
|
};
|
34125
34142
|
latestIncomingMessage: {
|
34126
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
34143
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
34127
34144
|
message: string;
|
34128
34145
|
url: string;
|
34129
34146
|
direction: "incoming" | "outgoing" | "system";
|
@@ -34528,7 +34545,7 @@ export declare const mainChatRoomContract: {
|
|
34528
34545
|
automationQueueId?: string | null | undefined;
|
34529
34546
|
};
|
34530
34547
|
latestIncomingMessage: {
|
34531
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
34548
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
34532
34549
|
message: string;
|
34533
34550
|
url: string;
|
34534
34551
|
direction: "incoming" | "outgoing" | "system";
|
@@ -34935,7 +34952,7 @@ export declare const mainChatRoomContract: {
|
|
34935
34952
|
automationQueueId?: string | null | undefined;
|
34936
34953
|
};
|
34937
34954
|
latestIncomingMessage: {
|
34938
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
34955
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
34939
34956
|
message: string;
|
34940
34957
|
url: string;
|
34941
34958
|
direction: "incoming" | "outgoing" | "system";
|
@@ -35343,7 +35360,7 @@ export declare const mainChatRoomContract: {
|
|
35343
35360
|
automationQueueId?: string | null | undefined;
|
35344
35361
|
};
|
35345
35362
|
latestIncomingMessage: {
|
35346
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
35363
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
35347
35364
|
message: string;
|
35348
35365
|
url: string;
|
35349
35366
|
direction: "incoming" | "outgoing" | "system";
|
@@ -52439,7 +52456,7 @@ export declare const mainChatContract: {
|
|
52439
52456
|
sendMessage: {
|
52440
52457
|
body: z.ZodObject<{
|
52441
52458
|
roomId: z.ZodString;
|
52442
|
-
messageType: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "unsupported"]>;
|
52459
|
+
messageType: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "reaction", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "deleted", "unsupported"]>;
|
52443
52460
|
message: z.ZodOptional<z.ZodString>;
|
52444
52461
|
messageAttachments: z.ZodOptional<z.ZodObject<{
|
52445
52462
|
bucketName: z.ZodString;
|
@@ -52698,7 +52715,7 @@ export declare const mainChatContract: {
|
|
52698
52715
|
mentions?: string[] | undefined;
|
52699
52716
|
}>>;
|
52700
52717
|
}, "strip", z.ZodTypeAny, {
|
52701
|
-
messageType: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
52718
|
+
messageType: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
52702
52719
|
roomId: string;
|
52703
52720
|
message?: string | undefined;
|
52704
52721
|
messageAttachments?: {
|
@@ -52770,7 +52787,7 @@ export declare const mainChatContract: {
|
|
52770
52787
|
mentions?: string[] | undefined;
|
52771
52788
|
} | undefined;
|
52772
52789
|
}, {
|
52773
|
-
messageType: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
52790
|
+
messageType: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
52774
52791
|
roomId: string;
|
52775
52792
|
message?: string | undefined;
|
52776
52793
|
messageAttachments?: {
|
@@ -52848,11 +52865,12 @@ export declare const mainChatContract: {
|
|
52848
52865
|
200: z.ZodObject<{
|
52849
52866
|
requestId: z.ZodString;
|
52850
52867
|
data: z.ZodObject<{
|
52851
|
-
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "unsupported"]>;
|
52868
|
+
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "reaction", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "deleted", "unsupported"]>;
|
52852
52869
|
message: z.ZodString;
|
52853
52870
|
id: z.ZodString;
|
52854
52871
|
url: z.ZodString;
|
52855
52872
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
52873
|
+
label: z.ZodOptional<z.ZodString>;
|
52856
52874
|
template: z.ZodAny;
|
52857
52875
|
metadata: z.ZodAny;
|
52858
52876
|
createdAt: z.ZodDate;
|
@@ -56468,7 +56486,7 @@ export declare const mainChatContract: {
|
|
56468
56486
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
56469
56487
|
message: z.ZodString;
|
56470
56488
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
56471
|
-
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "unsupported"]>;
|
56489
|
+
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "reaction", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "deleted", "unsupported"]>;
|
56472
56490
|
readAt: z.ZodDate;
|
56473
56491
|
metadata: z.ZodAny;
|
56474
56492
|
platformId: z.ZodString;
|
@@ -57126,7 +57144,7 @@ export declare const mainChatContract: {
|
|
57126
57144
|
};
|
57127
57145
|
}>;
|
57128
57146
|
}, "strip", z.ZodTypeAny, {
|
57129
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
57147
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
57130
57148
|
message: string;
|
57131
57149
|
id: string;
|
57132
57150
|
url: string;
|
@@ -57288,7 +57306,7 @@ export declare const mainChatContract: {
|
|
57288
57306
|
metadata?: any;
|
57289
57307
|
template?: any;
|
57290
57308
|
}, {
|
57291
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
57309
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
57292
57310
|
message: string;
|
57293
57311
|
id: string;
|
57294
57312
|
url: string;
|
@@ -57662,7 +57680,7 @@ export declare const mainChatContract: {
|
|
57662
57680
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
57663
57681
|
message: z.ZodString;
|
57664
57682
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
57665
|
-
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "unsupported"]>;
|
57683
|
+
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "reaction", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "deleted", "unsupported"]>;
|
57666
57684
|
readAt: z.ZodDate;
|
57667
57685
|
metadata: z.ZodAny;
|
57668
57686
|
platformId: z.ZodString;
|
@@ -60843,7 +60861,7 @@ export declare const mainChatContract: {
|
|
60843
60861
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
60844
60862
|
message: z.ZodString;
|
60845
60863
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
60846
|
-
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "unsupported"]>;
|
60864
|
+
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "reaction", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "deleted", "unsupported"]>;
|
60847
60865
|
readAt: z.ZodDate;
|
60848
60866
|
metadata: z.ZodAny;
|
60849
60867
|
platformId: z.ZodString;
|
@@ -61501,7 +61519,7 @@ export declare const mainChatContract: {
|
|
61501
61519
|
};
|
61502
61520
|
}>;
|
61503
61521
|
}, "strip", z.ZodTypeAny, {
|
61504
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
61522
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
61505
61523
|
message: string;
|
61506
61524
|
id: string;
|
61507
61525
|
url: string;
|
@@ -61663,7 +61681,7 @@ export declare const mainChatContract: {
|
|
61663
61681
|
metadata?: any;
|
61664
61682
|
template?: any;
|
61665
61683
|
}, {
|
61666
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
61684
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
61667
61685
|
message: string;
|
61668
61686
|
id: string;
|
61669
61687
|
url: string;
|
@@ -62463,8 +62481,9 @@ export declare const mainChatContract: {
|
|
62463
62481
|
isActive: boolean;
|
62464
62482
|
}>;
|
62465
62483
|
editedMessageid: z.ZodString;
|
62484
|
+
label: z.ZodOptional<z.ZodString>;
|
62466
62485
|
}, "strip", z.ZodTypeAny, {
|
62467
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
62486
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
62468
62487
|
message: string;
|
62469
62488
|
id: string;
|
62470
62489
|
url: string;
|
@@ -62978,7 +62997,7 @@ export declare const mainChatContract: {
|
|
62978
62997
|
previewUrl: string;
|
62979
62998
|
imageSetId: string;
|
62980
62999
|
repliedMessage: {
|
62981
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
63000
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
62982
63001
|
message: string;
|
62983
63002
|
id: string;
|
62984
63003
|
url: string;
|
@@ -63187,8 +63206,9 @@ export declare const mainChatContract: {
|
|
63187
63206
|
editedMessageid: string;
|
63188
63207
|
metadata?: any;
|
63189
63208
|
template?: any;
|
63209
|
+
label?: string | undefined;
|
63190
63210
|
}, {
|
63191
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
63211
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
63192
63212
|
message: string;
|
63193
63213
|
id: string;
|
63194
63214
|
url: string;
|
@@ -63702,7 +63722,7 @@ export declare const mainChatContract: {
|
|
63702
63722
|
previewUrl: string;
|
63703
63723
|
imageSetId: string;
|
63704
63724
|
repliedMessage: {
|
63705
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
63725
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
63706
63726
|
message: string;
|
63707
63727
|
id: string;
|
63708
63728
|
url: string;
|
@@ -63911,9 +63931,10 @@ export declare const mainChatContract: {
|
|
63911
63931
|
editedMessageid: string;
|
63912
63932
|
metadata?: any;
|
63913
63933
|
template?: any;
|
63934
|
+
label?: string | undefined;
|
63914
63935
|
}>>>;
|
63915
63936
|
}, "strip", z.ZodTypeAny, {
|
63916
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
63937
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
63917
63938
|
message: string;
|
63918
63939
|
id: string;
|
63919
63940
|
url: string;
|
@@ -64427,7 +64448,7 @@ export declare const mainChatContract: {
|
|
64427
64448
|
previewUrl: string;
|
64428
64449
|
imageSetId: string;
|
64429
64450
|
repliedMessage: {
|
64430
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
64451
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
64431
64452
|
message: string;
|
64432
64453
|
id: string;
|
64433
64454
|
url: string;
|
@@ -64634,10 +64655,11 @@ export declare const mainChatContract: {
|
|
64634
64655
|
};
|
64635
64656
|
};
|
64636
64657
|
editedMessageid: string;
|
64658
|
+
label?: string | undefined;
|
64637
64659
|
template?: any;
|
64638
64660
|
metadata?: any;
|
64639
64661
|
fromMessage?: {
|
64640
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
64662
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
64641
64663
|
message: string;
|
64642
64664
|
id: string;
|
64643
64665
|
url: string;
|
@@ -65151,7 +65173,7 @@ export declare const mainChatContract: {
|
|
65151
65173
|
previewUrl: string;
|
65152
65174
|
imageSetId: string;
|
65153
65175
|
repliedMessage: {
|
65154
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
65176
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
65155
65177
|
message: string;
|
65156
65178
|
id: string;
|
65157
65179
|
url: string;
|
@@ -65360,9 +65382,10 @@ export declare const mainChatContract: {
|
|
65360
65382
|
editedMessageid: string;
|
65361
65383
|
metadata?: any;
|
65362
65384
|
template?: any;
|
65385
|
+
label?: string | undefined;
|
65363
65386
|
} | null | undefined;
|
65364
65387
|
}, {
|
65365
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
65388
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
65366
65389
|
message: string;
|
65367
65390
|
id: string;
|
65368
65391
|
url: string;
|
@@ -65876,7 +65899,7 @@ export declare const mainChatContract: {
|
|
65876
65899
|
previewUrl: string;
|
65877
65900
|
imageSetId: string;
|
65878
65901
|
repliedMessage: {
|
65879
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
65902
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
65880
65903
|
message: string;
|
65881
65904
|
id: string;
|
65882
65905
|
url: string;
|
@@ -66083,10 +66106,11 @@ export declare const mainChatContract: {
|
|
66083
66106
|
};
|
66084
66107
|
};
|
66085
66108
|
editedMessageid: string;
|
66109
|
+
label?: string | undefined;
|
66086
66110
|
template?: any;
|
66087
66111
|
metadata?: any;
|
66088
66112
|
fromMessage?: {
|
66089
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
66113
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
66090
66114
|
message: string;
|
66091
66115
|
id: string;
|
66092
66116
|
url: string;
|
@@ -66600,7 +66624,7 @@ export declare const mainChatContract: {
|
|
66600
66624
|
previewUrl: string;
|
66601
66625
|
imageSetId: string;
|
66602
66626
|
repliedMessage: {
|
66603
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
66627
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
66604
66628
|
message: string;
|
66605
66629
|
id: string;
|
66606
66630
|
url: string;
|
@@ -66809,11 +66833,12 @@ export declare const mainChatContract: {
|
|
66809
66833
|
editedMessageid: string;
|
66810
66834
|
metadata?: any;
|
66811
66835
|
template?: any;
|
66836
|
+
label?: string | undefined;
|
66812
66837
|
} | null | undefined;
|
66813
66838
|
}>;
|
66814
66839
|
}, "strip", z.ZodTypeAny, {
|
66815
66840
|
data: {
|
66816
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
66841
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
66817
66842
|
message: string;
|
66818
66843
|
id: string;
|
66819
66844
|
url: string;
|
@@ -67327,7 +67352,7 @@ export declare const mainChatContract: {
|
|
67327
67352
|
previewUrl: string;
|
67328
67353
|
imageSetId: string;
|
67329
67354
|
repliedMessage: {
|
67330
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
67355
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
67331
67356
|
message: string;
|
67332
67357
|
id: string;
|
67333
67358
|
url: string;
|
@@ -67534,10 +67559,11 @@ export declare const mainChatContract: {
|
|
67534
67559
|
};
|
67535
67560
|
};
|
67536
67561
|
editedMessageid: string;
|
67562
|
+
label?: string | undefined;
|
67537
67563
|
template?: any;
|
67538
67564
|
metadata?: any;
|
67539
67565
|
fromMessage?: {
|
67540
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
67566
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
67541
67567
|
message: string;
|
67542
67568
|
id: string;
|
67543
67569
|
url: string;
|
@@ -68051,7 +68077,7 @@ export declare const mainChatContract: {
|
|
68051
68077
|
previewUrl: string;
|
68052
68078
|
imageSetId: string;
|
68053
68079
|
repliedMessage: {
|
68054
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
68080
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
68055
68081
|
message: string;
|
68056
68082
|
id: string;
|
68057
68083
|
url: string;
|
@@ -68260,12 +68286,13 @@ export declare const mainChatContract: {
|
|
68260
68286
|
editedMessageid: string;
|
68261
68287
|
metadata?: any;
|
68262
68288
|
template?: any;
|
68289
|
+
label?: string | undefined;
|
68263
68290
|
} | null | undefined;
|
68264
68291
|
};
|
68265
68292
|
requestId: string;
|
68266
68293
|
}, {
|
68267
68294
|
data: {
|
68268
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
68295
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
68269
68296
|
message: string;
|
68270
68297
|
id: string;
|
68271
68298
|
url: string;
|
@@ -68779,7 +68806,7 @@ export declare const mainChatContract: {
|
|
68779
68806
|
previewUrl: string;
|
68780
68807
|
imageSetId: string;
|
68781
68808
|
repliedMessage: {
|
68782
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
68809
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
68783
68810
|
message: string;
|
68784
68811
|
id: string;
|
68785
68812
|
url: string;
|
@@ -68986,10 +69013,11 @@ export declare const mainChatContract: {
|
|
68986
69013
|
};
|
68987
69014
|
};
|
68988
69015
|
editedMessageid: string;
|
69016
|
+
label?: string | undefined;
|
68989
69017
|
template?: any;
|
68990
69018
|
metadata?: any;
|
68991
69019
|
fromMessage?: {
|
68992
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
69020
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
68993
69021
|
message: string;
|
68994
69022
|
id: string;
|
68995
69023
|
url: string;
|
@@ -69503,7 +69531,7 @@ export declare const mainChatContract: {
|
|
69503
69531
|
previewUrl: string;
|
69504
69532
|
imageSetId: string;
|
69505
69533
|
repliedMessage: {
|
69506
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
69534
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
69507
69535
|
message: string;
|
69508
69536
|
id: string;
|
69509
69537
|
url: string;
|
@@ -69712,6 +69740,7 @@ export declare const mainChatContract: {
|
|
69712
69740
|
editedMessageid: string;
|
69713
69741
|
metadata?: any;
|
69714
69742
|
template?: any;
|
69743
|
+
label?: string | undefined;
|
69715
69744
|
} | null | undefined;
|
69716
69745
|
};
|
69717
69746
|
requestId: string;
|
@@ -69772,17 +69801,17 @@ export declare const mainChatContract: {
|
|
69772
69801
|
contactId: z.ZodOptional<z.ZodString>;
|
69773
69802
|
message: z.ZodObject<{
|
69774
69803
|
message: z.ZodOptional<z.ZodString>;
|
69775
|
-
messageType: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "unsupported"]>;
|
69804
|
+
messageType: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "reaction", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "deleted", "unsupported"]>;
|
69776
69805
|
}, "strip", z.ZodTypeAny, {
|
69777
|
-
messageType: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
69806
|
+
messageType: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
69778
69807
|
message?: string | undefined;
|
69779
69808
|
}, {
|
69780
|
-
messageType: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
69809
|
+
messageType: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
69781
69810
|
message?: string | undefined;
|
69782
69811
|
}>;
|
69783
69812
|
}, "strip", z.ZodTypeAny, {
|
69784
69813
|
message: {
|
69785
|
-
messageType: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
69814
|
+
messageType: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
69786
69815
|
message?: string | undefined;
|
69787
69816
|
};
|
69788
69817
|
channelId: string;
|
@@ -69790,7 +69819,7 @@ export declare const mainChatContract: {
|
|
69790
69819
|
contactId?: string | undefined;
|
69791
69820
|
}, {
|
69792
69821
|
message: {
|
69793
|
-
messageType: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
69822
|
+
messageType: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
69794
69823
|
message?: string | undefined;
|
69795
69824
|
};
|
69796
69825
|
channelId: string;
|
@@ -69808,7 +69837,7 @@ export declare const mainChatContract: {
|
|
69808
69837
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
69809
69838
|
message: z.ZodString;
|
69810
69839
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
69811
|
-
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "unsupported"]>;
|
69840
|
+
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "reaction", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "deleted", "unsupported"]>;
|
69812
69841
|
readAt: z.ZodDate;
|
69813
69842
|
metadata: z.ZodAny;
|
69814
69843
|
platformId: z.ZodString;
|
@@ -72989,7 +73018,7 @@ export declare const mainChatContract: {
|
|
72989
73018
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
72990
73019
|
message: z.ZodString;
|
72991
73020
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
72992
|
-
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "unsupported"]>;
|
73021
|
+
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "reaction", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "deleted", "unsupported"]>;
|
72993
73022
|
readAt: z.ZodDate;
|
72994
73023
|
metadata: z.ZodAny;
|
72995
73024
|
platformId: z.ZodString;
|
@@ -73647,7 +73676,7 @@ export declare const mainChatContract: {
|
|
73647
73676
|
};
|
73648
73677
|
}>;
|
73649
73678
|
}, "strip", z.ZodTypeAny, {
|
73650
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
73679
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
73651
73680
|
message: string;
|
73652
73681
|
id: string;
|
73653
73682
|
url: string;
|
@@ -73809,7 +73838,7 @@ export declare const mainChatContract: {
|
|
73809
73838
|
metadata?: any;
|
73810
73839
|
template?: any;
|
73811
73840
|
}, {
|
73812
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
73841
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
73813
73842
|
message: string;
|
73814
73843
|
id: string;
|
73815
73844
|
url: string;
|
@@ -74609,8 +74638,9 @@ export declare const mainChatContract: {
|
|
74609
74638
|
isActive: boolean;
|
74610
74639
|
}>;
|
74611
74640
|
editedMessageid: z.ZodString;
|
74641
|
+
label: z.ZodOptional<z.ZodString>;
|
74612
74642
|
}, "strip", z.ZodTypeAny, {
|
74613
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
74643
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
74614
74644
|
message: string;
|
74615
74645
|
id: string;
|
74616
74646
|
url: string;
|
@@ -75124,7 +75154,7 @@ export declare const mainChatContract: {
|
|
75124
75154
|
previewUrl: string;
|
75125
75155
|
imageSetId: string;
|
75126
75156
|
repliedMessage: {
|
75127
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
75157
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
75128
75158
|
message: string;
|
75129
75159
|
id: string;
|
75130
75160
|
url: string;
|
@@ -75333,8 +75363,9 @@ export declare const mainChatContract: {
|
|
75333
75363
|
editedMessageid: string;
|
75334
75364
|
metadata?: any;
|
75335
75365
|
template?: any;
|
75366
|
+
label?: string | undefined;
|
75336
75367
|
}, {
|
75337
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
75368
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
75338
75369
|
message: string;
|
75339
75370
|
id: string;
|
75340
75371
|
url: string;
|
@@ -75848,7 +75879,7 @@ export declare const mainChatContract: {
|
|
75848
75879
|
previewUrl: string;
|
75849
75880
|
imageSetId: string;
|
75850
75881
|
repliedMessage: {
|
75851
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
75882
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
75852
75883
|
message: string;
|
75853
75884
|
id: string;
|
75854
75885
|
url: string;
|
@@ -76057,10 +76088,11 @@ export declare const mainChatContract: {
|
|
76057
76088
|
editedMessageid: string;
|
76058
76089
|
metadata?: any;
|
76059
76090
|
template?: any;
|
76091
|
+
label?: string | undefined;
|
76060
76092
|
}>;
|
76061
76093
|
}, "strip", z.ZodTypeAny, {
|
76062
76094
|
data: {
|
76063
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
76095
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
76064
76096
|
message: string;
|
76065
76097
|
id: string;
|
76066
76098
|
url: string;
|
@@ -76574,7 +76606,7 @@ export declare const mainChatContract: {
|
|
76574
76606
|
previewUrl: string;
|
76575
76607
|
imageSetId: string;
|
76576
76608
|
repliedMessage: {
|
76577
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
76609
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
76578
76610
|
message: string;
|
76579
76611
|
id: string;
|
76580
76612
|
url: string;
|
@@ -76783,11 +76815,12 @@ export declare const mainChatContract: {
|
|
76783
76815
|
editedMessageid: string;
|
76784
76816
|
metadata?: any;
|
76785
76817
|
template?: any;
|
76818
|
+
label?: string | undefined;
|
76786
76819
|
};
|
76787
76820
|
requestId: string;
|
76788
76821
|
}, {
|
76789
76822
|
data: {
|
76790
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
76823
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
76791
76824
|
message: string;
|
76792
76825
|
id: string;
|
76793
76826
|
url: string;
|
@@ -77301,7 +77334,7 @@ export declare const mainChatContract: {
|
|
77301
77334
|
previewUrl: string;
|
77302
77335
|
imageSetId: string;
|
77303
77336
|
repliedMessage: {
|
77304
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
77337
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
77305
77338
|
message: string;
|
77306
77339
|
id: string;
|
77307
77340
|
url: string;
|
@@ -77510,6 +77543,7 @@ export declare const mainChatContract: {
|
|
77510
77543
|
editedMessageid: string;
|
77511
77544
|
metadata?: any;
|
77512
77545
|
template?: any;
|
77546
|
+
label?: string | undefined;
|
77513
77547
|
};
|
77514
77548
|
requestId: string;
|
77515
77549
|
}>;
|
@@ -77678,11 +77712,12 @@ export declare const mainChatContract: {
|
|
77678
77712
|
page: z.ZodNumber;
|
77679
77713
|
pageSize: z.ZodNumber;
|
77680
77714
|
data: z.ZodArray<z.ZodObject<{
|
77681
|
-
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "unsupported"]>;
|
77715
|
+
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "reaction", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "deleted", "unsupported"]>;
|
77682
77716
|
message: z.ZodString;
|
77683
77717
|
id: z.ZodString;
|
77684
77718
|
url: z.ZodString;
|
77685
77719
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
77720
|
+
label: z.ZodOptional<z.ZodString>;
|
77686
77721
|
template: z.ZodAny;
|
77687
77722
|
metadata: z.ZodAny;
|
77688
77723
|
createdAt: z.ZodDate;
|
@@ -81298,7 +81333,7 @@ export declare const mainChatContract: {
|
|
81298
81333
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
81299
81334
|
message: z.ZodString;
|
81300
81335
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
81301
|
-
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "unsupported"]>;
|
81336
|
+
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "reaction", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "deleted", "unsupported"]>;
|
81302
81337
|
readAt: z.ZodDate;
|
81303
81338
|
metadata: z.ZodAny;
|
81304
81339
|
platformId: z.ZodString;
|
@@ -81956,7 +81991,7 @@ export declare const mainChatContract: {
|
|
81956
81991
|
};
|
81957
81992
|
}>;
|
81958
81993
|
}, "strip", z.ZodTypeAny, {
|
81959
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
81994
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
81960
81995
|
message: string;
|
81961
81996
|
id: string;
|
81962
81997
|
url: string;
|
@@ -82118,7 +82153,7 @@ export declare const mainChatContract: {
|
|
82118
82153
|
metadata?: any;
|
82119
82154
|
template?: any;
|
82120
82155
|
}, {
|
82121
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
82156
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
82122
82157
|
message: string;
|
82123
82158
|
id: string;
|
82124
82159
|
url: string;
|
@@ -82493,13 +82528,14 @@ export declare const mainChatContract: {
|
|
82493
82528
|
updatedAt: z.ZodDate;
|
82494
82529
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
82495
82530
|
message: z.ZodNullable<z.ZodString>;
|
82496
|
-
type: z.ZodUnion<[z.ZodEnum<["text", "added_photos", "shared_story", "mobile_status_update"]>, z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "unsupported"]>]>;
|
82531
|
+
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", "fallback", "location", "sticker", "text_with_image", "reaction", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "deleted", "unsupported"]>]>;
|
82497
82532
|
metadata: z.ZodAny;
|
82498
82533
|
platformId: z.ZodString;
|
82499
82534
|
platformMessageId: z.ZodString;
|
82500
82535
|
postCreatedAt: z.ZodDate;
|
82501
82536
|
postUpdatedAt: z.ZodDate;
|
82502
82537
|
socialPlatformId: z.ZodString;
|
82538
|
+
template: z.ZodAny;
|
82503
82539
|
channel: z.ZodObject<{
|
82504
82540
|
id: z.ZodString;
|
82505
82541
|
createdAt: z.ZodDate;
|
@@ -84187,10 +84223,9 @@ export declare const mainChatContract: {
|
|
84187
84223
|
telephonySignature: string | null;
|
84188
84224
|
};
|
84189
84225
|
}>;
|
84190
|
-
imageURL: z.ZodString;
|
84191
84226
|
permalinkURL: z.ZodString;
|
84192
84227
|
}, "strip", z.ZodTypeAny, {
|
84193
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "added_photos" | "shared_story" | "mobile_status_update" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
84228
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "added_photos" | "added_video" | "shared_story" | "mobile_status_update" | "no_data" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
84194
84229
|
message: string | null;
|
84195
84230
|
id: string;
|
84196
84231
|
channel: {
|
@@ -84450,11 +84485,11 @@ export declare const mainChatContract: {
|
|
84450
84485
|
platformMessageId: string;
|
84451
84486
|
postCreatedAt: Date;
|
84452
84487
|
postUpdatedAt: Date;
|
84453
|
-
imageURL: string;
|
84454
84488
|
permalinkURL: string;
|
84455
84489
|
metadata?: any;
|
84490
|
+
template?: any;
|
84456
84491
|
}, {
|
84457
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "added_photos" | "shared_story" | "mobile_status_update" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
84492
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "added_photos" | "added_video" | "shared_story" | "mobile_status_update" | "no_data" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
84458
84493
|
message: string | null;
|
84459
84494
|
id: string;
|
84460
84495
|
channel: {
|
@@ -84714,13 +84749,13 @@ export declare const mainChatContract: {
|
|
84714
84749
|
platformMessageId: string;
|
84715
84750
|
postCreatedAt: Date;
|
84716
84751
|
postUpdatedAt: Date;
|
84717
|
-
imageURL: string;
|
84718
84752
|
permalinkURL: string;
|
84719
84753
|
metadata?: any;
|
84754
|
+
template?: any;
|
84720
84755
|
}>>;
|
84721
84756
|
replyReaction: z.ZodNullable<z.ZodString>;
|
84722
84757
|
}, "strip", z.ZodTypeAny, {
|
84723
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
84758
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
84724
84759
|
message: string;
|
84725
84760
|
id: string;
|
84726
84761
|
url: string;
|
@@ -85234,7 +85269,7 @@ export declare const mainChatContract: {
|
|
85234
85269
|
previewUrl: string;
|
85235
85270
|
imageSetId: string;
|
85236
85271
|
repliedMessage: {
|
85237
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
85272
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
85238
85273
|
message: string;
|
85239
85274
|
id: string;
|
85240
85275
|
url: string;
|
@@ -85444,7 +85479,7 @@ export declare const mainChatContract: {
|
|
85444
85479
|
parentMessageId: string | null;
|
85445
85480
|
feedPostId: string | null;
|
85446
85481
|
feedPost: {
|
85447
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "added_photos" | "shared_story" | "mobile_status_update" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
85482
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "added_photos" | "added_video" | "shared_story" | "mobile_status_update" | "no_data" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
85448
85483
|
message: string | null;
|
85449
85484
|
id: string;
|
85450
85485
|
channel: {
|
@@ -85704,15 +85739,16 @@ export declare const mainChatContract: {
|
|
85704
85739
|
platformMessageId: string;
|
85705
85740
|
postCreatedAt: Date;
|
85706
85741
|
postUpdatedAt: Date;
|
85707
|
-
imageURL: string;
|
85708
85742
|
permalinkURL: string;
|
85709
85743
|
metadata?: any;
|
85744
|
+
template?: any;
|
85710
85745
|
} | null;
|
85711
85746
|
replyReaction: string | null;
|
85747
|
+
label?: string | undefined;
|
85712
85748
|
template?: any;
|
85713
85749
|
metadata?: any;
|
85714
85750
|
}, {
|
85715
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
85751
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
85716
85752
|
message: string;
|
85717
85753
|
id: string;
|
85718
85754
|
url: string;
|
@@ -86226,7 +86262,7 @@ export declare const mainChatContract: {
|
|
86226
86262
|
previewUrl: string;
|
86227
86263
|
imageSetId: string;
|
86228
86264
|
repliedMessage: {
|
86229
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
86265
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
86230
86266
|
message: string;
|
86231
86267
|
id: string;
|
86232
86268
|
url: string;
|
@@ -86436,7 +86472,7 @@ export declare const mainChatContract: {
|
|
86436
86472
|
parentMessageId: string | null;
|
86437
86473
|
feedPostId: string | null;
|
86438
86474
|
feedPost: {
|
86439
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "added_photos" | "shared_story" | "mobile_status_update" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
86475
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "added_photos" | "added_video" | "shared_story" | "mobile_status_update" | "no_data" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
86440
86476
|
message: string | null;
|
86441
86477
|
id: string;
|
86442
86478
|
channel: {
|
@@ -86696,17 +86732,18 @@ export declare const mainChatContract: {
|
|
86696
86732
|
platformMessageId: string;
|
86697
86733
|
postCreatedAt: Date;
|
86698
86734
|
postUpdatedAt: Date;
|
86699
|
-
imageURL: string;
|
86700
86735
|
permalinkURL: string;
|
86701
86736
|
metadata?: any;
|
86737
|
+
template?: any;
|
86702
86738
|
} | null;
|
86703
86739
|
replyReaction: string | null;
|
86740
|
+
label?: string | undefined;
|
86704
86741
|
template?: any;
|
86705
86742
|
metadata?: any;
|
86706
86743
|
}>, "many">;
|
86707
86744
|
}, "strip", z.ZodTypeAny, {
|
86708
86745
|
data: {
|
86709
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
86746
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
86710
86747
|
message: string;
|
86711
86748
|
id: string;
|
86712
86749
|
url: string;
|
@@ -87220,7 +87257,7 @@ export declare const mainChatContract: {
|
|
87220
87257
|
previewUrl: string;
|
87221
87258
|
imageSetId: string;
|
87222
87259
|
repliedMessage: {
|
87223
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
87260
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
87224
87261
|
message: string;
|
87225
87262
|
id: string;
|
87226
87263
|
url: string;
|
@@ -87430,7 +87467,7 @@ export declare const mainChatContract: {
|
|
87430
87467
|
parentMessageId: string | null;
|
87431
87468
|
feedPostId: string | null;
|
87432
87469
|
feedPost: {
|
87433
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "added_photos" | "shared_story" | "mobile_status_update" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
87470
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "added_photos" | "added_video" | "shared_story" | "mobile_status_update" | "no_data" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
87434
87471
|
message: string | null;
|
87435
87472
|
id: string;
|
87436
87473
|
channel: {
|
@@ -87690,11 +87727,12 @@ export declare const mainChatContract: {
|
|
87690
87727
|
platformMessageId: string;
|
87691
87728
|
postCreatedAt: Date;
|
87692
87729
|
postUpdatedAt: Date;
|
87693
|
-
imageURL: string;
|
87694
87730
|
permalinkURL: string;
|
87695
87731
|
metadata?: any;
|
87732
|
+
template?: any;
|
87696
87733
|
} | null;
|
87697
87734
|
replyReaction: string | null;
|
87735
|
+
label?: string | undefined;
|
87698
87736
|
template?: any;
|
87699
87737
|
metadata?: any;
|
87700
87738
|
}[];
|
@@ -87704,7 +87742,7 @@ export declare const mainChatContract: {
|
|
87704
87742
|
requestId: string;
|
87705
87743
|
}, {
|
87706
87744
|
data: {
|
87707
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
87745
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
87708
87746
|
message: string;
|
87709
87747
|
id: string;
|
87710
87748
|
url: string;
|
@@ -88218,7 +88256,7 @@ export declare const mainChatContract: {
|
|
88218
88256
|
previewUrl: string;
|
88219
88257
|
imageSetId: string;
|
88220
88258
|
repliedMessage: {
|
88221
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
88259
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
88222
88260
|
message: string;
|
88223
88261
|
id: string;
|
88224
88262
|
url: string;
|
@@ -88428,7 +88466,7 @@ export declare const mainChatContract: {
|
|
88428
88466
|
parentMessageId: string | null;
|
88429
88467
|
feedPostId: string | null;
|
88430
88468
|
feedPost: {
|
88431
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "added_photos" | "shared_story" | "mobile_status_update" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
88469
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "added_photos" | "added_video" | "shared_story" | "mobile_status_update" | "no_data" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
88432
88470
|
message: string | null;
|
88433
88471
|
id: string;
|
88434
88472
|
channel: {
|
@@ -88688,11 +88726,12 @@ export declare const mainChatContract: {
|
|
88688
88726
|
platformMessageId: string;
|
88689
88727
|
postCreatedAt: Date;
|
88690
88728
|
postUpdatedAt: Date;
|
88691
|
-
imageURL: string;
|
88692
88729
|
permalinkURL: string;
|
88693
88730
|
metadata?: any;
|
88731
|
+
template?: any;
|
88694
88732
|
} | null;
|
88695
88733
|
replyReaction: string | null;
|
88734
|
+
label?: string | undefined;
|
88696
88735
|
template?: any;
|
88697
88736
|
metadata?: any;
|
88698
88737
|
}[];
|
@@ -101656,7 +101695,7 @@ export declare const mainChatMessageContract: {
|
|
101656
101695
|
sendMessage: {
|
101657
101696
|
body: z.ZodObject<{
|
101658
101697
|
roomId: z.ZodString;
|
101659
|
-
messageType: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "unsupported"]>;
|
101698
|
+
messageType: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "reaction", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "deleted", "unsupported"]>;
|
101660
101699
|
message: z.ZodOptional<z.ZodString>;
|
101661
101700
|
messageAttachments: z.ZodOptional<z.ZodObject<{
|
101662
101701
|
bucketName: z.ZodString;
|
@@ -101915,7 +101954,7 @@ export declare const mainChatMessageContract: {
|
|
101915
101954
|
mentions?: string[] | undefined;
|
101916
101955
|
}>>;
|
101917
101956
|
}, "strip", z.ZodTypeAny, {
|
101918
|
-
messageType: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
101957
|
+
messageType: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
101919
101958
|
roomId: string;
|
101920
101959
|
message?: string | undefined;
|
101921
101960
|
messageAttachments?: {
|
@@ -101987,7 +102026,7 @@ export declare const mainChatMessageContract: {
|
|
101987
102026
|
mentions?: string[] | undefined;
|
101988
102027
|
} | undefined;
|
101989
102028
|
}, {
|
101990
|
-
messageType: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
102029
|
+
messageType: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
101991
102030
|
roomId: string;
|
101992
102031
|
message?: string | undefined;
|
101993
102032
|
messageAttachments?: {
|
@@ -102065,11 +102104,12 @@ export declare const mainChatMessageContract: {
|
|
102065
102104
|
200: z.ZodObject<{
|
102066
102105
|
requestId: z.ZodString;
|
102067
102106
|
data: z.ZodObject<{
|
102068
|
-
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "unsupported"]>;
|
102107
|
+
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "reaction", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "deleted", "unsupported"]>;
|
102069
102108
|
message: z.ZodString;
|
102070
102109
|
id: z.ZodString;
|
102071
102110
|
url: z.ZodString;
|
102072
102111
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
102112
|
+
label: z.ZodOptional<z.ZodString>;
|
102073
102113
|
template: z.ZodAny;
|
102074
102114
|
metadata: z.ZodAny;
|
102075
102115
|
createdAt: z.ZodDate;
|
@@ -105685,7 +105725,7 @@ export declare const mainChatMessageContract: {
|
|
105685
105725
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
105686
105726
|
message: z.ZodString;
|
105687
105727
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
105688
|
-
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "unsupported"]>;
|
105728
|
+
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "reaction", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "deleted", "unsupported"]>;
|
105689
105729
|
readAt: z.ZodDate;
|
105690
105730
|
metadata: z.ZodAny;
|
105691
105731
|
platformId: z.ZodString;
|
@@ -106343,7 +106383,7 @@ export declare const mainChatMessageContract: {
|
|
106343
106383
|
};
|
106344
106384
|
}>;
|
106345
106385
|
}, "strip", z.ZodTypeAny, {
|
106346
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
106386
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
106347
106387
|
message: string;
|
106348
106388
|
id: string;
|
106349
106389
|
url: string;
|
@@ -106505,7 +106545,7 @@ export declare const mainChatMessageContract: {
|
|
106505
106545
|
metadata?: any;
|
106506
106546
|
template?: any;
|
106507
106547
|
}, {
|
106508
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
106548
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
106509
106549
|
message: string;
|
106510
106550
|
id: string;
|
106511
106551
|
url: string;
|
@@ -106879,7 +106919,7 @@ export declare const mainChatMessageContract: {
|
|
106879
106919
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
106880
106920
|
message: z.ZodString;
|
106881
106921
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
106882
|
-
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "unsupported"]>;
|
106922
|
+
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "reaction", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "deleted", "unsupported"]>;
|
106883
106923
|
readAt: z.ZodDate;
|
106884
106924
|
metadata: z.ZodAny;
|
106885
106925
|
platformId: z.ZodString;
|
@@ -110060,7 +110100,7 @@ export declare const mainChatMessageContract: {
|
|
110060
110100
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
110061
110101
|
message: z.ZodString;
|
110062
110102
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
110063
|
-
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "unsupported"]>;
|
110103
|
+
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "reaction", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "deleted", "unsupported"]>;
|
110064
110104
|
readAt: z.ZodDate;
|
110065
110105
|
metadata: z.ZodAny;
|
110066
110106
|
platformId: z.ZodString;
|
@@ -110718,7 +110758,7 @@ export declare const mainChatMessageContract: {
|
|
110718
110758
|
};
|
110719
110759
|
}>;
|
110720
110760
|
}, "strip", z.ZodTypeAny, {
|
110721
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
110761
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
110722
110762
|
message: string;
|
110723
110763
|
id: string;
|
110724
110764
|
url: string;
|
@@ -110880,7 +110920,7 @@ export declare const mainChatMessageContract: {
|
|
110880
110920
|
metadata?: any;
|
110881
110921
|
template?: any;
|
110882
110922
|
}, {
|
110883
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
110923
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
110884
110924
|
message: string;
|
110885
110925
|
id: string;
|
110886
110926
|
url: string;
|
@@ -111680,8 +111720,9 @@ export declare const mainChatMessageContract: {
|
|
111680
111720
|
isActive: boolean;
|
111681
111721
|
}>;
|
111682
111722
|
editedMessageid: z.ZodString;
|
111723
|
+
label: z.ZodOptional<z.ZodString>;
|
111683
111724
|
}, "strip", z.ZodTypeAny, {
|
111684
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
111725
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
111685
111726
|
message: string;
|
111686
111727
|
id: string;
|
111687
111728
|
url: string;
|
@@ -112195,7 +112236,7 @@ export declare const mainChatMessageContract: {
|
|
112195
112236
|
previewUrl: string;
|
112196
112237
|
imageSetId: string;
|
112197
112238
|
repliedMessage: {
|
112198
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
112239
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
112199
112240
|
message: string;
|
112200
112241
|
id: string;
|
112201
112242
|
url: string;
|
@@ -112404,8 +112445,9 @@ export declare const mainChatMessageContract: {
|
|
112404
112445
|
editedMessageid: string;
|
112405
112446
|
metadata?: any;
|
112406
112447
|
template?: any;
|
112448
|
+
label?: string | undefined;
|
112407
112449
|
}, {
|
112408
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
112450
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
112409
112451
|
message: string;
|
112410
112452
|
id: string;
|
112411
112453
|
url: string;
|
@@ -112919,7 +112961,7 @@ export declare const mainChatMessageContract: {
|
|
112919
112961
|
previewUrl: string;
|
112920
112962
|
imageSetId: string;
|
112921
112963
|
repliedMessage: {
|
112922
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
112964
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
112923
112965
|
message: string;
|
112924
112966
|
id: string;
|
112925
112967
|
url: string;
|
@@ -113128,9 +113170,10 @@ export declare const mainChatMessageContract: {
|
|
113128
113170
|
editedMessageid: string;
|
113129
113171
|
metadata?: any;
|
113130
113172
|
template?: any;
|
113173
|
+
label?: string | undefined;
|
113131
113174
|
}>>>;
|
113132
113175
|
}, "strip", z.ZodTypeAny, {
|
113133
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
113176
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
113134
113177
|
message: string;
|
113135
113178
|
id: string;
|
113136
113179
|
url: string;
|
@@ -113644,7 +113687,7 @@ export declare const mainChatMessageContract: {
|
|
113644
113687
|
previewUrl: string;
|
113645
113688
|
imageSetId: string;
|
113646
113689
|
repliedMessage: {
|
113647
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
113690
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
113648
113691
|
message: string;
|
113649
113692
|
id: string;
|
113650
113693
|
url: string;
|
@@ -113851,10 +113894,11 @@ export declare const mainChatMessageContract: {
|
|
113851
113894
|
};
|
113852
113895
|
};
|
113853
113896
|
editedMessageid: string;
|
113897
|
+
label?: string | undefined;
|
113854
113898
|
template?: any;
|
113855
113899
|
metadata?: any;
|
113856
113900
|
fromMessage?: {
|
113857
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
113901
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
113858
113902
|
message: string;
|
113859
113903
|
id: string;
|
113860
113904
|
url: string;
|
@@ -114368,7 +114412,7 @@ export declare const mainChatMessageContract: {
|
|
114368
114412
|
previewUrl: string;
|
114369
114413
|
imageSetId: string;
|
114370
114414
|
repliedMessage: {
|
114371
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
114415
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
114372
114416
|
message: string;
|
114373
114417
|
id: string;
|
114374
114418
|
url: string;
|
@@ -114577,9 +114621,10 @@ export declare const mainChatMessageContract: {
|
|
114577
114621
|
editedMessageid: string;
|
114578
114622
|
metadata?: any;
|
114579
114623
|
template?: any;
|
114624
|
+
label?: string | undefined;
|
114580
114625
|
} | null | undefined;
|
114581
114626
|
}, {
|
114582
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
114627
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
114583
114628
|
message: string;
|
114584
114629
|
id: string;
|
114585
114630
|
url: string;
|
@@ -115093,7 +115138,7 @@ export declare const mainChatMessageContract: {
|
|
115093
115138
|
previewUrl: string;
|
115094
115139
|
imageSetId: string;
|
115095
115140
|
repliedMessage: {
|
115096
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
115141
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
115097
115142
|
message: string;
|
115098
115143
|
id: string;
|
115099
115144
|
url: string;
|
@@ -115300,10 +115345,11 @@ export declare const mainChatMessageContract: {
|
|
115300
115345
|
};
|
115301
115346
|
};
|
115302
115347
|
editedMessageid: string;
|
115348
|
+
label?: string | undefined;
|
115303
115349
|
template?: any;
|
115304
115350
|
metadata?: any;
|
115305
115351
|
fromMessage?: {
|
115306
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
115352
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
115307
115353
|
message: string;
|
115308
115354
|
id: string;
|
115309
115355
|
url: string;
|
@@ -115817,7 +115863,7 @@ export declare const mainChatMessageContract: {
|
|
115817
115863
|
previewUrl: string;
|
115818
115864
|
imageSetId: string;
|
115819
115865
|
repliedMessage: {
|
115820
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
115866
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
115821
115867
|
message: string;
|
115822
115868
|
id: string;
|
115823
115869
|
url: string;
|
@@ -116026,11 +116072,12 @@ export declare const mainChatMessageContract: {
|
|
116026
116072
|
editedMessageid: string;
|
116027
116073
|
metadata?: any;
|
116028
116074
|
template?: any;
|
116075
|
+
label?: string | undefined;
|
116029
116076
|
} | null | undefined;
|
116030
116077
|
}>;
|
116031
116078
|
}, "strip", z.ZodTypeAny, {
|
116032
116079
|
data: {
|
116033
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
116080
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
116034
116081
|
message: string;
|
116035
116082
|
id: string;
|
116036
116083
|
url: string;
|
@@ -116544,7 +116591,7 @@ export declare const mainChatMessageContract: {
|
|
116544
116591
|
previewUrl: string;
|
116545
116592
|
imageSetId: string;
|
116546
116593
|
repliedMessage: {
|
116547
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
116594
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
116548
116595
|
message: string;
|
116549
116596
|
id: string;
|
116550
116597
|
url: string;
|
@@ -116751,10 +116798,11 @@ export declare const mainChatMessageContract: {
|
|
116751
116798
|
};
|
116752
116799
|
};
|
116753
116800
|
editedMessageid: string;
|
116801
|
+
label?: string | undefined;
|
116754
116802
|
template?: any;
|
116755
116803
|
metadata?: any;
|
116756
116804
|
fromMessage?: {
|
116757
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
116805
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
116758
116806
|
message: string;
|
116759
116807
|
id: string;
|
116760
116808
|
url: string;
|
@@ -117268,7 +117316,7 @@ export declare const mainChatMessageContract: {
|
|
117268
117316
|
previewUrl: string;
|
117269
117317
|
imageSetId: string;
|
117270
117318
|
repliedMessage: {
|
117271
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
117319
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
117272
117320
|
message: string;
|
117273
117321
|
id: string;
|
117274
117322
|
url: string;
|
@@ -117477,12 +117525,13 @@ export declare const mainChatMessageContract: {
|
|
117477
117525
|
editedMessageid: string;
|
117478
117526
|
metadata?: any;
|
117479
117527
|
template?: any;
|
117528
|
+
label?: string | undefined;
|
117480
117529
|
} | null | undefined;
|
117481
117530
|
};
|
117482
117531
|
requestId: string;
|
117483
117532
|
}, {
|
117484
117533
|
data: {
|
117485
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
117534
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
117486
117535
|
message: string;
|
117487
117536
|
id: string;
|
117488
117537
|
url: string;
|
@@ -117996,7 +118045,7 @@ export declare const mainChatMessageContract: {
|
|
117996
118045
|
previewUrl: string;
|
117997
118046
|
imageSetId: string;
|
117998
118047
|
repliedMessage: {
|
117999
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
118048
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
118000
118049
|
message: string;
|
118001
118050
|
id: string;
|
118002
118051
|
url: string;
|
@@ -118203,10 +118252,11 @@ export declare const mainChatMessageContract: {
|
|
118203
118252
|
};
|
118204
118253
|
};
|
118205
118254
|
editedMessageid: string;
|
118255
|
+
label?: string | undefined;
|
118206
118256
|
template?: any;
|
118207
118257
|
metadata?: any;
|
118208
118258
|
fromMessage?: {
|
118209
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
118259
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
118210
118260
|
message: string;
|
118211
118261
|
id: string;
|
118212
118262
|
url: string;
|
@@ -118720,7 +118770,7 @@ export declare const mainChatMessageContract: {
|
|
118720
118770
|
previewUrl: string;
|
118721
118771
|
imageSetId: string;
|
118722
118772
|
repliedMessage: {
|
118723
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
118773
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
118724
118774
|
message: string;
|
118725
118775
|
id: string;
|
118726
118776
|
url: string;
|
@@ -118929,6 +118979,7 @@ export declare const mainChatMessageContract: {
|
|
118929
118979
|
editedMessageid: string;
|
118930
118980
|
metadata?: any;
|
118931
118981
|
template?: any;
|
118982
|
+
label?: string | undefined;
|
118932
118983
|
} | null | undefined;
|
118933
118984
|
};
|
118934
118985
|
requestId: string;
|
@@ -119207,7 +119258,7 @@ export declare const mainChatMessageContract: {
|
|
119207
119258
|
id: z.ZodOptional<z.ZodString>;
|
119208
119259
|
message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
119209
119260
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
119210
|
-
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "unsupported"]>;
|
119261
|
+
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "reaction", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "deleted", "unsupported"]>;
|
119211
119262
|
readAt: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodString]>>>;
|
119212
119263
|
metadata: z.ZodOptional<z.ZodAny>;
|
119213
119264
|
platformId: z.ZodOptional<z.ZodString>;
|
@@ -119259,7 +119310,7 @@ export declare const mainChatMessageContract: {
|
|
119259
119310
|
parentMessageId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
119260
119311
|
feedPostId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
119261
119312
|
}, "strip", z.ZodTypeAny, {
|
119262
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
119313
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
119263
119314
|
direction: "incoming" | "outgoing" | "system";
|
119264
119315
|
id?: string | undefined;
|
119265
119316
|
message?: string | null | undefined;
|
@@ -119290,7 +119341,7 @@ export declare const mainChatMessageContract: {
|
|
119290
119341
|
parentMessageId?: string | null | undefined;
|
119291
119342
|
feedPostId?: string | null | undefined;
|
119292
119343
|
}, {
|
119293
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
119344
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
119294
119345
|
direction: "incoming" | "outgoing" | "system";
|
119295
119346
|
id?: string | undefined;
|
119296
119347
|
message?: string | null | undefined;
|
@@ -119323,7 +119374,7 @@ export declare const mainChatMessageContract: {
|
|
119323
119374
|
}>;
|
119324
119375
|
}, "strip", z.ZodTypeAny, {
|
119325
119376
|
message: {
|
119326
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
119377
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
119327
119378
|
direction: "incoming" | "outgoing" | "system";
|
119328
119379
|
id?: string | undefined;
|
119329
119380
|
message?: string | null | undefined;
|
@@ -119390,7 +119441,7 @@ export declare const mainChatMessageContract: {
|
|
119390
119441
|
};
|
119391
119442
|
}, {
|
119392
119443
|
message: {
|
119393
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
119444
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
119394
119445
|
direction: "incoming" | "outgoing" | "system";
|
119395
119446
|
id?: string | undefined;
|
119396
119447
|
message?: string | null | undefined;
|
@@ -119459,7 +119510,7 @@ export declare const mainChatMessageContract: {
|
|
119459
119510
|
}, "strip", z.ZodTypeAny, {
|
119460
119511
|
data: {
|
119461
119512
|
message: {
|
119462
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
119513
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
119463
119514
|
direction: "incoming" | "outgoing" | "system";
|
119464
119515
|
id?: string | undefined;
|
119465
119516
|
message?: string | null | undefined;
|
@@ -119529,7 +119580,7 @@ export declare const mainChatMessageContract: {
|
|
119529
119580
|
}, {
|
119530
119581
|
data: {
|
119531
119582
|
message: {
|
119532
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
119583
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
119533
119584
|
direction: "incoming" | "outgoing" | "system";
|
119534
119585
|
id?: string | undefined;
|
119535
119586
|
message?: string | null | undefined;
|
@@ -119645,7 +119696,7 @@ export declare const mainChatMessageContract: {
|
|
119645
119696
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
119646
119697
|
message: z.ZodString;
|
119647
119698
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
119648
|
-
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "unsupported"]>;
|
119699
|
+
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "reaction", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "deleted", "unsupported"]>;
|
119649
119700
|
readAt: z.ZodDate;
|
119650
119701
|
metadata: z.ZodAny;
|
119651
119702
|
platformId: z.ZodString;
|
@@ -122826,7 +122877,7 @@ export declare const mainChatMessageContract: {
|
|
122826
122877
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
122827
122878
|
message: z.ZodString;
|
122828
122879
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
122829
|
-
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "unsupported"]>;
|
122880
|
+
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "reaction", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "deleted", "unsupported"]>;
|
122830
122881
|
readAt: z.ZodDate;
|
122831
122882
|
metadata: z.ZodAny;
|
122832
122883
|
platformId: z.ZodString;
|
@@ -123484,7 +123535,7 @@ export declare const mainChatMessageContract: {
|
|
123484
123535
|
};
|
123485
123536
|
}>;
|
123486
123537
|
}, "strip", z.ZodTypeAny, {
|
123487
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
123538
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
123488
123539
|
message: string;
|
123489
123540
|
id: string;
|
123490
123541
|
url: string;
|
@@ -123646,7 +123697,7 @@ export declare const mainChatMessageContract: {
|
|
123646
123697
|
metadata?: any;
|
123647
123698
|
template?: any;
|
123648
123699
|
}, {
|
123649
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
123700
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
123650
123701
|
message: string;
|
123651
123702
|
id: string;
|
123652
123703
|
url: string;
|
@@ -124446,8 +124497,9 @@ export declare const mainChatMessageContract: {
|
|
124446
124497
|
isActive: boolean;
|
124447
124498
|
}>;
|
124448
124499
|
editedMessageid: z.ZodString;
|
124500
|
+
label: z.ZodOptional<z.ZodString>;
|
124449
124501
|
}, "strip", z.ZodTypeAny, {
|
124450
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
124502
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
124451
124503
|
message: string;
|
124452
124504
|
id: string;
|
124453
124505
|
url: string;
|
@@ -124961,7 +125013,7 @@ export declare const mainChatMessageContract: {
|
|
124961
125013
|
previewUrl: string;
|
124962
125014
|
imageSetId: string;
|
124963
125015
|
repliedMessage: {
|
124964
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
125016
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
124965
125017
|
message: string;
|
124966
125018
|
id: string;
|
124967
125019
|
url: string;
|
@@ -125170,8 +125222,9 @@ export declare const mainChatMessageContract: {
|
|
125170
125222
|
editedMessageid: string;
|
125171
125223
|
metadata?: any;
|
125172
125224
|
template?: any;
|
125225
|
+
label?: string | undefined;
|
125173
125226
|
}, {
|
125174
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
125227
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
125175
125228
|
message: string;
|
125176
125229
|
id: string;
|
125177
125230
|
url: string;
|
@@ -125685,7 +125738,7 @@ export declare const mainChatMessageContract: {
|
|
125685
125738
|
previewUrl: string;
|
125686
125739
|
imageSetId: string;
|
125687
125740
|
repliedMessage: {
|
125688
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
125741
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
125689
125742
|
message: string;
|
125690
125743
|
id: string;
|
125691
125744
|
url: string;
|
@@ -125894,10 +125947,11 @@ export declare const mainChatMessageContract: {
|
|
125894
125947
|
editedMessageid: string;
|
125895
125948
|
metadata?: any;
|
125896
125949
|
template?: any;
|
125950
|
+
label?: string | undefined;
|
125897
125951
|
}>, "many">;
|
125898
125952
|
}, "strip", z.ZodTypeAny, {
|
125899
125953
|
data: {
|
125900
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
125954
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
125901
125955
|
message: string;
|
125902
125956
|
id: string;
|
125903
125957
|
url: string;
|
@@ -126411,7 +126465,7 @@ export declare const mainChatMessageContract: {
|
|
126411
126465
|
previewUrl: string;
|
126412
126466
|
imageSetId: string;
|
126413
126467
|
repliedMessage: {
|
126414
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
126468
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
126415
126469
|
message: string;
|
126416
126470
|
id: string;
|
126417
126471
|
url: string;
|
@@ -126620,11 +126674,12 @@ export declare const mainChatMessageContract: {
|
|
126620
126674
|
editedMessageid: string;
|
126621
126675
|
metadata?: any;
|
126622
126676
|
template?: any;
|
126677
|
+
label?: string | undefined;
|
126623
126678
|
}[];
|
126624
126679
|
requestId: string;
|
126625
126680
|
}, {
|
126626
126681
|
data: {
|
126627
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
126682
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
126628
126683
|
message: string;
|
126629
126684
|
id: string;
|
126630
126685
|
url: string;
|
@@ -127138,7 +127193,7 @@ export declare const mainChatMessageContract: {
|
|
127138
127193
|
previewUrl: string;
|
127139
127194
|
imageSetId: string;
|
127140
127195
|
repliedMessage: {
|
127141
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "unsupported";
|
127196
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
127142
127197
|
message: string;
|
127143
127198
|
id: string;
|
127144
127199
|
url: string;
|
@@ -127347,6 +127402,7 @@ export declare const mainChatMessageContract: {
|
|
127347
127402
|
editedMessageid: string;
|
127348
127403
|
metadata?: any;
|
127349
127404
|
template?: any;
|
127405
|
+
label?: string | undefined;
|
127350
127406
|
}[];
|
127351
127407
|
requestId: string;
|
127352
127408
|
}>;
|