@kl1/contracts 1.2.59-uat → 1.2.61-uat
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/api-contracts/src/channel/index.d.ts +935 -0
- package/dist/api-contracts/src/channel/index.d.ts.map +1 -1
- package/dist/api-contracts/src/channel/schema.d.ts +8 -0
- package/dist/api-contracts/src/channel/schema.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 +515 -169
- package/dist/api-contracts/src/chat/index.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/schema.d.ts +124 -45
- package/dist/api-contracts/src/chat/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/validation.d.ts +151 -56
- package/dist/api-contracts/src/chat/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/contract.d.ts +3238 -639
- package/dist/api-contracts/src/contract.d.ts.map +1 -1
- package/dist/api-contracts/src/cx-log/index.d.ts +11 -0
- package/dist/api-contracts/src/cx-log/index.d.ts.map +1 -1
- package/dist/api-contracts/src/cx-log/schema.d.ts +9 -0
- package/dist/api-contracts/src/cx-log/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/facebook-feed/index.d.ts +165 -43
- package/dist/api-contracts/src/facebook-feed/index.d.ts.map +1 -1
- package/dist/api-contracts/src/facebook-feed/schema.d.ts +10 -3
- package/dist/api-contracts/src/facebook-feed/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/facebook-feed/validation.d.ts +5 -0
- package/dist/api-contracts/src/facebook-feed/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/instagram/index.d.ts +132 -33
- package/dist/api-contracts/src/instagram/index.d.ts.map +1 -1
- package/dist/api-contracts/src/line/index.d.ts +129 -38
- package/dist/api-contracts/src/line/index.d.ts.map +1 -1
- package/dist/api-contracts/src/line/validation.d.ts +14 -5
- package/dist/api-contracts/src/line/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/messenger/index.d.ts +132 -33
- package/dist/api-contracts/src/messenger/index.d.ts.map +1 -1
- package/dist/api-contracts/src/messenger/validation.d.ts +5 -0
- package/dist/api-contracts/src/messenger/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/sms/index.d.ts +42 -5
- package/dist/api-contracts/src/sms/index.d.ts.map +1 -1
- package/dist/api-contracts/src/telegram/index.d.ts +110 -33
- package/dist/api-contracts/src/telegram/index.d.ts.map +1 -1
- package/dist/api-contracts/src/viber/index.d.ts +110 -33
- package/dist/api-contracts/src/viber/index.d.ts.map +1 -1
- package/dist/api-contracts/src/webchat/index.d.ts +110 -33
- package/dist/api-contracts/src/webchat/index.d.ts.map +1 -1
- package/dist/api-contracts/src/whatsapp/index.d.ts +120 -33
- package/dist/api-contracts/src/whatsapp/index.d.ts.map +1 -1
- package/dist/api-contracts/src/workflow-rule/index.d.ts +58 -12
- package/dist/api-contracts/src/workflow-rule/index.d.ts.map +1 -1
- package/dist/entities/src/enums/chat.d.ts +12 -0
- package/dist/entities/src/enums/chat.d.ts.map +1 -1
- package/dist/index.js +21 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +21 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
@@ -264,7 +264,7 @@ export declare const ActionMessageSchema: z.ZodObject<{
|
|
264
264
|
}>;
|
265
265
|
export declare const SendMessageSchema: z.ZodObject<{
|
266
266
|
roomId: z.ZodString;
|
267
|
-
messageType: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
|
267
|
+
messageType: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "csat", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
|
268
268
|
message: z.ZodOptional<z.ZodString>;
|
269
269
|
messageAttachments: z.ZodOptional<z.ZodObject<{
|
270
270
|
bucketName: z.ZodString;
|
@@ -523,7 +523,7 @@ export declare const SendMessageSchema: z.ZodObject<{
|
|
523
523
|
mentions?: string[] | undefined;
|
524
524
|
}>>;
|
525
525
|
}, "strip", z.ZodTypeAny, {
|
526
|
-
messageType: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
526
|
+
messageType: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
527
527
|
roomId: string;
|
528
528
|
message?: string | undefined;
|
529
529
|
messageAttachments?: {
|
@@ -595,7 +595,7 @@ export declare const SendMessageSchema: z.ZodObject<{
|
|
595
595
|
mentions?: string[] | undefined;
|
596
596
|
} | undefined;
|
597
597
|
}, {
|
598
|
-
messageType: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
598
|
+
messageType: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
599
599
|
roomId: string;
|
600
600
|
message?: string | undefined;
|
601
601
|
messageAttachments?: {
|
@@ -673,17 +673,17 @@ export declare const InitiateMessageSchema: z.ZodObject<{
|
|
673
673
|
contactId: z.ZodOptional<z.ZodString>;
|
674
674
|
message: z.ZodObject<{
|
675
675
|
message: z.ZodOptional<z.ZodString>;
|
676
|
-
messageType: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
|
676
|
+
messageType: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "csat", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
|
677
677
|
}, "strip", z.ZodTypeAny, {
|
678
|
-
messageType: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
678
|
+
messageType: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
679
679
|
message?: string | undefined;
|
680
680
|
}, {
|
681
|
-
messageType: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
681
|
+
messageType: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
682
682
|
message?: string | undefined;
|
683
683
|
}>;
|
684
684
|
}, "strip", z.ZodTypeAny, {
|
685
685
|
message: {
|
686
|
-
messageType: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
686
|
+
messageType: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
687
687
|
message?: string | undefined;
|
688
688
|
};
|
689
689
|
channelId: string;
|
@@ -691,7 +691,7 @@ export declare const InitiateMessageSchema: z.ZodObject<{
|
|
691
691
|
contactId?: string | undefined;
|
692
692
|
}, {
|
693
693
|
message: {
|
694
|
-
messageType: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
694
|
+
messageType: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
695
695
|
message?: string | undefined;
|
696
696
|
};
|
697
697
|
channelId: string;
|
@@ -830,6 +830,7 @@ export declare const ChannelSchema: z.ZodObject<{
|
|
830
830
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
831
831
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
832
832
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
833
|
+
isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
|
833
834
|
}, "strip", z.ZodTypeAny, {
|
834
835
|
name: string;
|
835
836
|
id: string;
|
@@ -859,6 +860,7 @@ export declare const ChannelSchema: z.ZodObject<{
|
|
859
860
|
lineRichMenuId?: string | null | undefined;
|
860
861
|
messengerIntegrationType?: "own" | "business" | undefined;
|
861
862
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
863
|
+
isCSATEnabled?: boolean | undefined;
|
862
864
|
}, {
|
863
865
|
name: string;
|
864
866
|
id: string;
|
@@ -888,6 +890,7 @@ export declare const ChannelSchema: z.ZodObject<{
|
|
888
890
|
lineRichMenuId?: string | null | undefined;
|
889
891
|
messengerIntegrationType?: "own" | "business" | undefined;
|
890
892
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
893
|
+
isCSATEnabled?: boolean | undefined;
|
891
894
|
}>;
|
892
895
|
platformId: z.ZodString;
|
893
896
|
brandName: z.ZodString;
|
@@ -947,6 +950,7 @@ export declare const ChannelSchema: z.ZodObject<{
|
|
947
950
|
lineRichMenuId?: string | null | undefined;
|
948
951
|
messengerIntegrationType?: "own" | "business" | undefined;
|
949
952
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
953
|
+
isCSATEnabled?: boolean | undefined;
|
950
954
|
};
|
951
955
|
status: boolean;
|
952
956
|
brandName: string;
|
@@ -994,6 +998,7 @@ export declare const ChannelSchema: z.ZodObject<{
|
|
994
998
|
lineRichMenuId?: string | null | undefined;
|
995
999
|
messengerIntegrationType?: "own" | "business" | undefined;
|
996
1000
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
1001
|
+
isCSATEnabled?: boolean | undefined;
|
997
1002
|
};
|
998
1003
|
status: boolean;
|
999
1004
|
brandName: string;
|
@@ -1075,6 +1080,7 @@ export declare const ReloginChanelSchema: z.ZodObject<{
|
|
1075
1080
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
1076
1081
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
1077
1082
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
1083
|
+
isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
|
1078
1084
|
}, "strip", z.ZodTypeAny, {
|
1079
1085
|
name: string;
|
1080
1086
|
id: string;
|
@@ -1104,6 +1110,7 @@ export declare const ReloginChanelSchema: z.ZodObject<{
|
|
1104
1110
|
lineRichMenuId?: string | null | undefined;
|
1105
1111
|
messengerIntegrationType?: "own" | "business" | undefined;
|
1106
1112
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
1113
|
+
isCSATEnabled?: boolean | undefined;
|
1107
1114
|
}, {
|
1108
1115
|
name: string;
|
1109
1116
|
id: string;
|
@@ -1133,6 +1140,7 @@ export declare const ReloginChanelSchema: z.ZodObject<{
|
|
1133
1140
|
lineRichMenuId?: string | null | undefined;
|
1134
1141
|
messengerIntegrationType?: "own" | "business" | undefined;
|
1135
1142
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
1143
|
+
isCSATEnabled?: boolean | undefined;
|
1136
1144
|
}>;
|
1137
1145
|
status: z.ZodUnion<[z.ZodLiteral<true>, z.ZodLiteral<false>]>;
|
1138
1146
|
actor: z.ZodOptional<z.ZodObject<{
|
@@ -1197,6 +1205,7 @@ export declare const ReloginChanelSchema: z.ZodObject<{
|
|
1197
1205
|
lineRichMenuId?: string | null | undefined;
|
1198
1206
|
messengerIntegrationType?: "own" | "business" | undefined;
|
1199
1207
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
1208
|
+
isCSATEnabled?: boolean | undefined;
|
1200
1209
|
};
|
1201
1210
|
status: boolean;
|
1202
1211
|
createdAt: string;
|
@@ -1248,6 +1257,7 @@ export declare const ReloginChanelSchema: z.ZodObject<{
|
|
1248
1257
|
lineRichMenuId?: string | null | undefined;
|
1249
1258
|
messengerIntegrationType?: "own" | "business" | undefined;
|
1250
1259
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
1260
|
+
isCSATEnabled?: boolean | undefined;
|
1251
1261
|
};
|
1252
1262
|
status: boolean;
|
1253
1263
|
createdAt: string;
|
@@ -1337,6 +1347,7 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
|
|
1337
1347
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
1338
1348
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
1339
1349
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
1350
|
+
isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
|
1340
1351
|
}, "strip", z.ZodTypeAny, {
|
1341
1352
|
name: string;
|
1342
1353
|
id: string;
|
@@ -1366,6 +1377,7 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
|
|
1366
1377
|
lineRichMenuId?: string | null | undefined;
|
1367
1378
|
messengerIntegrationType?: "own" | "business" | undefined;
|
1368
1379
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
1380
|
+
isCSATEnabled?: boolean | undefined;
|
1369
1381
|
}, {
|
1370
1382
|
name: string;
|
1371
1383
|
id: string;
|
@@ -1395,6 +1407,7 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
|
|
1395
1407
|
lineRichMenuId?: string | null | undefined;
|
1396
1408
|
messengerIntegrationType?: "own" | "business" | undefined;
|
1397
1409
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
1410
|
+
isCSATEnabled?: boolean | undefined;
|
1398
1411
|
}>;
|
1399
1412
|
platformId: z.ZodString;
|
1400
1413
|
brandName: z.ZodString;
|
@@ -1454,6 +1467,7 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
|
|
1454
1467
|
lineRichMenuId?: string | null | undefined;
|
1455
1468
|
messengerIntegrationType?: "own" | "business" | undefined;
|
1456
1469
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
1470
|
+
isCSATEnabled?: boolean | undefined;
|
1457
1471
|
};
|
1458
1472
|
status: boolean;
|
1459
1473
|
brandName: string;
|
@@ -1501,6 +1515,7 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
|
|
1501
1515
|
lineRichMenuId?: string | null | undefined;
|
1502
1516
|
messengerIntegrationType?: "own" | "business" | undefined;
|
1503
1517
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
1518
|
+
isCSATEnabled?: boolean | undefined;
|
1504
1519
|
};
|
1505
1520
|
status: boolean;
|
1506
1521
|
brandName: string;
|
@@ -1551,6 +1566,7 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
|
|
1551
1566
|
lineRichMenuId?: string | null | undefined;
|
1552
1567
|
messengerIntegrationType?: "own" | "business" | undefined;
|
1553
1568
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
1569
|
+
isCSATEnabled?: boolean | undefined;
|
1554
1570
|
};
|
1555
1571
|
status: boolean;
|
1556
1572
|
brandName: string;
|
@@ -1601,6 +1617,7 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
|
|
1601
1617
|
lineRichMenuId?: string | null | undefined;
|
1602
1618
|
messengerIntegrationType?: "own" | "business" | undefined;
|
1603
1619
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
1620
|
+
isCSATEnabled?: boolean | undefined;
|
1604
1621
|
};
|
1605
1622
|
status: boolean;
|
1606
1623
|
brandName: string;
|
@@ -1621,7 +1638,7 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
|
|
1621
1638
|
id: z.ZodOptional<z.ZodString>;
|
1622
1639
|
message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1623
1640
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
1624
|
-
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"]>;
|
1641
|
+
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "csat", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
|
1625
1642
|
readAt: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodString]>>>;
|
1626
1643
|
metadata: z.ZodOptional<z.ZodAny>;
|
1627
1644
|
platformId: z.ZodOptional<z.ZodString>;
|
@@ -1673,7 +1690,7 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
|
|
1673
1690
|
parentMessageId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1674
1691
|
feedPostId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1675
1692
|
}, "strip", z.ZodTypeAny, {
|
1676
|
-
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";
|
1693
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
1677
1694
|
direction: "incoming" | "outgoing" | "system";
|
1678
1695
|
id?: string | undefined;
|
1679
1696
|
message?: string | null | undefined;
|
@@ -1704,7 +1721,7 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
|
|
1704
1721
|
parentMessageId?: string | null | undefined;
|
1705
1722
|
feedPostId?: string | null | undefined;
|
1706
1723
|
}, {
|
1707
|
-
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";
|
1724
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
1708
1725
|
direction: "incoming" | "outgoing" | "system";
|
1709
1726
|
id?: string | undefined;
|
1710
1727
|
message?: string | null | undefined;
|
@@ -1737,7 +1754,7 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
|
|
1737
1754
|
}>;
|
1738
1755
|
}, "strip", z.ZodTypeAny, {
|
1739
1756
|
message: {
|
1740
|
-
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";
|
1757
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
1741
1758
|
direction: "incoming" | "outgoing" | "system";
|
1742
1759
|
id?: string | undefined;
|
1743
1760
|
message?: string | null | undefined;
|
@@ -1803,6 +1820,7 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
|
|
1803
1820
|
lineRichMenuId?: string | null | undefined;
|
1804
1821
|
messengerIntegrationType?: "own" | "business" | undefined;
|
1805
1822
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
1823
|
+
isCSATEnabled?: boolean | undefined;
|
1806
1824
|
};
|
1807
1825
|
status: boolean;
|
1808
1826
|
brandName: string;
|
@@ -1821,7 +1839,7 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
|
|
1821
1839
|
};
|
1822
1840
|
}, {
|
1823
1841
|
message: {
|
1824
|
-
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";
|
1842
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
1825
1843
|
direction: "incoming" | "outgoing" | "system";
|
1826
1844
|
id?: string | undefined;
|
1827
1845
|
message?: string | null | undefined;
|
@@ -1887,6 +1905,7 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
|
|
1887
1905
|
lineRichMenuId?: string | null | undefined;
|
1888
1906
|
messengerIntegrationType?: "own" | "business" | undefined;
|
1889
1907
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
1908
|
+
isCSATEnabled?: boolean | undefined;
|
1890
1909
|
};
|
1891
1910
|
status: boolean;
|
1892
1911
|
brandName: string;
|
@@ -2096,6 +2115,7 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
|
|
2096
2115
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
2097
2116
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
2098
2117
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
2118
|
+
isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
|
2099
2119
|
}, "strip", z.ZodTypeAny, {
|
2100
2120
|
name: string;
|
2101
2121
|
id: string;
|
@@ -2125,6 +2145,7 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
|
|
2125
2145
|
lineRichMenuId?: string | null | undefined;
|
2126
2146
|
messengerIntegrationType?: "own" | "business" | undefined;
|
2127
2147
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
2148
|
+
isCSATEnabled?: boolean | undefined;
|
2128
2149
|
}, {
|
2129
2150
|
name: string;
|
2130
2151
|
id: string;
|
@@ -2154,6 +2175,7 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
|
|
2154
2175
|
lineRichMenuId?: string | null | undefined;
|
2155
2176
|
messengerIntegrationType?: "own" | "business" | undefined;
|
2156
2177
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
2178
|
+
isCSATEnabled?: boolean | undefined;
|
2157
2179
|
}>;
|
2158
2180
|
platformId: z.ZodString;
|
2159
2181
|
brandName: z.ZodString;
|
@@ -2213,6 +2235,7 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
|
|
2213
2235
|
lineRichMenuId?: string | null | undefined;
|
2214
2236
|
messengerIntegrationType?: "own" | "business" | undefined;
|
2215
2237
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
2238
|
+
isCSATEnabled?: boolean | undefined;
|
2216
2239
|
};
|
2217
2240
|
status: boolean;
|
2218
2241
|
brandName: string;
|
@@ -2260,6 +2283,7 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
|
|
2260
2283
|
lineRichMenuId?: string | null | undefined;
|
2261
2284
|
messengerIntegrationType?: "own" | "business" | undefined;
|
2262
2285
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
2286
|
+
isCSATEnabled?: boolean | undefined;
|
2263
2287
|
};
|
2264
2288
|
status: boolean;
|
2265
2289
|
brandName: string;
|
@@ -2312,6 +2336,7 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
|
|
2312
2336
|
lineRichMenuId?: string | null | undefined;
|
2313
2337
|
messengerIntegrationType?: "own" | "business" | undefined;
|
2314
2338
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
2339
|
+
isCSATEnabled?: boolean | undefined;
|
2315
2340
|
};
|
2316
2341
|
status: boolean;
|
2317
2342
|
brandName: string;
|
@@ -2403,6 +2428,7 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
|
|
2403
2428
|
lineRichMenuId?: string | null | undefined;
|
2404
2429
|
messengerIntegrationType?: "own" | "business" | undefined;
|
2405
2430
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
2431
|
+
isCSATEnabled?: boolean | undefined;
|
2406
2432
|
};
|
2407
2433
|
status: boolean;
|
2408
2434
|
brandName: string;
|
@@ -2464,7 +2490,7 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
|
|
2464
2490
|
id: z.ZodOptional<z.ZodString>;
|
2465
2491
|
message: z.ZodOptional<z.ZodString>;
|
2466
2492
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
2467
|
-
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"]>;
|
2493
|
+
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "csat", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
|
2468
2494
|
readAt: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodString]>>>;
|
2469
2495
|
metadata: z.ZodOptional<z.ZodAny>;
|
2470
2496
|
platformId: z.ZodOptional<z.ZodString>;
|
@@ -2520,7 +2546,7 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
|
|
2520
2546
|
editedAt: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodString]>>>;
|
2521
2547
|
label: z.ZodOptional<z.ZodString>;
|
2522
2548
|
}, "strip", z.ZodTypeAny, {
|
2523
|
-
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";
|
2549
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
2524
2550
|
direction: "incoming" | "outgoing" | "system";
|
2525
2551
|
id?: string | undefined;
|
2526
2552
|
message?: string | undefined;
|
@@ -2555,7 +2581,7 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
|
|
2555
2581
|
editedAt?: string | Date | null | undefined;
|
2556
2582
|
label?: string | undefined;
|
2557
2583
|
}, {
|
2558
|
-
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";
|
2584
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
2559
2585
|
direction: "incoming" | "outgoing" | "system";
|
2560
2586
|
id?: string | undefined;
|
2561
2587
|
message?: string | undefined;
|
@@ -2592,7 +2618,7 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
|
|
2592
2618
|
}>;
|
2593
2619
|
}, "strip", z.ZodTypeAny, {
|
2594
2620
|
message: {
|
2595
|
-
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";
|
2621
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
2596
2622
|
direction: "incoming" | "outgoing" | "system";
|
2597
2623
|
id?: string | undefined;
|
2598
2624
|
message?: string | undefined;
|
@@ -2662,6 +2688,7 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
|
|
2662
2688
|
lineRichMenuId?: string | null | undefined;
|
2663
2689
|
messengerIntegrationType?: "own" | "business" | undefined;
|
2664
2690
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
2691
|
+
isCSATEnabled?: boolean | undefined;
|
2665
2692
|
};
|
2666
2693
|
status: boolean;
|
2667
2694
|
brandName: string;
|
@@ -2722,7 +2749,7 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
|
|
2722
2749
|
isBot: boolean | null;
|
2723
2750
|
}, {
|
2724
2751
|
message: {
|
2725
|
-
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";
|
2752
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
2726
2753
|
direction: "incoming" | "outgoing" | "system";
|
2727
2754
|
id?: string | undefined;
|
2728
2755
|
message?: string | undefined;
|
@@ -2792,6 +2819,7 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
|
|
2792
2819
|
lineRichMenuId?: string | null | undefined;
|
2793
2820
|
messengerIntegrationType?: "own" | "business" | undefined;
|
2794
2821
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
2822
|
+
isCSATEnabled?: boolean | undefined;
|
2795
2823
|
};
|
2796
2824
|
status: boolean;
|
2797
2825
|
brandName: string;
|
@@ -2856,7 +2884,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
|
|
2856
2884
|
id: z.ZodOptional<z.ZodString>;
|
2857
2885
|
message: z.ZodOptional<z.ZodString>;
|
2858
2886
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
2859
|
-
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"]>;
|
2887
|
+
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "csat", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
|
2860
2888
|
readAt: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodString]>>>;
|
2861
2889
|
metadata: z.ZodOptional<z.ZodAny>;
|
2862
2890
|
platformId: z.ZodOptional<z.ZodString>;
|
@@ -2912,7 +2940,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
|
|
2912
2940
|
editedAt: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodString]>>>;
|
2913
2941
|
label: z.ZodOptional<z.ZodString>;
|
2914
2942
|
}, "strip", z.ZodTypeAny, {
|
2915
|
-
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";
|
2943
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
2916
2944
|
direction: "incoming" | "outgoing" | "system";
|
2917
2945
|
id?: string | undefined;
|
2918
2946
|
message?: string | undefined;
|
@@ -2947,7 +2975,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
|
|
2947
2975
|
editedAt?: string | Date | null | undefined;
|
2948
2976
|
label?: string | undefined;
|
2949
2977
|
}, {
|
2950
|
-
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";
|
2978
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
2951
2979
|
direction: "incoming" | "outgoing" | "system";
|
2952
2980
|
id?: string | undefined;
|
2953
2981
|
message?: string | undefined;
|
@@ -3172,6 +3200,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
|
|
3172
3200
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
3173
3201
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
3174
3202
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
3203
|
+
isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
|
3175
3204
|
}, "strip", z.ZodTypeAny, {
|
3176
3205
|
name: string;
|
3177
3206
|
id: string;
|
@@ -3201,6 +3230,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
|
|
3201
3230
|
lineRichMenuId?: string | null | undefined;
|
3202
3231
|
messengerIntegrationType?: "own" | "business" | undefined;
|
3203
3232
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
3233
|
+
isCSATEnabled?: boolean | undefined;
|
3204
3234
|
}, {
|
3205
3235
|
name: string;
|
3206
3236
|
id: string;
|
@@ -3230,6 +3260,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
|
|
3230
3260
|
lineRichMenuId?: string | null | undefined;
|
3231
3261
|
messengerIntegrationType?: "own" | "business" | undefined;
|
3232
3262
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
3263
|
+
isCSATEnabled?: boolean | undefined;
|
3233
3264
|
}>;
|
3234
3265
|
platformId: z.ZodString;
|
3235
3266
|
brandName: z.ZodString;
|
@@ -3289,6 +3320,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
|
|
3289
3320
|
lineRichMenuId?: string | null | undefined;
|
3290
3321
|
messengerIntegrationType?: "own" | "business" | undefined;
|
3291
3322
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
3323
|
+
isCSATEnabled?: boolean | undefined;
|
3292
3324
|
};
|
3293
3325
|
status: boolean;
|
3294
3326
|
brandName: string;
|
@@ -3336,6 +3368,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
|
|
3336
3368
|
lineRichMenuId?: string | null | undefined;
|
3337
3369
|
messengerIntegrationType?: "own" | "business" | undefined;
|
3338
3370
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
3371
|
+
isCSATEnabled?: boolean | undefined;
|
3339
3372
|
};
|
3340
3373
|
status: boolean;
|
3341
3374
|
brandName: string;
|
@@ -3388,6 +3421,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
|
|
3388
3421
|
lineRichMenuId?: string | null | undefined;
|
3389
3422
|
messengerIntegrationType?: "own" | "business" | undefined;
|
3390
3423
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
3424
|
+
isCSATEnabled?: boolean | undefined;
|
3391
3425
|
};
|
3392
3426
|
status: boolean;
|
3393
3427
|
brandName: string;
|
@@ -3479,6 +3513,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
|
|
3479
3513
|
lineRichMenuId?: string | null | undefined;
|
3480
3514
|
messengerIntegrationType?: "own" | "business" | undefined;
|
3481
3515
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
3516
|
+
isCSATEnabled?: boolean | undefined;
|
3482
3517
|
};
|
3483
3518
|
status: boolean;
|
3484
3519
|
brandName: string;
|
@@ -3549,7 +3584,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
|
|
3549
3584
|
}>>;
|
3550
3585
|
}, "strip", z.ZodTypeAny, {
|
3551
3586
|
message: {
|
3552
|
-
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";
|
3587
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
3553
3588
|
direction: "incoming" | "outgoing" | "system";
|
3554
3589
|
id?: string | undefined;
|
3555
3590
|
message?: string | undefined;
|
@@ -3619,6 +3654,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
|
|
3619
3654
|
lineRichMenuId?: string | null | undefined;
|
3620
3655
|
messengerIntegrationType?: "own" | "business" | undefined;
|
3621
3656
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
3657
|
+
isCSATEnabled?: boolean | undefined;
|
3622
3658
|
};
|
3623
3659
|
status: boolean;
|
3624
3660
|
brandName: string;
|
@@ -3683,7 +3719,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
|
|
3683
3719
|
} | undefined;
|
3684
3720
|
}, {
|
3685
3721
|
message: {
|
3686
|
-
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";
|
3722
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
3687
3723
|
direction: "incoming" | "outgoing" | "system";
|
3688
3724
|
id?: string | undefined;
|
3689
3725
|
message?: string | undefined;
|
@@ -3753,6 +3789,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
|
|
3753
3789
|
lineRichMenuId?: string | null | undefined;
|
3754
3790
|
messengerIntegrationType?: "own" | "business" | undefined;
|
3755
3791
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
3792
|
+
isCSATEnabled?: boolean | undefined;
|
3756
3793
|
};
|
3757
3794
|
status: boolean;
|
3758
3795
|
brandName: string;
|
@@ -3819,7 +3856,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
|
|
3819
3856
|
export declare const SendMessageResponseSchema: z.ZodObject<{
|
3820
3857
|
requestId: z.ZodString;
|
3821
3858
|
data: z.ZodObject<{
|
3822
|
-
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"]>;
|
3859
|
+
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "csat", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
|
3823
3860
|
message: z.ZodString;
|
3824
3861
|
id: z.ZodString;
|
3825
3862
|
url: z.ZodString;
|
@@ -5336,6 +5373,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
5336
5373
|
channelId: string;
|
5337
5374
|
socialPlatformId: string;
|
5338
5375
|
}>;
|
5376
|
+
csatStatus: z.ZodNullable<z.ZodString>;
|
5339
5377
|
actor: z.ZodObject<{
|
5340
5378
|
id: z.ZodString;
|
5341
5379
|
createdAt: z.ZodDate;
|
@@ -5814,6 +5852,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
5814
5852
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
5815
5853
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
5816
5854
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
5855
|
+
isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
|
5817
5856
|
}, "strip", z.ZodTypeAny, {
|
5818
5857
|
name: string;
|
5819
5858
|
id: string;
|
@@ -5843,6 +5882,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
5843
5882
|
lineRichMenuId?: string | null | undefined;
|
5844
5883
|
messengerIntegrationType?: "own" | "business" | undefined;
|
5845
5884
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
5885
|
+
isCSATEnabled?: boolean | undefined;
|
5846
5886
|
}, {
|
5847
5887
|
name: string;
|
5848
5888
|
id: string;
|
@@ -5872,6 +5912,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
5872
5912
|
lineRichMenuId?: string | null | undefined;
|
5873
5913
|
messengerIntegrationType?: "own" | "business" | undefined;
|
5874
5914
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
5915
|
+
isCSATEnabled?: boolean | undefined;
|
5875
5916
|
}>;
|
5876
5917
|
brandName: z.ZodString;
|
5877
5918
|
platformId: z.ZodString;
|
@@ -6135,6 +6176,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
6135
6176
|
lineRichMenuId?: string | null | undefined;
|
6136
6177
|
messengerIntegrationType?: "own" | "business" | undefined;
|
6137
6178
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
6179
|
+
isCSATEnabled?: boolean | undefined;
|
6138
6180
|
};
|
6139
6181
|
status: boolean;
|
6140
6182
|
createdAt: Date;
|
@@ -6229,6 +6271,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
6229
6271
|
lineRichMenuId?: string | null | undefined;
|
6230
6272
|
messengerIntegrationType?: "own" | "business" | undefined;
|
6231
6273
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
6274
|
+
isCSATEnabled?: boolean | undefined;
|
6232
6275
|
};
|
6233
6276
|
status: boolean;
|
6234
6277
|
createdAt: Date;
|
@@ -6887,6 +6930,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
6887
6930
|
lineRichMenuId?: string | null | undefined;
|
6888
6931
|
messengerIntegrationType?: "own" | "business" | undefined;
|
6889
6932
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
6933
|
+
isCSATEnabled?: boolean | undefined;
|
6890
6934
|
};
|
6891
6935
|
status: boolean;
|
6892
6936
|
createdAt: Date;
|
@@ -7178,6 +7222,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
7178
7222
|
closedAt: Date;
|
7179
7223
|
lastMessageAt: Date | null;
|
7180
7224
|
isBotRoom: boolean;
|
7225
|
+
csatStatus: string | null;
|
7181
7226
|
cxlog: {
|
7182
7227
|
id: string;
|
7183
7228
|
channel: string | null;
|
@@ -7314,6 +7359,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
7314
7359
|
lineRichMenuId?: string | null | undefined;
|
7315
7360
|
messengerIntegrationType?: "own" | "business" | undefined;
|
7316
7361
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
7362
|
+
isCSATEnabled?: boolean | undefined;
|
7317
7363
|
};
|
7318
7364
|
status: boolean;
|
7319
7365
|
createdAt: Date;
|
@@ -7605,6 +7651,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
7605
7651
|
closedAt: Date;
|
7606
7652
|
lastMessageAt: Date | null;
|
7607
7653
|
isBotRoom: boolean;
|
7654
|
+
csatStatus: string | null;
|
7608
7655
|
cxlog: {
|
7609
7656
|
id: string;
|
7610
7657
|
channel: string | null;
|
@@ -7745,7 +7792,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
7745
7792
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
7746
7793
|
message: z.ZodString;
|
7747
7794
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
7748
|
-
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"]>;
|
7795
|
+
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "csat", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
|
7749
7796
|
readAt: z.ZodDate;
|
7750
7797
|
metadata: z.ZodAny;
|
7751
7798
|
platformId: z.ZodString;
|
@@ -8403,7 +8450,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
8403
8450
|
};
|
8404
8451
|
}>;
|
8405
8452
|
}, "strip", z.ZodTypeAny, {
|
8406
|
-
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";
|
8453
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
8407
8454
|
message: string;
|
8408
8455
|
id: string;
|
8409
8456
|
url: string;
|
@@ -8565,7 +8612,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
8565
8612
|
metadata?: any;
|
8566
8613
|
template?: any;
|
8567
8614
|
}, {
|
8568
|
-
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";
|
8615
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
8569
8616
|
message: string;
|
8570
8617
|
id: string;
|
8571
8618
|
url: string;
|
@@ -8939,7 +8986,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
8939
8986
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
8940
8987
|
message: z.ZodString;
|
8941
8988
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
8942
|
-
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"]>;
|
8989
|
+
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "csat", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
|
8943
8990
|
readAt: z.ZodDate;
|
8944
8991
|
metadata: z.ZodAny;
|
8945
8992
|
platformId: z.ZodString;
|
@@ -10013,6 +10060,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
10013
10060
|
channelId: string;
|
10014
10061
|
socialPlatformId: string;
|
10015
10062
|
}>;
|
10063
|
+
csatStatus: z.ZodNullable<z.ZodString>;
|
10016
10064
|
actor: z.ZodObject<{
|
10017
10065
|
id: z.ZodString;
|
10018
10066
|
createdAt: z.ZodDate;
|
@@ -10491,6 +10539,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
10491
10539
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
10492
10540
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
10493
10541
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
10542
|
+
isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
|
10494
10543
|
}, "strip", z.ZodTypeAny, {
|
10495
10544
|
name: string;
|
10496
10545
|
id: string;
|
@@ -10520,6 +10569,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
10520
10569
|
lineRichMenuId?: string | null | undefined;
|
10521
10570
|
messengerIntegrationType?: "own" | "business" | undefined;
|
10522
10571
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
10572
|
+
isCSATEnabled?: boolean | undefined;
|
10523
10573
|
}, {
|
10524
10574
|
name: string;
|
10525
10575
|
id: string;
|
@@ -10549,6 +10599,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
10549
10599
|
lineRichMenuId?: string | null | undefined;
|
10550
10600
|
messengerIntegrationType?: "own" | "business" | undefined;
|
10551
10601
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
10602
|
+
isCSATEnabled?: boolean | undefined;
|
10552
10603
|
}>;
|
10553
10604
|
brandName: z.ZodString;
|
10554
10605
|
platformId: z.ZodString;
|
@@ -10812,6 +10863,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
10812
10863
|
lineRichMenuId?: string | null | undefined;
|
10813
10864
|
messengerIntegrationType?: "own" | "business" | undefined;
|
10814
10865
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
10866
|
+
isCSATEnabled?: boolean | undefined;
|
10815
10867
|
};
|
10816
10868
|
status: boolean;
|
10817
10869
|
createdAt: Date;
|
@@ -10906,6 +10958,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
10906
10958
|
lineRichMenuId?: string | null | undefined;
|
10907
10959
|
messengerIntegrationType?: "own" | "business" | undefined;
|
10908
10960
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
10961
|
+
isCSATEnabled?: boolean | undefined;
|
10909
10962
|
};
|
10910
10963
|
status: boolean;
|
10911
10964
|
createdAt: Date;
|
@@ -11564,6 +11617,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
11564
11617
|
lineRichMenuId?: string | null | undefined;
|
11565
11618
|
messengerIntegrationType?: "own" | "business" | undefined;
|
11566
11619
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
11620
|
+
isCSATEnabled?: boolean | undefined;
|
11567
11621
|
};
|
11568
11622
|
status: boolean;
|
11569
11623
|
createdAt: Date;
|
@@ -11855,6 +11909,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
11855
11909
|
closedAt: Date;
|
11856
11910
|
lastMessageAt: Date | null;
|
11857
11911
|
isBotRoom: boolean;
|
11912
|
+
csatStatus: string | null;
|
11858
11913
|
cxlog: {
|
11859
11914
|
id: string;
|
11860
11915
|
channel: string | null;
|
@@ -11991,6 +12046,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
11991
12046
|
lineRichMenuId?: string | null | undefined;
|
11992
12047
|
messengerIntegrationType?: "own" | "business" | undefined;
|
11993
12048
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
12049
|
+
isCSATEnabled?: boolean | undefined;
|
11994
12050
|
};
|
11995
12051
|
status: boolean;
|
11996
12052
|
createdAt: Date;
|
@@ -12282,6 +12338,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
12282
12338
|
closedAt: Date;
|
12283
12339
|
lastMessageAt: Date | null;
|
12284
12340
|
isBotRoom: boolean;
|
12341
|
+
csatStatus: string | null;
|
12285
12342
|
cxlog: {
|
12286
12343
|
id: string;
|
12287
12344
|
channel: string | null;
|
@@ -12425,7 +12482,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
12425
12482
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
12426
12483
|
message: z.ZodString;
|
12427
12484
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
12428
|
-
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"]>;
|
12485
|
+
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "csat", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
|
12429
12486
|
readAt: z.ZodDate;
|
12430
12487
|
metadata: z.ZodAny;
|
12431
12488
|
platformId: z.ZodString;
|
@@ -13083,7 +13140,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
13083
13140
|
};
|
13084
13141
|
}>;
|
13085
13142
|
}, "strip", z.ZodTypeAny, {
|
13086
|
-
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";
|
13143
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
13087
13144
|
message: string;
|
13088
13145
|
id: string;
|
13089
13146
|
url: string;
|
@@ -13245,7 +13302,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
13245
13302
|
metadata?: any;
|
13246
13303
|
template?: any;
|
13247
13304
|
}, {
|
13248
|
-
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";
|
13305
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
13249
13306
|
message: string;
|
13250
13307
|
id: string;
|
13251
13308
|
url: string;
|
@@ -14047,7 +14104,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
14047
14104
|
editedMessageid: z.ZodString;
|
14048
14105
|
label: z.ZodOptional<z.ZodString>;
|
14049
14106
|
}, "strip", z.ZodTypeAny, {
|
14050
|
-
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";
|
14107
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
14051
14108
|
message: string;
|
14052
14109
|
id: string;
|
14053
14110
|
url: string;
|
@@ -14191,6 +14248,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
14191
14248
|
lineRichMenuId?: string | null | undefined;
|
14192
14249
|
messengerIntegrationType?: "own" | "business" | undefined;
|
14193
14250
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
14251
|
+
isCSATEnabled?: boolean | undefined;
|
14194
14252
|
};
|
14195
14253
|
status: boolean;
|
14196
14254
|
createdAt: Date;
|
@@ -14482,6 +14540,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
14482
14540
|
closedAt: Date;
|
14483
14541
|
lastMessageAt: Date | null;
|
14484
14542
|
isBotRoom: boolean;
|
14543
|
+
csatStatus: string | null;
|
14485
14544
|
cxlog: {
|
14486
14545
|
id: string;
|
14487
14546
|
channel: string | null;
|
@@ -14600,7 +14659,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
14600
14659
|
previewUrl: string;
|
14601
14660
|
imageSetId: string;
|
14602
14661
|
repliedMessage: {
|
14603
|
-
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";
|
14662
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
14604
14663
|
message: string;
|
14605
14664
|
id: string;
|
14606
14665
|
url: string;
|
@@ -14811,7 +14870,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
14811
14870
|
template?: any;
|
14812
14871
|
label?: string | undefined;
|
14813
14872
|
}, {
|
14814
|
-
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";
|
14873
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
14815
14874
|
message: string;
|
14816
14875
|
id: string;
|
14817
14876
|
url: string;
|
@@ -14955,6 +15014,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
14955
15014
|
lineRichMenuId?: string | null | undefined;
|
14956
15015
|
messengerIntegrationType?: "own" | "business" | undefined;
|
14957
15016
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
15017
|
+
isCSATEnabled?: boolean | undefined;
|
14958
15018
|
};
|
14959
15019
|
status: boolean;
|
14960
15020
|
createdAt: Date;
|
@@ -15246,6 +15306,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
15246
15306
|
closedAt: Date;
|
15247
15307
|
lastMessageAt: Date | null;
|
15248
15308
|
isBotRoom: boolean;
|
15309
|
+
csatStatus: string | null;
|
15249
15310
|
cxlog: {
|
15250
15311
|
id: string;
|
15251
15312
|
channel: string | null;
|
@@ -15364,7 +15425,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
15364
15425
|
previewUrl: string;
|
15365
15426
|
imageSetId: string;
|
15366
15427
|
repliedMessage: {
|
15367
|
-
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";
|
15428
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
15368
15429
|
message: string;
|
15369
15430
|
id: string;
|
15370
15431
|
url: string;
|
@@ -15576,7 +15637,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
15576
15637
|
label?: string | undefined;
|
15577
15638
|
}>>>;
|
15578
15639
|
}, "strip", z.ZodTypeAny, {
|
15579
|
-
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";
|
15640
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
15580
15641
|
message: string;
|
15581
15642
|
id: string;
|
15582
15643
|
url: string;
|
@@ -15720,6 +15781,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
15720
15781
|
lineRichMenuId?: string | null | undefined;
|
15721
15782
|
messengerIntegrationType?: "own" | "business" | undefined;
|
15722
15783
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
15784
|
+
isCSATEnabled?: boolean | undefined;
|
15723
15785
|
};
|
15724
15786
|
status: boolean;
|
15725
15787
|
createdAt: Date;
|
@@ -16011,6 +16073,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
16011
16073
|
closedAt: Date;
|
16012
16074
|
lastMessageAt: Date | null;
|
16013
16075
|
isBotRoom: boolean;
|
16076
|
+
csatStatus: string | null;
|
16014
16077
|
cxlog: {
|
16015
16078
|
id: string;
|
16016
16079
|
channel: string | null;
|
@@ -16129,7 +16192,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
16129
16192
|
previewUrl: string;
|
16130
16193
|
imageSetId: string;
|
16131
16194
|
repliedMessage: {
|
16132
|
-
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";
|
16195
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
16133
16196
|
message: string;
|
16134
16197
|
id: string;
|
16135
16198
|
url: string;
|
@@ -16340,7 +16403,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
16340
16403
|
template?: any;
|
16341
16404
|
metadata?: any;
|
16342
16405
|
fromMessage?: {
|
16343
|
-
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";
|
16406
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
16344
16407
|
message: string;
|
16345
16408
|
id: string;
|
16346
16409
|
url: string;
|
@@ -16484,6 +16547,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
16484
16547
|
lineRichMenuId?: string | null | undefined;
|
16485
16548
|
messengerIntegrationType?: "own" | "business" | undefined;
|
16486
16549
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
16550
|
+
isCSATEnabled?: boolean | undefined;
|
16487
16551
|
};
|
16488
16552
|
status: boolean;
|
16489
16553
|
createdAt: Date;
|
@@ -16775,6 +16839,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
16775
16839
|
closedAt: Date;
|
16776
16840
|
lastMessageAt: Date | null;
|
16777
16841
|
isBotRoom: boolean;
|
16842
|
+
csatStatus: string | null;
|
16778
16843
|
cxlog: {
|
16779
16844
|
id: string;
|
16780
16845
|
channel: string | null;
|
@@ -16893,7 +16958,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
16893
16958
|
previewUrl: string;
|
16894
16959
|
imageSetId: string;
|
16895
16960
|
repliedMessage: {
|
16896
|
-
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";
|
16961
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
16897
16962
|
message: string;
|
16898
16963
|
id: string;
|
16899
16964
|
url: string;
|
@@ -17105,7 +17170,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
17105
17170
|
label?: string | undefined;
|
17106
17171
|
} | null | undefined;
|
17107
17172
|
}, {
|
17108
|
-
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";
|
17173
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
17109
17174
|
message: string;
|
17110
17175
|
id: string;
|
17111
17176
|
url: string;
|
@@ -17249,6 +17314,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
17249
17314
|
lineRichMenuId?: string | null | undefined;
|
17250
17315
|
messengerIntegrationType?: "own" | "business" | undefined;
|
17251
17316
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
17317
|
+
isCSATEnabled?: boolean | undefined;
|
17252
17318
|
};
|
17253
17319
|
status: boolean;
|
17254
17320
|
createdAt: Date;
|
@@ -17540,6 +17606,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
17540
17606
|
closedAt: Date;
|
17541
17607
|
lastMessageAt: Date | null;
|
17542
17608
|
isBotRoom: boolean;
|
17609
|
+
csatStatus: string | null;
|
17543
17610
|
cxlog: {
|
17544
17611
|
id: string;
|
17545
17612
|
channel: string | null;
|
@@ -17658,7 +17725,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
17658
17725
|
previewUrl: string;
|
17659
17726
|
imageSetId: string;
|
17660
17727
|
repliedMessage: {
|
17661
|
-
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";
|
17728
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
17662
17729
|
message: string;
|
17663
17730
|
id: string;
|
17664
17731
|
url: string;
|
@@ -17869,7 +17936,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
17869
17936
|
template?: any;
|
17870
17937
|
metadata?: any;
|
17871
17938
|
fromMessage?: {
|
17872
|
-
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";
|
17939
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
17873
17940
|
message: string;
|
17874
17941
|
id: string;
|
17875
17942
|
url: string;
|
@@ -18013,6 +18080,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
18013
18080
|
lineRichMenuId?: string | null | undefined;
|
18014
18081
|
messengerIntegrationType?: "own" | "business" | undefined;
|
18015
18082
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
18083
|
+
isCSATEnabled?: boolean | undefined;
|
18016
18084
|
};
|
18017
18085
|
status: boolean;
|
18018
18086
|
createdAt: Date;
|
@@ -18304,6 +18372,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
18304
18372
|
closedAt: Date;
|
18305
18373
|
lastMessageAt: Date | null;
|
18306
18374
|
isBotRoom: boolean;
|
18375
|
+
csatStatus: string | null;
|
18307
18376
|
cxlog: {
|
18308
18377
|
id: string;
|
18309
18378
|
channel: string | null;
|
@@ -18422,7 +18491,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
18422
18491
|
previewUrl: string;
|
18423
18492
|
imageSetId: string;
|
18424
18493
|
repliedMessage: {
|
18425
|
-
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";
|
18494
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
18426
18495
|
message: string;
|
18427
18496
|
id: string;
|
18428
18497
|
url: string;
|
@@ -18636,7 +18705,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
18636
18705
|
}>;
|
18637
18706
|
}, "strip", z.ZodTypeAny, {
|
18638
18707
|
data: {
|
18639
|
-
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";
|
18708
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
18640
18709
|
message: string;
|
18641
18710
|
id: string;
|
18642
18711
|
url: string;
|
@@ -18780,6 +18849,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
18780
18849
|
lineRichMenuId?: string | null | undefined;
|
18781
18850
|
messengerIntegrationType?: "own" | "business" | undefined;
|
18782
18851
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
18852
|
+
isCSATEnabled?: boolean | undefined;
|
18783
18853
|
};
|
18784
18854
|
status: boolean;
|
18785
18855
|
createdAt: Date;
|
@@ -19071,6 +19141,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
19071
19141
|
closedAt: Date;
|
19072
19142
|
lastMessageAt: Date | null;
|
19073
19143
|
isBotRoom: boolean;
|
19144
|
+
csatStatus: string | null;
|
19074
19145
|
cxlog: {
|
19075
19146
|
id: string;
|
19076
19147
|
channel: string | null;
|
@@ -19189,7 +19260,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
19189
19260
|
previewUrl: string;
|
19190
19261
|
imageSetId: string;
|
19191
19262
|
repliedMessage: {
|
19192
|
-
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";
|
19263
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
19193
19264
|
message: string;
|
19194
19265
|
id: string;
|
19195
19266
|
url: string;
|
@@ -19400,7 +19471,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
19400
19471
|
template?: any;
|
19401
19472
|
metadata?: any;
|
19402
19473
|
fromMessage?: {
|
19403
|
-
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";
|
19474
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
19404
19475
|
message: string;
|
19405
19476
|
id: string;
|
19406
19477
|
url: string;
|
@@ -19544,6 +19615,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
19544
19615
|
lineRichMenuId?: string | null | undefined;
|
19545
19616
|
messengerIntegrationType?: "own" | "business" | undefined;
|
19546
19617
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
19618
|
+
isCSATEnabled?: boolean | undefined;
|
19547
19619
|
};
|
19548
19620
|
status: boolean;
|
19549
19621
|
createdAt: Date;
|
@@ -19835,6 +19907,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
19835
19907
|
closedAt: Date;
|
19836
19908
|
lastMessageAt: Date | null;
|
19837
19909
|
isBotRoom: boolean;
|
19910
|
+
csatStatus: string | null;
|
19838
19911
|
cxlog: {
|
19839
19912
|
id: string;
|
19840
19913
|
channel: string | null;
|
@@ -19953,7 +20026,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
19953
20026
|
previewUrl: string;
|
19954
20027
|
imageSetId: string;
|
19955
20028
|
repliedMessage: {
|
19956
|
-
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";
|
20029
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
19957
20030
|
message: string;
|
19958
20031
|
id: string;
|
19959
20032
|
url: string;
|
@@ -20168,7 +20241,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
20168
20241
|
requestId: string;
|
20169
20242
|
}, {
|
20170
20243
|
data: {
|
20171
|
-
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";
|
20244
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
20172
20245
|
message: string;
|
20173
20246
|
id: string;
|
20174
20247
|
url: string;
|
@@ -20312,6 +20385,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
20312
20385
|
lineRichMenuId?: string | null | undefined;
|
20313
20386
|
messengerIntegrationType?: "own" | "business" | undefined;
|
20314
20387
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
20388
|
+
isCSATEnabled?: boolean | undefined;
|
20315
20389
|
};
|
20316
20390
|
status: boolean;
|
20317
20391
|
createdAt: Date;
|
@@ -20603,6 +20677,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
20603
20677
|
closedAt: Date;
|
20604
20678
|
lastMessageAt: Date | null;
|
20605
20679
|
isBotRoom: boolean;
|
20680
|
+
csatStatus: string | null;
|
20606
20681
|
cxlog: {
|
20607
20682
|
id: string;
|
20608
20683
|
channel: string | null;
|
@@ -20721,7 +20796,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
20721
20796
|
previewUrl: string;
|
20722
20797
|
imageSetId: string;
|
20723
20798
|
repliedMessage: {
|
20724
|
-
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";
|
20799
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
20725
20800
|
message: string;
|
20726
20801
|
id: string;
|
20727
20802
|
url: string;
|
@@ -20932,7 +21007,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
20932
21007
|
template?: any;
|
20933
21008
|
metadata?: any;
|
20934
21009
|
fromMessage?: {
|
20935
|
-
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";
|
21010
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
20936
21011
|
message: string;
|
20937
21012
|
id: string;
|
20938
21013
|
url: string;
|
@@ -21076,6 +21151,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
21076
21151
|
lineRichMenuId?: string | null | undefined;
|
21077
21152
|
messengerIntegrationType?: "own" | "business" | undefined;
|
21078
21153
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
21154
|
+
isCSATEnabled?: boolean | undefined;
|
21079
21155
|
};
|
21080
21156
|
status: boolean;
|
21081
21157
|
createdAt: Date;
|
@@ -21367,6 +21443,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
21367
21443
|
closedAt: Date;
|
21368
21444
|
lastMessageAt: Date | null;
|
21369
21445
|
isBotRoom: boolean;
|
21446
|
+
csatStatus: string | null;
|
21370
21447
|
cxlog: {
|
21371
21448
|
id: string;
|
21372
21449
|
channel: string | null;
|
@@ -21485,7 +21562,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
21485
21562
|
previewUrl: string;
|
21486
21563
|
imageSetId: string;
|
21487
21564
|
repliedMessage: {
|
21488
|
-
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";
|
21565
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
21489
21566
|
message: string;
|
21490
21567
|
id: string;
|
21491
21568
|
url: string;
|
@@ -21768,6 +21845,7 @@ export declare const ChannelServiceResponseSchema: z.ZodObject<{
|
|
21768
21845
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
21769
21846
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
21770
21847
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
21848
|
+
isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
|
21771
21849
|
}, "strip", z.ZodTypeAny, {
|
21772
21850
|
name: string;
|
21773
21851
|
id: string;
|
@@ -21797,6 +21875,7 @@ export declare const ChannelServiceResponseSchema: z.ZodObject<{
|
|
21797
21875
|
lineRichMenuId?: string | null | undefined;
|
21798
21876
|
messengerIntegrationType?: "own" | "business" | undefined;
|
21799
21877
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
21878
|
+
isCSATEnabled?: boolean | undefined;
|
21800
21879
|
}, {
|
21801
21880
|
name: string;
|
21802
21881
|
id: string;
|
@@ -21826,6 +21905,7 @@ export declare const ChannelServiceResponseSchema: z.ZodObject<{
|
|
21826
21905
|
lineRichMenuId?: string | null | undefined;
|
21827
21906
|
messengerIntegrationType?: "own" | "business" | undefined;
|
21828
21907
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
21908
|
+
isCSATEnabled?: boolean | undefined;
|
21829
21909
|
}>;
|
21830
21910
|
platformId: z.ZodString;
|
21831
21911
|
brandName: z.ZodString;
|
@@ -21885,6 +21965,7 @@ export declare const ChannelServiceResponseSchema: z.ZodObject<{
|
|
21885
21965
|
lineRichMenuId?: string | null | undefined;
|
21886
21966
|
messengerIntegrationType?: "own" | "business" | undefined;
|
21887
21967
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
21968
|
+
isCSATEnabled?: boolean | undefined;
|
21888
21969
|
};
|
21889
21970
|
status: boolean;
|
21890
21971
|
brandName: string;
|
@@ -21932,6 +22013,7 @@ export declare const ChannelServiceResponseSchema: z.ZodObject<{
|
|
21932
22013
|
lineRichMenuId?: string | null | undefined;
|
21933
22014
|
messengerIntegrationType?: "own" | "business" | undefined;
|
21934
22015
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
22016
|
+
isCSATEnabled?: boolean | undefined;
|
21935
22017
|
};
|
21936
22018
|
status: boolean;
|
21937
22019
|
brandName: string;
|
@@ -21981,6 +22063,7 @@ export declare const ChannelServiceResponseSchema: z.ZodObject<{
|
|
21981
22063
|
lineRichMenuId?: string | null | undefined;
|
21982
22064
|
messengerIntegrationType?: "own" | "business" | undefined;
|
21983
22065
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
22066
|
+
isCSATEnabled?: boolean | undefined;
|
21984
22067
|
};
|
21985
22068
|
status: boolean;
|
21986
22069
|
brandName: string;
|
@@ -22031,6 +22114,7 @@ export declare const ChannelServiceResponseSchema: z.ZodObject<{
|
|
22031
22114
|
lineRichMenuId?: string | null | undefined;
|
22032
22115
|
messengerIntegrationType?: "own" | "business" | undefined;
|
22033
22116
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
22117
|
+
isCSATEnabled?: boolean | undefined;
|
22034
22118
|
};
|
22035
22119
|
status: boolean;
|
22036
22120
|
brandName: string;
|
@@ -22056,7 +22140,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
22056
22140
|
deletedAt: z.ZodNullable<z.ZodString>;
|
22057
22141
|
message: z.ZodOptional<z.ZodString>;
|
22058
22142
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
22059
|
-
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"]>;
|
22143
|
+
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "csat", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
|
22060
22144
|
metadata: z.ZodAny;
|
22061
22145
|
platformId: z.ZodString;
|
22062
22146
|
platformMessageId: z.ZodString;
|
@@ -23488,6 +23572,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
23488
23572
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
23489
23573
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
23490
23574
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
23575
|
+
isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
|
23491
23576
|
}, "strip", z.ZodTypeAny, {
|
23492
23577
|
name: string;
|
23493
23578
|
id: string;
|
@@ -23517,6 +23602,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
23517
23602
|
lineRichMenuId?: string | null | undefined;
|
23518
23603
|
messengerIntegrationType?: "own" | "business" | undefined;
|
23519
23604
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
23605
|
+
isCSATEnabled?: boolean | undefined;
|
23520
23606
|
}, {
|
23521
23607
|
name: string;
|
23522
23608
|
id: string;
|
@@ -23546,6 +23632,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
23546
23632
|
lineRichMenuId?: string | null | undefined;
|
23547
23633
|
messengerIntegrationType?: "own" | "business" | undefined;
|
23548
23634
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
23635
|
+
isCSATEnabled?: boolean | undefined;
|
23549
23636
|
}>;
|
23550
23637
|
platformId: z.ZodString;
|
23551
23638
|
brandName: z.ZodString;
|
@@ -23605,6 +23692,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
23605
23692
|
lineRichMenuId?: string | null | undefined;
|
23606
23693
|
messengerIntegrationType?: "own" | "business" | undefined;
|
23607
23694
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
23695
|
+
isCSATEnabled?: boolean | undefined;
|
23608
23696
|
};
|
23609
23697
|
status: boolean;
|
23610
23698
|
brandName: string;
|
@@ -23652,6 +23740,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
23652
23740
|
lineRichMenuId?: string | null | undefined;
|
23653
23741
|
messengerIntegrationType?: "own" | "business" | undefined;
|
23654
23742
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
23743
|
+
isCSATEnabled?: boolean | undefined;
|
23655
23744
|
};
|
23656
23745
|
status: boolean;
|
23657
23746
|
brandName: string;
|
@@ -24448,6 +24537,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
24448
24537
|
lineRichMenuId?: string | null | undefined;
|
24449
24538
|
messengerIntegrationType?: "own" | "business" | undefined;
|
24450
24539
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
24540
|
+
isCSATEnabled?: boolean | undefined;
|
24451
24541
|
};
|
24452
24542
|
status: boolean;
|
24453
24543
|
brandName: string;
|
@@ -24800,6 +24890,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
24800
24890
|
lineRichMenuId?: string | null | undefined;
|
24801
24891
|
messengerIntegrationType?: "own" | "business" | undefined;
|
24802
24892
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
24893
|
+
isCSATEnabled?: boolean | undefined;
|
24803
24894
|
};
|
24804
24895
|
status: boolean;
|
24805
24896
|
brandName: string;
|
@@ -25555,7 +25646,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
25555
25646
|
}>>>;
|
25556
25647
|
label: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
25557
25648
|
}, "strip", z.ZodTypeAny, {
|
25558
|
-
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";
|
25649
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
25559
25650
|
id: string;
|
25560
25651
|
direction: "incoming" | "outgoing" | "system";
|
25561
25652
|
createdAt: string;
|
@@ -25808,6 +25899,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
25808
25899
|
lineRichMenuId?: string | null | undefined;
|
25809
25900
|
messengerIntegrationType?: "own" | "business" | undefined;
|
25810
25901
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
25902
|
+
isCSATEnabled?: boolean | undefined;
|
25811
25903
|
};
|
25812
25904
|
status: boolean;
|
25813
25905
|
brandName: string;
|
@@ -26070,7 +26162,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
26070
26162
|
} | null | undefined;
|
26071
26163
|
label?: string | null | undefined;
|
26072
26164
|
}, {
|
26073
|
-
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";
|
26165
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
26074
26166
|
id: string;
|
26075
26167
|
direction: "incoming" | "outgoing" | "system";
|
26076
26168
|
createdAt: string;
|
@@ -26323,6 +26415,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
26323
26415
|
lineRichMenuId?: string | null | undefined;
|
26324
26416
|
messengerIntegrationType?: "own" | "business" | undefined;
|
26325
26417
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
26418
|
+
isCSATEnabled?: boolean | undefined;
|
26326
26419
|
};
|
26327
26420
|
status: boolean;
|
26328
26421
|
brandName: string;
|
@@ -26587,7 +26680,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
26587
26680
|
}>;
|
26588
26681
|
}, "strip", z.ZodTypeAny, {
|
26589
26682
|
message: {
|
26590
|
-
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";
|
26683
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
26591
26684
|
id: string;
|
26592
26685
|
direction: "incoming" | "outgoing" | "system";
|
26593
26686
|
createdAt: string;
|
@@ -26840,6 +26933,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
26840
26933
|
lineRichMenuId?: string | null | undefined;
|
26841
26934
|
messengerIntegrationType?: "own" | "business" | undefined;
|
26842
26935
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
26936
|
+
isCSATEnabled?: boolean | undefined;
|
26843
26937
|
};
|
26844
26938
|
status: boolean;
|
26845
26939
|
brandName: string;
|
@@ -27104,7 +27198,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
27104
27198
|
};
|
27105
27199
|
}, {
|
27106
27200
|
message: {
|
27107
|
-
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";
|
27201
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
27108
27202
|
id: string;
|
27109
27203
|
direction: "incoming" | "outgoing" | "system";
|
27110
27204
|
createdAt: string;
|
@@ -27357,6 +27451,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
27357
27451
|
lineRichMenuId?: string | null | undefined;
|
27358
27452
|
messengerIntegrationType?: "own" | "business" | undefined;
|
27359
27453
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
27454
|
+
isCSATEnabled?: boolean | undefined;
|
27360
27455
|
};
|
27361
27456
|
status: boolean;
|
27362
27457
|
brandName: string;
|