@kl1/contracts 1.2.61-uat → 1.2.62-uat

Sign up to get free protection for your applications and to get access to all the features.
Files changed (58) hide show
  1. package/dist/api-contracts/src/channel/index.d.ts +2629 -2831
  2. package/dist/api-contracts/src/channel/index.d.ts.map +1 -1
  3. package/dist/api-contracts/src/channel/schema.d.ts +0 -8
  4. package/dist/api-contracts/src/channel/schema.d.ts.map +1 -1
  5. package/dist/api-contracts/src/channel/validation.d.ts +10 -10
  6. package/dist/api-contracts/src/channel/validation.d.ts.map +1 -1
  7. package/dist/api-contracts/src/chat/index.d.ts +189 -515
  8. package/dist/api-contracts/src/chat/index.d.ts.map +1 -1
  9. package/dist/api-contracts/src/chat/schema.d.ts +45 -124
  10. package/dist/api-contracts/src/chat/schema.d.ts.map +1 -1
  11. package/dist/api-contracts/src/chat/validation.d.ts +72 -151
  12. package/dist/api-contracts/src/chat/validation.d.ts.map +1 -1
  13. package/dist/api-contracts/src/contract.d.ts +3632 -5096
  14. package/dist/api-contracts/src/contract.d.ts.map +1 -1
  15. package/dist/api-contracts/src/cx-log/index.d.ts +0 -11
  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 +0 -9
  18. package/dist/api-contracts/src/cx-log/schema.d.ts.map +1 -1
  19. package/dist/api-contracts/src/dashboard/index.d.ts +1 -290
  20. package/dist/api-contracts/src/dashboard/index.d.ts.map +1 -1
  21. package/dist/api-contracts/src/dashboard/schema.d.ts +0 -71
  22. package/dist/api-contracts/src/dashboard/schema.d.ts.map +1 -1
  23. package/dist/api-contracts/src/facebook-feed/index.d.ts +43 -165
  24. package/dist/api-contracts/src/facebook-feed/index.d.ts.map +1 -1
  25. package/dist/api-contracts/src/facebook-feed/schema.d.ts +3 -10
  26. package/dist/api-contracts/src/facebook-feed/schema.d.ts.map +1 -1
  27. package/dist/api-contracts/src/facebook-feed/validation.d.ts +0 -5
  28. package/dist/api-contracts/src/facebook-feed/validation.d.ts.map +1 -1
  29. package/dist/api-contracts/src/instagram/index.d.ts +33 -132
  30. package/dist/api-contracts/src/instagram/index.d.ts.map +1 -1
  31. package/dist/api-contracts/src/line/index.d.ts +40 -131
  32. package/dist/api-contracts/src/line/index.d.ts.map +1 -1
  33. package/dist/api-contracts/src/line/validation.d.ts +5 -14
  34. package/dist/api-contracts/src/line/validation.d.ts.map +1 -1
  35. package/dist/api-contracts/src/messenger/index.d.ts +33 -132
  36. package/dist/api-contracts/src/messenger/index.d.ts.map +1 -1
  37. package/dist/api-contracts/src/messenger/validation.d.ts +0 -5
  38. package/dist/api-contracts/src/messenger/validation.d.ts.map +1 -1
  39. package/dist/api-contracts/src/sms/index.d.ts +5 -42
  40. package/dist/api-contracts/src/sms/index.d.ts.map +1 -1
  41. package/dist/api-contracts/src/telegram/index.d.ts +33 -110
  42. package/dist/api-contracts/src/telegram/index.d.ts.map +1 -1
  43. package/dist/api-contracts/src/viber/index.d.ts +33 -110
  44. package/dist/api-contracts/src/viber/index.d.ts.map +1 -1
  45. package/dist/api-contracts/src/webchat/index.d.ts +33 -110
  46. package/dist/api-contracts/src/webchat/index.d.ts.map +1 -1
  47. package/dist/api-contracts/src/whatsapp/index.d.ts +39 -167
  48. package/dist/api-contracts/src/whatsapp/index.d.ts.map +1 -1
  49. package/dist/api-contracts/src/whatsapp/validation.d.ts +3 -3
  50. package/dist/api-contracts/src/workflow-rule/index.d.ts +12 -58
  51. package/dist/api-contracts/src/workflow-rule/index.d.ts.map +1 -1
  52. package/dist/entities/src/enums/chat.d.ts +0 -12
  53. package/dist/entities/src/enums/chat.d.ts.map +1 -1
  54. package/dist/index.js +40 -139
  55. package/dist/index.js.map +1 -1
  56. package/dist/index.mjs +40 -139
  57. package/dist/index.mjs.map +1 -1
  58. package/package.json +1 -1
