@kl1/contracts 1.1.57 → 1.1.58

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (55) hide show
  1. package/dist/api-contracts/src/channel/index.d.ts +1180 -1075
  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 +1671 -3147
  14. package/dist/api-contracts/src/contract.d.ts.map +1 -1
  15. package/dist/api-contracts/src/cx-intelligence/index.d.ts +87 -0
  16. package/dist/api-contracts/src/cx-intelligence/index.d.ts.map +1 -1
  17. package/dist/api-contracts/src/cx-log/index.d.ts +11 -0
  18. package/dist/api-contracts/src/cx-log/index.d.ts.map +1 -1
  19. package/dist/api-contracts/src/cx-log/schema.d.ts +9 -0
  20. package/dist/api-contracts/src/cx-log/schema.d.ts.map +1 -1
  21. package/dist/api-contracts/src/facebook-feed/index.d.ts +106 -0
  22. package/dist/api-contracts/src/facebook-feed/index.d.ts.map +1 -1
  23. package/dist/api-contracts/src/facebook-feed/schema.d.ts +7 -0
  24. package/dist/api-contracts/src/facebook-feed/schema.d.ts.map +1 -1
  25. package/dist/api-contracts/src/facebook-feed/validation.d.ts +5 -0
  26. package/dist/api-contracts/src/facebook-feed/validation.d.ts.map +1 -1
  27. package/dist/api-contracts/src/instagram/index.d.ts +83 -0
  28. package/dist/api-contracts/src/instagram/index.d.ts.map +1 -1
  29. package/dist/api-contracts/src/line/index.d.ts +75 -0
  30. package/dist/api-contracts/src/line/index.d.ts.map +1 -1
  31. package/dist/api-contracts/src/line/validation.d.ts +9 -0
  32. package/dist/api-contracts/src/line/validation.d.ts.map +1 -1
  33. package/dist/api-contracts/src/messenger/index.d.ts +83 -0
  34. package/dist/api-contracts/src/messenger/index.d.ts.map +1 -1
  35. package/dist/api-contracts/src/messenger/validation.d.ts +5 -0
  36. package/dist/api-contracts/src/messenger/validation.d.ts.map +1 -1
  37. package/dist/api-contracts/src/sms/index.d.ts +16 -0
  38. package/dist/api-contracts/src/sms/index.d.ts.map +1 -1
  39. package/dist/api-contracts/src/subscription/index.d.ts +6 -6
  40. package/dist/api-contracts/src/subscription/schema.d.ts +6 -6
  41. package/dist/api-contracts/src/telegram/index.d.ts +61 -0
  42. package/dist/api-contracts/src/telegram/index.d.ts.map +1 -1
  43. package/dist/api-contracts/src/viber/index.d.ts +61 -0
  44. package/dist/api-contracts/src/viber/index.d.ts.map +1 -1
  45. package/dist/api-contracts/src/webchat/index.d.ts +61 -0
  46. package/dist/api-contracts/src/webchat/index.d.ts.map +1 -1
  47. package/dist/api-contracts/src/whatsapp/index.d.ts +71 -0
  48. package/dist/api-contracts/src/whatsapp/index.d.ts.map +1 -1
  49. package/dist/api-contracts/src/workflow-rule/index.d.ts +18 -0
  50. package/dist/api-contracts/src/workflow-rule/index.d.ts.map +1 -1
  51. package/dist/index.js +34 -32
  52. package/dist/index.js.map +1 -1
  53. package/dist/index.mjs +33 -32
  54. package/dist/index.mjs.map +1 -1
  55. package/package.json +1 -1
@@ -820,6 +820,7 @@ export declare const ChannelSchema: z.ZodObject<{
820
820
  }>>;
821
821
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
822
822
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
823
+ facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
823
824
  }, "strip", z.ZodTypeAny, {
824
825
  id: string;
825
826
  name: string;
@@ -845,6 +846,7 @@ export declare const ChannelSchema: z.ZodObject<{
845
846
  } | undefined;
846
847
  lineRichMenuId?: string | null | undefined;
847
848
  messengerIntegrationType?: "own" | "business" | undefined;
849
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
848
850
  }, {
849
851
  id: string;
850
852
  name: string;
@@ -870,6 +872,7 @@ export declare const ChannelSchema: z.ZodObject<{
870
872
  } | undefined;
871
873
  lineRichMenuId?: string | null | undefined;
872
874
  messengerIntegrationType?: "own" | "business" | undefined;
875
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
873
876
  }>;
