@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
@@ -74,6 +74,7 @@ export declare const facebookFeedContract: {
74
74
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
75
75
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
76
76
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
77
+ isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
77
78
  }, "strip", z.ZodTypeAny, {
78
79
  name: string;
79
80
  id: string;
@@ -103,6 +104,7 @@ export declare const facebookFeedContract: {
103
104
  lineRichMenuId?: string | null | undefined;
104
105
  messengerIntegrationType?: "own" | "business" | undefined;
105
106
  facebookFeedIntegrationType?: "own" | "business" | undefined;
107
+ isCSATEnabled?: boolean | undefined;
106
108
  }, {
107
109
  name: string;
108
110
  id: string;
@@ -132,6 +134,7 @@ export declare const facebookFeedContract: {
132
134
  lineRichMenuId?: string | null | undefined;
133
135
  messengerIntegrationType?: "own" | "business" | undefined;
134
136
  facebookFeedIntegrationType?: "own" | "business" | undefined;
137
+ isCSATEnabled?: boolean | undefined;
135
138
  }>>;
136
139
  platformId: z.ZodOptional<z.ZodString>;
137
140
  brandName: z.ZodOptional<z.ZodString>;
@@ -191,6 +194,7 @@ export declare const facebookFeedContract: {
191
194
  lineRichMenuId?: string | null | undefined;
192
195
  messengerIntegrationType?: "own" | "business" | undefined;
193
196
  facebookFeedIntegrationType?: "own" | "business" | undefined;
197
+ isCSATEnabled?: boolean | undefined;
194
198
  } | undefined;
195
199
  platformId?: string | undefined;
196
200
  brandName?: string | undefined;
@@ -238,6 +242,7 @@ export declare const facebookFeedContract: {
238
242
  lineRichMenuId?: string | null | undefined;
239
243
  messengerIntegrationType?: "own" | "business" | undefined;
240
244
  facebookFeedIntegrationType?: "own" | "business" | undefined;
245
+ isCSATEnabled?: boolean | undefined;
241
246
  } | undefined;
242
247
  platformId?: string | undefined;
243
248
  brandName?: string | undefined;
@@ -324,6 +329,7 @@ export declare const facebookFeedContract: {
324
329
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
325
330
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
326
331
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
332
+ isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
327
333
  }, "strip", z.ZodTypeAny, {
328
334
  name: string;
329
335
  id: string;
@@ -353,6 +359,7 @@ export declare const facebookFeedContract: {
353
359
  lineRichMenuId?: string | null | undefined;
354
360
  messengerIntegrationType?: "own" | "business" | undefined;
355
361
  facebookFeedIntegrationType?: "own" | "business" | undefined;
362
+ isCSATEnabled?: boolean | undefined;
356
363
  }, {
357
364
  name: string;
358
365
  id: string;
@@ -382,6 +389,7 @@ export declare const facebookFeedContract: {
382
389
  lineRichMenuId?: string | null | undefined;
383
390
  messengerIntegrationType?: "own" | "business" | undefined;
384
391
  facebookFeedIntegrationType?: "own" | "business" | undefined;
392
+ isCSATEnabled?: boolean | undefined;
385
393
  }>;
386
394
  platformId: z.ZodString;
387
395
  brandName: z.ZodString;
@@ -441,6 +449,7 @@ export declare const facebookFeedContract: {
441
449
  lineRichMenuId?: string | null | undefined;
442
450
  messengerIntegrationType?: "own" | "business" | undefined;
443
451
  facebookFeedIntegrationType?: "own" | "business" | undefined;
452
+ isCSATEnabled?: boolean | undefined;
444
453
  };
445
454
  status: boolean;
446
455
  brandName: string;
@@ -488,6 +497,7 @@ export declare const facebookFeedContract: {
488
497
  lineRichMenuId?: string | null | undefined;
489
498
  messengerIntegrationType?: "own" | "business" | undefined;
490
499
  facebookFeedIntegrationType?: "own" | "business" | undefined;
500
+ isCSATEnabled?: boolean | undefined;
491
501
  };
492
502
  status: boolean;
493
503
  brandName: string;
@@ -537,6 +547,7 @@ export declare const facebookFeedContract: {
537
547
  lineRichMenuId?: string | null | undefined;
538
548
  messengerIntegrationType?: "own" | "business" | undefined;
539
549
  facebookFeedIntegrationType?: "own" | "business" | undefined;
550
+ isCSATEnabled?: boolean | undefined;
540
551
  };
541
552
  status: boolean;
542
553
  brandName: string;
@@ -587,6 +598,7 @@ export declare const facebookFeedContract: {
587
598
  lineRichMenuId?: string | null | undefined;
588
599
  messengerIntegrationType?: "own" | "business" | undefined;
589
600
  facebookFeedIntegrationType?: "own" | "business" | undefined;
601
+ isCSATEnabled?: boolean | undefined;
590
602
  };
591
603
  status: boolean;
592
604
  brandName: string;
@@ -695,6 +707,7 @@ export declare const facebookFeedContract: {
695
707
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
696
708
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
697
709
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
710
+ isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
698
711
  }, "strip", z.ZodTypeAny, {
699
712
  name: string;
700
713
  id: string;
@@ -724,6 +737,7 @@ export declare const facebookFeedContract: {
724
737
  lineRichMenuId?: string | null | undefined;
725
738
  messengerIntegrationType?: "own" | "business" | undefined;
726
739
  facebookFeedIntegrationType?: "own" | "business" | undefined;
740
+ isCSATEnabled?: boolean | undefined;
727
741
  }, {
728
742
  name: string;
729
743
  id: string;
@@ -753,6 +767,7 @@ export declare const facebookFeedContract: {
753
767
  lineRichMenuId?: string | null | undefined;
754
768
  messengerIntegrationType?: "own" | "business" | undefined;
755
769
  facebookFeedIntegrationType?: "own" | "business" | undefined;
770
+ isCSATEnabled?: boolean | undefined;
756
771
  }>>;
757
772
  platformId: z.ZodOptional<z.ZodString>;
758
773
  brandName: z.ZodOptional<z.ZodString>;
@@ -812,6 +827,7 @@ export declare const facebookFeedContract: {
812
827
  lineRichMenuId?: string | null | undefined;
813
828
  messengerIntegrationType?: "own" | "business" | undefined;
814
829
  facebookFeedIntegrationType?: "own" | "business" | undefined;
830
+ isCSATEnabled?: boolean | undefined;
815
831
  } | undefined;
816
832
  platformId?: string | undefined;
817
833
  brandName?: string | undefined;
@@ -859,6 +875,7 @@ export declare const facebookFeedContract: {
859
875
  lineRichMenuId?: string | null | undefined;
860
876
  messengerIntegrationType?: "own" | "business" | undefined;
861
877
  facebookFeedIntegrationType?: "own" | "business" | undefined;
878
+ isCSATEnabled?: boolean | undefined;
862
879
  } | undefined;
863
880
  platformId?: string | undefined;
864
881
  brandName?: string | undefined;
@@ -945,6 +962,7 @@ export declare const facebookFeedContract: {
945
962
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
946
963
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
947
964
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
965
+ isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
948
966
  }, "strip", z.ZodTypeAny, {
949
967
  name: string;
950
968
  id: string;
@@ -974,6 +992,7 @@ export declare const facebookFeedContract: {
974
992
  lineRichMenuId?: string | null | undefined;
975
993
  messengerIntegrationType?: "own" | "business" | undefined;
976
994
  facebookFeedIntegrationType?: "own" | "business" | undefined;
995
+ isCSATEnabled?: boolean | undefined;
977
996
  }, {
978
997
  name: string;
979
998
  id: string;
@@ -1003,6 +1022,7 @@ export declare const facebookFeedContract: {
1003
1022
  lineRichMenuId?: string | null | undefined;
1004
1023
  messengerIntegrationType?: "own" | "business" | undefined;
1005
1024
  facebookFeedIntegrationType?: "own" | "business" | undefined;
1025
+ isCSATEnabled?: boolean | undefined;
1006
1026
  }>;
1007
1027
  platformId: z.ZodString;
1008
1028
  brandName: z.ZodString;
@@ -1062,6 +1082,7 @@ export declare const facebookFeedContract: {
1062
1082
  lineRichMenuId?: string | null | undefined;
1063
1083
  messengerIntegrationType?: "own" | "business" | undefined;
1064
1084
  facebookFeedIntegrationType?: "own" | "business" | undefined;
1085
+ isCSATEnabled?: boolean | undefined;
1065
1086
  };
1066
1087
  status: boolean;
1067
1088
  brandName: string;
@@ -1109,6 +1130,7 @@ export declare const facebookFeedContract: {
1109
1130
  lineRichMenuId?: string | null | undefined;
1110
1131
  messengerIntegrationType?: "own" | "business" | undefined;
1111
1132
  facebookFeedIntegrationType?: "own" | "business" | undefined;
1133
+ isCSATEnabled?: boolean | undefined;
1112
1134
  };
1113
1135
  status: boolean;
1114
1136
  brandName: string;
@@ -1158,6 +1180,7 @@ export declare const facebookFeedContract: {
1158
1180
  lineRichMenuId?: string | null | undefined;
1159
1181
  messengerIntegrationType?: "own" | "business" | undefined;
1160
1182
  facebookFeedIntegrationType?: "own" | "business" | undefined;
1183
+ isCSATEnabled?: boolean | undefined;
1161
1184
  };
1162
1185
  status: boolean;
1163
1186
  brandName: string;
@@ -1208,6 +1231,7 @@ export declare const facebookFeedContract: {
1208
1231
  lineRichMenuId?: string | null | undefined;
1209
1232
  messengerIntegrationType?: "own" | "business" | undefined;
1210
1233
  facebookFeedIntegrationType?: "own" | "business" | undefined;
1234
+ isCSATEnabled?: boolean | undefined;
1211
1235
  };
1212
1236
  status: boolean;
1213
1237
  brandName: string;
@@ -1328,6 +1352,7 @@ export declare const facebookFeedContract: {
1328
1352
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1329
1353
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
1330
1354
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
1355
+ isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
1331
1356
  }, "strip", z.ZodTypeAny, {
1332
1357
  name: string;
1333
1358
  id: string;
@@ -1357,6 +1382,7 @@ export declare const facebookFeedContract: {
1357
1382
  lineRichMenuId?: string | null | undefined;
1358
1383
  messengerIntegrationType?: "own" | "business" | undefined;
1359
1384
  facebookFeedIntegrationType?: "own" | "business" | undefined;
1385
+ isCSATEnabled?: boolean | undefined;
1360
1386
  }, {
1361
1387
  name: string;
1362
1388
  id: string;
@@ -1386,6 +1412,7 @@ export declare const facebookFeedContract: {
1386
1412
  lineRichMenuId?: string | null | undefined;
1387
1413
  messengerIntegrationType?: "own" | "business" | undefined;
1388
1414
  facebookFeedIntegrationType?: "own" | "business" | undefined;
1415
+ isCSATEnabled?: boolean | undefined;
1389
1416
  }>;
1390
1417
  platformId: z.ZodString;
1391
1418
  brandName: z.ZodString;
@@ -1445,6 +1472,7 @@ export declare const facebookFeedContract: {
1445
1472
  lineRichMenuId?: string | null | undefined;
1446
1473
  messengerIntegrationType?: "own" | "business" | undefined;
1447
1474
  facebookFeedIntegrationType?: "own" | "business" | undefined;
1475
+ isCSATEnabled?: boolean | undefined;
1448
1476
  };
1449
1477
  status: boolean;
1450
1478
  brandName: string;
@@ -1492,6 +1520,7 @@ export declare const facebookFeedContract: {
1492
1520
  lineRichMenuId?: string | null | undefined;
1493
1521
  messengerIntegrationType?: "own" | "business" | undefined;
1494
1522
  facebookFeedIntegrationType?: "own" | "business" | undefined;
1523
+ isCSATEnabled?: boolean | undefined;
1495
1524
  };
1496
1525
  status: boolean;
1497
1526
  brandName: string;
@@ -1541,6 +1570,7 @@ export declare const facebookFeedContract: {
1541
1570
  lineRichMenuId?: string | null | undefined;
1542
1571
  messengerIntegrationType?: "own" | "business" | undefined;
1543
1572
  facebookFeedIntegrationType?: "own" | "business" | undefined;
1573
+ isCSATEnabled?: boolean | undefined;
1544
1574
  };
1545
1575
  status: boolean;
1546
1576
  brandName: string;
@@ -1591,6 +1621,7 @@ export declare const facebookFeedContract: {
1591
1621
  lineRichMenuId?: string | null | undefined;
1592
1622
  messengerIntegrationType?: "own" | "business" | undefined;
1593
1623
  facebookFeedIntegrationType?: "own" | "business" | undefined;
1624
+ isCSATEnabled?: boolean | undefined;
1594
1625
  };
1595
1626
  status: boolean;
1596
1627
  brandName: string;
@@ -1711,6 +1742,7 @@ export declare const facebookFeedContract: {
1711
1742
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1712
1743
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
1713
1744
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
1745
+ isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
1714
1746
  }, "strip", z.ZodTypeAny, {
1715
1747
  name: string;
1716
1748
  id: string;
@@ -1740,6 +1772,7 @@ export declare const facebookFeedContract: {
1740
1772
  lineRichMenuId?: string | null | undefined;
1741
1773
  messengerIntegrationType?: "own" | "business" | undefined;
1742
1774
  facebookFeedIntegrationType?: "own" | "business" | undefined;
1775
+ isCSATEnabled?: boolean | undefined;
1743
1776
  }, {
1744
1777
  name: string;
1745
1778
  id: string;
@@ -1769,6 +1802,7 @@ export declare const facebookFeedContract: {
1769
1802
  lineRichMenuId?: string | null | undefined;
1770
1803
  messengerIntegrationType?: "own" | "business" | undefined;
1771
1804
  facebookFeedIntegrationType?: "own" | "business" | undefined;
1805
+ isCSATEnabled?: boolean | undefined;
1772
1806
  }>;
1773
1807
  platformId: z.ZodString;
1774
1808
  brandName: z.ZodString;
@@ -1828,6 +1862,7 @@ export declare const facebookFeedContract: {
1828
1862
  lineRichMenuId?: string | null | undefined;
1829
1863
  messengerIntegrationType?: "own" | "business" | undefined;
1830
1864
  facebookFeedIntegrationType?: "own" | "business" | undefined;
1865
+ isCSATEnabled?: boolean | undefined;
1831
1866
  };
1832
1867
  status: boolean;
1833
1868
  brandName: string;
@@ -1875,6 +1910,7 @@ export declare const facebookFeedContract: {
1875
1910
  lineRichMenuId?: string | null | undefined;
1876
1911
  messengerIntegrationType?: "own" | "business" | undefined;
1877
1912
  facebookFeedIntegrationType?: "own" | "business" | undefined;
1913
+ isCSATEnabled?: boolean | undefined;
1878
1914
  };
1879
1915
  status: boolean;
1880
1916
  brandName: string;
@@ -1924,6 +1960,7 @@ export declare const facebookFeedContract: {
1924
1960
  lineRichMenuId?: string | null | undefined;
1925
1961
  messengerIntegrationType?: "own" | "business" | undefined;
1926
1962
  facebookFeedIntegrationType?: "own" | "business" | undefined;
1963
+ isCSATEnabled?: boolean | undefined;
1927
1964
  };
1928
1965
  status: boolean;
1929
1966
  brandName: string;
@@ -1974,6 +2011,7 @@ export declare const facebookFeedContract: {
1974
2011
  lineRichMenuId?: string | null | undefined;
1975
2012
  messengerIntegrationType?: "own" | "business" | undefined;
1976
2013
  facebookFeedIntegrationType?: "own" | "business" | undefined;
2014
+ isCSATEnabled?: boolean | undefined;
1977
2015
  };
1978
2016
  status: boolean;
1979
2017
  brandName: string;
@@ -2081,6 +2119,7 @@ export declare const facebookFeedContract: {
2081
2119
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2082
2120
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
2083
2121
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
2122
+ isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
2084
2123
  }, "strip", z.ZodTypeAny, {
2085
2124
  name: string;
2086
2125
  id: string;
@@ -2110,6 +2149,7 @@ export declare const facebookFeedContract: {
2110
2149
  lineRichMenuId?: string | null | undefined;
2111
2150
  messengerIntegrationType?: "own" | "business" | undefined;
2112
2151
  facebookFeedIntegrationType?: "own" | "business" | undefined;
2152
+ isCSATEnabled?: boolean | undefined;
2113
2153
  }, {
2114
2154
  name: string;
2115
2155
  id: string;
@@ -2139,6 +2179,7 @@ export declare const facebookFeedContract: {
2139
2179
  lineRichMenuId?: string | null | undefined;
2140
2180
  messengerIntegrationType?: "own" | "business" | undefined;
2141
2181
  facebookFeedIntegrationType?: "own" | "business" | undefined;
2182
+ isCSATEnabled?: boolean | undefined;
2142
2183
  }>;
2143
2184
  status: z.ZodUnion<[z.ZodLiteral<true>, z.ZodLiteral<false>]>;
2144
2185
  actor: z.ZodOptional<z.ZodObject<{
@@ -2203,6 +2244,7 @@ export declare const facebookFeedContract: {
2203
2244
  lineRichMenuId?: string | null | undefined;
2204
2245
  messengerIntegrationType?: "own" | "business" | undefined;
2205
2246
  facebookFeedIntegrationType?: "own" | "business" | undefined;
2247
+ isCSATEnabled?: boolean | undefined;
2206
2248
  };
2207
2249
  status: boolean;
2208
2250
  createdAt: string;
@@ -2254,6 +2296,7 @@ export declare const facebookFeedContract: {
2254
2296
  lineRichMenuId?: string | null | undefined;
2255
2297
  messengerIntegrationType?: "own" | "business" | undefined;
2256
2298
  facebookFeedIntegrationType?: "own" | "business" | undefined;
2299
+ isCSATEnabled?: boolean | undefined;
2257
2300
  };
2258
2301
  status: boolean;
2259
2302
  createdAt: string;
@@ -2344,6 +2387,7 @@ export declare const facebookFeedContract: {
2344
2387
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2345
2388
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
2346
2389
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
2390
+ isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
2347
2391
  }, "strip", z.ZodTypeAny, {
2348
2392
  name: string;
2349
2393
  id: string;
@@ -2373,6 +2417,7 @@ export declare const facebookFeedContract: {
2373
2417
  lineRichMenuId?: string | null | undefined;
2374
2418
  messengerIntegrationType?: "own" | "business" | undefined;
2375
2419
  facebookFeedIntegrationType?: "own" | "business" | undefined;
2420
+ isCSATEnabled?: boolean | undefined;
2376
2421
  }, {
2377
2422
  name: string;
2378
2423
  id: string;
@@ -2402,6 +2447,7 @@ export declare const facebookFeedContract: {
2402
2447
  lineRichMenuId?: string | null | undefined;
2403
2448
  messengerIntegrationType?: "own" | "business" | undefined;
2404
2449
  facebookFeedIntegrationType?: "own" | "business" | undefined;
2450
+ isCSATEnabled?: boolean | undefined;
2405
2451
  }>;
2406
2452
  platformId: z.ZodString;
2407
2453
  brandName: z.ZodString;
@@ -2461,6 +2507,7 @@ export declare const facebookFeedContract: {
2461
2507
  lineRichMenuId?: string | null | undefined;
2462
2508
  messengerIntegrationType?: "own" | "business" | undefined;
2463
2509
  facebookFeedIntegrationType?: "own" | "business" | undefined;
2510
+ isCSATEnabled?: boolean | undefined;
2464
2511
  };
2465
2512
  status: boolean;
2466
2513
  brandName: string;
@@ -2508,6 +2555,7 @@ export declare const facebookFeedContract: {
2508
2555
  lineRichMenuId?: string | null | undefined;
2509
2556
  messengerIntegrationType?: "own" | "business" | undefined;
2510
2557
  facebookFeedIntegrationType?: "own" | "business" | undefined;
2558
+ isCSATEnabled?: boolean | undefined;
2511
2559
  };
2512
2560
  status: boolean;
2513
2561
  brandName: string;
@@ -2557,6 +2605,7 @@ export declare const facebookFeedContract: {
2557
2605
  lineRichMenuId?: string | null | undefined;
2558
2606
  messengerIntegrationType?: "own" | "business" | undefined;
2559
2607
  facebookFeedIntegrationType?: "own" | "business" | undefined;
2608
+ isCSATEnabled?: boolean | undefined;
2560
2609
  };
2561
2610
  status: boolean;
2562
2611
  brandName: string;
@@ -2607,6 +2656,7 @@ export declare const facebookFeedContract: {
2607
2656
  lineRichMenuId?: string | null | undefined;
2608
2657
  messengerIntegrationType?: "own" | "business" | undefined;
2609
2658
  facebookFeedIntegrationType?: "own" | "business" | undefined;
2659
+ isCSATEnabled?: boolean | undefined;
2610
2660
  };
2611
2661
  status: boolean;
2612
2662
  brandName: string;
@@ -2727,6 +2777,7 @@ export declare const facebookFeedContract: {
2727
2777
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2728
2778
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
2729
2779
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
2780
+ isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
2730
2781
  }, "strip", z.ZodTypeAny, {
2731
2782
  name: string;
2732
2783
  id: string;
@@ -2756,6 +2807,7 @@ export declare const facebookFeedContract: {
2756
2807
  lineRichMenuId?: string | null | undefined;
2757
2808
  messengerIntegrationType?: "own" | "business" | undefined;
2758
2809
  facebookFeedIntegrationType?: "own" | "business" | undefined;
2810
+ isCSATEnabled?: boolean | undefined;
2759
2811
  }, {
2760
2812
  name: string;
2761
2813
  id: string;
@@ -2785,6 +2837,7 @@ export declare const facebookFeedContract: {
2785
2837
  lineRichMenuId?: string | null | undefined;
2786
2838
  messengerIntegrationType?: "own" | "business" | undefined;
2787
2839
  facebookFeedIntegrationType?: "own" | "business" | undefined;
2840
+ isCSATEnabled?: boolean | undefined;
2788
2841
  }>;
2789
2842
  status: z.ZodUnion<[z.ZodLiteral<true>, z.ZodLiteral<false>]>;
2790
2843
  createdAt: z.ZodDate;
@@ -4168,6 +4221,7 @@ export declare const facebookFeedContract: {
4168
4221
  lineRichMenuId?: string | null | undefined;
4169
4222
  messengerIntegrationType?: "own" | "business" | undefined;
4170
4223
  facebookFeedIntegrationType?: "own" | "business" | undefined;
4224
+ isCSATEnabled?: boolean | undefined;
4171
4225
  };
4172
4226
  status: boolean;
4173
4227
  createdAt: Date;
@@ -4406,6 +4460,7 @@ export declare const facebookFeedContract: {
4406
4460
  lineRichMenuId?: string | null | undefined;
4407
4461
  messengerIntegrationType?: "own" | "business" | undefined;
4408
4462
  facebookFeedIntegrationType?: "own" | "business" | undefined;
4463
+ isCSATEnabled?: boolean | undefined;
4409
4464
  };
4410
4465
  status: boolean;
4411
4466
  createdAt: Date;
@@ -4936,6 +4991,7 @@ export declare const facebookFeedContract: {
4936
4991
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
4937
4992
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
4938
4993
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
4994
+ isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
4939
4995
  }, "strip", z.ZodTypeAny, {
4940
4996
  name: string;
4941
4997
  id: string;
@@ -4965,6 +5021,7 @@ export declare const facebookFeedContract: {
4965
5021
  lineRichMenuId?: string | null | undefined;
4966
5022
  messengerIntegrationType?: "own" | "business" | undefined;
4967
5023
  facebookFeedIntegrationType?: "own" | "business" | undefined;
5024
+ isCSATEnabled?: boolean | undefined;
4968
5025
  }, {
4969
5026
  name: string;
4970
5027
  id: string;
@@ -4994,6 +5051,7 @@ export declare const facebookFeedContract: {
4994
5051
  lineRichMenuId?: string | null | undefined;
4995
5052
  messengerIntegrationType?: "own" | "business" | undefined;
4996
5053
  facebookFeedIntegrationType?: "own" | "business" | undefined;
5054
+ isCSATEnabled?: boolean | undefined;
4997
5055
  }>;
4998
5056
  platformId: z.ZodString;
4999
5057
  brandName: z.ZodString;
@@ -5053,6 +5111,7 @@ export declare const facebookFeedContract: {
5053
5111
  lineRichMenuId?: string | null | undefined;
5054
5112
  messengerIntegrationType?: "own" | "business" | undefined;
5055
5113
  facebookFeedIntegrationType?: "own" | "business" | undefined;
5114
+ isCSATEnabled?: boolean | undefined;
5056
5115
  };
5057
5116
  status: boolean;
5058
5117
  brandName: string;
@@ -5100,6 +5159,7 @@ export declare const facebookFeedContract: {
5100
5159
  lineRichMenuId?: string | null | undefined;
5101
5160
  messengerIntegrationType?: "own" | "business" | undefined;
5102
5161
  facebookFeedIntegrationType?: "own" | "business" | undefined;
5162
+ isCSATEnabled?: boolean | undefined;
5103
5163
  };
5104
5164
  status: boolean;
5105
5165
  brandName: string;
@@ -5152,6 +5212,7 @@ export declare const facebookFeedContract: {
5152
5212
  lineRichMenuId?: string | null | undefined;
5153
5213
  messengerIntegrationType?: "own" | "business" | undefined;
5154
5214
  facebookFeedIntegrationType?: "own" | "business" | undefined;
5215
+ isCSATEnabled?: boolean | undefined;
5155
5216
  };
5156
5217
  status: boolean;
5157
5218
  brandName: string;
@@ -5243,6 +5304,7 @@ export declare const facebookFeedContract: {
5243
5304
  lineRichMenuId?: string | null | undefined;
5244
5305
  messengerIntegrationType?: "own" | "business" | undefined;
5245
5306
  facebookFeedIntegrationType?: "own" | "business" | undefined;
5307
+ isCSATEnabled?: boolean | undefined;
5246
5308
  };
5247
5309
  status: boolean;
5248
5310
  brandName: string;
@@ -5383,6 +5445,7 @@ export declare const facebookFeedContract: {
5383
5445
  lineRichMenuId?: string | null | undefined;
5384
5446
  messengerIntegrationType?: "own" | "business" | undefined;
5385
5447
  facebookFeedIntegrationType?: "own" | "business" | undefined;
5448
+ isCSATEnabled?: boolean | undefined;
5386
5449
  };
5387
5450
  status: boolean;
5388
5451
  brandName: string;
@@ -5517,6 +5580,7 @@ export declare const facebookFeedContract: {
5517
5580
  lineRichMenuId?: string | null | undefined;
5518
5581
  messengerIntegrationType?: "own" | "business" | undefined;
5519
5582
  facebookFeedIntegrationType?: "own" | "business" | undefined;
5583
+ isCSATEnabled?: boolean | undefined;
5520
5584
  };
5521
5585
  status: boolean;
5522
5586
  brandName: string;
@@ -7581,6 +7645,7 @@ export declare const facebookFeedContract: {
7581
7645
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
7582
7646
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
7583
7647
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
7648
+ isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
7584
7649
  }, "strip", z.ZodTypeAny, {
7585
7650
  name: string;
7586
7651
  id: string;
@@ -7610,6 +7675,7 @@ export declare const facebookFeedContract: {
7610
7675
  lineRichMenuId?: string | null | undefined;
7611
7676
  messengerIntegrationType?: "own" | "business" | undefined;
7612
7677
  facebookFeedIntegrationType?: "own" | "business" | undefined;
7678
+ isCSATEnabled?: boolean | undefined;
7613
7679
  }, {
7614
7680
  name: string;
7615
7681
  id: string;
@@ -7639,6 +7705,7 @@ export declare const facebookFeedContract: {
7639
7705
  lineRichMenuId?: string | null | undefined;
7640
7706
  messengerIntegrationType?: "own" | "business" | undefined;
7641
7707
  facebookFeedIntegrationType?: "own" | "business" | undefined;
7708
+ isCSATEnabled?: boolean | undefined;
7642
7709
  }>;
7643
7710
  brandName: z.ZodString;
7644
7711
  platformId: z.ZodString;
@@ -7902,6 +7969,7 @@ export declare const facebookFeedContract: {
7902
7969
  lineRichMenuId?: string | null | undefined;
7903
7970
  messengerIntegrationType?: "own" | "business" | undefined;
7904
7971
  facebookFeedIntegrationType?: "own" | "business" | undefined;
7972
+ isCSATEnabled?: boolean | undefined;
7905
7973
  };
7906
7974
  status: boolean;
7907
7975
  createdAt: Date;
@@ -7996,6 +8064,7 @@ export declare const facebookFeedContract: {
7996
8064
  lineRichMenuId?: string | null | undefined;
7997
8065
  messengerIntegrationType?: "own" | "business" | undefined;
7998
8066
  facebookFeedIntegrationType?: "own" | "business" | undefined;
8067
+ isCSATEnabled?: boolean | undefined;
7999
8068
  };
8000
8069
  status: boolean;
8001
8070
  createdAt: Date;
@@ -8654,6 +8723,7 @@ export declare const facebookFeedContract: {
8654
8723
  lineRichMenuId?: string | null | undefined;
8655
8724
  messengerIntegrationType?: "own" | "business" | undefined;
8656
8725
  facebookFeedIntegrationType?: "own" | "business" | undefined;
8726
+ isCSATEnabled?: boolean | undefined;
8657
8727
  };
8658
8728
  status: boolean;
8659
8729
  createdAt: Date;
@@ -9082,6 +9152,7 @@ export declare const facebookFeedContract: {
9082
9152
  lineRichMenuId?: string | null | undefined;
9083
9153
  messengerIntegrationType?: "own" | "business" | undefined;
9084
9154
  facebookFeedIntegrationType?: "own" | "business" | undefined;
9155
+ isCSATEnabled?: boolean | undefined;
9085
9156
  };
9086
9157
  status: boolean;
9087
9158
  createdAt: Date;
@@ -12261,6 +12332,7 @@ export declare const facebookFeedContract: {
12261
12332
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
12262
12333
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
12263
12334
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
12335
+ isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
12264
12336
  }, "strip", z.ZodTypeAny, {
12265
12337
  name: string;
12266
12338
  id: string;
@@ -12290,6 +12362,7 @@ export declare const facebookFeedContract: {
12290
12362
  lineRichMenuId?: string | null | undefined;
12291
12363
  messengerIntegrationType?: "own" | "business" | undefined;
12292
12364
  facebookFeedIntegrationType?: "own" | "business" | undefined;
12365
+ isCSATEnabled?: boolean | undefined;
12293
12366
  }, {
12294
12367
  name: string;
12295
12368
  id: string;
@@ -12319,6 +12392,7 @@ export declare const facebookFeedContract: {
12319
12392
  lineRichMenuId?: string | null | undefined;
12320
12393
  messengerIntegrationType?: "own" | "business" | undefined;
12321
12394
  facebookFeedIntegrationType?: "own" | "business" | undefined;
12395
+ isCSATEnabled?: boolean | undefined;
12322
12396
  }>;
12323
12397
  brandName: z.ZodString;
12324
12398
  platformId: z.ZodString;
@@ -12582,6 +12656,7 @@ export declare const facebookFeedContract: {
12582
12656
  lineRichMenuId?: string | null | undefined;
12583
12657
  messengerIntegrationType?: "own" | "business" | undefined;
12584
12658
  facebookFeedIntegrationType?: "own" | "business" | undefined;
12659
+ isCSATEnabled?: boolean | undefined;
12585
12660
  };
12586
12661
  status: boolean;
12587
12662
  createdAt: Date;
@@ -12676,6 +12751,7 @@ export declare const facebookFeedContract: {
12676
12751
  lineRichMenuId?: string | null | undefined;
12677
12752
  messengerIntegrationType?: "own" | "business" | undefined;
12678
12753
  facebookFeedIntegrationType?: "own" | "business" | undefined;
12754
+ isCSATEnabled?: boolean | undefined;
12679
12755
  };
12680
12756
  status: boolean;
12681
12757
  createdAt: Date;
@@ -13334,6 +13410,7 @@ export declare const facebookFeedContract: {
13334
13410
  lineRichMenuId?: string | null | undefined;
13335
13411
  messengerIntegrationType?: "own" | "business" | undefined;
13336
13412
  facebookFeedIntegrationType?: "own" | "business" | undefined;
13413
+ isCSATEnabled?: boolean | undefined;
13337
13414
  };
13338
13415
  status: boolean;
13339
13416
  createdAt: Date;
@@ -13762,6 +13839,7 @@ export declare const facebookFeedContract: {
13762
13839
  lineRichMenuId?: string | null | undefined;
13763
13840
  messengerIntegrationType?: "own" | "business" | undefined;
13764
13841
  facebookFeedIntegrationType?: "own" | "business" | undefined;
13842
+ isCSATEnabled?: boolean | undefined;
13765
13843
  };
13766
13844
  status: boolean;
13767
13845
  createdAt: Date;
@@ -15963,6 +16041,7 @@ export declare const facebookFeedContract: {
15963
16041
  lineRichMenuId?: string | null | undefined;
15964
16042
  messengerIntegrationType?: "own" | "business" | undefined;
15965
16043
  facebookFeedIntegrationType?: "own" | "business" | undefined;
16044
+ isCSATEnabled?: boolean | undefined;
15966
16045
  };
15967
16046
  status: boolean;
15968
16047
  createdAt: Date;
@@ -16728,6 +16807,7 @@ export declare const facebookFeedContract: {
16728
16807
  lineRichMenuId?: string | null | undefined;
16729
16808
  messengerIntegrationType?: "own" | "business" | undefined;
16730
16809
  facebookFeedIntegrationType?: "own" | "business" | undefined;
16810
+ isCSATEnabled?: boolean | undefined;
16731
16811
  };
16732
16812
  status: boolean;
16733
16813
  createdAt: Date;
@@ -17494,6 +17574,7 @@ export declare const facebookFeedContract: {
17494
17574
  lineRichMenuId?: string | null | undefined;
17495
17575
  messengerIntegrationType?: "own" | "business" | undefined;
17496
17576
  facebookFeedIntegrationType?: "own" | "business" | undefined;
17577
+ isCSATEnabled?: boolean | undefined;
17497
17578
  };
17498
17579
  status: boolean;
17499
17580
  createdAt: Date;
@@ -18259,6 +18340,7 @@ export declare const facebookFeedContract: {
18259
18340
  lineRichMenuId?: string | null | undefined;
18260
18341
  messengerIntegrationType?: "own" | "business" | undefined;
18261
18342
  facebookFeedIntegrationType?: "own" | "business" | undefined;
18343
+ isCSATEnabled?: boolean | undefined;
18262
18344
  };
18263
18345
  status: boolean;
18264
18346
  createdAt: Date;
@@ -19025,6 +19107,7 @@ export declare const facebookFeedContract: {
19025
19107
  lineRichMenuId?: string | null | undefined;
19026
19108
  messengerIntegrationType?: "own" | "business" | undefined;
19027
19109
  facebookFeedIntegrationType?: "own" | "business" | undefined;
19110
+ isCSATEnabled?: boolean | undefined;
19028
19111
  };
19029
19112
  status: boolean;
19030
19113
  createdAt: Date;
@@ -19790,6 +19873,7 @@ export declare const facebookFeedContract: {
19790
19873
  lineRichMenuId?: string | null | undefined;
19791
19874
  messengerIntegrationType?: "own" | "business" | undefined;
19792
19875
  facebookFeedIntegrationType?: "own" | "business" | undefined;
19876
+ isCSATEnabled?: boolean | undefined;
19793
19877
  };
19794
19878
  status: boolean;
19795
19879
  createdAt: Date;
@@ -20558,6 +20642,7 @@ export declare const facebookFeedContract: {
20558
20642
  lineRichMenuId?: string | null | undefined;
20559
20643
  messengerIntegrationType?: "own" | "business" | undefined;
20560
20644
  facebookFeedIntegrationType?: "own" | "business" | undefined;
20645
+ isCSATEnabled?: boolean | undefined;
20561
20646
  };
20562
20647
  status: boolean;
20563
20648
  createdAt: Date;
@@ -21323,6 +21408,7 @@ export declare const facebookFeedContract: {
21323
21408
  lineRichMenuId?: string | null | undefined;
21324
21409
  messengerIntegrationType?: "own" | "business" | undefined;
21325
21410
  facebookFeedIntegrationType?: "own" | "business" | undefined;
21411
+ isCSATEnabled?: boolean | undefined;
21326
21412
  };
21327
21413
  status: boolean;
21328
21414
  createdAt: Date;
@@ -22092,6 +22178,7 @@ export declare const facebookFeedContract: {
22092
22178
  lineRichMenuId?: string | null | undefined;
22093
22179
  messengerIntegrationType?: "own" | "business" | undefined;
22094
22180
  facebookFeedIntegrationType?: "own" | "business" | undefined;
22181
+ isCSATEnabled?: boolean | undefined;
22095
22182
  };
22096
22183
  status: boolean;
22097
22184
  createdAt: Date;
@@ -22857,6 +22944,7 @@ export declare const facebookFeedContract: {
22857
22944
  lineRichMenuId?: string | null | undefined;
22858
22945
  messengerIntegrationType?: "own" | "business" | undefined;
22859
22946
  facebookFeedIntegrationType?: "own" | "business" | undefined;
22947
+ isCSATEnabled?: boolean | undefined;
22860
22948
  };
22861
22949
  status: boolean;
22862
22950
  createdAt: Date;
@@ -23575,6 +23663,7 @@ export declare const facebookFeedContract: {
23575
23663
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
23576
23664
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
23577
23665
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
23666
+ isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
23578
23667
  }, "strip", z.ZodTypeAny, {
23579
23668
  name: string;
23580
23669
  id: string;
@@ -23604,6 +23693,7 @@ export declare const facebookFeedContract: {
23604
23693
  lineRichMenuId?: string | null | undefined;
23605
23694
  messengerIntegrationType?: "own" | "business" | undefined;
23606
23695
  facebookFeedIntegrationType?: "own" | "business" | undefined;
23696
+ isCSATEnabled?: boolean | undefined;
23607
23697
  }, {
23608
23698
  name: string;
23609
23699
  id: string;
@@ -23633,6 +23723,7 @@ export declare const facebookFeedContract: {
23633
23723
  lineRichMenuId?: string | null | undefined;
23634
23724
  messengerIntegrationType?: "own" | "business" | undefined;
23635
23725
  facebookFeedIntegrationType?: "own" | "business" | undefined;
23726
+ isCSATEnabled?: boolean | undefined;
23636
23727
  }>;
23637
23728
  platformId: z.ZodString;
23638
23729
  brandName: z.ZodString;
@@ -23692,6 +23783,7 @@ export declare const facebookFeedContract: {
23692
23783
  lineRichMenuId?: string | null | undefined;
23693
23784
  messengerIntegrationType?: "own" | "business" | undefined;
23694
23785
  facebookFeedIntegrationType?: "own" | "business" | undefined;
23786
+ isCSATEnabled?: boolean | undefined;
23695
23787
  };
23696
23788
  status: boolean;
23697
23789
  brandName: string;
@@ -23739,6 +23831,7 @@ export declare const facebookFeedContract: {
23739
23831
  lineRichMenuId?: string | null | undefined;
23740
23832
  messengerIntegrationType?: "own" | "business" | undefined;
23741
23833
  facebookFeedIntegrationType?: "own" | "business" | undefined;
23834
+ isCSATEnabled?: boolean | undefined;
23742
23835
  };
23743
23836
  status: boolean;
23744
23837
  brandName: string;
@@ -23789,6 +23882,7 @@ export declare const facebookFeedContract: {
23789
23882
  lineRichMenuId?: string | null | undefined;
23790
23883
  messengerIntegrationType?: "own" | "business" | undefined;
23791
23884
  facebookFeedIntegrationType?: "own" | "business" | undefined;
23885
+ isCSATEnabled?: boolean | undefined;
23792
23886
  };
23793
23887
  status: boolean;
23794
23888
  brandName: string;
@@ -23839,6 +23933,7 @@ export declare const facebookFeedContract: {
23839
23933
  lineRichMenuId?: string | null | undefined;
23840
23934
  messengerIntegrationType?: "own" | "business" | undefined;
23841
23935
  facebookFeedIntegrationType?: "own" | "business" | undefined;
23936
+ isCSATEnabled?: boolean | undefined;
23842
23937
  };
23843
23938
  status: boolean;
23844
23939
  brandName: string;
@@ -24041,6 +24136,7 @@ export declare const facebookFeedContract: {
24041
24136
  lineRichMenuId?: string | null | undefined;
24042
24137
  messengerIntegrationType?: "own" | "business" | undefined;
24043
24138
  facebookFeedIntegrationType?: "own" | "business" | undefined;
24139
+ isCSATEnabled?: boolean | undefined;
24044
24140
  };
24045
24141
  status: boolean;
24046
24142
  brandName: string;
@@ -24125,6 +24221,7 @@ export declare const facebookFeedContract: {
24125
24221
  lineRichMenuId?: string | null | undefined;
24126
24222
  messengerIntegrationType?: "own" | "business" | undefined;
24127
24223
  facebookFeedIntegrationType?: "own" | "business" | undefined;
24224
+ isCSATEnabled?: boolean | undefined;
24128
24225
  };
24129
24226
  status: boolean;
24130
24227
  brandName: string;
@@ -24214,6 +24311,7 @@ export declare const facebookFeedContract: {
24214
24311
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
24215
24312
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
24216
24313
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
24314
+ isCSATEnabled: z.ZodOptional<z.ZodBoolean>;
24217
24315
  }, "strip", z.ZodTypeAny, {
24218
24316
  name: string;
24219
24317
  id: string;
@@ -24243,6 +24341,7 @@ export declare const facebookFeedContract: {
24243
24341
  lineRichMenuId?: string | null | undefined;
24244
24342
  messengerIntegrationType?: "own" | "business" | undefined;
24245
24343
  facebookFeedIntegrationType?: "own" | "business" | undefined;
24344
+ isCSATEnabled?: boolean | undefined;
24246
24345
  }, {
24247
24346
  name: string;
24248
24347
  id: string;
@@ -24272,6 +24371,7 @@ export declare const facebookFeedContract: {
24272
24371
  lineRichMenuId?: string | null | undefined;
24273
24372
  messengerIntegrationType?: "own" | "business" | undefined;
24274
24373
  facebookFeedIntegrationType?: "own" | "business" | undefined;
24374
+ isCSATEnabled?: boolean | undefined;
24275
24375
  }>;
24276
24376
  platformId: z.ZodString;
24277
24377
  brandName: z.ZodString;
@@ -24331,6 +24431,7 @@ export declare const facebookFeedContract: {
24331
24431
  lineRichMenuId?: string | null | undefined;
24332
24432
  messengerIntegrationType?: "own" | "business" | undefined;
24333
24433
  facebookFeedIntegrationType?: "own" | "business" | undefined;
24434
+ isCSATEnabled?: boolean | undefined;
24334
24435
  };
24335
24436
  status: boolean;
24336
24437
  brandName: string;
@@ -24378,6 +24479,7 @@ export declare const facebookFeedContract: {
24378
24479
  lineRichMenuId?: string | null | undefined;
24379
24480
  messengerIntegrationType?: "own" | "business" | undefined;
24380
24481
  facebookFeedIntegrationType?: "own" | "business" | undefined;
24482
+ isCSATEnabled?: boolean | undefined;
24381
24483
  };
24382
24484
  status: boolean;
24383
24485
  brandName: string;
@@ -24428,6 +24530,7 @@ export declare const facebookFeedContract: {
24428
24530
  lineRichMenuId?: string | null | undefined;
24429
24531
  messengerIntegrationType?: "own" | "business" | undefined;
24430
24532
  facebookFeedIntegrationType?: "own" | "business" | undefined;
24533
+ isCSATEnabled?: boolean | undefined;
24431
24534
  };
24432
24535
  status: boolean;
24433
24536
  brandName: string;
@@ -24478,6 +24581,7 @@ export declare const facebookFeedContract: {
24478
24581
  lineRichMenuId?: string | null | undefined;
24479
24582
  messengerIntegrationType?: "own" | "business" | undefined;
24480
24583
  facebookFeedIntegrationType?: "own" | "business" | undefined;
24584
+ isCSATEnabled?: boolean | undefined;
24481
24585
  };
24482
24586
  status: boolean;
24483
24587
  brandName: string;
@@ -24680,6 +24784,7 @@ export declare const facebookFeedContract: {
24680
24784
  lineRichMenuId?: string | null | undefined;
24681
24785
  messengerIntegrationType?: "own" | "business" | undefined;
24682
24786
  facebookFeedIntegrationType?: "own" | "business" | undefined;
24787
+ isCSATEnabled?: boolean | undefined;
24683
24788
  };
24684
24789
  status: boolean;
24685
24790
  brandName: string;
@@ -24764,6 +24869,7 @@ export declare const facebookFeedContract: {
24764
24869
  lineRichMenuId?: string | null | undefined;
24765
24870
  messengerIntegrationType?: "own" | "business" | undefined;
24766
24871
  facebookFeedIntegrationType?: "own" | "business" | undefined;
24872
+ isCSATEnabled?: boolean | undefined;
24767
24873
  };
24768
24874
  status: boolean;
24769
24875
  brandName: string;