@@ -224,6 +224,8 @@ export declare const MessageAttachmentSchema: z.ZodObject<{
224
224
  url: z.ZodNullable<z.ZodString>;
225
225
  fileType: z.ZodString;
226
226
  thumbnailUrl: z.ZodOptional<z.ZodString>;
227
+ width: z.ZodOptional<z.ZodString>;
228
+ height: z.ZodOptional<z.ZodString>;
227
229
  }, "strip", z.ZodTypeAny, {
228
230
  url: string | null;
229
231
  fileName: string;
@@ -232,6 +234,8 @@ export declare const MessageAttachmentSchema: z.ZodObject<{
232
234
  bucketName: string;
233
235
  fileSize: number;
234
236
  thumbnailUrl?: string | undefined;
237
+ width?: string | undefined;
238
+ height?: string | undefined;
235
239
  }, {
236
240
  url: string | null;
237
241
  fileName: string;
@@ -240,6 +244,8 @@ export declare const MessageAttachmentSchema: z.ZodObject<{
240
244
  bucketName: string;
241
245
  fileSize: number;
242
246
  thumbnailUrl?: string | undefined;
247
+ width?: string | undefined;
248
+ height?: string | undefined;
243
249
  }>;
244
250
  export declare const StickerSchema: z.ZodObject<{
245
251
  packageId: z.ZodNumber;
@@ -264,7 +270,7 @@ export declare const ActionMessageSchema: z.ZodObject<{
264
270
  }>;
265
271
  export declare const SendMessageSchema: z.ZodObject<{
266
272
  roomId: z.ZodString;
267
- messageType: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "csat", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
273
+ messageType: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
268
274
  message: z.ZodOptional<z.ZodString>;
269
275
  messageAttachments: z.ZodOptional<z.ZodObject<{
270
276
  bucketName: z.ZodString;
@@ -274,6 +280,8 @@ export declare const SendMessageSchema: z.ZodObject<{
274
280
  url: z.ZodNullable<z.ZodString>;
275
281
  fileType: z.ZodString;
276
282
  thumbnailUrl: z.ZodOptional<z.ZodString>;
283
+ width: z.ZodOptional<z.ZodString>;
284
+ height: z.ZodOptional<z.ZodString>;
277
285
  }, "strip", z.ZodTypeAny, {
278
286
  url: string | null;
279
287
  fileName: string;
@@ -282,6 +290,8 @@ export declare const SendMessageSchema: z.ZodObject<{
282
290
  bucketName: string;
283
291
  fileSize: number;
284
292
  thumbnailUrl?: string | undefined;
293
+ width?: string | undefined;
294
+ height?: string | undefined;
285
295
  }, {
286
296
  url: string | null;
287
297
  fileName: string;
@@ -290,6 +300,8 @@ export declare const SendMessageSchema: z.ZodObject<{
290
300
  bucketName: string;
291
301
  fileSize: number;
292
302
  thumbnailUrl?: string | undefined;
303
+ width?: string | undefined;
304
+ height?: string | undefined;
293
305
  }>>;
294
306
  user: z.ZodOptional<z.ZodObject<{
295
307
  id: z.ZodString;
@@ -523,7 +535,7 @@ export declare const SendMessageSchema: z.ZodObject<{
523
535
  mentions?: string[] | undefined;
524
536
  }>>;
525
537
  }, "strip", z.ZodTypeAny, {
526
- messageType: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
538
+ messageType: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
527
539
  roomId: string;
528
540
  message?: string | undefined;
529
541
  messageAttachments?: {
@@ -534,6 +546,8 @@ export declare const SendMessageSchema: z.ZodObject<{
534
546
  bucketName: string;
535
547
  fileSize: number;
536
548
  thumbnailUrl?: string | undefined;
549
+ width?: string | undefined;
550
+ height?: string | undefined;
537
551
  } | undefined;
538
552
  user?: {
539
553
  name: string;
@@ -595,7 +609,7 @@ export declare const SendMessageSchema: z.ZodObject<{
595
609
  mentions?: string[] | undefined;
596
610
  } | undefined;
597
611
  }, {
598
- messageType: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
612
+ messageType: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
599
613
  roomId: string;
600
614
  message?: string | undefined;
601
615
  messageAttachments?: {
@@ -606,6 +620,8 @@ export declare const SendMessageSchema: z.ZodObject<{
606
620
  bucketName: string;
607
621
  fileSize: number;
608
622
  thumbnailUrl?: string | undefined;
623
+ width?: string | undefined;
624
+ height?: string | undefined;
609
625
  } | undefined;
610
626
  user?: {
611
627
  name: string;
@@ -673,17 +689,17 @@ export declare const InitiateMessageSchema: z.ZodObject<{
673
689
  contactId: z.ZodOptional<z.ZodString>;
674
690
  message: z.ZodObject<{
675
691
  message: z.ZodOptional<z.ZodString>;
676
- messageType: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "csat", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
692
+ messageType: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
677
693
  }, "strip", z.ZodTypeAny, {
678
- messageType: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
694
+ messageType: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
679
695
  message?: string | undefined;
680
696
  }, {
681
- messageType: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
697
+ messageType: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
682
698
  message?: string | undefined;
683
699
  }>;
684
700
  }, "strip", z.ZodTypeAny, {
685
701
  message: {
686
- messageType: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
702
+ messageType: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
687
703
  message?: string | undefined;
688
704
  };
689
705
  channelId: string;
@@ -691,7 +707,7 @@ export declare const InitiateMessageSchema: z.ZodObject<{
691
707
  contactId?: string | undefined;
692
708
  }, {
693
709
  message: {
694
- messageType: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
710
+ messageType: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
695
711
  message?: string | undefined;
696
712
  };
697
713
  channelId: string;
@@ -830,7 +846,6 @@ export declare const ChannelSchema: z.ZodObject<{
830
846
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
831
847
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
832
848
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
833
- isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
834
849
  }, "strip", z.ZodTypeAny, {
835
850
  name: string;
836
851
  id: string;
@@ -860,7 +875,6 @@ export declare const ChannelSchema: z.ZodObject<{
860
875
  lineRichMenuId?: string | null | undefined;
861
876
  messengerIntegrationType?: "own" | "business" | undefined;
862
877
  facebookFeedIntegrationType?: "own" | "business" | undefined;
863
- isCSATEnabled?: boolean | undefined;
864
878
  }, {
865
879
  name: string;
866
880
  id: string;
@@ -890,7 +904,6 @@ export declare const ChannelSchema: z.ZodObject<{
890
904
  lineRichMenuId?: string | null | undefined;
891
905
  messengerIntegrationType?: "own" | "business" | undefined;
892
906
  facebookFeedIntegrationType?: "own" | "business" | undefined;
893
- isCSATEnabled?: boolean | undefined;
894
907
  }>;
895
908
  platformId: z.ZodString;
896
909
  brandName: z.ZodString;
@@ -950,7 +963,6 @@ export declare const ChannelSchema: z.ZodObject<{
950
963
  lineRichMenuId?: string | null | undefined;
951
964
  messengerIntegrationType?: "own" | "business" | undefined;
952
965
  facebookFeedIntegrationType?: "own" | "business" | undefined;
953
- isCSATEnabled?: boolean | undefined;
954
966
  };
955
967
  status: boolean;
956
968
  brandName: string;
@@ -998,7 +1010,6 @@ export declare const ChannelSchema: z.ZodObject<{
998
1010
  lineRichMenuId?: string | null | undefined;
999
1011
  messengerIntegrationType?: "own" | "business" | undefined;
1000
1012
  facebookFeedIntegrationType?: "own" | "business" | undefined;
1001
- isCSATEnabled?: boolean | undefined;
1002
1013
  };
1003
1014
  status: boolean;
1004
1015
  brandName: string;
@@ -1080,7 +1091,6 @@ export declare const ReloginChanelSchema: z.ZodObject<{
1080
1091
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1081
1092
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
1082
1093
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
1083
- isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
1084
1094
  }, "strip", z.ZodTypeAny, {
1085
1095
  name: string;
1086
1096
  id: string;
@@ -1110,7 +1120,6 @@ export declare const ReloginChanelSchema: z.ZodObject<{
1110
1120
  lineRichMenuId?: string | null | undefined;
1111
1121
  messengerIntegrationType?: "own" | "business" | undefined;
1112
1122
  facebookFeedIntegrationType?: "own" | "business" | undefined;
1113
- isCSATEnabled?: boolean | undefined;
1114
1123
  }, {
1115
1124
  name: string;
1116
1125
  id: string;
@@ -1140,7 +1149,6 @@ export declare const ReloginChanelSchema: z.ZodObject<{
1140
1149
  lineRichMenuId?: string | null | undefined;
1141
1150
  messengerIntegrationType?: "own" | "business" | undefined;
1142
1151
  facebookFeedIntegrationType?: "own" | "business" | undefined;
1143
- isCSATEnabled?: boolean | undefined;
1144
1152
  }>;
1145
1153
  status: z.ZodUnion<[z.ZodLiteral<true>, z.ZodLiteral<false>]>;
1146
1154
  actor: z.ZodOptional<z.ZodObject<{
@@ -1205,7 +1213,6 @@ export declare const ReloginChanelSchema: z.ZodObject<{
1205
1213
  lineRichMenuId?: string | null | undefined;
1206
1214
  messengerIntegrationType?: "own" | "business" | undefined;
1207
1215
  facebookFeedIntegrationType?: "own" | "business" | undefined;
1208
- isCSATEnabled?: boolean | undefined;
1209
1216
  };
1210
1217
  status: boolean;
1211
1218
  createdAt: string;
@@ -1257,7 +1264,6 @@ export declare const ReloginChanelSchema: z.ZodObject<{
1257
1264
  lineRichMenuId?: string | null | undefined;
1258
1265
  messengerIntegrationType?: "own" | "business" | undefined;
1259
1266
  facebookFeedIntegrationType?: "own" | "business" | undefined;
1260
- isCSATEnabled?: boolean | undefined;
1261
1267
  };
1262
1268
  status: boolean;
1263
1269
  createdAt: string;
@@ -1347,7 +1353,6 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
1347
1353
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1348
1354
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
1349
1355
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
1350
- isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
1351
1356
  }, "strip", z.ZodTypeAny, {
1352
1357
  name: string;
1353
1358
  id: string;
@@ -1377,7 +1382,6 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
1377
1382
  lineRichMenuId?: string | null | undefined;
1378
1383
  messengerIntegrationType?: "own" | "business" | undefined;
1379
1384
  facebookFeedIntegrationType?: "own" | "business" | undefined;
1380
- isCSATEnabled?: boolean | undefined;
1381
1385
  }, {
1382
1386
  name: string;
1383
1387
  id: string;
@@ -1407,7 +1411,6 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
1407
1411
  lineRichMenuId?: string | null | undefined;
1408
1412
  messengerIntegrationType?: "own" | "business" | undefined;
1409
1413
  facebookFeedIntegrationType?: "own" | "business" | undefined;
1410
- isCSATEnabled?: boolean | undefined;
1411
1414
  }>;
1412
1415
  platformId: z.ZodString;
1413
1416
  brandName: z.ZodString;
@@ -1467,7 +1470,6 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
1467
1470
  lineRichMenuId?: string | null | undefined;
1468
1471
  messengerIntegrationType?: "own" | "business" | undefined;
1469
1472
  facebookFeedIntegrationType?: "own" | "business" | undefined;
1470
- isCSATEnabled?: boolean | undefined;
1471
1473
  };
1472
1474
  status: boolean;
1473
1475
  brandName: string;
@@ -1515,7 +1517,6 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
1515
1517
  lineRichMenuId?: string | null | undefined;
1516
1518
  messengerIntegrationType?: "own" | "business" | undefined;
1517
1519
  facebookFeedIntegrationType?: "own" | "business" | undefined;
1518
- isCSATEnabled?: boolean | undefined;
1519
1520
  };
1520
1521
  status: boolean;
1521
1522
  brandName: string;
@@ -1566,7 +1567,6 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
1566
1567
  lineRichMenuId?: string | null | undefined;
1567
1568
  messengerIntegrationType?: "own" | "business" | undefined;
1568
1569
  facebookFeedIntegrationType?: "own" | "business" | undefined;
1569
- isCSATEnabled?: boolean | undefined;
1570
1570
  };
1571
1571
  status: boolean;
1572
1572
  brandName: string;
@@ -1617,7 +1617,6 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
1617
1617
  lineRichMenuId?: string | null | undefined;
1618
1618
  messengerIntegrationType?: "own" | "business" | undefined;
1619
1619
  facebookFeedIntegrationType?: "own" | "business" | undefined;
1620
- isCSATEnabled?: boolean | undefined;
1621
1620
  };
1622
1621
  status: boolean;
1623
1622
  brandName: string;
@@ -1638,7 +1637,7 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
1638
1637
  id: z.ZodOptional<z.ZodString>;
1639
1638
  message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1640
1639
  direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
1641
- type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "csat", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
1640
+ 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"]>;
1642
1641
  readAt: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodString]>>>;
1643
1642
  metadata: z.ZodOptional<z.ZodAny>;
1644
1643
  platformId: z.ZodOptional<z.ZodString>;
@@ -1690,7 +1689,7 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
1690
1689
  parentMessageId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1691
1690
  feedPostId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1692
1691
  }, "strip", z.ZodTypeAny, {
1693
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
1692
+ 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";
1694
1693
  direction: "incoming" | "outgoing" | "system";
1695
1694
  id?: string | undefined;
1696
1695
  message?: string | null | undefined;
@@ -1721,7 +1720,7 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
1721
1720
  parentMessageId?: string | null | undefined;
1722
1721
  feedPostId?: string | null | undefined;
1723
1722
  }, {
1724
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
1723
+ 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";
1725
1724
  direction: "incoming" | "outgoing" | "system";
1726
1725
  id?: string | undefined;
1727
1726
  message?: string | null | undefined;
@@ -1754,7 +1753,7 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
1754
1753
  }>;
1755
1754
  }, "strip", z.ZodTypeAny, {
1756
1755
  message: {
1757
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
1756
+ 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";
1758
1757
  direction: "incoming" | "outgoing" | "system";
1759
1758
  id?: string | undefined;
1760
1759
  message?: string | null | undefined;
@@ -1820,7 +1819,6 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
1820
1819
  lineRichMenuId?: string | null | undefined;
1821
1820
  messengerIntegrationType?: "own" | "business" | undefined;
1822
1821
  facebookFeedIntegrationType?: "own" | "business" | undefined;
1823
- isCSATEnabled?: boolean | undefined;
1824
1822
  };
1825
1823
  status: boolean;
1826
1824
  brandName: string;
@@ -1839,7 +1837,7 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
1839
1837
  };
1840
1838
  }, {
1841
1839
  message: {
1842
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
1840
+ 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";
1843
1841
  direction: "incoming" | "outgoing" | "system";
1844
1842
  id?: string | undefined;
1845
1843
  message?: string | null | undefined;
@@ -1905,7 +1903,6 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
1905
1903
  lineRichMenuId?: string | null | undefined;
1906
1904
  messengerIntegrationType?: "own" | "business" | undefined;
1907
1905
  facebookFeedIntegrationType?: "own" | "business" | undefined;
1908
- isCSATEnabled?: boolean | undefined;
1909
1906
  };
1910
1907
  status: boolean;
1911
1908
  brandName: string;
@@ -2115,7 +2112,6 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
2115
2112
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2116
2113
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
2117
2114
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
2118
- isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
2119
2115
  }, "strip", z.ZodTypeAny, {
2120
2116
  name: string;
2121
2117
  id: string;
@@ -2145,7 +2141,6 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
2145
2141
  lineRichMenuId?: string | null | undefined;
2146
2142
  messengerIntegrationType?: "own" | "business" | undefined;
2147
2143
  facebookFeedIntegrationType?: "own" | "business" | undefined;
2148
- isCSATEnabled?: boolean | undefined;
2149
2144
  }, {
2150
2145
  name: string;
2151
2146
  id: string;
@@ -2175,7 +2170,6 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
2175
2170
  lineRichMenuId?: string | null | undefined;
2176
2171
  messengerIntegrationType?: "own" | "business" | undefined;
2177
2172
  facebookFeedIntegrationType?: "own" | "business" | undefined;
2178
- isCSATEnabled?: boolean | undefined;
2179
2173
  }>;
2180
2174
  platformId: z.ZodString;
2181
2175
  brandName: z.ZodString;
@@ -2235,7 +2229,6 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
2235
2229
  lineRichMenuId?: string | null | undefined;
2236
2230
  messengerIntegrationType?: "own" | "business" | undefined;
2237
2231
  facebookFeedIntegrationType?: "own" | "business" | undefined;
2238
- isCSATEnabled?: boolean | undefined;
2239
2232
  };
2240
2233
  status: boolean;
2241
2234
  brandName: string;
@@ -2283,7 +2276,6 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
2283
2276
  lineRichMenuId?: string | null | undefined;
2284
2277
  messengerIntegrationType?: "own" | "business" | undefined;
2285
2278
  facebookFeedIntegrationType?: "own" | "business" | undefined;
2286
- isCSATEnabled?: boolean | undefined;
2287
2279
  };
2288
2280
  status: boolean;
2289
2281
  brandName: string;
@@ -2336,7 +2328,6 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
2336
2328
  lineRichMenuId?: string | null | undefined;
2337
2329
  messengerIntegrationType?: "own" | "business" | undefined;
2338
2330
  facebookFeedIntegrationType?: "own" | "business" | undefined;
2339
- isCSATEnabled?: boolean | undefined;
2340
2331
  };
2341
2332
  status: boolean;
2342
2333
  brandName: string;
@@ -2428,7 +2419,6 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
2428
2419
  lineRichMenuId?: string | null | undefined;
2429
2420
  messengerIntegrationType?: "own" | "business" | undefined;
2430
2421
  facebookFeedIntegrationType?: "own" | "business" | undefined;
2431
- isCSATEnabled?: boolean | undefined;
2432
2422
  };
2433
2423
  status: boolean;
2434
2424
  brandName: string;
@@ -2490,7 +2480,7 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
2490
2480
  id: z.ZodOptional<z.ZodString>;
2491
2481
  message: z.ZodOptional<z.ZodString>;
2492
2482
  direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
2493
- type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "csat", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
2483
+ 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"]>;
2494
2484
  readAt: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodString]>>>;
2495
2485
  metadata: z.ZodOptional<z.ZodAny>;
2496
2486
  platformId: z.ZodOptional<z.ZodString>;
@@ -2546,7 +2536,7 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
2546
2536
  editedAt: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodString]>>>;
2547
2537
  label: z.ZodOptional<z.ZodString>;
2548
2538
  }, "strip", z.ZodTypeAny, {
2549
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
2539
+ 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";
2550
2540
  direction: "incoming" | "outgoing" | "system";
2551
2541
  id?: string | undefined;
2552
2542
  message?: string | undefined;
@@ -2581,7 +2571,7 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
2581
2571
  editedAt?: string | Date | null | undefined;
2582
2572
  label?: string | undefined;
2583
2573
  }, {
2584
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
2574
+ 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";
2585
2575
  direction: "incoming" | "outgoing" | "system";
2586
2576
  id?: string | undefined;
2587
2577
  message?: string | undefined;
@@ -2618,7 +2608,7 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
2618
2608
  }>;
2619
2609
  }, "strip", z.ZodTypeAny, {
2620
2610
  message: {
2621
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
2611
+ 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";
2622
2612
  direction: "incoming" | "outgoing" | "system";
2623
2613
  id?: string | undefined;
2624
2614
  message?: string | undefined;
@@ -2688,7 +2678,6 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
2688
2678
  lineRichMenuId?: string | null | undefined;
2689
2679
  messengerIntegrationType?: "own" | "business" | undefined;
2690
2680
  facebookFeedIntegrationType?: "own" | "business" | undefined;
2691
- isCSATEnabled?: boolean | undefined;
2692
2681
  };
2693
2682
  status: boolean;
2694
2683
  brandName: string;
@@ -2749,7 +2738,7 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
2749
2738
  isBot: boolean | null;
2750
2739
  }, {
2751
2740
  message: {
2752
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
2741
+ 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";
2753
2742
  direction: "incoming" | "outgoing" | "system";
2754
2743
  id?: string | undefined;
2755
2744
  message?: string | undefined;
@@ -2819,7 +2808,6 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
2819
2808
  lineRichMenuId?: string | null | undefined;
2820
2809
  messengerIntegrationType?: "own" | "business" | undefined;
2821
2810
  facebookFeedIntegrationType?: "own" | "business" | undefined;
2822
- isCSATEnabled?: boolean | undefined;
2823
2811
  };
2824
2812
  status: boolean;
2825
2813
  brandName: string;
@@ -2884,7 +2872,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
2884
2872
  id: z.ZodOptional<z.ZodString>;
2885
2873
  message: z.ZodOptional<z.ZodString>;
2886
2874
  direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
2887
- type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "csat", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
2875
+ 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"]>;
2888
2876
  readAt: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodString]>>>;
2889
2877
  metadata: z.ZodOptional<z.ZodAny>;
2890
2878
  platformId: z.ZodOptional<z.ZodString>;
@@ -2940,7 +2928,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
2940
2928
  editedAt: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodString]>>>;
2941
2929
  label: z.ZodOptional<z.ZodString>;
2942
2930
  }, "strip", z.ZodTypeAny, {
2943
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
2931
+ 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";
2944
2932
  direction: "incoming" | "outgoing" | "system";
2945
2933
  id?: string | undefined;
2946
2934
  message?: string | undefined;
@@ -2975,7 +2963,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
2975
2963
  editedAt?: string | Date | null | undefined;
2976
2964
  label?: string | undefined;
2977
2965
  }, {
2978
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
2966
+ 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";
2979
2967
  direction: "incoming" | "outgoing" | "system";
2980
2968
  id?: string | undefined;
2981
2969
  message?: string | undefined;
@@ -3200,7 +3188,6 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
3200
3188
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
3201
3189
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
3202
3190
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
3203
- isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
3204
3191
  }, "strip", z.ZodTypeAny, {
3205
3192
  name: string;
3206
3193
  id: string;
@@ -3230,7 +3217,6 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
3230
3217
  lineRichMenuId?: string | null | undefined;
3231
3218
  messengerIntegrationType?: "own" | "business" | undefined;
3232
3219
  facebookFeedIntegrationType?: "own" | "business" | undefined;
3233
- isCSATEnabled?: boolean | undefined;
3234
3220
  }, {
3235
3221
  name: string;
3236
3222
  id: string;
@@ -3260,7 +3246,6 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
3260
3246
  lineRichMenuId?: string | null | undefined;
3261
3247
  messengerIntegrationType?: "own" | "business" | undefined;
3262
3248
  facebookFeedIntegrationType?: "own" | "business" | undefined;
3263
- isCSATEnabled?: boolean | undefined;
3264
3249
  }>;
