@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
@@ -200,6 +200,7 @@ export declare const messengerContract: {
|
|
200
200
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
201
201
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
202
202
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
203
|
+
isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
|
203
204
|
}, "strip", z.ZodTypeAny, {
|
204
205
|
name: string;
|
205
206
|
id: string;
|
@@ -229,6 +230,7 @@ export declare const messengerContract: {
|
|
229
230
|
lineRichMenuId?: string | null | undefined;
|
230
231
|
messengerIntegrationType?: "own" | "business" | undefined;
|
231
232
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
233
|
+
isCSATEnabled?: boolean | undefined;
|
232
234
|
}, {
|
233
235
|
name: string;
|
234
236
|
id: string;
|
@@ -258,6 +260,7 @@ export declare const messengerContract: {
|
|
258
260
|
lineRichMenuId?: string | null | undefined;
|
259
261
|
messengerIntegrationType?: "own" | "business" | undefined;
|
260
262
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
263
|
+
isCSATEnabled?: boolean | undefined;
|
261
264
|
}>;
|
262
265
|
platformId: z.ZodString;
|
263
266
|
brandName: z.ZodString;
|
@@ -317,6 +320,7 @@ export declare const messengerContract: {
|
|
317
320
|
lineRichMenuId?: string | null | undefined;
|
318
321
|
messengerIntegrationType?: "own" | "business" | undefined;
|
319
322
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
323
|
+
isCSATEnabled?: boolean | undefined;
|
320
324
|
};
|
321
325
|
status: boolean;
|
322
326
|
brandName: string;
|
@@ -364,6 +368,7 @@ export declare const messengerContract: {
|
|
364
368
|
lineRichMenuId?: string | null | undefined;
|
365
369
|
messengerIntegrationType?: "own" | "business" | undefined;
|
366
370
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
371
|
+
isCSATEnabled?: boolean | undefined;
|
367
372
|
};
|
368
373
|
status: boolean;
|
369
374
|
brandName: string;
|
@@ -416,6 +421,7 @@ export declare const messengerContract: {
|
|
416
421
|
lineRichMenuId?: string | null | undefined;
|
417
422
|
messengerIntegrationType?: "own" | "business" | undefined;
|
418
423
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
424
|
+
isCSATEnabled?: boolean | undefined;
|
419
425
|
};
|
420
426
|
status: boolean;
|
421
427
|
brandName: string;
|
@@ -507,6 +513,7 @@ export declare const messengerContract: {
|
|
507
513
|
lineRichMenuId?: string | null | undefined;
|
508
514
|
messengerIntegrationType?: "own" | "business" | undefined;
|
509
515
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
516
|
+
isCSATEnabled?: boolean | undefined;
|
510
517
|
};
|
511
518
|
status: boolean;
|
512
519
|
brandName: string;
|
@@ -568,7 +575,7 @@ export declare const messengerContract: {
|
|
568
575
|
id: z.ZodOptional<z.ZodString>;
|
569
576
|
message: z.ZodOptional<z.ZodString>;
|
570
577
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
571
|
-
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"]>;
|
578
|
+
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"]>;
|
572
579
|
readAt: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodString]>>>;
|
573
580
|
metadata: z.ZodOptional<z.ZodAny>;
|
574
581
|
platformId: z.ZodOptional<z.ZodString>;
|
@@ -624,7 +631,7 @@ export declare const messengerContract: {
|
|
624
631
|
editedAt: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodString]>>>;
|
625
632
|
label: z.ZodOptional<z.ZodString>;
|
626
633
|
}, "strip", z.ZodTypeAny, {
|
627
|
-
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";
|
634
|
+
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";
|
628
635
|
direction: "incoming" | "outgoing" | "system";
|
629
636
|
id?: string | undefined;
|
630
637
|
message?: string | undefined;
|
@@ -659,7 +666,7 @@ export declare const messengerContract: {
|
|
659
666
|
editedAt?: string | Date | null | undefined;
|
660
667
|
label?: string | undefined;
|
661
668
|
}, {
|
662
|
-
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";
|
669
|
+
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";
|
663
670
|
direction: "incoming" | "outgoing" | "system";
|
664
671
|
id?: string | undefined;
|
665
672
|
message?: string | undefined;
|
@@ -696,7 +703,7 @@ export declare const messengerContract: {
|
|
696
703
|
}>;
|
697
704
|
}, "strip", z.ZodTypeAny, {
|
698
705
|
message: {
|
699
|
-
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";
|
706
|
+
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";
|
700
707
|
direction: "incoming" | "outgoing" | "system";
|
701
708
|
id?: string | undefined;
|
702
709
|
message?: string | undefined;
|
@@ -766,6 +773,7 @@ export declare const messengerContract: {
|
|
766
773
|
lineRichMenuId?: string | null | undefined;
|
767
774
|
messengerIntegrationType?: "own" | "business" | undefined;
|
768
775
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
776
|
+
isCSATEnabled?: boolean | undefined;
|
769
777
|
};
|
770
778
|
status: boolean;
|
771
779
|
brandName: string;
|
@@ -826,7 +834,7 @@ export declare const messengerContract: {
|
|
826
834
|
isBot: boolean | null;
|
827
835
|
}, {
|
828
836
|
message: {
|
829
|
-
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";
|
837
|
+
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";
|
830
838
|
direction: "incoming" | "outgoing" | "system";
|
831
839
|
id?: string | undefined;
|
832
840
|
message?: string | undefined;
|
@@ -896,6 +904,7 @@ export declare const messengerContract: {
|
|
896
904
|
lineRichMenuId?: string | null | undefined;
|
897
905
|
messengerIntegrationType?: "own" | "business" | undefined;
|
898
906
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
907
|
+
isCSATEnabled?: boolean | undefined;
|
899
908
|
};
|
900
909
|
status: boolean;
|
901
910
|
brandName: string;
|
@@ -960,7 +969,7 @@ export declare const messengerContract: {
|
|
960
969
|
200: z.ZodObject<{
|
961
970
|
requestId: z.ZodString;
|
962
971
|
data: z.ZodObject<{
|
963
|
-
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"]>;
|
972
|
+
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"]>;
|
964
973
|
message: z.ZodString;
|
965
974
|
id: z.ZodString;
|
966
975
|
url: z.ZodString;
|
@@ -2477,6 +2486,7 @@ export declare const messengerContract: {
|
|
2477
2486
|
channelId: string;
|
2478
2487
|
socialPlatformId: string;
|
2479
2488
|
}>;
|
2489
|
+
csatStatus: z.ZodNullable<z.ZodString>;
|
2480
2490
|
actor: z.ZodObject<{
|
2481
2491
|
id: z.ZodString;
|
2482
2492
|
createdAt: z.ZodDate;
|
@@ -2955,6 +2965,7 @@ export declare const messengerContract: {
|
|
2955
2965
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
2956
2966
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
2957
2967
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
2968
|
+
isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
|
2958
2969
|
}, "strip", z.ZodTypeAny, {
|
2959
2970
|
name: string;
|
2960
2971
|
id: string;
|
@@ -2984,6 +2995,7 @@ export declare const messengerContract: {
|
|
2984
2995
|
lineRichMenuId?: string | null | undefined;
|
2985
2996
|
messengerIntegrationType?: "own" | "business" | undefined;
|
2986
2997
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
2998
|
+
isCSATEnabled?: boolean | undefined;
|
2987
2999
|
}, {
|
2988
3000
|
name: string;
|
2989
3001
|
id: string;
|
@@ -3013,6 +3025,7 @@ export declare const messengerContract: {
|
|
3013
3025
|
lineRichMenuId?: string | null | undefined;
|
3014
3026
|
messengerIntegrationType?: "own" | "business" | undefined;
|
3015
3027
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
3028
|
+
isCSATEnabled?: boolean | undefined;
|
3016
3029
|
}>;
|
3017
3030
|
brandName: z.ZodString;
|
3018
3031
|
platformId: z.ZodString;
|
@@ -3276,6 +3289,7 @@ export declare const messengerContract: {
|
|
3276
3289
|
lineRichMenuId?: string | null | undefined;
|
3277
3290
|
messengerIntegrationType?: "own" | "business" | undefined;
|
3278
3291
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
3292
|
+
isCSATEnabled?: boolean | undefined;
|
3279
3293
|
};
|
3280
3294
|
status: boolean;
|
3281
3295
|
createdAt: Date;
|
@@ -3370,6 +3384,7 @@ export declare const messengerContract: {
|
|
3370
3384
|
lineRichMenuId?: string | null | undefined;
|
3371
3385
|
messengerIntegrationType?: "own" | "business" | undefined;
|
3372
3386
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
3387
|
+
isCSATEnabled?: boolean | undefined;
|
3373
3388
|
};
|
3374
3389
|
status: boolean;
|
3375
3390
|
createdAt: Date;
|
@@ -4028,6 +4043,7 @@ export declare const messengerContract: {
|
|
4028
4043
|
lineRichMenuId?: string | null | undefined;
|
4029
4044
|
messengerIntegrationType?: "own" | "business" | undefined;
|
4030
4045
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
4046
|
+
isCSATEnabled?: boolean | undefined;
|
4031
4047
|
};
|
4032
4048
|
status: boolean;
|
4033
4049
|
createdAt: Date;
|
@@ -4319,6 +4335,7 @@ export declare const messengerContract: {
|
|
4319
4335
|
closedAt: Date;
|
4320
4336
|
lastMessageAt: Date | null;
|
4321
4337
|
isBotRoom: boolean;
|
4338
|
+
csatStatus: string | null;
|
4322
4339
|
cxlog: {
|
4323
4340
|
id: string;
|
4324
4341
|
channel: string | null;
|
@@ -4455,6 +4472,7 @@ export declare const messengerContract: {
|
|
4455
4472
|
lineRichMenuId?: string | null | undefined;
|
4456
4473
|
messengerIntegrationType?: "own" | "business" | undefined;
|
4457
4474
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
4475
|
+
isCSATEnabled?: boolean | undefined;
|
4458
4476
|
};
|
4459
4477
|
status: boolean;
|
4460
4478
|
createdAt: Date;
|
@@ -4746,6 +4764,7 @@ export declare const messengerContract: {
|
|
4746
4764
|
closedAt: Date;
|
4747
4765
|
lastMessageAt: Date | null;
|
4748
4766
|
isBotRoom: boolean;
|
4767
|
+
csatStatus: string | null;
|
4749
4768
|
cxlog: {
|
4750
4769
|
id: string;
|
4751
4770
|
channel: string | null;
|
@@ -4886,7 +4905,7 @@ export declare const messengerContract: {
|
|
4886
4905
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
4887
4906
|
message: z.ZodString;
|
4888
4907
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
4889
|
-
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"]>;
|
4908
|
+
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"]>;
|
4890
4909
|
readAt: z.ZodDate;
|
4891
4910
|
metadata: z.ZodAny;
|
4892
4911
|
platformId: z.ZodString;
|
@@ -5544,7 +5563,7 @@ export declare const messengerContract: {
|
|
5544
5563
|
};
|
5545
5564
|
}>;
|
5546
5565
|
}, "strip", z.ZodTypeAny, {
|
5547
|
-
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";
|
5566
|
+
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";
|
5548
5567
|
message: string;
|
5549
5568
|
id: string;
|
5550
5569
|
url: string;
|
@@ -5706,7 +5725,7 @@ export declare const messengerContract: {
|
|
5706
5725
|
metadata?: any;
|
5707
5726
|
template?: any;
|
5708
5727
|
}, {
|
5709
|
-
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";
|
5728
|
+
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";
|
5710
5729
|
message: string;
|
5711
5730
|
id: string;
|
5712
5731
|
url: string;
|
@@ -6080,7 +6099,7 @@ export declare const messengerContract: {
|
|
6080
6099
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
6081
6100
|
message: z.ZodString;
|
6082
6101
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
6083
|
-
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"]>;
|
6102
|
+
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"]>;
|
6084
6103
|
readAt: z.ZodDate;
|
6085
6104
|
metadata: z.ZodAny;
|
6086
6105
|
platformId: z.ZodString;
|
@@ -7154,6 +7173,7 @@ export declare const messengerContract: {
|
|
7154
7173
|
channelId: string;
|
7155
7174
|
socialPlatformId: string;
|
7156
7175
|
}>;
|
7176
|
+
csatStatus: z.ZodNullable<z.ZodString>;
|
7157
7177
|
actor: z.ZodObject<{
|
7158
7178
|
id: z.ZodString;
|
7159
7179
|
createdAt: z.ZodDate;
|
@@ -7632,6 +7652,7 @@ export declare const messengerContract: {
|
|
7632
7652
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
7633
7653
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
7634
7654
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
7655
|
+
isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
|
7635
7656
|
}, "strip", z.ZodTypeAny, {
|
7636
7657
|
name: string;
|
7637
7658
|
id: string;
|
@@ -7661,6 +7682,7 @@ export declare const messengerContract: {
|
|
7661
7682
|
lineRichMenuId?: string | null | undefined;
|
7662
7683
|
messengerIntegrationType?: "own" | "business" | undefined;
|
7663
7684
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
7685
|
+
isCSATEnabled?: boolean | undefined;
|
7664
7686
|
}, {
|
7665
7687
|
name: string;
|
7666
7688
|
id: string;
|
@@ -7690,6 +7712,7 @@ export declare const messengerContract: {
|
|
7690
7712
|
lineRichMenuId?: string | null | undefined;
|
7691
7713
|
messengerIntegrationType?: "own" | "business" | undefined;
|
7692
7714
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
7715
|
+
isCSATEnabled?: boolean | undefined;
|
7693
7716
|
}>;
|
7694
7717
|
brandName: z.ZodString;
|
7695
7718
|
platformId: z.ZodString;
|
@@ -7953,6 +7976,7 @@ export declare const messengerContract: {
|
|
7953
7976
|
lineRichMenuId?: string | null | undefined;
|
7954
7977
|
messengerIntegrationType?: "own" | "business" | undefined;
|
7955
7978
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
7979
|
+
isCSATEnabled?: boolean | undefined;
|
7956
7980
|
};
|
7957
7981
|
status: boolean;
|
7958
7982
|
createdAt: Date;
|
@@ -8047,6 +8071,7 @@ export declare const messengerContract: {
|
|
8047
8071
|
lineRichMenuId?: string | null | undefined;
|
8048
8072
|
messengerIntegrationType?: "own" | "business" | undefined;
|
8049
8073
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
8074
|
+
isCSATEnabled?: boolean | undefined;
|
8050
8075
|
};
|
8051
8076
|
status: boolean;
|
8052
8077
|
createdAt: Date;
|
@@ -8705,6 +8730,7 @@ export declare const messengerContract: {
|
|
8705
8730
|
lineRichMenuId?: string | null | undefined;
|
8706
8731
|
messengerIntegrationType?: "own" | "business" | undefined;
|
8707
8732
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
8733
|
+
isCSATEnabled?: boolean | undefined;
|
8708
8734
|
};
|
8709
8735
|
status: boolean;
|
8710
8736
|
createdAt: Date;
|
@@ -8996,6 +9022,7 @@ export declare const messengerContract: {
|
|
8996
9022
|
closedAt: Date;
|
8997
9023
|
lastMessageAt: Date | null;
|
8998
9024
|
isBotRoom: boolean;
|
9025
|
+
csatStatus: string | null;
|
8999
9026
|
cxlog: {
|
9000
9027
|
id: string;
|
9001
9028
|
channel: string | null;
|
@@ -9132,6 +9159,7 @@ export declare const messengerContract: {
|
|
9132
9159
|
lineRichMenuId?: string | null | undefined;
|
9133
9160
|
messengerIntegrationType?: "own" | "business" | undefined;
|
9134
9161
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
9162
|
+
isCSATEnabled?: boolean | undefined;
|
9135
9163
|
};
|
9136
9164
|
status: boolean;
|
9137
9165
|
createdAt: Date;
|
@@ -9423,6 +9451,7 @@ export declare const messengerContract: {
|
|
9423
9451
|
closedAt: Date;
|
9424
9452
|
lastMessageAt: Date | null;
|
9425
9453
|
isBotRoom: boolean;
|
9454
|
+
csatStatus: string | null;
|
9426
9455
|
cxlog: {
|
9427
9456
|
id: string;
|
9428
9457
|
channel: string | null;
|
@@ -9566,7 +9595,7 @@ export declare const messengerContract: {
|
|
9566
9595
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
9567
9596
|
message: z.ZodString;
|
9568
9597
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
9569
|
-
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"]>;
|
9598
|
+
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"]>;
|
9570
9599
|
readAt: z.ZodDate;
|
9571
9600
|
metadata: z.ZodAny;
|
9572
9601
|
platformId: z.ZodString;
|
@@ -10224,7 +10253,7 @@ export declare const messengerContract: {
|
|
10224
10253
|
};
|
10225
10254
|
}>;
|
10226
10255
|
}, "strip", z.ZodTypeAny, {
|
10227
|
-
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";
|
10256
|
+
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";
|
10228
10257
|
message: string;
|
10229
10258
|
id: string;
|
10230
10259
|
url: string;
|
@@ -10386,7 +10415,7 @@ export declare const messengerContract: {
|
|
10386
10415
|
metadata?: any;
|
10387
10416
|
template?: any;
|
10388
10417
|
}, {
|
10389
|
-
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";
|
10418
|
+
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";
|
10390
10419
|
message: string;
|
10391
10420
|
id: string;
|
10392
10421
|
url: string;
|
@@ -11188,7 +11217,7 @@ export declare const messengerContract: {
|
|
11188
11217
|
editedMessageid: z.ZodString;
|
11189
11218
|
label: z.ZodOptional<z.ZodString>;
|
11190
11219
|
}, "strip", z.ZodTypeAny, {
|
11191
|
-
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";
|
11220
|
+
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";
|
11192
11221
|
message: string;
|
11193
11222
|
id: string;
|
11194
11223
|
url: string;
|
@@ -11332,6 +11361,7 @@ export declare const messengerContract: {
|
|
11332
11361
|
lineRichMenuId?: string | null | undefined;
|
11333
11362
|
messengerIntegrationType?: "own" | "business" | undefined;
|
11334
11363
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
11364
|
+
isCSATEnabled?: boolean | undefined;
|
11335
11365
|
};
|
11336
11366
|
status: boolean;
|
11337
11367
|
createdAt: Date;
|
@@ -11623,6 +11653,7 @@ export declare const messengerContract: {
|
|
11623
11653
|
closedAt: Date;
|
11624
11654
|
lastMessageAt: Date | null;
|
11625
11655
|
isBotRoom: boolean;
|
11656
|
+
csatStatus: string | null;
|
11626
11657
|
cxlog: {
|
11627
11658
|
id: string;
|
11628
11659
|
channel: string | null;
|
@@ -11741,7 +11772,7 @@ export declare const messengerContract: {
|
|
11741
11772
|
previewUrl: string;
|
11742
11773
|
imageSetId: string;
|
11743
11774
|
repliedMessage: {
|
11744
|
-
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";
|
11775
|
+
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";
|
11745
11776
|
message: string;
|
11746
11777
|
id: string;
|
11747
11778
|
url: string;
|
@@ -11952,7 +11983,7 @@ export declare const messengerContract: {
|
|
11952
11983
|
template?: any;
|
11953
11984
|
label?: string | undefined;
|
11954
11985
|
}, {
|
11955
|
-
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";
|
11986
|
+
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";
|
11956
11987
|
message: string;
|
11957
11988
|
id: string;
|
11958
11989
|
url: string;
|
@@ -12096,6 +12127,7 @@ export declare const messengerContract: {
|
|
12096
12127
|
lineRichMenuId?: string | null | undefined;
|
12097
12128
|
messengerIntegrationType?: "own" | "business" | undefined;
|
12098
12129
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
12130
|
+
isCSATEnabled?: boolean | undefined;
|
12099
12131
|
};
|
12100
12132
|
status: boolean;
|
12101
12133
|
createdAt: Date;
|
@@ -12387,6 +12419,7 @@ export declare const messengerContract: {
|
|
12387
12419
|
closedAt: Date;
|
12388
12420
|
lastMessageAt: Date | null;
|
12389
12421
|
isBotRoom: boolean;
|
12422
|
+
csatStatus: string | null;
|
12390
12423
|
cxlog: {
|
12391
12424
|
id: string;
|
12392
12425
|
channel: string | null;
|
@@ -12505,7 +12538,7 @@ export declare const messengerContract: {
|
|
12505
12538
|
previewUrl: string;
|
12506
12539
|
imageSetId: string;
|
12507
12540
|
repliedMessage: {
|
12508
|
-
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";
|
12541
|
+
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";
|
12509
12542
|
message: string;
|
12510
12543
|
id: string;
|
12511
12544
|
url: string;
|
@@ -12717,7 +12750,7 @@ export declare const messengerContract: {
|
|
12717
12750
|
label?: string | undefined;
|
12718
12751
|
}>>>;
|
12719
12752
|
}, "strip", z.ZodTypeAny, {
|
12720
|
-
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";
|
12753
|
+
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";
|
12721
12754
|
message: string;
|
12722
12755
|
id: string;
|
12723
12756
|
url: string;
|
@@ -12861,6 +12894,7 @@ export declare const messengerContract: {
|
|
12861
12894
|
lineRichMenuId?: string | null | undefined;
|
12862
12895
|
messengerIntegrationType?: "own" | "business" | undefined;
|
12863
12896
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
12897
|
+
isCSATEnabled?: boolean | undefined;
|
12864
12898
|
};
|
12865
12899
|
status: boolean;
|
12866
12900
|
createdAt: Date;
|
@@ -13152,6 +13186,7 @@ export declare const messengerContract: {
|
|
13152
13186
|
closedAt: Date;
|
13153
13187
|
lastMessageAt: Date | null;
|
13154
13188
|
isBotRoom: boolean;
|
13189
|
+
csatStatus: string | null;
|
13155
13190
|
cxlog: {
|
13156
13191
|
id: string;
|
13157
13192
|
channel: string | null;
|
@@ -13270,7 +13305,7 @@ export declare const messengerContract: {
|
|
13270
13305
|
previewUrl: string;
|
13271
13306
|
imageSetId: string;
|
13272
13307
|
repliedMessage: {
|
13273
|
-
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";
|
13308
|
+
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";
|
13274
13309
|
message: string;
|
13275
13310
|
id: string;
|
13276
13311
|
url: string;
|
@@ -13481,7 +13516,7 @@ export declare const messengerContract: {
|
|
13481
13516
|
template?: any;
|
13482
13517
|
metadata?: any;
|
13483
13518
|
fromMessage?: {
|
13484
|
-
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";
|
13519
|
+
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";
|
13485
13520
|
message: string;
|
13486
13521
|
id: string;
|
13487
13522
|
url: string;
|
@@ -13625,6 +13660,7 @@ export declare const messengerContract: {
|
|
13625
13660
|
lineRichMenuId?: string | null | undefined;
|
13626
13661
|
messengerIntegrationType?: "own" | "business" | undefined;
|
13627
13662
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
13663
|
+
isCSATEnabled?: boolean | undefined;
|
13628
13664
|
};
|
13629
13665
|
status: boolean;
|
13630
13666
|
createdAt: Date;
|
@@ -13916,6 +13952,7 @@ export declare const messengerContract: {
|
|
13916
13952
|
closedAt: Date;
|
13917
13953
|
lastMessageAt: Date | null;
|
13918
13954
|
isBotRoom: boolean;
|
13955
|
+
csatStatus: string | null;
|
13919
13956
|
cxlog: {
|
13920
13957
|
id: string;
|
13921
13958
|
channel: string | null;
|
@@ -14034,7 +14071,7 @@ export declare const messengerContract: {
|
|
14034
14071
|
previewUrl: string;
|
14035
14072
|
imageSetId: string;
|
14036
14073
|
repliedMessage: {
|
14037
|
-
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";
|
14074
|
+
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";
|
14038
14075
|
message: string;
|
14039
14076
|
id: string;
|
14040
14077
|
url: string;
|
@@ -14246,7 +14283,7 @@ export declare const messengerContract: {
|
|
14246
14283
|
label?: string | undefined;
|
14247
14284
|
} | null | undefined;
|
14248
14285
|
}, {
|
14249
|
-
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";
|
14286
|
+
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";
|
14250
14287
|
message: string;
|
14251
14288
|
id: string;
|
14252
14289
|
url: string;
|
@@ -14390,6 +14427,7 @@ export declare const messengerContract: {
|
|
14390
14427
|
lineRichMenuId?: string | null | undefined;
|
14391
14428
|
messengerIntegrationType?: "own" | "business" | undefined;
|
14392
14429
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
14430
|
+
isCSATEnabled?: boolean | undefined;
|
14393
14431
|
};
|
14394
14432
|
status: boolean;
|
14395
14433
|
createdAt: Date;
|
@@ -14681,6 +14719,7 @@ export declare const messengerContract: {
|
|
14681
14719
|
closedAt: Date;
|
14682
14720
|
lastMessageAt: Date | null;
|
14683
14721
|
isBotRoom: boolean;
|
14722
|
+
csatStatus: string | null;
|
14684
14723
|
cxlog: {
|
14685
14724
|
id: string;
|
14686
14725
|
channel: string | null;
|
@@ -14799,7 +14838,7 @@ export declare const messengerContract: {
|
|
14799
14838
|
previewUrl: string;
|
14800
14839
|
imageSetId: string;
|
14801
14840
|
repliedMessage: {
|
14802
|
-
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";
|
14841
|
+
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";
|
14803
14842
|
message: string;
|
14804
14843
|
id: string;
|
14805
14844
|
url: string;
|
@@ -15010,7 +15049,7 @@ export declare const messengerContract: {
|
|
15010
15049
|
template?: any;
|
15011
15050
|
metadata?: any;
|
15012
15051
|
fromMessage?: {
|
15013
|
-
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";
|
15052
|
+
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";
|
15014
15053
|
message: string;
|
15015
15054
|
id: string;
|
15016
15055
|
url: string;
|
@@ -15154,6 +15193,7 @@ export declare const messengerContract: {
|
|
15154
15193
|
lineRichMenuId?: string | null | undefined;
|
15155
15194
|
messengerIntegrationType?: "own" | "business" | undefined;
|
15156
15195
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
15196
|
+
isCSATEnabled?: boolean | undefined;
|
15157
15197
|
};
|
15158
15198
|
status: boolean;
|
15159
15199
|
createdAt: Date;
|
@@ -15445,6 +15485,7 @@ export declare const messengerContract: {
|
|
15445
15485
|
closedAt: Date;
|
15446
15486
|
lastMessageAt: Date | null;
|
15447
15487
|
isBotRoom: boolean;
|
15488
|
+
csatStatus: string | null;
|
15448
15489
|
cxlog: {
|
15449
15490
|
id: string;
|
15450
15491
|
channel: string | null;
|
@@ -15563,7 +15604,7 @@ export declare const messengerContract: {
|
|
15563
15604
|
previewUrl: string;
|
15564
15605
|
imageSetId: string;
|
15565
15606
|
repliedMessage: {
|
15566
|
-
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";
|
15607
|
+
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";
|
15567
15608
|
message: string;
|
15568
15609
|
id: string;
|
15569
15610
|
url: string;
|
@@ -15777,7 +15818,7 @@ export declare const messengerContract: {
|
|
15777
15818
|
}>;
|
15778
15819
|
}, "strip", z.ZodTypeAny, {
|
15779
15820
|
data: {
|
15780
|
-
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";
|
15821
|
+
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";
|
15781
15822
|
message: string;
|
15782
15823
|
id: string;
|
15783
15824
|
url: string;
|
@@ -15921,6 +15962,7 @@ export declare const messengerContract: {
|
|
15921
15962
|
lineRichMenuId?: string | null | undefined;
|
15922
15963
|
messengerIntegrationType?: "own" | "business" | undefined;
|
15923
15964
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
15965
|
+
isCSATEnabled?: boolean | undefined;
|
15924
15966
|
};
|
15925
15967
|
status: boolean;
|
15926
15968
|
createdAt: Date;
|
@@ -16212,6 +16254,7 @@ export declare const messengerContract: {
|
|
16212
16254
|
closedAt: Date;
|
16213
16255
|
lastMessageAt: Date | null;
|
16214
16256
|
isBotRoom: boolean;
|
16257
|
+
csatStatus: string | null;
|
16215
16258
|
cxlog: {
|
16216
16259
|
id: string;
|
16217
16260
|
channel: string | null;
|
@@ -16330,7 +16373,7 @@ export declare const messengerContract: {
|
|
16330
16373
|
previewUrl: string;
|
16331
16374
|
imageSetId: string;
|
16332
16375
|
repliedMessage: {
|
16333
|
-
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";
|
16376
|
+
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";
|
16334
16377
|
message: string;
|
16335
16378
|
id: string;
|
16336
16379
|
url: string;
|
@@ -16541,7 +16584,7 @@ export declare const messengerContract: {
|
|
16541
16584
|
template?: any;
|
16542
16585
|
metadata?: any;
|
16543
16586
|
fromMessage?: {
|
16544
|
-
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";
|
16587
|
+
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";
|
16545
16588
|
message: string;
|
16546
16589
|
id: string;
|
16547
16590
|
url: string;
|
@@ -16685,6 +16728,7 @@ export declare const messengerContract: {
|
|
16685
16728
|
lineRichMenuId?: string | null | undefined;
|
16686
16729
|
messengerIntegrationType?: "own" | "business" | undefined;
|
16687
16730
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
16731
|
+
isCSATEnabled?: boolean | undefined;
|
16688
16732
|
};
|
16689
16733
|
status: boolean;
|
16690
16734
|
createdAt: Date;
|
@@ -16976,6 +17020,7 @@ export declare const messengerContract: {
|
|
16976
17020
|
closedAt: Date;
|
16977
17021
|
lastMessageAt: Date | null;
|
16978
17022
|
isBotRoom: boolean;
|
17023
|
+
csatStatus: string | null;
|
16979
17024
|
cxlog: {
|
16980
17025
|
id: string;
|
16981
17026
|
channel: string | null;
|
@@ -17094,7 +17139,7 @@ export declare const messengerContract: {
|
|
17094
17139
|
previewUrl: string;
|
17095
17140
|
imageSetId: string;
|
17096
17141
|
repliedMessage: {
|
17097
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
|
17142
|
+
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";
|
17098
17143
|
message: string;
|
17099
17144
|
id: string;
|
17100
17145
|
url: string;
|
@@ -17309,7 +17354,7 @@ export declare const messengerContract: {
|
|
17309
17354
|
requestId: string;
|
17310
17355
|
}, {
|
17311
17356
|
data: {
|
17312
|
-
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";
|
17357
|
+
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";
|
17313
17358
|
message: string;
|
17314
17359
|
id: string;
|
17315
17360
|
url: string;
|
@@ -17453,6 +17498,7 @@ export declare const messengerContract: {
|
|
17453
17498
|
lineRichMenuId?: string | null | undefined;
|
17454
17499
|
messengerIntegrationType?: "own" | "business" | undefined;
|
17455
17500
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
17501
|
+
isCSATEnabled?: boolean | undefined;
|
17456
17502
|
};
|
17457
17503
|
status: boolean;
|
17458
17504
|
createdAt: Date;
|
@@ -17744,6 +17790,7 @@ export declare const messengerContract: {
|
|
17744
17790
|
closedAt: Date;
|
17745
17791
|
lastMessageAt: Date | null;
|
17746
17792
|
isBotRoom: boolean;
|
17793
|
+
csatStatus: string | null;
|
17747
17794
|
cxlog: {
|
17748
17795
|
id: string;
|
17749
17796
|
channel: string | null;
|
@@ -17862,7 +17909,7 @@ export declare const messengerContract: {
|
|
17862
17909
|
previewUrl: string;
|
17863
17910
|
imageSetId: string;
|
17864
17911
|
repliedMessage: {
|
17865
|
-
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";
|
17912
|
+
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";
|
17866
17913
|
message: string;
|
17867
17914
|
id: string;
|
17868
17915
|
url: string;
|
@@ -18073,7 +18120,7 @@ export declare const messengerContract: {
|
|
18073
18120
|
template?: any;
|
18074
18121
|
metadata?: any;
|
18075
18122
|
fromMessage?: {
|
18076
|
-
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";
|
18123
|
+
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";
|
18077
18124
|
message: string;
|
18078
18125
|
id: string;
|
18079
18126
|
url: string;
|
@@ -18217,6 +18264,7 @@ export declare const messengerContract: {
|
|
18217
18264
|
lineRichMenuId?: string | null | undefined;
|
18218
18265
|
messengerIntegrationType?: "own" | "business" | undefined;
|
18219
18266
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
18267
|
+
isCSATEnabled?: boolean | undefined;
|
18220
18268
|
};
|
18221
18269
|
status: boolean;
|
18222
18270
|
createdAt: Date;
|
@@ -18508,6 +18556,7 @@ export declare const messengerContract: {
|
|
18508
18556
|
closedAt: Date;
|
18509
18557
|
lastMessageAt: Date | null;
|
18510
18558
|
isBotRoom: boolean;
|
18559
|
+
csatStatus: string | null;
|
18511
18560
|
cxlog: {
|
18512
18561
|
id: string;
|
18513
18562
|
channel: string | null;
|
@@ -18626,7 +18675,7 @@ export declare const messengerContract: {
|
|
18626
18675
|
previewUrl: string;
|
18627
18676
|
imageSetId: string;
|
18628
18677
|
repliedMessage: {
|
18629
|
-
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";
|
18678
|
+
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";
|
18630
18679
|
message: string;
|
18631
18680
|
id: string;
|
18632
18681
|
url: string;
|
@@ -18931,6 +18980,7 @@ export declare const messengerContract: {
|
|
18931
18980
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
18932
18981
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
18933
18982
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
18983
|
+
isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
|
18934
18984
|
}, "strip", z.ZodTypeAny, {
|
18935
18985
|
name: string;
|
18936
18986
|
id: string;
|
@@ -18960,6 +19010,7 @@ export declare const messengerContract: {
|
|
18960
19010
|
lineRichMenuId?: string | null | undefined;
|
18961
19011
|
messengerIntegrationType?: "own" | "business" | undefined;
|
18962
19012
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
19013
|
+
isCSATEnabled?: boolean | undefined;
|
18963
19014
|
}, {
|
18964
19015
|
name: string;
|
18965
19016
|
id: string;
|
@@ -18989,6 +19040,7 @@ export declare const messengerContract: {
|
|
18989
19040
|
lineRichMenuId?: string | null | undefined;
|
18990
19041
|
messengerIntegrationType?: "own" | "business" | undefined;
|
18991
19042
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
19043
|
+
isCSATEnabled?: boolean | undefined;
|
18992
19044
|
}>>;
|
18993
19045
|
platformId: z.ZodOptional<z.ZodString>;
|
18994
19046
|
brandName: z.ZodOptional<z.ZodString>;
|
@@ -19048,6 +19100,7 @@ export declare const messengerContract: {
|
|
19048
19100
|
lineRichMenuId?: string | null | undefined;
|
19049
19101
|
messengerIntegrationType?: "own" | "business" | undefined;
|
19050
19102
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
19103
|
+
isCSATEnabled?: boolean | undefined;
|
19051
19104
|
} | undefined;
|
19052
19105
|
platformId?: string | undefined;
|
19053
19106
|
brandName?: string | undefined;
|
@@ -19095,6 +19148,7 @@ export declare const messengerContract: {
|
|
19095
19148
|
lineRichMenuId?: string | null | undefined;
|
19096
19149
|
messengerIntegrationType?: "own" | "business" | undefined;
|
19097
19150
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
19151
|
+
isCSATEnabled?: boolean | undefined;
|
19098
19152
|
} | undefined;
|
19099
19153
|
platformId?: string | undefined;
|
19100
19154
|
brandName?: string | undefined;
|
@@ -19181,6 +19235,7 @@ export declare const messengerContract: {
|
|
19181
19235
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
19182
19236
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
19183
19237
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
19238
|
+
isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
|
19184
19239
|
}, "strip", z.ZodTypeAny, {
|
19185
19240
|
name: string;
|
19186
19241
|
id: string;
|
@@ -19210,6 +19265,7 @@ export declare const messengerContract: {
|
|
19210
19265
|
lineRichMenuId?: string | null | undefined;
|
19211
19266
|
messengerIntegrationType?: "own" | "business" | undefined;
|
19212
19267
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
19268
|
+
isCSATEnabled?: boolean | undefined;
|
19213
19269
|
}, {
|
19214
19270
|
name: string;
|
19215
19271
|
id: string;
|
@@ -19239,6 +19295,7 @@ export declare const messengerContract: {
|
|
19239
19295
|
lineRichMenuId?: string | null | undefined;
|
19240
19296
|
messengerIntegrationType?: "own" | "business" | undefined;
|
19241
19297
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
19298
|
+
isCSATEnabled?: boolean | undefined;
|
19242
19299
|
}>;
|
19243
19300
|
platformId: z.ZodString;
|
19244
19301
|
brandName: z.ZodString;
|
@@ -19298,6 +19355,7 @@ export declare const messengerContract: {
|
|
19298
19355
|
lineRichMenuId?: string | null | undefined;
|
19299
19356
|
messengerIntegrationType?: "own" | "business" | undefined;
|
19300
19357
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
19358
|
+
isCSATEnabled?: boolean | undefined;
|
19301
19359
|
};
|
19302
19360
|
status: boolean;
|
19303
19361
|
brandName: string;
|
@@ -19345,6 +19403,7 @@ export declare const messengerContract: {
|
|
19345
19403
|
lineRichMenuId?: string | null | undefined;
|
19346
19404
|
messengerIntegrationType?: "own" | "business" | undefined;
|
19347
19405
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
19406
|
+
isCSATEnabled?: boolean | undefined;
|
19348
19407
|
};
|
19349
19408
|
status: boolean;
|
19350
19409
|
brandName: string;
|
@@ -19394,6 +19453,7 @@ export declare const messengerContract: {
|
|
19394
19453
|
lineRichMenuId?: string | null | undefined;
|
19395
19454
|
messengerIntegrationType?: "own" | "business" | undefined;
|
19396
19455
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
19456
|
+
isCSATEnabled?: boolean | undefined;
|
19397
19457
|
};
|
19398
19458
|
status: boolean;
|
19399
19459
|
brandName: string;
|
@@ -19444,6 +19504,7 @@ export declare const messengerContract: {
|
|
19444
19504
|
lineRichMenuId?: string | null | undefined;
|
19445
19505
|
messengerIntegrationType?: "own" | "business" | undefined;
|
19446
19506
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
19507
|
+
isCSATEnabled?: boolean | undefined;
|
19447
19508
|
};
|
19448
19509
|
status: boolean;
|
19449
19510
|
brandName: string;
|
@@ -19552,6 +19613,7 @@ export declare const messengerContract: {
|
|
19552
19613
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
19553
19614
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
19554
19615
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
19616
|
+
isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
|
19555
19617
|
}, "strip", z.ZodTypeAny, {
|
19556
19618
|
name: string;
|
19557
19619
|
id: string;
|
@@ -19581,6 +19643,7 @@ export declare const messengerContract: {
|
|
19581
19643
|
lineRichMenuId?: string | null | undefined;
|
19582
19644
|
messengerIntegrationType?: "own" | "business" | undefined;
|
19583
19645
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
19646
|
+
isCSATEnabled?: boolean | undefined;
|
19584
19647
|
}, {
|
19585
19648
|
name: string;
|
19586
19649
|
id: string;
|
@@ -19610,6 +19673,7 @@ export declare const messengerContract: {
|
|
19610
19673
|
lineRichMenuId?: string | null | undefined;
|
19611
19674
|
messengerIntegrationType?: "own" | "business" | undefined;
|
19612
19675
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
19676
|
+
isCSATEnabled?: boolean | undefined;
|
19613
19677
|
}>>;
|
19614
19678
|
platformId: z.ZodOptional<z.ZodString>;
|
19615
19679
|
brandName: z.ZodOptional<z.ZodString>;
|
@@ -19669,6 +19733,7 @@ export declare const messengerContract: {
|
|
19669
19733
|
lineRichMenuId?: string | null | undefined;
|
19670
19734
|
messengerIntegrationType?: "own" | "business" | undefined;
|
19671
19735
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
19736
|
+
isCSATEnabled?: boolean | undefined;
|
19672
19737
|
} | undefined;
|
19673
19738
|
platformId?: string | undefined;
|
19674
19739
|
brandName?: string | undefined;
|
@@ -19716,6 +19781,7 @@ export declare const messengerContract: {
|
|
19716
19781
|
lineRichMenuId?: string | null | undefined;
|
19717
19782
|
messengerIntegrationType?: "own" | "business" | undefined;
|
19718
19783
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
19784
|
+
isCSATEnabled?: boolean | undefined;
|
19719
19785
|
} | undefined;
|
19720
19786
|
platformId?: string | undefined;
|
19721
19787
|
brandName?: string | undefined;
|
@@ -19802,6 +19868,7 @@ export declare const messengerContract: {
|
|
19802
19868
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
19803
19869
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
19804
19870
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
19871
|
+
isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
|
19805
19872
|
}, "strip", z.ZodTypeAny, {
|
19806
19873
|
name: string;
|
19807
19874
|
id: string;
|
@@ -19831,6 +19898,7 @@ export declare const messengerContract: {
|
|
19831
19898
|
lineRichMenuId?: string | null | undefined;
|
19832
19899
|
messengerIntegrationType?: "own" | "business" | undefined;
|
19833
19900
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
19901
|
+
isCSATEnabled?: boolean | undefined;
|
19834
19902
|
}, {
|
19835
19903
|
name: string;
|
19836
19904
|
id: string;
|
@@ -19860,6 +19928,7 @@ export declare const messengerContract: {
|
|
19860
19928
|
lineRichMenuId?: string | null | undefined;
|
19861
19929
|
messengerIntegrationType?: "own" | "business" | undefined;
|
19862
19930
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
19931
|
+
isCSATEnabled?: boolean | undefined;
|
19863
19932
|
}>;
|
19864
19933
|
platformId: z.ZodString;
|
19865
19934
|
brandName: z.ZodString;
|
@@ -19919,6 +19988,7 @@ export declare const messengerContract: {
|
|
19919
19988
|
lineRichMenuId?: string | null | undefined;
|
19920
19989
|
messengerIntegrationType?: "own" | "business" | undefined;
|
19921
19990
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
19991
|
+
isCSATEnabled?: boolean | undefined;
|
19922
19992
|
};
|
19923
19993
|
status: boolean;
|
19924
19994
|
brandName: string;
|
@@ -19966,6 +20036,7 @@ export declare const messengerContract: {
|
|
19966
20036
|
lineRichMenuId?: string | null | undefined;
|
19967
20037
|
messengerIntegrationType?: "own" | "business" | undefined;
|
19968
20038
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
20039
|
+
isCSATEnabled?: boolean | undefined;
|
19969
20040
|
};
|
19970
20041
|
status: boolean;
|
19971
20042
|
brandName: string;
|
@@ -20015,6 +20086,7 @@ export declare const messengerContract: {
|
|
20015
20086
|
lineRichMenuId?: string | null | undefined;
|
20016
20087
|
messengerIntegrationType?: "own" | "business" | undefined;
|
20017
20088
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
20089
|
+
isCSATEnabled?: boolean | undefined;
|
20018
20090
|
};
|
20019
20091
|
status: boolean;
|
20020
20092
|
brandName: string;
|
@@ -20065,6 +20137,7 @@ export declare const messengerContract: {
|
|
20065
20137
|
lineRichMenuId?: string | null | undefined;
|
20066
20138
|
messengerIntegrationType?: "own" | "business" | undefined;
|
20067
20139
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
20140
|
+
isCSATEnabled?: boolean | undefined;
|
20068
20141
|
};
|
20069
20142
|
status: boolean;
|
20070
20143
|
brandName: string;
|
@@ -20185,6 +20258,7 @@ export declare const messengerContract: {
|
|
20185
20258
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
20186
20259
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
20187
20260
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
20261
|
+
isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
|
20188
20262
|
}, "strip", z.ZodTypeAny, {
|
20189
20263
|
name: string;
|
20190
20264
|
id: string;
|
@@ -20214,6 +20288,7 @@ export declare const messengerContract: {
|
|
20214
20288
|
lineRichMenuId?: string | null | undefined;
|
20215
20289
|
messengerIntegrationType?: "own" | "business" | undefined;
|
20216
20290
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
20291
|
+
isCSATEnabled?: boolean | undefined;
|
20217
20292
|
}, {
|
20218
20293
|
name: string;
|
20219
20294
|
id: string;
|
@@ -20243,6 +20318,7 @@ export declare const messengerContract: {
|
|
20243
20318
|
lineRichMenuId?: string | null | undefined;
|
20244
20319
|
messengerIntegrationType?: "own" | "business" | undefined;
|
20245
20320
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
20321
|
+
isCSATEnabled?: boolean | undefined;
|
20246
20322
|
}>;
|
20247
20323
|
platformId: z.ZodString;
|
20248
20324
|
brandName: z.ZodString;
|
@@ -20302,6 +20378,7 @@ export declare const messengerContract: {
|
|
20302
20378
|
lineRichMenuId?: string | null | undefined;
|
20303
20379
|
messengerIntegrationType?: "own" | "business" | undefined;
|
20304
20380
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
20381
|
+
isCSATEnabled?: boolean | undefined;
|
20305
20382
|
};
|
20306
20383
|
status: boolean;
|
20307
20384
|
brandName: string;
|
@@ -20349,6 +20426,7 @@ export declare const messengerContract: {
|
|
20349
20426
|
lineRichMenuId?: string | null | undefined;
|
20350
20427
|
messengerIntegrationType?: "own" | "business" | undefined;
|
20351
20428
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
20429
|
+
isCSATEnabled?: boolean | undefined;
|
20352
20430
|
};
|
20353
20431
|
status: boolean;
|
20354
20432
|
brandName: string;
|
@@ -20398,6 +20476,7 @@ export declare const messengerContract: {
|
|
20398
20476
|
lineRichMenuId?: string | null | undefined;
|
20399
20477
|
messengerIntegrationType?: "own" | "business" | undefined;
|
20400
20478
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
20479
|
+
isCSATEnabled?: boolean | undefined;
|
20401
20480
|
};
|
20402
20481
|
status: boolean;
|
20403
20482
|
brandName: string;
|
@@ -20448,6 +20527,7 @@ export declare const messengerContract: {
|
|
20448
20527
|
lineRichMenuId?: string | null | undefined;
|
20449
20528
|
messengerIntegrationType?: "own" | "business" | undefined;
|
20450
20529
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
20530
|
+
isCSATEnabled?: boolean | undefined;
|
20451
20531
|
};
|
20452
20532
|
status: boolean;
|
20453
20533
|
brandName: string;
|
@@ -20568,6 +20648,7 @@ export declare const messengerContract: {
|
|
20568
20648
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
20569
20649
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
20570
20650
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
20651
|
+
isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
|
20571
20652
|
}, "strip", z.ZodTypeAny, {
|
20572
20653
|
name: string;
|
20573
20654
|
id: string;
|
@@ -20597,6 +20678,7 @@ export declare const messengerContract: {
|
|
20597
20678
|
lineRichMenuId?: string | null | undefined;
|
20598
20679
|
messengerIntegrationType?: "own" | "business" | undefined;
|
20599
20680
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
20681
|
+
isCSATEnabled?: boolean | undefined;
|
20600
20682
|
}, {
|
20601
20683
|
name: string;
|
20602
20684
|
id: string;
|
@@ -20626,6 +20708,7 @@ export declare const messengerContract: {
|
|
20626
20708
|
lineRichMenuId?: string | null | undefined;
|
20627
20709
|
messengerIntegrationType?: "own" | "business" | undefined;
|
20628
20710
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
20711
|
+
isCSATEnabled?: boolean | undefined;
|
20629
20712
|
}>;
|
20630
20713
|
platformId: z.ZodString;
|
20631
20714
|
brandName: z.ZodString;
|
@@ -20685,6 +20768,7 @@ export declare const messengerContract: {
|
|
20685
20768
|
lineRichMenuId?: string | null | undefined;
|
20686
20769
|
messengerIntegrationType?: "own" | "business" | undefined;
|
20687
20770
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
20771
|
+
isCSATEnabled?: boolean | undefined;
|
20688
20772
|
};
|
20689
20773
|
status: boolean;
|
20690
20774
|
brandName: string;
|
@@ -20732,6 +20816,7 @@ export declare const messengerContract: {
|
|
20732
20816
|
lineRichMenuId?: string | null | undefined;
|
20733
20817
|
messengerIntegrationType?: "own" | "business" | undefined;
|
20734
20818
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
20819
|
+
isCSATEnabled?: boolean | undefined;
|
20735
20820
|
};
|
20736
20821
|
status: boolean;
|
20737
20822
|
brandName: string;
|
@@ -20781,6 +20866,7 @@ export declare const messengerContract: {
|
|
20781
20866
|
lineRichMenuId?: string | null | undefined;
|
20782
20867
|
messengerIntegrationType?: "own" | "business" | undefined;
|
20783
20868
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
20869
|
+
isCSATEnabled?: boolean | undefined;
|
20784
20870
|
};
|
20785
20871
|
status: boolean;
|
20786
20872
|
brandName: string;
|
@@ -20831,6 +20917,7 @@ export declare const messengerContract: {
|
|
20831
20917
|
lineRichMenuId?: string | null | undefined;
|
20832
20918
|
messengerIntegrationType?: "own" | "business" | undefined;
|
20833
20919
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
20920
|
+
isCSATEnabled?: boolean | undefined;
|
20834
20921
|
};
|
20835
20922
|
status: boolean;
|
20836
20923
|
brandName: string;
|
@@ -20938,6 +21025,7 @@ export declare const messengerContract: {
|
|
20938
21025
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
20939
21026
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
20940
21027
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
21028
|
+
isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
|
20941
21029
|
}, "strip", z.ZodTypeAny, {
|
20942
21030
|
name: string;
|
20943
21031
|
id: string;
|
@@ -20967,6 +21055,7 @@ export declare const messengerContract: {
|
|
20967
21055
|
lineRichMenuId?: string | null | undefined;
|
20968
21056
|
messengerIntegrationType?: "own" | "business" | undefined;
|
20969
21057
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
21058
|
+
isCSATEnabled?: boolean | undefined;
|
20970
21059
|
}, {
|
20971
21060
|
name: string;
|
20972
21061
|
id: string;
|
@@ -20996,6 +21085,7 @@ export declare const messengerContract: {
|
|
20996
21085
|
lineRichMenuId?: string | null | undefined;
|
20997
21086
|
messengerIntegrationType?: "own" | "business" | undefined;
|
20998
21087
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
21088
|
+
isCSATEnabled?: boolean | undefined;
|
20999
21089
|
}>;
|
21000
21090
|
status: z.ZodUnion<[z.ZodLiteral<true>, z.ZodLiteral<false>]>;
|
21001
21091
|
actor: z.ZodOptional<z.ZodObject<{
|
@@ -21060,6 +21150,7 @@ export declare const messengerContract: {
|
|
21060
21150
|
lineRichMenuId?: string | null | undefined;
|
21061
21151
|
messengerIntegrationType?: "own" | "business" | undefined;
|
21062
21152
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
21153
|
+
isCSATEnabled?: boolean | undefined;
|
21063
21154
|
};
|
21064
21155
|
status: boolean;
|
21065
21156
|
createdAt: string;
|
@@ -21111,6 +21202,7 @@ export declare const messengerContract: {
|
|
21111
21202
|
lineRichMenuId?: string | null | undefined;
|
21112
21203
|
messengerIntegrationType?: "own" | "business" | undefined;
|
21113
21204
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
21205
|
+
isCSATEnabled?: boolean | undefined;
|
21114
21206
|
};
|
21115
21207
|
status: boolean;
|
21116
21208
|
createdAt: string;
|
@@ -21201,6 +21293,7 @@ export declare const messengerContract: {
|
|
21201
21293
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
21202
21294
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
21203
21295
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
21296
|
+
isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
|
21204
21297
|
}, "strip", z.ZodTypeAny, {
|
21205
21298
|
name: string;
|
21206
21299
|
id: string;
|
@@ -21230,6 +21323,7 @@ export declare const messengerContract: {
|
|
21230
21323
|
lineRichMenuId?: string | null | undefined;
|
21231
21324
|
messengerIntegrationType?: "own" | "business" | undefined;
|
21232
21325
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
21326
|
+
isCSATEnabled?: boolean | undefined;
|
21233
21327
|
}, {
|
21234
21328
|
name: string;
|
21235
21329
|
id: string;
|
@@ -21259,6 +21353,7 @@ export declare const messengerContract: {
|
|
21259
21353
|
lineRichMenuId?: string | null | undefined;
|
21260
21354
|
messengerIntegrationType?: "own" | "business" | undefined;
|
21261
21355
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
21356
|
+
isCSATEnabled?: boolean | undefined;
|
21262
21357
|
}>;
|
21263
21358
|
platformId: z.ZodString;
|
21264
21359
|
brandName: z.ZodString;
|
@@ -21318,6 +21413,7 @@ export declare const messengerContract: {
|
|
21318
21413
|
lineRichMenuId?: string | null | undefined;
|
21319
21414
|
messengerIntegrationType?: "own" | "business" | undefined;
|
21320
21415
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
21416
|
+
isCSATEnabled?: boolean | undefined;
|
21321
21417
|
};
|
21322
21418
|
status: boolean;
|
21323
21419
|
brandName: string;
|
@@ -21365,6 +21461,7 @@ export declare const messengerContract: {
|
|
21365
21461
|
lineRichMenuId?: string | null | undefined;
|
21366
21462
|
messengerIntegrationType?: "own" | "business" | undefined;
|
21367
21463
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
21464
|
+
isCSATEnabled?: boolean | undefined;
|
21368
21465
|
};
|
21369
21466
|
status: boolean;
|
21370
21467
|
brandName: string;
|
@@ -21414,6 +21511,7 @@ export declare const messengerContract: {
|
|
21414
21511
|
lineRichMenuId?: string | null | undefined;
|
21415
21512
|
messengerIntegrationType?: "own" | "business" | undefined;
|
21416
21513
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
21514
|
+
isCSATEnabled?: boolean | undefined;
|
21417
21515
|
};
|
21418
21516
|
status: boolean;
|
21419
21517
|
brandName: string;
|
@@ -21464,6 +21562,7 @@ export declare const messengerContract: {
|
|
21464
21562
|
lineRichMenuId?: string | null | undefined;
|
21465
21563
|
messengerIntegrationType?: "own" | "business" | undefined;
|
21466
21564
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
21565
|
+
isCSATEnabled?: boolean | undefined;
|
21467
21566
|
};
|
21468
21567
|
status: boolean;
|
21469
21568
|
brandName: string;
|