@kl1/contracts 1.2.60-uat → 1.2.62-uat
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api-contracts/src/channel/index.d.ts +2629 -2687
- package/dist/api-contracts/src/channel/index.d.ts.map +1 -1
- package/dist/api-contracts/src/channel/validation.d.ts +10 -0
- package/dist/api-contracts/src/channel/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/index.d.ts +189 -285
- package/dist/api-contracts/src/chat/index.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/schema.d.ts +45 -70
- package/dist/api-contracts/src/chat/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/validation.d.ts +72 -72
- package/dist/api-contracts/src/chat/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/contract.d.ts +3632 -4224
- package/dist/api-contracts/src/contract.d.ts.map +1 -1
- package/dist/api-contracts/src/dashboard/index.d.ts +1 -290
- package/dist/api-contracts/src/dashboard/index.d.ts.map +1 -1
- package/dist/api-contracts/src/dashboard/schema.d.ts +0 -71
- package/dist/api-contracts/src/dashboard/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/facebook-feed/index.d.ts +43 -59
- package/dist/api-contracts/src/facebook-feed/index.d.ts.map +1 -1
- package/dist/api-contracts/src/facebook-feed/schema.d.ts +3 -3
- package/dist/api-contracts/src/instagram/index.d.ts +33 -49
- package/dist/api-contracts/src/instagram/index.d.ts.map +1 -1
- package/dist/api-contracts/src/line/index.d.ts +40 -56
- package/dist/api-contracts/src/line/index.d.ts.map +1 -1
- package/dist/api-contracts/src/line/validation.d.ts +5 -5
- package/dist/api-contracts/src/messenger/index.d.ts +33 -49
- package/dist/api-contracts/src/messenger/index.d.ts.map +1 -1
- package/dist/api-contracts/src/sms/index.d.ts +5 -5
- package/dist/api-contracts/src/telegram/index.d.ts +33 -49
- package/dist/api-contracts/src/telegram/index.d.ts.map +1 -1
- package/dist/api-contracts/src/viber/index.d.ts +33 -49
- package/dist/api-contracts/src/viber/index.d.ts.map +1 -1
- package/dist/api-contracts/src/webchat/index.d.ts +33 -49
- package/dist/api-contracts/src/webchat/index.d.ts.map +1 -1
- package/dist/api-contracts/src/whatsapp/index.d.ts +39 -96
- package/dist/api-contracts/src/whatsapp/index.d.ts.map +1 -1
- package/dist/api-contracts/src/whatsapp/validation.d.ts +3 -3
- package/dist/api-contracts/src/workflow-rule/index.d.ts +12 -29
- package/dist/api-contracts/src/workflow-rule/index.d.ts.map +1 -1
- package/dist/entities/src/enums/chat.d.ts +0 -12
- package/dist/entities/src/enums/chat.d.ts.map +1 -1
- package/dist/index.js +39 -137
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +39 -137
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -4620,7 +4620,7 @@ export declare const facebookFeedContract: {
|
|
|
4620
4620
|
id: z.ZodOptional<z.ZodString>;
|
|
4621
4621
|
message: z.ZodOptional<z.ZodString>;
|
|
4622
4622
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
|
4623
|
-
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "
|
|
4623
|
+
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
|
|
4624
4624
|
readAt: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodString]>>>;
|
|
4625
4625
|
metadata: z.ZodOptional<z.ZodAny>;
|
|
4626
4626
|
platformId: z.ZodOptional<z.ZodString>;
|
|
@@ -4676,7 +4676,7 @@ export declare const facebookFeedContract: {
|
|
|
4676
4676
|
editedAt: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodString]>>>;
|
|
4677
4677
|
label: z.ZodOptional<z.ZodString>;
|
|
4678
4678
|
}, "strip", z.ZodTypeAny, {
|
|
4679
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "
|
|
4679
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
4680
4680
|
direction: "incoming" | "outgoing" | "system";
|
|
4681
4681
|
id?: string | undefined;
|
|
4682
4682
|
message?: string | undefined;
|
|
@@ -4711,7 +4711,7 @@ export declare const facebookFeedContract: {
|
|
|
4711
4711
|
editedAt?: string | Date | null | undefined;
|
|
4712
4712
|
label?: string | undefined;
|
|
4713
4713
|
}, {
|
|
4714
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "
|
|
4714
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
4715
4715
|
direction: "incoming" | "outgoing" | "system";
|
|
4716
4716
|
id?: string | undefined;
|
|
4717
4717
|
message?: string | undefined;
|
|
@@ -5313,7 +5313,7 @@ export declare const facebookFeedContract: {
|
|
|
5313
5313
|
}>>;
|
|
5314
5314
|
}, "strip", z.ZodTypeAny, {
|
|
5315
5315
|
message: {
|
|
5316
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "
|
|
5316
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
5317
5317
|
direction: "incoming" | "outgoing" | "system";
|
|
5318
5318
|
id?: string | undefined;
|
|
5319
5319
|
message?: string | undefined;
|
|
@@ -5447,7 +5447,7 @@ export declare const facebookFeedContract: {
|
|
|
5447
5447
|
} | undefined;
|
|
5448
5448
|
}, {
|
|
5449
5449
|
message: {
|
|
5450
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "
|
|
5450
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
5451
5451
|
direction: "incoming" | "outgoing" | "system";
|
|
5452
5452
|
id?: string | undefined;
|
|
5453
5453
|
message?: string | undefined;
|
|
@@ -5585,7 +5585,7 @@ export declare const facebookFeedContract: {
|
|
|
5585
5585
|
200: z.ZodObject<{
|
|
5586
5586
|
requestId: z.ZodString;
|
|
5587
5587
|
data: z.ZodObject<{
|
|
5588
|
-
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "
|
|
5588
|
+
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
|
|
5589
5589
|
message: z.ZodString;
|
|
5590
5590
|
id: z.ZodString;
|
|
5591
5591
|
url: z.ZodString;
|
|
@@ -7102,7 +7102,6 @@ export declare const facebookFeedContract: {
|
|
|
7102
7102
|
channelId: string;
|
|
7103
7103
|
socialPlatformId: string;
|
|
7104
7104
|
}>;
|
|
7105
|
-
csatStatus: z.ZodNullable<z.ZodString>;
|
|
7106
7105
|
actor: z.ZodObject<{
|
|
7107
7106
|
id: z.ZodString;
|
|
7108
7107
|
createdAt: z.ZodDate;
|
|
@@ -8945,7 +8944,6 @@ export declare const facebookFeedContract: {
|
|
|
8945
8944
|
closedAt: Date;
|
|
8946
8945
|
lastMessageAt: Date | null;
|
|
8947
8946
|
isBotRoom: boolean;
|
|
8948
|
-
csatStatus: string | null;
|
|
8949
8947
|
cxlog: {
|
|
8950
8948
|
id: string;
|
|
8951
8949
|
channel: string | null;
|
|
@@ -9373,7 +9371,6 @@ export declare const facebookFeedContract: {
|
|
|
9373
9371
|
closedAt: Date;
|
|
9374
9372
|
lastMessageAt: Date | null;
|
|
9375
9373
|
isBotRoom: boolean;
|
|
9376
|
-
csatStatus: string | null;
|
|
9377
9374
|
cxlog: {
|
|
9378
9375
|
id: string;
|
|
9379
9376
|
channel: string | null;
|
|
@@ -9514,7 +9511,7 @@ export declare const facebookFeedContract: {
|
|
|
9514
9511
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
9515
9512
|
message: z.ZodString;
|
|
9516
9513
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
|
9517
|
-
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "
|
|
9514
|
+
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
|
|
9518
9515
|
readAt: z.ZodDate;
|
|
9519
9516
|
metadata: z.ZodAny;
|
|
9520
9517
|
platformId: z.ZodString;
|
|
@@ -10172,7 +10169,7 @@ export declare const facebookFeedContract: {
|
|
|
10172
10169
|
};
|
|
10173
10170
|
}>;
|
|
10174
10171
|
}, "strip", z.ZodTypeAny, {
|
|
10175
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "
|
|
10172
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
10176
10173
|
message: string;
|
|
10177
10174
|
id: string;
|
|
10178
10175
|
url: string;
|
|
@@ -10334,7 +10331,7 @@ export declare const facebookFeedContract: {
|
|
|
10334
10331
|
metadata?: any;
|
|
10335
10332
|
template?: any;
|
|
10336
10333
|
}, {
|
|
10337
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "
|
|
10334
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
10338
10335
|
message: string;
|
|
10339
10336
|
id: string;
|
|
10340
10337
|
url: string;
|
|
@@ -10708,7 +10705,7 @@ export declare const facebookFeedContract: {
|
|
|
10708
10705
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
10709
10706
|
message: z.ZodString;
|
|
10710
10707
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
|
10711
|
-
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "
|
|
10708
|
+
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
|
|
10712
10709
|
readAt: z.ZodDate;
|
|
10713
10710
|
metadata: z.ZodAny;
|
|
10714
10711
|
platformId: z.ZodString;
|
|
@@ -11782,7 +11779,6 @@ export declare const facebookFeedContract: {
|
|
|
11782
11779
|
channelId: string;
|
|
11783
11780
|
socialPlatformId: string;
|
|
11784
11781
|
}>;
|
|
11785
|
-
csatStatus: z.ZodNullable<z.ZodString>;
|
|
11786
11782
|
actor: z.ZodObject<{
|
|
11787
11783
|
id: z.ZodString;
|
|
11788
11784
|
createdAt: z.ZodDate;
|
|
@@ -13625,7 +13621,6 @@ export declare const facebookFeedContract: {
|
|
|
13625
13621
|
closedAt: Date;
|
|
13626
13622
|
lastMessageAt: Date | null;
|
|
13627
13623
|
isBotRoom: boolean;
|
|
13628
|
-
csatStatus: string | null;
|
|
13629
13624
|
cxlog: {
|
|
13630
13625
|
id: string;
|
|
13631
13626
|
channel: string | null;
|
|
@@ -14053,7 +14048,6 @@ export declare const facebookFeedContract: {
|
|
|
14053
14048
|
closedAt: Date;
|
|
14054
14049
|
lastMessageAt: Date | null;
|
|
14055
14050
|
isBotRoom: boolean;
|
|
14056
|
-
csatStatus: string | null;
|
|
14057
14051
|
cxlog: {
|
|
14058
14052
|
id: string;
|
|
14059
14053
|
channel: string | null;
|
|
@@ -14197,7 +14191,7 @@ export declare const facebookFeedContract: {
|
|
|
14197
14191
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
14198
14192
|
message: z.ZodString;
|
|
14199
14193
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
|
14200
|
-
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "
|
|
14194
|
+
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
|
|
14201
14195
|
readAt: z.ZodDate;
|
|
14202
14196
|
metadata: z.ZodAny;
|
|
14203
14197
|
platformId: z.ZodString;
|
|
@@ -14855,7 +14849,7 @@ export declare const facebookFeedContract: {
|
|
|
14855
14849
|
};
|
|
14856
14850
|
}>;
|
|
14857
14851
|
}, "strip", z.ZodTypeAny, {
|
|
14858
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "
|
|
14852
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
14859
14853
|
message: string;
|
|
14860
14854
|
id: string;
|
|
14861
14855
|
url: string;
|
|
@@ -15017,7 +15011,7 @@ export declare const facebookFeedContract: {
|
|
|
15017
15011
|
metadata?: any;
|
|
15018
15012
|
template?: any;
|
|
15019
15013
|
}, {
|
|
15020
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "
|
|
15014
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
15021
15015
|
message: string;
|
|
15022
15016
|
id: string;
|
|
15023
15017
|
url: string;
|
|
@@ -15819,7 +15813,7 @@ export declare const facebookFeedContract: {
|
|
|
15819
15813
|
editedMessageid: z.ZodString;
|
|
15820
15814
|
label: z.ZodOptional<z.ZodString>;
|
|
15821
15815
|
}, "strip", z.ZodTypeAny, {
|
|
15822
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "
|
|
15816
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
15823
15817
|
message: string;
|
|
15824
15818
|
id: string;
|
|
15825
15819
|
url: string;
|
|
@@ -16254,7 +16248,6 @@ export declare const facebookFeedContract: {
|
|
|
16254
16248
|
closedAt: Date;
|
|
16255
16249
|
lastMessageAt: Date | null;
|
|
16256
16250
|
isBotRoom: boolean;
|
|
16257
|
-
csatStatus: string | null;
|
|
16258
16251
|
cxlog: {
|
|
16259
16252
|
id: string;
|
|
16260
16253
|
channel: string | null;
|
|
@@ -16373,7 +16366,7 @@ export declare const facebookFeedContract: {
|
|
|
16373
16366
|
previewUrl: string;
|
|
16374
16367
|
imageSetId: string;
|
|
16375
16368
|
repliedMessage: {
|
|
16376
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "
|
|
16369
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
16377
16370
|
message: string;
|
|
16378
16371
|
id: string;
|
|
16379
16372
|
url: string;
|
|
@@ -16584,7 +16577,7 @@ export declare const facebookFeedContract: {
|
|
|
16584
16577
|
template?: any;
|
|
16585
16578
|
label?: string | undefined;
|
|
16586
16579
|
}, {
|
|
16587
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "
|
|
16580
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
16588
16581
|
message: string;
|
|
16589
16582
|
id: string;
|
|
16590
16583
|
url: string;
|
|
@@ -17019,7 +17012,6 @@ export declare const facebookFeedContract: {
|
|
|
17019
17012
|
closedAt: Date;
|
|
17020
17013
|
lastMessageAt: Date | null;
|
|
17021
17014
|
isBotRoom: boolean;
|
|
17022
|
-
csatStatus: string | null;
|
|
17023
17015
|
cxlog: {
|
|
17024
17016
|
id: string;
|
|
17025
17017
|
channel: string | null;
|
|
@@ -17138,7 +17130,7 @@ export declare const facebookFeedContract: {
|
|
|
17138
17130
|
previewUrl: string;
|
|
17139
17131
|
imageSetId: string;
|
|
17140
17132
|
repliedMessage: {
|
|
17141
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "
|
|
17133
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
17142
17134
|
message: string;
|
|
17143
17135
|
id: string;
|
|
17144
17136
|
url: string;
|
|
@@ -17350,7 +17342,7 @@ export declare const facebookFeedContract: {
|
|
|
17350
17342
|
label?: string | undefined;
|
|
17351
17343
|
}>>>;
|
|
17352
17344
|
}, "strip", z.ZodTypeAny, {
|
|
17353
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "
|
|
17345
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
17354
17346
|
message: string;
|
|
17355
17347
|
id: string;
|
|
17356
17348
|
url: string;
|
|
@@ -17785,7 +17777,6 @@ export declare const facebookFeedContract: {
|
|
|
17785
17777
|
closedAt: Date;
|
|
17786
17778
|
lastMessageAt: Date | null;
|
|
17787
17779
|
isBotRoom: boolean;
|
|
17788
|
-
csatStatus: string | null;
|
|
17789
17780
|
cxlog: {
|
|
17790
17781
|
id: string;
|
|
17791
17782
|
channel: string | null;
|
|
@@ -17904,7 +17895,7 @@ export declare const facebookFeedContract: {
|
|
|
17904
17895
|
previewUrl: string;
|
|
17905
17896
|
imageSetId: string;
|
|
17906
17897
|
repliedMessage: {
|
|
17907
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "
|
|
17898
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
17908
17899
|
message: string;
|
|
17909
17900
|
id: string;
|
|
17910
17901
|
url: string;
|
|
@@ -18115,7 +18106,7 @@ export declare const facebookFeedContract: {
|
|
|
18115
18106
|
template?: any;
|
|
18116
18107
|
metadata?: any;
|
|
18117
18108
|
fromMessage?: {
|
|
18118
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "
|
|
18109
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
18119
18110
|
message: string;
|
|
18120
18111
|
id: string;
|
|
18121
18112
|
url: string;
|
|
@@ -18550,7 +18541,6 @@ export declare const facebookFeedContract: {
|
|
|
18550
18541
|
closedAt: Date;
|
|
18551
18542
|
lastMessageAt: Date | null;
|
|
18552
18543
|
isBotRoom: boolean;
|
|
18553
|
-
csatStatus: string | null;
|
|
18554
18544
|
cxlog: {
|
|
18555
18545
|
id: string;
|
|
18556
18546
|
channel: string | null;
|
|
@@ -18669,7 +18659,7 @@ export declare const facebookFeedContract: {
|
|
|
18669
18659
|
previewUrl: string;
|
|
18670
18660
|
imageSetId: string;
|
|
18671
18661
|
repliedMessage: {
|
|
18672
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "
|
|
18662
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
18673
18663
|
message: string;
|
|
18674
18664
|
id: string;
|
|
18675
18665
|
url: string;
|
|
@@ -18881,7 +18871,7 @@ export declare const facebookFeedContract: {
|
|
|
18881
18871
|
label?: string | undefined;
|
|
18882
18872
|
} | null | undefined;
|
|
18883
18873
|
}, {
|
|
18884
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "
|
|
18874
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
18885
18875
|
message: string;
|
|
18886
18876
|
id: string;
|
|
18887
18877
|
url: string;
|
|
@@ -19316,7 +19306,6 @@ export declare const facebookFeedContract: {
|
|
|
19316
19306
|
closedAt: Date;
|
|
19317
19307
|
lastMessageAt: Date | null;
|
|
19318
19308
|
isBotRoom: boolean;
|
|
19319
|
-
csatStatus: string | null;
|
|
19320
19309
|
cxlog: {
|
|
19321
19310
|
id: string;
|
|
19322
19311
|
channel: string | null;
|
|
@@ -19435,7 +19424,7 @@ export declare const facebookFeedContract: {
|
|
|
19435
19424
|
previewUrl: string;
|
|
19436
19425
|
imageSetId: string;
|
|
19437
19426
|
repliedMessage: {
|
|
19438
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "
|
|
19427
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
19439
19428
|
message: string;
|
|
19440
19429
|
id: string;
|
|
19441
19430
|
url: string;
|
|
@@ -19646,7 +19635,7 @@ export declare const facebookFeedContract: {
|
|
|
19646
19635
|
template?: any;
|
|
19647
19636
|
metadata?: any;
|
|
19648
19637
|
fromMessage?: {
|
|
19649
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "
|
|
19638
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
19650
19639
|
message: string;
|
|
19651
19640
|
id: string;
|
|
19652
19641
|
url: string;
|
|
@@ -20081,7 +20070,6 @@ export declare const facebookFeedContract: {
|
|
|
20081
20070
|
closedAt: Date;
|
|
20082
20071
|
lastMessageAt: Date | null;
|
|
20083
20072
|
isBotRoom: boolean;
|
|
20084
|
-
csatStatus: string | null;
|
|
20085
20073
|
cxlog: {
|
|
20086
20074
|
id: string;
|
|
20087
20075
|
channel: string | null;
|
|
@@ -20200,7 +20188,7 @@ export declare const facebookFeedContract: {
|
|
|
20200
20188
|
previewUrl: string;
|
|
20201
20189
|
imageSetId: string;
|
|
20202
20190
|
repliedMessage: {
|
|
20203
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "
|
|
20191
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
20204
20192
|
message: string;
|
|
20205
20193
|
id: string;
|
|
20206
20194
|
url: string;
|
|
@@ -20414,7 +20402,7 @@ export declare const facebookFeedContract: {
|
|
|
20414
20402
|
}>;
|
|
20415
20403
|
}, "strip", z.ZodTypeAny, {
|
|
20416
20404
|
data: {
|
|
20417
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "
|
|
20405
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
20418
20406
|
message: string;
|
|
20419
20407
|
id: string;
|
|
20420
20408
|
url: string;
|
|
@@ -20849,7 +20837,6 @@ export declare const facebookFeedContract: {
|
|
|
20849
20837
|
closedAt: Date;
|
|
20850
20838
|
lastMessageAt: Date | null;
|
|
20851
20839
|
isBotRoom: boolean;
|
|
20852
|
-
csatStatus: string | null;
|
|
20853
20840
|
cxlog: {
|
|
20854
20841
|
id: string;
|
|
20855
20842
|
channel: string | null;
|
|
@@ -20968,7 +20955,7 @@ export declare const facebookFeedContract: {
|
|
|
20968
20955
|
previewUrl: string;
|
|
20969
20956
|
imageSetId: string;
|
|
20970
20957
|
repliedMessage: {
|
|
20971
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "
|
|
20958
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
20972
20959
|
message: string;
|
|
20973
20960
|
id: string;
|
|
20974
20961
|
url: string;
|
|
@@ -21179,7 +21166,7 @@ export declare const facebookFeedContract: {
|
|
|
21179
21166
|
template?: any;
|
|
21180
21167
|
metadata?: any;
|
|
21181
21168
|
fromMessage?: {
|
|
21182
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "
|
|
21169
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
21183
21170
|
message: string;
|
|
21184
21171
|
id: string;
|
|
21185
21172
|
url: string;
|
|
@@ -21614,7 +21601,6 @@ export declare const facebookFeedContract: {
|
|
|
21614
21601
|
closedAt: Date;
|
|
21615
21602
|
lastMessageAt: Date | null;
|
|
21616
21603
|
isBotRoom: boolean;
|
|
21617
|
-
csatStatus: string | null;
|
|
21618
21604
|
cxlog: {
|
|
21619
21605
|
id: string;
|
|
21620
21606
|
channel: string | null;
|
|
@@ -21733,7 +21719,7 @@ export declare const facebookFeedContract: {
|
|
|
21733
21719
|
previewUrl: string;
|
|
21734
21720
|
imageSetId: string;
|
|
21735
21721
|
repliedMessage: {
|
|
21736
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "
|
|
21722
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
21737
21723
|
message: string;
|
|
21738
21724
|
id: string;
|
|
21739
21725
|
url: string;
|
|
@@ -21948,7 +21934,7 @@ export declare const facebookFeedContract: {
|
|
|
21948
21934
|
requestId: string;
|
|
21949
21935
|
}, {
|
|
21950
21936
|
data: {
|
|
21951
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "
|
|
21937
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
21952
21938
|
message: string;
|
|
21953
21939
|
id: string;
|
|
21954
21940
|
url: string;
|
|
@@ -22383,7 +22369,6 @@ export declare const facebookFeedContract: {
|
|
|
22383
22369
|
closedAt: Date;
|
|
22384
22370
|
lastMessageAt: Date | null;
|
|
22385
22371
|
isBotRoom: boolean;
|
|
22386
|
-
csatStatus: string | null;
|
|
22387
22372
|
cxlog: {
|
|
22388
22373
|
id: string;
|
|
22389
22374
|
channel: string | null;
|
|
@@ -22502,7 +22487,7 @@ export declare const facebookFeedContract: {
|
|
|
22502
22487
|
previewUrl: string;
|
|
22503
22488
|
imageSetId: string;
|
|
22504
22489
|
repliedMessage: {
|
|
22505
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "
|
|
22490
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
22506
22491
|
message: string;
|
|
22507
22492
|
id: string;
|
|
22508
22493
|
url: string;
|
|
@@ -22713,7 +22698,7 @@ export declare const facebookFeedContract: {
|
|
|
22713
22698
|
template?: any;
|
|
22714
22699
|
metadata?: any;
|
|
22715
22700
|
fromMessage?: {
|
|
22716
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "
|
|
22701
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
22717
22702
|
message: string;
|
|
22718
22703
|
id: string;
|
|
22719
22704
|
url: string;
|
|
@@ -23148,7 +23133,6 @@ export declare const facebookFeedContract: {
|
|
|
23148
23133
|
closedAt: Date;
|
|
23149
23134
|
lastMessageAt: Date | null;
|
|
23150
23135
|
isBotRoom: boolean;
|
|
23151
|
-
csatStatus: string | null;
|
|
23152
23136
|
cxlog: {
|
|
23153
23137
|
id: string;
|
|
23154
23138
|
channel: string | null;
|
|
@@ -23267,7 +23251,7 @@ export declare const facebookFeedContract: {
|
|
|
23267
23251
|
previewUrl: string;
|
|
23268
23252
|
imageSetId: string;
|
|
23269
23253
|
repliedMessage: {
|
|
23270
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "
|
|
23254
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
23271
23255
|
message: string;
|
|
23272
23256
|
id: string;
|
|
23273
23257
|
url: string;
|
|
@@ -23859,7 +23843,7 @@ export declare const facebookFeedContract: {
|
|
|
23859
23843
|
id: z.ZodOptional<z.ZodString>;
|
|
23860
23844
|
message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23861
23845
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
|
23862
|
-
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "
|
|
23846
|
+
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
|
|
23863
23847
|
readAt: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodString]>>>;
|
|
23864
23848
|
metadata: z.ZodOptional<z.ZodAny>;
|
|
23865
23849
|
platformId: z.ZodOptional<z.ZodString>;
|
|
@@ -23911,7 +23895,7 @@ export declare const facebookFeedContract: {
|
|
|
23911
23895
|
parentMessageId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23912
23896
|
feedPostId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23913
23897
|
}, "strip", z.ZodTypeAny, {
|
|
23914
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "
|
|
23898
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
23915
23899
|
direction: "incoming" | "outgoing" | "system";
|
|
23916
23900
|
id?: string | undefined;
|
|
23917
23901
|
message?: string | null | undefined;
|
|
@@ -23942,7 +23926,7 @@ export declare const facebookFeedContract: {
|
|
|
23942
23926
|
parentMessageId?: string | null | undefined;
|
|
23943
23927
|
feedPostId?: string | null | undefined;
|
|
23944
23928
|
}, {
|
|
23945
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "
|
|
23929
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
23946
23930
|
direction: "incoming" | "outgoing" | "system";
|
|
23947
23931
|
id?: string | undefined;
|
|
23948
23932
|
message?: string | null | undefined;
|
|
@@ -23975,7 +23959,7 @@ export declare const facebookFeedContract: {
|
|
|
23975
23959
|
}>;
|
|
23976
23960
|
}, "strip", z.ZodTypeAny, {
|
|
23977
23961
|
message: {
|
|
23978
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "
|
|
23962
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
23979
23963
|
direction: "incoming" | "outgoing" | "system";
|
|
23980
23964
|
id?: string | undefined;
|
|
23981
23965
|
message?: string | null | undefined;
|
|
@@ -24059,7 +24043,7 @@ export declare const facebookFeedContract: {
|
|
|
24059
24043
|
};
|
|
24060
24044
|
}, {
|
|
24061
24045
|
message: {
|
|
24062
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "
|
|
24046
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
24063
24047
|
direction: "incoming" | "outgoing" | "system";
|
|
24064
24048
|
id?: string | undefined;
|
|
24065
24049
|
message?: string | null | undefined;
|
|
@@ -24498,7 +24482,7 @@ export declare const facebookFeedContract: {
|
|
|
24498
24482
|
id: z.ZodOptional<z.ZodString>;
|
|
24499
24483
|
message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24500
24484
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
|
24501
|
-
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "
|
|
24485
|
+
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
|
|
24502
24486
|
readAt: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodString]>>>;
|
|
24503
24487
|
metadata: z.ZodOptional<z.ZodAny>;
|
|
24504
24488
|
platformId: z.ZodOptional<z.ZodString>;
|
|
@@ -24550,7 +24534,7 @@ export declare const facebookFeedContract: {
|
|
|
24550
24534
|
parentMessageId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24551
24535
|
feedPostId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24552
24536
|
}, "strip", z.ZodTypeAny, {
|
|
24553
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "
|
|
24537
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
24554
24538
|
direction: "incoming" | "outgoing" | "system";
|
|
24555
24539
|
id?: string | undefined;
|
|
24556
24540
|
message?: string | null | undefined;
|
|
@@ -24581,7 +24565,7 @@ export declare const facebookFeedContract: {
|
|
|
24581
24565
|
parentMessageId?: string | null | undefined;
|
|
24582
24566
|
feedPostId?: string | null | undefined;
|
|
24583
24567
|
}, {
|
|
24584
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "
|
|
24568
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
24585
24569
|
direction: "incoming" | "outgoing" | "system";
|
|
24586
24570
|
id?: string | undefined;
|
|
24587
24571
|
message?: string | null | undefined;
|
|
@@ -24614,7 +24598,7 @@ export declare const facebookFeedContract: {
|
|
|
24614
24598
|
}>;
|
|
24615
24599
|
}, "strip", z.ZodTypeAny, {
|
|
24616
24600
|
message: {
|
|
24617
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "
|
|
24601
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
24618
24602
|
direction: "incoming" | "outgoing" | "system";
|
|
24619
24603
|
id?: string | undefined;
|
|
24620
24604
|
message?: string | null | undefined;
|
|
@@ -24698,7 +24682,7 @@ export declare const facebookFeedContract: {
|
|
|
24698
24682
|
};
|
|
24699
24683
|
}, {
|
|
24700
24684
|
message: {
|
|
24701
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "
|
|
24685
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
|
24702
24686
|
direction: "incoming" | "outgoing" | "system";
|
|
24703
24687
|
id?: string | undefined;
|
|
24704
24688
|
message?: string | null | undefined;
|