3265
3250
  platformId: z.ZodString;
3266
3251
  brandName: z.ZodString;
@@ -3320,7 +3305,6 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
3320
3305
  lineRichMenuId?: string | null | undefined;
3321
3306
  messengerIntegrationType?: "own" | "business" | undefined;
3322
3307
  facebookFeedIntegrationType?: "own" | "business" | undefined;
3323
- isCSATEnabled?: boolean | undefined;
3324
3308
  };
3325
3309
  status: boolean;
3326
3310
  brandName: string;
@@ -3368,7 +3352,6 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
3368
3352
  lineRichMenuId?: string | null | undefined;
3369
3353
  messengerIntegrationType?: "own" | "business" | undefined;
3370
3354
  facebookFeedIntegrationType?: "own" | "business" | undefined;
3371
- isCSATEnabled?: boolean | undefined;
3372
3355
  };
3373
3356
  status: boolean;
3374
3357
  brandName: string;
@@ -3421,7 +3404,6 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
3421
3404
  lineRichMenuId?: string | null | undefined;
3422
3405
  messengerIntegrationType?: "own" | "business" | undefined;
3423
3406
  facebookFeedIntegrationType?: "own" | "business" | undefined;
3424
- isCSATEnabled?: boolean | undefined;
3425
3407
  };
