@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.
Files changed (53) hide show
  1. package/dist/api-contracts/src/channel/index.d.ts +935 -0
  2. package/dist/api-contracts/src/channel/index.d.ts.map +1 -1
  3. package/dist/api-contracts/src/channel/schema.d.ts +8 -0
  4. package/dist/api-contracts/src/channel/schema.d.ts.map +1 -1
  5. package/dist/api-contracts/src/channel/validation.d.ts +10 -0
  6. package/dist/api-contracts/src/channel/validation.d.ts.map +1 -1
  7. package/dist/api-contracts/src/chat/index.d.ts +515 -169
  8. package/dist/api-contracts/src/chat/index.d.ts.map +1 -1
  9. package/dist/api-contracts/src/chat/schema.d.ts +124 -45
  10. package/dist/api-contracts/src/chat/schema.d.ts.map +1 -1
  11. package/dist/api-contracts/src/chat/validation.d.ts +151 -56
  12. package/dist/api-contracts/src/chat/validation.d.ts.map +1 -1
  13. package/dist/api-contracts/src/contract.d.ts +3238 -639
  14. package/dist/api-contracts/src/contract.d.ts.map +1 -1
  15. package/dist/api-contracts/src/cx-log/index.d.ts +11 -0
  16. package/dist/api-contracts/src/cx-log/index.d.ts.map +1 -1
  17. package/dist/api-contracts/src/cx-log/schema.d.ts +9 -0
  18. package/dist/api-contracts/src/cx-log/schema.d.ts.map +1 -1
  19. package/dist/api-contracts/src/facebook-feed/index.d.ts +165 -43
  20. package/dist/api-contracts/src/facebook-feed/index.d.ts.map +1 -1
  21. package/dist/api-contracts/src/facebook-feed/schema.d.ts +10 -3
  22. package/dist/api-contracts/src/facebook-feed/schema.d.ts.map +1 -1
  23. package/dist/api-contracts/src/facebook-feed/validation.d.ts +5 -0
  24. package/dist/api-contracts/src/facebook-feed/validation.d.ts.map +1 -1
  25. package/dist/api-contracts/src/instagram/index.d.ts +132 -33
  26. package/dist/api-contracts/src/instagram/index.d.ts.map +1 -1
  27. package/dist/api-contracts/src/line/index.d.ts +129 -38
  28. package/dist/api-contracts/src/line/index.d.ts.map +1 -1
  29. package/dist/api-contracts/src/line/validation.d.ts +14 -5
  30. package/dist/api-contracts/src/line/validation.d.ts.map +1 -1
  31. package/dist/api-contracts/src/messenger/index.d.ts +132 -33
  32. package/dist/api-contracts/src/messenger/index.d.ts.map +1 -1
  33. package/dist/api-contracts/src/messenger/validation.d.ts +5 -0
  34. package/dist/api-contracts/src/messenger/validation.d.ts.map +1 -1
  35. package/dist/api-contracts/src/sms/index.d.ts +42 -5
  36. package/dist/api-contracts/src/sms/index.d.ts.map +1 -1
  37. package/dist/api-contracts/src/telegram/index.d.ts +110 -33
  38. package/dist/api-contracts/src/telegram/index.d.ts.map +1 -1
  39. package/dist/api-contracts/src/viber/index.d.ts +110 -33
  40. package/dist/api-contracts/src/viber/index.d.ts.map +1 -1
  41. package/dist/api-contracts/src/webchat/index.d.ts +110 -33
  42. package/dist/api-contracts/src/webchat/index.d.ts.map +1 -1
  43. package/dist/api-contracts/src/whatsapp/index.d.ts +120 -33
  44. package/dist/api-contracts/src/whatsapp/index.d.ts.map +1 -1
  45. package/dist/api-contracts/src/workflow-rule/index.d.ts +58 -12
  46. package/dist/api-contracts/src/workflow-rule/index.d.ts.map +1 -1
  47. package/dist/entities/src/enums/chat.d.ts +12 -0
  48. package/dist/entities/src/enums/chat.d.ts.map +1 -1
  49. package/dist/index.js +21 -1
  50. package/dist/index.js.map +1 -1
  51. package/dist/index.mjs +21 -1
  52. package/dist/index.mjs.map +1 -1
  53. package/package.json +1 -1
