@kl1/contracts 1.2.41-uat → 1.2.42-uat
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.
- package/dist/api-contracts/src/channel/index.d.ts +137 -0
- package/dist/api-contracts/src/channel/index.d.ts.map +1 -1
- package/dist/api-contracts/src/channel/schema.d.ts +8 -0
- package/dist/api-contracts/src/channel/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/channel/validation.d.ts +10 -0
- package/dist/api-contracts/src/channel/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/index.d.ts +230 -0
- package/dist/api-contracts/src/chat/index.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/schema.d.ts +54 -0
- package/dist/api-contracts/src/chat/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/validation.d.ts +79 -0
- package/dist/api-contracts/src/chat/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/contract.d.ts +826 -0
- package/dist/api-contracts/src/contract.d.ts.map +1 -1
- package/dist/api-contracts/src/cx-log/index.d.ts +11 -0
- package/dist/api-contracts/src/cx-log/index.d.ts.map +1 -1
- package/dist/api-contracts/src/cx-log/schema.d.ts +9 -0
- package/dist/api-contracts/src/cx-log/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/facebook-feed/index.d.ts +106 -0
- package/dist/api-contracts/src/facebook-feed/index.d.ts.map +1 -1
- package/dist/api-contracts/src/facebook-feed/schema.d.ts +7 -0
- package/dist/api-contracts/src/facebook-feed/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/facebook-feed/validation.d.ts +5 -0
- package/dist/api-contracts/src/facebook-feed/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/instagram/index.d.ts +83 -0
- package/dist/api-contracts/src/instagram/index.d.ts.map +1 -1
- package/dist/api-contracts/src/line/index.d.ts +75 -0
- package/dist/api-contracts/src/line/index.d.ts.map +1 -1
- package/dist/api-contracts/src/line/validation.d.ts +9 -0
- package/dist/api-contracts/src/line/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/messenger/index.d.ts +83 -0
- package/dist/api-contracts/src/messenger/index.d.ts.map +1 -1
- package/dist/api-contracts/src/messenger/validation.d.ts +5 -0
- package/dist/api-contracts/src/messenger/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/sms/index.d.ts +16 -0
- package/dist/api-contracts/src/sms/index.d.ts.map +1 -1
- package/dist/api-contracts/src/telegram/index.d.ts +61 -0
- package/dist/api-contracts/src/telegram/index.d.ts.map +1 -1
- package/dist/api-contracts/src/viber/index.d.ts +61 -0
- package/dist/api-contracts/src/viber/index.d.ts.map +1 -1
- package/dist/api-contracts/src/webchat/index.d.ts +61 -0
- package/dist/api-contracts/src/webchat/index.d.ts.map +1 -1
- package/dist/api-contracts/src/whatsapp/index.d.ts +71 -0
- package/dist/api-contracts/src/whatsapp/index.d.ts.map +1 -1
- package/dist/api-contracts/src/workflow-rule/index.d.ts +18 -0
- package/dist/api-contracts/src/workflow-rule/index.d.ts.map +1 -1
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -87,6 +87,7 @@ export declare const channelContract: {
|
|
|
87
87
|
}>>;
|
|
88
88
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
89
89
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
90
|
+
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
90
91
|
}, "strip", z.ZodTypeAny, {
|
|
91
92
|
id: string;
|
|
92
93
|
name: string;
|
|
@@ -113,6 +114,7 @@ export declare const channelContract: {
|
|
|
113
114
|
} | undefined;
|
|
114
115
|
lineRichMenuId?: string | null | undefined;
|
|
115
116
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
117
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
116
118
|
}, {
|
|
117
119
|
id: string;
|
|
118
120
|
name: string;
|
|
@@ -139,6 +141,7 @@ export declare const channelContract: {
|
|
|
139
141
|
} | undefined;
|
|
140
142
|
lineRichMenuId?: string | null | undefined;
|
|
141
143
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
144
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
142
145
|
}>;
|
|
143
146
|
brandName: z.ZodString;
|
|
144
147
|
platformId: z.ZodString;
|
|
@@ -399,6 +402,7 @@ export declare const channelContract: {
|
|
|
399
402
|
} | undefined;
|
|
400
403
|
lineRichMenuId?: string | null | undefined;
|
|
401
404
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
405
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
402
406
|
};
|
|
403
407
|
status: boolean;
|
|
404
408
|
createdAt: Date;
|
|
@@ -490,6 +494,7 @@ export declare const channelContract: {
|
|
|
490
494
|
} | undefined;
|
|
491
495
|
lineRichMenuId?: string | null | undefined;
|
|
492
496
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
497
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
493
498
|
};
|
|
494
499
|
status: boolean;
|
|
495
500
|
createdAt: Date;
|
|
@@ -583,6 +588,7 @@ export declare const channelContract: {
|
|
|
583
588
|
} | undefined;
|
|
584
589
|
lineRichMenuId?: string | null | undefined;
|
|
585
590
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
591
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
586
592
|
};
|
|
587
593
|
status: boolean;
|
|
588
594
|
createdAt: Date;
|
|
@@ -677,6 +683,7 @@ export declare const channelContract: {
|
|
|
677
683
|
} | undefined;
|
|
678
684
|
lineRichMenuId?: string | null | undefined;
|
|
679
685
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
686
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
680
687
|
};
|
|
681
688
|
status: boolean;
|
|
682
689
|
createdAt: Date;
|
|
@@ -833,6 +840,7 @@ export declare const channelContract: {
|
|
|
833
840
|
}>>;
|
|
834
841
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
835
842
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
843
|
+
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
836
844
|
}, "strip", z.ZodTypeAny, {
|
|
837
845
|
id: string;
|
|
838
846
|
name: string;
|
|
@@ -859,6 +867,7 @@ export declare const channelContract: {
|
|
|
859
867
|
} | undefined;
|
|
860
868
|
lineRichMenuId?: string | null | undefined;
|
|
861
869
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
870
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
862
871
|
}, {
|
|
863
872
|
id: string;
|
|
864
873
|
name: string;
|
|
@@ -885,6 +894,7 @@ export declare const channelContract: {
|
|
|
885
894
|
} | undefined;
|
|
886
895
|
lineRichMenuId?: string | null | undefined;
|
|
887
896
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
897
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
888
898
|
}>;
|
|
889
899
|
status: z.ZodUnion<[z.ZodLiteral<true>, z.ZodLiteral<false>]>;
|
|
890
900
|
actor: z.ZodOptional<z.ZodObject<{
|
|
@@ -946,6 +956,7 @@ export declare const channelContract: {
|
|
|
946
956
|
} | undefined;
|
|
947
957
|
lineRichMenuId?: string | null | undefined;
|
|
948
958
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
959
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
949
960
|
};
|
|
950
961
|
status: boolean;
|
|
951
962
|
createdAt: string;
|
|
@@ -994,6 +1005,7 @@ export declare const channelContract: {
|
|
|
994
1005
|
} | undefined;
|
|
995
1006
|
lineRichMenuId?: string | null | undefined;
|
|
996
1007
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
1008
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
997
1009
|
};
|
|
998
1010
|
status: boolean;
|
|
999
1011
|
createdAt: string;
|
|
@@ -1044,6 +1056,7 @@ export declare const channelContract: {
|
|
|
1044
1056
|
} | undefined;
|
|
1045
1057
|
lineRichMenuId?: string | null | undefined;
|
|
1046
1058
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
1059
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
1047
1060
|
};
|
|
1048
1061
|
status: boolean;
|
|
1049
1062
|
createdAt: string;
|
|
@@ -1095,6 +1108,7 @@ export declare const channelContract: {
|
|
|
1095
1108
|
} | undefined;
|
|
1096
1109
|
lineRichMenuId?: string | null | undefined;
|
|
1097
1110
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
1111
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
1098
1112
|
};
|
|
1099
1113
|
status: boolean;
|
|
1100
1114
|
createdAt: string;
|
|
@@ -1222,6 +1236,7 @@ export declare const channelContract: {
|
|
|
1222
1236
|
}>>;
|
|
1223
1237
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1224
1238
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
1239
|
+
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
1225
1240
|
}, "strip", z.ZodTypeAny, {
|
|
1226
1241
|
id: string;
|
|
1227
1242
|
name: string;
|
|
@@ -1248,6 +1263,7 @@ export declare const channelContract: {
|
|
|
1248
1263
|
} | undefined;
|
|
1249
1264
|
lineRichMenuId?: string | null | undefined;
|
|
1250
1265
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
1266
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
1251
1267
|
}, {
|
|
1252
1268
|
id: string;
|
|
1253
1269
|
name: string;
|
|
@@ -1274,6 +1290,7 @@ export declare const channelContract: {
|
|
|
1274
1290
|
} | undefined;
|
|
1275
1291
|
lineRichMenuId?: string | null | undefined;
|
|
1276
1292
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
1293
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
1277
1294
|
}>;
|
|
1278
1295
|
brandName: z.ZodString;
|
|
1279
1296
|
platformId: z.ZodString;
|
|
@@ -1534,6 +1551,7 @@ export declare const channelContract: {
|
|
|
1534
1551
|
} | undefined;
|
|
1535
1552
|
lineRichMenuId?: string | null | undefined;
|
|
1536
1553
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
1554
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
1537
1555
|
};
|
|
1538
1556
|
status: boolean;
|
|
1539
1557
|
createdAt: Date;
|
|
@@ -1625,6 +1643,7 @@ export declare const channelContract: {
|
|
|
1625
1643
|
} | undefined;
|
|
1626
1644
|
lineRichMenuId?: string | null | undefined;
|
|
1627
1645
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
1646
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
1628
1647
|
};
|
|
1629
1648
|
status: boolean;
|
|
1630
1649
|
createdAt: Date;
|
|
@@ -1718,6 +1737,7 @@ export declare const channelContract: {
|
|
|
1718
1737
|
} | undefined;
|
|
1719
1738
|
lineRichMenuId?: string | null | undefined;
|
|
1720
1739
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
1740
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
1721
1741
|
};
|
|
1722
1742
|
status: boolean;
|
|
1723
1743
|
createdAt: Date;
|
|
@@ -1812,6 +1832,7 @@ export declare const channelContract: {
|
|
|
1812
1832
|
} | undefined;
|
|
1813
1833
|
lineRichMenuId?: string | null | undefined;
|
|
1814
1834
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
1835
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
1815
1836
|
};
|
|
1816
1837
|
status: boolean;
|
|
1817
1838
|
createdAt: Date;
|
|
@@ -1988,6 +2009,7 @@ export declare const channelContract: {
|
|
|
1988
2009
|
}>>;
|
|
1989
2010
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1990
2011
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
2012
|
+
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
1991
2013
|
}, "strip", z.ZodTypeAny, {
|
|
1992
2014
|
id: string;
|
|
1993
2015
|
name: string;
|
|
@@ -2014,6 +2036,7 @@ export declare const channelContract: {
|
|
|
2014
2036
|
} | undefined;
|
|
2015
2037
|
lineRichMenuId?: string | null | undefined;
|
|
2016
2038
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
2039
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
2017
2040
|
}, {
|
|
2018
2041
|
id: string;
|
|
2019
2042
|
name: string;
|
|
@@ -2040,6 +2063,7 @@ export declare const channelContract: {
|
|
|
2040
2063
|
} | undefined;
|
|
2041
2064
|
lineRichMenuId?: string | null | undefined;
|
|
2042
2065
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
2066
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
2043
2067
|
}>;
|
|
2044
2068
|
brandName: z.ZodString;
|
|
2045
2069
|
platformId: z.ZodString;
|
|
@@ -2300,6 +2324,7 @@ export declare const channelContract: {
|
|
|
2300
2324
|
} | undefined;
|
|
2301
2325
|
lineRichMenuId?: string | null | undefined;
|
|
2302
2326
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
2327
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
2303
2328
|
};
|
|
2304
2329
|
status: boolean;
|
|
2305
2330
|
createdAt: Date;
|
|
@@ -2391,6 +2416,7 @@ export declare const channelContract: {
|
|
|
2391
2416
|
} | undefined;
|
|
2392
2417
|
lineRichMenuId?: string | null | undefined;
|
|
2393
2418
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
2419
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
2394
2420
|
};
|
|
2395
2421
|
status: boolean;
|
|
2396
2422
|
createdAt: Date;
|
|
@@ -2484,6 +2510,7 @@ export declare const channelContract: {
|
|
|
2484
2510
|
} | undefined;
|
|
2485
2511
|
lineRichMenuId?: string | null | undefined;
|
|
2486
2512
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
2513
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
2487
2514
|
};
|
|
2488
2515
|
status: boolean;
|
|
2489
2516
|
createdAt: Date;
|
|
@@ -2578,6 +2605,7 @@ export declare const channelContract: {
|
|
|
2578
2605
|
} | undefined;
|
|
2579
2606
|
lineRichMenuId?: string | null | undefined;
|
|
2580
2607
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
2608
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
2581
2609
|
};
|
|
2582
2610
|
status: boolean;
|
|
2583
2611
|
createdAt: Date;
|
|
@@ -2748,6 +2776,7 @@ export declare const channelContract: {
|
|
|
2748
2776
|
}>>;
|
|
2749
2777
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2750
2778
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
2779
|
+
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
2751
2780
|
}, "strip", z.ZodTypeAny, {
|
|
2752
2781
|
id: string;
|
|
2753
2782
|
name: string;
|
|
@@ -2774,6 +2803,7 @@ export declare const channelContract: {
|
|
|
2774
2803
|
} | undefined;
|
|
2775
2804
|
lineRichMenuId?: string | null | undefined;
|
|
2776
2805
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
2806
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
2777
2807
|
}, {
|
|
2778
2808
|
id: string;
|
|
2779
2809
|
name: string;
|
|
@@ -2800,6 +2830,7 @@ export declare const channelContract: {
|
|
|
2800
2830
|
} | undefined;
|
|
2801
2831
|
lineRichMenuId?: string | null | undefined;
|
|
2802
2832
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
2833
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
2803
2834
|
}>;
|
|
2804
2835
|
brandName: z.ZodString;
|
|
2805
2836
|
platformId: z.ZodString;
|
|
@@ -3060,6 +3091,7 @@ export declare const channelContract: {
|
|
|
3060
3091
|
} | undefined;
|
|
3061
3092
|
lineRichMenuId?: string | null | undefined;
|
|
3062
3093
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
3094
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
3063
3095
|
};
|
|
3064
3096
|
status: boolean;
|
|
3065
3097
|
createdAt: Date;
|
|
@@ -3151,6 +3183,7 @@ export declare const channelContract: {
|
|
|
3151
3183
|
} | undefined;
|
|
3152
3184
|
lineRichMenuId?: string | null | undefined;
|
|
3153
3185
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
3186
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
3154
3187
|
};
|
|
3155
3188
|
status: boolean;
|
|
3156
3189
|
createdAt: Date;
|
|
@@ -3244,6 +3277,7 @@ export declare const channelContract: {
|
|
|
3244
3277
|
} | undefined;
|
|
3245
3278
|
lineRichMenuId?: string | null | undefined;
|
|
3246
3279
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
3280
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
3247
3281
|
};
|
|
3248
3282
|
status: boolean;
|
|
3249
3283
|
createdAt: Date;
|
|
@@ -3338,6 +3372,7 @@ export declare const channelContract: {
|
|
|
3338
3372
|
} | undefined;
|
|
3339
3373
|
lineRichMenuId?: string | null | undefined;
|
|
3340
3374
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
3375
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
3341
3376
|
};
|
|
3342
3377
|
status: boolean;
|
|
3343
3378
|
createdAt: Date;
|
|
@@ -3491,6 +3526,7 @@ export declare const channelContract: {
|
|
|
3491
3526
|
}>>;
|
|
3492
3527
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3493
3528
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
3529
|
+
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
3494
3530
|
}, "strip", z.ZodTypeAny, {
|
|
3495
3531
|
id: string;
|
|
3496
3532
|
name: string;
|
|
@@ -3517,6 +3553,7 @@ export declare const channelContract: {
|
|
|
3517
3553
|
} | undefined;
|
|
3518
3554
|
lineRichMenuId?: string | null | undefined;
|
|
3519
3555
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
3556
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
3520
3557
|
}, {
|
|
3521
3558
|
id: string;
|
|
3522
3559
|
name: string;
|
|
@@ -3543,6 +3580,7 @@ export declare const channelContract: {
|
|
|
3543
3580
|
} | undefined;
|
|
3544
3581
|
lineRichMenuId?: string | null | undefined;
|
|
3545
3582
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
3583
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
3546
3584
|
}>;
|
|
3547
3585
|
platformId: z.ZodString;
|
|
3548
3586
|
connectedUserId: z.ZodString;
|
|
@@ -3576,6 +3614,7 @@ export declare const channelContract: {
|
|
|
3576
3614
|
} | undefined;
|
|
3577
3615
|
lineRichMenuId?: string | null | undefined;
|
|
3578
3616
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
3617
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
3579
3618
|
};
|
|
3580
3619
|
platformId: string;
|
|
3581
3620
|
connectedUserId: string;
|
|
@@ -3609,6 +3648,7 @@ export declare const channelContract: {
|
|
|
3609
3648
|
} | undefined;
|
|
3610
3649
|
lineRichMenuId?: string | null | undefined;
|
|
3611
3650
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
3651
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
3612
3652
|
};
|
|
3613
3653
|
platformId: string;
|
|
3614
3654
|
connectedUserId: string;
|
|
@@ -3682,6 +3722,7 @@ export declare const channelContract: {
|
|
|
3682
3722
|
}>>;
|
|
3683
3723
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3684
3724
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
3725
|
+
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
3685
3726
|
}, "strip", z.ZodTypeAny, {
|
|
3686
3727
|
id: string;
|
|
3687
3728
|
name: string;
|
|
@@ -3708,6 +3749,7 @@ export declare const channelContract: {
|
|
|
3708
3749
|
} | undefined;
|
|
3709
3750
|
lineRichMenuId?: string | null | undefined;
|
|
3710
3751
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
3752
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
3711
3753
|
}, {
|
|
3712
3754
|
id: string;
|
|
3713
3755
|
name: string;
|
|
@@ -3734,6 +3776,7 @@ export declare const channelContract: {
|
|
|
3734
3776
|
} | undefined;
|
|
3735
3777
|
lineRichMenuId?: string | null | undefined;
|
|
3736
3778
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
3779
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
3737
3780
|
}>;
|
|
3738
3781
|
brandName: z.ZodString;
|
|
3739
3782
|
platformId: z.ZodString;
|
|
@@ -3994,6 +4037,7 @@ export declare const channelContract: {
|
|
|
3994
4037
|
} | undefined;
|
|
3995
4038
|
lineRichMenuId?: string | null | undefined;
|
|
3996
4039
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
4040
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
3997
4041
|
};
|
|
3998
4042
|
status: boolean;
|
|
3999
4043
|
createdAt: Date;
|
|
@@ -4085,6 +4129,7 @@ export declare const channelContract: {
|
|
|
4085
4129
|
} | undefined;
|
|
4086
4130
|
lineRichMenuId?: string | null | undefined;
|
|
4087
4131
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
4132
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
4088
4133
|
};
|
|
4089
4134
|
status: boolean;
|
|
4090
4135
|
createdAt: Date;
|
|
@@ -4178,6 +4223,7 @@ export declare const channelContract: {
|
|
|
4178
4223
|
} | undefined;
|
|
4179
4224
|
lineRichMenuId?: string | null | undefined;
|
|
4180
4225
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
4226
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
4181
4227
|
};
|
|
4182
4228
|
status: boolean;
|
|
4183
4229
|
createdAt: Date;
|
|
@@ -4272,6 +4318,7 @@ export declare const channelContract: {
|
|
|
4272
4318
|
} | undefined;
|
|
4273
4319
|
lineRichMenuId?: string | null | undefined;
|
|
4274
4320
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
4321
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
4275
4322
|
};
|
|
4276
4323
|
status: boolean;
|
|
4277
4324
|
createdAt: Date;
|
|
@@ -5317,6 +5364,7 @@ export declare const channelContract: {
|
|
|
5317
5364
|
}>>;
|
|
5318
5365
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5319
5366
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
5367
|
+
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
5320
5368
|
}, "strip", z.ZodTypeAny, {
|
|
5321
5369
|
id: string;
|
|
5322
5370
|
name: string;
|
|
@@ -5343,6 +5391,7 @@ export declare const channelContract: {
|
|
|
5343
5391
|
} | undefined;
|
|
5344
5392
|
lineRichMenuId?: string | null | undefined;
|
|
5345
5393
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
5394
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
5346
5395
|
}, {
|
|
5347
5396
|
id: string;
|
|
5348
5397
|
name: string;
|
|
@@ -5369,6 +5418,7 @@ export declare const channelContract: {
|
|
|
5369
5418
|
} | undefined;
|
|
5370
5419
|
lineRichMenuId?: string | null | undefined;
|
|
5371
5420
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
5421
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
5372
5422
|
}>;
|
|
5373
5423
|
platformId: z.ZodString;
|
|
5374
5424
|
connectedUserId: z.ZodString;
|
|
@@ -5402,6 +5452,7 @@ export declare const channelContract: {
|
|
|
5402
5452
|
} | undefined;
|
|
5403
5453
|
lineRichMenuId?: string | null | undefined;
|
|
5404
5454
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
5455
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
5405
5456
|
};
|
|
5406
5457
|
platformId: string;
|
|
5407
5458
|
connectedUserId: string;
|
|
@@ -5435,6 +5486,7 @@ export declare const channelContract: {
|
|
|
5435
5486
|
} | undefined;
|
|
5436
5487
|
lineRichMenuId?: string | null | undefined;
|
|
5437
5488
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
5489
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
5438
5490
|
};
|
|
5439
5491
|
platformId: string;
|
|
5440
5492
|
connectedUserId: string;
|
|
@@ -5508,6 +5560,7 @@ export declare const channelContract: {
|
|
|
5508
5560
|
}>>;
|
|
5509
5561
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5510
5562
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
5563
|
+
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
5511
5564
|
}, "strip", z.ZodTypeAny, {
|
|
5512
5565
|
id: string;
|
|
5513
5566
|
name: string;
|
|
@@ -5534,6 +5587,7 @@ export declare const channelContract: {
|
|
|
5534
5587
|
} | undefined;
|
|
5535
5588
|
lineRichMenuId?: string | null | undefined;
|
|
5536
5589
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
5590
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
5537
5591
|
}, {
|
|
5538
5592
|
id: string;
|
|
5539
5593
|
name: string;
|
|
@@ -5560,6 +5614,7 @@ export declare const channelContract: {
|
|
|
5560
5614
|
} | undefined;
|
|
5561
5615
|
lineRichMenuId?: string | null | undefined;
|
|
5562
5616
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
5617
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
5563
5618
|
}>;
|
|
5564
5619
|
brandName: z.ZodString;
|
|
5565
5620
|
platformId: z.ZodString;
|
|
@@ -5820,6 +5875,7 @@ export declare const channelContract: {
|
|
|
5820
5875
|
} | undefined;
|
|
5821
5876
|
lineRichMenuId?: string | null | undefined;
|
|
5822
5877
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
5878
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
5823
5879
|
};
|
|
5824
5880
|
status: boolean;
|
|
5825
5881
|
createdAt: Date;
|
|
@@ -5911,6 +5967,7 @@ export declare const channelContract: {
|
|
|
5911
5967
|
} | undefined;
|
|
5912
5968
|
lineRichMenuId?: string | null | undefined;
|
|
5913
5969
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
5970
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
5914
5971
|
};
|
|
5915
5972
|
status: boolean;
|
|
5916
5973
|
createdAt: Date;
|
|
@@ -6004,6 +6061,7 @@ export declare const channelContract: {
|
|
|
6004
6061
|
} | undefined;
|
|
6005
6062
|
lineRichMenuId?: string | null | undefined;
|
|
6006
6063
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
6064
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
6007
6065
|
};
|
|
6008
6066
|
status: boolean;
|
|
6009
6067
|
createdAt: Date;
|
|
@@ -6098,6 +6156,7 @@ export declare const channelContract: {
|
|
|
6098
6156
|
} | undefined;
|
|
6099
6157
|
lineRichMenuId?: string | null | undefined;
|
|
6100
6158
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
6159
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
6101
6160
|
};
|
|
6102
6161
|
status: boolean;
|
|
6103
6162
|
createdAt: Date;
|
|
@@ -6502,6 +6561,7 @@ export declare const channelContract: {
|
|
|
6502
6561
|
}>>;
|
|
6503
6562
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
6504
6563
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
6564
|
+
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
6505
6565
|
}, "strip", z.ZodTypeAny, {
|
|
6506
6566
|
id: string;
|
|
6507
6567
|
name: string;
|
|
@@ -6528,6 +6588,7 @@ export declare const channelContract: {
|
|
|
6528
6588
|
} | undefined;
|
|
6529
6589
|
lineRichMenuId?: string | null | undefined;
|
|
6530
6590
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
6591
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
6531
6592
|
}, {
|
|
6532
6593
|
id: string;
|
|
6533
6594
|
name: string;
|
|
@@ -6554,6 +6615,7 @@ export declare const channelContract: {
|
|
|
6554
6615
|
} | undefined;
|
|
6555
6616
|
lineRichMenuId?: string | null | undefined;
|
|
6556
6617
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
6618
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
6557
6619
|
}>;
|
|
6558
6620
|
platformId: z.ZodString;
|
|
6559
6621
|
connectedUserId: z.ZodString;
|
|
@@ -6587,6 +6649,7 @@ export declare const channelContract: {
|
|
|
6587
6649
|
} | undefined;
|
|
6588
6650
|
lineRichMenuId?: string | null | undefined;
|
|
6589
6651
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
6652
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
6590
6653
|
};
|
|
6591
6654
|
platformId: string;
|
|
6592
6655
|
connectedUserId: string;
|
|
@@ -6620,6 +6683,7 @@ export declare const channelContract: {
|
|
|
6620
6683
|
} | undefined;
|
|
6621
6684
|
lineRichMenuId?: string | null | undefined;
|
|
6622
6685
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
6686
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
6623
6687
|
};
|
|
6624
6688
|
platformId: string;
|
|
6625
6689
|
connectedUserId: string;
|
|
@@ -6693,6 +6757,7 @@ export declare const channelContract: {
|
|
|
6693
6757
|
}>>;
|
|
6694
6758
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
6695
6759
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
6760
|
+
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
6696
6761
|
}, "strip", z.ZodTypeAny, {
|
|
6697
6762
|
id: string;
|
|
6698
6763
|
name: string;
|
|
@@ -6719,6 +6784,7 @@ export declare const channelContract: {
|
|
|
6719
6784
|
} | undefined;
|
|
6720
6785
|
lineRichMenuId?: string | null | undefined;
|
|
6721
6786
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
6787
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
6722
6788
|
}, {
|
|
6723
6789
|
id: string;
|
|
6724
6790
|
name: string;
|
|
@@ -6745,6 +6811,7 @@ export declare const channelContract: {
|
|
|
6745
6811
|
} | undefined;
|
|
6746
6812
|
lineRichMenuId?: string | null | undefined;
|
|
6747
6813
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
6814
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
6748
6815
|
}>;
|
|
6749
6816
|
brandName: z.ZodString;
|
|
6750
6817
|
platformId: z.ZodString;
|
|
@@ -7005,6 +7072,7 @@ export declare const channelContract: {
|
|
|
7005
7072
|
} | undefined;
|
|
7006
7073
|
lineRichMenuId?: string | null | undefined;
|
|
7007
7074
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
7075
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
7008
7076
|
};
|
|
7009
7077
|
status: boolean;
|
|
7010
7078
|
createdAt: Date;
|
|
@@ -7096,6 +7164,7 @@ export declare const channelContract: {
|
|
|
7096
7164
|
} | undefined;
|
|
7097
7165
|
lineRichMenuId?: string | null | undefined;
|
|
7098
7166
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
7167
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
7099
7168
|
};
|
|
7100
7169
|
status: boolean;
|
|
7101
7170
|
createdAt: Date;
|
|
@@ -7189,6 +7258,7 @@ export declare const channelContract: {
|
|
|
7189
7258
|
} | undefined;
|
|
7190
7259
|
lineRichMenuId?: string | null | undefined;
|
|
7191
7260
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
7261
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
7192
7262
|
};
|
|
7193
7263
|
status: boolean;
|
|
7194
7264
|
createdAt: Date;
|
|
@@ -7283,6 +7353,7 @@ export declare const channelContract: {
|
|
|
7283
7353
|
} | undefined;
|
|
7284
7354
|
lineRichMenuId?: string | null | undefined;
|
|
7285
7355
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
7356
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
7286
7357
|
};
|
|
7287
7358
|
status: boolean;
|
|
7288
7359
|
createdAt: Date;
|
|
@@ -7457,6 +7528,7 @@ export declare const channelContract: {
|
|
|
7457
7528
|
}>>;
|
|
7458
7529
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
7459
7530
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
7531
|
+
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
7460
7532
|
}, "strip", z.ZodTypeAny, {
|
|
7461
7533
|
id: string;
|
|
7462
7534
|
name: string;
|
|
@@ -7483,6 +7555,7 @@ export declare const channelContract: {
|
|
|
7483
7555
|
} | undefined;
|
|
7484
7556
|
lineRichMenuId?: string | null | undefined;
|
|
7485
7557
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
7558
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
7486
7559
|
}, {
|
|
7487
7560
|
id: string;
|
|
7488
7561
|
name: string;
|
|
@@ -7509,6 +7582,7 @@ export declare const channelContract: {
|
|
|
7509
7582
|
} | undefined;
|
|
7510
7583
|
lineRichMenuId?: string | null | undefined;
|
|
7511
7584
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
7585
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
7512
7586
|
}>;
|
|
7513
7587
|
brandName: z.ZodString;
|
|
7514
7588
|
platformId: z.ZodString;
|
|
@@ -7769,6 +7843,7 @@ export declare const channelContract: {
|
|
|
7769
7843
|
} | undefined;
|
|
7770
7844
|
lineRichMenuId?: string | null | undefined;
|
|
7771
7845
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
7846
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
7772
7847
|
};
|
|
7773
7848
|
status: boolean;
|
|
7774
7849
|
createdAt: Date;
|
|
@@ -7860,6 +7935,7 @@ export declare const channelContract: {
|
|
|
7860
7935
|
} | undefined;
|
|
7861
7936
|
lineRichMenuId?: string | null | undefined;
|
|
7862
7937
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
7938
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
7863
7939
|
};
|
|
7864
7940
|
status: boolean;
|
|
7865
7941
|
createdAt: Date;
|
|
@@ -7953,6 +8029,7 @@ export declare const channelContract: {
|
|
|
7953
8029
|
} | undefined;
|
|
7954
8030
|
lineRichMenuId?: string | null | undefined;
|
|
7955
8031
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
8032
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
7956
8033
|
};
|
|
7957
8034
|
status: boolean;
|
|
7958
8035
|
createdAt: Date;
|
|
@@ -8047,6 +8124,7 @@ export declare const channelContract: {
|
|
|
8047
8124
|
} | undefined;
|
|
8048
8125
|
lineRichMenuId?: string | null | undefined;
|
|
8049
8126
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
8127
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
8050
8128
|
};
|
|
8051
8129
|
status: boolean;
|
|
8052
8130
|
createdAt: Date;
|
|
@@ -8231,6 +8309,7 @@ export declare const channelContract: {
|
|
|
8231
8309
|
}>>;
|
|
8232
8310
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
8233
8311
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
8312
|
+
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
8234
8313
|
}, "strip", z.ZodTypeAny, {
|
|
8235
8314
|
id: string;
|
|
8236
8315
|
name: string;
|
|
@@ -8257,6 +8336,7 @@ export declare const channelContract: {
|
|
|
8257
8336
|
} | undefined;
|
|
8258
8337
|
lineRichMenuId?: string | null | undefined;
|
|
8259
8338
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
8339
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
8260
8340
|
}, {
|
|
8261
8341
|
id: string;
|
|
8262
8342
|
name: string;
|
|
@@ -8283,6 +8363,7 @@ export declare const channelContract: {
|
|
|
8283
8363
|
} | undefined;
|
|
8284
8364
|
lineRichMenuId?: string | null | undefined;
|
|
8285
8365
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
8366
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
8286
8367
|
}>;
|
|
8287
8368
|
brandName: z.ZodString;
|
|
8288
8369
|
platformId: z.ZodString;
|
|
@@ -8543,6 +8624,7 @@ export declare const channelContract: {
|
|
|
8543
8624
|
} | undefined;
|
|
8544
8625
|
lineRichMenuId?: string | null | undefined;
|
|
8545
8626
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
8627
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
8546
8628
|
};
|
|
8547
8629
|
status: boolean;
|
|
8548
8630
|
createdAt: Date;
|
|
@@ -8634,6 +8716,7 @@ export declare const channelContract: {
|
|
|
8634
8716
|
} | undefined;
|
|
8635
8717
|
lineRichMenuId?: string | null | undefined;
|
|
8636
8718
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
8719
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
8637
8720
|
};
|
|
8638
8721
|
status: boolean;
|
|
8639
8722
|
createdAt: Date;
|
|
@@ -8727,6 +8810,7 @@ export declare const channelContract: {
|
|
|
8727
8810
|
} | undefined;
|
|
8728
8811
|
lineRichMenuId?: string | null | undefined;
|
|
8729
8812
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
8813
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
8730
8814
|
};
|
|
8731
8815
|
status: boolean;
|
|
8732
8816
|
createdAt: Date;
|
|
@@ -8821,6 +8905,7 @@ export declare const channelContract: {
|
|
|
8821
8905
|
} | undefined;
|
|
8822
8906
|
lineRichMenuId?: string | null | undefined;
|
|
8823
8907
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
8908
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
8824
8909
|
};
|
|
8825
8910
|
status: boolean;
|
|
8826
8911
|
createdAt: Date;
|
|
@@ -9055,6 +9140,7 @@ export declare const channelContract: {
|
|
|
9055
9140
|
}>>;
|
|
9056
9141
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
9057
9142
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
9143
|
+
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
9058
9144
|
}, "strip", z.ZodTypeAny, {
|
|
9059
9145
|
id: string;
|
|
9060
9146
|
name: string;
|
|
@@ -9081,6 +9167,7 @@ export declare const channelContract: {
|
|
|
9081
9167
|
} | undefined;
|
|
9082
9168
|
lineRichMenuId?: string | null | undefined;
|
|
9083
9169
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
9170
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
9084
9171
|
}, {
|
|
9085
9172
|
id: string;
|
|
9086
9173
|
name: string;
|
|
@@ -9107,6 +9194,7 @@ export declare const channelContract: {
|
|
|
9107
9194
|
} | undefined;
|
|
9108
9195
|
lineRichMenuId?: string | null | undefined;
|
|
9109
9196
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
9197
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
9110
9198
|
}>;
|
|
9111
9199
|
brandName: z.ZodString;
|
|
9112
9200
|
platformId: z.ZodString;
|
|
@@ -9367,6 +9455,7 @@ export declare const channelContract: {
|
|
|
9367
9455
|
} | undefined;
|
|
9368
9456
|
lineRichMenuId?: string | null | undefined;
|
|
9369
9457
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
9458
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
9370
9459
|
};
|
|
9371
9460
|
status: boolean;
|
|
9372
9461
|
createdAt: Date;
|
|
@@ -9458,6 +9547,7 @@ export declare const channelContract: {
|
|
|
9458
9547
|
} | undefined;
|
|
9459
9548
|
lineRichMenuId?: string | null | undefined;
|
|
9460
9549
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
9550
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
9461
9551
|
};
|
|
9462
9552
|
status: boolean;
|
|
9463
9553
|
createdAt: Date;
|
|
@@ -9551,6 +9641,7 @@ export declare const channelContract: {
|
|
|
9551
9641
|
} | undefined;
|
|
9552
9642
|
lineRichMenuId?: string | null | undefined;
|
|
9553
9643
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
9644
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
9554
9645
|
};
|
|
9555
9646
|
status: boolean;
|
|
9556
9647
|
createdAt: Date;
|
|
@@ -9645,6 +9736,7 @@ export declare const channelContract: {
|
|
|
9645
9736
|
} | undefined;
|
|
9646
9737
|
lineRichMenuId?: string | null | undefined;
|
|
9647
9738
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
9739
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
9648
9740
|
};
|
|
9649
9741
|
status: boolean;
|
|
9650
9742
|
createdAt: Date;
|
|
@@ -9810,6 +9902,7 @@ export declare const channelContract: {
|
|
|
9810
9902
|
}>>;
|
|
9811
9903
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
9812
9904
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
9905
|
+
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
9813
9906
|
}, "strip", z.ZodTypeAny, {
|
|
9814
9907
|
id: string;
|
|
9815
9908
|
name: string;
|
|
@@ -9836,6 +9929,7 @@ export declare const channelContract: {
|
|
|
9836
9929
|
} | undefined;
|
|
9837
9930
|
lineRichMenuId?: string | null | undefined;
|
|
9838
9931
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
9932
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
9839
9933
|
}, {
|
|
9840
9934
|
id: string;
|
|
9841
9935
|
name: string;
|
|
@@ -9862,6 +9956,7 @@ export declare const channelContract: {
|
|
|
9862
9956
|
} | undefined;
|
|
9863
9957
|
lineRichMenuId?: string | null | undefined;
|
|
9864
9958
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
9959
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
9865
9960
|
}>;
|
|
9866
9961
|
platformId: z.ZodString;
|
|
9867
9962
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -9893,6 +9988,7 @@ export declare const channelContract: {
|
|
|
9893
9988
|
} | undefined;
|
|
9894
9989
|
lineRichMenuId?: string | null | undefined;
|
|
9895
9990
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
9991
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
9896
9992
|
};
|
|
9897
9993
|
platformId: string;
|
|
9898
9994
|
}, {
|
|
@@ -9924,6 +10020,7 @@ export declare const channelContract: {
|
|
|
9924
10020
|
} | undefined;
|
|
9925
10021
|
lineRichMenuId?: string | null | undefined;
|
|
9926
10022
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
10023
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
9927
10024
|
};
|
|
9928
10025
|
platformId: string;
|
|
9929
10026
|
}>;
|
|
@@ -9995,6 +10092,7 @@ export declare const channelContract: {
|
|
|
9995
10092
|
}>>;
|
|
9996
10093
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
9997
10094
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
10095
|
+
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
9998
10096
|
}, "strip", z.ZodTypeAny, {
|
|
9999
10097
|
id: string;
|
|
10000
10098
|
name: string;
|
|
@@ -10021,6 +10119,7 @@ export declare const channelContract: {
|
|
|
10021
10119
|
} | undefined;
|
|
10022
10120
|
lineRichMenuId?: string | null | undefined;
|
|
10023
10121
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
10122
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
10024
10123
|
}, {
|
|
10025
10124
|
id: string;
|
|
10026
10125
|
name: string;
|
|
@@ -10047,6 +10146,7 @@ export declare const channelContract: {
|
|
|
10047
10146
|
} | undefined;
|
|
10048
10147
|
lineRichMenuId?: string | null | undefined;
|
|
10049
10148
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
10149
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
10050
10150
|
}>;
|
|
10051
10151
|
brandName: z.ZodString;
|
|
10052
10152
|
platformId: z.ZodString;
|
|
@@ -10307,6 +10407,7 @@ export declare const channelContract: {
|
|
|
10307
10407
|
} | undefined;
|
|
10308
10408
|
lineRichMenuId?: string | null | undefined;
|
|
10309
10409
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
10410
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
10310
10411
|
};
|
|
10311
10412
|
status: boolean;
|
|
10312
10413
|
createdAt: Date;
|
|
@@ -10398,6 +10499,7 @@ export declare const channelContract: {
|
|
|
10398
10499
|
} | undefined;
|
|
10399
10500
|
lineRichMenuId?: string | null | undefined;
|
|
10400
10501
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
10502
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
10401
10503
|
};
|
|
10402
10504
|
status: boolean;
|
|
10403
10505
|
createdAt: Date;
|
|
@@ -10491,6 +10593,7 @@ export declare const channelContract: {
|
|
|
10491
10593
|
} | undefined;
|
|
10492
10594
|
lineRichMenuId?: string | null | undefined;
|
|
10493
10595
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
10596
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
10494
10597
|
};
|
|
10495
10598
|
status: boolean;
|
|
10496
10599
|
createdAt: Date;
|
|
@@ -10585,6 +10688,7 @@ export declare const channelContract: {
|
|
|
10585
10688
|
} | undefined;
|
|
10586
10689
|
lineRichMenuId?: string | null | undefined;
|
|
10587
10690
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
10691
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
10588
10692
|
};
|
|
10589
10693
|
status: boolean;
|
|
10590
10694
|
createdAt: Date;
|
|
@@ -11040,6 +11144,7 @@ export declare const channelFacebookFeedContract: {
|
|
|
11040
11144
|
}>>;
|
|
11041
11145
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
11042
11146
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
11147
|
+
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
11043
11148
|
}, "strip", z.ZodTypeAny, {
|
|
11044
11149
|
id: string;
|
|
11045
11150
|
name: string;
|
|
@@ -11066,6 +11171,7 @@ export declare const channelFacebookFeedContract: {
|
|
|
11066
11171
|
} | undefined;
|
|
11067
11172
|
lineRichMenuId?: string | null | undefined;
|
|
11068
11173
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
11174
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
11069
11175
|
}, {
|
|
11070
11176
|
id: string;
|
|
11071
11177
|
name: string;
|
|
@@ -11092,6 +11198,7 @@ export declare const channelFacebookFeedContract: {
|
|
|
11092
11198
|
} | undefined;
|
|
11093
11199
|
lineRichMenuId?: string | null | undefined;
|
|
11094
11200
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
11201
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
11095
11202
|
}>;
|
|
11096
11203
|
platformId: z.ZodString;
|
|
11097
11204
|
connectedUserId: z.ZodString;
|
|
@@ -11125,6 +11232,7 @@ export declare const channelFacebookFeedContract: {
|
|
|
11125
11232
|
} | undefined;
|
|
11126
11233
|
lineRichMenuId?: string | null | undefined;
|
|
11127
11234
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
11235
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
11128
11236
|
};
|
|
11129
11237
|
platformId: string;
|
|
11130
11238
|
connectedUserId: string;
|
|
@@ -11158,6 +11266,7 @@ export declare const channelFacebookFeedContract: {
|
|
|
11158
11266
|
} | undefined;
|
|
11159
11267
|
lineRichMenuId?: string | null | undefined;
|
|
11160
11268
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
11269
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
11161
11270
|
};
|
|
11162
11271
|
platformId: string;
|
|
11163
11272
|
connectedUserId: string;
|
|
@@ -11231,6 +11340,7 @@ export declare const channelFacebookFeedContract: {
|
|
|
11231
11340
|
}>>;
|
|
11232
11341
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
11233
11342
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
11343
|
+
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
11234
11344
|
}, "strip", z.ZodTypeAny, {
|
|
11235
11345
|
id: string;
|
|
11236
11346
|
name: string;
|
|
@@ -11257,6 +11367,7 @@ export declare const channelFacebookFeedContract: {
|
|
|
11257
11367
|
} | undefined;
|
|
11258
11368
|
lineRichMenuId?: string | null | undefined;
|
|
11259
11369
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
11370
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
11260
11371
|
}, {
|
|
11261
11372
|
id: string;
|
|
11262
11373
|
name: string;
|
|
@@ -11283,6 +11394,7 @@ export declare const channelFacebookFeedContract: {
|
|
|
11283
11394
|
} | undefined;
|
|
11284
11395
|
lineRichMenuId?: string | null | undefined;
|
|
11285
11396
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
11397
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
11286
11398
|
}>;
|
|
11287
11399
|
brandName: z.ZodString;
|
|
11288
11400
|
platformId: z.ZodString;
|
|
@@ -11543,6 +11655,7 @@ export declare const channelFacebookFeedContract: {
|
|
|
11543
11655
|
} | undefined;
|
|
11544
11656
|
lineRichMenuId?: string | null | undefined;
|
|
11545
11657
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
11658
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
11546
11659
|
};
|
|
11547
11660
|
status: boolean;
|
|
11548
11661
|
createdAt: Date;
|
|
@@ -11634,6 +11747,7 @@ export declare const channelFacebookFeedContract: {
|
|
|
11634
11747
|
} | undefined;
|
|
11635
11748
|
lineRichMenuId?: string | null | undefined;
|
|
11636
11749
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
11750
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
11637
11751
|
};
|
|
11638
11752
|
status: boolean;
|
|
11639
11753
|
createdAt: Date;
|
|
@@ -11727,6 +11841,7 @@ export declare const channelFacebookFeedContract: {
|
|
|
11727
11841
|
} | undefined;
|
|
11728
11842
|
lineRichMenuId?: string | null | undefined;
|
|
11729
11843
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
11844
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
11730
11845
|
};
|
|
11731
11846
|
status: boolean;
|
|
11732
11847
|
createdAt: Date;
|
|
@@ -11821,6 +11936,7 @@ export declare const channelFacebookFeedContract: {
|
|
|
11821
11936
|
} | undefined;
|
|
11822
11937
|
lineRichMenuId?: string | null | undefined;
|
|
11823
11938
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
11939
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
11824
11940
|
};
|
|
11825
11941
|
status: boolean;
|
|
11826
11942
|
createdAt: Date;
|
|
@@ -11975,6 +12091,7 @@ export declare const channelBotContract: {
|
|
|
11975
12091
|
}>>;
|
|
11976
12092
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
11977
12093
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
12094
|
+
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
11978
12095
|
}, "strip", z.ZodTypeAny, {
|
|
11979
12096
|
id: string;
|
|
11980
12097
|
name: string;
|
|
@@ -12001,6 +12118,7 @@ export declare const channelBotContract: {
|
|
|
12001
12118
|
} | undefined;
|
|
12002
12119
|
lineRichMenuId?: string | null | undefined;
|
|
12003
12120
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
12121
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
12004
12122
|
}, {
|
|
12005
12123
|
id: string;
|
|
12006
12124
|
name: string;
|
|
@@ -12027,6 +12145,7 @@ export declare const channelBotContract: {
|
|
|
12027
12145
|
} | undefined;
|
|
12028
12146
|
lineRichMenuId?: string | null | undefined;
|
|
12029
12147
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
12148
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
12030
12149
|
}>;
|
|
12031
12150
|
brandName: z.ZodString;
|
|
12032
12151
|
platformId: z.ZodString;
|
|
@@ -12287,6 +12406,7 @@ export declare const channelBotContract: {
|
|
|
12287
12406
|
} | undefined;
|
|
12288
12407
|
lineRichMenuId?: string | null | undefined;
|
|
12289
12408
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
12409
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
12290
12410
|
};
|
|
12291
12411
|
status: boolean;
|
|
12292
12412
|
createdAt: Date;
|
|
@@ -12378,6 +12498,7 @@ export declare const channelBotContract: {
|
|
|
12378
12498
|
} | undefined;
|
|
12379
12499
|
lineRichMenuId?: string | null | undefined;
|
|
12380
12500
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
12501
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
12381
12502
|
};
|
|
12382
12503
|
status: boolean;
|
|
12383
12504
|
createdAt: Date;
|
|
@@ -12471,6 +12592,7 @@ export declare const channelBotContract: {
|
|
|
12471
12592
|
} | undefined;
|
|
12472
12593
|
lineRichMenuId?: string | null | undefined;
|
|
12473
12594
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
12595
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
12474
12596
|
};
|
|
12475
12597
|
status: boolean;
|
|
12476
12598
|
createdAt: Date;
|
|
@@ -12565,6 +12687,7 @@ export declare const channelBotContract: {
|
|
|
12565
12687
|
} | undefined;
|
|
12566
12688
|
lineRichMenuId?: string | null | undefined;
|
|
12567
12689
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
12690
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
12568
12691
|
};
|
|
12569
12692
|
status: boolean;
|
|
12570
12693
|
createdAt: Date;
|
|
@@ -12721,6 +12844,7 @@ export declare const channelBotContract: {
|
|
|
12721
12844
|
}>>;
|
|
12722
12845
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
12723
12846
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
12847
|
+
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
12724
12848
|
}, "strip", z.ZodTypeAny, {
|
|
12725
12849
|
id: string;
|
|
12726
12850
|
name: string;
|
|
@@ -12747,6 +12871,7 @@ export declare const channelBotContract: {
|
|
|
12747
12871
|
} | undefined;
|
|
12748
12872
|
lineRichMenuId?: string | null | undefined;
|
|
12749
12873
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
12874
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
12750
12875
|
}, {
|
|
12751
12876
|
id: string;
|
|
12752
12877
|
name: string;
|
|
@@ -12773,6 +12898,7 @@ export declare const channelBotContract: {
|
|
|
12773
12898
|
} | undefined;
|
|
12774
12899
|
lineRichMenuId?: string | null | undefined;
|
|
12775
12900
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
12901
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
12776
12902
|
}>;
|
|
12777
12903
|
brandName: z.ZodString;
|
|
12778
12904
|
platformId: z.ZodString;
|
|
@@ -13033,6 +13159,7 @@ export declare const channelBotContract: {
|
|
|
13033
13159
|
} | undefined;
|
|
13034
13160
|
lineRichMenuId?: string | null | undefined;
|
|
13035
13161
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
13162
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
13036
13163
|
};
|
|
13037
13164
|
status: boolean;
|
|
13038
13165
|
createdAt: Date;
|
|
@@ -13124,6 +13251,7 @@ export declare const channelBotContract: {
|
|
|
13124
13251
|
} | undefined;
|
|
13125
13252
|
lineRichMenuId?: string | null | undefined;
|
|
13126
13253
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
13254
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
13127
13255
|
};
|
|
13128
13256
|
status: boolean;
|
|
13129
13257
|
createdAt: Date;
|
|
@@ -13217,6 +13345,7 @@ export declare const channelBotContract: {
|
|
|
13217
13345
|
} | undefined;
|
|
13218
13346
|
lineRichMenuId?: string | null | undefined;
|
|
13219
13347
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
13348
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
13220
13349
|
};
|
|
13221
13350
|
status: boolean;
|
|
13222
13351
|
createdAt: Date;
|
|
@@ -13311,6 +13440,7 @@ export declare const channelBotContract: {
|
|
|
13311
13440
|
} | undefined;
|
|
13312
13441
|
lineRichMenuId?: string | null | undefined;
|
|
13313
13442
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
13443
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
13314
13444
|
};
|
|
13315
13445
|
status: boolean;
|
|
13316
13446
|
createdAt: Date;
|
|
@@ -13505,6 +13635,7 @@ export declare const channelSMSContract: {
|
|
|
13505
13635
|
}>>;
|
|
13506
13636
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
13507
13637
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
13638
|
+
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
|
13508
13639
|
}, "strip", z.ZodTypeAny, {
|
|
13509
13640
|
id: string;
|
|
13510
13641
|
name: string;
|
|
@@ -13531,6 +13662,7 @@ export declare const channelSMSContract: {
|
|
|
13531
13662
|
} | undefined;
|
|
13532
13663
|
lineRichMenuId?: string | null | undefined;
|
|
13533
13664
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
13665
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
13534
13666
|
}, {
|
|
13535
13667
|
id: string;
|
|
13536
13668
|
name: string;
|
|
@@ -13557,6 +13689,7 @@ export declare const channelSMSContract: {
|
|
|
13557
13689
|
} | undefined;
|
|
13558
13690
|
lineRichMenuId?: string | null | undefined;
|
|
13559
13691
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
13692
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
13560
13693
|
}>;
|
|
13561
13694
|
brandName: z.ZodString;
|
|
13562
13695
|
platformId: z.ZodString;
|
|
@@ -13817,6 +13950,7 @@ export declare const channelSMSContract: {
|
|
|
13817
13950
|
} | undefined;
|
|
13818
13951
|
lineRichMenuId?: string | null | undefined;
|
|
13819
13952
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
13953
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
13820
13954
|
};
|
|
13821
13955
|
status: boolean;
|
|
13822
13956
|
createdAt: Date;
|
|
@@ -13908,6 +14042,7 @@ export declare const channelSMSContract: {
|
|
|
13908
14042
|
} | undefined;
|
|
13909
14043
|
lineRichMenuId?: string | null | undefined;
|
|
13910
14044
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
14045
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
13911
14046
|
};
|
|
13912
14047
|
status: boolean;
|
|
13913
14048
|
createdAt: Date;
|
|
@@ -14001,6 +14136,7 @@ export declare const channelSMSContract: {
|
|
|
14001
14136
|
} | undefined;
|
|
14002
14137
|
lineRichMenuId?: string | null | undefined;
|
|
14003
14138
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
14139
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
14004
14140
|
};
|
|
14005
14141
|
status: boolean;
|
|
14006
14142
|
createdAt: Date;
|
|
@@ -14095,6 +14231,7 @@ export declare const channelSMSContract: {
|
|
|
14095
14231
|
} | undefined;
|
|
14096
14232
|
lineRichMenuId?: string | null | undefined;
|
|
14097
14233
|
messengerIntegrationType?: "own" | "business" | undefined;
|
|
14234
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
|
14098
14235
|
};
|
|
14099
14236
|
status: boolean;
|
|
14100
14237
|
createdAt: Date;
|