3426
3408
  status: boolean;
3427
3409
  brandName: string;
@@ -3513,7 +3495,6 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
3513
3495
  lineRichMenuId?: string | null | undefined;
3514
3496
  messengerIntegrationType?: "own" | "business" | undefined;
3515
3497
  facebookFeedIntegrationType?: "own" | "business" | undefined;
3516
- isCSATEnabled?: boolean | undefined;
3517
3498
  };
3518
3499
  status: boolean;
3519
3500
  brandName: string;
@@ -3584,7 +3565,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
3584
3565
  }>>;
3585
3566
  }, "strip", z.ZodTypeAny, {
3586
3567
  message: {
3587
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
3568
+ 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";
3588
3569
  direction: "incoming" | "outgoing" | "system";
3589
3570
  id?: string | undefined;
3590
3571
  message?: string | undefined;
@@ -3654,7 +3635,6 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
3654
3635
  lineRichMenuId?: string | null | undefined;
3655
3636
  messengerIntegrationType?: "own" | "business" | undefined;
3656
3637
  facebookFeedIntegrationType?: "own" | "business" | undefined;
3657
- isCSATEnabled?: boolean | undefined;
3658
3638
  };
3659
3639
  status: boolean;
3660
3640
  brandName: string;
@@ -3719,7 +3699,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
3719
3699
  } | undefined;