@@ -193,6 +193,7 @@ export declare const platformWebchatContract: {
193
193
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
194
194
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
195
195
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
196
+ isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
196
197
  }, "strip", z.ZodTypeAny, {
197
198
  name: string;
198
199
  id: string;
@@ -222,6 +223,7 @@ export declare const platformWebchatContract: {
222
223
  lineRichMenuId?: string | null | undefined;
223
224
  messengerIntegrationType?: "own" | "business" | undefined;
224
225
  facebookFeedIntegrationType?: "own" | "business" | undefined;
226
+ isCSATEnabled?: boolean | undefined;
225
227
  }, {
226
228
  name: string;
227
229
  id: string;
@@ -251,6 +253,7 @@ export declare const platformWebchatContract: {
251
253
  lineRichMenuId?: string | null | undefined;
252
254
  messengerIntegrationType?: "own" | "business" | undefined;
253
255
  facebookFeedIntegrationType?: "own" | "business" | undefined;
256
+ isCSATEnabled?: boolean | undefined;
254
257
  }>;
255
258
  platformId: z.ZodString;
256
259
  brandName: z.ZodString;
@@ -310,6 +313,7 @@ export declare const platformWebchatContract: {
310
313
  lineRichMenuId?: string | null | undefined;
311
314
  messengerIntegrationType?: "own" | "business" | undefined;
312
315
  facebookFeedIntegrationType?: "own" | "business" | undefined;
316
+ isCSATEnabled?: boolean | undefined;
313
317
  };
314
318
  status: boolean;
315
319
  brandName: string;
@@ -357,6 +361,7 @@ export declare const platformWebchatContract: {
357
361
  lineRichMenuId?: string | null | undefined;
358
362
  messengerIntegrationType?: "own" | "business" | undefined;
359
363
  facebookFeedIntegrationType?: "own" | "business" | undefined;
364
+ isCSATEnabled?: boolean | undefined;
360
365
  };
361
366
  status: boolean;
362
367
  brandName: string;
@@ -409,6 +414,7 @@ export declare const platformWebchatContract: {
409
414
  lineRichMenuId?: string | null | undefined;
410
415
  messengerIntegrationType?: "own" | "business" | undefined;
411
416
  facebookFeedIntegrationType?: "own" | "business" | undefined;
417
+ isCSATEnabled?: boolean | undefined;
412
418
  };
413
419
  status: boolean;
414
420
  brandName: string;
@@ -500,6 +506,7 @@ export declare const platformWebchatContract: {
500
506
  lineRichMenuId?: string | null | undefined;
501
507
  messengerIntegrationType?: "own" | "business" | undefined;
502
508
  facebookFeedIntegrationType?: "own" | "business" | undefined;
509
+ isCSATEnabled?: boolean | undefined;
503
510
  };
504
511
  status: boolean;
505
512
  brandName: string;
@@ -561,7 +568,7 @@ export declare const platformWebchatContract: {
561
568
  id: z.ZodOptional<z.ZodString>;
562
569
  message: z.ZodOptional<z.ZodString>;
563
570
  direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
564
- 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"]>;
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", "csat", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
565
572
  readAt: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodString]>>>;
566
573
  metadata: z.ZodOptional<z.ZodAny>;
567
574
  platformId: z.ZodOptional<z.ZodString>;
@@ -617,7 +624,7 @@ export declare const platformWebchatContract: {
617
624
  editedAt: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodString]>>>;
618
625
  label: z.ZodOptional<z.ZodString>;
619
626
  }, "strip", z.ZodTypeAny, {
620
- 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";
627
+ 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";
621
628
  direction: "incoming" | "outgoing" | "system";
622
629
  id?: string | undefined;
623
630
  message?: string | undefined;
@@ -652,7 +659,7 @@ export declare const platformWebchatContract: {
652
659
  editedAt?: string | Date | null | undefined;
653
660
  label?: string | undefined;
654
661
  }, {
655
- 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";
662
+ 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";
656
663
  direction: "incoming" | "outgoing" | "system";
657
664
  id?: string | undefined;
658
665
  message?: string | undefined;
@@ -689,7 +696,7 @@ export declare const platformWebchatContract: {
689
696
  }>;
690
697
  }, "strip", z.ZodTypeAny, {
691
698
  message: {
692
- 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";
699
+ 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";
693
700
  direction: "incoming" | "outgoing" | "system";
694
701
  id?: string | undefined;
695
702
  message?: string | undefined;
@@ -759,6 +766,7 @@ export declare const platformWebchatContract: {
759
766
  lineRichMenuId?: string | null | undefined;
760
767
  messengerIntegrationType?: "own" | "business" | undefined;
761
768
  facebookFeedIntegrationType?: "own" | "business" | undefined;
769
+ isCSATEnabled?: boolean | undefined;
762
770
  };
763
771
  status: boolean;
764
772
  brandName: string;
@@ -819,7 +827,7 @@ export declare const platformWebchatContract: {
819
827
  isBot: boolean | null;
820
828
  }, {
821
829
  message: {
822
- 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";
830
+ 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";
823
831
  direction: "incoming" | "outgoing" | "system";
824
832
  id?: string | undefined;
825
833
  message?: string | undefined;
@@ -889,6 +897,7 @@ export declare const platformWebchatContract: {
889
897
  lineRichMenuId?: string | null | undefined;
890
898
  messengerIntegrationType?: "own" | "business" | undefined;
891
899
  facebookFeedIntegrationType?: "own" | "business" | undefined;
900
+ isCSATEnabled?: boolean | undefined;
892
901
  };
893
902
  status: boolean;
894
903
  brandName: string;
@@ -953,7 +962,7 @@ export declare const platformWebchatContract: {
953
962
  200: z.ZodObject<{
954
963
  requestId: z.ZodString;
955
964
  data: z.ZodObject<{
956
- 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"]>;
965
+ 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"]>;
957
966
  message: z.ZodString;
958
967
  id: z.ZodString;
959
968
  url: z.ZodString;
@@ -2470,6 +2479,7 @@ export declare const platformWebchatContract: {
2470
2479
  channelId: string;
2471
2480
  socialPlatformId: string;
2472
2481
  }>;
2482
+ csatStatus: z.ZodNullable<z.ZodString>;
2473
2483
  actor: z.ZodObject<{
2474
2484
  id: z.ZodString;
2475
2485
  createdAt: z.ZodDate;
@@ -2948,6 +2958,7 @@ export declare const platformWebchatContract: {
2948
2958
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2949
2959
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
2950
2960
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
2961
+ isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
2951
2962
  }, "strip", z.ZodTypeAny, {
2952
2963
  name: string;
2953
2964
  id: string;
@@ -2977,6 +2988,7 @@ export declare const platformWebchatContract: {
2977
2988
  lineRichMenuId?: string | null | undefined;
2978
2989
  messengerIntegrationType?: "own" | "business" | undefined;
2979
2990
  facebookFeedIntegrationType?: "own" | "business" | undefined;
2991
+ isCSATEnabled?: boolean | undefined;
2980
2992
  }, {
2981
2993
  name: string;
2982
2994
  id: string;
@@ -3006,6 +3018,7 @@ export declare const platformWebchatContract: {
3006
3018
  lineRichMenuId?: string | null | undefined;
3007
3019
  messengerIntegrationType?: "own" | "business" | undefined;
3008
3020
  facebookFeedIntegrationType?: "own" | "business" | undefined;
3021
+ isCSATEnabled?: boolean | undefined;
3009
3022
  }>;
3010
3023
  brandName: z.ZodString;
3011
3024
  platformId: z.ZodString;
@@ -3269,6 +3282,7 @@ export declare const platformWebchatContract: {
3269
3282
  lineRichMenuId?: string | null | undefined;
3270
3283
  messengerIntegrationType?: "own" | "business" | undefined;
3271
3284
  facebookFeedIntegrationType?: "own" | "business" | undefined;
3285
+ isCSATEnabled?: boolean | undefined;
3272
3286
  };
3273
3287
  status: boolean;
3274
3288
  createdAt: Date;
@@ -3363,6 +3377,7 @@ export declare const platformWebchatContract: {
3363
3377
  lineRichMenuId?: string | null | undefined;
3364
3378
  messengerIntegrationType?: "own" | "business" | undefined;
3365
3379
  facebookFeedIntegrationType?: "own" | "business" | undefined;
3380
+ isCSATEnabled?: boolean | undefined;
3366
3381
  };
3367
3382
  status: boolean;
3368
3383
  createdAt: Date;
@@ -4021,6 +4036,7 @@ export declare const platformWebchatContract: {
4021
4036
  lineRichMenuId?: string | null | undefined;
4022
4037
  messengerIntegrationType?: "own" | "business" | undefined;
4023
4038
  facebookFeedIntegrationType?: "own" | "business" | undefined;
4039
+ isCSATEnabled?: boolean | undefined;
4024
4040
  };
4025
4041
  status: boolean;
4026
4042
  createdAt: Date;
@@ -4312,6 +4328,7 @@ export declare const platformWebchatContract: {
4312
4328
  closedAt: Date;
4313
4329
  lastMessageAt: Date | null;
4314
4330
  isBotRoom: boolean;
4331
+ csatStatus: string | null;
4315
4332
  cxlog: {
4316
4333
  id: string;
4317
4334
  channel: string | null;
@@ -4448,6 +4465,7 @@ export declare const platformWebchatContract: {
4448
4465
  lineRichMenuId?: string | null | undefined;
4449
4466
  messengerIntegrationType?: "own" | "business" | undefined;
4450
4467
  facebookFeedIntegrationType?: "own" | "business" | undefined;
4468
+ isCSATEnabled?: boolean | undefined;
4451
4469
  };
4452
4470
  status: boolean;
4453
4471
  createdAt: Date;
@@ -4739,6 +4757,7 @@ export declare const platformWebchatContract: {
4739
4757
  closedAt: Date;
4740
4758
  lastMessageAt: Date | null;
4741
4759
  isBotRoom: boolean;
4760
+ csatStatus: string | null;
4742
4761
  cxlog: {
4743
4762
  id: string;
4744
4763
  channel: string | null;
@@ -4879,7 +4898,7 @@ export declare const platformWebchatContract: {
4879
4898
  deletedAt: z.ZodNullable<z.ZodDate>;
4880
4899
  message: z.ZodString;
4881
4900
  direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
4882
- 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"]>;
4901
+ 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"]>;
4883
4902
  readAt: z.ZodDate;
4884
4903
  metadata: z.ZodAny;
4885
4904
  platformId: z.ZodString;
@@ -5537,7 +5556,7 @@ export declare const platformWebchatContract: {
5537
5556
  };
5538
5557
  }>;
5539
5558
  }, "strip", z.ZodTypeAny, {
5540
- 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";
5559
+ 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";
5541
5560
  message: string;
5542
5561
  id: string;
5543
5562
  url: string;
@@ -5699,7 +5718,7 @@ export declare const platformWebchatContract: {
5699
5718
  metadata?: any;
5700
5719
  template?: any;
5701
5720
  }, {
5702
- 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";
5721
+ 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";
5703
5722
  message: string;
5704
5723
  id: string;
5705
5724
  url: string;
@@ -6073,7 +6092,7 @@ export declare const platformWebchatContract: {
6073
6092
  deletedAt: z.ZodNullable<z.ZodDate>;
6074
6093
  message: z.ZodString;
6075
6094
  direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
6076
- 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"]>;
6095
+ 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"]>;
6077
6096
  readAt: z.ZodDate;
6078
6097
  metadata: z.ZodAny;
6079
6098
  platformId: z.ZodString;
@@ -7147,6 +7166,7 @@ export declare const platformWebchatContract: {
7147
7166
  channelId: string;
7148
7167
  socialPlatformId: string;
7149
7168
  }>;
7169
+ csatStatus: z.ZodNullable<z.ZodString>;
7150
7170
  actor: z.ZodObject<{
7151
7171
  id: z.ZodString;
7152
7172
  createdAt: z.ZodDate;
@@ -7625,6 +7645,7 @@ export declare const platformWebchatContract: {
7625
7645
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
7626
7646
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
7627
7647
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
7648
+ isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
7628
7649
  }, "strip", z.ZodTypeAny, {
7629
7650
  name: string;
7630
7651
  id: string;
@@ -7654,6 +7675,7 @@ export declare const platformWebchatContract: {
7654
7675
  lineRichMenuId?: string | null | undefined;
7655
7676
  messengerIntegrationType?: "own" | "business" | undefined;
7656
7677
  facebookFeedIntegrationType?: "own" | "business" | undefined;
7678
+ isCSATEnabled?: boolean | undefined;
7657
7679
  }, {
7658
7680
  name: string;
7659
7681
  id: string;
@@ -7683,6 +7705,7 @@ export declare const platformWebchatContract: {
7683
7705
  lineRichMenuId?: string | null | undefined;
7684
7706
  messengerIntegrationType?: "own" | "business" | undefined;
7685
7707
  facebookFeedIntegrationType?: "own" | "business" | undefined;
7708
+ isCSATEnabled?: boolean | undefined;
7686
7709
  }>;
7687
7710
  brandName: z.ZodString;
7688
7711
  platformId: z.ZodString;
@@ -7946,6 +7969,7 @@ export declare const platformWebchatContract: {
7946
7969
  lineRichMenuId?: string | null | undefined;
7947
7970
  messengerIntegrationType?: "own" | "business" | undefined;
7948
7971
  facebookFeedIntegrationType?: "own" | "business" | undefined;
7972
+ isCSATEnabled?: boolean | undefined;
7949
7973
  };
7950
7974
  status: boolean;
7951
7975
  createdAt: Date;
@@ -8040,6 +8064,7 @@ export declare const platformWebchatContract: {
8040
8064
  lineRichMenuId?: string | null | undefined;
8041
8065
  messengerIntegrationType?: "own" | "business" | undefined;
8042
8066
  facebookFeedIntegrationType?: "own" | "business" | undefined;
8067
+ isCSATEnabled?: boolean | undefined;
8043
8068
  };
8044
8069
  status: boolean;
8045
8070
  createdAt: Date;
@@ -8698,6 +8723,7 @@ export declare const platformWebchatContract: {
8698
8723
  lineRichMenuId?: string | null | undefined;
8699
8724
  messengerIntegrationType?: "own" | "business" | undefined;
8700
8725
  facebookFeedIntegrationType?: "own" | "business" | undefined;
8726
+ isCSATEnabled?: boolean | undefined;
8701
8727
  };
8702
8728
  status: boolean;
8703
8729
  createdAt: Date;
@@ -8989,6 +9015,7 @@ export declare const platformWebchatContract: {
8989
9015
  closedAt: Date;
8990
9016
  lastMessageAt: Date | null;
8991
9017
  isBotRoom: boolean;
9018
+ csatStatus: string | null;
8992
9019
  cxlog: {
8993
9020
  id: string;
8994
9021
  channel: string | null;
@@ -9125,6 +9152,7 @@ export declare const platformWebchatContract: {
9125
9152
  lineRichMenuId?: string | null | undefined;
9126
9153
  messengerIntegrationType?: "own" | "business" | undefined;
9127
9154
  facebookFeedIntegrationType?: "own" | "business" | undefined;
9155
+ isCSATEnabled?: boolean | undefined;
9128
9156
  };
9129
9157
  status: boolean;
9130
9158
  createdAt: Date;
@@ -9416,6 +9444,7 @@ export declare const platformWebchatContract: {
9416
9444
  closedAt: Date;
9417
9445
  lastMessageAt: Date | null;
9418
9446
  isBotRoom: boolean;
9447
+ csatStatus: string | null;
9419
9448
  cxlog: {
9420
9449
  id: string;
9421
9450
  channel: string | null;
@@ -9559,7 +9588,7 @@ export declare const platformWebchatContract: {
9559
9588
  deletedAt: z.ZodNullable<z.ZodDate>;
9560
9589
  message: z.ZodString;
9561
9590
  direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
9562
- 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"]>;
9591
+ 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"]>;
9563
9592
  readAt: z.ZodDate;
9564
9593
  metadata: z.ZodAny;
9565
9594
  platformId: z.ZodString;
@@ -10217,7 +10246,7 @@ export declare const platformWebchatContract: {
10217
10246
  };
10218
10247
  }>;
10219
10248
  }, "strip", z.ZodTypeAny, {
10220
- 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";
10249
+ 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";
10221
10250
  message: string;
10222
10251
  id: string;
10223
10252
  url: string;
@@ -10379,7 +10408,7 @@ export declare const platformWebchatContract: {
10379
10408
  metadata?: any;
10380
10409
  template?: any;
10381
10410
  }, {
10382
- 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";
10411
+ 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";
10383
10412
  message: string;
10384
10413
  id: string;
10385
10414
  url: string;
@@ -11181,7 +11210,7 @@ export declare const platformWebchatContract: {
11181
11210
  editedMessageid: z.ZodString;
11182
11211
  label: z.ZodOptional<z.ZodString>;
11183
11212
  }, "strip", z.ZodTypeAny, {
11184
- 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";
11213
+ 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";
11185
11214
  message: string;
11186
11215
  id: string;
11187
11216
  url: string;
@@ -11325,6 +11354,7 @@ export declare const platformWebchatContract: {
11325
11354
  lineRichMenuId?: string | null | undefined;
11326
11355
  messengerIntegrationType?: "own" | "business" | undefined;
11327
11356
  facebookFeedIntegrationType?: "own" | "business" | undefined;
11357
+ isCSATEnabled?: boolean | undefined;
11328
11358
  };
11329
11359
  status: boolean;
11330
11360
  createdAt: Date;
@@ -11616,6 +11646,7 @@ export declare const platformWebchatContract: {
11616
11646
  closedAt: Date;
11617
11647
  lastMessageAt: Date | null;
11618
11648
  isBotRoom: boolean;
11649
+ csatStatus: string | null;
11619
11650
  cxlog: {
11620
11651
  id: string;
11621
11652
  channel: string | null;
@@ -11734,7 +11765,7 @@ export declare const platformWebchatContract: {
11734
11765
  previewUrl: string;
11735
11766
  imageSetId: string;
11736
11767
  repliedMessage: {
11737
- 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";
11768
+ 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";
11738
11769
  message: string;
11739
11770
  id: string;
11740
11771
  url: string;
@@ -11945,7 +11976,7 @@ export declare const platformWebchatContract: {
11945
11976
  template?: any;
11946
11977
  label?: string | undefined;
11947
11978
  }, {
11948
- 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";
11979
+ 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";
11949
11980
  message: string;
11950
11981
  id: string;
11951
11982
  url: string;
@@ -12089,6 +12120,7 @@ export declare const platformWebchatContract: {
12089
12120
  lineRichMenuId?: string | null | undefined;
12090
12121
  messengerIntegrationType?: "own" | "business" | undefined;
12091
12122
  facebookFeedIntegrationType?: "own" | "business" | undefined;
12123
+ isCSATEnabled?: boolean | undefined;
12092
12124
  };
12093
12125
  status: boolean;
12094
12126
  createdAt: Date;
@@ -12380,6 +12412,7 @@ export declare const platformWebchatContract: {
12380
12412
  closedAt: Date;
12381
12413
  lastMessageAt: Date | null;
12382
12414
  isBotRoom: boolean;
12415
+ csatStatus: string | null;
12383
12416
  cxlog: {
12384
12417
  id: string;
12385
12418
  channel: string | null;
@@ -12498,7 +12531,7 @@ export declare const platformWebchatContract: {
12498
12531
  previewUrl: string;
12499
12532
  imageSetId: string;
12500
12533
  repliedMessage: {
12501
- 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";
12534
+ 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";
12502
12535
  message: string;
12503
12536
  id: string;
12504
12537
  url: string;
@@ -12710,7 +12743,7 @@ export declare const platformWebchatContract: {
12710
12743
  label?: string | undefined;
12711
12744
  }>>>;
12712
12745
  }, "strip", z.ZodTypeAny, {
12713
- 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";
12746
+ 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";
12714
12747
  message: string;
12715
12748
  id: string;
12716
12749
  url: string;
@@ -12854,6 +12887,7 @@ export declare const platformWebchatContract: {
12854
12887
  lineRichMenuId?: string | null | undefined;
12855
12888
  messengerIntegrationType?: "own" | "business" | undefined;
12856
12889
  facebookFeedIntegrationType?: "own" | "business" | undefined;
12890
+ isCSATEnabled?: boolean | undefined;
12857
12891
  };
12858
12892
  status: boolean;
12859
12893
  createdAt: Date;
@@ -13145,6 +13179,7 @@ export declare const platformWebchatContract: {
13145
13179
  closedAt: Date;
13146
13180
  lastMessageAt: Date | null;
13147
13181
  isBotRoom: boolean;
13182
+ csatStatus: string | null;
13148
13183
  cxlog: {
13149
13184
  id: string;
13150
13185
  channel: string | null;
@@ -13263,7 +13298,7 @@ export declare const platformWebchatContract: {
13263
13298
  previewUrl: string;
13264
13299
  imageSetId: string;
13265
13300
  repliedMessage: {
13266
- 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";
13301
+ 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";
13267
13302
  message: string;
13268
13303
  id: string;
13269
13304
  url: string;
@@ -13474,7 +13509,7 @@ export declare const platformWebchatContract: {
13474
13509
  template?: any;
13475
13510
  metadata?: any;
13476
13511
  fromMessage?: {
13477
- 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";
13512
+ 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";
13478
13513
  message: string;
13479
13514
  id: string;
13480
13515
  url: string;
@@ -13618,6 +13653,7 @@ export declare const platformWebchatContract: {
13618
13653
  lineRichMenuId?: string | null | undefined;
13619
13654
  messengerIntegrationType?: "own" | "business" | undefined;
13620
13655
  facebookFeedIntegrationType?: "own" | "business" | undefined;
13656
+ isCSATEnabled?: boolean | undefined;
13621
13657
  };
13622
13658
  status: boolean;
13623
13659
  createdAt: Date;
@@ -13909,6 +13945,7 @@ export declare const platformWebchatContract: {
13909
13945
  closedAt: Date;
13910
13946
  lastMessageAt: Date | null;
13911
13947
  isBotRoom: boolean;
13948
+ csatStatus: string | null;
13912
13949
  cxlog: {
13913
13950
  id: string;
13914
13951
  channel: string | null;
@@ -14027,7 +14064,7 @@ export declare const platformWebchatContract: {
14027
14064
  previewUrl: string;
14028
14065
  imageSetId: string;
14029
14066
  repliedMessage: {
14030
- 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";
14067
+ 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";
14031
14068
  message: string;
14032
14069
  id: string;
14033
14070
  url: string;
@@ -14239,7 +14276,7 @@ export declare const platformWebchatContract: {
14239
14276
  label?: string | undefined;
14240
14277
  } | null | undefined;
14241
14278
  }, {
14242
- 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";
14279
+ 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";
14243
14280
  message: string;
14244
14281
  id: string;
14245
14282
  url: string;
@@ -14383,6 +14420,7 @@ export declare const platformWebchatContract: {
14383
14420
  lineRichMenuId?: string | null | undefined;
14384
14421
  messengerIntegrationType?: "own" | "business" | undefined;
14385
14422
  facebookFeedIntegrationType?: "own" | "business" | undefined;
14423
+ isCSATEnabled?: boolean | undefined;
14386
14424
  };
14387
14425
  status: boolean;
14388
14426
  createdAt: Date;
@@ -14674,6 +14712,7 @@ export declare const platformWebchatContract: {
14674
14712
  closedAt: Date;
14675
14713
  lastMessageAt: Date | null;
14676
14714
  isBotRoom: boolean;
14715
+ csatStatus: string | null;
14677
14716
  cxlog: {
14678
14717
  id: string;
14679
14718
  channel: string | null;
@@ -14792,7 +14831,7 @@ export declare const platformWebchatContract: {
14792
14831
  previewUrl: string;
14793
14832
  imageSetId: string;
14794
14833
  repliedMessage: {
14795
- 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";
14834
+ 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";
14796
14835
  message: string;
14797
14836
  id: string;
14798
14837
  url: string;
@@ -15003,7 +15042,7 @@ export declare const platformWebchatContract: {
15003
15042
  template?: any;
15004
15043
  metadata?: any;
15005
15044
  fromMessage?: {
15006
- 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";
15045
+ 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";
15007
15046
  message: string;
15008
15047
  id: string;
15009
15048
  url: string;
@@ -15147,6 +15186,7 @@ export declare const platformWebchatContract: {
15147
15186
  lineRichMenuId?: string | null | undefined;
15148
15187
  messengerIntegrationType?: "own" | "business" | undefined;
15149
15188
  facebookFeedIntegrationType?: "own" | "business" | undefined;
15189
+ isCSATEnabled?: boolean | undefined;
15150
15190
  };
15151
15191
  status: boolean;
15152
15192
  createdAt: Date;
@@ -15438,6 +15478,7 @@ export declare const platformWebchatContract: {
15438
15478
  closedAt: Date;
15439
15479
  lastMessageAt: Date | null;
15440
15480
  isBotRoom: boolean;
15481
+ csatStatus: string | null;
15441
15482
  cxlog: {
15442
15483
  id: string;
15443
15484
  channel: string | null;
@@ -15556,7 +15597,7 @@ export declare const platformWebchatContract: {
15556
15597
  previewUrl: string;
15557
15598
  imageSetId: string;
15558
15599
  repliedMessage: {
15559
- 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";
15600
+ 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";
15560
15601
  message: string;
15561
15602
  id: string;
15562
15603
  url: string;
@@ -15770,7 +15811,7 @@ export declare const platformWebchatContract: {
15770
15811
  }>;
15771
15812
  }, "strip", z.ZodTypeAny, {
15772
15813
  data: {
15773
- 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";
15814
+ 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";
15774
15815
  message: string;
15775
15816
  id: string;
15776
15817
  url: string;
@@ -15914,6 +15955,7 @@ export declare const platformWebchatContract: {
15914
15955
  lineRichMenuId?: string | null | undefined;
15915
15956
  messengerIntegrationType?: "own" | "business" | undefined;
15916
15957
  facebookFeedIntegrationType?: "own" | "business" | undefined;
15958
+ isCSATEnabled?: boolean | undefined;
15917
15959
  };
15918
15960
  status: boolean;
15919
15961
  createdAt: Date;
@@ -16205,6 +16247,7 @@ export declare const platformWebchatContract: {
16205
16247
  closedAt: Date;
16206
16248
  lastMessageAt: Date | null;
16207
16249
  isBotRoom: boolean;
16250
+ csatStatus: string | null;
16208
16251
  cxlog: {
16209
16252
  id: string;
16210
16253
  channel: string | null;
@@ -16323,7 +16366,7 @@ export declare const platformWebchatContract: {
16323
16366
  previewUrl: string;
16324
16367
  imageSetId: string;
16325
16368
  repliedMessage: {
16326
- 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";
16369
+ 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";
16327
16370
  message: string;
16328
16371
  id: string;
16329
16372
  url: string;
@@ -16534,7 +16577,7 @@ export declare const platformWebchatContract: {
16534
16577
  template?: any;
16535
16578
  metadata?: any;
16536
16579
  fromMessage?: {
16537
- 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";
16580
+ 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";
16538
16581
  message: string;
16539
16582
  id: string;
16540
16583
  url: string;
@@ -16678,6 +16721,7 @@ export declare const platformWebchatContract: {
16678
16721
  lineRichMenuId?: string | null | undefined;
16679
16722
  messengerIntegrationType?: "own" | "business" | undefined;
16680
16723
  facebookFeedIntegrationType?: "own" | "business" | undefined;
16724
+ isCSATEnabled?: boolean | undefined;
16681
16725
  };
16682
16726
  status: boolean;
16683
16727
  createdAt: Date;
@@ -16969,6 +17013,7 @@ export declare const platformWebchatContract: {
16969
17013
  closedAt: Date;
16970
17014
  lastMessageAt: Date | null;
16971
17015
  isBotRoom: boolean;
17016
+ csatStatus: string | null;
16972
17017
  cxlog: {
16973
17018
  id: string;
16974
17019
  channel: string | null;
@@ -17087,7 +17132,7 @@ export declare const platformWebchatContract: {
17087
17132
  previewUrl: string;
17088
17133
  imageSetId: string;
17089
17134
  repliedMessage: {
17090
- 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";
17135
+ 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";
17091
17136
  message: string;
17092
17137
  id: string;
17093
17138
  url: string;
@@ -17302,7 +17347,7 @@ export declare const platformWebchatContract: {
17302
17347
  requestId: string;
17303
17348
  }, {
17304
17349
  data: {
17305
- 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";
17350
+ 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";
17306
17351
  message: string;
17307
17352
  id: string;
17308
17353
  url: string;
@@ -17446,6 +17491,7 @@ export declare const platformWebchatContract: {
17446
17491
  lineRichMenuId?: string | null | undefined;
17447
17492
  messengerIntegrationType?: "own" | "business" | undefined;
17448
17493
  facebookFeedIntegrationType?: "own" | "business" | undefined;
17494
+ isCSATEnabled?: boolean | undefined;
17449
17495
  };
17450
17496
  status: boolean;
17451
17497
  createdAt: Date;
@@ -17737,6 +17783,7 @@ export declare const platformWebchatContract: {
17737
17783
  closedAt: Date;
17738
17784
  lastMessageAt: Date | null;
17739
17785
  isBotRoom: boolean;
17786
+ csatStatus: string | null;
17740
17787
  cxlog: {
17741
17788
  id: string;
17742
17789
  channel: string | null;
@@ -17855,7 +17902,7 @@ export declare const platformWebchatContract: {
17855
17902
  previewUrl: string;
17856
17903
  imageSetId: string;
17857
17904
  repliedMessage: {
17858
- 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";
17905
+ 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";
17859
17906
  message: string;
17860
17907
  id: string;
17861
17908
  url: string;
@@ -18066,7 +18113,7 @@ export declare const platformWebchatContract: {
18066
18113
  template?: any;
18067
18114
  metadata?: any;
18068
18115
  fromMessage?: {
18069
- 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";
18116
+ 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";
18070
18117
  message: string;
18071
18118
  id: string;
18072
18119
  url: string;
@@ -18210,6 +18257,7 @@ export declare const platformWebchatContract: {
18210
18257
  lineRichMenuId?: string | null | undefined;
18211
18258
  messengerIntegrationType?: "own" | "business" | undefined;
18212
18259
  facebookFeedIntegrationType?: "own" | "business" | undefined;
18260
+ isCSATEnabled?: boolean | undefined;
18213
18261
  };
18214
18262
  status: boolean;
18215
18263
  createdAt: Date;
@@ -18501,6 +18549,7 @@ export declare const platformWebchatContract: {
18501
18549
  closedAt: Date;
18502
18550
  lastMessageAt: Date | null;
18503
18551
  isBotRoom: boolean;
18552
+ csatStatus: string | null;
18504
18553
  cxlog: {
18505
18554
  id: string;
18506
18555
  channel: string | null;
@@ -18619,7 +18668,7 @@ export declare const platformWebchatContract: {
18619
18668
  previewUrl: string;
18620
18669
  imageSetId: string;
18621
18670
  repliedMessage: {
18622
- 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";
18671
+ 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";
18623
18672
  message: string;
18624
18673
  id: string;
18625
18674
  url: string;
@@ -19025,6 +19074,7 @@ export declare const platformWebchatContract: {
19025
19074
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
19026
19075
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
19027
19076
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
19077
+ isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
19028
19078
  }, "strip", z.ZodTypeAny, {
19029
19079
  name: string;
19030
19080
  id: string;
@@ -19054,6 +19104,7 @@ export declare const platformWebchatContract: {
19054
19104
  lineRichMenuId?: string | null | undefined;
19055
19105
  messengerIntegrationType?: "own" | "business" | undefined;
19056
19106
  facebookFeedIntegrationType?: "own" | "business" | undefined;
19107
+ isCSATEnabled?: boolean | undefined;
19057
19108
  }, {
19058
19109
  name: string;
19059
19110
  id: string;
@@ -19083,6 +19134,7 @@ export declare const platformWebchatContract: {
19083
19134
  lineRichMenuId?: string | null | undefined;
19084
19135
  messengerIntegrationType?: "own" | "business" | undefined;
19085
19136
  facebookFeedIntegrationType?: "own" | "business" | undefined;
19137
+ isCSATEnabled?: boolean | undefined;
19086
19138
  }>;
19087
19139
  brandName: z.ZodString;
19088
19140
  platformId: z.ZodString;
@@ -19346,6 +19398,7 @@ export declare const platformWebchatContract: {
19346
19398
  lineRichMenuId?: string | null | undefined;
19347
19399
  messengerIntegrationType?: "own" | "business" | undefined;
19348
19400
  facebookFeedIntegrationType?: "own" | "business" | undefined;
19401
+ isCSATEnabled?: boolean | undefined;
19349
19402
  };
19350
19403
  status: boolean;
19351
19404
  createdAt: Date;
@@ -19440,6 +19493,7 @@ export declare const platformWebchatContract: {
19440
19493
  lineRichMenuId?: string | null | undefined;
19441
19494
  messengerIntegrationType?: "own" | "business" | undefined;
19442
19495
  facebookFeedIntegrationType?: "own" | "business" | undefined;
19496
+ isCSATEnabled?: boolean | undefined;
19443
19497
  };
19444
19498
  status: boolean;
19445
19499
  createdAt: Date;
@@ -19536,6 +19590,7 @@ export declare const platformWebchatContract: {
19536
19590
  lineRichMenuId?: string | null | undefined;
19537
19591
  messengerIntegrationType?: "own" | "business" | undefined;
19538
19592
  facebookFeedIntegrationType?: "own" | "business" | undefined;
19593
+ isCSATEnabled?: boolean | undefined;
19539
19594
  };
19540
19595
  status: boolean;
19541
19596
  createdAt: Date;
@@ -19633,6 +19688,7 @@ export declare const platformWebchatContract: {
19633
19688
  lineRichMenuId?: string | null | undefined;
19634
19689
  messengerIntegrationType?: "own" | "business" | undefined;
19635
19690
  facebookFeedIntegrationType?: "own" | "business" | undefined;
19691
+ isCSATEnabled?: boolean | undefined;
19636
19692
  };
19637
19693
  status: boolean;
19638
19694
  createdAt: Date;
@@ -19799,6 +19855,7 @@ export declare const platformWebchatContract: {
19799
19855
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
19800
19856
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
19801
19857
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
19858
+ isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
19802
19859
  }, "strip", z.ZodTypeAny, {
19803
19860
  name: string;
19804
19861
  id: string;
@@ -19828,6 +19885,7 @@ export declare const platformWebchatContract: {
19828
19885
  lineRichMenuId?: string | null | undefined;
19829
19886
  messengerIntegrationType?: "own" | "business" | undefined;
19830
19887
  facebookFeedIntegrationType?: "own" | "business" | undefined;
19888
+ isCSATEnabled?: boolean | undefined;
19831
19889
  }, {
19832
19890
  name: string;
19833
19891
  id: string;
@@ -19857,6 +19915,7 @@ export declare const platformWebchatContract: {
19857
19915
  lineRichMenuId?: string | null | undefined;
19858
19916
  messengerIntegrationType?: "own" | "business" | undefined;
19859
19917
  facebookFeedIntegrationType?: "own" | "business" | undefined;
19918
+ isCSATEnabled?: boolean | undefined;
19860
19919
  }>;
19861
19920
  platformId: z.ZodString;
19862
19921
  brandName: z.ZodString;
@@ -19916,6 +19975,7 @@ export declare const platformWebchatContract: {
19916
19975
  lineRichMenuId?: string | null | undefined;
19917
19976
  messengerIntegrationType?: "own" | "business" | undefined;
19918
19977
  facebookFeedIntegrationType?: "own" | "business" | undefined;
19978
+ isCSATEnabled?: boolean | undefined;
19919
19979
  };
19920
19980
  status: boolean;
19921
19981
  brandName: string;
@@ -19963,6 +20023,7 @@ export declare const platformWebchatContract: {
19963
20023
  lineRichMenuId?: string | null | undefined;
19964
20024
  messengerIntegrationType?: "own" | "business" | undefined;
19965
20025
  facebookFeedIntegrationType?: "own" | "business" | undefined;
20026
+ isCSATEnabled?: boolean | undefined;
19966
20027
  };
19967
20028
  status: boolean;
19968
20029
  brandName: string;
@@ -20012,6 +20073,7 @@ export declare const platformWebchatContract: {
20012
20073
  lineRichMenuId?: string | null | undefined;
20013
20074
  messengerIntegrationType?: "own" | "business" | undefined;
20014
20075
  facebookFeedIntegrationType?: "own" | "business" | undefined;
20076
+ isCSATEnabled?: boolean | undefined;
20015
20077
  };
20016
20078
  status: boolean;
20017
20079
  brandName: string;
@@ -20062,6 +20124,7 @@ export declare const platformWebchatContract: {
20062
20124
  lineRichMenuId?: string | null | undefined;
20063
20125
  messengerIntegrationType?: "own" | "business" | undefined;
20064
20126
  facebookFeedIntegrationType?: "own" | "business" | undefined;
20127
+ isCSATEnabled?: boolean | undefined;
20065
20128
  };
20066
20129
  status: boolean;
20067
20130
  brandName: string;
@@ -20182,6 +20245,7 @@ export declare const platformWebchatContract: {
20182
20245
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
20183
20246
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
20184
20247
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
20248
+ isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
20185
20249
  }, "strip", z.ZodTypeAny, {
20186
20250
  name: string;
20187
20251
  id: string;
@@ -20211,6 +20275,7 @@ export declare const platformWebchatContract: {
20211
20275
  lineRichMenuId?: string | null | undefined;
20212
20276
  messengerIntegrationType?: "own" | "business" | undefined;
20213
20277
  facebookFeedIntegrationType?: "own" | "business" | undefined;
20278
+ isCSATEnabled?: boolean | undefined;
20214
20279
  }, {
20215
20280
  name: string;
20216
20281
  id: string;
@@ -20240,6 +20305,7 @@ export declare const platformWebchatContract: {
20240
20305
  lineRichMenuId?: string | null | undefined;
20241
20306
  messengerIntegrationType?: "own" | "business" | undefined;
20242
20307
  facebookFeedIntegrationType?: "own" | "business" | undefined;
20308
+ isCSATEnabled?: boolean | undefined;
20243
20309
  }>;
20244
20310
  platformId: z.ZodString;
20245
20311
  brandName: z.ZodString;
@@ -20299,6 +20365,7 @@ export declare const platformWebchatContract: {
20299
20365
  lineRichMenuId?: string | null | undefined;
20300
20366
  messengerIntegrationType?: "own" | "business" | undefined;
20301
20367
  facebookFeedIntegrationType?: "own" | "business" | undefined;
20368
+ isCSATEnabled?: boolean | undefined;
20302
20369
  };
20303
20370
  status: boolean;
20304
20371
  brandName: string;
@@ -20346,6 +20413,7 @@ export declare const platformWebchatContract: {
20346
20413
  lineRichMenuId?: string | null | undefined;
20347
20414
  messengerIntegrationType?: "own" | "business" | undefined;
20348
20415
  facebookFeedIntegrationType?: "own" | "business" | undefined;
20416
+ isCSATEnabled?: boolean | undefined;
20349
20417
  };
20350
20418
  status: boolean;
20351
20419
  brandName: string;
@@ -20395,6 +20463,7 @@ export declare const platformWebchatContract: {
20395
20463
  lineRichMenuId?: string | null | undefined;
20396
20464
  messengerIntegrationType?: "own" | "business" | undefined;
20397
20465
  facebookFeedIntegrationType?: "own" | "business" | undefined;
20466
+ isCSATEnabled?: boolean | undefined;
20398
20467
  };
20399
20468
  status: boolean;
20400
20469
  brandName: string;
@@ -20445,6 +20514,7 @@ export declare const platformWebchatContract: {
20445
20514
  lineRichMenuId?: string | null | undefined;
20446
20515
  messengerIntegrationType?: "own" | "business" | undefined;
20447
20516
  facebookFeedIntegrationType?: "own" | "business" | undefined;
20517
+ isCSATEnabled?: boolean | undefined;
20448
20518
  };
20449
20519
  status: boolean;
20450
20520
  brandName: string;
@@ -20565,6 +20635,7 @@ export declare const platformWebchatContract: {
20565
20635
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
20566
20636
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
20567
20637
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
20638
+ isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
20568
20639
  }, "strip", z.ZodTypeAny, {
20569
20640
  name: string;
20570
20641
  id: string;
@@ -20594,6 +20665,7 @@ export declare const platformWebchatContract: {
20594
20665
  lineRichMenuId?: string | null | undefined;
20595
20666
  messengerIntegrationType?: "own" | "business" | undefined;
20596
20667
  facebookFeedIntegrationType?: "own" | "business" | undefined;
20668
+ isCSATEnabled?: boolean | undefined;
20597
20669
  }, {
20598
20670
  name: string;
20599
20671
  id: string;
@@ -20623,6 +20695,7 @@ export declare const platformWebchatContract: {
20623
20695
  lineRichMenuId?: string | null | undefined;
20624
20696
  messengerIntegrationType?: "own" | "business" | undefined;
20625
20697
  facebookFeedIntegrationType?: "own" | "business" | undefined;
20698
+ isCSATEnabled?: boolean | undefined;
20626
20699
  }>;
20627
20700
  platformId: z.ZodString;
20628
20701
  brandName: z.ZodString;
@@ -20682,6 +20755,7 @@ export declare const platformWebchatContract: {
20682
20755
  lineRichMenuId?: string | null | undefined;
20683
20756
  messengerIntegrationType?: "own" | "business" | undefined;
20684
20757
  facebookFeedIntegrationType?: "own" | "business" | undefined;
20758
+ isCSATEnabled?: boolean | undefined;
20685
20759
  };
20686
20760
  status: boolean;
20687
20761
  brandName: string;
@@ -20729,6 +20803,7 @@ export declare const platformWebchatContract: {
20729
20803
  lineRichMenuId?: string | null | undefined;
20730
20804
  messengerIntegrationType?: "own" | "business" | undefined;
20731
20805
  facebookFeedIntegrationType?: "own" | "business" | undefined;
20806
+ isCSATEnabled?: boolean | undefined;
20732
20807
  };
20733
20808
  status: boolean;
20734
20809
  brandName: string;
@@ -20778,6 +20853,7 @@ export declare const platformWebchatContract: {
20778
20853
  lineRichMenuId?: string | null | undefined;
20779
20854
  messengerIntegrationType?: "own" | "business" | undefined;
20780
20855
  facebookFeedIntegrationType?: "own" | "business" | undefined;
20856
+ isCSATEnabled?: boolean | undefined;
20781
20857
  };
20782
20858
  status: boolean;
20783
20859
  brandName: string;
@@ -20828,6 +20904,7 @@ export declare const platformWebchatContract: {
20828
20904
  lineRichMenuId?: string | null | undefined;
20829
20905
  messengerIntegrationType?: "own" | "business" | undefined;
20830
20906
  facebookFeedIntegrationType?: "own" | "business" | undefined;
20907
+ isCSATEnabled?: boolean | undefined;
20831
20908
  };
20832
20909
  status: boolean;
20833
20910
  brandName: string;