@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 viberContract: {
|
|
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 viberContract: {
|
|
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 viberContract: {
|
|
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 viberContract: {
|
|
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 viberContract: {
|
|
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 viberContract: {
|
|
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 viberContract: {
|
|
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;
|
@@ -903,6 +937,16 @@ export declare const viberContract: {
|
|
903
937
|
mobileNumber: string;
|
904
938
|
apiSecret: string;
|
905
939
|
}>>;
|
940
|
+
line: z.ZodOptional<z.ZodObject<{
|
941
|
+
channelId: z.ZodString;
|
942
|
+
channelSecret: z.ZodString;
|
943
|
+
}, "strip", z.ZodTypeAny, {
|
944
|
+
channelId: string;
|
945
|
+
channelSecret: string;
|
946
|
+
}, {
|
947
|
+
channelId: string;
|
948
|
+
channelSecret: string;
|
949
|
+
}>>;
|
906
950
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
907
951
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
908
952
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
@@ -933,6 +977,10 @@ export declare const viberContract: {
|
|
933
977
|
mobileNumber: string;
|
934
978
|
apiSecret: string;
|
935
979
|
} | undefined;
|
980
|
+
line?: {
|
981
|
+
channelId: string;
|
982
|
+
channelSecret: string;
|
983
|
+
} | undefined;
|
936
984
|
lineRichMenuId?: string | null | undefined;
|
937
985
|
messengerIntegrationType?: "own" | "business" | undefined;
|
938
986
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -963,6 +1011,10 @@ export declare const viberContract: {
|
|
963
1011
|
mobileNumber: string;
|
964
1012
|
apiSecret: string;
|
965
1013
|
} | undefined;
|
1014
|
+
line?: {
|
1015
|
+
channelId: string;
|
1016
|
+
channelSecret: string;
|
1017
|
+
} | undefined;
|
966
1018
|
lineRichMenuId?: string | null | undefined;
|
967
1019
|
messengerIntegrationType?: "own" | "business" | undefined;
|
968
1020
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -1227,6 +1279,10 @@ export declare const viberContract: {
|
|
1227
1279
|
mobileNumber: string;
|
1228
1280
|
apiSecret: string;
|
1229
1281
|
} | undefined;
|
1282
|
+
line?: {
|
1283
|
+
channelId: string;
|
1284
|
+
channelSecret: string;
|
1285
|
+
} | undefined;
|
1230
1286
|
lineRichMenuId?: string | null | undefined;
|
1231
1287
|
messengerIntegrationType?: "own" | "business" | undefined;
|
1232
1288
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -1322,6 +1378,10 @@ export declare const viberContract: {
|
|
1322
1378
|
mobileNumber: string;
|
1323
1379
|
apiSecret: string;
|
1324
1380
|
} | undefined;
|
1381
|
+
line?: {
|
1382
|
+
channelId: string;
|
1383
|
+
channelSecret: string;
|
1384
|
+
} | undefined;
|
1325
1385
|
lineRichMenuId?: string | null | undefined;
|
1326
1386
|
messengerIntegrationType?: "own" | "business" | undefined;
|
1327
1387
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -1419,6 +1479,10 @@ export declare const viberContract: {
|
|
1419
1479
|
mobileNumber: string;
|
1420
1480
|
apiSecret: string;
|
1421
1481
|
} | undefined;
|
1482
|
+
line?: {
|
1483
|
+
channelId: string;
|
1484
|
+
channelSecret: string;
|
1485
|
+
} | undefined;
|
1422
1486
|
lineRichMenuId?: string | null | undefined;
|
1423
1487
|
messengerIntegrationType?: "own" | "business" | undefined;
|
1424
1488
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -1517,6 +1581,10 @@ export declare const viberContract: {
|
|
1517
1581
|
mobileNumber: string;
|
1518
1582
|
apiSecret: string;
|
1519
1583
|
} | undefined;
|
1584
|
+
line?: {
|
1585
|
+
channelId: string;
|
1586
|
+
channelSecret: string;
|
1587
|
+
} | undefined;
|
1520
1588
|
lineRichMenuId?: string | null | undefined;
|
1521
1589
|
messengerIntegrationType?: "own" | "business" | undefined;
|
1522
1590
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -1788,6 +1856,16 @@ export declare const viberContract: {
|
|
1788
1856
|
mobileNumber: string;
|
1789
1857
|
apiSecret: string;
|
1790
1858
|
}>>;
|
1859
|
+
line: z.ZodOptional<z.ZodObject<{
|
1860
|
+
channelId: z.ZodString;
|
1861
|
+
channelSecret: z.ZodString;
|
1862
|
+
}, "strip", z.ZodTypeAny, {
|
1863
|
+
channelId: string;
|
1864
|
+
channelSecret: string;
|
1865
|
+
}, {
|
1866
|
+
channelId: string;
|
1867
|
+
channelSecret: string;
|
1868
|
+
}>>;
|
1791
1869
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
1792
1870
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
1793
1871
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
@@ -1818,6 +1896,10 @@ export declare const viberContract: {
|
|
1818
1896
|
mobileNumber: string;
|
1819
1897
|
apiSecret: string;
|
1820
1898
|
} | undefined;
|
1899
|
+
line?: {
|
1900
|
+
channelId: string;
|
1901
|
+
channelSecret: string;
|
1902
|
+
} | undefined;
|
1821
1903
|
lineRichMenuId?: string | null | undefined;
|
1822
1904
|
messengerIntegrationType?: "own" | "business" | undefined;
|
1823
1905
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -1848,6 +1930,10 @@ export declare const viberContract: {
|
|
1848
1930
|
mobileNumber: string;
|
1849
1931
|
apiSecret: string;
|
1850
1932
|
} | undefined;
|
1933
|
+
line?: {
|
1934
|
+
channelId: string;
|
1935
|
+
channelSecret: string;
|
1936
|
+
} | undefined;
|
1851
1937
|
lineRichMenuId?: string | null | undefined;
|
1852
1938
|
messengerIntegrationType?: "own" | "business" | undefined;
|
1853
1939
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -1908,6 +1994,10 @@ export declare const viberContract: {
|
|
1908
1994
|
mobileNumber: string;
|
1909
1995
|
apiSecret: string;
|
1910
1996
|
} | undefined;
|
1997
|
+
line?: {
|
1998
|
+
channelId: string;
|
1999
|
+
channelSecret: string;
|
2000
|
+
} | undefined;
|
1911
2001
|
lineRichMenuId?: string | null | undefined;
|
1912
2002
|
messengerIntegrationType?: "own" | "business" | undefined;
|
1913
2003
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -1956,6 +2046,10 @@ export declare const viberContract: {
|
|
1956
2046
|
mobileNumber: string;
|
1957
2047
|
apiSecret: string;
|
1958
2048
|
} | undefined;
|
2049
|
+
line?: {
|
2050
|
+
channelId: string;
|
2051
|
+
channelSecret: string;
|
2052
|
+
} | undefined;
|
1959
2053
|
lineRichMenuId?: string | null | undefined;
|
1960
2054
|
messengerIntegrationType?: "own" | "business" | undefined;
|
1961
2055
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -2009,6 +2103,10 @@ export declare const viberContract: {
|
|
2009
2103
|
mobileNumber: string;
|
2010
2104
|
apiSecret: string;
|
2011
2105
|
} | undefined;
|
2106
|
+
line?: {
|
2107
|
+
channelId: string;
|
2108
|
+
channelSecret: string;
|
2109
|
+
} | undefined;
|
2012
2110
|
lineRichMenuId?: string | null | undefined;
|
2013
2111
|
messengerIntegrationType?: "own" | "business" | undefined;
|
2014
2112
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -2101,6 +2199,10 @@ export declare const viberContract: {
|
|
2101
2199
|
mobileNumber: string;
|
2102
2200
|
apiSecret: string;
|
2103
2201
|
} | undefined;
|
2202
|
+
line?: {
|
2203
|
+
channelId: string;
|
2204
|
+
channelSecret: string;
|
2205
|
+
} | undefined;
|
2104
2206
|
lineRichMenuId?: string | null | undefined;
|
2105
2207
|
messengerIntegrationType?: "own" | "business" | undefined;
|
2106
2208
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -2361,6 +2463,10 @@ export declare const viberContract: {
|
|
2361
2463
|
mobileNumber: string;
|
2362
2464
|
apiSecret: string;
|
2363
2465
|
} | undefined;
|
2466
|
+
line?: {
|
2467
|
+
channelId: string;
|
2468
|
+
channelSecret: string;
|
2469
|
+
} | undefined;
|
2364
2470
|
lineRichMenuId?: string | null | undefined;
|
2365
2471
|
messengerIntegrationType?: "own" | "business" | undefined;
|
2366
2472
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -2492,6 +2598,10 @@ export declare const viberContract: {
|
|
2492
2598
|
mobileNumber: string;
|
2493
2599
|
apiSecret: string;
|
2494
2600
|
} | undefined;
|
2601
|
+
line?: {
|
2602
|
+
channelId: string;
|
2603
|
+
channelSecret: string;
|
2604
|
+
} | undefined;
|
2495
2605
|
lineRichMenuId?: string | null | undefined;
|
2496
2606
|
messengerIntegrationType?: "own" | "business" | undefined;
|
2497
2607
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -4553,6 +4663,16 @@ export declare const viberContract: {
|
|
4553
4663
|
mobileNumber: string;
|
4554
4664
|
apiSecret: string;
|
4555
4665
|
}>>;
|
4666
|
+
line: z.ZodOptional<z.ZodObject<{
|
4667
|
+
channelId: z.ZodString;
|
4668
|
+
channelSecret: z.ZodString;
|
4669
|
+
}, "strip", z.ZodTypeAny, {
|
4670
|
+
channelId: string;
|
4671
|
+
channelSecret: string;
|
4672
|
+
}, {
|
4673
|
+
channelId: string;
|
4674
|
+
channelSecret: string;
|
4675
|
+
}>>;
|
4556
4676
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
4557
4677
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
4558
4678
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
@@ -4583,6 +4703,10 @@ export declare const viberContract: {
|
|
4583
4703
|
mobileNumber: string;
|
4584
4704
|
apiSecret: string;
|
4585
4705
|
} | undefined;
|
4706
|
+
line?: {
|
4707
|
+
channelId: string;
|
4708
|
+
channelSecret: string;
|
4709
|
+
} | undefined;
|
4586
4710
|
lineRichMenuId?: string | null | undefined;
|
4587
4711
|
messengerIntegrationType?: "own" | "business" | undefined;
|
4588
4712
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -4613,6 +4737,10 @@ export declare const viberContract: {
|
|
4613
4737
|
mobileNumber: string;
|
4614
4738
|
apiSecret: string;
|
4615
4739
|
} | undefined;
|
4740
|
+
line?: {
|
4741
|
+
channelId: string;
|
4742
|
+
channelSecret: string;
|
4743
|
+
} | undefined;
|
4616
4744
|
lineRichMenuId?: string | null | undefined;
|
4617
4745
|
messengerIntegrationType?: "own" | "business" | undefined;
|
4618
4746
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -4877,6 +5005,10 @@ export declare const viberContract: {
|
|
4877
5005
|
mobileNumber: string;
|
4878
5006
|
apiSecret: string;
|
4879
5007
|
} | undefined;
|
5008
|
+
line?: {
|
5009
|
+
channelId: string;
|
5010
|
+
channelSecret: string;
|
5011
|
+
} | undefined;
|
4880
5012
|
lineRichMenuId?: string | null | undefined;
|
4881
5013
|
messengerIntegrationType?: "own" | "business" | undefined;
|
4882
5014
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -4972,6 +5104,10 @@ export declare const viberContract: {
|
|
4972
5104
|
mobileNumber: string;
|
4973
5105
|
apiSecret: string;
|
4974
5106
|
} | undefined;
|
5107
|
+
line?: {
|
5108
|
+
channelId: string;
|
5109
|
+
channelSecret: string;
|
5110
|
+
} | undefined;
|
4975
5111
|
lineRichMenuId?: string | null | undefined;
|
4976
5112
|
messengerIntegrationType?: "own" | "business" | undefined;
|
4977
5113
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -5631,6 +5767,10 @@ export declare const viberContract: {
|
|
5631
5767
|
mobileNumber: string;
|
5632
5768
|
apiSecret: string;
|
5633
5769
|
} | undefined;
|
5770
|
+
line?: {
|
5771
|
+
channelId: string;
|
5772
|
+
channelSecret: string;
|
5773
|
+
} | undefined;
|
5634
5774
|
lineRichMenuId?: string | null | undefined;
|
5635
5775
|
messengerIntegrationType?: "own" | "business" | undefined;
|
5636
5776
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -6060,6 +6200,10 @@ export declare const viberContract: {
|
|
6060
6200
|
mobileNumber: string;
|
6061
6201
|
apiSecret: string;
|
6062
6202
|
} | undefined;
|
6203
|
+
line?: {
|
6204
|
+
channelId: string;
|
6205
|
+
channelSecret: string;
|
6206
|
+
} | undefined;
|
6063
6207
|
lineRichMenuId?: string | null | undefined;
|
6064
6208
|
messengerIntegrationType?: "own" | "business" | undefined;
|
6065
6209
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -9240,6 +9384,16 @@ export declare const viberContract: {
|
|
9240
9384
|
mobileNumber: string;
|
9241
9385
|
apiSecret: string;
|
9242
9386
|
}>>;
|
9387
|
+
line: z.ZodOptional<z.ZodObject<{
|
9388
|
+
channelId: z.ZodString;
|
9389
|
+
channelSecret: z.ZodString;
|
9390
|
+
}, "strip", z.ZodTypeAny, {
|
9391
|
+
channelId: string;
|
9392
|
+
channelSecret: string;
|
9393
|
+
}, {
|
9394
|
+
channelId: string;
|
9395
|
+
channelSecret: string;
|
9396
|
+
}>>;
|
9243
9397
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
9244
9398
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
9245
9399
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
@@ -9270,6 +9424,10 @@ export declare const viberContract: {
|
|
9270
9424
|
mobileNumber: string;
|
9271
9425
|
apiSecret: string;
|
9272
9426
|
} | undefined;
|
9427
|
+
line?: {
|
9428
|
+
channelId: string;
|
9429
|
+
channelSecret: string;
|
9430
|
+
} | undefined;
|
9273
9431
|
lineRichMenuId?: string | null | undefined;
|
9274
9432
|
messengerIntegrationType?: "own" | "business" | undefined;
|
9275
9433
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -9300,6 +9458,10 @@ export declare const viberContract: {
|
|
9300
9458
|
mobileNumber: string;
|
9301
9459
|
apiSecret: string;
|
9302
9460
|
} | undefined;
|
9461
|
+
line?: {
|
9462
|
+
channelId: string;
|
9463
|
+
channelSecret: string;
|
9464
|
+
} | undefined;
|
9303
9465
|
lineRichMenuId?: string | null | undefined;
|
9304
9466
|
messengerIntegrationType?: "own" | "business" | undefined;
|
9305
9467
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -9564,6 +9726,10 @@ export declare const viberContract: {
|
|
9564
9726
|
mobileNumber: string;
|
9565
9727
|
apiSecret: string;
|
9566
9728
|
} | undefined;
|
9729
|
+
line?: {
|
9730
|
+
channelId: string;
|
9731
|
+
channelSecret: string;
|
9732
|
+
} | undefined;
|
9567
9733
|
lineRichMenuId?: string | null | undefined;
|
9568
9734
|
messengerIntegrationType?: "own" | "business" | undefined;
|
9569
9735
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -9659,6 +9825,10 @@ export declare const viberContract: {
|
|
9659
9825
|
mobileNumber: string;
|
9660
9826
|
apiSecret: string;
|
9661
9827
|
} | undefined;
|
9828
|
+
line?: {
|
9829
|
+
channelId: string;
|
9830
|
+
channelSecret: string;
|
9831
|
+
} | undefined;
|
9662
9832
|
lineRichMenuId?: string | null | undefined;
|
9663
9833
|
messengerIntegrationType?: "own" | "business" | undefined;
|
9664
9834
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -10318,6 +10488,10 @@ export declare const viberContract: {
|
|
10318
10488
|
mobileNumber: string;
|
10319
10489
|
apiSecret: string;
|
10320
10490
|
} | undefined;
|
10491
|
+
line?: {
|
10492
|
+
channelId: string;
|
10493
|
+
channelSecret: string;
|
10494
|
+
} | undefined;
|
10321
10495
|
lineRichMenuId?: string | null | undefined;
|
10322
10496
|
messengerIntegrationType?: "own" | "business" | undefined;
|
10323
10497
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -10747,6 +10921,10 @@ export declare const viberContract: {
|
|
10747
10921
|
mobileNumber: string;
|
10748
10922
|
apiSecret: string;
|
10749
10923
|
} | undefined;
|
10924
|
+
line?: {
|
10925
|
+
channelId: string;
|
10926
|
+
channelSecret: string;
|
10927
|
+
} | undefined;
|
10750
10928
|
lineRichMenuId?: string | null | undefined;
|
10751
10929
|
messengerIntegrationType?: "own" | "business" | undefined;
|
10752
10930
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -12949,6 +13127,10 @@ export declare const viberContract: {
|
|
12949
13127
|
mobileNumber: string;
|
12950
13128
|
apiSecret: string;
|
12951
13129
|
} | undefined;
|
13130
|
+
line?: {
|
13131
|
+
channelId: string;
|
13132
|
+
channelSecret: string;
|
13133
|
+
} | undefined;
|
12952
13134
|
lineRichMenuId?: string | null | undefined;
|
12953
13135
|
messengerIntegrationType?: "own" | "business" | undefined;
|
12954
13136
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -13715,6 +13897,10 @@ export declare const viberContract: {
|
|
13715
13897
|
mobileNumber: string;
|
13716
13898
|
apiSecret: string;
|
13717
13899
|
} | undefined;
|
13900
|
+
line?: {
|
13901
|
+
channelId: string;
|
13902
|
+
channelSecret: string;
|
13903
|
+
} | undefined;
|
13718
13904
|
lineRichMenuId?: string | null | undefined;
|
13719
13905
|
messengerIntegrationType?: "own" | "business" | undefined;
|
13720
13906
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -14482,6 +14668,10 @@ export declare const viberContract: {
|
|
14482
14668
|
mobileNumber: string;
|
14483
14669
|
apiSecret: string;
|
14484
14670
|
} | undefined;
|
14671
|
+
line?: {
|
14672
|
+
channelId: string;
|
14673
|
+
channelSecret: string;
|
14674
|
+
} | undefined;
|
14485
14675
|
lineRichMenuId?: string | null | undefined;
|
14486
14676
|
messengerIntegrationType?: "own" | "business" | undefined;
|
14487
14677
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -15248,6 +15438,10 @@ export declare const viberContract: {
|
|
15248
15438
|
mobileNumber: string;
|
15249
15439
|
apiSecret: string;
|
15250
15440
|
} | undefined;
|
15441
|
+
line?: {
|
15442
|
+
channelId: string;
|
15443
|
+
channelSecret: string;
|
15444
|
+
} | undefined;
|
15251
15445
|
lineRichMenuId?: string | null | undefined;
|
15252
15446
|
messengerIntegrationType?: "own" | "business" | undefined;
|
15253
15447
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -16015,6 +16209,10 @@ export declare const viberContract: {
|
|
16015
16209
|
mobileNumber: string;
|
16016
16210
|
apiSecret: string;
|
16017
16211
|
} | undefined;
|
16212
|
+
line?: {
|
16213
|
+
channelId: string;
|
16214
|
+
channelSecret: string;
|
16215
|
+
} | undefined;
|
16018
16216
|
lineRichMenuId?: string | null | undefined;
|
16019
16217
|
messengerIntegrationType?: "own" | "business" | undefined;
|
16020
16218
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -16781,6 +16979,10 @@ export declare const viberContract: {
|
|
16781
16979
|
mobileNumber: string;
|
16782
16980
|
apiSecret: string;
|
16783
16981
|
} | undefined;
|
16982
|
+
line?: {
|
16983
|
+
channelId: string;
|
16984
|
+
channelSecret: string;
|
16985
|
+
} | undefined;
|
16784
16986
|
lineRichMenuId?: string | null | undefined;
|
16785
16987
|
messengerIntegrationType?: "own" | "business" | undefined;
|
16786
16988
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -17550,6 +17752,10 @@ export declare const viberContract: {
|
|
17550
17752
|
mobileNumber: string;
|
17551
17753
|
apiSecret: string;
|
17552
17754
|
} | undefined;
|
17755
|
+
line?: {
|
17756
|
+
channelId: string;
|
17757
|
+
channelSecret: string;
|
17758
|
+
} | undefined;
|
17553
17759
|
lineRichMenuId?: string | null | undefined;
|
17554
17760
|
messengerIntegrationType?: "own" | "business" | undefined;
|
17555
17761
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -18316,6 +18522,10 @@ export declare const viberContract: {
|
|
18316
18522
|
mobileNumber: string;
|
18317
18523
|
apiSecret: string;
|
18318
18524
|
} | undefined;
|
18525
|
+
line?: {
|
18526
|
+
channelId: string;
|
18527
|
+
channelSecret: string;
|
18528
|
+
} | undefined;
|
18319
18529
|
lineRichMenuId?: string | null | undefined;
|
18320
18530
|
messengerIntegrationType?: "own" | "business" | undefined;
|
18321
18531
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -19086,6 +19296,10 @@ export declare const viberContract: {
|
|
19086
19296
|
mobileNumber: string;
|
19087
19297
|
apiSecret: string;
|
19088
19298
|
} | undefined;
|
19299
|
+
line?: {
|
19300
|
+
channelId: string;
|
19301
|
+
channelSecret: string;
|
19302
|
+
} | undefined;
|
19089
19303
|
lineRichMenuId?: string | null | undefined;
|
19090
19304
|
messengerIntegrationType?: "own" | "business" | undefined;
|
19091
19305
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -19852,6 +20066,10 @@ export declare const viberContract: {
|
|
19852
20066
|
mobileNumber: string;
|
19853
20067
|
apiSecret: string;
|
19854
20068
|
} | undefined;
|
20069
|
+
line?: {
|
20070
|
+
channelId: string;
|
20071
|
+
channelSecret: string;
|
20072
|
+
} | undefined;
|
19855
20073
|
lineRichMenuId?: string | null | undefined;
|
19856
20074
|
messengerIntegrationType?: "own" | "business" | undefined;
|
19857
20075
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -20574,6 +20792,16 @@ export declare const viberContract: {
|
|
20574
20792
|
mobileNumber: string;
|
20575
20793
|
apiSecret: string;
|
20576
20794
|
}>>;
|
20795
|
+
line: z.ZodOptional<z.ZodObject<{
|
20796
|
+
channelId: z.ZodString;
|
20797
|
+
channelSecret: z.ZodString;
|
20798
|
+
}, "strip", z.ZodTypeAny, {
|
20799
|
+
channelId: string;
|
20800
|
+
channelSecret: string;
|
20801
|
+
}, {
|
20802
|
+
channelId: string;
|
20803
|
+
channelSecret: string;
|
20804
|
+
}>>;
|
20577
20805
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
20578
20806
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
20579
20807
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
@@ -20604,6 +20832,10 @@ export declare const viberContract: {
|
|
20604
20832
|
mobileNumber: string;
|
20605
20833
|
apiSecret: string;
|
20606
20834
|
} | undefined;
|
20835
|
+
line?: {
|
20836
|
+
channelId: string;
|
20837
|
+
channelSecret: string;
|
20838
|
+
} | undefined;
|
20607
20839
|
lineRichMenuId?: string | null | undefined;
|
20608
20840
|
messengerIntegrationType?: "own" | "business" | undefined;
|
20609
20841
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -20634,6 +20866,10 @@ export declare const viberContract: {
|
|
20634
20866
|
mobileNumber: string;
|
20635
20867
|
apiSecret: string;
|
20636
20868
|
} | undefined;
|
20869
|
+
line?: {
|
20870
|
+
channelId: string;
|
20871
|
+
channelSecret: string;
|
20872
|
+
} | undefined;
|
20637
20873
|
lineRichMenuId?: string | null | undefined;
|
20638
20874
|
messengerIntegrationType?: "own" | "business" | undefined;
|
20639
20875
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -20898,6 +21134,10 @@ export declare const viberContract: {
|
|
20898
21134
|
mobileNumber: string;
|
20899
21135
|
apiSecret: string;
|
20900
21136
|
} | undefined;
|
21137
|
+
line?: {
|
21138
|
+
channelId: string;
|
21139
|
+
channelSecret: string;
|
21140
|
+
} | undefined;
|
20901
21141
|
lineRichMenuId?: string | null | undefined;
|
20902
21142
|
messengerIntegrationType?: "own" | "business" | undefined;
|
20903
21143
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -20993,6 +21233,10 @@ export declare const viberContract: {
|
|
20993
21233
|
mobileNumber: string;
|
20994
21234
|
apiSecret: string;
|
20995
21235
|
} | undefined;
|
21236
|
+
line?: {
|
21237
|
+
channelId: string;
|
21238
|
+
channelSecret: string;
|
21239
|
+
} | undefined;
|
20996
21240
|
lineRichMenuId?: string | null | undefined;
|
20997
21241
|
messengerIntegrationType?: "own" | "business" | undefined;
|
20998
21242
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -21090,6 +21334,10 @@ export declare const viberContract: {
|
|
21090
21334
|
mobileNumber: string;
|
21091
21335
|
apiSecret: string;
|
21092
21336
|
} | undefined;
|
21337
|
+
line?: {
|
21338
|
+
channelId: string;
|
21339
|
+
channelSecret: string;
|
21340
|
+
} | undefined;
|
21093
21341
|
lineRichMenuId?: string | null | undefined;
|
21094
21342
|
messengerIntegrationType?: "own" | "business" | undefined;
|
21095
21343
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -21188,6 +21436,10 @@ export declare const viberContract: {
|
|
21188
21436
|
mobileNumber: string;
|
21189
21437
|
apiSecret: string;
|
21190
21438
|
} | undefined;
|
21439
|
+
line?: {
|
21440
|
+
channelId: string;
|
21441
|
+
channelSecret: string;
|
21442
|
+
} | undefined;
|
21191
21443
|
lineRichMenuId?: string | null | undefined;
|
21192
21444
|
messengerIntegrationType?: "own" | "business" | undefined;
|
21193
21445
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -21356,6 +21608,16 @@ export declare const viberContract: {
|
|
21356
21608
|
mobileNumber: string;
|
21357
21609
|
apiSecret: string;
|
21358
21610
|
}>>;
|
21611
|
+
line: z.ZodOptional<z.ZodObject<{
|
21612
|
+
channelId: z.ZodString;
|
21613
|
+
channelSecret: z.ZodString;
|
21614
|
+
}, "strip", z.ZodTypeAny, {
|
21615
|
+
channelId: string;
|
21616
|
+
channelSecret: string;
|
21617
|
+
}, {
|
21618
|
+
channelId: string;
|
21619
|
+
channelSecret: string;
|
21620
|
+
}>>;
|
21359
21621
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
21360
21622
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
21361
21623
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
@@ -21386,6 +21648,10 @@ export declare const viberContract: {
|
|
21386
21648
|
mobileNumber: string;
|
21387
21649
|
apiSecret: string;
|
21388
21650
|
} | undefined;
|
21651
|
+
line?: {
|
21652
|
+
channelId: string;
|
21653
|
+
channelSecret: string;
|
21654
|
+
} | undefined;
|
21389
21655
|
lineRichMenuId?: string | null | undefined;
|
21390
21656
|
messengerIntegrationType?: "own" | "business" | undefined;
|
21391
21657
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -21416,6 +21682,10 @@ export declare const viberContract: {
|
|
21416
21682
|
mobileNumber: string;
|
21417
21683
|
apiSecret: string;
|
21418
21684
|
} | undefined;
|
21685
|
+
line?: {
|
21686
|
+
channelId: string;
|
21687
|
+
channelSecret: string;
|
21688
|
+
} | undefined;
|
21419
21689
|
lineRichMenuId?: string | null | undefined;
|
21420
21690
|
messengerIntegrationType?: "own" | "business" | undefined;
|
21421
21691
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -21476,6 +21746,10 @@ export declare const viberContract: {
|
|
21476
21746
|
mobileNumber: string;
|
21477
21747
|
apiSecret: string;
|
21478
21748
|
} | undefined;
|
21749
|
+
line?: {
|
21750
|
+
channelId: string;
|
21751
|
+
channelSecret: string;
|
21752
|
+
} | undefined;
|
21479
21753
|
lineRichMenuId?: string | null | undefined;
|
21480
21754
|
messengerIntegrationType?: "own" | "business" | undefined;
|
21481
21755
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -21524,6 +21798,10 @@ export declare const viberContract: {
|
|
21524
21798
|
mobileNumber: string;
|
21525
21799
|
apiSecret: string;
|
21526
21800
|
} | undefined;
|
21801
|
+
line?: {
|
21802
|
+
channelId: string;
|
21803
|
+
channelSecret: string;
|
21804
|
+
} | undefined;
|
21527
21805
|
lineRichMenuId?: string | null | undefined;
|
21528
21806
|
messengerIntegrationType?: "own" | "business" | undefined;
|
21529
21807
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -21574,6 +21852,10 @@ export declare const viberContract: {
|
|
21574
21852
|
mobileNumber: string;
|
21575
21853
|
apiSecret: string;
|
21576
21854
|
} | undefined;
|
21855
|
+
line?: {
|
21856
|
+
channelId: string;
|
21857
|
+
channelSecret: string;
|
21858
|
+
} | undefined;
|
21577
21859
|
lineRichMenuId?: string | null | undefined;
|
21578
21860
|
messengerIntegrationType?: "own" | "business" | undefined;
|
21579
21861
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -21625,6 +21907,10 @@ export declare const viberContract: {
|
|
21625
21907
|
mobileNumber: string;
|
21626
21908
|
apiSecret: string;
|
21627
21909
|
} | undefined;
|
21910
|
+
line?: {
|
21911
|
+
channelId: string;
|
21912
|
+
channelSecret: string;
|
21913
|
+
} | undefined;
|
21628
21914
|
lineRichMenuId?: string | null | undefined;
|
21629
21915
|
messengerIntegrationType?: "own" | "business" | undefined;
|
21630
21916
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|