3720
3700
  }, {
3721
3701
  message: {
3722
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
3702
+ 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";
3723
3703
  direction: "incoming" | "outgoing" | "system";
3724
3704
  id?: string | undefined;
3725
3705
  message?: string | undefined;
@@ -3789,7 +3769,6 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
3789
3769
  lineRichMenuId?: string | null | undefined;
3790
3770
  messengerIntegrationType?: "own" | "business" | undefined;
3791
3771
  facebookFeedIntegrationType?: "own" | "business" | undefined;
3792
- isCSATEnabled?: boolean | undefined;
3793
3772
  };
3794
3773
  status: boolean;
3795
3774
  brandName: string;
@@ -3856,7 +3835,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
3856
3835
  export declare const SendMessageResponseSchema: z.ZodObject<{
3857
3836
  requestId: z.ZodString;
3858
3837
  data: z.ZodObject<{
3859
- type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "csat", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
3838
+ 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"]>;
3860
3839
  message: z.ZodString;
3861
3840
  id: z.ZodString;
3862
3841
  url: z.ZodString;
@@ -5373,7 +5352,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
5373
5352
  channelId: string;
5374
5353
  socialPlatformId: string;
5375
5354
  }>;
5376
- csatStatus: z.ZodNullable<z.ZodString>;
5377
5355
  actor: z.ZodObject<{
5378
5356
  id: z.ZodString;
5379
5357
  createdAt: z.ZodDate;
@@ -5852,7 +5830,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
5852
5830
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
5853
5831
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
5854
5832
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
5855
- isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
5856
5833
  }, "strip", z.ZodTypeAny, {
5857
5834
  name: string;
5858
5835
  id: string;
@@ -5882,7 +5859,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
5882
5859
  lineRichMenuId?: string | null | undefined;
5883
5860
  messengerIntegrationType?: "own" | "business" | undefined;
5884
5861
  facebookFeedIntegrationType?: "own" | "business" | undefined;
5885
- isCSATEnabled?: boolean | undefined;
5886
5862
  }, {
5887
5863
  name: string;
5888
5864
  id: string;
@@ -5912,7 +5888,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
5912
5888
  lineRichMenuId?: string | null | undefined;
5913
5889
  messengerIntegrationType?: "own" | "business" | undefined;
5914
5890
  facebookFeedIntegrationType?: "own" | "business" | undefined;
5915
- isCSATEnabled?: boolean | undefined;
5916
5891
  }>;
5917
5892
  brandName: z.ZodString;
5918
5893
  platformId: z.ZodString;
@@ -6176,7 +6151,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
6176
6151
  lineRichMenuId?: string | null | undefined;
6177
6152
  messengerIntegrationType?: "own" | "business" | undefined;
6178
6153
  facebookFeedIntegrationType?: "own" | "business" | undefined;
6179
- isCSATEnabled?: boolean | undefined;
6180
6154
  };
6181
6155
  status: boolean;
6182
6156
  createdAt: Date;
@@ -6271,7 +6245,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
6271
6245
  lineRichMenuId?: string | null | undefined;
6272
6246
  messengerIntegrationType?: "own" | "business" | undefined;
6273
6247
  facebookFeedIntegrationType?: "own" | "business" | undefined;
6274
- isCSATEnabled?: boolean | undefined;
6275
6248
  };
6276
6249
  status: boolean;
6277
6250
  createdAt: Date;
@@ -6930,7 +6903,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
6930
6903
  lineRichMenuId?: string | null | undefined;
6931
6904
  messengerIntegrationType?: "own" | "business" | undefined;
6932
6905
  facebookFeedIntegrationType?: "own" | "business" | undefined;
6933
- isCSATEnabled?: boolean | undefined;
6934
6906
  };
6935
6907
  status: boolean;
6936
6908
  createdAt: Date;
@@ -7222,7 +7194,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
7222
7194
  closedAt: Date;
7223
7195
  lastMessageAt: Date | null;
7224
7196
  isBotRoom: boolean;
7225
- csatStatus: string | null;
7226
7197
  cxlog: {
7227
7198
  id: string;
7228
7199
  channel: string | null;
@@ -7359,7 +7330,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
7359
7330
  lineRichMenuId?: string | null | undefined;
7360
7331
  messengerIntegrationType?: "own" | "business" | undefined;
7361
7332
  facebookFeedIntegrationType?: "own" | "business" | undefined;
7362
- isCSATEnabled?: boolean | undefined;
7363
7333
  };
7364
7334
  status: boolean;
7365
7335
  createdAt: Date;
@@ -7651,7 +7621,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
7651
7621
  closedAt: Date;
7652
7622
  lastMessageAt: Date | null;
7653
7623
  isBotRoom: boolean;
7654
- csatStatus: string | null;
7655
7624
  cxlog: {
7656
7625
  id: string;
7657
7626
  channel: string | null;
@@ -7792,7 +7761,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
7792
7761
  deletedAt: z.ZodNullable<z.ZodDate>;
7793
7762
  message: z.ZodString;
7794
7763
  direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
7795
- type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "csat", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
7764
+ 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"]>;
7796
7765
  readAt: z.ZodDate;
7797
7766
  metadata: z.ZodAny;
7798
7767
  platformId: z.ZodString;
@@ -8450,7 +8419,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
8450
8419
  };
8451
8420
  }>;
8452
8421
  }, "strip", z.ZodTypeAny, {
8453
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
8422
+ 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";
8454
8423
  message: string;
8455
8424
  id: string;
8456
8425
  url: string;
@@ -8612,7 +8581,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
8612
8581
  metadata?: any;
8613
8582
  template?: any;
8614
8583
  }, {
8615
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
8584
+ 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";
8616
8585
  message: string;
8617
8586
  id: string;
8618
8587
  url: string;
@@ -8986,7 +8955,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
8986
8955
  deletedAt: z.ZodNullable<z.ZodDate>;
8987
8956
  message: z.ZodString;
8988
8957
  direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
8989
- type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "csat", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
8958
+ 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"]>;
8990
8959
  readAt: z.ZodDate;
8991
8960
  metadata: z.ZodAny;
8992
8961
  platformId: z.ZodString;
@@ -10060,7 +10029,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
10060
10029
  channelId: string;
10061
10030
  socialPlatformId: string;
10062
10031
  }>;
10063
- csatStatus: z.ZodNullable<z.ZodString>;
10064
10032
  actor: z.ZodObject<{
10065
10033
  id: z.ZodString;
10066
10034
  createdAt: z.ZodDate;
@@ -10539,7 +10507,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
10539
10507
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
10540
10508
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
10541
10509
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
10542
- isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
10543
10510
  }, "strip", z.ZodTypeAny, {
10544
10511
  name: string;
10545
10512
  id: string;
@@ -10569,7 +10536,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
10569
10536
  lineRichMenuId?: string | null | undefined;
10570
10537
  messengerIntegrationType?: "own" | "business" | undefined;
10571
10538
  facebookFeedIntegrationType?: "own" | "business" | undefined;
10572
- isCSATEnabled?: boolean | undefined;
10573
10539
  }, {
10574
10540
  name: string;
10575
10541
  id: string;
@@ -10599,7 +10565,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
10599
10565
  lineRichMenuId?: string | null | undefined;
10600
10566
  messengerIntegrationType?: "own" | "business" | undefined;
10601
10567
  facebookFeedIntegrationType?: "own" | "business" | undefined;
10602
- isCSATEnabled?: boolean | undefined;
10603
10568
  }>;
10604
10569
  brandName: z.ZodString;
10605
10570
  platformId: z.ZodString;
@@ -10863,7 +10828,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
10863
10828
  lineRichMenuId?: string | null | undefined;
10864
10829
  messengerIntegrationType?: "own" | "business" | undefined;
10865
10830
  facebookFeedIntegrationType?: "own" | "business" | undefined;
10866
- isCSATEnabled?: boolean | undefined;
10867
10831
  };
10868
10832
  status: boolean;
10869
10833
  createdAt: Date;
@@ -10958,7 +10922,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
10958
10922
  lineRichMenuId?: string | null | undefined;
10959
10923
  messengerIntegrationType?: "own" | "business" | undefined;
10960
10924
  facebookFeedIntegrationType?: "own" | "business" | undefined;
10961
- isCSATEnabled?: boolean | undefined;
10962
10925
  };
10963
10926
  status: boolean;
10964
10927
  createdAt: Date;
@@ -11617,7 +11580,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
11617
11580
  lineRichMenuId?: string | null | undefined;
11618
11581
  messengerIntegrationType?: "own" | "business" | undefined;
11619
11582
  facebookFeedIntegrationType?: "own" | "business" | undefined;
11620
- isCSATEnabled?: boolean | undefined;
11621
11583
  };
11622
11584
  status: boolean;
11623
11585
  createdAt: Date;
@@ -11909,7 +11871,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
11909
11871
  closedAt: Date;
11910
11872
  lastMessageAt: Date | null;
11911
11873
  isBotRoom: boolean;
11912
- csatStatus: string | null;
11913
11874
  cxlog: {
11914
11875
  id: string;
11915
11876
  channel: string | null;
@@ -12046,7 +12007,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
12046
12007
  lineRichMenuId?: string | null | undefined;
12047
12008
  messengerIntegrationType?: "own" | "business" | undefined;
12048
12009
  facebookFeedIntegrationType?: "own" | "business" | undefined;
12049
- isCSATEnabled?: boolean | undefined;
12050
12010
  };
