@kl1/contracts 1.2.60-uat → 1.2.61-uat

Sign up to get free protection for your applications and to get access to all the features.
Files changed (51) hide show
  1. package/dist/api-contracts/src/channel/index.d.ts +144 -0
  2. package/dist/api-contracts/src/channel/index.d.ts.map +1 -1
  3. package/dist/api-contracts/src/channel/schema.d.ts +8 -0
  4. package/dist/api-contracts/src/channel/schema.d.ts.map +1 -1
  5. package/dist/api-contracts/src/channel/validation.d.ts +10 -0
  6. package/dist/api-contracts/src/channel/validation.d.ts.map +1 -1
  7. package/dist/api-contracts/src/chat/index.d.ts +230 -0
  8. package/dist/api-contracts/src/chat/index.d.ts.map +1 -1
  9. package/dist/api-contracts/src/chat/schema.d.ts +54 -0
  10. package/dist/api-contracts/src/chat/schema.d.ts.map +1 -1
  11. package/dist/api-contracts/src/chat/validation.d.ts +79 -0
  12. package/dist/api-contracts/src/chat/validation.d.ts.map +1 -1
  13. package/dist/api-contracts/src/contract.d.ts +872 -0
  14. package/dist/api-contracts/src/contract.d.ts.map +1 -1
  15. package/dist/api-contracts/src/cx-log/index.d.ts +11 -0
  16. package/dist/api-contracts/src/cx-log/index.d.ts.map +1 -1
  17. package/dist/api-contracts/src/cx-log/schema.d.ts +9 -0
  18. package/dist/api-contracts/src/cx-log/schema.d.ts.map +1 -1
  19. package/dist/api-contracts/src/facebook-feed/index.d.ts +106 -0
  20. package/dist/api-contracts/src/facebook-feed/index.d.ts.map +1 -1
  21. package/dist/api-contracts/src/facebook-feed/schema.d.ts +7 -0
  22. package/dist/api-contracts/src/facebook-feed/schema.d.ts.map +1 -1
  23. package/dist/api-contracts/src/facebook-feed/validation.d.ts +5 -0
  24. package/dist/api-contracts/src/facebook-feed/validation.d.ts.map +1 -1
  25. package/dist/api-contracts/src/instagram/index.d.ts +83 -0
  26. package/dist/api-contracts/src/instagram/index.d.ts.map +1 -1
  27. package/dist/api-contracts/src/line/index.d.ts +75 -0
  28. package/dist/api-contracts/src/line/index.d.ts.map +1 -1
  29. package/dist/api-contracts/src/line/validation.d.ts +9 -0
  30. package/dist/api-contracts/src/line/validation.d.ts.map +1 -1
  31. package/dist/api-contracts/src/messenger/index.d.ts +83 -0
  32. package/dist/api-contracts/src/messenger/index.d.ts.map +1 -1
  33. package/dist/api-contracts/src/messenger/validation.d.ts +5 -0
  34. package/dist/api-contracts/src/messenger/validation.d.ts.map +1 -1
  35. package/dist/api-contracts/src/sms/index.d.ts +37 -0
  36. package/dist/api-contracts/src/sms/index.d.ts.map +1 -1
  37. package/dist/api-contracts/src/telegram/index.d.ts +61 -0
  38. package/dist/api-contracts/src/telegram/index.d.ts.map +1 -1
  39. package/dist/api-contracts/src/viber/index.d.ts +61 -0
  40. package/dist/api-contracts/src/viber/index.d.ts.map +1 -1
  41. package/dist/api-contracts/src/webchat/index.d.ts +61 -0
  42. package/dist/api-contracts/src/webchat/index.d.ts.map +1 -1
  43. package/dist/api-contracts/src/whatsapp/index.d.ts +71 -0
  44. package/dist/api-contracts/src/whatsapp/index.d.ts.map +1 -1
  45. package/dist/api-contracts/src/workflow-rule/index.d.ts +29 -0
  46. package/dist/api-contracts/src/workflow-rule/index.d.ts.map +1 -1
  47. package/dist/index.js +2 -1
  48. package/dist/index.js.map +1 -1
  49. package/dist/index.mjs +2 -1
  50. package/dist/index.mjs.map +1 -1
  51. package/package.json +1 -1