874
877
  platformId: z.ZodString;
875
878
  brandName: z.ZodString;
@@ -925,6 +928,7 @@ export declare const ChannelSchema: z.ZodObject<{
925
928
  } | undefined;
926
929
  lineRichMenuId?: string | null | undefined;
927
930
  messengerIntegrationType?: "own" | "business" | undefined;
931
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
928
932
  };
929
933
  status: boolean;
930
934
  brandName: string;
@@ -968,6 +972,7 @@ export declare const ChannelSchema: z.ZodObject<{
968
972
  } | undefined;
969
973
  lineRichMenuId?: string | null | undefined;
970
974
  messengerIntegrationType?: "own" | "business" | undefined;
975
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
971
976
  };
972
977
  status: boolean;
973
978
  brandName: string;
@@ -1039,6 +1044,7 @@ export declare const ReloginChanelSchema: z.ZodObject<{
1039
1044
  }>>;
1040
1045
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1041
1046
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
1047
+ facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
1042
1048
  }, "strip", z.ZodTypeAny, {
1043
1049
  id: string;
1044
1050
  name: string;
@@ -1064,6 +1070,7 @@ export declare const ReloginChanelSchema: z.ZodObject<{
1064
1070
  } | undefined;
1065
1071
  lineRichMenuId?: string | null | undefined;
1066
1072
  messengerIntegrationType?: "own" | "business" | undefined;
1073
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
1067
1074
  }, {
1068
1075
  id: string;
1069
1076
  name: string;
@@ -1089,6 +1096,7 @@ export declare const ReloginChanelSchema: z.ZodObject<{
1089
1096
  } | undefined;
1090
1097
  lineRichMenuId?: string | null | undefined;
1091
1098
  messengerIntegrationType?: "own" | "business" | undefined;
1099
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
1092
1100
  }>;
1093
1101
  status: z.ZodUnion<[z.ZodLiteral<true>, z.ZodLiteral<false>]>;
1094
1102
  actor: z.ZodOptional<z.ZodObject<{
@@ -1149,6 +1157,7 @@ export declare const ReloginChanelSchema: z.ZodObject<{
1149
1157
  } | undefined;
1150
1158
  lineRichMenuId?: string | null | undefined;
1151
1159
  messengerIntegrationType?: "own" | "business" | undefined;
1160
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
1152
1161
  };
1153
1162
  status: boolean;
1154
1163
  createdAt: string;
@@ -1196,6 +1205,7 @@ export declare const ReloginChanelSchema: z.ZodObject<{
1196
1205
  } | undefined;
1197
1206
  lineRichMenuId?: string | null | undefined;
1198
1207
  messengerIntegrationType?: "own" | "business" | undefined;
1208
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
1199
1209
  };
1200
1210
  status: boolean;
1201
1211
  createdAt: string;
@@ -1275,6 +1285,7 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
1275
1285
  }>>;
1276
1286
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1277
1287
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
1288
+ facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
1278
1289
  }, "strip", z.ZodTypeAny, {
1279
1290
  id: string;
1280
1291
  name: string;
@@ -1300,6 +1311,7 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
1300
1311
  } | undefined;
1301
1312
  lineRichMenuId?: string | null | undefined;
1302
1313
  messengerIntegrationType?: "own" | "business" | undefined;
1314
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
1303
1315
  }, {
1304
1316
  id: string;
1305
1317
  name: string;
@@ -1325,6 +1337,7 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
1325
1337
  } | undefined;
1326
1338
  lineRichMenuId?: string | null | undefined;
1327
1339
  messengerIntegrationType?: "own" | "business" | undefined;
1340
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
1328
1341
  }>;
1329
1342
  platformId: z.ZodString;
1330
1343
  brandName: z.ZodString;
@@ -1380,6 +1393,7 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
1380
1393
  } | undefined;
1381
1394
  lineRichMenuId?: string | null | undefined;
1382
1395
  messengerIntegrationType?: "own" | "business" | undefined;
1396
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
1383
1397
  };
1384
1398
  status: boolean;
1385
1399
  brandName: string;
