@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
@@ -80966,7 +80966,7 @@ export declare const platformContract: {
|
|
80966
80966
|
message: import("zod").ZodObject<{
|
80967
80967
|
message: import("zod").ZodOptional<import("zod").ZodString>;
|
80968
80968
|
direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
|
80969
|
-
type: import("zod").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"]>;
|
80969
|
+
type: import("zod").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"]>;
|
80970
80970
|
readAt: import("zod").ZodOptional<import("zod").ZodDate>;
|
80971
80971
|
metadata: import("zod").ZodOptional<import("zod").ZodAny>;
|
80972
80972
|
platformId: import("zod").ZodOptional<import("zod").ZodString>;
|
@@ -81010,7 +81010,7 @@ export declare const platformContract: {
|
|
81010
81010
|
phone: string | null;
|
81011
81011
|
}>;
|
81012
81012
|
}, "strip", import("zod").ZodTypeAny, {
|
81013
|
-
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";
|
81013
|
+
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";
|
81014
81014
|
direction: "incoming" | "outgoing" | "system";
|
81015
81015
|
sender: {
|
81016
81016
|
address: string | null;
|
@@ -81036,7 +81036,7 @@ export declare const platformContract: {
|
|
81036
81036
|
fileSize: number;
|
81037
81037
|
} | undefined;
|
81038
81038
|
}, {
|
81039
|
-
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";
|
81039
|
+
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";
|
81040
81040
|
direction: "incoming" | "outgoing" | "system";
|
81041
81041
|
sender: {
|
81042
81042
|
address: string | null;
|
@@ -81064,7 +81064,7 @@ export declare const platformContract: {
|
|
81064
81064
|
}>;
|
81065
81065
|
}, "strip", import("zod").ZodTypeAny, {
|
81066
81066
|
message: {
|
81067
|
-
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";
|
81067
|
+
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";
|
81068
81068
|
direction: "incoming" | "outgoing" | "system";
|
81069
81069
|
sender: {
|
81070
81070
|
address: string | null;
|
@@ -81157,7 +81157,7 @@ export declare const platformContract: {
|
|
81157
81157
|
stickerId: number;
|
81158
81158
|
}, {
|
81159
81159
|
message: {
|
81160
|
-
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";
|
81160
|
+
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";
|
81161
81161
|
direction: "incoming" | "outgoing" | "system";
|
81162
81162
|
sender: {
|
81163
81163
|
address: string | null;
|
@@ -81971,7 +81971,7 @@ export declare const platformContract: {
|
|
81971
81971
|
id: import("zod").ZodOptional<import("zod").ZodString>;
|
81972
81972
|
message: import("zod").ZodOptional<import("zod").ZodString>;
|
81973
81973
|
direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
|
81974
|
-
type: import("zod").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"]>;
|
81974
|
+
type: import("zod").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"]>;
|
81975
81975
|
readAt: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodUnion<[import("zod").ZodDate, import("zod").ZodString]>>>;
|
81976
81976
|
metadata: import("zod").ZodOptional<import("zod").ZodAny>;
|
81977
81977
|
platformId: import("zod").ZodOptional<import("zod").ZodString>;
|
@@ -82025,8 +82025,9 @@ export declare const platformContract: {
|
|
82025
82025
|
editedMessageId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
82026
82026
|
isEdited: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodBoolean>>;
|
82027
82027
|
editedAt: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodUnion<[import("zod").ZodDate, import("zod").ZodString]>>>;
|
82028
|
+
label: import("zod").ZodOptional<import("zod").ZodString>;
|
82028
82029
|
}, "strip", import("zod").ZodTypeAny, {
|
82029
|
-
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";
|
82030
|
+
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";
|
82030
82031
|
direction: "incoming" | "outgoing" | "system";
|
82031
82032
|
id?: string | undefined;
|
82032
82033
|
message?: string | undefined;
|
@@ -82059,8 +82060,9 @@ export declare const platformContract: {
|
|
82059
82060
|
editedMessageId?: string | null | undefined;
|
82060
82061
|
isEdited?: boolean | null | undefined;
|
82061
82062
|
editedAt?: string | Date | null | undefined;
|
82063
|
+
label?: string | undefined;
|
82062
82064
|
}, {
|
82063
|
-
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";
|
82065
|
+
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";
|
82064
82066
|
direction: "incoming" | "outgoing" | "system";
|
82065
82067
|
id?: string | undefined;
|
82066
82068
|
message?: string | undefined;
|
@@ -82093,10 +82095,11 @@ export declare const platformContract: {
|
|
82093
82095
|
editedMessageId?: string | null | undefined;
|
82094
82096
|
isEdited?: boolean | null | undefined;
|
82095
82097
|
editedAt?: string | Date | null | undefined;
|
82098
|
+
label?: string | undefined;
|
82096
82099
|
}>;
|
82097
82100
|
}, "strip", import("zod").ZodTypeAny, {
|
82098
82101
|
message: {
|
82099
|
-
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";
|
82102
|
+
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";
|
82100
82103
|
direction: "incoming" | "outgoing" | "system";
|
82101
82104
|
id?: string | undefined;
|
82102
82105
|
message?: string | undefined;
|
@@ -82129,6 +82132,7 @@ export declare const platformContract: {
|
|
82129
82132
|
editedMessageId?: string | null | undefined;
|
82130
82133
|
isEdited?: boolean | null | undefined;
|
82131
82134
|
editedAt?: string | Date | null | undefined;
|
82135
|
+
label?: string | undefined;
|
82132
82136
|
};
|
82133
82137
|
room: {
|
82134
82138
|
id: string;
|
@@ -82207,7 +82211,7 @@ export declare const platformContract: {
|
|
82207
82211
|
isBot: boolean | null;
|
82208
82212
|
}, {
|
82209
82213
|
message: {
|
82210
|
-
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";
|
82214
|
+
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";
|
82211
82215
|
direction: "incoming" | "outgoing" | "system";
|
82212
82216
|
id?: string | undefined;
|
82213
82217
|
message?: string | undefined;
|
@@ -82240,6 +82244,7 @@ export declare const platformContract: {
|
|
82240
82244
|
editedMessageId?: string | null | undefined;
|
82241
82245
|
isEdited?: boolean | null | undefined;
|
82242
82246
|
editedAt?: string | Date | null | undefined;
|
82247
|
+
label?: string | undefined;
|
82243
82248
|
};
|
82244
82249
|
room: {
|
82245
82250
|
id: string;
|
@@ -82322,11 +82327,12 @@ export declare const platformContract: {
|
|
82322
82327
|
200: import("zod").ZodObject<{
|
82323
82328
|
requestId: import("zod").ZodString;
|
82324
82329
|
data: import("zod").ZodObject<{
|
82325
|
-
type: import("zod").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"]>;
|
82330
|
+
type: import("zod").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"]>;
|
82326
82331
|
message: import("zod").ZodString;
|
82327
82332
|
id: import("zod").ZodString;
|
82328
82333
|
url: import("zod").ZodString;
|
82329
82334
|
direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
|
82335
|
+
label: import("zod").ZodOptional<import("zod").ZodString>;
|
82330
82336
|
template: import("zod").ZodAny;
|
82331
82337
|
metadata: import("zod").ZodAny;
|
82332
82338
|
createdAt: import("zod").ZodDate;
|
@@ -85942,7 +85948,7 @@ export declare const platformContract: {
|
|
85942
85948
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
85943
85949
|
message: import("zod").ZodString;
|
85944
85950
|
direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
|
85945
|
-
type: import("zod").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"]>;
|
85951
|
+
type: import("zod").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"]>;
|
85946
85952
|
readAt: import("zod").ZodDate;
|
85947
85953
|
metadata: import("zod").ZodAny;
|
85948
85954
|
platformId: import("zod").ZodString;
|
@@ -86600,7 +86606,7 @@ export declare const platformContract: {
|
|
86600
86606
|
};
|
86601
86607
|
}>;
|
86602
86608
|
}, "strip", import("zod").ZodTypeAny, {
|
86603
|
-
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";
|
86609
|
+
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";
|
86604
86610
|
message: string;
|
86605
86611
|
id: string;
|
86606
86612
|
url: string;
|
@@ -86762,7 +86768,7 @@ export declare const platformContract: {
|
|
86762
86768
|
metadata?: any;
|
86763
86769
|
template?: any;
|
86764
86770
|
}, {
|
86765
|
-
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";
|
86771
|
+
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";
|
86766
86772
|
message: string;
|
86767
86773
|
id: string;
|
86768
86774
|
url: string;
|
@@ -87136,7 +87142,7 @@ export declare const platformContract: {
|
|
87136
87142
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
87137
87143
|
message: import("zod").ZodString;
|
87138
87144
|
direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
|
87139
|
-
type: import("zod").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"]>;
|
87145
|
+
type: import("zod").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"]>;
|
87140
87146
|
readAt: import("zod").ZodDate;
|
87141
87147
|
metadata: import("zod").ZodAny;
|
87142
87148
|
platformId: import("zod").ZodString;
|
@@ -90317,7 +90323,7 @@ export declare const platformContract: {
|
|
90317
90323
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
90318
90324
|
message: import("zod").ZodString;
|
90319
90325
|
direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
|
90320
|
-
type: import("zod").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"]>;
|
90326
|
+
type: import("zod").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"]>;
|
90321
90327
|
readAt: import("zod").ZodDate;
|
90322
90328
|
metadata: import("zod").ZodAny;
|
90323
90329
|
platformId: import("zod").ZodString;
|
@@ -90975,7 +90981,7 @@ export declare const platformContract: {
|
|
90975
90981
|
};
|
90976
90982
|
}>;
|
90977
90983
|
}, "strip", import("zod").ZodTypeAny, {
|
90978
|
-
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";
|
90984
|
+
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";
|
90979
90985
|
message: string;
|
90980
90986
|
id: string;
|
90981
90987
|
url: string;
|
@@ -91137,7 +91143,7 @@ export declare const platformContract: {
|
|
91137
91143
|
metadata?: any;
|
91138
91144
|
template?: any;
|
91139
91145
|
}, {
|
91140
|
-
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";
|
91146
|
+
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";
|
91141
91147
|
message: string;
|
91142
91148
|
id: string;
|
91143
91149
|
url: string;
|
@@ -91937,8 +91943,9 @@ export declare const platformContract: {
|
|
91937
91943
|
isActive: boolean;
|
91938
91944
|
}>;
|
91939
91945
|
editedMessageid: import("zod").ZodString;
|
91946
|
+
label: import("zod").ZodOptional<import("zod").ZodString>;
|
91940
91947
|
}, "strip", import("zod").ZodTypeAny, {
|
91941
|
-
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";
|
91948
|
+
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";
|
91942
91949
|
message: string;
|
91943
91950
|
id: string;
|
91944
91951
|
url: string;
|
@@ -92452,7 +92459,7 @@ export declare const platformContract: {
|
|
92452
92459
|
previewUrl: string;
|
92453
92460
|
imageSetId: string;
|
92454
92461
|
repliedMessage: {
|
92455
|
-
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";
|
92462
|
+
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";
|
92456
92463
|
message: string;
|
92457
92464
|
id: string;
|
92458
92465
|
url: string;
|
@@ -92661,8 +92668,9 @@ export declare const platformContract: {
|
|
92661
92668
|
editedMessageid: string;
|
92662
92669
|
metadata?: any;
|
92663
92670
|
template?: any;
|
92671
|
+
label?: string | undefined;
|
92664
92672
|
}, {
|
92665
|
-
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";
|
92673
|
+
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";
|
92666
92674
|
message: string;
|
92667
92675
|
id: string;
|
92668
92676
|
url: string;
|
@@ -93176,7 +93184,7 @@ export declare const platformContract: {
|
|
93176
93184
|
previewUrl: string;
|
93177
93185
|
imageSetId: string;
|
93178
93186
|
repliedMessage: {
|
93179
|
-
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";
|
93187
|
+
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";
|
93180
93188
|
message: string;
|
93181
93189
|
id: string;
|
93182
93190
|
url: string;
|
@@ -93385,9 +93393,10 @@ export declare const platformContract: {
|
|
93385
93393
|
editedMessageid: string;
|
93386
93394
|
metadata?: any;
|
93387
93395
|
template?: any;
|
93396
|
+
label?: string | undefined;
|
93388
93397
|
}>>>;
|
93389
93398
|
}, "strip", import("zod").ZodTypeAny, {
|
93390
|
-
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";
|
93399
|
+
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";
|
93391
93400
|
message: string;
|
93392
93401
|
id: string;
|
93393
93402
|
url: string;
|
@@ -93901,7 +93910,7 @@ export declare const platformContract: {
|
|
93901
93910
|
previewUrl: string;
|
93902
93911
|
imageSetId: string;
|
93903
93912
|
repliedMessage: {
|
93904
|
-
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";
|
93913
|
+
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";
|
93905
93914
|
message: string;
|
93906
93915
|
id: string;
|
93907
93916
|
url: string;
|
@@ -94108,10 +94117,11 @@ export declare const platformContract: {
|
|
94108
94117
|
};
|
94109
94118
|
};
|
94110
94119
|
editedMessageid: string;
|
94120
|
+
label?: string | undefined;
|
94111
94121
|
template?: any;
|
94112
94122
|
metadata?: any;
|
94113
94123
|
fromMessage?: {
|
94114
|
-
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";
|
94124
|
+
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";
|
94115
94125
|
message: string;
|
94116
94126
|
id: string;
|
94117
94127
|
url: string;
|
@@ -94625,7 +94635,7 @@ export declare const platformContract: {
|
|
94625
94635
|
previewUrl: string;
|
94626
94636
|
imageSetId: string;
|
94627
94637
|
repliedMessage: {
|
94628
|
-
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";
|
94638
|
+
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";
|
94629
94639
|
message: string;
|
94630
94640
|
id: string;
|
94631
94641
|
url: string;
|
@@ -94834,9 +94844,10 @@ export declare const platformContract: {
|
|
94834
94844
|
editedMessageid: string;
|
94835
94845
|
metadata?: any;
|
94836
94846
|
template?: any;
|
94847
|
+
label?: string | undefined;
|
94837
94848
|
} | null | undefined;
|
94838
94849
|
}, {
|
94839
|
-
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";
|
94850
|
+
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";
|
94840
94851
|
message: string;
|
94841
94852
|
id: string;
|
94842
94853
|
url: string;
|
@@ -95350,7 +95361,7 @@ export declare const platformContract: {
|
|
95350
95361
|
previewUrl: string;
|
95351
95362
|
imageSetId: string;
|
95352
95363
|
repliedMessage: {
|
95353
|
-
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";
|
95364
|
+
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";
|
95354
95365
|
message: string;
|
95355
95366
|
id: string;
|
95356
95367
|
url: string;
|
@@ -95557,10 +95568,11 @@ export declare const platformContract: {
|
|
95557
95568
|
};
|
95558
95569
|
};
|
95559
95570
|
editedMessageid: string;
|
95571
|
+
label?: string | undefined;
|
95560
95572
|
template?: any;
|
95561
95573
|
metadata?: any;
|
95562
95574
|
fromMessage?: {
|
95563
|
-
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";
|
95575
|
+
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";
|
95564
95576
|
message: string;
|
95565
95577
|
id: string;
|
95566
95578
|
url: string;
|
@@ -96074,7 +96086,7 @@ export declare const platformContract: {
|
|
96074
96086
|
previewUrl: string;
|
96075
96087
|
imageSetId: string;
|
96076
96088
|
repliedMessage: {
|
96077
|
-
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";
|
96089
|
+
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";
|
96078
96090
|
message: string;
|
96079
96091
|
id: string;
|
96080
96092
|
url: string;
|
@@ -96283,11 +96295,12 @@ export declare const platformContract: {
|
|
96283
96295
|
editedMessageid: string;
|
96284
96296
|
metadata?: any;
|
96285
96297
|
template?: any;
|
96298
|
+
label?: string | undefined;
|
96286
96299
|
} | null | undefined;
|
96287
96300
|
}>;
|
96288
96301
|
}, "strip", import("zod").ZodTypeAny, {
|
96289
96302
|
data: {
|
96290
|
-
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";
|
96303
|
+
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";
|
96291
96304
|
message: string;
|
96292
96305
|
id: string;
|
96293
96306
|
url: string;
|
@@ -96801,7 +96814,7 @@ export declare const platformContract: {
|
|
96801
96814
|
previewUrl: string;
|
96802
96815
|
imageSetId: string;
|
96803
96816
|
repliedMessage: {
|
96804
|
-
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";
|
96817
|
+
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";
|
96805
96818
|
message: string;
|
96806
96819
|
id: string;
|
96807
96820
|
url: string;
|
@@ -97008,10 +97021,11 @@ export declare const platformContract: {
|
|
97008
97021
|
};
|
97009
97022
|
};
|
97010
97023
|
editedMessageid: string;
|
97024
|
+
label?: string | undefined;
|
97011
97025
|
template?: any;
|
97012
97026
|
metadata?: any;
|
97013
97027
|
fromMessage?: {
|
97014
|
-
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";
|
97028
|
+
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";
|
97015
97029
|
message: string;
|
97016
97030
|
id: string;
|
97017
97031
|
url: string;
|
@@ -97525,7 +97539,7 @@ export declare const platformContract: {
|
|
97525
97539
|
previewUrl: string;
|
97526
97540
|
imageSetId: string;
|
97527
97541
|
repliedMessage: {
|
97528
|
-
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";
|
97542
|
+
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";
|
97529
97543
|
message: string;
|
97530
97544
|
id: string;
|
97531
97545
|
url: string;
|
@@ -97734,12 +97748,13 @@ export declare const platformContract: {
|
|
97734
97748
|
editedMessageid: string;
|
97735
97749
|
metadata?: any;
|
97736
97750
|
template?: any;
|
97751
|
+
label?: string | undefined;
|
97737
97752
|
} | null | undefined;
|
97738
97753
|
};
|
97739
97754
|
requestId: string;
|
97740
97755
|
}, {
|
97741
97756
|
data: {
|
97742
|
-
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";
|
97757
|
+
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";
|
97743
97758
|
message: string;
|
97744
97759
|
id: string;
|
97745
97760
|
url: string;
|
@@ -98253,7 +98268,7 @@ export declare const platformContract: {
|
|
98253
98268
|
previewUrl: string;
|
98254
98269
|
imageSetId: string;
|
98255
98270
|
repliedMessage: {
|
98256
|
-
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";
|
98271
|
+
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";
|
98257
98272
|
message: string;
|
98258
98273
|
id: string;
|
98259
98274
|
url: string;
|
@@ -98460,10 +98475,11 @@ export declare const platformContract: {
|
|
98460
98475
|
};
|
98461
98476
|
};
|
98462
98477
|
editedMessageid: string;
|
98478
|
+
label?: string | undefined;
|
98463
98479
|
template?: any;
|
98464
98480
|
metadata?: any;
|
98465
98481
|
fromMessage?: {
|
98466
|
-
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";
|
98482
|
+
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";
|
98467
98483
|
message: string;
|
98468
98484
|
id: string;
|
98469
98485
|
url: string;
|
@@ -98977,7 +98993,7 @@ export declare const platformContract: {
|
|
98977
98993
|
previewUrl: string;
|
98978
98994
|
imageSetId: string;
|
98979
98995
|
repliedMessage: {
|
98980
|
-
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";
|
98996
|
+
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";
|
98981
98997
|
message: string;
|
98982
98998
|
id: string;
|
98983
98999
|
url: string;
|
@@ -99186,6 +99202,7 @@ export declare const platformContract: {
|
|
99186
99202
|
editedMessageid: string;
|
99187
99203
|
metadata?: any;
|
99188
99204
|
template?: any;
|
99205
|
+
label?: string | undefined;
|
99189
99206
|
} | null | undefined;
|
99190
99207
|
};
|
99191
99208
|
requestId: string;
|
@@ -101784,7 +101801,7 @@ export declare const platformContract: {
|
|
101784
101801
|
id: import("zod").ZodOptional<import("zod").ZodString>;
|
101785
101802
|
message: import("zod").ZodOptional<import("zod").ZodString>;
|
101786
101803
|
direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
|
101787
|
-
type: import("zod").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"]>;
|
101804
|
+
type: import("zod").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"]>;
|
101788
101805
|
readAt: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodUnion<[import("zod").ZodDate, import("zod").ZodString]>>>;
|
101789
101806
|
metadata: import("zod").ZodOptional<import("zod").ZodAny>;
|
101790
101807
|
platformId: import("zod").ZodOptional<import("zod").ZodString>;
|
@@ -101838,8 +101855,9 @@ export declare const platformContract: {
|
|
101838
101855
|
editedMessageId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
101839
101856
|
isEdited: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodBoolean>>;
|
101840
101857
|
editedAt: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodUnion<[import("zod").ZodDate, import("zod").ZodString]>>>;
|
101858
|
+
label: import("zod").ZodOptional<import("zod").ZodString>;
|
101841
101859
|
}, "strip", import("zod").ZodTypeAny, {
|
101842
|
-
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";
|
101860
|
+
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";
|
101843
101861
|
direction: "incoming" | "outgoing" | "system";
|
101844
101862
|
id?: string | undefined;
|
101845
101863
|
message?: string | undefined;
|
@@ -101872,8 +101890,9 @@ export declare const platformContract: {
|
|
101872
101890
|
editedMessageId?: string | null | undefined;
|
101873
101891
|
isEdited?: boolean | null | undefined;
|
101874
101892
|
editedAt?: string | Date | null | undefined;
|
101893
|
+
label?: string | undefined;
|
101875
101894
|
}, {
|
101876
|
-
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";
|
101895
|
+
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";
|
101877
101896
|
direction: "incoming" | "outgoing" | "system";
|
101878
101897
|
id?: string | undefined;
|
101879
101898
|
message?: string | undefined;
|
@@ -101906,10 +101925,11 @@ export declare const platformContract: {
|
|
101906
101925
|
editedMessageId?: string | null | undefined;
|
101907
101926
|
isEdited?: boolean | null | undefined;
|
101908
101927
|
editedAt?: string | Date | null | undefined;
|
101928
|
+
label?: string | undefined;
|
101909
101929
|
}>;
|
101910
101930
|
}, "strip", import("zod").ZodTypeAny, {
|
101911
101931
|
message: {
|
101912
|
-
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";
|
101932
|
+
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";
|
101913
101933
|
direction: "incoming" | "outgoing" | "system";
|
101914
101934
|
id?: string | undefined;
|
101915
101935
|
message?: string | undefined;
|
@@ -101942,6 +101962,7 @@ export declare const platformContract: {
|
|
101942
101962
|
editedMessageId?: string | null | undefined;
|
101943
101963
|
isEdited?: boolean | null | undefined;
|
101944
101964
|
editedAt?: string | Date | null | undefined;
|
101965
|
+
label?: string | undefined;
|
101945
101966
|
};
|
101946
101967
|
room: {
|
101947
101968
|
id: string;
|
@@ -102020,7 +102041,7 @@ export declare const platformContract: {
|
|
102020
102041
|
isBot: boolean | null;
|
102021
102042
|
}, {
|
102022
102043
|
message: {
|
102023
|
-
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";
|
102044
|
+
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";
|
102024
102045
|
direction: "incoming" | "outgoing" | "system";
|
102025
102046
|
id?: string | undefined;
|
102026
102047
|
message?: string | undefined;
|
@@ -102053,6 +102074,7 @@ export declare const platformContract: {
|
|
102053
102074
|
editedMessageId?: string | null | undefined;
|
102054
102075
|
isEdited?: boolean | null | undefined;
|
102055
102076
|
editedAt?: string | Date | null | undefined;
|
102077
|
+
label?: string | undefined;
|
102056
102078
|
};
|
102057
102079
|
room: {
|
102058
102080
|
id: string;
|
@@ -102135,11 +102157,12 @@ export declare const platformContract: {
|
|
102135
102157
|
200: import("zod").ZodObject<{
|
102136
102158
|
requestId: import("zod").ZodString;
|
102137
102159
|
data: import("zod").ZodObject<{
|
102138
|
-
type: import("zod").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"]>;
|
102160
|
+
type: import("zod").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"]>;
|
102139
102161
|
message: import("zod").ZodString;
|
102140
102162
|
id: import("zod").ZodString;
|
102141
102163
|
url: import("zod").ZodString;
|
102142
102164
|
direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
|
102165
|
+
label: import("zod").ZodOptional<import("zod").ZodString>;
|
102143
102166
|
template: import("zod").ZodAny;
|
102144
102167
|
metadata: import("zod").ZodAny;
|
102145
102168
|
createdAt: import("zod").ZodDate;
|
@@ -105755,7 +105778,7 @@ export declare const platformContract: {
|
|
105755
105778
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
105756
105779
|
message: import("zod").ZodString;
|
105757
105780
|
direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
|
105758
|
-
type: import("zod").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"]>;
|
105781
|
+
type: import("zod").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"]>;
|
105759
105782
|
readAt: import("zod").ZodDate;
|
105760
105783
|
metadata: import("zod").ZodAny;
|
105761
105784
|
platformId: import("zod").ZodString;
|
@@ -106413,7 +106436,7 @@ export declare const platformContract: {
|
|
106413
106436
|
};
|
106414
106437
|
}>;
|
106415
106438
|
}, "strip", import("zod").ZodTypeAny, {
|
106416
|
-
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";
|
106439
|
+
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";
|
106417
106440
|
message: string;
|
106418
106441
|
id: string;
|
106419
106442
|
url: string;
|
@@ -106575,7 +106598,7 @@ export declare const platformContract: {
|
|
106575
106598
|
metadata?: any;
|
106576
106599
|
template?: any;
|
106577
106600
|
}, {
|
106578
|
-
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";
|
106601
|
+
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";
|
106579
106602
|
message: string;
|
106580
106603
|
id: string;
|
106581
106604
|
url: string;
|
@@ -106949,7 +106972,7 @@ export declare const platformContract: {
|
|
106949
106972
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
106950
106973
|
message: import("zod").ZodString;
|
106951
106974
|
direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
|
106952
|
-
type: import("zod").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"]>;
|
106975
|
+
type: import("zod").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"]>;
|
106953
106976
|
readAt: import("zod").ZodDate;
|
106954
106977
|
metadata: import("zod").ZodAny;
|
106955
106978
|
platformId: import("zod").ZodString;
|
@@ -110130,7 +110153,7 @@ export declare const platformContract: {
|
|
110130
110153
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
110131
110154
|
message: import("zod").ZodString;
|
110132
110155
|
direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
|
110133
|
-
type: import("zod").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"]>;
|
110156
|
+
type: import("zod").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"]>;
|
110134
110157
|
readAt: import("zod").ZodDate;
|
110135
110158
|
metadata: import("zod").ZodAny;
|
110136
110159
|
platformId: import("zod").ZodString;
|
@@ -110788,7 +110811,7 @@ export declare const platformContract: {
|
|
110788
110811
|
};
|
110789
110812
|
}>;
|
110790
110813
|
}, "strip", import("zod").ZodTypeAny, {
|
110791
|
-
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";
|
110814
|
+
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";
|
110792
110815
|
message: string;
|
110793
110816
|
id: string;
|
110794
110817
|
url: string;
|
@@ -110950,7 +110973,7 @@ export declare const platformContract: {
|
|
110950
110973
|
metadata?: any;
|
110951
110974
|
template?: any;
|
110952
110975
|
}, {
|
110953
|
-
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";
|
110976
|
+
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";
|
110954
110977
|
message: string;
|
110955
110978
|
id: string;
|
110956
110979
|
url: string;
|
@@ -111750,8 +111773,9 @@ export declare const platformContract: {
|
|
111750
111773
|
isActive: boolean;
|
111751
111774
|
}>;
|
111752
111775
|
editedMessageid: import("zod").ZodString;
|
111776
|
+
label: import("zod").ZodOptional<import("zod").ZodString>;
|
111753
111777
|
}, "strip", import("zod").ZodTypeAny, {
|
111754
|
-
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";
|
111778
|
+
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";
|
111755
111779
|
message: string;
|
111756
111780
|
id: string;
|
111757
111781
|
url: string;
|
@@ -112265,7 +112289,7 @@ export declare const platformContract: {
|
|
112265
112289
|
previewUrl: string;
|
112266
112290
|
imageSetId: string;
|
112267
112291
|
repliedMessage: {
|
112268
|
-
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";
|
112292
|
+
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";
|
112269
112293
|
message: string;
|
112270
112294
|
id: string;
|
112271
112295
|
url: string;
|
@@ -112474,8 +112498,9 @@ export declare const platformContract: {
|
|
112474
112498
|
editedMessageid: string;
|
112475
112499
|
metadata?: any;
|
112476
112500
|
template?: any;
|
112501
|
+
label?: string | undefined;
|
112477
112502
|
}, {
|
112478
|
-
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";
|
112503
|
+
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";
|
112479
112504
|
message: string;
|
112480
112505
|
id: string;
|
112481
112506
|
url: string;
|
@@ -112989,7 +113014,7 @@ export declare const platformContract: {
|
|
112989
113014
|
previewUrl: string;
|
112990
113015
|
imageSetId: string;
|
112991
113016
|
repliedMessage: {
|
112992
|
-
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";
|
113017
|
+
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";
|
112993
113018
|
message: string;
|
112994
113019
|
id: string;
|
112995
113020
|
url: string;
|
@@ -113198,9 +113223,10 @@ export declare const platformContract: {
|
|
113198
113223
|
editedMessageid: string;
|
113199
113224
|
metadata?: any;
|
113200
113225
|
template?: any;
|
113226
|
+
label?: string | undefined;
|
113201
113227
|
}>>>;
|
113202
113228
|
}, "strip", import("zod").ZodTypeAny, {
|
113203
|
-
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";
|
113229
|
+
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";
|
113204
113230
|
message: string;
|
113205
113231
|
id: string;
|
113206
113232
|
url: string;
|
@@ -113714,7 +113740,7 @@ export declare const platformContract: {
|
|
113714
113740
|
previewUrl: string;
|
113715
113741
|
imageSetId: string;
|
113716
113742
|
repliedMessage: {
|
113717
|
-
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";
|
113743
|
+
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";
|
113718
113744
|
message: string;
|
113719
113745
|
id: string;
|
113720
113746
|
url: string;
|
@@ -113921,10 +113947,11 @@ export declare const platformContract: {
|
|
113921
113947
|
};
|
113922
113948
|
};
|
113923
113949
|
editedMessageid: string;
|
113950
|
+
label?: string | undefined;
|
113924
113951
|
template?: any;
|
113925
113952
|
metadata?: any;
|
113926
113953
|
fromMessage?: {
|
113927
|
-
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";
|
113954
|
+
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";
|
113928
113955
|
message: string;
|
113929
113956
|
id: string;
|
113930
113957
|
url: string;
|
@@ -114438,7 +114465,7 @@ export declare const platformContract: {
|
|
114438
114465
|
previewUrl: string;
|
114439
114466
|
imageSetId: string;
|
114440
114467
|
repliedMessage: {
|
114441
|
-
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";
|
114468
|
+
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";
|
114442
114469
|
message: string;
|
114443
114470
|
id: string;
|
114444
114471
|
url: string;
|
@@ -114647,9 +114674,10 @@ export declare const platformContract: {
|
|
114647
114674
|
editedMessageid: string;
|
114648
114675
|
metadata?: any;
|
114649
114676
|
template?: any;
|
114677
|
+
label?: string | undefined;
|
114650
114678
|
} | null | undefined;
|
114651
114679
|
}, {
|
114652
|
-
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";
|
114680
|
+
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";
|
114653
114681
|
message: string;
|
114654
114682
|
id: string;
|
114655
114683
|
url: string;
|
@@ -115163,7 +115191,7 @@ export declare const platformContract: {
|
|
115163
115191
|
previewUrl: string;
|
115164
115192
|
imageSetId: string;
|
115165
115193
|
repliedMessage: {
|
115166
|
-
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";
|
115194
|
+
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";
|
115167
115195
|
message: string;
|
115168
115196
|
id: string;
|
115169
115197
|
url: string;
|
@@ -115370,10 +115398,11 @@ export declare const platformContract: {
|
|
115370
115398
|
};
|
115371
115399
|
};
|
115372
115400
|
editedMessageid: string;
|
115401
|
+
label?: string | undefined;
|
115373
115402
|
template?: any;
|
115374
115403
|
metadata?: any;
|
115375
115404
|
fromMessage?: {
|
115376
|
-
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";
|
115405
|
+
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";
|
115377
115406
|
message: string;
|
115378
115407
|
id: string;
|
115379
115408
|
url: string;
|
@@ -115887,7 +115916,7 @@ export declare const platformContract: {
|
|
115887
115916
|
previewUrl: string;
|
115888
115917
|
imageSetId: string;
|
115889
115918
|
repliedMessage: {
|
115890
|
-
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";
|
115919
|
+
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";
|
115891
115920
|
message: string;
|
115892
115921
|
id: string;
|
115893
115922
|
url: string;
|
@@ -116096,11 +116125,12 @@ export declare const platformContract: {
|
|
116096
116125
|
editedMessageid: string;
|
116097
116126
|
metadata?: any;
|
116098
116127
|
template?: any;
|
116128
|
+
label?: string | undefined;
|
116099
116129
|
} | null | undefined;
|
116100
116130
|
}>;
|
116101
116131
|
}, "strip", import("zod").ZodTypeAny, {
|
116102
116132
|
data: {
|
116103
|
-
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";
|
116133
|
+
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";
|
116104
116134
|
message: string;
|
116105
116135
|
id: string;
|
116106
116136
|
url: string;
|
@@ -116614,7 +116644,7 @@ export declare const platformContract: {
|
|
116614
116644
|
previewUrl: string;
|
116615
116645
|
imageSetId: string;
|
116616
116646
|
repliedMessage: {
|
116617
|
-
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";
|
116647
|
+
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";
|
116618
116648
|
message: string;
|
116619
116649
|
id: string;
|
116620
116650
|
url: string;
|
@@ -116821,10 +116851,11 @@ export declare const platformContract: {
|
|
116821
116851
|
};
|
116822
116852
|
};
|
116823
116853
|
editedMessageid: string;
|
116854
|
+
label?: string | undefined;
|
116824
116855
|
template?: any;
|
116825
116856
|
metadata?: any;
|
116826
116857
|
fromMessage?: {
|
116827
|
-
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";
|
116858
|
+
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";
|
116828
116859
|
message: string;
|
116829
116860
|
id: string;
|
116830
116861
|
url: string;
|
@@ -117338,7 +117369,7 @@ export declare const platformContract: {
|
|
117338
117369
|
previewUrl: string;
|
117339
117370
|
imageSetId: string;
|
117340
117371
|
repliedMessage: {
|
117341
|
-
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";
|
117372
|
+
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";
|
117342
117373
|
message: string;
|
117343
117374
|
id: string;
|
117344
117375
|
url: string;
|
@@ -117547,12 +117578,13 @@ export declare const platformContract: {
|
|
117547
117578
|
editedMessageid: string;
|
117548
117579
|
metadata?: any;
|
117549
117580
|
template?: any;
|
117581
|
+
label?: string | undefined;
|
117550
117582
|
} | null | undefined;
|
117551
117583
|
};
|
117552
117584
|
requestId: string;
|
117553
117585
|
}, {
|
117554
117586
|
data: {
|
117555
|
-
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";
|
117587
|
+
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";
|
117556
117588
|
message: string;
|
117557
117589
|
id: string;
|
117558
117590
|
url: string;
|
@@ -118066,7 +118098,7 @@ export declare const platformContract: {
|
|
118066
118098
|
previewUrl: string;
|
118067
118099
|
imageSetId: string;
|
118068
118100
|
repliedMessage: {
|
118069
|
-
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";
|
118101
|
+
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";
|
118070
118102
|
message: string;
|
118071
118103
|
id: string;
|
118072
118104
|
url: string;
|
@@ -118273,10 +118305,11 @@ export declare const platformContract: {
|
|
118273
118305
|
};
|
118274
118306
|
};
|
118275
118307
|
editedMessageid: string;
|
118308
|
+
label?: string | undefined;
|
118276
118309
|
template?: any;
|
118277
118310
|
metadata?: any;
|
118278
118311
|
fromMessage?: {
|
118279
|
-
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";
|
118312
|
+
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";
|
118280
118313
|
message: string;
|
118281
118314
|
id: string;
|
118282
118315
|
url: string;
|
@@ -118790,7 +118823,7 @@ export declare const platformContract: {
|
|
118790
118823
|
previewUrl: string;
|
118791
118824
|
imageSetId: string;
|
118792
118825
|
repliedMessage: {
|
118793
|
-
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";
|
118826
|
+
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";
|
118794
118827
|
message: string;
|
118795
118828
|
id: string;
|
118796
118829
|
url: string;
|
@@ -118999,6 +119032,7 @@ export declare const platformContract: {
|
|
118999
119032
|
editedMessageid: string;
|
119000
119033
|
metadata?: any;
|
119001
119034
|
template?: any;
|
119035
|
+
label?: string | undefined;
|
119002
119036
|
} | null | undefined;
|
119003
119037
|
};
|
119004
119038
|
requestId: string;
|
@@ -120305,7 +120339,7 @@ export declare const platformMessengerContract: {
|
|
120305
120339
|
id: import("zod").ZodOptional<import("zod").ZodString>;
|
120306
120340
|
message: import("zod").ZodOptional<import("zod").ZodString>;
|
120307
120341
|
direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
|
120308
|
-
type: import("zod").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"]>;
|
120342
|
+
type: import("zod").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"]>;
|
120309
120343
|
readAt: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodUnion<[import("zod").ZodDate, import("zod").ZodString]>>>;
|
120310
120344
|
metadata: import("zod").ZodOptional<import("zod").ZodAny>;
|
120311
120345
|
platformId: import("zod").ZodOptional<import("zod").ZodString>;
|
@@ -120359,8 +120393,9 @@ export declare const platformMessengerContract: {
|
|
120359
120393
|
editedMessageId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
120360
120394
|
isEdited: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodBoolean>>;
|
120361
120395
|
editedAt: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodUnion<[import("zod").ZodDate, import("zod").ZodString]>>>;
|
120396
|
+
label: import("zod").ZodOptional<import("zod").ZodString>;
|
120362
120397
|
}, "strip", import("zod").ZodTypeAny, {
|
120363
|
-
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";
|
120398
|
+
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";
|
120364
120399
|
direction: "incoming" | "outgoing" | "system";
|
120365
120400
|
id?: string | undefined;
|
120366
120401
|
message?: string | undefined;
|
@@ -120393,8 +120428,9 @@ export declare const platformMessengerContract: {
|
|
120393
120428
|
editedMessageId?: string | null | undefined;
|
120394
120429
|
isEdited?: boolean | null | undefined;
|
120395
120430
|
editedAt?: string | Date | null | undefined;
|
120431
|
+
label?: string | undefined;
|
120396
120432
|
}, {
|
120397
|
-
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";
|
120433
|
+
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";
|
120398
120434
|
direction: "incoming" | "outgoing" | "system";
|
120399
120435
|
id?: string | undefined;
|
120400
120436
|
message?: string | undefined;
|
@@ -120427,10 +120463,11 @@ export declare const platformMessengerContract: {
|
|
120427
120463
|
editedMessageId?: string | null | undefined;
|
120428
120464
|
isEdited?: boolean | null | undefined;
|
120429
120465
|
editedAt?: string | Date | null | undefined;
|
120466
|
+
label?: string | undefined;
|
120430
120467
|
}>;
|
120431
120468
|
}, "strip", import("zod").ZodTypeAny, {
|
120432
120469
|
message: {
|
120433
|
-
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";
|
120470
|
+
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";
|
120434
120471
|
direction: "incoming" | "outgoing" | "system";
|
120435
120472
|
id?: string | undefined;
|
120436
120473
|
message?: string | undefined;
|
@@ -120463,6 +120500,7 @@ export declare const platformMessengerContract: {
|
|
120463
120500
|
editedMessageId?: string | null | undefined;
|
120464
120501
|
isEdited?: boolean | null | undefined;
|
120465
120502
|
editedAt?: string | Date | null | undefined;
|
120503
|
+
label?: string | undefined;
|
120466
120504
|
};
|
120467
120505
|
room: {
|
120468
120506
|
id: string;
|
@@ -120541,7 +120579,7 @@ export declare const platformMessengerContract: {
|
|
120541
120579
|
isBot: boolean | null;
|
120542
120580
|
}, {
|
120543
120581
|
message: {
|
120544
|
-
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";
|
120582
|
+
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";
|
120545
120583
|
direction: "incoming" | "outgoing" | "system";
|
120546
120584
|
id?: string | undefined;
|
120547
120585
|
message?: string | undefined;
|
@@ -120574,6 +120612,7 @@ export declare const platformMessengerContract: {
|
|
120574
120612
|
editedMessageId?: string | null | undefined;
|
120575
120613
|
isEdited?: boolean | null | undefined;
|
120576
120614
|
editedAt?: string | Date | null | undefined;
|
120615
|
+
label?: string | undefined;
|
120577
120616
|
};
|
120578
120617
|
room: {
|
120579
120618
|
id: string;
|
@@ -120656,11 +120695,12 @@ export declare const platformMessengerContract: {
|
|
120656
120695
|
200: import("zod").ZodObject<{
|
120657
120696
|
requestId: import("zod").ZodString;
|
120658
120697
|
data: import("zod").ZodObject<{
|
120659
|
-
type: import("zod").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"]>;
|
120698
|
+
type: import("zod").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"]>;
|
120660
120699
|
message: import("zod").ZodString;
|
120661
120700
|
id: import("zod").ZodString;
|
120662
120701
|
url: import("zod").ZodString;
|
120663
120702
|
direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
|
120703
|
+
label: import("zod").ZodOptional<import("zod").ZodString>;
|
120664
120704
|
template: import("zod").ZodAny;
|
120665
120705
|
metadata: import("zod").ZodAny;
|
120666
120706
|
createdAt: import("zod").ZodDate;
|
@@ -124276,7 +124316,7 @@ export declare const platformMessengerContract: {
|
|
124276
124316
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
124277
124317
|
message: import("zod").ZodString;
|
124278
124318
|
direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
|
124279
|
-
type: import("zod").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"]>;
|
124319
|
+
type: import("zod").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"]>;
|
124280
124320
|
readAt: import("zod").ZodDate;
|
124281
124321
|
metadata: import("zod").ZodAny;
|
124282
124322
|
platformId: import("zod").ZodString;
|
@@ -124934,7 +124974,7 @@ export declare const platformMessengerContract: {
|
|
124934
124974
|
};
|
124935
124975
|
}>;
|
124936
124976
|
}, "strip", import("zod").ZodTypeAny, {
|
124937
|
-
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";
|
124977
|
+
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";
|
124938
124978
|
message: string;
|
124939
124979
|
id: string;
|
124940
124980
|
url: string;
|
@@ -125096,7 +125136,7 @@ export declare const platformMessengerContract: {
|
|
125096
125136
|
metadata?: any;
|
125097
125137
|
template?: any;
|
125098
125138
|
}, {
|
125099
|
-
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";
|
125139
|
+
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";
|
125100
125140
|
message: string;
|
125101
125141
|
id: string;
|
125102
125142
|
url: string;
|
@@ -125470,7 +125510,7 @@ export declare const platformMessengerContract: {
|
|
125470
125510
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
125471
125511
|
message: import("zod").ZodString;
|
125472
125512
|
direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
|
125473
|
-
type: import("zod").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"]>;
|
125513
|
+
type: import("zod").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"]>;
|
125474
125514
|
readAt: import("zod").ZodDate;
|
125475
125515
|
metadata: import("zod").ZodAny;
|
125476
125516
|
platformId: import("zod").ZodString;
|
@@ -128651,7 +128691,7 @@ export declare const platformMessengerContract: {
|
|
128651
128691
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
128652
128692
|
message: import("zod").ZodString;
|
128653
128693
|
direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
|
128654
|
-
type: import("zod").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"]>;
|
128694
|
+
type: import("zod").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"]>;
|
128655
128695
|
readAt: import("zod").ZodDate;
|
128656
128696
|
metadata: import("zod").ZodAny;
|
128657
128697
|
platformId: import("zod").ZodString;
|
@@ -129309,7 +129349,7 @@ export declare const platformMessengerContract: {
|
|
129309
129349
|
};
|
129310
129350
|
}>;
|
129311
129351
|
}, "strip", import("zod").ZodTypeAny, {
|
129312
|
-
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";
|
129352
|
+
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";
|
129313
129353
|
message: string;
|
129314
129354
|
id: string;
|
129315
129355
|
url: string;
|
@@ -129471,7 +129511,7 @@ export declare const platformMessengerContract: {
|
|
129471
129511
|
metadata?: any;
|
129472
129512
|
template?: any;
|
129473
129513
|
}, {
|
129474
|
-
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";
|
129514
|
+
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";
|
129475
129515
|
message: string;
|
129476
129516
|
id: string;
|
129477
129517
|
url: string;
|
@@ -130271,8 +130311,9 @@ export declare const platformMessengerContract: {
|
|
130271
130311
|
isActive: boolean;
|
130272
130312
|
}>;
|
130273
130313
|
editedMessageid: import("zod").ZodString;
|
130314
|
+
label: import("zod").ZodOptional<import("zod").ZodString>;
|
130274
130315
|
}, "strip", import("zod").ZodTypeAny, {
|
130275
|
-
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";
|
130316
|
+
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";
|
130276
130317
|
message: string;
|
130277
130318
|
id: string;
|
130278
130319
|
url: string;
|
@@ -130786,7 +130827,7 @@ export declare const platformMessengerContract: {
|
|
130786
130827
|
previewUrl: string;
|
130787
130828
|
imageSetId: string;
|
130788
130829
|
repliedMessage: {
|
130789
|
-
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";
|
130830
|
+
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";
|
130790
130831
|
message: string;
|
130791
130832
|
id: string;
|
130792
130833
|
url: string;
|
@@ -130995,8 +131036,9 @@ export declare const platformMessengerContract: {
|
|
130995
131036
|
editedMessageid: string;
|
130996
131037
|
metadata?: any;
|
130997
131038
|
template?: any;
|
131039
|
+
label?: string | undefined;
|
130998
131040
|
}, {
|
130999
|
-
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";
|
131041
|
+
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";
|
131000
131042
|
message: string;
|
131001
131043
|
id: string;
|
131002
131044
|
url: string;
|
@@ -131510,7 +131552,7 @@ export declare const platformMessengerContract: {
|
|
131510
131552
|
previewUrl: string;
|
131511
131553
|
imageSetId: string;
|
131512
131554
|
repliedMessage: {
|
131513
|
-
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";
|
131555
|
+
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";
|
131514
131556
|
message: string;
|
131515
131557
|
id: string;
|
131516
131558
|
url: string;
|
@@ -131719,9 +131761,10 @@ export declare const platformMessengerContract: {
|
|
131719
131761
|
editedMessageid: string;
|
131720
131762
|
metadata?: any;
|
131721
131763
|
template?: any;
|
131764
|
+
label?: string | undefined;
|
131722
131765
|
}>>>;
|
131723
131766
|
}, "strip", import("zod").ZodTypeAny, {
|
131724
|
-
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";
|
131767
|
+
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";
|
131725
131768
|
message: string;
|
131726
131769
|
id: string;
|
131727
131770
|
url: string;
|
@@ -132235,7 +132278,7 @@ export declare const platformMessengerContract: {
|
|
132235
132278
|
previewUrl: string;
|
132236
132279
|
imageSetId: string;
|
132237
132280
|
repliedMessage: {
|
132238
|
-
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";
|
132281
|
+
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";
|
132239
132282
|
message: string;
|
132240
132283
|
id: string;
|
132241
132284
|
url: string;
|
@@ -132442,10 +132485,11 @@ export declare const platformMessengerContract: {
|
|
132442
132485
|
};
|
132443
132486
|
};
|
132444
132487
|
editedMessageid: string;
|
132488
|
+
label?: string | undefined;
|
132445
132489
|
template?: any;
|
132446
132490
|
metadata?: any;
|
132447
132491
|
fromMessage?: {
|
132448
|
-
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";
|
132492
|
+
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";
|
132449
132493
|
message: string;
|
132450
132494
|
id: string;
|
132451
132495
|
url: string;
|
@@ -132959,7 +133003,7 @@ export declare const platformMessengerContract: {
|
|
132959
133003
|
previewUrl: string;
|
132960
133004
|
imageSetId: string;
|
132961
133005
|
repliedMessage: {
|
132962
|
-
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";
|
133006
|
+
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";
|
132963
133007
|
message: string;
|
132964
133008
|
id: string;
|
132965
133009
|
url: string;
|
@@ -133168,9 +133212,10 @@ export declare const platformMessengerContract: {
|
|
133168
133212
|
editedMessageid: string;
|
133169
133213
|
metadata?: any;
|
133170
133214
|
template?: any;
|
133215
|
+
label?: string | undefined;
|
133171
133216
|
} | null | undefined;
|
133172
133217
|
}, {
|
133173
|
-
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";
|
133218
|
+
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";
|
133174
133219
|
message: string;
|
133175
133220
|
id: string;
|
133176
133221
|
url: string;
|
@@ -133684,7 +133729,7 @@ export declare const platformMessengerContract: {
|
|
133684
133729
|
previewUrl: string;
|
133685
133730
|
imageSetId: string;
|
133686
133731
|
repliedMessage: {
|
133687
|
-
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";
|
133732
|
+
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";
|
133688
133733
|
message: string;
|
133689
133734
|
id: string;
|
133690
133735
|
url: string;
|
@@ -133891,10 +133936,11 @@ export declare const platformMessengerContract: {
|
|
133891
133936
|
};
|
133892
133937
|
};
|
133893
133938
|
editedMessageid: string;
|
133939
|
+
label?: string | undefined;
|
133894
133940
|
template?: any;
|
133895
133941
|
metadata?: any;
|
133896
133942
|
fromMessage?: {
|
133897
|
-
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";
|
133943
|
+
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";
|
133898
133944
|
message: string;
|
133899
133945
|
id: string;
|
133900
133946
|
url: string;
|
@@ -134408,7 +134454,7 @@ export declare const platformMessengerContract: {
|
|
134408
134454
|
previewUrl: string;
|
134409
134455
|
imageSetId: string;
|
134410
134456
|
repliedMessage: {
|
134411
|
-
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";
|
134457
|
+
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";
|
134412
134458
|
message: string;
|
134413
134459
|
id: string;
|
134414
134460
|
url: string;
|
@@ -134617,11 +134663,12 @@ export declare const platformMessengerContract: {
|
|
134617
134663
|
editedMessageid: string;
|
134618
134664
|
metadata?: any;
|
134619
134665
|
template?: any;
|
134666
|
+
label?: string | undefined;
|
134620
134667
|
} | null | undefined;
|
134621
134668
|
}>;
|
134622
134669
|
}, "strip", import("zod").ZodTypeAny, {
|
134623
134670
|
data: {
|
134624
|
-
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";
|
134671
|
+
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";
|
134625
134672
|
message: string;
|
134626
134673
|
id: string;
|
134627
134674
|
url: string;
|
@@ -135135,7 +135182,7 @@ export declare const platformMessengerContract: {
|
|
135135
135182
|
previewUrl: string;
|
135136
135183
|
imageSetId: string;
|
135137
135184
|
repliedMessage: {
|
135138
|
-
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";
|
135185
|
+
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";
|
135139
135186
|
message: string;
|
135140
135187
|
id: string;
|
135141
135188
|
url: string;
|
@@ -135342,10 +135389,11 @@ export declare const platformMessengerContract: {
|
|
135342
135389
|
};
|
135343
135390
|
};
|
135344
135391
|
editedMessageid: string;
|
135392
|
+
label?: string | undefined;
|
135345
135393
|
template?: any;
|
135346
135394
|
metadata?: any;
|
135347
135395
|
fromMessage?: {
|
135348
|
-
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";
|
135396
|
+
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";
|
135349
135397
|
message: string;
|
135350
135398
|
id: string;
|
135351
135399
|
url: string;
|
@@ -135859,7 +135907,7 @@ export declare const platformMessengerContract: {
|
|
135859
135907
|
previewUrl: string;
|
135860
135908
|
imageSetId: string;
|
135861
135909
|
repliedMessage: {
|
135862
|
-
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";
|
135910
|
+
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";
|
135863
135911
|
message: string;
|
135864
135912
|
id: string;
|
135865
135913
|
url: string;
|
@@ -136068,12 +136116,13 @@ export declare const platformMessengerContract: {
|
|
136068
136116
|
editedMessageid: string;
|
136069
136117
|
metadata?: any;
|
136070
136118
|
template?: any;
|
136119
|
+
label?: string | undefined;
|
136071
136120
|
} | null | undefined;
|
136072
136121
|
};
|
136073
136122
|
requestId: string;
|
136074
136123
|
}, {
|
136075
136124
|
data: {
|
136076
|
-
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";
|
136125
|
+
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";
|
136077
136126
|
message: string;
|
136078
136127
|
id: string;
|
136079
136128
|
url: string;
|
@@ -136587,7 +136636,7 @@ export declare const platformMessengerContract: {
|
|
136587
136636
|
previewUrl: string;
|
136588
136637
|
imageSetId: string;
|
136589
136638
|
repliedMessage: {
|
136590
|
-
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";
|
136639
|
+
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";
|
136591
136640
|
message: string;
|
136592
136641
|
id: string;
|
136593
136642
|
url: string;
|
@@ -136794,10 +136843,11 @@ export declare const platformMessengerContract: {
|
|
136794
136843
|
};
|
136795
136844
|
};
|
136796
136845
|
editedMessageid: string;
|
136846
|
+
label?: string | undefined;
|
136797
136847
|
template?: any;
|
136798
136848
|
metadata?: any;
|
136799
136849
|
fromMessage?: {
|
136800
|
-
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";
|
136850
|
+
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";
|
136801
136851
|
message: string;
|
136802
136852
|
id: string;
|
136803
136853
|
url: string;
|
@@ -137311,7 +137361,7 @@ export declare const platformMessengerContract: {
|
|
137311
137361
|
previewUrl: string;
|
137312
137362
|
imageSetId: string;
|
137313
137363
|
repliedMessage: {
|
137314
|
-
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";
|
137364
|
+
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";
|
137315
137365
|
message: string;
|
137316
137366
|
id: string;
|
137317
137367
|
url: string;
|
@@ -137520,6 +137570,7 @@ export declare const platformMessengerContract: {
|
|
137520
137570
|
editedMessageid: string;
|
137521
137571
|
metadata?: any;
|
137522
137572
|
template?: any;
|
137573
|
+
label?: string | undefined;
|
137523
137574
|
} | null | undefined;
|
137524
137575
|
};
|
137525
137576
|
requestId: string;
|
@@ -139703,7 +139754,7 @@ export declare const platformInstagramContract: {
|
|
139703
139754
|
id: import("zod").ZodOptional<import("zod").ZodString>;
|
139704
139755
|
message: import("zod").ZodOptional<import("zod").ZodString>;
|
139705
139756
|
direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
|
139706
|
-
type: import("zod").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"]>;
|
139757
|
+
type: import("zod").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"]>;
|
139707
139758
|
readAt: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodUnion<[import("zod").ZodDate, import("zod").ZodString]>>>;
|
139708
139759
|
metadata: import("zod").ZodOptional<import("zod").ZodAny>;
|
139709
139760
|
platformId: import("zod").ZodOptional<import("zod").ZodString>;
|
@@ -139757,8 +139808,9 @@ export declare const platformInstagramContract: {
|
|
139757
139808
|
editedMessageId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
139758
139809
|
isEdited: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodBoolean>>;
|
139759
139810
|
editedAt: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodUnion<[import("zod").ZodDate, import("zod").ZodString]>>>;
|
139811
|
+
label: import("zod").ZodOptional<import("zod").ZodString>;
|
139760
139812
|
}, "strip", import("zod").ZodTypeAny, {
|
139761
|
-
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";
|
139813
|
+
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";
|
139762
139814
|
direction: "incoming" | "outgoing" | "system";
|
139763
139815
|
id?: string | undefined;
|
139764
139816
|
message?: string | undefined;
|
@@ -139791,8 +139843,9 @@ export declare const platformInstagramContract: {
|
|
139791
139843
|
editedMessageId?: string | null | undefined;
|
139792
139844
|
isEdited?: boolean | null | undefined;
|
139793
139845
|
editedAt?: string | Date | null | undefined;
|
139846
|
+
label?: string | undefined;
|
139794
139847
|
}, {
|
139795
|
-
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";
|
139848
|
+
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";
|
139796
139849
|
direction: "incoming" | "outgoing" | "system";
|
139797
139850
|
id?: string | undefined;
|
139798
139851
|
message?: string | undefined;
|
@@ -139825,10 +139878,11 @@ export declare const platformInstagramContract: {
|
|
139825
139878
|
editedMessageId?: string | null | undefined;
|
139826
139879
|
isEdited?: boolean | null | undefined;
|
139827
139880
|
editedAt?: string | Date | null | undefined;
|
139881
|
+
label?: string | undefined;
|
139828
139882
|
}>;
|
139829
139883
|
}, "strip", import("zod").ZodTypeAny, {
|
139830
139884
|
message: {
|
139831
|
-
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";
|
139885
|
+
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";
|
139832
139886
|
direction: "incoming" | "outgoing" | "system";
|
139833
139887
|
id?: string | undefined;
|
139834
139888
|
message?: string | undefined;
|
@@ -139861,6 +139915,7 @@ export declare const platformInstagramContract: {
|
|
139861
139915
|
editedMessageId?: string | null | undefined;
|
139862
139916
|
isEdited?: boolean | null | undefined;
|
139863
139917
|
editedAt?: string | Date | null | undefined;
|
139918
|
+
label?: string | undefined;
|
139864
139919
|
};
|
139865
139920
|
room: {
|
139866
139921
|
id: string;
|
@@ -139939,7 +139994,7 @@ export declare const platformInstagramContract: {
|
|
139939
139994
|
isBot: boolean | null;
|
139940
139995
|
}, {
|
139941
139996
|
message: {
|
139942
|
-
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";
|
139997
|
+
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";
|
139943
139998
|
direction: "incoming" | "outgoing" | "system";
|
139944
139999
|
id?: string | undefined;
|
139945
140000
|
message?: string | undefined;
|
@@ -139972,6 +140027,7 @@ export declare const platformInstagramContract: {
|
|
139972
140027
|
editedMessageId?: string | null | undefined;
|
139973
140028
|
isEdited?: boolean | null | undefined;
|
139974
140029
|
editedAt?: string | Date | null | undefined;
|
140030
|
+
label?: string | undefined;
|
139975
140031
|
};
|
139976
140032
|
room: {
|
139977
140033
|
id: string;
|
@@ -140054,11 +140110,12 @@ export declare const platformInstagramContract: {
|
|
140054
140110
|
200: import("zod").ZodObject<{
|
140055
140111
|
requestId: import("zod").ZodString;
|
140056
140112
|
data: import("zod").ZodObject<{
|
140057
|
-
type: import("zod").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"]>;
|
140113
|
+
type: import("zod").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"]>;
|
140058
140114
|
message: import("zod").ZodString;
|
140059
140115
|
id: import("zod").ZodString;
|
140060
140116
|
url: import("zod").ZodString;
|
140061
140117
|
direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
|
140118
|
+
label: import("zod").ZodOptional<import("zod").ZodString>;
|
140062
140119
|
template: import("zod").ZodAny;
|
140063
140120
|
metadata: import("zod").ZodAny;
|
140064
140121
|
createdAt: import("zod").ZodDate;
|
@@ -143674,7 +143731,7 @@ export declare const platformInstagramContract: {
|
|
143674
143731
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
143675
143732
|
message: import("zod").ZodString;
|
143676
143733
|
direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
|
143677
|
-
type: import("zod").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"]>;
|
143734
|
+
type: import("zod").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"]>;
|
143678
143735
|
readAt: import("zod").ZodDate;
|
143679
143736
|
metadata: import("zod").ZodAny;
|
143680
143737
|
platformId: import("zod").ZodString;
|
@@ -144332,7 +144389,7 @@ export declare const platformInstagramContract: {
|
|
144332
144389
|
};
|
144333
144390
|
}>;
|
144334
144391
|
}, "strip", import("zod").ZodTypeAny, {
|
144335
|
-
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";
|
144392
|
+
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";
|
144336
144393
|
message: string;
|
144337
144394
|
id: string;
|
144338
144395
|
url: string;
|
@@ -144494,7 +144551,7 @@ export declare const platformInstagramContract: {
|
|
144494
144551
|
metadata?: any;
|
144495
144552
|
template?: any;
|
144496
144553
|
}, {
|
144497
|
-
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";
|
144554
|
+
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";
|
144498
144555
|
message: string;
|
144499
144556
|
id: string;
|
144500
144557
|
url: string;
|
@@ -144868,7 +144925,7 @@ export declare const platformInstagramContract: {
|
|
144868
144925
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
144869
144926
|
message: import("zod").ZodString;
|
144870
144927
|
direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
|
144871
|
-
type: import("zod").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"]>;
|
144928
|
+
type: import("zod").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"]>;
|
144872
144929
|
readAt: import("zod").ZodDate;
|
144873
144930
|
metadata: import("zod").ZodAny;
|
144874
144931
|
platformId: import("zod").ZodString;
|
@@ -148049,7 +148106,7 @@ export declare const platformInstagramContract: {
|
|
148049
148106
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
148050
148107
|
message: import("zod").ZodString;
|
148051
148108
|
direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
|
148052
|
-
type: import("zod").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"]>;
|
148109
|
+
type: import("zod").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"]>;
|
148053
148110
|
readAt: import("zod").ZodDate;
|
148054
148111
|
metadata: import("zod").ZodAny;
|
148055
148112
|
platformId: import("zod").ZodString;
|
@@ -148707,7 +148764,7 @@ export declare const platformInstagramContract: {
|
|
148707
148764
|
};
|
148708
148765
|
}>;
|
148709
148766
|
}, "strip", import("zod").ZodTypeAny, {
|
148710
|
-
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";
|
148767
|
+
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";
|
148711
148768
|
message: string;
|
148712
148769
|
id: string;
|
148713
148770
|
url: string;
|
@@ -148869,7 +148926,7 @@ export declare const platformInstagramContract: {
|
|
148869
148926
|
metadata?: any;
|
148870
148927
|
template?: any;
|
148871
148928
|
}, {
|
148872
|
-
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";
|
148929
|
+
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";
|
148873
148930
|
message: string;
|
148874
148931
|
id: string;
|
148875
148932
|
url: string;
|
@@ -149669,8 +149726,9 @@ export declare const platformInstagramContract: {
|
|
149669
149726
|
isActive: boolean;
|
149670
149727
|
}>;
|
149671
149728
|
editedMessageid: import("zod").ZodString;
|
149729
|
+
label: import("zod").ZodOptional<import("zod").ZodString>;
|
149672
149730
|
}, "strip", import("zod").ZodTypeAny, {
|
149673
|
-
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";
|
149731
|
+
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";
|
149674
149732
|
message: string;
|
149675
149733
|
id: string;
|
149676
149734
|
url: string;
|
@@ -150184,7 +150242,7 @@ export declare const platformInstagramContract: {
|
|
150184
150242
|
previewUrl: string;
|
150185
150243
|
imageSetId: string;
|
150186
150244
|
repliedMessage: {
|
150187
|
-
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";
|
150245
|
+
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";
|
150188
150246
|
message: string;
|
150189
150247
|
id: string;
|
150190
150248
|
url: string;
|
@@ -150393,8 +150451,9 @@ export declare const platformInstagramContract: {
|
|
150393
150451
|
editedMessageid: string;
|
150394
150452
|
metadata?: any;
|
150395
150453
|
template?: any;
|
150454
|
+
label?: string | undefined;
|
150396
150455
|
}, {
|
150397
|
-
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";
|
150456
|
+
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";
|
150398
150457
|
message: string;
|
150399
150458
|
id: string;
|
150400
150459
|
url: string;
|
@@ -150908,7 +150967,7 @@ export declare const platformInstagramContract: {
|
|
150908
150967
|
previewUrl: string;
|
150909
150968
|
imageSetId: string;
|
150910
150969
|
repliedMessage: {
|
150911
|
-
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";
|
150970
|
+
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";
|
150912
150971
|
message: string;
|
150913
150972
|
id: string;
|
150914
150973
|
url: string;
|
@@ -151117,9 +151176,10 @@ export declare const platformInstagramContract: {
|
|
151117
151176
|
editedMessageid: string;
|
151118
151177
|
metadata?: any;
|
151119
151178
|
template?: any;
|
151179
|
+
label?: string | undefined;
|
151120
151180
|
}>>>;
|
151121
151181
|
}, "strip", import("zod").ZodTypeAny, {
|
151122
|
-
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";
|
151182
|
+
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";
|
151123
151183
|
message: string;
|
151124
151184
|
id: string;
|
151125
151185
|
url: string;
|
@@ -151633,7 +151693,7 @@ export declare const platformInstagramContract: {
|
|
151633
151693
|
previewUrl: string;
|
151634
151694
|
imageSetId: string;
|
151635
151695
|
repliedMessage: {
|
151636
|
-
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";
|
151696
|
+
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";
|
151637
151697
|
message: string;
|
151638
151698
|
id: string;
|
151639
151699
|
url: string;
|
@@ -151840,10 +151900,11 @@ export declare const platformInstagramContract: {
|
|
151840
151900
|
};
|
151841
151901
|
};
|
151842
151902
|
editedMessageid: string;
|
151903
|
+
label?: string | undefined;
|
151843
151904
|
template?: any;
|
151844
151905
|
metadata?: any;
|
151845
151906
|
fromMessage?: {
|
151846
|
-
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";
|
151907
|
+
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";
|
151847
151908
|
message: string;
|
151848
151909
|
id: string;
|
151849
151910
|
url: string;
|
@@ -152357,7 +152418,7 @@ export declare const platformInstagramContract: {
|
|
152357
152418
|
previewUrl: string;
|
152358
152419
|
imageSetId: string;
|
152359
152420
|
repliedMessage: {
|
152360
|
-
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";
|
152421
|
+
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";
|
152361
152422
|
message: string;
|
152362
152423
|
id: string;
|
152363
152424
|
url: string;
|
@@ -152566,9 +152627,10 @@ export declare const platformInstagramContract: {
|
|
152566
152627
|
editedMessageid: string;
|
152567
152628
|
metadata?: any;
|
152568
152629
|
template?: any;
|
152630
|
+
label?: string | undefined;
|
152569
152631
|
} | null | undefined;
|
152570
152632
|
}, {
|
152571
|
-
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";
|
152633
|
+
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";
|
152572
152634
|
message: string;
|
152573
152635
|
id: string;
|
152574
152636
|
url: string;
|
@@ -153082,7 +153144,7 @@ export declare const platformInstagramContract: {
|
|
153082
153144
|
previewUrl: string;
|
153083
153145
|
imageSetId: string;
|
153084
153146
|
repliedMessage: {
|
153085
|
-
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";
|
153147
|
+
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";
|
153086
153148
|
message: string;
|
153087
153149
|
id: string;
|
153088
153150
|
url: string;
|
@@ -153289,10 +153351,11 @@ export declare const platformInstagramContract: {
|
|
153289
153351
|
};
|
153290
153352
|
};
|
153291
153353
|
editedMessageid: string;
|
153354
|
+
label?: string | undefined;
|
153292
153355
|
template?: any;
|
153293
153356
|
metadata?: any;
|
153294
153357
|
fromMessage?: {
|
153295
|
-
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";
|
153358
|
+
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";
|
153296
153359
|
message: string;
|
153297
153360
|
id: string;
|
153298
153361
|
url: string;
|
@@ -153806,7 +153869,7 @@ export declare const platformInstagramContract: {
|
|
153806
153869
|
previewUrl: string;
|
153807
153870
|
imageSetId: string;
|
153808
153871
|
repliedMessage: {
|
153809
|
-
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";
|
153872
|
+
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";
|
153810
153873
|
message: string;
|
153811
153874
|
id: string;
|
153812
153875
|
url: string;
|
@@ -154015,11 +154078,12 @@ export declare const platformInstagramContract: {
|
|
154015
154078
|
editedMessageid: string;
|
154016
154079
|
metadata?: any;
|
154017
154080
|
template?: any;
|
154081
|
+
label?: string | undefined;
|
154018
154082
|
} | null | undefined;
|
154019
154083
|
}>;
|
154020
154084
|
}, "strip", import("zod").ZodTypeAny, {
|
154021
154085
|
data: {
|
154022
|
-
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";
|
154086
|
+
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";
|
154023
154087
|
message: string;
|
154024
154088
|
id: string;
|
154025
154089
|
url: string;
|
@@ -154533,7 +154597,7 @@ export declare const platformInstagramContract: {
|
|
154533
154597
|
previewUrl: string;
|
154534
154598
|
imageSetId: string;
|
154535
154599
|
repliedMessage: {
|
154536
|
-
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";
|
154600
|
+
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";
|
154537
154601
|
message: string;
|
154538
154602
|
id: string;
|
154539
154603
|
url: string;
|
@@ -154740,10 +154804,11 @@ export declare const platformInstagramContract: {
|
|
154740
154804
|
};
|
154741
154805
|
};
|
154742
154806
|
editedMessageid: string;
|
154807
|
+
label?: string | undefined;
|
154743
154808
|
template?: any;
|
154744
154809
|
metadata?: any;
|
154745
154810
|
fromMessage?: {
|
154746
|
-
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";
|
154811
|
+
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";
|
154747
154812
|
message: string;
|
154748
154813
|
id: string;
|
154749
154814
|
url: string;
|
@@ -155257,7 +155322,7 @@ export declare const platformInstagramContract: {
|
|
155257
155322
|
previewUrl: string;
|
155258
155323
|
imageSetId: string;
|
155259
155324
|
repliedMessage: {
|
155260
|
-
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";
|
155325
|
+
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";
|
155261
155326
|
message: string;
|
155262
155327
|
id: string;
|
155263
155328
|
url: string;
|
@@ -155466,12 +155531,13 @@ export declare const platformInstagramContract: {
|
|
155466
155531
|
editedMessageid: string;
|
155467
155532
|
metadata?: any;
|
155468
155533
|
template?: any;
|
155534
|
+
label?: string | undefined;
|
155469
155535
|
} | null | undefined;
|
155470
155536
|
};
|
155471
155537
|
requestId: string;
|
155472
155538
|
}, {
|
155473
155539
|
data: {
|
155474
|
-
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";
|
155540
|
+
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";
|
155475
155541
|
message: string;
|
155476
155542
|
id: string;
|
155477
155543
|
url: string;
|
@@ -155985,7 +156051,7 @@ export declare const platformInstagramContract: {
|
|
155985
156051
|
previewUrl: string;
|
155986
156052
|
imageSetId: string;
|
155987
156053
|
repliedMessage: {
|
155988
|
-
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";
|
156054
|
+
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";
|
155989
156055
|
message: string;
|
155990
156056
|
id: string;
|
155991
156057
|
url: string;
|
@@ -156192,10 +156258,11 @@ export declare const platformInstagramContract: {
|
|
156192
156258
|
};
|
156193
156259
|
};
|
156194
156260
|
editedMessageid: string;
|
156261
|
+
label?: string | undefined;
|
156195
156262
|
template?: any;
|
156196
156263
|
metadata?: any;
|
156197
156264
|
fromMessage?: {
|
156198
|
-
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";
|
156265
|
+
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";
|
156199
156266
|
message: string;
|
156200
156267
|
id: string;
|
156201
156268
|
url: string;
|
@@ -156709,7 +156776,7 @@ export declare const platformInstagramContract: {
|
|
156709
156776
|
previewUrl: string;
|
156710
156777
|
imageSetId: string;
|
156711
156778
|
repliedMessage: {
|
156712
|
-
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";
|
156779
|
+
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";
|
156713
156780
|
message: string;
|
156714
156781
|
id: string;
|
156715
156782
|
url: string;
|
@@ -156918,6 +156985,7 @@ export declare const platformInstagramContract: {
|
|
156918
156985
|
editedMessageid: string;
|
156919
156986
|
metadata?: any;
|
156920
156987
|
template?: any;
|
156988
|
+
label?: string | undefined;
|
156921
156989
|
} | null | undefined;
|
156922
156990
|
};
|
156923
156991
|
requestId: string;
|
@@ -160199,7 +160267,7 @@ export declare const platformSMSContract: {
|
|
160199
160267
|
id: import("zod").ZodOptional<import("zod").ZodString>;
|
160200
160268
|
message: import("zod").ZodOptional<import("zod").ZodString>;
|
160201
160269
|
direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
|
160202
|
-
type: import("zod").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"]>;
|
160270
|
+
type: import("zod").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"]>;
|
160203
160271
|
readAt: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodUnion<[import("zod").ZodDate, import("zod").ZodString]>>>;
|
160204
160272
|
metadata: import("zod").ZodOptional<import("zod").ZodAny>;
|
160205
160273
|
platformId: import("zod").ZodOptional<import("zod").ZodString>;
|
@@ -160253,8 +160321,9 @@ export declare const platformSMSContract: {
|
|
160253
160321
|
editedMessageId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
160254
160322
|
isEdited: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodBoolean>>;
|
160255
160323
|
editedAt: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodUnion<[import("zod").ZodDate, import("zod").ZodString]>>>;
|
160324
|
+
label: import("zod").ZodOptional<import("zod").ZodString>;
|
160256
160325
|
}, "strip", import("zod").ZodTypeAny, {
|
160257
|
-
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";
|
160326
|
+
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";
|
160258
160327
|
direction: "incoming" | "outgoing" | "system";
|
160259
160328
|
id?: string | undefined;
|
160260
160329
|
message?: string | undefined;
|
@@ -160287,8 +160356,9 @@ export declare const platformSMSContract: {
|
|
160287
160356
|
editedMessageId?: string | null | undefined;
|
160288
160357
|
isEdited?: boolean | null | undefined;
|
160289
160358
|
editedAt?: string | Date | null | undefined;
|
160359
|
+
label?: string | undefined;
|
160290
160360
|
}, {
|
160291
|
-
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";
|
160361
|
+
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";
|
160292
160362
|
direction: "incoming" | "outgoing" | "system";
|
160293
160363
|
id?: string | undefined;
|
160294
160364
|
message?: string | undefined;
|
@@ -160321,10 +160391,11 @@ export declare const platformSMSContract: {
|
|
160321
160391
|
editedMessageId?: string | null | undefined;
|
160322
160392
|
isEdited?: boolean | null | undefined;
|
160323
160393
|
editedAt?: string | Date | null | undefined;
|
160394
|
+
label?: string | undefined;
|
160324
160395
|
}>;
|
160325
160396
|
}, "strip", import("zod").ZodTypeAny, {
|
160326
160397
|
message: {
|
160327
|
-
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";
|
160398
|
+
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";
|
160328
160399
|
direction: "incoming" | "outgoing" | "system";
|
160329
160400
|
id?: string | undefined;
|
160330
160401
|
message?: string | undefined;
|
@@ -160357,6 +160428,7 @@ export declare const platformSMSContract: {
|
|
160357
160428
|
editedMessageId?: string | null | undefined;
|
160358
160429
|
isEdited?: boolean | null | undefined;
|
160359
160430
|
editedAt?: string | Date | null | undefined;
|
160431
|
+
label?: string | undefined;
|
160360
160432
|
};
|
160361
160433
|
room: {
|
160362
160434
|
id: string;
|
@@ -160435,7 +160507,7 @@ export declare const platformSMSContract: {
|
|
160435
160507
|
isBot: boolean | null;
|
160436
160508
|
}, {
|
160437
160509
|
message: {
|
160438
|
-
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";
|
160510
|
+
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";
|
160439
160511
|
direction: "incoming" | "outgoing" | "system";
|
160440
160512
|
id?: string | undefined;
|
160441
160513
|
message?: string | undefined;
|
@@ -160468,6 +160540,7 @@ export declare const platformSMSContract: {
|
|
160468
160540
|
editedMessageId?: string | null | undefined;
|
160469
160541
|
isEdited?: boolean | null | undefined;
|
160470
160542
|
editedAt?: string | Date | null | undefined;
|
160543
|
+
label?: string | undefined;
|
160471
160544
|
};
|
160472
160545
|
room: {
|
160473
160546
|
id: string;
|
@@ -164026,7 +164099,7 @@ export declare const facebookFeedContract: {
|
|
164026
164099
|
id: import("zod").ZodOptional<import("zod").ZodString>;
|
164027
164100
|
message: import("zod").ZodOptional<import("zod").ZodString>;
|
164028
164101
|
direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
|
164029
|
-
type: import("zod").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"]>;
|
164102
|
+
type: import("zod").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"]>;
|
164030
164103
|
readAt: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodUnion<[import("zod").ZodDate, import("zod").ZodString]>>>;
|
164031
164104
|
metadata: import("zod").ZodOptional<import("zod").ZodAny>;
|
164032
164105
|
platformId: import("zod").ZodOptional<import("zod").ZodString>;
|
@@ -164080,8 +164153,9 @@ export declare const facebookFeedContract: {
|
|
164080
164153
|
editedMessageId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
164081
164154
|
isEdited: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodBoolean>>;
|
164082
164155
|
editedAt: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodUnion<[import("zod").ZodDate, import("zod").ZodString]>>>;
|
164156
|
+
label: import("zod").ZodOptional<import("zod").ZodString>;
|
164083
164157
|
}, "strip", import("zod").ZodTypeAny, {
|
164084
|
-
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";
|
164158
|
+
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";
|
164085
164159
|
direction: "incoming" | "outgoing" | "system";
|
164086
164160
|
id?: string | undefined;
|
164087
164161
|
message?: string | undefined;
|
@@ -164114,8 +164188,9 @@ export declare const facebookFeedContract: {
|
|
164114
164188
|
editedMessageId?: string | null | undefined;
|
164115
164189
|
isEdited?: boolean | null | undefined;
|
164116
164190
|
editedAt?: string | Date | null | undefined;
|
164191
|
+
label?: string | undefined;
|
164117
164192
|
}, {
|
164118
|
-
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";
|
164193
|
+
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";
|
164119
164194
|
direction: "incoming" | "outgoing" | "system";
|
164120
164195
|
id?: string | undefined;
|
164121
164196
|
message?: string | undefined;
|
@@ -164148,6 +164223,7 @@ export declare const facebookFeedContract: {
|
|
164148
164223
|
editedMessageId?: string | null | undefined;
|
164149
164224
|
isEdited?: boolean | null | undefined;
|
164150
164225
|
editedAt?: string | Date | null | undefined;
|
164226
|
+
label?: string | undefined;
|
164151
164227
|
}>;
|
164152
164228
|
room: import("zod").ZodObject<{
|
164153
164229
|
id: import("zod").ZodString;
|
@@ -164568,7 +164644,7 @@ export declare const facebookFeedContract: {
|
|
164568
164644
|
}>>;
|
164569
164645
|
}, "strip", import("zod").ZodTypeAny, {
|
164570
164646
|
message: {
|
164571
|
-
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";
|
164647
|
+
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";
|
164572
164648
|
direction: "incoming" | "outgoing" | "system";
|
164573
164649
|
id?: string | undefined;
|
164574
164650
|
message?: string | undefined;
|
@@ -164601,6 +164677,7 @@ export declare const facebookFeedContract: {
|
|
164601
164677
|
editedMessageId?: string | null | undefined;
|
164602
164678
|
isEdited?: boolean | null | undefined;
|
164603
164679
|
editedAt?: string | Date | null | undefined;
|
164680
|
+
label?: string | undefined;
|
164604
164681
|
};
|
164605
164682
|
room: {
|
164606
164683
|
id: string;
|
@@ -164683,7 +164760,7 @@ export declare const facebookFeedContract: {
|
|
164683
164760
|
} | undefined;
|
164684
164761
|
}, {
|
164685
164762
|
message: {
|
164686
|
-
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";
|
164763
|
+
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";
|
164687
164764
|
direction: "incoming" | "outgoing" | "system";
|
164688
164765
|
id?: string | undefined;
|
164689
164766
|
message?: string | undefined;
|
@@ -164716,6 +164793,7 @@ export declare const facebookFeedContract: {
|
|
164716
164793
|
editedMessageId?: string | null | undefined;
|
164717
164794
|
isEdited?: boolean | null | undefined;
|
164718
164795
|
editedAt?: string | Date | null | undefined;
|
164796
|
+
label?: string | undefined;
|
164719
164797
|
};
|
164720
164798
|
room: {
|
164721
164799
|
id: string;
|
@@ -164802,11 +164880,12 @@ export declare const facebookFeedContract: {
|
|
164802
164880
|
200: import("zod").ZodObject<{
|
164803
164881
|
requestId: import("zod").ZodString;
|
164804
164882
|
data: import("zod").ZodObject<{
|
164805
|
-
type: import("zod").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"]>;
|
164883
|
+
type: import("zod").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"]>;
|
164806
164884
|
message: import("zod").ZodString;
|
164807
164885
|
id: import("zod").ZodString;
|
164808
164886
|
url: import("zod").ZodString;
|
164809
164887
|
direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
|
164888
|
+
label: import("zod").ZodOptional<import("zod").ZodString>;
|
164810
164889
|
template: import("zod").ZodAny;
|
164811
164890
|
metadata: import("zod").ZodAny;
|
164812
164891
|
createdAt: import("zod").ZodDate;
|
@@ -168422,7 +168501,7 @@ export declare const facebookFeedContract: {
|
|
168422
168501
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
168423
168502
|
message: import("zod").ZodString;
|
168424
168503
|
direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
|
168425
|
-
type: import("zod").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"]>;
|
168504
|
+
type: import("zod").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"]>;
|
168426
168505
|
readAt: import("zod").ZodDate;
|
168427
168506
|
metadata: import("zod").ZodAny;
|
168428
168507
|
platformId: import("zod").ZodString;
|
@@ -169080,7 +169159,7 @@ export declare const facebookFeedContract: {
|
|
169080
169159
|
};
|
169081
169160
|
}>;
|
169082
169161
|
}, "strip", import("zod").ZodTypeAny, {
|
169083
|
-
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";
|
169162
|
+
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";
|
169084
169163
|
message: string;
|
169085
169164
|
id: string;
|
169086
169165
|
url: string;
|
@@ -169242,7 +169321,7 @@ export declare const facebookFeedContract: {
|
|
169242
169321
|
metadata?: any;
|
169243
169322
|
template?: any;
|
169244
169323
|
}, {
|
169245
|
-
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";
|
169324
|
+
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";
|
169246
169325
|
message: string;
|
169247
169326
|
id: string;
|
169248
169327
|
url: string;
|
@@ -169616,7 +169695,7 @@ export declare const facebookFeedContract: {
|
|
169616
169695
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
169617
169696
|
message: import("zod").ZodString;
|
169618
169697
|
direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
|
169619
|
-
type: import("zod").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"]>;
|
169698
|
+
type: import("zod").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"]>;
|
169620
169699
|
readAt: import("zod").ZodDate;
|
169621
169700
|
metadata: import("zod").ZodAny;
|
169622
169701
|
platformId: import("zod").ZodString;
|
@@ -172797,7 +172876,7 @@ export declare const facebookFeedContract: {
|
|
172797
172876
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
172798
172877
|
message: import("zod").ZodString;
|
172799
172878
|
direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
|
172800
|
-
type: import("zod").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"]>;
|
172879
|
+
type: import("zod").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"]>;
|
172801
172880
|
readAt: import("zod").ZodDate;
|
172802
172881
|
metadata: import("zod").ZodAny;
|
172803
172882
|
platformId: import("zod").ZodString;
|
@@ -173455,7 +173534,7 @@ export declare const facebookFeedContract: {
|
|
173455
173534
|
};
|
173456
173535
|
}>;
|
173457
173536
|
}, "strip", import("zod").ZodTypeAny, {
|
173458
|
-
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";
|
173537
|
+
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";
|
173459
173538
|
message: string;
|
173460
173539
|
id: string;
|
173461
173540
|
url: string;
|
@@ -173617,7 +173696,7 @@ export declare const facebookFeedContract: {
|
|
173617
173696
|
metadata?: any;
|
173618
173697
|
template?: any;
|
173619
173698
|
}, {
|
173620
|
-
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";
|
173699
|
+
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";
|
173621
173700
|
message: string;
|
173622
173701
|
id: string;
|
173623
173702
|
url: string;
|
@@ -174417,8 +174496,9 @@ export declare const facebookFeedContract: {
|
|
174417
174496
|
isActive: boolean;
|
174418
174497
|
}>;
|
174419
174498
|
editedMessageid: import("zod").ZodString;
|
174499
|
+
label: import("zod").ZodOptional<import("zod").ZodString>;
|
174420
174500
|
}, "strip", import("zod").ZodTypeAny, {
|
174421
|
-
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";
|
174501
|
+
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";
|
174422
174502
|
message: string;
|
174423
174503
|
id: string;
|
174424
174504
|
url: string;
|
@@ -174932,7 +175012,7 @@ export declare const facebookFeedContract: {
|
|
174932
175012
|
previewUrl: string;
|
174933
175013
|
imageSetId: string;
|
174934
175014
|
repliedMessage: {
|
174935
|
-
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";
|
175015
|
+
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";
|
174936
175016
|
message: string;
|
174937
175017
|
id: string;
|
174938
175018
|
url: string;
|
@@ -175141,8 +175221,9 @@ export declare const facebookFeedContract: {
|
|
175141
175221
|
editedMessageid: string;
|
175142
175222
|
metadata?: any;
|
175143
175223
|
template?: any;
|
175224
|
+
label?: string | undefined;
|
175144
175225
|
}, {
|
175145
|
-
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";
|
175226
|
+
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";
|
175146
175227
|
message: string;
|
175147
175228
|
id: string;
|
175148
175229
|
url: string;
|
@@ -175656,7 +175737,7 @@ export declare const facebookFeedContract: {
|
|
175656
175737
|
previewUrl: string;
|
175657
175738
|
imageSetId: string;
|
175658
175739
|
repliedMessage: {
|
175659
|
-
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";
|
175740
|
+
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";
|
175660
175741
|
message: string;
|
175661
175742
|
id: string;
|
175662
175743
|
url: string;
|
@@ -175865,9 +175946,10 @@ export declare const facebookFeedContract: {
|
|
175865
175946
|
editedMessageid: string;
|
175866
175947
|
metadata?: any;
|
175867
175948
|
template?: any;
|
175949
|
+
label?: string | undefined;
|
175868
175950
|
}>>>;
|
175869
175951
|
}, "strip", import("zod").ZodTypeAny, {
|
175870
|
-
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";
|
175952
|
+
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";
|
175871
175953
|
message: string;
|
175872
175954
|
id: string;
|
175873
175955
|
url: string;
|
@@ -176381,7 +176463,7 @@ export declare const facebookFeedContract: {
|
|
176381
176463
|
previewUrl: string;
|
176382
176464
|
imageSetId: string;
|
176383
176465
|
repliedMessage: {
|
176384
|
-
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";
|
176466
|
+
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";
|
176385
176467
|
message: string;
|
176386
176468
|
id: string;
|
176387
176469
|
url: string;
|
@@ -176588,10 +176670,11 @@ export declare const facebookFeedContract: {
|
|
176588
176670
|
};
|
176589
176671
|
};
|
176590
176672
|
editedMessageid: string;
|
176673
|
+
label?: string | undefined;
|
176591
176674
|
template?: any;
|
176592
176675
|
metadata?: any;
|
176593
176676
|
fromMessage?: {
|
176594
|
-
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";
|
176677
|
+
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";
|
176595
176678
|
message: string;
|
176596
176679
|
id: string;
|
176597
176680
|
url: string;
|
@@ -177105,7 +177188,7 @@ export declare const facebookFeedContract: {
|
|
177105
177188
|
previewUrl: string;
|
177106
177189
|
imageSetId: string;
|
177107
177190
|
repliedMessage: {
|
177108
|
-
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";
|
177191
|
+
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";
|
177109
177192
|
message: string;
|
177110
177193
|
id: string;
|
177111
177194
|
url: string;
|
@@ -177314,9 +177397,10 @@ export declare const facebookFeedContract: {
|
|
177314
177397
|
editedMessageid: string;
|
177315
177398
|
metadata?: any;
|
177316
177399
|
template?: any;
|
177400
|
+
label?: string | undefined;
|
177317
177401
|
} | null | undefined;
|
177318
177402
|
}, {
|
177319
|
-
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";
|
177403
|
+
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";
|
177320
177404
|
message: string;
|
177321
177405
|
id: string;
|
177322
177406
|
url: string;
|
@@ -177830,7 +177914,7 @@ export declare const facebookFeedContract: {
|
|
177830
177914
|
previewUrl: string;
|
177831
177915
|
imageSetId: string;
|
177832
177916
|
repliedMessage: {
|
177833
|
-
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";
|
177917
|
+
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";
|
177834
177918
|
message: string;
|
177835
177919
|
id: string;
|
177836
177920
|
url: string;
|
@@ -178037,10 +178121,11 @@ export declare const facebookFeedContract: {
|
|
178037
178121
|
};
|
178038
178122
|
};
|
178039
178123
|
editedMessageid: string;
|
178124
|
+
label?: string | undefined;
|
178040
178125
|
template?: any;
|
178041
178126
|
metadata?: any;
|
178042
178127
|
fromMessage?: {
|
178043
|
-
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";
|
178128
|
+
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";
|
178044
178129
|
message: string;
|
178045
178130
|
id: string;
|
178046
178131
|
url: string;
|
@@ -178554,7 +178639,7 @@ export declare const facebookFeedContract: {
|
|
178554
178639
|
previewUrl: string;
|
178555
178640
|
imageSetId: string;
|
178556
178641
|
repliedMessage: {
|
178557
|
-
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";
|
178642
|
+
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";
|
178558
178643
|
message: string;
|
178559
178644
|
id: string;
|
178560
178645
|
url: string;
|
@@ -178763,11 +178848,12 @@ export declare const facebookFeedContract: {
|
|
178763
178848
|
editedMessageid: string;
|
178764
178849
|
metadata?: any;
|
178765
178850
|
template?: any;
|
178851
|
+
label?: string | undefined;
|
178766
178852
|
} | null | undefined;
|
178767
178853
|
}>;
|
178768
178854
|
}, "strip", import("zod").ZodTypeAny, {
|
178769
178855
|
data: {
|
178770
|
-
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";
|
178856
|
+
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";
|
178771
178857
|
message: string;
|
178772
178858
|
id: string;
|
178773
178859
|
url: string;
|
@@ -179281,7 +179367,7 @@ export declare const facebookFeedContract: {
|
|
179281
179367
|
previewUrl: string;
|
179282
179368
|
imageSetId: string;
|
179283
179369
|
repliedMessage: {
|
179284
|
-
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";
|
179370
|
+
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";
|
179285
179371
|
message: string;
|
179286
179372
|
id: string;
|
179287
179373
|
url: string;
|
@@ -179488,10 +179574,11 @@ export declare const facebookFeedContract: {
|
|
179488
179574
|
};
|
179489
179575
|
};
|
179490
179576
|
editedMessageid: string;
|
179577
|
+
label?: string | undefined;
|
179491
179578
|
template?: any;
|
179492
179579
|
metadata?: any;
|
179493
179580
|
fromMessage?: {
|
179494
|
-
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";
|
179581
|
+
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";
|
179495
179582
|
message: string;
|
179496
179583
|
id: string;
|
179497
179584
|
url: string;
|
@@ -180005,7 +180092,7 @@ export declare const facebookFeedContract: {
|
|
180005
180092
|
previewUrl: string;
|
180006
180093
|
imageSetId: string;
|
180007
180094
|
repliedMessage: {
|
180008
|
-
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";
|
180095
|
+
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";
|
180009
180096
|
message: string;
|
180010
180097
|
id: string;
|
180011
180098
|
url: string;
|
@@ -180214,12 +180301,13 @@ export declare const facebookFeedContract: {
|
|
180214
180301
|
editedMessageid: string;
|
180215
180302
|
metadata?: any;
|
180216
180303
|
template?: any;
|
180304
|
+
label?: string | undefined;
|
180217
180305
|
} | null | undefined;
|
180218
180306
|
};
|
180219
180307
|
requestId: string;
|
180220
180308
|
}, {
|
180221
180309
|
data: {
|
180222
|
-
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";
|
180310
|
+
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";
|
180223
180311
|
message: string;
|
180224
180312
|
id: string;
|
180225
180313
|
url: string;
|
@@ -180733,7 +180821,7 @@ export declare const facebookFeedContract: {
|
|
180733
180821
|
previewUrl: string;
|
180734
180822
|
imageSetId: string;
|
180735
180823
|
repliedMessage: {
|
180736
|
-
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";
|
180824
|
+
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";
|
180737
180825
|
message: string;
|
180738
180826
|
id: string;
|
180739
180827
|
url: string;
|
@@ -180940,10 +181028,11 @@ export declare const facebookFeedContract: {
|
|
180940
181028
|
};
|
180941
181029
|
};
|
180942
181030
|
editedMessageid: string;
|
181031
|
+
label?: string | undefined;
|
180943
181032
|
template?: any;
|
180944
181033
|
metadata?: any;
|
180945
181034
|
fromMessage?: {
|
180946
|
-
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";
|
181035
|
+
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";
|
180947
181036
|
message: string;
|
180948
181037
|
id: string;
|
180949
181038
|
url: string;
|
@@ -181457,7 +181546,7 @@ export declare const facebookFeedContract: {
|
|
181457
181546
|
previewUrl: string;
|
181458
181547
|
imageSetId: string;
|
181459
181548
|
repliedMessage: {
|
181460
|
-
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";
|
181549
|
+
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";
|
181461
181550
|
message: string;
|
181462
181551
|
id: string;
|
181463
181552
|
url: string;
|
@@ -181666,6 +181755,7 @@ export declare const facebookFeedContract: {
|
|
181666
181755
|
editedMessageid: string;
|
181667
181756
|
metadata?: any;
|
181668
181757
|
template?: any;
|
181758
|
+
label?: string | undefined;
|
181669
181759
|
} | null | undefined;
|
181670
181760
|
};
|
181671
181761
|
requestId: string;
|
@@ -181903,7 +181993,7 @@ export declare const facebookFeedContract: {
|
|
181903
181993
|
id: import("zod").ZodOptional<import("zod").ZodString>;
|
181904
181994
|
message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
181905
181995
|
direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
|
181906
|
-
type: import("zod").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"]>;
|
181996
|
+
type: import("zod").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"]>;
|
181907
181997
|
readAt: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodUnion<[import("zod").ZodDate, import("zod").ZodString]>>>;
|
181908
181998
|
metadata: import("zod").ZodOptional<import("zod").ZodAny>;
|
181909
181999
|
platformId: import("zod").ZodOptional<import("zod").ZodString>;
|
@@ -181955,7 +182045,7 @@ export declare const facebookFeedContract: {
|
|
181955
182045
|
parentMessageId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
181956
182046
|
feedPostId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
181957
182047
|
}, "strip", import("zod").ZodTypeAny, {
|
181958
|
-
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";
|
182048
|
+
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";
|
181959
182049
|
direction: "incoming" | "outgoing" | "system";
|
181960
182050
|
id?: string | undefined;
|
181961
182051
|
message?: string | null | undefined;
|
@@ -181986,7 +182076,7 @@ export declare const facebookFeedContract: {
|
|
181986
182076
|
parentMessageId?: string | null | undefined;
|
181987
182077
|
feedPostId?: string | null | undefined;
|
181988
182078
|
}, {
|
181989
|
-
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";
|
182079
|
+
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";
|
181990
182080
|
direction: "incoming" | "outgoing" | "system";
|
181991
182081
|
id?: string | undefined;
|
181992
182082
|
message?: string | null | undefined;
|
@@ -182019,7 +182109,7 @@ export declare const facebookFeedContract: {
|
|
182019
182109
|
}>;
|
182020
182110
|
}, "strip", import("zod").ZodTypeAny, {
|
182021
182111
|
message: {
|
182022
|
-
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";
|
182112
|
+
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";
|
182023
182113
|
direction: "incoming" | "outgoing" | "system";
|
182024
182114
|
id?: string | undefined;
|
182025
182115
|
message?: string | null | undefined;
|
@@ -182086,7 +182176,7 @@ export declare const facebookFeedContract: {
|
|
182086
182176
|
};
|
182087
182177
|
}, {
|
182088
182178
|
message: {
|
182089
|
-
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";
|
182179
|
+
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";
|
182090
182180
|
direction: "incoming" | "outgoing" | "system";
|
182091
182181
|
id?: string | undefined;
|
182092
182182
|
message?: string | null | undefined;
|
@@ -182363,7 +182453,7 @@ export declare const facebookFeedContract: {
|
|
182363
182453
|
id: import("zod").ZodOptional<import("zod").ZodString>;
|
182364
182454
|
message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
182365
182455
|
direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
|
182366
|
-
type: import("zod").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"]>;
|
182456
|
+
type: import("zod").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"]>;
|
182367
182457
|
readAt: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodUnion<[import("zod").ZodDate, import("zod").ZodString]>>>;
|
182368
182458
|
metadata: import("zod").ZodOptional<import("zod").ZodAny>;
|
182369
182459
|
platformId: import("zod").ZodOptional<import("zod").ZodString>;
|
@@ -182415,7 +182505,7 @@ export declare const facebookFeedContract: {
|
|
182415
182505
|
parentMessageId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
182416
182506
|
feedPostId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
182417
182507
|
}, "strip", import("zod").ZodTypeAny, {
|
182418
|
-
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";
|
182508
|
+
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";
|
182419
182509
|
direction: "incoming" | "outgoing" | "system";
|
182420
182510
|
id?: string | undefined;
|
182421
182511
|
message?: string | null | undefined;
|
@@ -182446,7 +182536,7 @@ export declare const facebookFeedContract: {
|
|
182446
182536
|
parentMessageId?: string | null | undefined;
|
182447
182537
|
feedPostId?: string | null | undefined;
|
182448
182538
|
}, {
|
182449
|
-
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";
|
182539
|
+
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";
|
182450
182540
|
direction: "incoming" | "outgoing" | "system";
|
182451
182541
|
id?: string | undefined;
|
182452
182542
|
message?: string | null | undefined;
|
@@ -182479,7 +182569,7 @@ export declare const facebookFeedContract: {
|
|
182479
182569
|
}>;
|
182480
182570
|
}, "strip", import("zod").ZodTypeAny, {
|
182481
182571
|
message: {
|
182482
|
-
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";
|
182572
|
+
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";
|
182483
182573
|
direction: "incoming" | "outgoing" | "system";
|
182484
182574
|
id?: string | undefined;
|
182485
182575
|
message?: string | null | undefined;
|
@@ -182546,7 +182636,7 @@ export declare const facebookFeedContract: {
|
|
182546
182636
|
};
|
182547
182637
|
}, {
|
182548
182638
|
message: {
|
182549
|
-
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";
|
182639
|
+
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";
|
182550
182640
|
direction: "incoming" | "outgoing" | "system";
|
182551
182641
|
id?: string | undefined;
|
182552
182642
|
message?: string | null | undefined;
|
@@ -182658,13 +182748,14 @@ export declare const feedPostContract: {
|
|
182658
182748
|
updatedAt: import("zod").ZodDate;
|
182659
182749
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
182660
182750
|
message: import("zod").ZodNullable<import("zod").ZodString>;
|
182661
|
-
type: import("zod").ZodUnion<[import("zod").ZodEnum<["text", "added_photos", "shared_story", "mobile_status_update"]>, import("zod").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"]>]>;
|
182751
|
+
type: import("zod").ZodUnion<[import("zod").ZodEnum<["text", "added_photos", "added_video", "shared_story", "mobile_status_update", "no_data"]>, import("zod").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"]>]>;
|
182662
182752
|
metadata: import("zod").ZodAny;
|
182663
182753
|
platformId: import("zod").ZodString;
|
182664
182754
|
platformMessageId: import("zod").ZodString;
|
182665
182755
|
postCreatedAt: import("zod").ZodDate;
|
182666
182756
|
postUpdatedAt: import("zod").ZodDate;
|
182667
182757
|
socialPlatformId: import("zod").ZodString;
|
182758
|
+
template: import("zod").ZodAny;
|
182668
182759
|
channel: import("zod").ZodObject<{
|
182669
182760
|
id: import("zod").ZodString;
|
182670
182761
|
createdAt: import("zod").ZodDate;
|
@@ -184352,10 +184443,9 @@ export declare const feedPostContract: {
|
|
184352
184443
|
telephonySignature: string | null;
|
184353
184444
|
};
|
184354
184445
|
}>;
|
184355
|
-
imageURL: import("zod").ZodString;
|
184356
184446
|
permalinkURL: import("zod").ZodString;
|
184357
184447
|
}, "strip", import("zod").ZodTypeAny, {
|
184358
|
-
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";
|
184448
|
+
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";
|
184359
184449
|
message: string | null;
|
184360
184450
|
id: string;
|
184361
184451
|
channel: {
|
@@ -184615,11 +184705,11 @@ export declare const feedPostContract: {
|
|
184615
184705
|
platformMessageId: string;
|
184616
184706
|
postCreatedAt: Date;
|
184617
184707
|
postUpdatedAt: Date;
|
184618
|
-
imageURL: string;
|
184619
184708
|
permalinkURL: string;
|
184620
184709
|
metadata?: any;
|
184710
|
+
template?: any;
|
184621
184711
|
}, {
|
184622
|
-
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";
|
184712
|
+
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";
|
184623
184713
|
message: string | null;
|
184624
184714
|
id: string;
|
184625
184715
|
channel: {
|
@@ -184879,13 +184969,13 @@ export declare const feedPostContract: {
|
|
184879
184969
|
platformMessageId: string;
|
184880
184970
|
postCreatedAt: Date;
|
184881
184971
|
postUpdatedAt: Date;
|
184882
|
-
imageURL: string;
|
184883
184972
|
permalinkURL: string;
|
184884
184973
|
metadata?: any;
|
184974
|
+
template?: any;
|
184885
184975
|
}>;
|
184886
184976
|
}, "strip", import("zod").ZodTypeAny, {
|
184887
184977
|
data: {
|
184888
|
-
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";
|
184978
|
+
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";
|
184889
184979
|
message: string | null;
|
184890
184980
|
id: string;
|
184891
184981
|
channel: {
|
@@ -185145,14 +185235,14 @@ export declare const feedPostContract: {
|
|
185145
185235
|
platformMessageId: string;
|
185146
185236
|
postCreatedAt: Date;
|
185147
185237
|
postUpdatedAt: Date;
|
185148
|
-
imageURL: string;
|
185149
185238
|
permalinkURL: string;
|
185150
185239
|
metadata?: any;
|
185240
|
+
template?: any;
|
185151
185241
|
};
|
185152
185242
|
requestId: string;
|
185153
185243
|
}, {
|
185154
185244
|
data: {
|
185155
|
-
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";
|
185245
|
+
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";
|
185156
185246
|
message: string | null;
|
185157
185247
|
id: string;
|
185158
185248
|
channel: {
|
@@ -185412,9 +185502,9 @@ export declare const feedPostContract: {
|
|
185412
185502
|
platformMessageId: string;
|
185413
185503
|
postCreatedAt: Date;
|
185414
185504
|
postUpdatedAt: Date;
|
185415
|
-
imageURL: string;
|
185416
185505
|
permalinkURL: string;
|
185417
185506
|
metadata?: any;
|
185507
|
+
template?: any;
|
185418
185508
|
};
|
185419
185509
|
requestId: string;
|
185420
185510
|
}>;
|
@@ -185464,11 +185554,12 @@ export declare const feedPostContract: {
|
|
185464
185554
|
page: import("zod").ZodNumber;
|
185465
185555
|
pageSize: import("zod").ZodNumber;
|
185466
185556
|
data: import("zod").ZodObject<{
|
185467
|
-
type: import("zod").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"]>;
|
185557
|
+
type: import("zod").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"]>;
|
185468
185558
|
message: import("zod").ZodString;
|
185469
185559
|
id: import("zod").ZodString;
|
185470
185560
|
url: import("zod").ZodString;
|
185471
185561
|
direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
|
185562
|
+
label: import("zod").ZodOptional<import("zod").ZodString>;
|
185472
185563
|
template: import("zod").ZodAny;
|
185473
185564
|
metadata: import("zod").ZodAny;
|
185474
185565
|
createdAt: import("zod").ZodDate;
|
@@ -189084,7 +189175,7 @@ export declare const feedPostContract: {
|
|
189084
189175
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
189085
189176
|
message: import("zod").ZodString;
|
189086
189177
|
direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
|
189087
|
-
type: import("zod").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"]>;
|
189178
|
+
type: import("zod").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"]>;
|
189088
189179
|
readAt: import("zod").ZodDate;
|
189089
189180
|
metadata: import("zod").ZodAny;
|
189090
189181
|
platformId: import("zod").ZodString;
|
@@ -189742,7 +189833,7 @@ export declare const feedPostContract: {
|
|
189742
189833
|
};
|
189743
189834
|
}>;
|
189744
189835
|
}, "strip", import("zod").ZodTypeAny, {
|
189745
|
-
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";
|
189836
|
+
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";
|
189746
189837
|
message: string;
|
189747
189838
|
id: string;
|
189748
189839
|
url: string;
|
@@ -189904,7 +189995,7 @@ export declare const feedPostContract: {
|
|
189904
189995
|
metadata?: any;
|
189905
189996
|
template?: any;
|
189906
189997
|
}, {
|
189907
|
-
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";
|
189998
|
+
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";
|
189908
189999
|
message: string;
|
189909
190000
|
id: string;
|
189910
190001
|
url: string;
|
@@ -191325,7 +191416,7 @@ export declare const feedPostContract: {
|
|
191325
191416
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
191326
191417
|
message: import("zod").ZodString;
|
191327
191418
|
direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
|
191328
|
-
type: import("zod").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"]>;
|
191419
|
+
type: import("zod").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"]>;
|
191329
191420
|
readAt: import("zod").ZodDate;
|
191330
191421
|
metadata: import("zod").ZodAny;
|
191331
191422
|
platformId: import("zod").ZodString;
|
@@ -194506,7 +194597,7 @@ export declare const feedPostContract: {
|
|
194506
194597
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
194507
194598
|
message: import("zod").ZodString;
|
194508
194599
|
direction: import("zod").ZodEnum<["incoming", "outgoing", "system"]>;
|
194509
|
-
type: import("zod").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"]>;
|
194600
|
+
type: import("zod").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"]>;
|
194510
194601
|
readAt: import("zod").ZodDate;
|
194511
194602
|
metadata: import("zod").ZodAny;
|
194512
194603
|
platformId: import("zod").ZodString;
|
@@ -195164,7 +195255,7 @@ export declare const feedPostContract: {
|
|
195164
195255
|
};
|
195165
195256
|
}>;
|
195166
195257
|
}, "strip", import("zod").ZodTypeAny, {
|
195167
|
-
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";
|
195258
|
+
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";
|
195168
195259
|
message: string;
|
195169
195260
|
id: string;
|
195170
195261
|
url: string;
|
@@ -195326,7 +195417,7 @@ export declare const feedPostContract: {
|
|
195326
195417
|
metadata?: any;
|
195327
195418
|
template?: any;
|
195328
195419
|
}, {
|
195329
|
-
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";
|
195420
|
+
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";
|
195330
195421
|
message: string;
|
195331
195422
|
id: string;
|
195332
195423
|
url: string;
|
@@ -196126,8 +196217,9 @@ export declare const feedPostContract: {
|
|
196126
196217
|
isActive: boolean;
|
196127
196218
|
}>;
|
196128
196219
|
editedMessageid: import("zod").ZodString;
|
196220
|
+
label: import("zod").ZodOptional<import("zod").ZodString>;
|
196129
196221
|
}, "strip", import("zod").ZodTypeAny, {
|
196130
|
-
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";
|
196222
|
+
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";
|
196131
196223
|
message: string;
|
196132
196224
|
id: string;
|
196133
196225
|
url: string;
|
@@ -196641,7 +196733,7 @@ export declare const feedPostContract: {
|
|
196641
196733
|
previewUrl: string;
|
196642
196734
|
imageSetId: string;
|
196643
196735
|
repliedMessage: {
|
196644
|
-
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";
|
196736
|
+
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";
|
196645
196737
|
message: string;
|
196646
196738
|
id: string;
|
196647
196739
|
url: string;
|
@@ -196850,8 +196942,9 @@ export declare const feedPostContract: {
|
|
196850
196942
|
editedMessageid: string;
|
196851
196943
|
metadata?: any;
|
196852
196944
|
template?: any;
|
196945
|
+
label?: string | undefined;
|
196853
196946
|
}, {
|
196854
|
-
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";
|
196947
|
+
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";
|
196855
196948
|
message: string;
|
196856
196949
|
id: string;
|
196857
196950
|
url: string;
|
@@ -197365,7 +197458,7 @@ export declare const feedPostContract: {
|
|
197365
197458
|
previewUrl: string;
|
197366
197459
|
imageSetId: string;
|
197367
197460
|
repliedMessage: {
|
197368
|
-
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";
|
197461
|
+
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";
|
197369
197462
|
message: string;
|
197370
197463
|
id: string;
|
197371
197464
|
url: string;
|
@@ -197574,15 +197667,16 @@ export declare const feedPostContract: {
|
|
197574
197667
|
editedMessageid: string;
|
197575
197668
|
metadata?: any;
|
197576
197669
|
template?: any;
|
197670
|
+
label?: string | undefined;
|
197577
197671
|
}>, "many">;
|
197578
197672
|
}, "strip", import("zod").ZodTypeAny, {
|
197579
|
-
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";
|
197673
|
+
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";
|
197580
197674
|
message: string;
|
197581
197675
|
id: string;
|
197582
197676
|
url: string;
|
197583
197677
|
direction: "incoming" | "outgoing" | "system";
|
197584
197678
|
children: {
|
197585
|
-
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";
|
197679
|
+
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";
|
197586
197680
|
message: string;
|
197587
197681
|
id: string;
|
197588
197682
|
url: string;
|
@@ -198096,7 +198190,7 @@ export declare const feedPostContract: {
|
|
198096
198190
|
previewUrl: string;
|
198097
198191
|
imageSetId: string;
|
198098
198192
|
repliedMessage: {
|
198099
|
-
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";
|
198193
|
+
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";
|
198100
198194
|
message: string;
|
198101
198195
|
id: string;
|
198102
198196
|
url: string;
|
@@ -198305,6 +198399,7 @@ export declare const feedPostContract: {
|
|
198305
198399
|
editedMessageid: string;
|
198306
198400
|
metadata?: any;
|
198307
198401
|
template?: any;
|
198402
|
+
label?: string | undefined;
|
198308
198403
|
}[];
|
198309
198404
|
createdAt: Date;
|
198310
198405
|
updatedAt: Date;
|
@@ -198815,7 +198910,7 @@ export declare const feedPostContract: {
|
|
198815
198910
|
previewUrl: string;
|
198816
198911
|
imageSetId: string;
|
198817
198912
|
repliedMessage: {
|
198818
|
-
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";
|
198913
|
+
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";
|
198819
198914
|
message: string;
|
198820
198915
|
id: string;
|
198821
198916
|
url: string;
|
@@ -199149,16 +199244,17 @@ export declare const feedPostContract: {
|
|
199149
199244
|
channelId: string;
|
199150
199245
|
socialPlatformId: string;
|
199151
199246
|
};
|
199247
|
+
label?: string | undefined;
|
199152
199248
|
template?: any;
|
199153
199249
|
metadata?: any;
|
199154
199250
|
}, {
|
199155
|
-
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";
|
199251
|
+
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";
|
199156
199252
|
message: string;
|
199157
199253
|
id: string;
|
199158
199254
|
url: string;
|
199159
199255
|
direction: "incoming" | "outgoing" | "system";
|
199160
199256
|
children: {
|
199161
|
-
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";
|
199257
|
+
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";
|
199162
199258
|
message: string;
|
199163
199259
|
id: string;
|
199164
199260
|
url: string;
|
@@ -199672,7 +199768,7 @@ export declare const feedPostContract: {
|
|
199672
199768
|
previewUrl: string;
|
199673
199769
|
imageSetId: string;
|
199674
199770
|
repliedMessage: {
|
199675
|
-
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";
|
199771
|
+
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";
|
199676
199772
|
message: string;
|
199677
199773
|
id: string;
|
199678
199774
|
url: string;
|
@@ -199881,6 +199977,7 @@ export declare const feedPostContract: {
|
|
199881
199977
|
editedMessageid: string;
|
199882
199978
|
metadata?: any;
|
199883
199979
|
template?: any;
|
199980
|
+
label?: string | undefined;
|
199884
199981
|
}[];
|
199885
199982
|
createdAt: Date;
|
199886
199983
|
updatedAt: Date;
|
@@ -200391,7 +200488,7 @@ export declare const feedPostContract: {
|
|
200391
200488
|
previewUrl: string;
|
200392
200489
|
imageSetId: string;
|
200393
200490
|
repliedMessage: {
|
200394
|
-
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";
|
200491
|
+
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";
|
200395
200492
|
message: string;
|
200396
200493
|
id: string;
|
200397
200494
|
url: string;
|
@@ -200725,18 +200822,19 @@ export declare const feedPostContract: {
|
|
200725
200822
|
channelId: string;
|
200726
200823
|
socialPlatformId: string;
|
200727
200824
|
};
|
200825
|
+
label?: string | undefined;
|
200728
200826
|
template?: any;
|
200729
200827
|
metadata?: any;
|
200730
200828
|
}>;
|
200731
200829
|
}, "strip", import("zod").ZodTypeAny, {
|
200732
200830
|
data: {
|
200733
|
-
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";
|
200831
|
+
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";
|
200734
200832
|
message: string;
|
200735
200833
|
id: string;
|
200736
200834
|
url: string;
|
200737
200835
|
direction: "incoming" | "outgoing" | "system";
|
200738
200836
|
children: {
|
200739
|
-
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";
|
200837
|
+
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";
|
200740
200838
|
message: string;
|
200741
200839
|
id: string;
|
200742
200840
|
url: string;
|
@@ -201250,7 +201348,7 @@ export declare const feedPostContract: {
|
|
201250
201348
|
previewUrl: string;
|
201251
201349
|
imageSetId: string;
|
201252
201350
|
repliedMessage: {
|
201253
|
-
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";
|
201351
|
+
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";
|
201254
201352
|
message: string;
|
201255
201353
|
id: string;
|
201256
201354
|
url: string;
|
@@ -201459,6 +201557,7 @@ export declare const feedPostContract: {
|
|
201459
201557
|
editedMessageid: string;
|
201460
201558
|
metadata?: any;
|
201461
201559
|
template?: any;
|
201560
|
+
label?: string | undefined;
|
201462
201561
|
}[];
|
201463
201562
|
createdAt: Date;
|
201464
201563
|
updatedAt: Date;
|
@@ -201969,7 +202068,7 @@ export declare const feedPostContract: {
|
|
201969
202068
|
previewUrl: string;
|
201970
202069
|
imageSetId: string;
|
201971
202070
|
repliedMessage: {
|
201972
|
-
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";
|
202071
|
+
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";
|
201973
202072
|
message: string;
|
201974
202073
|
id: string;
|
201975
202074
|
url: string;
|
@@ -202303,6 +202402,7 @@ export declare const feedPostContract: {
|
|
202303
202402
|
channelId: string;
|
202304
202403
|
socialPlatformId: string;
|
202305
202404
|
};
|
202405
|
+
label?: string | undefined;
|
202306
202406
|
template?: any;
|
202307
202407
|
metadata?: any;
|
202308
202408
|
};
|
@@ -202312,13 +202412,13 @@ export declare const feedPostContract: {
|
|
202312
202412
|
requestId: string;
|
202313
202413
|
}, {
|
202314
202414
|
data: {
|
202315
|
-
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";
|
202415
|
+
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";
|
202316
202416
|
message: string;
|
202317
202417
|
id: string;
|
202318
202418
|
url: string;
|
202319
202419
|
direction: "incoming" | "outgoing" | "system";
|
202320
202420
|
children: {
|
202321
|
-
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";
|
202421
|
+
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";
|
202322
202422
|
message: string;
|
202323
202423
|
id: string;
|
202324
202424
|
url: string;
|
@@ -202832,7 +202932,7 @@ export declare const feedPostContract: {
|
|
202832
202932
|
previewUrl: string;
|
202833
202933
|
imageSetId: string;
|
202834
202934
|
repliedMessage: {
|
202835
|
-
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";
|
202935
|
+
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";
|
202836
202936
|
message: string;
|
202837
202937
|
id: string;
|
202838
202938
|
url: string;
|
@@ -203041,6 +203141,7 @@ export declare const feedPostContract: {
|
|
203041
203141
|
editedMessageid: string;
|
203042
203142
|
metadata?: any;
|
203043
203143
|
template?: any;
|
203144
|
+
label?: string | undefined;
|
203044
203145
|
}[];
|
203045
203146
|
createdAt: Date;
|
203046
203147
|
updatedAt: Date;
|
@@ -203551,7 +203652,7 @@ export declare const feedPostContract: {
|
|
203551
203652
|
previewUrl: string;
|
203552
203653
|
imageSetId: string;
|
203553
203654
|
repliedMessage: {
|
203554
|
-
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";
|
203655
|
+
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";
|
203555
203656
|
message: string;
|
203556
203657
|
id: string;
|
203557
203658
|
url: string;
|
@@ -203885,6 +203986,7 @@ export declare const feedPostContract: {
|
|
203885
203986
|
channelId: string;
|
203886
203987
|
socialPlatformId: string;
|
203887
203988
|
};
|
203989
|
+
label?: string | undefined;
|
203888
203990
|
template?: any;
|
203889
203991
|
metadata?: any;
|
203890
203992
|
};
|