@@ -830,6 +830,7 @@ export declare const ChannelSchema: z.ZodObject<{
830
830
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
831
831
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
832
832
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
833
+ isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
833
834
  }, "strip", z.ZodTypeAny, {
834
835
  name: string;
835
836
  id: string;
@@ -859,6 +860,7 @@ export declare const ChannelSchema: z.ZodObject<{
859
860
  lineRichMenuId?: string | null | undefined;
860
861
  messengerIntegrationType?: "own" | "business" | undefined;
861
862
  facebookFeedIntegrationType?: "own" | "business" | undefined;
863
+ isCSATEnabled?: boolean | undefined;
862
864
  }, {
863
865
  name: string;
864
866
  id: string;
@@ -888,6 +890,7 @@ export declare const ChannelSchema: z.ZodObject<{
888
890
  lineRichMenuId?: string | null | undefined;
889
891
  messengerIntegrationType?: "own" | "business" | undefined;
890
892
  facebookFeedIntegrationType?: "own" | "business" | undefined;
893
+ isCSATEnabled?: boolean | undefined;
891
894
  }>;
892
895
  platformId: z.ZodString;
893
896
  brandName: z.ZodString;
@@ -947,6 +950,7 @@ export declare const ChannelSchema: z.ZodObject<{
947
950
  lineRichMenuId?: string | null | undefined;
948
951
  messengerIntegrationType?: "own" | "business" | undefined;
949
952
  facebookFeedIntegrationType?: "own" | "business" | undefined;
953
+ isCSATEnabled?: boolean | undefined;
950
954
  };
951
955
  status: boolean;
952
956
  brandName: string;
@@ -994,6 +998,7 @@ export declare const ChannelSchema: z.ZodObject<{
994
998
  lineRichMenuId?: string | null | undefined;
995
999
  messengerIntegrationType?: "own" | "business" | undefined;
996
1000
  facebookFeedIntegrationType?: "own" | "business" | undefined;
1001
+ isCSATEnabled?: boolean | undefined;
997
1002
  };
998
1003
  status: boolean;
999
1004
  brandName: string;
@@ -1075,6 +1080,7 @@ export declare const ReloginChanelSchema: z.ZodObject<{
1075
1080
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1076
1081
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
1077
1082
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
1083
+ isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
1078
1084
  }, "strip", z.ZodTypeAny, {
1079
1085
  name: string;
1080
1086
  id: string;
@@ -1104,6 +1110,7 @@ export declare const ReloginChanelSchema: z.ZodObject<{
1104
1110
  lineRichMenuId?: string | null | undefined;
1105
1111
  messengerIntegrationType?: "own" | "business" | undefined;
1106
1112
  facebookFeedIntegrationType?: "own" | "business" | undefined;
1113
+ isCSATEnabled?: boolean | undefined;
1107
1114
  }, {
1108
1115
  name: string;
1109
1116
  id: string;
@@ -1133,6 +1140,7 @@ export declare const ReloginChanelSchema: z.ZodObject<{
1133
1140
  lineRichMenuId?: string | null | undefined;
1134
1141
  messengerIntegrationType?: "own" | "business" | undefined;
1135
1142
  facebookFeedIntegrationType?: "own" | "business" | undefined;
1143
+ isCSATEnabled?: boolean | undefined;
1136
1144
  }>;
1137
1145
  status: z.ZodUnion<[z.ZodLiteral<true>, z.ZodLiteral<false>]>;
1138
1146
  actor: z.ZodOptional<z.ZodObject<{
@@ -1197,6 +1205,7 @@ export declare const ReloginChanelSchema: z.ZodObject<{
1197
1205
  lineRichMenuId?: string | null | undefined;
1198
1206
  messengerIntegrationType?: "own" | "business" | undefined;
1199
1207
  facebookFeedIntegrationType?: "own" | "business" | undefined;
1208
+ isCSATEnabled?: boolean | undefined;
1200
1209
  };
1201
1210
  status: boolean;
1202
1211
  createdAt: string;
@@ -1248,6 +1257,7 @@ export declare const ReloginChanelSchema: z.ZodObject<{
1248
1257
  lineRichMenuId?: string | null | undefined;
1249
1258
  messengerIntegrationType?: "own" | "business" | undefined;
1250
1259
  facebookFeedIntegrationType?: "own" | "business" | undefined;
1260
+ isCSATEnabled?: boolean | undefined;
1251
1261
  };
1252
1262
  status: boolean;
1253
1263
  createdAt: string;
@@ -1337,6 +1347,7 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
1337
1347
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1338
1348
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
1339
1349
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
1350
+ isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
1340
1351
  }, "strip", z.ZodTypeAny, {
1341
1352
  name: string;
1342
1353
  id: string;
@@ -1366,6 +1377,7 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
1366
1377
  lineRichMenuId?: string | null | undefined;
1367
1378
  messengerIntegrationType?: "own" | "business" | undefined;
1368
1379
  facebookFeedIntegrationType?: "own" | "business" | undefined;
1380
+ isCSATEnabled?: boolean | undefined;
1369
1381
  }, {
1370
1382
  name: string;
1371
1383
  id: string;
@@ -1395,6 +1407,7 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
1395
1407
  lineRichMenuId?: string | null | undefined;
1396
1408
  messengerIntegrationType?: "own" | "business" | undefined;
1397
1409
  facebookFeedIntegrationType?: "own" | "business" | undefined;
1410
+ isCSATEnabled?: boolean | undefined;
1398
1411
  }>;
1399
1412
  platformId: z.ZodString;
1400
1413
  brandName: z.ZodString;
@@ -1454,6 +1467,7 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
1454
1467
  lineRichMenuId?: string | null | undefined;
1455
1468
  messengerIntegrationType?: "own" | "business" | undefined;
1456
1469
  facebookFeedIntegrationType?: "own" | "business" | undefined;
1470
+ isCSATEnabled?: boolean | undefined;
1457
1471
  };
1458
1472
  status: boolean;
1459
1473
  brandName: string;
@@ -1501,6 +1515,7 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
1501
1515
  lineRichMenuId?: string | null | undefined;
1502
1516
  messengerIntegrationType?: "own" | "business" | undefined;
1503
1517
  facebookFeedIntegrationType?: "own" | "business" | undefined;
1518
+ isCSATEnabled?: boolean | undefined;
1504
1519
  };
1505
1520
  status: boolean;
1506
1521
  brandName: string;
@@ -1551,6 +1566,7 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
1551
1566
  lineRichMenuId?: string | null | undefined;
1552
1567
  messengerIntegrationType?: "own" | "business" | undefined;
1553
1568
  facebookFeedIntegrationType?: "own" | "business" | undefined;
1569
+ isCSATEnabled?: boolean | undefined;
1554
1570
  };
1555
1571
  status: boolean;
1556
1572
  brandName: string;
@@ -1601,6 +1617,7 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
1601
1617
  lineRichMenuId?: string | null | undefined;
1602
1618
  messengerIntegrationType?: "own" | "business" | undefined;
1603
1619
  facebookFeedIntegrationType?: "own" | "business" | undefined;
1620
+ isCSATEnabled?: boolean | undefined;
1604
1621
  };