@@ -1423,6 +1437,7 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
1423
1437
  } | undefined;
1424
1438
  lineRichMenuId?: string | null | undefined;
1425
1439
  messengerIntegrationType?: "own" | "business" | undefined;
1440
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
1426
1441
  };
1427
1442
  status: boolean;
1428
1443
  brandName: string;
@@ -1469,6 +1484,7 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
1469
1484
  } | undefined;
1470
1485
  lineRichMenuId?: string | null | undefined;
1471
1486
  messengerIntegrationType?: "own" | "business" | undefined;
1487
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
1472
1488
  };
1473
1489
  status: boolean;
1474
1490
  brandName: string;
@@ -1515,6 +1531,7 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
1515
1531
  } | undefined;
1516
1532
  lineRichMenuId?: string | null | undefined;
1517
1533
  messengerIntegrationType?: "own" | "business" | undefined;
1534
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
1518
1535
  };
1519
1536
  status: boolean;
1520
1537
  brandName: string;
@@ -1713,6 +1730,7 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
1713
1730
  } | undefined;
1714
1731
  lineRichMenuId?: string | null | undefined;
1715
1732
  messengerIntegrationType?: "own" | "business" | undefined;
1733
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
1716
1734
  };
1717
1735
  status: boolean;
1718
1736
  brandName: string;
@@ -1793,6 +1811,7 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
1793
1811
  } | undefined;
1794
1812
  lineRichMenuId?: string | null | undefined;
1795
1813
  messengerIntegrationType?: "own" | "business" | undefined;
1814
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
1796
1815
  };
1797
1816
  status: boolean;
1798
1817
  brandName: string;
@@ -1992,6 +2011,7 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
1992
2011
  }>>;
1993
2012
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1994
2013
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
2014
+ facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
1995
2015
  }, "strip", z.ZodTypeAny, {
1996
2016
  id: string;
1997
2017
  name: string;
@@ -2017,6 +2037,7 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
2017
2037
  } | undefined;
2018
2038
  lineRichMenuId?: string | null | undefined;
2019
2039
  messengerIntegrationType?: "own" | "business" | undefined;
2040
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
2020
2041
  }, {
2021
2042
  id: string;
2022
2043
  name: string;
@@ -2042,6 +2063,7 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
2042
2063
  } | undefined;
2043
2064
  lineRichMenuId?: string | null | undefined;
2044
2065
  messengerIntegrationType?: "own" | "business" | undefined;
2066
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
2045
2067
  }>;
2046
2068
  platformId: z.ZodString;
2047
2069
  brandName: z.ZodString;
@@ -2097,6 +2119,7 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
2097
2119
  } | undefined;
2098
2120
  lineRichMenuId?: string | null | undefined;
2099
2121
  messengerIntegrationType?: "own" | "business" | undefined;
2122
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
2100
2123
  };
2101
2124
  status: boolean;
2102
2125
  brandName: string;
@@ -2140,6 +2163,7 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
2140
2163
  } | undefined;
2141
2164
  lineRichMenuId?: string | null | undefined;
2142
2165
  messengerIntegrationType?: "own" | "business" | undefined;
2166
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
2143
2167
  };
2144
2168
  status: boolean;
2145
2169
  brandName: string;
@@ -2188,6 +2212,7 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
2188
2212
  } | undefined;
2189
2213
  lineRichMenuId?: string | null | undefined;
2190
2214
  messengerIntegrationType?: "own" | "business" | undefined;
2215
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
2191
2216
  };
2192
2217
  status: boolean;
2193
2218
  brandName: string;
@@ -2275,6 +2300,7 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
2275
2300
  } | undefined;
2276
2301
  lineRichMenuId?: string | null | undefined;
2277
2302
  messengerIntegrationType?: "own" | "business" | undefined;
2303
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
2278
2304
  };
2279
2305
  status: boolean;
2280
2306
  brandName: string;
@@ -2530,6 +2556,7 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
2530
2556
  } | undefined;
2531
2557
  lineRichMenuId?: string | null | undefined;
2532
2558
  messengerIntegrationType?: "own" | "business" | undefined;
2559
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
2533
2560
  };
2534
2561
  status: boolean;
2535
2562
  brandName: string;
@@ -2656,6 +2683,7 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
2656
2683
  } | undefined;
