@kl1/contracts 1.3.24 → 1.3.27
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 +742 -0
- package/dist/api-contracts/src/channel/index.d.ts.map +1 -1
- package/dist/api-contracts/src/channel/schema.d.ts +44 -0
- package/dist/api-contracts/src/channel/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/channel/validation.d.ts +52 -0
- package/dist/api-contracts/src/channel/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/index.d.ts +1054 -2
- package/dist/api-contracts/src/chat/index.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/schema.d.ts +252 -0
- package/dist/api-contracts/src/chat/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/validation.d.ts +370 -0
- package/dist/api-contracts/src/chat/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/contract.d.ts +4960 -154
- package/dist/api-contracts/src/contract.d.ts.map +1 -1
- package/dist/api-contracts/src/cx-log/index.d.ts +54 -4
- package/dist/api-contracts/src/cx-log/index.d.ts.map +1 -1
- package/dist/api-contracts/src/cx-log/schema.d.ts +42 -0
- package/dist/api-contracts/src/cx-log/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/cx-log/validation.d.ts +2 -2
- package/dist/api-contracts/src/cx-log/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/facebook-feed/index.d.ts +508 -0
- package/dist/api-contracts/src/facebook-feed/index.d.ts.map +1 -1
- package/dist/api-contracts/src/facebook-feed/schema.d.ts +34 -0
- package/dist/api-contracts/src/facebook-feed/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/facebook-feed/validation.d.ts +26 -0
- package/dist/api-contracts/src/facebook-feed/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/instagram/index.d.ts +398 -0
- package/dist/api-contracts/src/instagram/index.d.ts.map +1 -1
- package/dist/api-contracts/src/line/index.d.ts +354 -0
- package/dist/api-contracts/src/line/index.d.ts.map +1 -1
- package/dist/api-contracts/src/line/validation.d.ts +42 -0
- package/dist/api-contracts/src/line/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/messenger/index.d.ts +398 -0
- package/dist/api-contracts/src/messenger/index.d.ts.map +1 -1
- package/dist/api-contracts/src/messenger/validation.d.ts +26 -0
- package/dist/api-contracts/src/messenger/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/sms/index.d.ts +178 -0
- package/dist/api-contracts/src/sms/index.d.ts.map +1 -1
- package/dist/api-contracts/src/telegram/index.d.ts +286 -0
- package/dist/api-contracts/src/telegram/index.d.ts.map +1 -1
- package/dist/api-contracts/src/viber/index.d.ts +286 -0
- package/dist/api-contracts/src/viber/index.d.ts.map +1 -1
- package/dist/api-contracts/src/webchat/index.d.ts +286 -0
- package/dist/api-contracts/src/webchat/index.d.ts.map +1 -1
- package/dist/api-contracts/src/whatsapp/index.d.ts +338 -0
- package/dist/api-contracts/src/whatsapp/index.d.ts.map +1 -1
- package/dist/api-contracts/src/widget/index.d.ts +286 -3
- package/dist/api-contracts/src/widget/index.d.ts.map +1 -1
- package/dist/api-contracts/src/workflow-rule/index.d.ts +134 -0
- package/dist/api-contracts/src/workflow-rule/index.d.ts.map +1 -1
- package/dist/index.js +50 -5
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +50 -5
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
@@ -843,6 +843,16 @@ export declare const ChannelSchema: z.ZodObject<{
|
|
843
843
|
mobileNumber: string;
|
844
844
|
apiSecret: string;
|
845
845
|
}>>;
|
846
|
+
line: z.ZodOptional<z.ZodObject<{
|
847
|
+
channelId: z.ZodString;
|
848
|
+
channelSecret: z.ZodString;
|
849
|
+
}, "strip", z.ZodTypeAny, {
|
850
|
+
channelId: string;
|
851
|
+
channelSecret: string;
|
852
|
+
}, {
|
853
|
+
channelId: string;
|
854
|
+
channelSecret: string;
|
855
|
+
}>>;
|
846
856
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
847
857
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
848
858
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
@@ -873,6 +883,10 @@ export declare const ChannelSchema: z.ZodObject<{
|
|
873
883
|
mobileNumber: string;
|
874
884
|
apiSecret: string;
|
875
885
|
} | undefined;
|
886
|
+
line?: {
|
887
|
+
channelId: string;
|
888
|
+
channelSecret: string;
|
889
|
+
} | undefined;
|
876
890
|
lineRichMenuId?: string | null | undefined;
|
877
891
|
messengerIntegrationType?: "own" | "business" | undefined;
|
878
892
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -903,6 +917,10 @@ export declare const ChannelSchema: z.ZodObject<{
|
|
903
917
|
mobileNumber: string;
|
904
918
|
apiSecret: string;
|
905
919
|
} | undefined;
|
920
|
+
line?: {
|
921
|
+
channelId: string;
|
922
|
+
channelSecret: string;
|
923
|
+
} | undefined;
|
906
924
|
lineRichMenuId?: string | null | undefined;
|
907
925
|
messengerIntegrationType?: "own" | "business" | undefined;
|
908
926
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -963,6 +981,10 @@ export declare const ChannelSchema: z.ZodObject<{
|
|
963
981
|
mobileNumber: string;
|
964
982
|
apiSecret: string;
|
965
983
|
} | undefined;
|
984
|
+
line?: {
|
985
|
+
channelId: string;
|
986
|
+
channelSecret: string;
|
987
|
+
} | undefined;
|
966
988
|
lineRichMenuId?: string | null | undefined;
|
967
989
|
messengerIntegrationType?: "own" | "business" | undefined;
|
968
990
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -1011,6 +1033,10 @@ export declare const ChannelSchema: z.ZodObject<{
|
|
1011
1033
|
mobileNumber: string;
|
1012
1034
|
apiSecret: string;
|
1013
1035
|
} | undefined;
|
1036
|
+
line?: {
|
1037
|
+
channelId: string;
|
1038
|
+
channelSecret: string;
|
1039
|
+
} | undefined;
|
1014
1040
|
lineRichMenuId?: string | null | undefined;
|
1015
1041
|
messengerIntegrationType?: "own" | "business" | undefined;
|
1016
1042
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -1093,6 +1119,16 @@ export declare const ReloginChanelSchema: z.ZodObject<{
|
|
1093
1119
|
mobileNumber: string;
|
1094
1120
|
apiSecret: string;
|
1095
1121
|
}>>;
|
1122
|
+
line: z.ZodOptional<z.ZodObject<{
|
1123
|
+
channelId: z.ZodString;
|
1124
|
+
channelSecret: z.ZodString;
|
1125
|
+
}, "strip", z.ZodTypeAny, {
|
1126
|
+
channelId: string;
|
1127
|
+
channelSecret: string;
|
1128
|
+
}, {
|
1129
|
+
channelId: string;
|
1130
|
+
channelSecret: string;
|
1131
|
+
}>>;
|
1096
1132
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
1097
1133
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
1098
1134
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
@@ -1123,6 +1159,10 @@ export declare const ReloginChanelSchema: z.ZodObject<{
|
|
1123
1159
|
mobileNumber: string;
|
1124
1160
|
apiSecret: string;
|
1125
1161
|
} | undefined;
|
1162
|
+
line?: {
|
1163
|
+
channelId: string;
|
1164
|
+
channelSecret: string;
|
1165
|
+
} | undefined;
|
1126
1166
|
lineRichMenuId?: string | null | undefined;
|
1127
1167
|
messengerIntegrationType?: "own" | "business" | undefined;
|
1128
1168
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -1153,6 +1193,10 @@ export declare const ReloginChanelSchema: z.ZodObject<{
|
|
1153
1193
|
mobileNumber: string;
|
1154
1194
|
apiSecret: string;
|
1155
1195
|
} | undefined;
|
1196
|
+
line?: {
|
1197
|
+
channelId: string;
|
1198
|
+
channelSecret: string;
|
1199
|
+
} | undefined;
|
1156
1200
|
lineRichMenuId?: string | null | undefined;
|
1157
1201
|
messengerIntegrationType?: "own" | "business" | undefined;
|
1158
1202
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -1218,6 +1262,10 @@ export declare const ReloginChanelSchema: z.ZodObject<{
|
|
1218
1262
|
mobileNumber: string;
|
1219
1263
|
apiSecret: string;
|
1220
1264
|
} | undefined;
|
1265
|
+
line?: {
|
1266
|
+
channelId: string;
|
1267
|
+
channelSecret: string;
|
1268
|
+
} | undefined;
|
1221
1269
|
lineRichMenuId?: string | null | undefined;
|
1222
1270
|
messengerIntegrationType?: "own" | "business" | undefined;
|
1223
1271
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -1270,6 +1318,10 @@ export declare const ReloginChanelSchema: z.ZodObject<{
|
|
1270
1318
|
mobileNumber: string;
|
1271
1319
|
apiSecret: string;
|
1272
1320
|
} | undefined;
|
1321
|
+
line?: {
|
1322
|
+
channelId: string;
|
1323
|
+
channelSecret: string;
|
1324
|
+
} | undefined;
|
1273
1325
|
lineRichMenuId?: string | null | undefined;
|
1274
1326
|
messengerIntegrationType?: "own" | "business" | undefined;
|
1275
1327
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -1360,6 +1412,16 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
|
|
1360
1412
|
mobileNumber: string;
|
1361
1413
|
apiSecret: string;
|
1362
1414
|
}>>;
|
1415
|
+
line: z.ZodOptional<z.ZodObject<{
|
1416
|
+
channelId: z.ZodString;
|
1417
|
+
channelSecret: z.ZodString;
|
1418
|
+
}, "strip", z.ZodTypeAny, {
|
1419
|
+
channelId: string;
|
1420
|
+
channelSecret: string;
|
1421
|
+
}, {
|
1422
|
+
channelId: string;
|
1423
|
+
channelSecret: string;
|
1424
|
+
}>>;
|
1363
1425
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
1364
1426
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
1365
1427
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
@@ -1390,6 +1452,10 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
|
|
1390
1452
|
mobileNumber: string;
|
1391
1453
|
apiSecret: string;
|
1392
1454
|
} | undefined;
|
1455
|
+
line?: {
|
1456
|
+
channelId: string;
|
1457
|
+
channelSecret: string;
|
1458
|
+
} | undefined;
|
1393
1459
|
lineRichMenuId?: string | null | undefined;
|
1394
1460
|
messengerIntegrationType?: "own" | "business" | undefined;
|
1395
1461
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -1420,6 +1486,10 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
|
|
1420
1486
|
mobileNumber: string;
|
1421
1487
|
apiSecret: string;
|
1422
1488
|
} | undefined;
|
1489
|
+
line?: {
|
1490
|
+
channelId: string;
|
1491
|
+
channelSecret: string;
|
1492
|
+
} | undefined;
|
1423
1493
|
lineRichMenuId?: string | null | undefined;
|
1424
1494
|
messengerIntegrationType?: "own" | "business" | undefined;
|
1425
1495
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -1480,6 +1550,10 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
|
|
1480
1550
|
mobileNumber: string;
|
1481
1551
|
apiSecret: string;
|
1482
1552
|
} | undefined;
|
1553
|
+
line?: {
|
1554
|
+
channelId: string;
|
1555
|
+
channelSecret: string;
|
1556
|
+
} | undefined;
|
1483
1557
|
lineRichMenuId?: string | null | undefined;
|
1484
1558
|
messengerIntegrationType?: "own" | "business" | undefined;
|
1485
1559
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -1528,6 +1602,10 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
|
|
1528
1602
|
mobileNumber: string;
|
1529
1603
|
apiSecret: string;
|
1530
1604
|
} | undefined;
|
1605
|
+
line?: {
|
1606
|
+
channelId: string;
|
1607
|
+
channelSecret: string;
|
1608
|
+
} | undefined;
|
1531
1609
|
lineRichMenuId?: string | null | undefined;
|
1532
1610
|
messengerIntegrationType?: "own" | "business" | undefined;
|
1533
1611
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -1579,6 +1657,10 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
|
|
1579
1657
|
mobileNumber: string;
|
1580
1658
|
apiSecret: string;
|
1581
1659
|
} | undefined;
|
1660
|
+
line?: {
|
1661
|
+
channelId: string;
|
1662
|
+
channelSecret: string;
|
1663
|
+
} | undefined;
|
1582
1664
|
lineRichMenuId?: string | null | undefined;
|
1583
1665
|
messengerIntegrationType?: "own" | "business" | undefined;
|
1584
1666
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -1630,6 +1712,10 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
|
|
1630
1712
|
mobileNumber: string;
|
1631
1713
|
apiSecret: string;
|
1632
1714
|
} | undefined;
|
1715
|
+
line?: {
|
1716
|
+
channelId: string;
|
1717
|
+
channelSecret: string;
|
1718
|
+
} | undefined;
|
1633
1719
|
lineRichMenuId?: string | null | undefined;
|
1634
1720
|
messengerIntegrationType?: "own" | "business" | undefined;
|
1635
1721
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -1833,6 +1919,10 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
|
|
1833
1919
|
mobileNumber: string;
|
1834
1920
|
apiSecret: string;
|
1835
1921
|
} | undefined;
|
1922
|
+
line?: {
|
1923
|
+
channelId: string;
|
1924
|
+
channelSecret: string;
|
1925
|
+
} | undefined;
|
1836
1926
|
lineRichMenuId?: string | null | undefined;
|
1837
1927
|
messengerIntegrationType?: "own" | "business" | undefined;
|
1838
1928
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -1918,6 +2008,10 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
|
|
1918
2008
|
mobileNumber: string;
|
1919
2009
|
apiSecret: string;
|
1920
2010
|
} | undefined;
|
2011
|
+
line?: {
|
2012
|
+
channelId: string;
|
2013
|
+
channelSecret: string;
|
2014
|
+
} | undefined;
|
1921
2015
|
lineRichMenuId?: string | null | undefined;
|
1922
2016
|
messengerIntegrationType?: "own" | "business" | undefined;
|
1923
2017
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -2128,6 +2222,16 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
|
|
2128
2222
|
mobileNumber: string;
|
2129
2223
|
apiSecret: string;
|
2130
2224
|
}>>;
|
2225
|
+
line: z.ZodOptional<z.ZodObject<{
|
2226
|
+
channelId: z.ZodString;
|
2227
|
+
channelSecret: z.ZodString;
|
2228
|
+
}, "strip", z.ZodTypeAny, {
|
2229
|
+
channelId: string;
|
2230
|
+
channelSecret: string;
|
2231
|
+
}, {
|
2232
|
+
channelId: string;
|
2233
|
+
channelSecret: string;
|
2234
|
+
}>>;
|
2131
2235
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
2132
2236
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
2133
2237
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
@@ -2158,6 +2262,10 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
|
|
2158
2262
|
mobileNumber: string;
|
2159
2263
|
apiSecret: string;
|
2160
2264
|
} | undefined;
|
2265
|
+
line?: {
|
2266
|
+
channelId: string;
|
2267
|
+
channelSecret: string;
|
2268
|
+
} | undefined;
|
2161
2269
|
lineRichMenuId?: string | null | undefined;
|
2162
2270
|
messengerIntegrationType?: "own" | "business" | undefined;
|
2163
2271
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -2188,6 +2296,10 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
|
|
2188
2296
|
mobileNumber: string;
|
2189
2297
|
apiSecret: string;
|
2190
2298
|
} | undefined;
|
2299
|
+
line?: {
|
2300
|
+
channelId: string;
|
2301
|
+
channelSecret: string;
|
2302
|
+
} | undefined;
|
2191
2303
|
lineRichMenuId?: string | null | undefined;
|
2192
2304
|
messengerIntegrationType?: "own" | "business" | undefined;
|
2193
2305
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -2248,6 +2360,10 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
|
|
2248
2360
|
mobileNumber: string;
|
2249
2361
|
apiSecret: string;
|
2250
2362
|
} | undefined;
|
2363
|
+
line?: {
|
2364
|
+
channelId: string;
|
2365
|
+
channelSecret: string;
|
2366
|
+
} | undefined;
|
2251
2367
|
lineRichMenuId?: string | null | undefined;
|
2252
2368
|
messengerIntegrationType?: "own" | "business" | undefined;
|
2253
2369
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -2296,6 +2412,10 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
|
|
2296
2412
|
mobileNumber: string;
|
2297
2413
|
apiSecret: string;
|
2298
2414
|
} | undefined;
|
2415
|
+
line?: {
|
2416
|
+
channelId: string;
|
2417
|
+
channelSecret: string;
|
2418
|
+
} | undefined;
|
2299
2419
|
lineRichMenuId?: string | null | undefined;
|
2300
2420
|
messengerIntegrationType?: "own" | "business" | undefined;
|
2301
2421
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -2349,6 +2469,10 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
|
|
2349
2469
|
mobileNumber: string;
|
2350
2470
|
apiSecret: string;
|
2351
2471
|
} | undefined;
|
2472
|
+
line?: {
|
2473
|
+
channelId: string;
|
2474
|
+
channelSecret: string;
|
2475
|
+
} | undefined;
|
2352
2476
|
lineRichMenuId?: string | null | undefined;
|
2353
2477
|
messengerIntegrationType?: "own" | "business" | undefined;
|
2354
2478
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -2441,6 +2565,10 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
|
|
2441
2565
|
mobileNumber: string;
|
2442
2566
|
apiSecret: string;
|
2443
2567
|
} | undefined;
|
2568
|
+
line?: {
|
2569
|
+
channelId: string;
|
2570
|
+
channelSecret: string;
|
2571
|
+
} | undefined;
|
2444
2572
|
lineRichMenuId?: string | null | undefined;
|
2445
2573
|
messengerIntegrationType?: "own" | "business" | undefined;
|
2446
2574
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -2701,6 +2829,10 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
|
|
2701
2829
|
mobileNumber: string;
|
2702
2830
|
apiSecret: string;
|
2703
2831
|
} | undefined;
|
2832
|
+
line?: {
|
2833
|
+
channelId: string;
|
2834
|
+
channelSecret: string;
|
2835
|
+
} | undefined;
|
2704
2836
|
lineRichMenuId?: string | null | undefined;
|
2705
2837
|
messengerIntegrationType?: "own" | "business" | undefined;
|
2706
2838
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -2832,6 +2964,10 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
|
|
2832
2964
|
mobileNumber: string;
|
2833
2965
|
apiSecret: string;
|
2834
2966
|
} | undefined;
|
2967
|
+
line?: {
|
2968
|
+
channelId: string;
|
2969
|
+
channelSecret: string;
|
2970
|
+
} | undefined;
|
2835
2971
|
lineRichMenuId?: string | null | undefined;
|
2836
2972
|
messengerIntegrationType?: "own" | "business" | undefined;
|
2837
2973
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -3213,6 +3349,16 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
|
|
3213
3349
|
mobileNumber: string;
|
3214
3350
|
apiSecret: string;
|
3215
3351
|
}>>;
|
3352
|
+
line: z.ZodOptional<z.ZodObject<{
|
3353
|
+
channelId: z.ZodString;
|
3354
|
+
channelSecret: z.ZodString;
|
3355
|
+
}, "strip", z.ZodTypeAny, {
|
3356
|
+
channelId: string;
|
3357
|
+
channelSecret: string;
|
3358
|
+
}, {
|
3359
|
+
channelId: string;
|
3360
|
+
channelSecret: string;
|
3361
|
+
}>>;
|
3216
3362
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
3217
3363
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
3218
3364
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
@@ -3243,6 +3389,10 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
|
|
3243
3389
|
mobileNumber: string;
|
3244
3390
|
apiSecret: string;
|
3245
3391
|
} | undefined;
|
3392
|
+
line?: {
|
3393
|
+
channelId: string;
|
3394
|
+
channelSecret: string;
|
3395
|
+
} | undefined;
|
3246
3396
|
lineRichMenuId?: string | null | undefined;
|
3247
3397
|
messengerIntegrationType?: "own" | "business" | undefined;
|
3248
3398
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -3273,6 +3423,10 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
|
|
3273
3423
|
mobileNumber: string;
|
3274
3424
|
apiSecret: string;
|
3275
3425
|
} | undefined;
|
3426
|
+
line?: {
|
3427
|
+
channelId: string;
|
3428
|
+
channelSecret: string;
|
3429
|
+
} | undefined;
|
3276
3430
|
lineRichMenuId?: string | null | undefined;
|
3277
3431
|
messengerIntegrationType?: "own" | "business" | undefined;
|
3278
3432
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -3333,6 +3487,10 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
|
|
3333
3487
|
mobileNumber: string;
|
3334
3488
|
apiSecret: string;
|
3335
3489
|
} | undefined;
|
3490
|
+
line?: {
|
3491
|
+
channelId: string;
|
3492
|
+
channelSecret: string;
|
3493
|
+
} | undefined;
|
3336
3494
|
lineRichMenuId?: string | null | undefined;
|
3337
3495
|
messengerIntegrationType?: "own" | "business" | undefined;
|
3338
3496
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -3381,6 +3539,10 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
|
|
3381
3539
|
mobileNumber: string;
|
3382
3540
|
apiSecret: string;
|
3383
3541
|
} | undefined;
|
3542
|
+
line?: {
|
3543
|
+
channelId: string;
|
3544
|
+
channelSecret: string;
|
3545
|
+
} | undefined;
|
3384
3546
|
lineRichMenuId?: string | null | undefined;
|
3385
3547
|
messengerIntegrationType?: "own" | "business" | undefined;
|
3386
3548
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -3434,6 +3596,10 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
|
|
3434
3596
|
mobileNumber: string;
|
3435
3597
|
apiSecret: string;
|
3436
3598
|
} | undefined;
|
3599
|
+
line?: {
|
3600
|
+
channelId: string;
|
3601
|
+
channelSecret: string;
|
3602
|
+
} | undefined;
|
3437
3603
|
lineRichMenuId?: string | null | undefined;
|
3438
3604
|
messengerIntegrationType?: "own" | "business" | undefined;
|
3439
3605
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -3526,6 +3692,10 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
|
|
3526
3692
|
mobileNumber: string;
|
3527
3693
|
apiSecret: string;
|
3528
3694
|
} | undefined;
|
3695
|
+
line?: {
|
3696
|
+
channelId: string;
|
3697
|
+
channelSecret: string;
|
3698
|
+
} | undefined;
|
3529
3699
|
lineRichMenuId?: string | null | undefined;
|
3530
3700
|
messengerIntegrationType?: "own" | "business" | undefined;
|
3531
3701
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -3667,6 +3837,10 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
|
|
3667
3837
|
mobileNumber: string;
|
3668
3838
|
apiSecret: string;
|
3669
3839
|
} | undefined;
|
3840
|
+
line?: {
|
3841
|
+
channelId: string;
|
3842
|
+
channelSecret: string;
|
3843
|
+
} | undefined;
|
3670
3844
|
lineRichMenuId?: string | null | undefined;
|
3671
3845
|
messengerIntegrationType?: "own" | "business" | undefined;
|
3672
3846
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -3802,6 +3976,10 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
|
|
3802
3976
|
mobileNumber: string;
|
3803
3977
|
apiSecret: string;
|
3804
3978
|
} | undefined;
|
3979
|
+
line?: {
|
3980
|
+
channelId: string;
|
3981
|
+
channelSecret: string;
|
3982
|
+
} | undefined;
|
3805
3983
|
lineRichMenuId?: string | null | undefined;
|
3806
3984
|
messengerIntegrationType?: "own" | "business" | undefined;
|
3807
3985
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -5865,6 +6043,16 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
5865
6043
|
mobileNumber: string;
|
5866
6044
|
apiSecret: string;
|
5867
6045
|
}>>;
|
6046
|
+
line: z.ZodOptional<z.ZodObject<{
|
6047
|
+
channelId: z.ZodString;
|
6048
|
+
channelSecret: z.ZodString;
|
6049
|
+
}, "strip", z.ZodTypeAny, {
|
6050
|
+
channelId: string;
|
6051
|
+
channelSecret: string;
|
6052
|
+
}, {
|
6053
|
+
channelId: string;
|
6054
|
+
channelSecret: string;
|
6055
|
+
}>>;
|
5868
6056
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
5869
6057
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
5870
6058
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
@@ -5895,6 +6083,10 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
5895
6083
|
mobileNumber: string;
|
5896
6084
|
apiSecret: string;
|
5897
6085
|
} | undefined;
|
6086
|
+
line?: {
|
6087
|
+
channelId: string;
|
6088
|
+
channelSecret: string;
|
6089
|
+
} | undefined;
|
5898
6090
|
lineRichMenuId?: string | null | undefined;
|
5899
6091
|
messengerIntegrationType?: "own" | "business" | undefined;
|
5900
6092
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -5925,6 +6117,10 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
5925
6117
|
mobileNumber: string;
|
5926
6118
|
apiSecret: string;
|
5927
6119
|
} | undefined;
|
6120
|
+
line?: {
|
6121
|
+
channelId: string;
|
6122
|
+
channelSecret: string;
|
6123
|
+
} | undefined;
|
5928
6124
|
lineRichMenuId?: string | null | undefined;
|
5929
6125
|
messengerIntegrationType?: "own" | "business" | undefined;
|
5930
6126
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -6189,6 +6385,10 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
6189
6385
|
mobileNumber: string;
|
6190
6386
|
apiSecret: string;
|
6191
6387
|
} | undefined;
|
6388
|
+
line?: {
|
6389
|
+
channelId: string;
|
6390
|
+
channelSecret: string;
|
6391
|
+
} | undefined;
|
6192
6392
|
lineRichMenuId?: string | null | undefined;
|
6193
6393
|
messengerIntegrationType?: "own" | "business" | undefined;
|
6194
6394
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -6284,6 +6484,10 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
6284
6484
|
mobileNumber: string;
|
6285
6485
|
apiSecret: string;
|
6286
6486
|
} | undefined;
|
6487
|
+
line?: {
|
6488
|
+
channelId: string;
|
6489
|
+
channelSecret: string;
|
6490
|
+
} | undefined;
|
6287
6491
|
lineRichMenuId?: string | null | undefined;
|
6288
6492
|
messengerIntegrationType?: "own" | "business" | undefined;
|
6289
6493
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -6943,6 +7147,10 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
6943
7147
|
mobileNumber: string;
|
6944
7148
|
apiSecret: string;
|
6945
7149
|
} | undefined;
|
7150
|
+
line?: {
|
7151
|
+
channelId: string;
|
7152
|
+
channelSecret: string;
|
7153
|
+
} | undefined;
|
6946
7154
|
lineRichMenuId?: string | null | undefined;
|
6947
7155
|
messengerIntegrationType?: "own" | "business" | undefined;
|
6948
7156
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -7372,6 +7580,10 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
7372
7580
|
mobileNumber: string;
|
7373
7581
|
apiSecret: string;
|
7374
7582
|
} | undefined;
|
7583
|
+
line?: {
|
7584
|
+
channelId: string;
|
7585
|
+
channelSecret: string;
|
7586
|
+
} | undefined;
|
7375
7587
|
lineRichMenuId?: string | null | undefined;
|
7376
7588
|
messengerIntegrationType?: "own" | "business" | undefined;
|
7377
7589
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -10552,6 +10764,16 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
10552
10764
|
mobileNumber: string;
|
10553
10765
|
apiSecret: string;
|
10554
10766
|
}>>;
|
10767
|
+
line: z.ZodOptional<z.ZodObject<{
|
10768
|
+
channelId: z.ZodString;
|
10769
|
+
channelSecret: z.ZodString;
|
10770
|
+
}, "strip", z.ZodTypeAny, {
|
10771
|
+
channelId: string;
|
10772
|
+
channelSecret: string;
|
10773
|
+
}, {
|
10774
|
+
channelId: string;
|
10775
|
+
channelSecret: string;
|
10776
|
+
}>>;
|
10555
10777
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
10556
10778
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
10557
10779
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
@@ -10582,6 +10804,10 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
10582
10804
|
mobileNumber: string;
|
10583
10805
|
apiSecret: string;
|
10584
10806
|
} | undefined;
|
10807
|
+
line?: {
|
10808
|
+
channelId: string;
|
10809
|
+
channelSecret: string;
|
10810
|
+
} | undefined;
|
10585
10811
|
lineRichMenuId?: string | null | undefined;
|
10586
10812
|
messengerIntegrationType?: "own" | "business" | undefined;
|
10587
10813
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -10612,6 +10838,10 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
10612
10838
|
mobileNumber: string;
|
10613
10839
|
apiSecret: string;
|
10614
10840
|
} | undefined;
|
10841
|
+
line?: {
|
10842
|
+
channelId: string;
|
10843
|
+
channelSecret: string;
|
10844
|
+
} | undefined;
|
10615
10845
|
lineRichMenuId?: string | null | undefined;
|
10616
10846
|
messengerIntegrationType?: "own" | "business" | undefined;
|
10617
10847
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -10876,6 +11106,10 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
10876
11106
|
mobileNumber: string;
|
10877
11107
|
apiSecret: string;
|
10878
11108
|
} | undefined;
|
11109
|
+
line?: {
|
11110
|
+
channelId: string;
|
11111
|
+
channelSecret: string;
|
11112
|
+
} | undefined;
|
10879
11113
|
lineRichMenuId?: string | null | undefined;
|
10880
11114
|
messengerIntegrationType?: "own" | "business" | undefined;
|
10881
11115
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -10971,6 +11205,10 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
10971
11205
|
mobileNumber: string;
|
10972
11206
|
apiSecret: string;
|
10973
11207
|
} | undefined;
|
11208
|
+
line?: {
|
11209
|
+
channelId: string;
|
11210
|
+
channelSecret: string;
|
11211
|
+
} | undefined;
|
10974
11212
|
lineRichMenuId?: string | null | undefined;
|
10975
11213
|
messengerIntegrationType?: "own" | "business" | undefined;
|
10976
11214
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -11630,6 +11868,10 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
11630
11868
|
mobileNumber: string;
|
11631
11869
|
apiSecret: string;
|
11632
11870
|
} | undefined;
|
11871
|
+
line?: {
|
11872
|
+
channelId: string;
|
11873
|
+
channelSecret: string;
|
11874
|
+
} | undefined;
|
11633
11875
|
lineRichMenuId?: string | null | undefined;
|
11634
11876
|
messengerIntegrationType?: "own" | "business" | undefined;
|
11635
11877
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -12059,6 +12301,10 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
12059
12301
|
mobileNumber: string;
|
12060
12302
|
apiSecret: string;
|
12061
12303
|
} | undefined;
|
12304
|
+
line?: {
|
12305
|
+
channelId: string;
|
12306
|
+
channelSecret: string;
|
12307
|
+
} | undefined;
|
12062
12308
|
lineRichMenuId?: string | null | undefined;
|
12063
12309
|
messengerIntegrationType?: "own" | "business" | undefined;
|
12064
12310
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -14261,6 +14507,10 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
14261
14507
|
mobileNumber: string;
|
14262
14508
|
apiSecret: string;
|
14263
14509
|
} | undefined;
|
14510
|
+
line?: {
|
14511
|
+
channelId: string;
|
14512
|
+
channelSecret: string;
|
14513
|
+
} | undefined;
|
14264
14514
|
lineRichMenuId?: string | null | undefined;
|
14265
14515
|
messengerIntegrationType?: "own" | "business" | undefined;
|
14266
14516
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -15027,6 +15277,10 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
15027
15277
|
mobileNumber: string;
|
15028
15278
|
apiSecret: string;
|
15029
15279
|
} | undefined;
|
15280
|
+
line?: {
|
15281
|
+
channelId: string;
|
15282
|
+
channelSecret: string;
|
15283
|
+
} | undefined;
|
15030
15284
|
lineRichMenuId?: string | null | undefined;
|
15031
15285
|
messengerIntegrationType?: "own" | "business" | undefined;
|
15032
15286
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -15794,6 +16048,10 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
15794
16048
|
mobileNumber: string;
|
15795
16049
|
apiSecret: string;
|
15796
16050
|
} | undefined;
|
16051
|
+
line?: {
|
16052
|
+
channelId: string;
|
16053
|
+
channelSecret: string;
|
16054
|
+
} | undefined;
|
15797
16055
|
lineRichMenuId?: string | null | undefined;
|
15798
16056
|
messengerIntegrationType?: "own" | "business" | undefined;
|
15799
16057
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -16560,6 +16818,10 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
16560
16818
|
mobileNumber: string;
|
16561
16819
|
apiSecret: string;
|
16562
16820
|
} | undefined;
|
16821
|
+
line?: {
|
16822
|
+
channelId: string;
|
16823
|
+
channelSecret: string;
|
16824
|
+
} | undefined;
|
16563
16825
|
lineRichMenuId?: string | null | undefined;
|
16564
16826
|
messengerIntegrationType?: "own" | "business" | undefined;
|
16565
16827
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -17327,6 +17589,10 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
17327
17589
|
mobileNumber: string;
|
17328
17590
|
apiSecret: string;
|
17329
17591
|
} | undefined;
|
17592
|
+
line?: {
|
17593
|
+
channelId: string;
|
17594
|
+
channelSecret: string;
|
17595
|
+
} | undefined;
|
17330
17596
|
lineRichMenuId?: string | null | undefined;
|
17331
17597
|
messengerIntegrationType?: "own" | "business" | undefined;
|
17332
17598
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -18093,6 +18359,10 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
18093
18359
|
mobileNumber: string;
|
18094
18360
|
apiSecret: string;
|
18095
18361
|
} | undefined;
|
18362
|
+
line?: {
|
18363
|
+
channelId: string;
|
18364
|
+
channelSecret: string;
|
18365
|
+
} | undefined;
|
18096
18366
|
lineRichMenuId?: string | null | undefined;
|
18097
18367
|
messengerIntegrationType?: "own" | "business" | undefined;
|
18098
18368
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -18862,6 +19132,10 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
18862
19132
|
mobileNumber: string;
|
18863
19133
|
apiSecret: string;
|
18864
19134
|
} | undefined;
|
19135
|
+
line?: {
|
19136
|
+
channelId: string;
|
19137
|
+
channelSecret: string;
|
19138
|
+
} | undefined;
|
18865
19139
|
lineRichMenuId?: string | null | undefined;
|
18866
19140
|
messengerIntegrationType?: "own" | "business" | undefined;
|
18867
19141
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -19628,6 +19902,10 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
19628
19902
|
mobileNumber: string;
|
19629
19903
|
apiSecret: string;
|
19630
19904
|
} | undefined;
|
19905
|
+
line?: {
|
19906
|
+
channelId: string;
|
19907
|
+
channelSecret: string;
|
19908
|
+
} | undefined;
|
19631
19909
|
lineRichMenuId?: string | null | undefined;
|
19632
19910
|
messengerIntegrationType?: "own" | "business" | undefined;
|
19633
19911
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -20398,6 +20676,10 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
20398
20676
|
mobileNumber: string;
|
20399
20677
|
apiSecret: string;
|
20400
20678
|
} | undefined;
|
20679
|
+
line?: {
|
20680
|
+
channelId: string;
|
20681
|
+
channelSecret: string;
|
20682
|
+
} | undefined;
|
20401
20683
|
lineRichMenuId?: string | null | undefined;
|
20402
20684
|
messengerIntegrationType?: "own" | "business" | undefined;
|
20403
20685
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -21164,6 +21446,10 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
21164
21446
|
mobileNumber: string;
|
21165
21447
|
apiSecret: string;
|
21166
21448
|
} | undefined;
|
21449
|
+
line?: {
|
21450
|
+
channelId: string;
|
21451
|
+
channelSecret: string;
|
21452
|
+
} | undefined;
|
21167
21453
|
lineRichMenuId?: string | null | undefined;
|
21168
21454
|
messengerIntegrationType?: "own" | "business" | undefined;
|
21169
21455
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -21858,6 +22144,16 @@ export declare const ChannelServiceResponseSchema: z.ZodObject<{
|
|
21858
22144
|
mobileNumber: string;
|
21859
22145
|
apiSecret: string;
|
21860
22146
|
}>>;
|
22147
|
+
line: z.ZodOptional<z.ZodObject<{
|
22148
|
+
channelId: z.ZodString;
|
22149
|
+
channelSecret: z.ZodString;
|
22150
|
+
}, "strip", z.ZodTypeAny, {
|
22151
|
+
channelId: string;
|
22152
|
+
channelSecret: string;
|
22153
|
+
}, {
|
22154
|
+
channelId: string;
|
22155
|
+
channelSecret: string;
|
22156
|
+
}>>;
|
21861
22157
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
21862
22158
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
21863
22159
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
@@ -21888,6 +22184,10 @@ export declare const ChannelServiceResponseSchema: z.ZodObject<{
|
|
21888
22184
|
mobileNumber: string;
|
21889
22185
|
apiSecret: string;
|
21890
22186
|
} | undefined;
|
22187
|
+
line?: {
|
22188
|
+
channelId: string;
|
22189
|
+
channelSecret: string;
|
22190
|
+
} | undefined;
|
21891
22191
|
lineRichMenuId?: string | null | undefined;
|
21892
22192
|
messengerIntegrationType?: "own" | "business" | undefined;
|
21893
22193
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -21918,6 +22218,10 @@ export declare const ChannelServiceResponseSchema: z.ZodObject<{
|
|
21918
22218
|
mobileNumber: string;
|
21919
22219
|
apiSecret: string;
|
21920
22220
|
} | undefined;
|
22221
|
+
line?: {
|
22222
|
+
channelId: string;
|
22223
|
+
channelSecret: string;
|
22224
|
+
} | undefined;
|
21921
22225
|
lineRichMenuId?: string | null | undefined;
|
21922
22226
|
messengerIntegrationType?: "own" | "business" | undefined;
|
21923
22227
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -21978,6 +22282,10 @@ export declare const ChannelServiceResponseSchema: z.ZodObject<{
|
|
21978
22282
|
mobileNumber: string;
|
21979
22283
|
apiSecret: string;
|
21980
22284
|
} | undefined;
|
22285
|
+
line?: {
|
22286
|
+
channelId: string;
|
22287
|
+
channelSecret: string;
|
22288
|
+
} | undefined;
|
21981
22289
|
lineRichMenuId?: string | null | undefined;
|
21982
22290
|
messengerIntegrationType?: "own" | "business" | undefined;
|
21983
22291
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -22026,6 +22334,10 @@ export declare const ChannelServiceResponseSchema: z.ZodObject<{
|
|
22026
22334
|
mobileNumber: string;
|
22027
22335
|
apiSecret: string;
|
22028
22336
|
} | undefined;
|
22337
|
+
line?: {
|
22338
|
+
channelId: string;
|
22339
|
+
channelSecret: string;
|
22340
|
+
} | undefined;
|
22029
22341
|
lineRichMenuId?: string | null | undefined;
|
22030
22342
|
messengerIntegrationType?: "own" | "business" | undefined;
|
22031
22343
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -22076,6 +22388,10 @@ export declare const ChannelServiceResponseSchema: z.ZodObject<{
|
|
22076
22388
|
mobileNumber: string;
|
22077
22389
|
apiSecret: string;
|
22078
22390
|
} | undefined;
|
22391
|
+
line?: {
|
22392
|
+
channelId: string;
|
22393
|
+
channelSecret: string;
|
22394
|
+
} | undefined;
|
22079
22395
|
lineRichMenuId?: string | null | undefined;
|
22080
22396
|
messengerIntegrationType?: "own" | "business" | undefined;
|
22081
22397
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -22127,6 +22443,10 @@ export declare const ChannelServiceResponseSchema: z.ZodObject<{
|
|
22127
22443
|
mobileNumber: string;
|
22128
22444
|
apiSecret: string;
|
22129
22445
|
} | undefined;
|
22446
|
+
line?: {
|
22447
|
+
channelId: string;
|
22448
|
+
channelSecret: string;
|
22449
|
+
} | undefined;
|
22130
22450
|
lineRichMenuId?: string | null | undefined;
|
22131
22451
|
messengerIntegrationType?: "own" | "business" | undefined;
|
22132
22452
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -23585,6 +23905,16 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
23585
23905
|
mobileNumber: string;
|
23586
23906
|
apiSecret: string;
|
23587
23907
|
}>>;
|
23908
|
+
line: z.ZodOptional<z.ZodObject<{
|
23909
|
+
channelId: z.ZodString;
|
23910
|
+
channelSecret: z.ZodString;
|
23911
|
+
}, "strip", z.ZodTypeAny, {
|
23912
|
+
channelId: string;
|
23913
|
+
channelSecret: string;
|
23914
|
+
}, {
|
23915
|
+
channelId: string;
|
23916
|
+
channelSecret: string;
|
23917
|
+
}>>;
|
23588
23918
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
23589
23919
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
23590
23920
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
@@ -23615,6 +23945,10 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
23615
23945
|
mobileNumber: string;
|
23616
23946
|
apiSecret: string;
|
23617
23947
|
} | undefined;
|
23948
|
+
line?: {
|
23949
|
+
channelId: string;
|
23950
|
+
channelSecret: string;
|
23951
|
+
} | undefined;
|
23618
23952
|
lineRichMenuId?: string | null | undefined;
|
23619
23953
|
messengerIntegrationType?: "own" | "business" | undefined;
|
23620
23954
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -23645,6 +23979,10 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
23645
23979
|
mobileNumber: string;
|
23646
23980
|
apiSecret: string;
|
23647
23981
|
} | undefined;
|
23982
|
+
line?: {
|
23983
|
+
channelId: string;
|
23984
|
+
channelSecret: string;
|
23985
|
+
} | undefined;
|
23648
23986
|
lineRichMenuId?: string | null | undefined;
|
23649
23987
|
messengerIntegrationType?: "own" | "business" | undefined;
|
23650
23988
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -23705,6 +24043,10 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
23705
24043
|
mobileNumber: string;
|
23706
24044
|
apiSecret: string;
|
23707
24045
|
} | undefined;
|
24046
|
+
line?: {
|
24047
|
+
channelId: string;
|
24048
|
+
channelSecret: string;
|
24049
|
+
} | undefined;
|
23708
24050
|
lineRichMenuId?: string | null | undefined;
|
23709
24051
|
messengerIntegrationType?: "own" | "business" | undefined;
|
23710
24052
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -23753,6 +24095,10 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
23753
24095
|
mobileNumber: string;
|
23754
24096
|
apiSecret: string;
|
23755
24097
|
} | undefined;
|
24098
|
+
line?: {
|
24099
|
+
channelId: string;
|
24100
|
+
channelSecret: string;
|
24101
|
+
} | undefined;
|
23756
24102
|
lineRichMenuId?: string | null | undefined;
|
23757
24103
|
messengerIntegrationType?: "own" | "business" | undefined;
|
23758
24104
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -24550,6 +24896,10 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
24550
24896
|
mobileNumber: string;
|
24551
24897
|
apiSecret: string;
|
24552
24898
|
} | undefined;
|
24899
|
+
line?: {
|
24900
|
+
channelId: string;
|
24901
|
+
channelSecret: string;
|
24902
|
+
} | undefined;
|
24553
24903
|
lineRichMenuId?: string | null | undefined;
|
24554
24904
|
messengerIntegrationType?: "own" | "business" | undefined;
|
24555
24905
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -24903,6 +25253,10 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
24903
25253
|
mobileNumber: string;
|
24904
25254
|
apiSecret: string;
|
24905
25255
|
} | undefined;
|
25256
|
+
line?: {
|
25257
|
+
channelId: string;
|
25258
|
+
channelSecret: string;
|
25259
|
+
} | undefined;
|
24906
25260
|
lineRichMenuId?: string | null | undefined;
|
24907
25261
|
messengerIntegrationType?: "own" | "business" | undefined;
|
24908
25262
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -25912,6 +26266,10 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
25912
26266
|
mobileNumber: string;
|
25913
26267
|
apiSecret: string;
|
25914
26268
|
} | undefined;
|
26269
|
+
line?: {
|
26270
|
+
channelId: string;
|
26271
|
+
channelSecret: string;
|
26272
|
+
} | undefined;
|
25915
26273
|
lineRichMenuId?: string | null | undefined;
|
25916
26274
|
messengerIntegrationType?: "own" | "business" | undefined;
|
25917
26275
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -26428,6 +26786,10 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
26428
26786
|
mobileNumber: string;
|
26429
26787
|
apiSecret: string;
|
26430
26788
|
} | undefined;
|
26789
|
+
line?: {
|
26790
|
+
channelId: string;
|
26791
|
+
channelSecret: string;
|
26792
|
+
} | undefined;
|
26431
26793
|
lineRichMenuId?: string | null | undefined;
|
26432
26794
|
messengerIntegrationType?: "own" | "business" | undefined;
|
26433
26795
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -26946,6 +27308,10 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
26946
27308
|
mobileNumber: string;
|
26947
27309
|
apiSecret: string;
|
26948
27310
|
} | undefined;
|
27311
|
+
line?: {
|
27312
|
+
channelId: string;
|
27313
|
+
channelSecret: string;
|
27314
|
+
} | undefined;
|
26949
27315
|
lineRichMenuId?: string | null | undefined;
|
26950
27316
|
messengerIntegrationType?: "own" | "business" | undefined;
|
26951
27317
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -27464,6 +27830,10 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
27464
27830
|
mobileNumber: string;
|
27465
27831
|
apiSecret: string;
|
27466
27832
|
} | undefined;
|
27833
|
+
line?: {
|
27834
|
+
channelId: string;
|
27835
|
+
channelSecret: string;
|
27836
|
+
} | undefined;
|
27467
27837
|
lineRichMenuId?: string | null | undefined;
|
27468
27838
|
messengerIntegrationType?: "own" | "business" | undefined;
|
27469
27839
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|