1605
1622
  status: boolean;
1606
1623
  brandName: string;
@@ -1803,6 +1820,7 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
1803
1820
  lineRichMenuId?: string | null | undefined;
1804
1821
  messengerIntegrationType?: "own" | "business" | undefined;
1805
1822
  facebookFeedIntegrationType?: "own" | "business" | undefined;
1823
+ isCSATEnabled?: boolean | undefined;
1806
1824
  };
1807
1825
  status: boolean;
1808
1826
  brandName: string;
@@ -1887,6 +1905,7 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
1887
1905
  lineRichMenuId?: string | null | undefined;
1888
1906
  messengerIntegrationType?: "own" | "business" | undefined;
1889
1907
  facebookFeedIntegrationType?: "own" | "business" | undefined;
1908
+ isCSATEnabled?: boolean | undefined;
1890
1909
  };
1891
1910
  status: boolean;
1892
1911
  brandName: string;
@@ -2096,6 +2115,7 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
2096
2115
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2097
2116
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
2098
2117
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
2118
+ isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
2099
2119
  }, "strip", z.ZodTypeAny, {
2100
2120
  name: string;
2101
2121
  id: string;
@@ -2125,6 +2145,7 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
2125
2145
  lineRichMenuId?: string | null | undefined;
2126
2146
  messengerIntegrationType?: "own" | "business" | undefined;
2127
2147
  facebookFeedIntegrationType?: "own" | "business" | undefined;
2148
+ isCSATEnabled?: boolean | undefined;
2128
2149
  }, {
2129
2150
  name: string;
2130
2151
  id: string;
@@ -2154,6 +2175,7 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
2154
2175
  lineRichMenuId?: string | null | undefined;
2155
2176
  messengerIntegrationType?: "own" | "business" | undefined;
2156
2177
  facebookFeedIntegrationType?: "own" | "business" | undefined;
2178
+ isCSATEnabled?: boolean | undefined;
2157
2179
  }>;
2158
2180
  platformId: z.ZodString;
2159
2181
  brandName: z.ZodString;
@@ -2213,6 +2235,7 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
2213
2235
  lineRichMenuId?: string | null | undefined;
2214
2236
  messengerIntegrationType?: "own" | "business" | undefined;
2215
2237
  facebookFeedIntegrationType?: "own" | "business" | undefined;
2238
+ isCSATEnabled?: boolean | undefined;
2216
2239
  };
2217
2240
  status: boolean;
2218
2241
  brandName: string;
@@ -2260,6 +2283,7 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
2260
2283
  lineRichMenuId?: string | null | undefined;