2657
2684
  lineRichMenuId?: string | null | undefined;
2658
2685
  messengerIntegrationType?: "own" | "business" | undefined;
2686
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
2659
2687
  };
2660
2688
  status: boolean;
2661
2689
  brandName: string;
@@ -3026,6 +3054,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
3026
3054
  }>>;
3027
3055
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
3028
3056
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
3057
+ facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
3029
3058
  }, "strip", z.ZodTypeAny, {
3030
3059
  id: string;
3031
3060
  name: string;
@@ -3051,6 +3080,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
3051
3080
  } | undefined;
3052
3081
  lineRichMenuId?: string | null | undefined;
3053
3082
  messengerIntegrationType?: "own" | "business" | undefined;
3083
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
3054
3084
  }, {
3055
3085
  id: string;
3056
3086
  name: string;
@@ -3076,6 +3106,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
3076
3106
  } | undefined;
3077
3107
  lineRichMenuId?: string | null | undefined;
3078
3108
  messengerIntegrationType?: "own" | "business" | undefined;
3109
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
3079
3110
  }>;
3080
3111
  platformId: z.ZodString;
3081
3112
  brandName: z.ZodString;
@@ -3131,6 +3162,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
3131
3162
  } | undefined;
3132
3163
  lineRichMenuId?: string | null | undefined;
3133
3164
  messengerIntegrationType?: "own" | "business" | undefined;
3165
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
3134
3166
  };
3135
3167
  status: boolean;
3136
3168
  brandName: string;
@@ -3174,6 +3206,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
3174
3206
  } | undefined;
3175
3207
  lineRichMenuId?: string | null | undefined;
3176
3208
  messengerIntegrationType?: "own" | "business" | undefined;
3209
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
3177
3210
  };
3178
3211
  status: boolean;
3179
3212
  brandName: string;
@@ -3222,6 +3255,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
3222
3255
  } | undefined;
3223
3256
  lineRichMenuId?: string | null | undefined;
3224
3257
  messengerIntegrationType?: "own" | "business" | undefined;
3258
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
3225
3259
  };
3226
3260
  status: boolean;
3227
3261
  brandName: string;
@@ -3309,6 +3343,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
3309
3343
  } | undefined;
3310
3344
  lineRichMenuId?: string | null | undefined;
3311
3345
  messengerIntegrationType?: "own" | "business" | undefined;
3346
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
3312
3347
  };
3313
3348
  status: boolean;
3314
3349
  brandName: string;
@@ -3445,6 +3480,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
3445
3480
  } | undefined;
3446
3481
  lineRichMenuId?: string | null | undefined;
3447
3482
  messengerIntegrationType?: "own" | "business" | undefined;
3483
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
3448
3484
  };
3449
3485
  status: boolean;
3450
3486
  brandName: string;
@@ -3575,6 +3611,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
3575
3611
  } | undefined;
3576
3612
  lineRichMenuId?: string | null | undefined;
3577
3613
  messengerIntegrationType?: "own" | "business" | undefined;
3614
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
3578
3615
  };
3579
3616
  status: boolean;
3580
3617
  brandName: string;
@@ -5626,6 +5663,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
5626
5663
  }>>;
5627
5664
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
5628
5665
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
5666
+ facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
5629
5667
  }, "strip", z.ZodTypeAny, {
5630
5668
  id: string;
5631
5669
  name: string;
@@ -5651,6 +5689,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
5651
5689
  } | undefined;
5652
5690
  lineRichMenuId?: string | null | undefined;
5653
5691
  messengerIntegrationType?: "own" | "business" | undefined;
5692
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
5654
5693
  }, {
5655
5694
  id: string;
5656
5695
  name: string;
@@ -5676,6 +5715,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
5676
5715
  } | undefined;
5677
5716
  lineRichMenuId?: string | null | undefined;
5678
5717
  messengerIntegrationType?: "own" | "business" | undefined;
5718
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
5679
5719
  }>;
5680
5720
  brandName: z.ZodString;
5681
5721
  platformId: z.ZodString;
@@ -5935,6 +5975,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
5935
5975
  } | undefined;
5936
5976
  lineRichMenuId?: string | null | undefined;
5937
5977
  messengerIntegrationType?: "own" | "business" | undefined;
5978
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
5938
5979
  };
5939
5980
  status: boolean;
