@kl1/contracts 1.2.41-uat → 1.2.42-uat
Sign up to get free protection for your applications and to get access to all the features.
- 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
@@ -823,6 +823,7 @@ export declare const ChannelSchema: z.ZodObject<{
|
|
823
823
|
}>>;
|
824
824
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
825
825
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
826
|
+
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
826
827
|
}, "strip", z.ZodTypeAny, {
|
827
828
|
id: string;
|
828
829
|
name: string;
|
@@ -849,6 +850,7 @@ export declare const ChannelSchema: z.ZodObject<{
|
|
849
850
|
} | undefined;
|
850
851
|
lineRichMenuId?: string | null | undefined;
|
851
852
|
messengerIntegrationType?: "own" | "business" | undefined;
|
853
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
852
854
|
}, {
|
853
855
|
id: string;
|
854
856
|
name: string;
|
@@ -875,6 +877,7 @@ export declare const ChannelSchema: z.ZodObject<{
|
|
875
877
|
} | undefined;
|
876
878
|
lineRichMenuId?: string | null | undefined;
|
877
879
|
messengerIntegrationType?: "own" | "business" | undefined;
|
880
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
878
881
|
}>;
|
879
882
|
platformId: z.ZodString;
|
880
883
|
brandName: z.ZodString;
|
@@ -931,6 +934,7 @@ export declare const ChannelSchema: z.ZodObject<{
|
|
931
934
|
} | undefined;
|
932
935
|
lineRichMenuId?: string | null | undefined;
|
933
936
|
messengerIntegrationType?: "own" | "business" | undefined;
|
937
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
934
938
|
};
|
935
939
|
status: boolean;
|
936
940
|
brandName: string;
|
@@ -975,6 +979,7 @@ export declare const ChannelSchema: z.ZodObject<{
|
|
975
979
|
} | undefined;
|
976
980
|
lineRichMenuId?: string | null | undefined;
|
977
981
|
messengerIntegrationType?: "own" | "business" | undefined;
|
982
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
978
983
|
};
|
979
984
|
status: boolean;
|
980
985
|
brandName: string;
|
@@ -1049,6 +1054,7 @@ export declare const ReloginChanelSchema: z.ZodObject<{
|
|
1049
1054
|
}>>;
|
1050
1055
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
1051
1056
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
1057
|
+
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
1052
1058
|
}, "strip", z.ZodTypeAny, {
|
1053
1059
|
id: string;
|
1054
1060
|
name: string;
|
@@ -1075,6 +1081,7 @@ export declare const ReloginChanelSchema: z.ZodObject<{
|
|
1075
1081
|
} | undefined;
|
1076
1082
|
lineRichMenuId?: string | null | undefined;
|
1077
1083
|
messengerIntegrationType?: "own" | "business" | undefined;
|
1084
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
1078
1085
|
}, {
|
1079
1086
|
id: string;
|
1080
1087
|
name: string;
|
@@ -1101,6 +1108,7 @@ export declare const ReloginChanelSchema: z.ZodObject<{
|
|
1101
1108
|
} | undefined;
|
1102
1109
|
lineRichMenuId?: string | null | undefined;
|
1103
1110
|
messengerIntegrationType?: "own" | "business" | undefined;
|
1111
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
1104
1112
|
}>;
|
1105
1113
|
status: z.ZodUnion<[z.ZodLiteral<true>, z.ZodLiteral<false>]>;
|
1106
1114
|
actor: z.ZodOptional<z.ZodObject<{
|
@@ -1162,6 +1170,7 @@ export declare const ReloginChanelSchema: z.ZodObject<{
|
|
1162
1170
|
} | undefined;
|
1163
1171
|
lineRichMenuId?: string | null | undefined;
|
1164
1172
|
messengerIntegrationType?: "own" | "business" | undefined;
|
1173
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
1165
1174
|
};
|
1166
1175
|
status: boolean;
|
1167
1176
|
createdAt: string;
|
@@ -1210,6 +1219,7 @@ export declare const ReloginChanelSchema: z.ZodObject<{
|
|
1210
1219
|
} | undefined;
|
1211
1220
|
lineRichMenuId?: string | null | undefined;
|
1212
1221
|
messengerIntegrationType?: "own" | "business" | undefined;
|
1222
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
1213
1223
|
};
|
1214
1224
|
status: boolean;
|
1215
1225
|
createdAt: string;
|
@@ -1292,6 +1302,7 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
|
|
1292
1302
|
}>>;
|
1293
1303
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
1294
1304
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
1305
|
+
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
1295
1306
|
}, "strip", z.ZodTypeAny, {
|
1296
1307
|
id: string;
|
1297
1308
|
name: string;
|
@@ -1318,6 +1329,7 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
|
|
1318
1329
|
} | undefined;
|
1319
1330
|
lineRichMenuId?: string | null | undefined;
|
1320
1331
|
messengerIntegrationType?: "own" | "business" | undefined;
|
1332
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
1321
1333
|
}, {
|
1322
1334
|
id: string;
|
1323
1335
|
name: string;
|
@@ -1344,6 +1356,7 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
|
|
1344
1356
|
} | undefined;
|
1345
1357
|
lineRichMenuId?: string | null | undefined;
|
1346
1358
|
messengerIntegrationType?: "own" | "business" | undefined;
|
1359
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
1347
1360
|
}>;
|
1348
1361
|
platformId: z.ZodString;
|
1349
1362
|
brandName: z.ZodString;
|
@@ -1400,6 +1413,7 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
|
|
1400
1413
|
} | undefined;
|
1401
1414
|
lineRichMenuId?: string | null | undefined;
|
1402
1415
|
messengerIntegrationType?: "own" | "business" | undefined;
|
1416
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
1403
1417
|
};
|
1404
1418
|
status: boolean;
|
1405
1419
|
brandName: string;
|
@@ -1444,6 +1458,7 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
|
|
1444
1458
|
} | undefined;
|
1445
1459
|
lineRichMenuId?: string | null | undefined;
|
1446
1460
|
messengerIntegrationType?: "own" | "business" | undefined;
|
1461
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
1447
1462
|
};
|
1448
1463
|
status: boolean;
|
1449
1464
|
brandName: string;
|
@@ -1491,6 +1506,7 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
|
|
1491
1506
|
} | undefined;
|
1492
1507
|
lineRichMenuId?: string | null | undefined;
|
1493
1508
|
messengerIntegrationType?: "own" | "business" | undefined;
|
1509
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
1494
1510
|
};
|
1495
1511
|
status: boolean;
|
1496
1512
|
brandName: string;
|
@@ -1538,6 +1554,7 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
|
|
1538
1554
|
} | undefined;
|
1539
1555
|
lineRichMenuId?: string | null | undefined;
|
1540
1556
|
messengerIntegrationType?: "own" | "business" | undefined;
|
1557
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
1541
1558
|
};
|
1542
1559
|
status: boolean;
|
1543
1560
|
brandName: string;
|
@@ -1737,6 +1754,7 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
|
|
1737
1754
|
} | undefined;
|
1738
1755
|
lineRichMenuId?: string | null | undefined;
|
1739
1756
|
messengerIntegrationType?: "own" | "business" | undefined;
|
1757
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
1740
1758
|
};
|
1741
1759
|
status: boolean;
|
1742
1760
|
brandName: string;
|
@@ -1818,6 +1836,7 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
|
|
1818
1836
|
} | undefined;
|
1819
1837
|
lineRichMenuId?: string | null | undefined;
|
1820
1838
|
messengerIntegrationType?: "own" | "business" | undefined;
|
1839
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
1821
1840
|
};
|
1822
1841
|
status: boolean;
|
1823
1842
|
brandName: string;
|
@@ -2020,6 +2039,7 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
|
|
2020
2039
|
}>>;
|
2021
2040
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
2022
2041
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
2042
|
+
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
2023
2043
|
}, "strip", z.ZodTypeAny, {
|
2024
2044
|
id: string;
|
2025
2045
|
name: string;
|
@@ -2046,6 +2066,7 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
|
|
2046
2066
|
} | undefined;
|
2047
2067
|
lineRichMenuId?: string | null | undefined;
|
2048
2068
|
messengerIntegrationType?: "own" | "business" | undefined;
|
2069
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
2049
2070
|
}, {
|
2050
2071
|
id: string;
|
2051
2072
|
name: string;
|
@@ -2072,6 +2093,7 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
|
|
2072
2093
|
} | undefined;
|
2073
2094
|
lineRichMenuId?: string | null | undefined;
|
2074
2095
|
messengerIntegrationType?: "own" | "business" | undefined;
|
2096
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
2075
2097
|
}>;
|
2076
2098
|
platformId: z.ZodString;
|
2077
2099
|
brandName: z.ZodString;
|
@@ -2128,6 +2150,7 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
|
|
2128
2150
|
} | undefined;
|
2129
2151
|
lineRichMenuId?: string | null | undefined;
|
2130
2152
|
messengerIntegrationType?: "own" | "business" | undefined;
|
2153
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
2131
2154
|
};
|
2132
2155
|
status: boolean;
|
2133
2156
|
brandName: string;
|
@@ -2172,6 +2195,7 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
|
|
2172
2195
|
} | undefined;
|
2173
2196
|
lineRichMenuId?: string | null | undefined;
|
2174
2197
|
messengerIntegrationType?: "own" | "business" | undefined;
|
2198
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
2175
2199
|
};
|
2176
2200
|
status: boolean;
|
2177
2201
|
brandName: string;
|
@@ -2221,6 +2245,7 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
|
|
2221
2245
|
} | undefined;
|
2222
2246
|
lineRichMenuId?: string | null | undefined;
|
2223
2247
|
messengerIntegrationType?: "own" | "business" | undefined;
|
2248
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
2224
2249
|
};
|
2225
2250
|
status: boolean;
|
2226
2251
|
brandName: string;
|
@@ -2309,6 +2334,7 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
|
|
2309
2334
|
} | undefined;
|
2310
2335
|
lineRichMenuId?: string | null | undefined;
|
2311
2336
|
messengerIntegrationType?: "own" | "business" | undefined;
|
2337
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
2312
2338
|
};
|
2313
2339
|
status: boolean;
|
2314
2340
|
brandName: string;
|
@@ -2565,6 +2591,7 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
|
|
2565
2591
|
} | undefined;
|
2566
2592
|
lineRichMenuId?: string | null | undefined;
|
2567
2593
|
messengerIntegrationType?: "own" | "business" | undefined;
|
2594
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
2568
2595
|
};
|
2569
2596
|
status: boolean;
|
2570
2597
|
brandName: string;
|
@@ -2692,6 +2719,7 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
|
|
2692
2719
|
} | undefined;
|
2693
2720
|
lineRichMenuId?: string | null | undefined;
|
2694
2721
|
messengerIntegrationType?: "own" | "business" | undefined;
|
2722
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
2695
2723
|
};
|
2696
2724
|
status: boolean;
|
2697
2725
|
brandName: string;
|
@@ -3065,6 +3093,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
|
|
3065
3093
|
}>>;
|
3066
3094
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
3067
3095
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
3096
|
+
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
3068
3097
|
}, "strip", z.ZodTypeAny, {
|
3069
3098
|
id: string;
|
3070
3099
|
name: string;
|
@@ -3091,6 +3120,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
|
|
3091
3120
|
} | undefined;
|
3092
3121
|
lineRichMenuId?: string | null | undefined;
|
3093
3122
|
messengerIntegrationType?: "own" | "business" | undefined;
|
3123
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
3094
3124
|
}, {
|
3095
3125
|
id: string;
|
3096
3126
|
name: string;
|
@@ -3117,6 +3147,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
|
|
3117
3147
|
} | undefined;
|
3118
3148
|
lineRichMenuId?: string | null | undefined;
|
3119
3149
|
messengerIntegrationType?: "own" | "business" | undefined;
|
3150
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
3120
3151
|
}>;
|
3121
3152
|
platformId: z.ZodString;
|
3122
3153
|
brandName: z.ZodString;
|
@@ -3173,6 +3204,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
|
|
3173
3204
|
} | undefined;
|
3174
3205
|
lineRichMenuId?: string | null | undefined;
|
3175
3206
|
messengerIntegrationType?: "own" | "business" | undefined;
|
3207
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
3176
3208
|
};
|
3177
3209
|
status: boolean;
|
3178
3210
|
brandName: string;
|
@@ -3217,6 +3249,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
|
|
3217
3249
|
} | undefined;
|
3218
3250
|
lineRichMenuId?: string | null | undefined;
|
3219
3251
|
messengerIntegrationType?: "own" | "business" | undefined;
|
3252
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
3220
3253
|
};
|
3221
3254
|
status: boolean;
|
3222
3255
|
brandName: string;
|
@@ -3266,6 +3299,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
|
|
3266
3299
|
} | undefined;
|
3267
3300
|
lineRichMenuId?: string | null | undefined;
|
3268
3301
|
messengerIntegrationType?: "own" | "business" | undefined;
|
3302
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
3269
3303
|
};
|
3270
3304
|
status: boolean;
|
3271
3305
|
brandName: string;
|
@@ -3354,6 +3388,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
|
|
3354
3388
|
} | undefined;
|
3355
3389
|
lineRichMenuId?: string | null | undefined;
|
3356
3390
|
messengerIntegrationType?: "own" | "business" | undefined;
|
3391
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
3357
3392
|
};
|
3358
3393
|
status: boolean;
|
3359
3394
|
brandName: string;
|
@@ -3491,6 +3526,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
|
|
3491
3526
|
} | undefined;
|
3492
3527
|
lineRichMenuId?: string | null | undefined;
|
3493
3528
|
messengerIntegrationType?: "own" | "business" | undefined;
|
3529
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
3494
3530
|
};
|
3495
3531
|
status: boolean;
|
3496
3532
|
brandName: string;
|
@@ -3622,6 +3658,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
|
|
3622
3658
|
} | undefined;
|
3623
3659
|
lineRichMenuId?: string | null | undefined;
|
3624
3660
|
messengerIntegrationType?: "own" | "business" | undefined;
|
3661
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
3625
3662
|
};
|
3626
3663
|
status: boolean;
|
3627
3664
|
brandName: string;
|
@@ -5676,6 +5713,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
5676
5713
|
}>>;
|
5677
5714
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
5678
5715
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
5716
|
+
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
5679
5717
|
}, "strip", z.ZodTypeAny, {
|
5680
5718
|
id: string;
|
5681
5719
|
name: string;
|
@@ -5702,6 +5740,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
5702
5740
|
} | undefined;
|
5703
5741
|
lineRichMenuId?: string | null | undefined;
|
5704
5742
|
messengerIntegrationType?: "own" | "business" | undefined;
|
5743
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
5705
5744
|
}, {
|
5706
5745
|
id: string;
|
5707
5746
|
name: string;
|
@@ -5728,6 +5767,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
5728
5767
|
} | undefined;
|
5729
5768
|
lineRichMenuId?: string | null | undefined;
|
5730
5769
|
messengerIntegrationType?: "own" | "business" | undefined;
|
5770
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
5731
5771
|
}>;
|
5732
5772
|
brandName: z.ZodString;
|
5733
5773
|
platformId: z.ZodString;
|
@@ -5988,6 +6028,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
5988
6028
|
} | undefined;
|
5989
6029
|
lineRichMenuId?: string | null | undefined;
|
5990
6030
|
messengerIntegrationType?: "own" | "business" | undefined;
|
6031
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
5991
6032
|
};
|
5992
6033
|
status: boolean;
|
5993
6034
|
createdAt: Date;
|
@@ -6079,6 +6120,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
6079
6120
|
} | undefined;
|
6080
6121
|
lineRichMenuId?: string | null | undefined;
|
6081
6122
|
messengerIntegrationType?: "own" | "business" | undefined;
|
6123
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
6082
6124
|
};
|
6083
6125
|
status: boolean;
|
6084
6126
|
createdAt: Date;
|
@@ -6734,6 +6776,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
6734
6776
|
} | undefined;
|
6735
6777
|
lineRichMenuId?: string | null | undefined;
|
6736
6778
|
messengerIntegrationType?: "own" | "business" | undefined;
|
6779
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
6737
6780
|
};
|
6738
6781
|
status: boolean;
|
6739
6782
|
createdAt: Date;
|
@@ -7158,6 +7201,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
7158
7201
|
} | undefined;
|
7159
7202
|
lineRichMenuId?: string | null | undefined;
|
7160
7203
|
messengerIntegrationType?: "own" | "business" | undefined;
|
7204
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
7161
7205
|
};
|
7162
7206
|
status: boolean;
|
7163
7207
|
createdAt: Date;
|
@@ -10328,6 +10372,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
10328
10372
|
}>>;
|
10329
10373
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
10330
10374
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
10375
|
+
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
10331
10376
|
}, "strip", z.ZodTypeAny, {
|
10332
10377
|
id: string;
|
10333
10378
|
name: string;
|
@@ -10354,6 +10399,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
10354
10399
|
} | undefined;
|
10355
10400
|
lineRichMenuId?: string | null | undefined;
|
10356
10401
|
messengerIntegrationType?: "own" | "business" | undefined;
|
10402
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
10357
10403
|
}, {
|
10358
10404
|
id: string;
|
10359
10405
|
name: string;
|
@@ -10380,6 +10426,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
10380
10426
|
} | undefined;
|
10381
10427
|
lineRichMenuId?: string | null | undefined;
|
10382
10428
|
messengerIntegrationType?: "own" | "business" | undefined;
|
10429
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
10383
10430
|
}>;
|
10384
10431
|
brandName: z.ZodString;
|
10385
10432
|
platformId: z.ZodString;
|
@@ -10640,6 +10687,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
10640
10687
|
} | undefined;
|
10641
10688
|
lineRichMenuId?: string | null | undefined;
|
10642
10689
|
messengerIntegrationType?: "own" | "business" | undefined;
|
10690
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
10643
10691
|
};
|
10644
10692
|
status: boolean;
|
10645
10693
|
createdAt: Date;
|
@@ -10731,6 +10779,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
10731
10779
|
} | undefined;
|
10732
10780
|
lineRichMenuId?: string | null | undefined;
|
10733
10781
|
messengerIntegrationType?: "own" | "business" | undefined;
|
10782
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
10734
10783
|
};
|
10735
10784
|
status: boolean;
|
10736
10785
|
createdAt: Date;
|
@@ -11386,6 +11435,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
11386
11435
|
} | undefined;
|
11387
11436
|
lineRichMenuId?: string | null | undefined;
|
11388
11437
|
messengerIntegrationType?: "own" | "business" | undefined;
|
11438
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
11389
11439
|
};
|
11390
11440
|
status: boolean;
|
11391
11441
|
createdAt: Date;
|
@@ -11810,6 +11860,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
11810
11860
|
} | undefined;
|
11811
11861
|
lineRichMenuId?: string | null | undefined;
|
11812
11862
|
messengerIntegrationType?: "own" | "business" | undefined;
|
11863
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
11813
11864
|
};
|
11814
11865
|
status: boolean;
|
11815
11866
|
createdAt: Date;
|
@@ -14007,6 +14058,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
14007
14058
|
} | undefined;
|
14008
14059
|
lineRichMenuId?: string | null | undefined;
|
14009
14060
|
messengerIntegrationType?: "own" | "business" | undefined;
|
14061
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
14010
14062
|
};
|
14011
14063
|
status: boolean;
|
14012
14064
|
createdAt: Date;
|
@@ -14768,6 +14820,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
14768
14820
|
} | undefined;
|
14769
14821
|
lineRichMenuId?: string | null | undefined;
|
14770
14822
|
messengerIntegrationType?: "own" | "business" | undefined;
|
14823
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
14771
14824
|
};
|
14772
14825
|
status: boolean;
|
14773
14826
|
createdAt: Date;
|
@@ -15530,6 +15583,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
15530
15583
|
} | undefined;
|
15531
15584
|
lineRichMenuId?: string | null | undefined;
|
15532
15585
|
messengerIntegrationType?: "own" | "business" | undefined;
|
15586
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
15533
15587
|
};
|
15534
15588
|
status: boolean;
|
15535
15589
|
createdAt: Date;
|
@@ -16291,6 +16345,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
16291
16345
|
} | undefined;
|
16292
16346
|
lineRichMenuId?: string | null | undefined;
|
16293
16347
|
messengerIntegrationType?: "own" | "business" | undefined;
|
16348
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
16294
16349
|
};
|
16295
16350
|
status: boolean;
|
16296
16351
|
createdAt: Date;
|
@@ -17053,6 +17108,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
17053
17108
|
} | undefined;
|
17054
17109
|
lineRichMenuId?: string | null | undefined;
|
17055
17110
|
messengerIntegrationType?: "own" | "business" | undefined;
|
17111
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
17056
17112
|
};
|
17057
17113
|
status: boolean;
|
17058
17114
|
createdAt: Date;
|
@@ -17814,6 +17870,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
17814
17870
|
} | undefined;
|
17815
17871
|
lineRichMenuId?: string | null | undefined;
|
17816
17872
|
messengerIntegrationType?: "own" | "business" | undefined;
|
17873
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
17817
17874
|
};
|
17818
17875
|
status: boolean;
|
17819
17876
|
createdAt: Date;
|
@@ -18578,6 +18635,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
18578
18635
|
} | undefined;
|
18579
18636
|
lineRichMenuId?: string | null | undefined;
|
18580
18637
|
messengerIntegrationType?: "own" | "business" | undefined;
|
18638
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
18581
18639
|
};
|
18582
18640
|
status: boolean;
|
18583
18641
|
createdAt: Date;
|
@@ -19339,6 +19397,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
19339
19397
|
} | undefined;
|
19340
19398
|
lineRichMenuId?: string | null | undefined;
|
19341
19399
|
messengerIntegrationType?: "own" | "business" | undefined;
|
19400
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
19342
19401
|
};
|
19343
19402
|
status: boolean;
|
19344
19403
|
createdAt: Date;
|
@@ -20104,6 +20163,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
20104
20163
|
} | undefined;
|
20105
20164
|
lineRichMenuId?: string | null | undefined;
|
20106
20165
|
messengerIntegrationType?: "own" | "business" | undefined;
|
20166
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
20107
20167
|
};
|
20108
20168
|
status: boolean;
|
20109
20169
|
createdAt: Date;
|
@@ -20865,6 +20925,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
20865
20925
|
} | undefined;
|
20866
20926
|
lineRichMenuId?: string | null | undefined;
|
20867
20927
|
messengerIntegrationType?: "own" | "business" | undefined;
|
20928
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
20868
20929
|
};
|
20869
20930
|
status: boolean;
|
20870
20931
|
createdAt: Date;
|
@@ -21550,6 +21611,7 @@ export declare const ChannelServiceResponseSchema: z.ZodObject<{
|
|
21550
21611
|
}>>;
|
21551
21612
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
21552
21613
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
21614
|
+
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
21553
21615
|
}, "strip", z.ZodTypeAny, {
|
21554
21616
|
id: string;
|
21555
21617
|
name: string;
|
@@ -21576,6 +21638,7 @@ export declare const ChannelServiceResponseSchema: z.ZodObject<{
|
|
21576
21638
|
} | undefined;
|
21577
21639
|
lineRichMenuId?: string | null | undefined;
|
21578
21640
|
messengerIntegrationType?: "own" | "business" | undefined;
|
21641
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
21579
21642
|
}, {
|
21580
21643
|
id: string;
|
21581
21644
|
name: string;
|
@@ -21602,6 +21665,7 @@ export declare const ChannelServiceResponseSchema: z.ZodObject<{
|
|
21602
21665
|
} | undefined;
|
21603
21666
|
lineRichMenuId?: string | null | undefined;
|
21604
21667
|
messengerIntegrationType?: "own" | "business" | undefined;
|
21668
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
21605
21669
|
}>;
|
21606
21670
|
platformId: z.ZodString;
|
21607
21671
|
brandName: z.ZodString;
|
@@ -21658,6 +21722,7 @@ export declare const ChannelServiceResponseSchema: z.ZodObject<{
|
|
21658
21722
|
} | undefined;
|
21659
21723
|
lineRichMenuId?: string | null | undefined;
|
21660
21724
|
messengerIntegrationType?: "own" | "business" | undefined;
|
21725
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
21661
21726
|
};
|
21662
21727
|
status: boolean;
|
21663
21728
|
brandName: string;
|
@@ -21702,6 +21767,7 @@ export declare const ChannelServiceResponseSchema: z.ZodObject<{
|
|
21702
21767
|
} | undefined;
|
21703
21768
|
lineRichMenuId?: string | null | undefined;
|
21704
21769
|
messengerIntegrationType?: "own" | "business" | undefined;
|
21770
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
21705
21771
|
};
|
21706
21772
|
status: boolean;
|
21707
21773
|
brandName: string;
|
@@ -21748,6 +21814,7 @@ export declare const ChannelServiceResponseSchema: z.ZodObject<{
|
|
21748
21814
|
} | undefined;
|
21749
21815
|
lineRichMenuId?: string | null | undefined;
|
21750
21816
|
messengerIntegrationType?: "own" | "business" | undefined;
|
21817
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
21751
21818
|
};
|
21752
21819
|
status: boolean;
|
21753
21820
|
brandName: string;
|
@@ -21795,6 +21862,7 @@ export declare const ChannelServiceResponseSchema: z.ZodObject<{
|
|
21795
21862
|
} | undefined;
|
21796
21863
|
lineRichMenuId?: string | null | undefined;
|
21797
21864
|
messengerIntegrationType?: "own" | "business" | undefined;
|
21865
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
21798
21866
|
};
|
21799
21867
|
status: boolean;
|
21800
21868
|
brandName: string;
|
@@ -23245,6 +23313,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
23245
23313
|
}>>;
|
23246
23314
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
23247
23315
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
23316
|
+
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
23248
23317
|
}, "strip", z.ZodTypeAny, {
|
23249
23318
|
id: string;
|
23250
23319
|
name: string;
|
@@ -23271,6 +23340,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
23271
23340
|
} | undefined;
|
23272
23341
|
lineRichMenuId?: string | null | undefined;
|
23273
23342
|
messengerIntegrationType?: "own" | "business" | undefined;
|
23343
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
23274
23344
|
}, {
|
23275
23345
|
id: string;
|
23276
23346
|
name: string;
|
@@ -23297,6 +23367,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
23297
23367
|
} | undefined;
|
23298
23368
|
lineRichMenuId?: string | null | undefined;
|
23299
23369
|
messengerIntegrationType?: "own" | "business" | undefined;
|
23370
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
23300
23371
|
}>;
|
23301
23372
|
platformId: z.ZodString;
|
23302
23373
|
brandName: z.ZodString;
|
@@ -23353,6 +23424,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
23353
23424
|
} | undefined;
|
23354
23425
|
lineRichMenuId?: string | null | undefined;
|
23355
23426
|
messengerIntegrationType?: "own" | "business" | undefined;
|
23427
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
23356
23428
|
};
|
23357
23429
|
status: boolean;
|
23358
23430
|
brandName: string;
|
@@ -23397,6 +23469,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
23397
23469
|
} | undefined;
|
23398
23470
|
lineRichMenuId?: string | null | undefined;
|
23399
23471
|
messengerIntegrationType?: "own" | "business" | undefined;
|
23472
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
23400
23473
|
};
|
23401
23474
|
status: boolean;
|
23402
23475
|
brandName: string;
|
@@ -24190,6 +24263,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
24190
24263
|
} | undefined;
|
24191
24264
|
lineRichMenuId?: string | null | undefined;
|
24192
24265
|
messengerIntegrationType?: "own" | "business" | undefined;
|
24266
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
24193
24267
|
};
|
24194
24268
|
status: boolean;
|
24195
24269
|
brandName: string;
|
@@ -24539,6 +24613,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
24539
24613
|
} | undefined;
|
24540
24614
|
lineRichMenuId?: string | null | undefined;
|
24541
24615
|
messengerIntegrationType?: "own" | "business" | undefined;
|
24616
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
24542
24617
|
};
|
24543
24618
|
status: boolean;
|
24544
24619
|
brandName: string;
|
@@ -25544,6 +25619,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
25544
25619
|
} | undefined;
|
25545
25620
|
lineRichMenuId?: string | null | undefined;
|
25546
25621
|
messengerIntegrationType?: "own" | "business" | undefined;
|
25622
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
25547
25623
|
};
|
25548
25624
|
status: boolean;
|
25549
25625
|
brandName: string;
|
@@ -26056,6 +26132,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
26056
26132
|
} | undefined;
|
26057
26133
|
lineRichMenuId?: string | null | undefined;
|
26058
26134
|
messengerIntegrationType?: "own" | "business" | undefined;
|
26135
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
26059
26136
|
};
|
26060
26137
|
status: boolean;
|
26061
26138
|
brandName: string;
|
@@ -26570,6 +26647,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
26570
26647
|
} | undefined;
|
26571
26648
|
lineRichMenuId?: string | null | undefined;
|
26572
26649
|
messengerIntegrationType?: "own" | "business" | undefined;
|
26650
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
26573
26651
|
};
|
26574
26652
|
status: boolean;
|
26575
26653
|
brandName: string;
|
@@ -27084,6 +27162,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
27084
27162
|
} | undefined;
|
27085
27163
|
lineRichMenuId?: string | null | undefined;
|
27086
27164
|
messengerIntegrationType?: "own" | "business" | undefined;
|
27165
|
+
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
27087
27166
|
};
|
27088
27167
|
status: boolean;
|
27089
27168
|
brandName: string;
|