2261
2284
  messengerIntegrationType?: "own" | "business" | undefined;
2262
2285
  facebookFeedIntegrationType?: "own" | "business" | undefined;
2286
+ isCSATEnabled?: boolean | undefined;
2263
2287
  };
2264
2288
  status: boolean;
2265
2289
  brandName: string;
@@ -2312,6 +2336,7 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
2312
2336
  lineRichMenuId?: string | null | undefined;
2313
2337
  messengerIntegrationType?: "own" | "business" | undefined;
2314
2338
  facebookFeedIntegrationType?: "own" | "business" | undefined;
2339
+ isCSATEnabled?: boolean | undefined;
2315
2340
  };
2316
2341
  status: boolean;
2317
2342
  brandName: string;
@@ -2403,6 +2428,7 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
2403
2428
  lineRichMenuId?: string | null | undefined;
2404
2429
  messengerIntegrationType?: "own" | "business" | undefined;
2405
2430
  facebookFeedIntegrationType?: "own" | "business" | undefined;
2431
+ isCSATEnabled?: boolean | undefined;
2406
2432
  };
2407
2433
  status: boolean;
2408
2434
  brandName: string;
@@ -2662,6 +2688,7 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
2662
2688
  lineRichMenuId?: string | null | undefined;
2663
2689
  messengerIntegrationType?: "own" | "business" | undefined;
2664
2690
  facebookFeedIntegrationType?: "own" | "business" | undefined;
2691
+ isCSATEnabled?: boolean | undefined;
2665
2692
  };
2666
2693
  status: boolean;
2667
2694
  brandName: string;
@@ -2792,6 +2819,7 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
2792
2819
  lineRichMenuId?: string | null | undefined;
2793
2820
  messengerIntegrationType?: "own" | "business" | undefined;
2794
2821
  facebookFeedIntegrationType?: "own" | "business" | undefined;
2822
+ isCSATEnabled?: boolean | undefined;
2795
2823
  };
2796
2824
  status: boolean;
2797
2825
  brandName: string;
@@ -3172,6 +3200,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
3172
3200
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
3173
3201
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
3174
3202
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
3203
+ isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
3175
3204
  }, "strip", z.ZodTypeAny, {
3176
3205
  name: string;
3177
3206
  id: string;
@@ -3201,6 +3230,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
3201
3230
  lineRichMenuId?: string | null | undefined;
3202
3231
  messengerIntegrationType?: "own" | "business" | undefined;
3203
3232
  facebookFeedIntegrationType?: "own" | "business" | undefined;
3233
+ isCSATEnabled?: boolean | undefined;
3204
3234
  }, {
3205
3235
  name: string;
3206
3236
  id: string;
@@ -3230,6 +3260,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
3230
3260
  lineRichMenuId?: string | null | undefined;
3231
3261
  messengerIntegrationType?: "own" | "business" | undefined;
3232
3262
  facebookFeedIntegrationType?: "own" | "business" | undefined;
3263
+ isCSATEnabled?: boolean | undefined;
3233
3264
  }>;
3234
3265
  platformId: z.ZodString;
3235
3266
  brandName: z.ZodString;
@@ -3289,6 +3320,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
3289
3320
  lineRichMenuId?: string | null | undefined;
3290
3321
  messengerIntegrationType?: "own" | "business" | undefined;
3291
3322
  facebookFeedIntegrationType?: "own" | "business" | undefined;
3323
+ isCSATEnabled?: boolean | undefined;
3292
3324
  };
3293
3325
  status: boolean;
3294
3326
  brandName: string;
@@ -3336,6 +3368,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
3336
3368
  lineRichMenuId?: string | null | undefined;
3337
3369
  messengerIntegrationType?: "own" | "business" | undefined;
3338
3370
  facebookFeedIntegrationType?: "own" | "business" | undefined;
3371
+ isCSATEnabled?: boolean | undefined;
3339
3372
  };
3340
3373
  status: boolean;
3341
3374
  brandName: string;
@@ -3388,6 +3421,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
3388
3421
  lineRichMenuId?: string | null | undefined;
3389
3422
  messengerIntegrationType?: "own" | "business" | undefined;
3390
3423
  facebookFeedIntegrationType?: "own" | "business" | undefined;
3424
+ isCSATEnabled?: boolean | undefined;
3391
3425
  };
3392
3426
  status: boolean;
3393
3427
  brandName: string;
@@ -3479,6 +3513,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
3479
3513
  lineRichMenuId?: string | null | undefined;
3480
3514
  messengerIntegrationType?: "own" | "business" | undefined;
3481
3515
  facebookFeedIntegrationType?: "own" | "business" | undefined;