5940
5981
  createdAt: Date;
@@ -6025,6 +6066,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
6025
6066
  } | undefined;
6026
6067
  lineRichMenuId?: string | null | undefined;
6027
6068
  messengerIntegrationType?: "own" | "business" | undefined;
6069
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
6028
6070
  };
6029
6071
  status: boolean;
6030
6072
  createdAt: Date;
@@ -6679,6 +6721,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
6679
6721
  } | undefined;
6680
6722
  lineRichMenuId?: string | null | undefined;
6681
6723
  messengerIntegrationType?: "own" | "business" | undefined;
6724
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
6682
6725
  };
6683
6726
  status: boolean;
6684
6727
  createdAt: Date;
@@ -7102,6 +7145,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
7102
7145
  } | undefined;
7103
7146
  lineRichMenuId?: string | null | undefined;
7104
7147
  messengerIntegrationType?: "own" | "business" | undefined;
7148
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
7105
7149
  };
7106
7150
  status: boolean;
7107
7151
  createdAt: Date;
@@ -10269,6 +10313,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
10269
10313
  }>>;
10270
10314
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
10271
10315
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
10316
+ facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
10272
10317
  }, "strip", z.ZodTypeAny, {
10273
10318
  id: string;
10274
10319
  name: string;
@@ -10294,6 +10339,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
10294
10339
  } | undefined;
10295
10340
  lineRichMenuId?: string | null | undefined;
10296
10341
  messengerIntegrationType?: "own" | "business" | undefined;
10342
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
10297
10343
  }, {
10298
10344
  id: string;
10299
10345
  name: string;
@@ -10319,6 +10365,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
10319
10365
  } | undefined;
10320
10366
  lineRichMenuId?: string | null | undefined;
10321
10367
  messengerIntegrationType?: "own" | "business" | undefined;
10368
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
10322
10369
  }>;
10323
10370
  brandName: z.ZodString;
10324
10371
  platformId: z.ZodString;
@@ -10578,6 +10625,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
10578
10625
  } | undefined;
10579
10626
  lineRichMenuId?: string | null | undefined;
10580
10627
  messengerIntegrationType?: "own" | "business" | undefined;
10628
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
10581
10629
  };
10582
10630
  status: boolean;
10583
10631
  createdAt: Date;
@@ -10668,6 +10716,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
10668
10716
  } | undefined;
10669
10717
  lineRichMenuId?: string | null | undefined;
10670
10718
  messengerIntegrationType?: "own" | "business" | undefined;
10719
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
10671
10720
  };
10672
10721
  status: boolean;
10673
10722
  createdAt: Date;
@@ -11322,6 +11371,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
11322
11371
  } | undefined;
11323
11372
  lineRichMenuId?: string | null | undefined;
11324
11373
  messengerIntegrationType?: "own" | "business" | undefined;
11374
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
11325
11375
  };
11326
11376
  status: boolean;
11327
11377
  createdAt: Date;
@@ -11745,6 +11795,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
11745
11795
  } | undefined;
11746
11796
  lineRichMenuId?: string | null | undefined;
11747
11797
  messengerIntegrationType?: "own" | "business" | undefined;
11798
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
11748
11799
  };
11749
11800
  status: boolean;
11750
11801
  createdAt: Date;
@@ -13941,6 +13992,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
13941
13992
  } | undefined;
13942
13993
  lineRichMenuId?: string | null | undefined;
13943
13994
  messengerIntegrationType?: "own" | "business" | undefined;
13995
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
13944
13996
  };
13945
13997
  status: boolean;
13946
13998
  createdAt: Date;
@@ -14701,6 +14753,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
14701
14753
  } | undefined;
14702
14754
  lineRichMenuId?: string | null | undefined;
14703
14755
  messengerIntegrationType?: "own" | "business" | undefined;
14756
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
14704
14757
  };
14705
14758
  status: boolean;
14706
14759
  createdAt: Date;
@@ -15462,6 +15515,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
15462
15515
  } | undefined;
15463
15516
  lineRichMenuId?: string | null | undefined;
15464
15517
  messengerIntegrationType?: "own" | "business" | undefined;
15518
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
15465
15519
  };
15466
15520
  status: boolean;
15467
15521
  createdAt: Date;
@@ -16222,6 +16276,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
16222
16276
  } | undefined;
