@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
@@ -118,6 +118,16 @@ export declare const telegramContract: {
|
|
118
118
|
mobileNumber: string;
|
119
119
|
apiSecret: string;
|
120
120
|
}>>;
|
121
|
+
line: z.ZodOptional<z.ZodObject<{
|
122
|
+
channelId: z.ZodString;
|
123
|
+
channelSecret: z.ZodString;
|
124
|
+
}, "strip", z.ZodTypeAny, {
|
125
|
+
channelId: string;
|
126
|
+
channelSecret: string;
|
127
|
+
}, {
|
128
|
+
channelId: string;
|
129
|
+
channelSecret: string;
|
130
|
+
}>>;
|
121
131
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
122
132
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
123
133
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
@@ -148,6 +158,10 @@ export declare const telegramContract: {
|
|
148
158
|
mobileNumber: string;
|
149
159
|
apiSecret: string;
|
150
160
|
} | undefined;
|
161
|
+
line?: {
|
162
|
+
channelId: string;
|
163
|
+
channelSecret: string;
|
164
|
+
} | undefined;
|
151
165
|
lineRichMenuId?: string | null | undefined;
|
152
166
|
messengerIntegrationType?: "own" | "business" | undefined;
|
153
167
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -178,6 +192,10 @@ export declare const telegramContract: {
|
|
178
192
|
mobileNumber: string;
|
179
193
|
apiSecret: string;
|
180
194
|
} | undefined;
|
195
|
+
line?: {
|
196
|
+
channelId: string;
|
197
|
+
channelSecret: string;
|
198
|
+
} | undefined;
|
181
199
|
lineRichMenuId?: string | null | undefined;
|
182
200
|
messengerIntegrationType?: "own" | "business" | undefined;
|
183
201
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -442,6 +460,10 @@ export declare const telegramContract: {
|
|
442
460
|
mobileNumber: string;
|
443
461
|
apiSecret: string;
|
444
462
|
} | undefined;
|
463
|
+
line?: {
|
464
|
+
channelId: string;
|
465
|
+
channelSecret: string;
|
466
|
+
} | undefined;
|
445
467
|
lineRichMenuId?: string | null | undefined;
|
446
468
|
messengerIntegrationType?: "own" | "business" | undefined;
|
447
469
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -537,6 +559,10 @@ export declare const telegramContract: {
|
|
537
559
|
mobileNumber: string;
|
538
560
|
apiSecret: string;
|
539
561
|
} | undefined;
|
562
|
+
line?: {
|
563
|
+
channelId: string;
|
564
|
+
channelSecret: string;
|
565
|
+
} | undefined;
|
540
566
|
lineRichMenuId?: string | null | undefined;
|
541
567
|
messengerIntegrationType?: "own" | "business" | undefined;
|
542
568
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -634,6 +660,10 @@ export declare const telegramContract: {
|
|
634
660
|
mobileNumber: string;
|
635
661
|
apiSecret: string;
|
636
662
|
} | undefined;
|
663
|
+
line?: {
|
664
|
+
channelId: string;
|
665
|
+
channelSecret: string;
|
666
|
+
} | undefined;
|
637
667
|
lineRichMenuId?: string | null | undefined;
|
638
668
|
messengerIntegrationType?: "own" | "business" | undefined;
|
639
669
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -732,6 +762,10 @@ export declare const telegramContract: {
|
|
732
762
|
mobileNumber: string;
|
733
763
|
apiSecret: string;
|
734
764
|
} | undefined;
|
765
|
+
line?: {
|
766
|
+
channelId: string;
|
767
|
+
channelSecret: string;
|
768
|
+
} | undefined;
|
735
769
|
lineRichMenuId?: string | null | undefined;
|
736
770
|
messengerIntegrationType?: "own" | "business" | undefined;
|
737
771
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -900,6 +934,16 @@ export declare const telegramContract: {
|
|
900
934
|
mobileNumber: string;
|
901
935
|
apiSecret: string;
|
902
936
|
}>>;
|
937
|
+
line: z.ZodOptional<z.ZodObject<{
|
938
|
+
channelId: z.ZodString;
|
939
|
+
channelSecret: z.ZodString;
|
940
|
+
}, "strip", z.ZodTypeAny, {
|
941
|
+
channelId: string;
|
942
|
+
channelSecret: string;
|
943
|
+
}, {
|
944
|
+
channelId: string;
|
945
|
+
channelSecret: string;
|
946
|
+
}>>;
|
903
947
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
904
948
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
905
949
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
@@ -930,6 +974,10 @@ export declare const telegramContract: {
|
|
930
974
|
mobileNumber: string;
|
931
975
|
apiSecret: string;
|
932
976
|
} | undefined;
|
977
|
+
line?: {
|
978
|
+
channelId: string;
|
979
|
+
channelSecret: string;
|
980
|
+
} | undefined;
|
933
981
|
lineRichMenuId?: string | null | undefined;
|
934
982
|
messengerIntegrationType?: "own" | "business" | undefined;
|
935
983
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -960,6 +1008,10 @@ export declare const telegramContract: {
|
|
960
1008
|
mobileNumber: string;
|
961
1009
|
apiSecret: string;
|
962
1010
|
} | undefined;
|
1011
|
+
line?: {
|
1012
|
+
channelId: string;
|
1013
|
+
channelSecret: string;
|
1014
|
+
} | undefined;
|
963
1015
|
lineRichMenuId?: string | null | undefined;
|
964
1016
|
messengerIntegrationType?: "own" | "business" | undefined;
|
965
1017
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -1020,6 +1072,10 @@ export declare const telegramContract: {
|
|
1020
1072
|
mobileNumber: string;
|
1021
1073
|
apiSecret: string;
|
1022
1074
|
} | undefined;
|
1075
|
+
line?: {
|
1076
|
+
channelId: string;
|
1077
|
+
channelSecret: string;
|
1078
|
+
} | undefined;
|
1023
1079
|
lineRichMenuId?: string | null | undefined;
|
1024
1080
|
messengerIntegrationType?: "own" | "business" | undefined;
|
1025
1081
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -1068,6 +1124,10 @@ export declare const telegramContract: {
|
|
1068
1124
|
mobileNumber: string;
|
1069
1125
|
apiSecret: string;
|
1070
1126
|
} | undefined;
|
1127
|
+
line?: {
|
1128
|
+
channelId: string;
|
1129
|
+
channelSecret: string;
|
1130
|
+
} | undefined;
|
1071
1131
|
lineRichMenuId?: string | null | undefined;
|
1072
1132
|
messengerIntegrationType?: "own" | "business" | undefined;
|
1073
1133
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -1118,6 +1178,10 @@ export declare const telegramContract: {
|
|
1118
1178
|
mobileNumber: string;
|
1119
1179
|
apiSecret: string;
|
1120
1180
|
} | undefined;
|
1181
|
+
line?: {
|
1182
|
+
channelId: string;
|
1183
|
+
channelSecret: string;
|
1184
|
+
} | undefined;
|
1121
1185
|
lineRichMenuId?: string | null | undefined;
|
1122
1186
|
messengerIntegrationType?: "own" | "business" | undefined;
|
1123
1187
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -1169,6 +1233,10 @@ export declare const telegramContract: {
|
|
1169
1233
|
mobileNumber: string;
|
1170
1234
|
apiSecret: string;
|
1171
1235
|
} | undefined;
|
1236
|
+
line?: {
|
1237
|
+
channelId: string;
|
1238
|
+
channelSecret: string;
|
1239
|
+
} | undefined;
|
1172
1240
|
lineRichMenuId?: string | null | undefined;
|
1173
1241
|
messengerIntegrationType?: "own" | "business" | undefined;
|
1174
1242
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -1403,6 +1471,16 @@ export declare const telegramContract: {
|
|
1403
1471
|
mobileNumber: string;
|
1404
1472
|
apiSecret: string;
|
1405
1473
|
}>>;
|
1474
|
+
line: z.ZodOptional<z.ZodObject<{
|
1475
|
+
channelId: z.ZodString;
|
1476
|
+
channelSecret: z.ZodString;
|
1477
|
+
}, "strip", z.ZodTypeAny, {
|
1478
|
+
channelId: string;
|
1479
|
+
channelSecret: string;
|
1480
|
+
}, {
|
1481
|
+
channelId: string;
|
1482
|
+
channelSecret: string;
|
1483
|
+
}>>;
|
1406
1484
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
1407
1485
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
1408
1486
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
@@ -1433,6 +1511,10 @@ export declare const telegramContract: {
|
|
1433
1511
|
mobileNumber: string;
|
1434
1512
|
apiSecret: string;
|
1435
1513
|
} | undefined;
|
1514
|
+
line?: {
|
1515
|
+
channelId: string;
|
1516
|
+
channelSecret: string;
|
1517
|
+
} | undefined;
|
1436
1518
|
lineRichMenuId?: string | null | undefined;
|
1437
1519
|
messengerIntegrationType?: "own" | "business" | undefined;
|
1438
1520
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -1463,6 +1545,10 @@ export declare const telegramContract: {
|
|
1463
1545
|
mobileNumber: string;
|
1464
1546
|
apiSecret: string;
|
1465
1547
|
} | undefined;
|
1548
|
+
line?: {
|
1549
|
+
channelId: string;
|
1550
|
+
channelSecret: string;
|
1551
|
+
} | undefined;
|
1466
1552
|
lineRichMenuId?: string | null | undefined;
|
1467
1553
|
messengerIntegrationType?: "own" | "business" | undefined;
|
1468
1554
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -1523,6 +1609,10 @@ export declare const telegramContract: {
|
|
1523
1609
|
mobileNumber: string;
|
1524
1610
|
apiSecret: string;
|
1525
1611
|
} | undefined;
|
1612
|
+
line?: {
|
1613
|
+
channelId: string;
|
1614
|
+
channelSecret: string;
|
1615
|
+
} | undefined;
|
1526
1616
|
lineRichMenuId?: string | null | undefined;
|
1527
1617
|
messengerIntegrationType?: "own" | "business" | undefined;
|
1528
1618
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -1571,6 +1661,10 @@ export declare const telegramContract: {
|
|
1571
1661
|
mobileNumber: string;
|
1572
1662
|
apiSecret: string;
|
1573
1663
|
} | undefined;
|
1664
|
+
line?: {
|
1665
|
+
channelId: string;
|
1666
|
+
channelSecret: string;
|
1667
|
+
} | undefined;
|
1574
1668
|
lineRichMenuId?: string | null | undefined;
|
1575
1669
|
messengerIntegrationType?: "own" | "business" | undefined;
|
1576
1670
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -1624,6 +1718,10 @@ export declare const telegramContract: {
|
|
1624
1718
|
mobileNumber: string;
|
1625
1719
|
apiSecret: string;
|
1626
1720
|
} | undefined;
|
1721
|
+
line?: {
|
1722
|
+
channelId: string;
|
1723
|
+
channelSecret: string;
|
1724
|
+
} | undefined;
|
1627
1725
|
lineRichMenuId?: string | null | undefined;
|
1628
1726
|
messengerIntegrationType?: "own" | "business" | undefined;
|
1629
1727
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -1716,6 +1814,10 @@ export declare const telegramContract: {
|
|
1716
1814
|
mobileNumber: string;
|
1717
1815
|
apiSecret: string;
|
1718
1816
|
} | undefined;
|
1817
|
+
line?: {
|
1818
|
+
channelId: string;
|
1819
|
+
channelSecret: string;
|
1820
|
+
} | undefined;
|
1719
1821
|
lineRichMenuId?: string | null | undefined;
|
1720
1822
|
messengerIntegrationType?: "own" | "business" | undefined;
|
1721
1823
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -1976,6 +2078,10 @@ export declare const telegramContract: {
|
|
1976
2078
|
mobileNumber: string;
|
1977
2079
|
apiSecret: string;
|
1978
2080
|
} | undefined;
|
2081
|
+
line?: {
|
2082
|
+
channelId: string;
|
2083
|
+
channelSecret: string;
|
2084
|
+
} | undefined;
|
1979
2085
|
lineRichMenuId?: string | null | undefined;
|
1980
2086
|
messengerIntegrationType?: "own" | "business" | undefined;
|
1981
2087
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -2107,6 +2213,10 @@ export declare const telegramContract: {
|
|
2107
2213
|
mobileNumber: string;
|
2108
2214
|
apiSecret: string;
|
2109
2215
|
} | undefined;
|
2216
|
+
line?: {
|
2217
|
+
channelId: string;
|
2218
|
+
channelSecret: string;
|
2219
|
+
} | undefined;
|
2110
2220
|
lineRichMenuId?: string | null | undefined;
|
2111
2221
|
messengerIntegrationType?: "own" | "business" | undefined;
|
2112
2222
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -4168,6 +4278,16 @@ export declare const telegramContract: {
|
|
4168
4278
|
mobileNumber: string;
|
4169
4279
|
apiSecret: string;
|
4170
4280
|
}>>;
|
4281
|
+
line: z.ZodOptional<z.ZodObject<{
|
4282
|
+
channelId: z.ZodString;
|
4283
|
+
channelSecret: z.ZodString;
|
4284
|
+
}, "strip", z.ZodTypeAny, {
|
4285
|
+
channelId: string;
|
4286
|
+
channelSecret: string;
|
4287
|
+
}, {
|
4288
|
+
channelId: string;
|
4289
|
+
channelSecret: string;
|
4290
|
+
}>>;
|
4171
4291
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
4172
4292
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
4173
4293
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
@@ -4198,6 +4318,10 @@ export declare const telegramContract: {
|
|
4198
4318
|
mobileNumber: string;
|
4199
4319
|
apiSecret: string;
|
4200
4320
|
} | undefined;
|
4321
|
+
line?: {
|
4322
|
+
channelId: string;
|
4323
|
+
channelSecret: string;
|
4324
|
+
} | undefined;
|
4201
4325
|
lineRichMenuId?: string | null | undefined;
|
4202
4326
|
messengerIntegrationType?: "own" | "business" | undefined;
|
4203
4327
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -4228,6 +4352,10 @@ export declare const telegramContract: {
|
|
4228
4352
|
mobileNumber: string;
|
4229
4353
|
apiSecret: string;
|
4230
4354
|
} | undefined;
|
4355
|
+
line?: {
|
4356
|
+
channelId: string;
|
4357
|
+
channelSecret: string;
|
4358
|
+
} | undefined;
|
4231
4359
|
lineRichMenuId?: string | null | undefined;
|
4232
4360
|
messengerIntegrationType?: "own" | "business" | undefined;
|
4233
4361
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -4492,6 +4620,10 @@ export declare const telegramContract: {
|
|
4492
4620
|
mobileNumber: string;
|
4493
4621
|
apiSecret: string;
|
4494
4622
|
} | undefined;
|
4623
|
+
line?: {
|
4624
|
+
channelId: string;
|
4625
|
+
channelSecret: string;
|
4626
|
+
} | undefined;
|
4495
4627
|
lineRichMenuId?: string | null | undefined;
|
4496
4628
|
messengerIntegrationType?: "own" | "business" | undefined;
|
4497
4629
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -4587,6 +4719,10 @@ export declare const telegramContract: {
|
|
4587
4719
|
mobileNumber: string;
|
4588
4720
|
apiSecret: string;
|
4589
4721
|
} | undefined;
|
4722
|
+
line?: {
|
4723
|
+
channelId: string;
|
4724
|
+
channelSecret: string;
|
4725
|
+
} | undefined;
|
4590
4726
|
lineRichMenuId?: string | null | undefined;
|
4591
4727
|
messengerIntegrationType?: "own" | "business" | undefined;
|
4592
4728
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -5246,6 +5382,10 @@ export declare const telegramContract: {
|
|
5246
5382
|
mobileNumber: string;
|
5247
5383
|
apiSecret: string;
|
5248
5384
|
} | undefined;
|
5385
|
+
line?: {
|
5386
|
+
channelId: string;
|
5387
|
+
channelSecret: string;
|
5388
|
+
} | undefined;
|
5249
5389
|
lineRichMenuId?: string | null | undefined;
|
5250
5390
|
messengerIntegrationType?: "own" | "business" | undefined;
|
5251
5391
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -5675,6 +5815,10 @@ export declare const telegramContract: {
|
|
5675
5815
|
mobileNumber: string;
|
5676
5816
|
apiSecret: string;
|
5677
5817
|
} | undefined;
|
5818
|
+
line?: {
|
5819
|
+
channelId: string;
|
5820
|
+
channelSecret: string;
|
5821
|
+
} | undefined;
|
5678
5822
|
lineRichMenuId?: string | null | undefined;
|
5679
5823
|
messengerIntegrationType?: "own" | "business" | undefined;
|
5680
5824
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -8855,6 +8999,16 @@ export declare const telegramContract: {
|
|
8855
8999
|
mobileNumber: string;
|
8856
9000
|
apiSecret: string;
|
8857
9001
|
}>>;
|
9002
|
+
line: z.ZodOptional<z.ZodObject<{
|
9003
|
+
channelId: z.ZodString;
|
9004
|
+
channelSecret: z.ZodString;
|
9005
|
+
}, "strip", z.ZodTypeAny, {
|
9006
|
+
channelId: string;
|
9007
|
+
channelSecret: string;
|
9008
|
+
}, {
|
9009
|
+
channelId: string;
|
9010
|
+
channelSecret: string;
|
9011
|
+
}>>;
|
8858
9012
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
8859
9013
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
8860
9014
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
@@ -8885,6 +9039,10 @@ export declare const telegramContract: {
|
|
8885
9039
|
mobileNumber: string;
|
8886
9040
|
apiSecret: string;
|
8887
9041
|
} | undefined;
|
9042
|
+
line?: {
|
9043
|
+
channelId: string;
|
9044
|
+
channelSecret: string;
|
9045
|
+
} | undefined;
|
8888
9046
|
lineRichMenuId?: string | null | undefined;
|
8889
9047
|
messengerIntegrationType?: "own" | "business" | undefined;
|
8890
9048
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -8915,6 +9073,10 @@ export declare const telegramContract: {
|
|
8915
9073
|
mobileNumber: string;
|
8916
9074
|
apiSecret: string;
|
8917
9075
|
} | undefined;
|
9076
|
+
line?: {
|
9077
|
+
channelId: string;
|
9078
|
+
channelSecret: string;
|
9079
|
+
} | undefined;
|
8918
9080
|
lineRichMenuId?: string | null | undefined;
|
8919
9081
|
messengerIntegrationType?: "own" | "business" | undefined;
|
8920
9082
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -9179,6 +9341,10 @@ export declare const telegramContract: {
|
|
9179
9341
|
mobileNumber: string;
|
9180
9342
|
apiSecret: string;
|
9181
9343
|
} | undefined;
|
9344
|
+
line?: {
|
9345
|
+
channelId: string;
|
9346
|
+
channelSecret: string;
|
9347
|
+
} | undefined;
|
9182
9348
|
lineRichMenuId?: string | null | undefined;
|
9183
9349
|
messengerIntegrationType?: "own" | "business" | undefined;
|
9184
9350
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -9274,6 +9440,10 @@ export declare const telegramContract: {
|
|
9274
9440
|
mobileNumber: string;
|
9275
9441
|
apiSecret: string;
|
9276
9442
|
} | undefined;
|
9443
|
+
line?: {
|
9444
|
+
channelId: string;
|
9445
|
+
channelSecret: string;
|
9446
|
+
} | undefined;
|
9277
9447
|
lineRichMenuId?: string | null | undefined;
|
9278
9448
|
messengerIntegrationType?: "own" | "business" | undefined;
|
9279
9449
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -9933,6 +10103,10 @@ export declare const telegramContract: {
|
|
9933
10103
|
mobileNumber: string;
|
9934
10104
|
apiSecret: string;
|
9935
10105
|
} | undefined;
|
10106
|
+
line?: {
|
10107
|
+
channelId: string;
|
10108
|
+
channelSecret: string;
|
10109
|
+
} | undefined;
|
9936
10110
|
lineRichMenuId?: string | null | undefined;
|
9937
10111
|
messengerIntegrationType?: "own" | "business" | undefined;
|
9938
10112
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -10362,6 +10536,10 @@ export declare const telegramContract: {
|
|
10362
10536
|
mobileNumber: string;
|
10363
10537
|
apiSecret: string;
|
10364
10538
|
} | undefined;
|
10539
|
+
line?: {
|
10540
|
+
channelId: string;
|
10541
|
+
channelSecret: string;
|
10542
|
+
} | undefined;
|
10365
10543
|
lineRichMenuId?: string | null | undefined;
|
10366
10544
|
messengerIntegrationType?: "own" | "business" | undefined;
|
10367
10545
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -12564,6 +12742,10 @@ export declare const telegramContract: {
|
|
12564
12742
|
mobileNumber: string;
|
12565
12743
|
apiSecret: string;
|
12566
12744
|
} | undefined;
|
12745
|
+
line?: {
|
12746
|
+
channelId: string;
|
12747
|
+
channelSecret: string;
|
12748
|
+
} | undefined;
|
12567
12749
|
lineRichMenuId?: string | null | undefined;
|
12568
12750
|
messengerIntegrationType?: "own" | "business" | undefined;
|
12569
12751
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -13330,6 +13512,10 @@ export declare const telegramContract: {
|
|
13330
13512
|
mobileNumber: string;
|
13331
13513
|
apiSecret: string;
|
13332
13514
|
} | undefined;
|
13515
|
+
line?: {
|
13516
|
+
channelId: string;
|
13517
|
+
channelSecret: string;
|
13518
|
+
} | undefined;
|
13333
13519
|
lineRichMenuId?: string | null | undefined;
|
13334
13520
|
messengerIntegrationType?: "own" | "business" | undefined;
|
13335
13521
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -14097,6 +14283,10 @@ export declare const telegramContract: {
|
|
14097
14283
|
mobileNumber: string;
|
14098
14284
|
apiSecret: string;
|
14099
14285
|
} | undefined;
|
14286
|
+
line?: {
|
14287
|
+
channelId: string;
|
14288
|
+
channelSecret: string;
|
14289
|
+
} | undefined;
|
14100
14290
|
lineRichMenuId?: string | null | undefined;
|
14101
14291
|
messengerIntegrationType?: "own" | "business" | undefined;
|
14102
14292
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -14863,6 +15053,10 @@ export declare const telegramContract: {
|
|
14863
15053
|
mobileNumber: string;
|
14864
15054
|
apiSecret: string;
|
14865
15055
|
} | undefined;
|
15056
|
+
line?: {
|
15057
|
+
channelId: string;
|
15058
|
+
channelSecret: string;
|
15059
|
+
} | undefined;
|
14866
15060
|
lineRichMenuId?: string | null | undefined;
|
14867
15061
|
messengerIntegrationType?: "own" | "business" | undefined;
|
14868
15062
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -15630,6 +15824,10 @@ export declare const telegramContract: {
|
|
15630
15824
|
mobileNumber: string;
|
15631
15825
|
apiSecret: string;
|
15632
15826
|
} | undefined;
|
15827
|
+
line?: {
|
15828
|
+
channelId: string;
|
15829
|
+
channelSecret: string;
|
15830
|
+
} | undefined;
|
15633
15831
|
lineRichMenuId?: string | null | undefined;
|
15634
15832
|
messengerIntegrationType?: "own" | "business" | undefined;
|
15635
15833
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -16396,6 +16594,10 @@ export declare const telegramContract: {
|
|
16396
16594
|
mobileNumber: string;
|
16397
16595
|
apiSecret: string;
|
16398
16596
|
} | undefined;
|
16597
|
+
line?: {
|
16598
|
+
channelId: string;
|
16599
|
+
channelSecret: string;
|
16600
|
+
} | undefined;
|
16399
16601
|
lineRichMenuId?: string | null | undefined;
|
16400
16602
|
messengerIntegrationType?: "own" | "business" | undefined;
|
16401
16603
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -17165,6 +17367,10 @@ export declare const telegramContract: {
|
|
17165
17367
|
mobileNumber: string;
|
17166
17368
|
apiSecret: string;
|
17167
17369
|
} | undefined;
|
17370
|
+
line?: {
|
17371
|
+
channelId: string;
|
17372
|
+
channelSecret: string;
|
17373
|
+
} | undefined;
|
17168
17374
|
lineRichMenuId?: string | null | undefined;
|
17169
17375
|
messengerIntegrationType?: "own" | "business" | undefined;
|
17170
17376
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -17931,6 +18137,10 @@ export declare const telegramContract: {
|
|
17931
18137
|
mobileNumber: string;
|
17932
18138
|
apiSecret: string;
|
17933
18139
|
} | undefined;
|
18140
|
+
line?: {
|
18141
|
+
channelId: string;
|
18142
|
+
channelSecret: string;
|
18143
|
+
} | undefined;
|
17934
18144
|
lineRichMenuId?: string | null | undefined;
|
17935
18145
|
messengerIntegrationType?: "own" | "business" | undefined;
|
17936
18146
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -18701,6 +18911,10 @@ export declare const telegramContract: {
|
|
18701
18911
|
mobileNumber: string;
|
18702
18912
|
apiSecret: string;
|
18703
18913
|
} | undefined;
|
18914
|
+
line?: {
|
18915
|
+
channelId: string;
|
18916
|
+
channelSecret: string;
|
18917
|
+
} | undefined;
|
18704
18918
|
lineRichMenuId?: string | null | undefined;
|
18705
18919
|
messengerIntegrationType?: "own" | "business" | undefined;
|
18706
18920
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -19467,6 +19681,10 @@ export declare const telegramContract: {
|
|
19467
19681
|
mobileNumber: string;
|
19468
19682
|
apiSecret: string;
|
19469
19683
|
} | undefined;
|
19684
|
+
line?: {
|
19685
|
+
channelId: string;
|
19686
|
+
channelSecret: string;
|
19687
|
+
} | undefined;
|
19470
19688
|
lineRichMenuId?: string | null | undefined;
|
19471
19689
|
messengerIntegrationType?: "own" | "business" | undefined;
|
19472
19690
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -20186,6 +20404,16 @@ export declare const telegramContract: {
|
|
20186
20404
|
mobileNumber: string;
|
20187
20405
|
apiSecret: string;
|
20188
20406
|
}>>;
|
20407
|
+
line: z.ZodOptional<z.ZodObject<{
|
20408
|
+
channelId: z.ZodString;
|
20409
|
+
channelSecret: z.ZodString;
|
20410
|
+
}, "strip", z.ZodTypeAny, {
|
20411
|
+
channelId: string;
|
20412
|
+
channelSecret: string;
|
20413
|
+
}, {
|
20414
|
+
channelId: string;
|
20415
|
+
channelSecret: string;
|
20416
|
+
}>>;
|
20189
20417
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
20190
20418
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
20191
20419
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
@@ -20216,6 +20444,10 @@ export declare const telegramContract: {
|
|
20216
20444
|
mobileNumber: string;
|
20217
20445
|
apiSecret: string;
|
20218
20446
|
} | undefined;
|
20447
|
+
line?: {
|
20448
|
+
channelId: string;
|
20449
|
+
channelSecret: string;
|
20450
|
+
} | undefined;
|
20219
20451
|
lineRichMenuId?: string | null | undefined;
|
20220
20452
|
messengerIntegrationType?: "own" | "business" | undefined;
|
20221
20453
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -20246,6 +20478,10 @@ export declare const telegramContract: {
|
|
20246
20478
|
mobileNumber: string;
|
20247
20479
|
apiSecret: string;
|
20248
20480
|
} | undefined;
|
20481
|
+
line?: {
|
20482
|
+
channelId: string;
|
20483
|
+
channelSecret: string;
|
20484
|
+
} | undefined;
|
20249
20485
|
lineRichMenuId?: string | null | undefined;
|
20250
20486
|
messengerIntegrationType?: "own" | "business" | undefined;
|
20251
20487
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -20306,6 +20542,10 @@ export declare const telegramContract: {
|
|
20306
20542
|
mobileNumber: string;
|
20307
20543
|
apiSecret: string;
|
20308
20544
|
} | undefined;
|
20545
|
+
line?: {
|
20546
|
+
channelId: string;
|
20547
|
+
channelSecret: string;
|
20548
|
+
} | undefined;
|
20309
20549
|
lineRichMenuId?: string | null | undefined;
|
20310
20550
|
messengerIntegrationType?: "own" | "business" | undefined;
|
20311
20551
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -20354,6 +20594,10 @@ export declare const telegramContract: {
|
|
20354
20594
|
mobileNumber: string;
|
20355
20595
|
apiSecret: string;
|
20356
20596
|
} | undefined;
|
20597
|
+
line?: {
|
20598
|
+
channelId: string;
|
20599
|
+
channelSecret: string;
|
20600
|
+
} | undefined;
|
20357
20601
|
lineRichMenuId?: string | null | undefined;
|
20358
20602
|
messengerIntegrationType?: "own" | "business" | undefined;
|
20359
20603
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -20404,6 +20648,10 @@ export declare const telegramContract: {
|
|
20404
20648
|
mobileNumber: string;
|
20405
20649
|
apiSecret: string;
|
20406
20650
|
} | undefined;
|
20651
|
+
line?: {
|
20652
|
+
channelId: string;
|
20653
|
+
channelSecret: string;
|
20654
|
+
} | undefined;
|
20407
20655
|
lineRichMenuId?: string | null | undefined;
|
20408
20656
|
messengerIntegrationType?: "own" | "business" | undefined;
|
20409
20657
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -20455,6 +20703,10 @@ export declare const telegramContract: {
|
|
20455
20703
|
mobileNumber: string;
|
20456
20704
|
apiSecret: string;
|
20457
20705
|
} | undefined;
|
20706
|
+
line?: {
|
20707
|
+
channelId: string;
|
20708
|
+
channelSecret: string;
|
20709
|
+
} | undefined;
|
20458
20710
|
lineRichMenuId?: string | null | undefined;
|
20459
20711
|
messengerIntegrationType?: "own" | "business" | undefined;
|
20460
20712
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -20577,6 +20829,16 @@ export declare const telegramContract: {
|
|
20577
20829
|
mobileNumber: string;
|
20578
20830
|
apiSecret: string;
|
20579
20831
|
}>>;
|
20832
|
+
line: z.ZodOptional<z.ZodObject<{
|
20833
|
+
channelId: z.ZodString;
|
20834
|
+
channelSecret: z.ZodString;
|
20835
|
+
}, "strip", z.ZodTypeAny, {
|
20836
|
+
channelId: string;
|
20837
|
+
channelSecret: string;
|
20838
|
+
}, {
|
20839
|
+
channelId: string;
|
20840
|
+
channelSecret: string;
|
20841
|
+
}>>;
|
20580
20842
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
20581
20843
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
20582
20844
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
@@ -20607,6 +20869,10 @@ export declare const telegramContract: {
|
|
20607
20869
|
mobileNumber: string;
|
20608
20870
|
apiSecret: string;
|
20609
20871
|
} | undefined;
|
20872
|
+
line?: {
|
20873
|
+
channelId: string;
|
20874
|
+
channelSecret: string;
|
20875
|
+
} | undefined;
|
20610
20876
|
lineRichMenuId?: string | null | undefined;
|
20611
20877
|
messengerIntegrationType?: "own" | "business" | undefined;
|
20612
20878
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -20637,6 +20903,10 @@ export declare const telegramContract: {
|
|
20637
20903
|
mobileNumber: string;
|
20638
20904
|
apiSecret: string;
|
20639
20905
|
} | undefined;
|
20906
|
+
line?: {
|
20907
|
+
channelId: string;
|
20908
|
+
channelSecret: string;
|
20909
|
+
} | undefined;
|
20640
20910
|
lineRichMenuId?: string | null | undefined;
|
20641
20911
|
messengerIntegrationType?: "own" | "business" | undefined;
|
20642
20912
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -20697,6 +20967,10 @@ export declare const telegramContract: {
|
|
20697
20967
|
mobileNumber: string;
|
20698
20968
|
apiSecret: string;
|
20699
20969
|
} | undefined;
|
20970
|
+
line?: {
|
20971
|
+
channelId: string;
|
20972
|
+
channelSecret: string;
|
20973
|
+
} | undefined;
|
20700
20974
|
lineRichMenuId?: string | null | undefined;
|
20701
20975
|
messengerIntegrationType?: "own" | "business" | undefined;
|
20702
20976
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -20745,6 +21019,10 @@ export declare const telegramContract: {
|
|
20745
21019
|
mobileNumber: string;
|
20746
21020
|
apiSecret: string;
|
20747
21021
|
} | undefined;
|
21022
|
+
line?: {
|
21023
|
+
channelId: string;
|
21024
|
+
channelSecret: string;
|
21025
|
+
} | undefined;
|
20748
21026
|
lineRichMenuId?: string | null | undefined;
|
20749
21027
|
messengerIntegrationType?: "own" | "business" | undefined;
|
20750
21028
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -20795,6 +21073,10 @@ export declare const telegramContract: {
|
|
20795
21073
|
mobileNumber: string;
|
20796
21074
|
apiSecret: string;
|
20797
21075
|
} | undefined;
|
21076
|
+
line?: {
|
21077
|
+
channelId: string;
|
21078
|
+
channelSecret: string;
|
21079
|
+
} | undefined;
|
20798
21080
|
lineRichMenuId?: string | null | undefined;
|
20799
21081
|
messengerIntegrationType?: "own" | "business" | undefined;
|
20800
21082
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -20846,6 +21128,10 @@ export declare const telegramContract: {
|
|
20846
21128
|
mobileNumber: string;
|
20847
21129
|
apiSecret: string;
|
20848
21130
|
} | undefined;
|
21131
|
+
line?: {
|
21132
|
+
channelId: string;
|
21133
|
+
channelSecret: string;
|
21134
|
+
} | undefined;
|
20849
21135
|
lineRichMenuId?: string | null | undefined;
|
20850
21136
|
messengerIntegrationType?: "own" | "business" | undefined;
|
20851
21137
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|