3516
+ isCSATEnabled?: boolean | undefined;
3482
3517
  };
3483
3518
  status: boolean;
3484
3519
  brandName: string;
@@ -3619,6 +3654,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
3619
3654
  lineRichMenuId?: string | null | undefined;
3620
3655
  messengerIntegrationType?: "own" | "business" | undefined;
3621
3656
  facebookFeedIntegrationType?: "own" | "business" | undefined;
3657
+ isCSATEnabled?: boolean | undefined;
3622
3658
  };
3623
3659
  status: boolean;
3624
3660
  brandName: string;
@@ -3753,6 +3789,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
3753
3789
  lineRichMenuId?: string | null | undefined;
3754
3790
  messengerIntegrationType?: "own" | "business" | undefined;
3755
3791
  facebookFeedIntegrationType?: "own" | "business" | undefined;
3792
+ isCSATEnabled?: boolean | undefined;
3756
3793
  };
3757
3794
  status: boolean;
3758
3795
  brandName: string;
@@ -5815,6 +5852,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
5815
5852
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
5816
5853
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
5817
5854
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
5855
+ isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
5818
5856
  }, "strip", z.ZodTypeAny, {
5819
5857
  name: string;
5820
5858
  id: string;
@@ -5844,6 +5882,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
5844
5882
  lineRichMenuId?: string | null | undefined;
5845
5883
  messengerIntegrationType?: "own" | "business" | undefined;
5846
5884
  facebookFeedIntegrationType?: "own" | "business" | undefined;
5885
+ isCSATEnabled?: boolean | undefined;
5847
5886
  }, {
5848
5887
  name: string;
5849
5888
  id: string;
@@ -5873,6 +5912,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
5873
5912
  lineRichMenuId?: string | null | undefined;
5874
5913
  messengerIntegrationType?: "own" | "business" | undefined;
5875
5914
  facebookFeedIntegrationType?: "own" | "business" | undefined;
5915
+ isCSATEnabled?: boolean | undefined;
5876
5916
  }>;
5877
5917
  brandName: z.ZodString;
5878
5918
  platformId: z.ZodString;
@@ -6136,6 +6176,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
6136
6176
  lineRichMenuId?: string | null | undefined;
6137
6177
  messengerIntegrationType?: "own" | "business" | undefined;
6138
6178
  facebookFeedIntegrationType?: "own" | "business" | undefined;
6179
+ isCSATEnabled?: boolean | undefined;
6139
6180
  };
6140
6181
  status: boolean;
6141
6182
  createdAt: Date;
@@ -6230,6 +6271,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
6230
6271
  lineRichMenuId?: string | null | undefined;
6231
6272
  messengerIntegrationType?: "own" | "business" | undefined;
6232
6273
  facebookFeedIntegrationType?: "own" | "business" | undefined;
6274
+ isCSATEnabled?: boolean | undefined;
6233
6275
  };
6234
6276
  status: boolean;
6235
6277
  createdAt: Date;
@@ -6888,6 +6930,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
6888
6930
  lineRichMenuId?: string | null | undefined;
6889
6931
  messengerIntegrationType?: "own" | "business" | undefined;
6890
6932
  facebookFeedIntegrationType?: "own" | "business" | undefined;
6933
+ isCSATEnabled?: boolean | undefined;
6891
6934
  };
6892
6935
  status: boolean;
6893
6936
  createdAt: Date;
@@ -7316,6 +7359,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
7316
7359
  lineRichMenuId?: string | null | undefined;
7317
7360
  messengerIntegrationType?: "own" | "business" | undefined;
7318
7361
  facebookFeedIntegrationType?: "own" | "business" | undefined;
7362
+ isCSATEnabled?: boolean | undefined;
7319
7363
  };
7320
7364
  status: boolean;
7321
7365
  createdAt: Date;
@@ -10495,6 +10539,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
10495
10539
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
10496
10540
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
10497
10541
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
10542
+ isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
10498
10543
  }, "strip", z.ZodTypeAny, {
10499
10544
  name: string;
10500
10545
  id: string;
@@ -10524,6 +10569,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
10524
10569
  lineRichMenuId?: string | null | undefined;
10525
10570
  messengerIntegrationType?: "own" | "business" | undefined;
10526
10571
  facebookFeedIntegrationType?: "own" | "business" | undefined;
10572
+ isCSATEnabled?: boolean | undefined;
10527
10573
  }, {
10528
10574
  name: string;
10529
10575
  id: string;
@@ -10553,6 +10599,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
10553
10599
  lineRichMenuId?: string | null | undefined;
10554
10600
  messengerIntegrationType?: "own" | "business" | undefined;
10555
10601
  facebookFeedIntegrationType?: "own" | "business" | undefined;
10602
+ isCSATEnabled?: boolean | undefined;
10556
10603
  }>;