16223
16277
  lineRichMenuId?: string | null | undefined;
16224
16278
  messengerIntegrationType?: "own" | "business" | undefined;
16279
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
16225
16280
  };
16226
16281
  status: boolean;
16227
16282
  createdAt: Date;
@@ -16983,6 +17038,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
16983
17038
  } | undefined;
16984
17039
  lineRichMenuId?: string | null | undefined;
16985
17040
  messengerIntegrationType?: "own" | "business" | undefined;
17041
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
16986
17042
  };
16987
17043
  status: boolean;
16988
17044
  createdAt: Date;
@@ -17743,6 +17799,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
17743
17799
  } | undefined;
17744
17800
  lineRichMenuId?: string | null | undefined;
17745
17801
  messengerIntegrationType?: "own" | "business" | undefined;
17802
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
17746
17803
  };
17747
17804
  status: boolean;
17748
17805
  createdAt: Date;
@@ -18506,6 +18563,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
18506
18563
  } | undefined;
18507
18564
  lineRichMenuId?: string | null | undefined;
18508
18565
  messengerIntegrationType?: "own" | "business" | undefined;
18566
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
18509
18567
  };
18510
18568
  status: boolean;
18511
18569
  createdAt: Date;
@@ -19266,6 +19324,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
19266
19324
  } | undefined;
19267
19325
  lineRichMenuId?: string | null | undefined;
19268
19326
  messengerIntegrationType?: "own" | "business" | undefined;
19327
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
19269
19328
  };
19270
19329
  status: boolean;
19271
19330
  createdAt: Date;
@@ -20030,6 +20089,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
20030
20089
  } | undefined;
20031
20090
  lineRichMenuId?: string | null | undefined;
20032
20091
  messengerIntegrationType?: "own" | "business" | undefined;
20092
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
20033
20093
  };
20034
20094
  status: boolean;
20035
20095
  createdAt: Date;
@@ -20790,6 +20850,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
20790
20850
  } | undefined;
20791
20851
  lineRichMenuId?: string | null | undefined;
20792
20852
  messengerIntegrationType?: "own" | "business" | undefined;
20853
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
20793
20854
  };
20794
20855
  status: boolean;
20795
20856
  createdAt: Date;
@@ -21472,6 +21533,7 @@ export declare const ChannelServiceResponseSchema: z.ZodObject<{
21472
21533
  }>>;
21473
21534
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
21474
21535
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
21536
+ facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
21475
21537
  }, "strip", z.ZodTypeAny, {
21476
21538
  id: string;
21477
21539
  name: string;
@@ -21497,6 +21559,7 @@ export declare const ChannelServiceResponseSchema: z.ZodObject<{
21497
21559
  } | undefined;
21498
21560
  lineRichMenuId?: string | null | undefined;
21499
21561
  messengerIntegrationType?: "own" | "business" | undefined;
21562
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
21500
21563
  }, {
21501
21564
  id: string;
21502
21565
  name: string;
@@ -21522,6 +21585,7 @@ export declare const ChannelServiceResponseSchema: z.ZodObject<{
21522
21585
  } | undefined;
21523
21586
  lineRichMenuId?: string | null | undefined;
21524
21587
  messengerIntegrationType?: "own" | "business" | undefined;
21588
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
21525
21589
  }>;
21526
21590
  platformId: z.ZodString;
21527
21591
  brandName: z.ZodString;
@@ -21577,6 +21641,7 @@ export declare const ChannelServiceResponseSchema: z.ZodObject<{
21577
21641
  } | undefined;
21578
21642
  lineRichMenuId?: string | null | undefined;
21579
21643
  messengerIntegrationType?: "own" | "business" | undefined;
21644
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
21580
21645
  };
21581
21646
  status: boolean;
21582
21647
  brandName: string;
@@ -21620,6 +21685,7 @@ export declare const ChannelServiceResponseSchema: z.ZodObject<{
21620
21685
  } | undefined;
21621
21686
  lineRichMenuId?: string | null | undefined;
21622
21687
  messengerIntegrationType?: "own" | "business" | undefined;
21688
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
21623
21689
  };
21624
21690
  status: boolean;
21625
21691
  brandName: string;
@@ -21665,6 +21731,7 @@ export declare const ChannelServiceResponseSchema: z.ZodObject<{
21665
21731
  } | undefined;