12051
12011
  status: boolean;
12052
12012
  createdAt: Date;
@@ -12338,7 +12298,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
12338
12298
  closedAt: Date;
12339
12299
  lastMessageAt: Date | null;
12340
12300
  isBotRoom: boolean;
12341
- csatStatus: string | null;
12342
12301
  cxlog: {
12343
12302
  id: string;
12344
12303
  channel: string | null;
@@ -12482,7 +12441,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
12482
12441
  deletedAt: z.ZodNullable<z.ZodDate>;
12483
12442
  message: z.ZodString;
12484
12443
  direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
12485
- type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "csat", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
12444
+ 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"]>;
12486
12445
  readAt: z.ZodDate;
12487
12446
  metadata: z.ZodAny;
12488
12447
  platformId: z.ZodString;
@@ -13140,7 +13099,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
13140
13099
  };
13141
13100
  }>;
13142
13101
  }, "strip", z.ZodTypeAny, {
13143
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
13102
+ 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";
13144
13103
  message: string;
13145
13104
  id: string;
13146
13105
  url: string;
@@ -13302,7 +13261,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
13302
13261
  metadata?: any;
13303
13262
  template?: any;
13304
13263
  }, {
13305
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
13264
+ 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";
13306
13265
  message: string;
13307
13266
  id: string;
13308
13267
  url: string;
@@ -14104,7 +14063,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
14104
14063
  editedMessageid: z.ZodString;
14105
14064
  label: z.ZodOptional<z.ZodString>;
14106
14065
  }, "strip", z.ZodTypeAny, {
14107
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
14066
+ 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";
14108
14067
  message: string;
14109
14068
  id: string;
14110
14069
  url: string;
@@ -14248,7 +14207,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
14248
14207
  lineRichMenuId?: string | null | undefined;
14249
14208
  messengerIntegrationType?: "own" | "business" | undefined;
14250
14209
  facebookFeedIntegrationType?: "own" | "business" | undefined;
14251
- isCSATEnabled?: boolean | undefined;
14252
14210
  };
14253
14211
  status: boolean;
14254
14212
  createdAt: Date;
@@ -14540,7 +14498,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
14540
14498
  closedAt: Date;
14541
14499
  lastMessageAt: Date | null;
14542
14500
  isBotRoom: boolean;