10557
10604
  brandName: z.ZodString;
10558
10605
  platformId: z.ZodString;
@@ -10816,6 +10863,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
10816
10863
  lineRichMenuId?: string | null | undefined;
10817
10864
  messengerIntegrationType?: "own" | "business" | undefined;
10818
10865
  facebookFeedIntegrationType?: "own" | "business" | undefined;
10866
+ isCSATEnabled?: boolean | undefined;
10819
10867
  };
10820
10868
  status: boolean;
10821
10869
  createdAt: Date;
@@ -10910,6 +10958,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
10910
10958
  lineRichMenuId?: string | null | undefined;
10911
10959
  messengerIntegrationType?: "own" | "business" | undefined;
10912
10960
  facebookFeedIntegrationType?: "own" | "business" | undefined;
10961
+ isCSATEnabled?: boolean | undefined;
10913
10962
  };
10914
10963
  status: boolean;
10915
10964
  createdAt: Date;
@@ -11568,6 +11617,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
11568
11617
  lineRichMenuId?: string | null | undefined;
11569
11618
  messengerIntegrationType?: "own" | "business" | undefined;
11570
11619
  facebookFeedIntegrationType?: "own" | "business" | undefined;
11620
+ isCSATEnabled?: boolean | undefined;
11571
11621
  };
11572
11622
  status: boolean;
11573
11623
  createdAt: Date;
@@ -11996,6 +12046,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
11996
12046
  lineRichMenuId?: string | null | undefined;
11997
12047
  messengerIntegrationType?: "own" | "business" | undefined;
11998
12048
  facebookFeedIntegrationType?: "own" | "business" | undefined;
12049
+ isCSATEnabled?: boolean | undefined;
11999
12050
  };
12000
12051
  status: boolean;
12001
12052
  createdAt: Date;
@@ -14197,6 +14248,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
14197
14248
  lineRichMenuId?: string | null | undefined;
14198
14249
  messengerIntegrationType?: "own" | "business" | undefined;
14199
14250
  facebookFeedIntegrationType?: "own" | "business" | undefined;
14251
+ isCSATEnabled?: boolean | undefined;
14200
14252
  };
14201
14253
  status: boolean;
14202
14254
  createdAt: Date;
@@ -14962,6 +15014,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
14962
15014
  lineRichMenuId?: string | null | undefined;
14963
15015
  messengerIntegrationType?: "own" | "business" | undefined;
14964
15016
  facebookFeedIntegrationType?: "own" | "business" | undefined;
15017
+ isCSATEnabled?: boolean | undefined;
14965
15018
  };
14966
15019
  status: boolean;
14967
15020
  createdAt: Date;
@@ -15728,6 +15781,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
15728
15781
  lineRichMenuId?: string | null | undefined;
15729
15782
  messengerIntegrationType?: "own" | "business" | undefined;
15730
15783
  facebookFeedIntegrationType?: "own" | "business" | undefined;
15784
+ isCSATEnabled?: boolean | undefined;
15731
15785
  };
15732
15786
  status: boolean;
15733
15787
  createdAt: Date;
@@ -16493,6 +16547,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
16493
16547
  lineRichMenuId?: string | null | undefined;
16494
16548
  messengerIntegrationType?: "own" | "business" | undefined;
16495
16549
  facebookFeedIntegrationType?: "own" | "business" | undefined;
16550
+ isCSATEnabled?: boolean | undefined;
16496
16551
  };
16497
16552
  status: boolean;
16498
16553
  createdAt: Date;
@@ -17259,6 +17314,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
17259
17314
  lineRichMenuId?: string | null | undefined;
17260
17315
  messengerIntegrationType?: "own" | "business" | undefined;
17261
17316
  facebookFeedIntegrationType?: "own" | "business" | undefined;
17317
+ isCSATEnabled?: boolean | undefined;
17262
17318
  };
17263
17319
  status: boolean;
17264
17320
  createdAt: Date;
@@ -18024,6 +18080,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
18024
18080
  lineRichMenuId?: string | null | undefined;
18025
18081
  messengerIntegrationType?: "own" | "business" | undefined;
18026
18082
  facebookFeedIntegrationType?: "own" | "business" | undefined;
18083
+ isCSATEnabled?: boolean | undefined;
18027
18084
  };
18028
18085
  status: boolean;
18029
18086
  createdAt: Date;
@@ -18792,6 +18849,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
18792
18849
  lineRichMenuId?: string | null | undefined;
18793
18850
  messengerIntegrationType?: "own" | "business" | undefined;