21666
21732
  lineRichMenuId?: string | null | undefined;
21667
21733
  messengerIntegrationType?: "own" | "business" | undefined;
21734
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
21668
21735
  };
21669
21736
  status: boolean;
21670
21737
  brandName: string;
@@ -21711,6 +21778,7 @@ export declare const ChannelServiceResponseSchema: z.ZodObject<{
21711
21778
  } | undefined;
21712
21779
  lineRichMenuId?: string | null | undefined;
21713
21780
  messengerIntegrationType?: "own" | "business" | undefined;
21781
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
21714
21782
  };
21715
21783
  status: boolean;
21716
21784
  brandName: string;
@@ -23158,6 +23226,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
23158
23226
  }>>;
23159
23227
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
23160
23228
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
23229
+ facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
23161
23230
  }, "strip", z.ZodTypeAny, {
23162
23231
  id: string;
23163
23232
  name: string;
@@ -23183,6 +23252,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
23183
23252
  } | undefined;
23184
23253
  lineRichMenuId?: string | null | undefined;
23185
23254
  messengerIntegrationType?: "own" | "business" | undefined;
23255
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
23186
23256
  }, {
23187
23257
  id: string;
23188
23258
  name: string;
@@ -23208,6 +23278,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
23208
23278
  } | undefined;
23209
23279
  lineRichMenuId?: string | null | undefined;
23210
23280
  messengerIntegrationType?: "own" | "business" | undefined;
23281
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
23211
23282
  }>;
23212
23283
  platformId: z.ZodString;
23213
23284
  brandName: z.ZodString;
@@ -23263,6 +23334,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
23263
23334
  } | undefined;
23264
23335
  lineRichMenuId?: string | null | undefined;
23265
23336
  messengerIntegrationType?: "own" | "business" | undefined;
23337
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
23266
23338
  };
23267
23339
  status: boolean;
23268
23340
  brandName: string;
@@ -23306,6 +23378,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
23306
23378
  } | undefined;
23307
23379
  lineRichMenuId?: string | null | undefined;
23308
23380
  messengerIntegrationType?: "own" | "business" | undefined;
23381
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
23309
23382
  };
23310
23383
  status: boolean;
23311
23384
  brandName: string;
@@ -24098,6 +24171,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
24098
24171
  } | undefined;
24099
24172
  lineRichMenuId?: string | null | undefined;
24100
24173
  messengerIntegrationType?: "own" | "business" | undefined;
24174
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
24101
24175
  };
24102
24176
  status: boolean;
24103
24177
  brandName: string;
@@ -24446,6 +24520,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
24446
24520
  } | undefined;
24447
24521
  lineRichMenuId?: string | null | undefined;
24448
24522
  messengerIntegrationType?: "own" | "business" | undefined;
24523
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
24449
24524
  };
24450
24525
  status: boolean;
24451
24526
  brandName: string;
@@ -25450,6 +25525,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
25450
25525
  } | undefined;
25451
25526
  lineRichMenuId?: string | null | undefined;
25452
25527
  messengerIntegrationType?: "own" | "business" | undefined;
25528
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
25453
25529
  };
25454
25530
  status: boolean;
25455
25531
  brandName: string;
@@ -25961,6 +26037,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
25961
26037
  } | undefined;
25962
26038
  lineRichMenuId?: string | null | undefined;
25963
26039
  messengerIntegrationType?: "own" | "business" | undefined;
26040
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
25964
26041
  };
25965
26042
  status: boolean;
25966
26043
  brandName: string;
@@ -26474,6 +26551,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
26474
26551
  } | undefined;
26475
26552
  lineRichMenuId?: string | null | undefined;
26476
26553
  messengerIntegrationType?: "own" | "business" | undefined;
26554
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
26477
26555
  };
26478
26556
  status: boolean;
26479
26557
  brandName: string;
@@ -26987,6 +27065,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
26987
27065
  } | undefined;
26988
27066
  lineRichMenuId?: string | null | undefined;
26989
27067
  messengerIntegrationType?: "own" | "business" | undefined;
27068
+ facebookFeedIntegrationType?: "own" | "business" | undefined;
26990
27069
  };
26991
27070
  status: boolean;
26992
27071
  brandName: string;