14543
- csatStatus: string | null;
14544
14501
  cxlog: {
14545
14502
  id: string;
14546
14503
  channel: string | null;
@@ -14659,7 +14616,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
14659
14616
  previewUrl: string;
14660
14617
  imageSetId: string;
14661
14618
  repliedMessage: {
14662
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
14619
+ 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";
14663
14620
  message: string;
14664
14621
  id: string;
14665
14622
  url: string;
@@ -14870,7 +14827,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
14870
14827
  template?: any;
14871
14828
  label?: string | undefined;
14872
14829
  }, {
14873
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
14830
+ 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";
14874
14831
  message: string;
14875
14832
  id: string;
14876
14833
  url: string;
@@ -15014,7 +14971,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
15014
14971
  lineRichMenuId?: string | null | undefined;
15015
14972
  messengerIntegrationType?: "own" | "business" | undefined;
15016
14973
  facebookFeedIntegrationType?: "own" | "business" | undefined;
15017
- isCSATEnabled?: boolean | undefined;
15018
14974
  };
15019
14975
  status: boolean;
15020
14976
  createdAt: Date;
@@ -15306,7 +15262,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
15306
15262
  closedAt: Date;
15307
15263
  lastMessageAt: Date | null;
15308
15264
  isBotRoom: boolean;
15309
- csatStatus: string | null;
15310
15265
  cxlog: {
15311
15266
  id: string;
15312
15267
  channel: string | null;
@@ -15425,7 +15380,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
15425
15380
  previewUrl: string;
15426
15381
  imageSetId: string;
15427
15382
  repliedMessage: {
15428
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
15383
+ 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";
15429
15384
  message: string;
15430
15385
  id: string;
15431
15386
  url: string;
@@ -15637,7 +15592,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
15637
15592
  label?: string | undefined;
15638
15593
  }>>>;
15639
15594
  }, "strip", z.ZodTypeAny, {
15640
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
15595
+ 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";
15641
15596
  message: string;
15642
15597
  id: string;
15643
15598
  url: string;
@@ -15781,7 +15736,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
15781
15736
  lineRichMenuId?: string | null | undefined;
15782
15737
  messengerIntegrationType?: "own" | "business" | undefined;
15783
15738
  facebookFeedIntegrationType?: "own" | "business" | undefined;
15784
- isCSATEnabled?: boolean | undefined;
15785
15739
  };
15786
15740
  status: boolean;
15787
15741
  createdAt: Date;
@@ -16073,7 +16027,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
16073
16027
  closedAt: Date;
16074
16028
  lastMessageAt: Date | null;
16075
16029
  isBotRoom: boolean;
16076
- csatStatus: string | null;
16077
16030
  cxlog: {
16078
16031
  id: string;
16079
16032
  channel: string | null;
@@ -16192,7 +16145,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
16192
16145
  previewUrl: string;
16193
16146
  imageSetId: string;
16194
16147
  repliedMessage: {
16195
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
16148
+ 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";
16196
16149
  message: string;
16197
16150
  id: string;
16198
16151
  url: string;
@@ -16403,7 +16356,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
16403
16356
  template?: any;
16404
16357
  metadata?: any;
16405
16358
  fromMessage?: {
16406
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
16359
+ 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";
16407
16360
  message: string;
16408
16361
  id: string;
16409
16362
  url: string;
@@ -16547,7 +16500,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
16547
16500
  lineRichMenuId?: string | null | undefined;
16548
16501
  messengerIntegrationType?: "own" | "business" | undefined;
16549
16502
  facebookFeedIntegrationType?: "own" | "business" | undefined;
16550
- isCSATEnabled?: boolean | undefined;
16551
16503
  };
16552
16504
  status: boolean;
16553
16505
  createdAt: Date;
@@ -16839,7 +16791,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
16839
16791
  closedAt: Date;
16840
16792
  lastMessageAt: Date | null;
16841
16793
  isBotRoom: boolean;
16842
- csatStatus: string | null;
16843
16794
  cxlog: {
16844
16795
  id: string;
16845
16796
  channel: string | null;
@@ -16958,7 +16909,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
16958
16909
  previewUrl: string;
16959
16910
  imageSetId: string;
16960
16911
  repliedMessage: {
16961
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
16912
+ 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";
16962
16913
  message: string;
16963
16914
  id: string;
16964
16915
  url: string;
@@ -17170,7 +17121,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
17170
17121
  label?: string | undefined;
17171
17122
  } | null | undefined;
17172
17123
  }, {
17173
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
17124
+ 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";
17174
17125
  message: string;
17175
17126
  id: string;
17176
17127
  url: string;
@@ -17314,7 +17265,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
17314
17265
  lineRichMenuId?: string | null | undefined;
17315
17266
  messengerIntegrationType?: "own" | "business" | undefined;
17316
17267
  facebookFeedIntegrationType?: "own" | "business" | undefined;
17317
- isCSATEnabled?: boolean | undefined;
17318
17268
  };
17319
17269
  status: boolean;
17320
17270
  createdAt: Date;
@@ -17606,7 +17556,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
17606
17556
  closedAt: Date;
17607
17557
  lastMessageAt: Date | null;
17608
17558
  isBotRoom: boolean;
17609
- csatStatus: string | null;
17610
17559
  cxlog: {
17611
17560
  id: string;
17612
17561
  channel: string | null;
@@ -17725,7 +17674,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
17725
17674
  previewUrl: string;
17726
17675
  imageSetId: string;
17727
17676
  repliedMessage: {
17728
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
17677
+ 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";
17729
17678
  message: string;
17730
17679
  id: string;
17731
17680
  url: string;
@@ -17936,7 +17885,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
17936
17885
  template?: any;
17937
17886
  metadata?: any;
17938
17887
  fromMessage?: {
17939
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
17888
+ 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";
17940
17889
  message: string;
17941
17890
  id: string;
17942
17891
  url: string;
@@ -18080,7 +18029,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
18080
18029
  lineRichMenuId?: string | null | undefined;
18081
18030
  messengerIntegrationType?: "own" | "business" | undefined;
18082
18031
  facebookFeedIntegrationType?: "own" | "business" | undefined;
18083
- isCSATEnabled?: boolean | undefined;
18084
18032
  };
18085
18033
  status: boolean;
18086
18034
  createdAt: Date;
@@ -18372,7 +18320,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
18372
18320
  closedAt: Date;
18373
18321
  lastMessageAt: Date | null;
18374
18322
  isBotRoom: boolean;
18375
- csatStatus: string | null;
18376
18323
  cxlog: {
18377
18324
  id: string;
18378
18325
  channel: string | null;
@@ -18491,7 +18438,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
18491
18438
  previewUrl: string;
18492
18439
  imageSetId: string;
18493
18440
  repliedMessage: {
18494
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
18441
+ 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";
18495
18442
  message: string;
18496
18443
  id: string;
18497
18444
  url: string;
@@ -18705,7 +18652,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
18705
18652
  }>;
18706
18653
  }, "strip", z.ZodTypeAny, {
18707
18654
  data: {
18708
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
18655
+ 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";
18709
18656
  message: string;
18710
18657
  id: string;
18711
18658
  url: string;
@@ -18849,7 +18796,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
18849
18796
  lineRichMenuId?: string | null | undefined;
18850
18797
  messengerIntegrationType?: "own" | "business" | undefined;
18851
18798
  facebookFeedIntegrationType?: "own" | "business" | undefined;
18852
- isCSATEnabled?: boolean | undefined;
18853
18799
  };
18854
18800
  status: boolean;
18855
18801
  createdAt: Date;
@@ -19141,7 +19087,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
19141
19087
  closedAt: Date;
19142
19088
  lastMessageAt: Date | null;
19143
19089
  isBotRoom: boolean;
19144
- csatStatus: string | null;
19145
19090
  cxlog: {
19146
19091
  id: string;
19147
19092
  channel: string | null;
@@ -19260,7 +19205,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
19260
19205
  previewUrl: string;
19261
19206
  imageSetId: string;
19262
19207
  repliedMessage: {
19263
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
19208
+ 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";
19264
19209
  message: string;
19265
19210
  id: string;
19266
19211
  url: string;
@@ -19471,7 +19416,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
19471
19416
  template?: any;
19472
19417
  metadata?: any;
19473
19418
  fromMessage?: {
19474
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
19419
+ 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";
19475
19420
  message: string;
19476
19421
  id: string;
19477
19422
  url: string;
@@ -19615,7 +19560,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
19615
19560
  lineRichMenuId?: string | null | undefined;
19616
19561
  messengerIntegrationType?: "own" | "business" | undefined;
19617
19562
  facebookFeedIntegrationType?: "own" | "business" | undefined;
19618
- isCSATEnabled?: boolean | undefined;
19619
19563
  };
19620
19564
  status: boolean;
19621
19565
  createdAt: Date;
@@ -19907,7 +19851,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
19907
19851
  closedAt: Date;
19908
19852
  lastMessageAt: Date | null;
19909
19853
  isBotRoom: boolean;
19910
- csatStatus: string | null;
19911
19854
  cxlog: {
19912
19855
  id: string;
19913
19856
  channel: string | null;
@@ -20026,7 +19969,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
20026
19969
  previewUrl: string;
20027
19970
  imageSetId: string;
20028
19971
  repliedMessage: {
20029
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
19972
+ 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";
20030
19973
  message: string;
20031
19974
  id: string;
20032
19975
  url: string;
@@ -20241,7 +20184,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
20241
20184
  requestId: string;
20242
20185
  }, {
20243
20186
  data: {
20244
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
20187
+ 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";
20245
20188
  message: string;
20246
20189
  id: string;
20247
20190
  url: string;
@@ -20385,7 +20328,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
20385
20328
  lineRichMenuId?: string | null | undefined;
20386
20329
  messengerIntegrationType?: "own" | "business" | undefined;
20387
20330
  facebookFeedIntegrationType?: "own" | "business" | undefined;
20388
- isCSATEnabled?: boolean | undefined;
20389
20331
  };
20390
20332
  status: boolean;
20391
20333
  createdAt: Date;
@@ -20677,7 +20619,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
20677
20619
  closedAt: Date;
20678
20620
  lastMessageAt: Date | null;
20679
20621
  isBotRoom: boolean;
20680
- csatStatus: string | null;
20681
20622
  cxlog: {
20682
20623
  id: string;
20683
20624
  channel: string | null;
@@ -20796,7 +20737,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
20796
20737
  previewUrl: string;
20797
20738
  imageSetId: string;
20798
20739
  repliedMessage: {
20799
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
20740
+ 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";
20800
20741
  message: string;
20801
20742
  id: string;
20802
20743
  url: string;
@@ -21007,7 +20948,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
21007
20948
  template?: any;
21008
20949
  metadata?: any;
21009
20950
  fromMessage?: {
21010
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
20951
+ 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";
21011
20952
  message: string;
21012
20953
  id: string;
21013
20954
  url: string;
@@ -21151,7 +21092,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
21151
21092
  lineRichMenuId?: string | null | undefined;
21152
21093
  messengerIntegrationType?: "own" | "business" | undefined;
21153
21094
  facebookFeedIntegrationType?: "own" | "business" | undefined;
21154
- isCSATEnabled?: boolean | undefined;
21155
21095
  };
21156
21096
  status: boolean;
21157
21097
  createdAt: Date;
@@ -21443,7 +21383,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
21443
21383
  closedAt: Date;
21444
21384
  lastMessageAt: Date | null;
21445
21385
  isBotRoom: boolean;
21446
- csatStatus: string | null;
21447
21386
  cxlog: {
21448
21387
  id: string;
21449
21388
  channel: string | null;
@@ -21562,7 +21501,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
21562
21501
  previewUrl: string;
21563
21502
  imageSetId: string;
21564
21503
  repliedMessage: {
21565
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
21504
+ 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";
21566
21505
  message: string;
21567
21506
  id: string;
21568
21507
  url: string;
@@ -21845,7 +21784,6 @@ export declare const ChannelServiceResponseSchema: z.ZodObject<{
21845
21784
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
21846
21785
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
21847
21786
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
21848
- isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
21849
21787
  }, "strip", z.ZodTypeAny, {
21850
21788
  name: string;
21851
21789
  id: string;
@@ -21875,7 +21813,6 @@ export declare const ChannelServiceResponseSchema: z.ZodObject<{
21875
21813
  lineRichMenuId?: string | null | undefined;
21876
21814
  messengerIntegrationType?: "own" | "business" | undefined;
21877
21815
  facebookFeedIntegrationType?: "own" | "business" | undefined;
21878
- isCSATEnabled?: boolean | undefined;
21879
21816
  }, {
21880
21817
  name: string;
21881
21818
  id: string;
@@ -21905,7 +21842,6 @@ export declare const ChannelServiceResponseSchema: z.ZodObject<{
21905
21842
  lineRichMenuId?: string | null | undefined;
21906
21843
  messengerIntegrationType?: "own" | "business" | undefined;
21907
21844
  facebookFeedIntegrationType?: "own" | "business" | undefined;
21908
- isCSATEnabled?: boolean | undefined;
21909
21845
  }>;
21910
21846
  platformId: z.ZodString;
21911
21847
  brandName: z.ZodString;
@@ -21965,7 +21901,6 @@ export declare const ChannelServiceResponseSchema: z.ZodObject<{
21965
21901
  lineRichMenuId?: string | null | undefined;
21966
21902
  messengerIntegrationType?: "own" | "business" | undefined;
21967
21903
  facebookFeedIntegrationType?: "own" | "business" | undefined;
21968
- isCSATEnabled?: boolean | undefined;
21969
21904
  };
21970
21905
  status: boolean;
21971
21906
  brandName: string;
@@ -22013,7 +21948,6 @@ export declare const ChannelServiceResponseSchema: z.ZodObject<{
22013
21948
  lineRichMenuId?: string | null | undefined;
22014
21949
  messengerIntegrationType?: "own" | "business" | undefined;
22015
21950
  facebookFeedIntegrationType?: "own" | "business" | undefined;
22016
- isCSATEnabled?: boolean | undefined;
22017
21951
  };
22018
21952
  status: boolean;
22019
21953
  brandName: string;
@@ -22063,7 +21997,6 @@ export declare const ChannelServiceResponseSchema: z.ZodObject<{
22063
21997
  lineRichMenuId?: string | null | undefined;
22064
21998
  messengerIntegrationType?: "own" | "business" | undefined;
22065
21999
  facebookFeedIntegrationType?: "own" | "business" | undefined;
22066
- isCSATEnabled?: boolean | undefined;
22067
22000
  };
22068
22001
  status: boolean;
22069
22002
  brandName: string;
@@ -22114,7 +22047,6 @@ export declare const ChannelServiceResponseSchema: z.ZodObject<{
22114
22047
  lineRichMenuId?: string | null | undefined;
22115
22048
  messengerIntegrationType?: "own" | "business" | undefined;
22116
22049
  facebookFeedIntegrationType?: "own" | "business" | undefined;
22117
- isCSATEnabled?: boolean | undefined;
22118
22050
  };
22119
22051
  status: boolean;
22120
22052
  brandName: string;
@@ -22140,7 +22072,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
22140
22072
  deletedAt: z.ZodNullable<z.ZodString>;
22141
22073
  message: z.ZodOptional<z.ZodString>;
22142
22074
  direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
22143
- type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "group", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "csat", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
22075
+ 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"]>;
22144
22076
  metadata: z.ZodAny;
22145
22077
  platformId: z.ZodString;
22146
22078
  platformMessageId: z.ZodString;
@@ -23572,7 +23504,6 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
23572
23504
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
23573
23505
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
23574
23506
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
23575
- isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
23576
23507
  }, "strip", z.ZodTypeAny, {
23577
23508
  name: string;
23578
23509
  id: string;
@@ -23602,7 +23533,6 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
23602
23533
  lineRichMenuId?: string | null | undefined;
23603
23534
  messengerIntegrationType?: "own" | "business" | undefined;
23604
23535
  facebookFeedIntegrationType?: "own" | "business" | undefined;
23605
- isCSATEnabled?: boolean | undefined;
23606
23536
  }, {
23607
23537
  name: string;
23608
23538
  id: string;
@@ -23632,7 +23562,6 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
23632
23562
  lineRichMenuId?: string | null | undefined;
23633
23563
  messengerIntegrationType?: "own" | "business" | undefined;
23634
23564
  facebookFeedIntegrationType?: "own" | "business" | undefined;
23635
- isCSATEnabled?: boolean | undefined;
23636
23565
  }>;
23637
23566
  platformId: z.ZodString;
23638
23567
  brandName: z.ZodString;
@@ -23692,7 +23621,6 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
23692
23621
  lineRichMenuId?: string | null | undefined;
23693
23622
  messengerIntegrationType?: "own" | "business" | undefined;
23694
23623
  facebookFeedIntegrationType?: "own" | "business" | undefined;
23695
- isCSATEnabled?: boolean | undefined;
23696
23624
  };
23697
23625
  status: boolean;
23698
23626
  brandName: string;
@@ -23740,7 +23668,6 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
23740
23668
  lineRichMenuId?: string | null | undefined;
23741
23669
  messengerIntegrationType?: "own" | "business" | undefined;
23742
23670
  facebookFeedIntegrationType?: "own" | "business" | undefined;
23743
- isCSATEnabled?: boolean | undefined;
23744
23671
  };
23745
23672
  status: boolean;
23746
23673
  brandName: string;
@@ -24537,7 +24464,6 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
24537
24464
  lineRichMenuId?: string | null | undefined;
24538
24465
  messengerIntegrationType?: "own" | "business" | undefined;
24539
24466
  facebookFeedIntegrationType?: "own" | "business" | undefined;
24540
- isCSATEnabled?: boolean | undefined;
24541
24467
  };
24542
24468
  status: boolean;
24543
24469
  brandName: string;
@@ -24890,7 +24816,6 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
24890
24816
  lineRichMenuId?: string | null | undefined;
24891
24817
  messengerIntegrationType?: "own" | "business" | undefined;
24892
24818
  facebookFeedIntegrationType?: "own" | "business" | undefined;
24893
- isCSATEnabled?: boolean | undefined;
24894
24819
  };
24895
24820
  status: boolean;
24896
24821
  brandName: string;
@@ -25646,7 +25571,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
25646
25571
  }>>>;
25647
25572
  label: z.ZodNullable<z.ZodOptional<z.ZodString>>;
25648
25573
  }, "strip", z.ZodTypeAny, {
25649
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
25574
+ 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";
25650
25575
  id: string;
25651
25576
  direction: "incoming" | "outgoing" | "system";
25652
25577
  createdAt: string;
@@ -25899,7 +25824,6 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
25899
25824
  lineRichMenuId?: string | null | undefined;
25900
25825
  messengerIntegrationType?: "own" | "business" | undefined;
25901
25826
  facebookFeedIntegrationType?: "own" | "business" | undefined;
25902
- isCSATEnabled?: boolean | undefined;
25903
25827
  };
25904
25828
  status: boolean;
25905
25829
  brandName: string;
@@ -26162,7 +26086,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
26162
26086
  } | null | undefined;
26163
26087
  label?: string | null | undefined;
26164
26088
  }, {
26165
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
26089
+ 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";
26166
26090
  id: string;
26167
26091
  direction: "incoming" | "outgoing" | "system";
26168
26092
  createdAt: string;
@@ -26415,7 +26339,6 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
26415
26339
  lineRichMenuId?: string | null | undefined;
26416
26340
  messengerIntegrationType?: "own" | "business" | undefined;
26417
26341
  facebookFeedIntegrationType?: "own" | "business" | undefined;
26418
- isCSATEnabled?: boolean | undefined;
26419
26342
  };
26420
26343
  status: boolean;
26421
26344
  brandName: string;
@@ -26680,7 +26603,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
26680
26603
  }>;
26681
26604
  }, "strip", z.ZodTypeAny, {
26682
26605
  message: {
26683
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
26606
+ 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";
26684
26607
  id: string;
26685
26608
  direction: "incoming" | "outgoing" | "system";
26686
26609
  createdAt: string;
@@ -26933,7 +26856,6 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
26933
26856
  lineRichMenuId?: string | null | undefined;
26934
26857
  messengerIntegrationType?: "own" | "business" | undefined;
26935
26858
  facebookFeedIntegrationType?: "own" | "business" | undefined;
26936
- isCSATEnabled?: boolean | undefined;
26937
26859
  };
26938
26860
  status: boolean;
26939
26861
  brandName: string;
@@ -27198,7 +27120,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
27198
27120
  };
27199
27121
  }, {
27200
27122
  message: {
27201
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "group" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "csat" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
27123
+ 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";
27202
27124
  id: string;
27203
27125
  direction: "incoming" | "outgoing" | "system";
27204
27126
  createdAt: string;
@@ -27451,7 +27373,6 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
27451
27373
  lineRichMenuId?: string | null | undefined;
27452
27374
  messengerIntegrationType?: "own" | "business" | undefined;
27453
27375
  facebookFeedIntegrationType?: "own" | "business" | undefined;
27454
- isCSATEnabled?: boolean | undefined;
27455
27376
  };
27456
27377
  status: boolean;
27457
27378
  brandName: string;