18794
18851
  facebookFeedIntegrationType?: "own" | "business" | undefined;
18852
+ isCSATEnabled?: boolean | undefined;
18795
18853
  };
18796
18854
  status: boolean;
18797
18855
  createdAt: Date;
@@ -19557,6 +19615,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
19557
19615
  lineRichMenuId?: string | null | undefined;
19558
19616
  messengerIntegrationType?: "own" | "business" | undefined;
19559
19617
  facebookFeedIntegrationType?: "own" | "business" | undefined;
19618
+ isCSATEnabled?: boolean | undefined;
19560
19619
  };
19561
19620
  status: boolean;
19562
19621
  createdAt: Date;
@@ -20326,6 +20385,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
20326
20385
  lineRichMenuId?: string | null | undefined;
20327
20386
  messengerIntegrationType?: "own" | "business" | undefined;
20328
20387
  facebookFeedIntegrationType?: "own" | "business" | undefined;
20388
+ isCSATEnabled?: boolean | undefined;
20329
20389
  };
20330
20390
  status: boolean;
20331
20391
  createdAt: Date;
@@ -21091,6 +21151,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
21091
21151
  lineRichMenuId?: string | null | undefined;
21092
21152
  messengerIntegrationType?: "own" | "business" | undefined;
21093
21153
  facebookFeedIntegrationType?: "own" | "business" | undefined;
21154
+ isCSATEnabled?: boolean | undefined;
21094
21155
  };
21095
21156
  status: boolean;
21096
21157
  createdAt: Date;
@@ -21784,6 +21845,7 @@ export declare const ChannelServiceResponseSchema: z.ZodObject<{
21784
21845
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
21785
21846
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
21786
21847
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
21848
+ isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
21787
21849
  }, "strip", z.ZodTypeAny, {
21788
21850
  name: string;
21789
21851
  id: string;
@@ -21813,6 +21875,7 @@ export declare const ChannelServiceResponseSchema: z.ZodObject<{
21813
21875
  lineRichMenuId?: string | null | undefined;
21814
21876
  messengerIntegrationType?: "own" | "business" | undefined;
21815
21877
  facebookFeedIntegrationType?: "own" | "business" | undefined;
21878
+ isCSATEnabled?: boolean | undefined;
21816
21879
  }, {
21817
21880
  name: string;
21818
21881
  id: string;
@@ -21842,6 +21905,7 @@ export declare const ChannelServiceResponseSchema: z.ZodObject<{
21842
21905
  lineRichMenuId?: string | null | undefined;
21843
21906
  messengerIntegrationType?: "own" | "business" | undefined;
21844
21907
  facebookFeedIntegrationType?: "own" | "business" | undefined;
21908
+ isCSATEnabled?: boolean | undefined;
21845
21909
  }>;
21846
21910
  platformId: z.ZodString;
21847
21911
  brandName: z.ZodString;
@@ -21901,6 +21965,7 @@ export declare const ChannelServiceResponseSchema: z.ZodObject<{
21901
21965
  lineRichMenuId?: string | null | undefined;
21902
21966
  messengerIntegrationType?: "own" | "business" | undefined;
21903
21967
  facebookFeedIntegrationType?: "own" | "business" | undefined;
21968
+ isCSATEnabled?: boolean | undefined;
21904
21969
  };
21905
21970
  status: boolean;
21906
21971
  brandName: string;
@@ -21948,6 +22013,7 @@ export declare const ChannelServiceResponseSchema: z.ZodObject<{
21948
22013
  lineRichMenuId?: string | null | undefined;
21949
22014
  messengerIntegrationType?: "own" | "business" | undefined;
21950
22015
  facebookFeedIntegrationType?: "own" | "business" | undefined;
22016
+ isCSATEnabled?: boolean | undefined;
21951
22017
  };
21952
22018
  status: boolean;
21953
22019
  brandName: string;
@@ -21997,6 +22063,7 @@ export declare const ChannelServiceResponseSchema: z.ZodObject<{
21997
22063
  lineRichMenuId?: string | null | undefined;
21998
22064
  messengerIntegrationType?: "own" | "business" | undefined;
21999
22065
  facebookFeedIntegrationType?: "own" | "business" | undefined;
22066
+ isCSATEnabled?: boolean | undefined;
22000
22067
  };
22001
22068
  status: boolean;
22002
22069
  brandName: string;
@@ -22047,6 +22114,7 @@ export declare const ChannelServiceResponseSchema: z.ZodObject<{
22047
22114
  lineRichMenuId?: string | null | undefined;
22048
22115
  messengerIntegrationType?: "own" | "business" | undefined;
22049
22116
  facebookFeedIntegrationType?: "own" | "business" | undefined;
22117
+ isCSATEnabled?: boolean | undefined;
22050
22118
  };
22051
22119
  status: boolean;
22052
22120
  brandName: string;
@@ -23504,6 +23572,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
23504
23572
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
23505
23573
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
23506
23574
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
23575
+ isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
23507
23576
  }, "strip", z.ZodTypeAny, {
23508
23577
  name: string;
23509
23578
  id: string;
@@ -23533,6 +23602,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
23533
23602
  lineRichMenuId?: string | null | undefined;
23534
23603
  messengerIntegrationType?: "own" | "business" | undefined;
23535
23604
  facebookFeedIntegrationType?: "own" | "business" | undefined;
23605
+ isCSATEnabled?: boolean | undefined;
23536
23606
  }, {
23537
23607
  name: string;
23538
23608
  id: string;
@@ -23562,6 +23632,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
23562
23632
  lineRichMenuId?: string | null | undefined;
23563
23633
  messengerIntegrationType?: "own" | "business" | undefined;
23564
23634
  facebookFeedIntegrationType?: "own" | "business" | undefined;
23635
+ isCSATEnabled?: boolean | undefined;
23565
23636
  }>;
23566
23637
  platformId: z.ZodString;
23567
23638
  brandName: z.ZodString;
@@ -23621,6 +23692,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
23621
23692
  lineRichMenuId?: string | null | undefined;
23622
23693
  messengerIntegrationType?: "own" | "business" | undefined;
23623
23694
  facebookFeedIntegrationType?: "own" | "business" | undefined;
23695
+ isCSATEnabled?: boolean | undefined;
23624
23696
  };
23625
23697
  status: boolean;
23626
23698
  brandName: string;
@@ -23668,6 +23740,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
23668
23740
  lineRichMenuId?: string | null | undefined;
23669
23741
  messengerIntegrationType?: "own" | "business" | undefined;
23670
23742
  facebookFeedIntegrationType?: "own" | "business" | undefined;
23743
+ isCSATEnabled?: boolean | undefined;
23671
23744
  };
23672
23745
  status: boolean;
23673
23746
  brandName: string;
@@ -24464,6 +24537,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
24464
24537
  lineRichMenuId?: string | null | undefined;
24465
24538
  messengerIntegrationType?: "own" | "business" | undefined;
24466
24539
  facebookFeedIntegrationType?: "own" | "business" | undefined;
24540
+ isCSATEnabled?: boolean | undefined;
24467
24541
  };
24468
24542
  status: boolean;
24469
24543
  brandName: string;
@@ -24816,6 +24890,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
24816
24890
  lineRichMenuId?: string | null | undefined;
24817
24891
  messengerIntegrationType?: "own" | "business" | undefined;
24818
24892
  facebookFeedIntegrationType?: "own" | "business" | undefined;
24893
+ isCSATEnabled?: boolean | undefined;
24819
24894
  };
24820
24895
  status: boolean;
24821
24896
  brandName: string;
@@ -25824,6 +25899,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
25824
25899
  lineRichMenuId?: string | null | undefined;
25825
25900
  messengerIntegrationType?: "own" | "business" | undefined;
25826
25901
  facebookFeedIntegrationType?: "own" | "business" | undefined;
25902
+ isCSATEnabled?: boolean | undefined;
25827
25903
  };
25828
25904
  status: boolean;
25829
25905
  brandName: string;
@@ -26339,6 +26415,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
26339
26415
  lineRichMenuId?: string | null | undefined;
26340
26416
  messengerIntegrationType?: "own" | "business" | undefined;
26341
26417
  facebookFeedIntegrationType?: "own" | "business" | undefined;
26418
+ isCSATEnabled?: boolean | undefined;
26342
26419
  };
26343
26420
  status: boolean;
26344
26421
  brandName: string;
@@ -26856,6 +26933,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
26856
26933
  lineRichMenuId?: string | null | undefined;
26857
26934
  messengerIntegrationType?: "own" | "business" | undefined;
26858
26935
  facebookFeedIntegrationType?: "own" | "business" | undefined;
26936
+ isCSATEnabled?: boolean | undefined;
26859
26937
  };
26860
26938
  status: boolean;
26861
26939
  brandName: string;
@@ -27373,6 +27451,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
27373
27451
  lineRichMenuId?: string | null | undefined;
27374
27452
  messengerIntegrationType?: "own" | "business" | undefined;
27375
27453
  facebookFeedIntegrationType?: "own" | "business" | undefined;
27454
+ isCSATEnabled?: boolean | undefined;
27376
27455
  };
27377
27456
  status: boolean;
27378
27457
  brandName: string;