@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.
Files changed (55) hide show
  1. package/dist/api-contracts/src/channel/index.d.ts +742 -0
  2. package/dist/api-contracts/src/channel/index.d.ts.map +1 -1
  3. package/dist/api-contracts/src/channel/schema.d.ts +44 -0
  4. package/dist/api-contracts/src/channel/schema.d.ts.map +1 -1
  5. package/dist/api-contracts/src/channel/validation.d.ts +52 -0
  6. package/dist/api-contracts/src/channel/validation.d.ts.map +1 -1
  7. package/dist/api-contracts/src/chat/index.d.ts +1054 -2
  8. package/dist/api-contracts/src/chat/index.d.ts.map +1 -1
  9. package/dist/api-contracts/src/chat/schema.d.ts +252 -0
  10. package/dist/api-contracts/src/chat/schema.d.ts.map +1 -1
  11. package/dist/api-contracts/src/chat/validation.d.ts +370 -0
  12. package/dist/api-contracts/src/chat/validation.d.ts.map +1 -1
  13. package/dist/api-contracts/src/contract.d.ts +4960 -154
  14. package/dist/api-contracts/src/contract.d.ts.map +1 -1
  15. package/dist/api-contracts/src/cx-log/index.d.ts +54 -4
  16. package/dist/api-contracts/src/cx-log/index.d.ts.map +1 -1
  17. package/dist/api-contracts/src/cx-log/schema.d.ts +42 -0
  18. package/dist/api-contracts/src/cx-log/schema.d.ts.map +1 -1
  19. package/dist/api-contracts/src/cx-log/validation.d.ts +2 -2
  20. package/dist/api-contracts/src/cx-log/validation.d.ts.map +1 -1
  21. package/dist/api-contracts/src/facebook-feed/index.d.ts +508 -0
  22. package/dist/api-contracts/src/facebook-feed/index.d.ts.map +1 -1
  23. package/dist/api-contracts/src/facebook-feed/schema.d.ts +34 -0
  24. package/dist/api-contracts/src/facebook-feed/schema.d.ts.map +1 -1
  25. package/dist/api-contracts/src/facebook-feed/validation.d.ts +26 -0
  26. package/dist/api-contracts/src/facebook-feed/validation.d.ts.map +1 -1
  27. package/dist/api-contracts/src/instagram/index.d.ts +398 -0
  28. package/dist/api-contracts/src/instagram/index.d.ts.map +1 -1
  29. package/dist/api-contracts/src/line/index.d.ts +354 -0
  30. package/dist/api-contracts/src/line/index.d.ts.map +1 -1
  31. package/dist/api-contracts/src/line/validation.d.ts +42 -0
  32. package/dist/api-contracts/src/line/validation.d.ts.map +1 -1
  33. package/dist/api-contracts/src/messenger/index.d.ts +398 -0
  34. package/dist/api-contracts/src/messenger/index.d.ts.map +1 -1
  35. package/dist/api-contracts/src/messenger/validation.d.ts +26 -0
  36. package/dist/api-contracts/src/messenger/validation.d.ts.map +1 -1
  37. package/dist/api-contracts/src/sms/index.d.ts +178 -0
  38. package/dist/api-contracts/src/sms/index.d.ts.map +1 -1
  39. package/dist/api-contracts/src/telegram/index.d.ts +286 -0
  40. package/dist/api-contracts/src/telegram/index.d.ts.map +1 -1
  41. package/dist/api-contracts/src/viber/index.d.ts +286 -0
  42. package/dist/api-contracts/src/viber/index.d.ts.map +1 -1
  43. package/dist/api-contracts/src/webchat/index.d.ts +286 -0
  44. package/dist/api-contracts/src/webchat/index.d.ts.map +1 -1
  45. package/dist/api-contracts/src/whatsapp/index.d.ts +338 -0
  46. package/dist/api-contracts/src/whatsapp/index.d.ts.map +1 -1
  47. package/dist/api-contracts/src/widget/index.d.ts +286 -3
  48. package/dist/api-contracts/src/widget/index.d.ts.map +1 -1
  49. package/dist/api-contracts/src/workflow-rule/index.d.ts +134 -0
  50. package/dist/api-contracts/src/workflow-rule/index.d.ts.map +1 -1
  51. package/dist/index.js +50 -5
  52. package/dist/index.js.map +1 -1
  53. package/dist/index.mjs +50 -5
  54. package/dist/index.mjs.map +1 -1
  55. package/package.json +1 -1
@@ -71,6 +71,16 @@ export declare const facebookFeedContract: {
71
71
  mobileNumber: string;
72
72
  apiSecret: string;
73
73
  }>>;
74
+ line: z.ZodOptional<z.ZodObject<{
75
+ channelId: z.ZodString;
76
+ channelSecret: z.ZodString;
77
+ }, "strip", z.ZodTypeAny, {
78
+ channelId: string;
79
+ channelSecret: string;
80
+ }, {
81
+ channelId: string;
82
+ channelSecret: string;
83
+ }>>;
74
84
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
75
85
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
76
86
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -101,6 +111,10 @@ export declare const facebookFeedContract: {
101
111
  mobileNumber: string;
102
112
  apiSecret: string;
103
113
  } | undefined;
114
+ line?: {
115
+ channelId: string;
116
+ channelSecret: string;
117
+ } | undefined;
104
118
  lineRichMenuId?: string | null | undefined;
105
119
  messengerIntegrationType?: "own" | "business" | undefined;
106
120
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -131,6 +145,10 @@ export declare const facebookFeedContract: {
131
145
  mobileNumber: string;
132
146
  apiSecret: string;
133
147
  } | undefined;
148
+ line?: {
149
+ channelId: string;
150
+ channelSecret: string;
151
+ } | undefined;
134
152
  lineRichMenuId?: string | null | undefined;
135
153
  messengerIntegrationType?: "own" | "business" | undefined;
136
154
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -191,6 +209,10 @@ export declare const facebookFeedContract: {
191
209
  mobileNumber: string;
192
210
  apiSecret: string;
193
211
  } | undefined;
212
+ line?: {
213
+ channelId: string;
214
+ channelSecret: string;
215
+ } | undefined;
194
216
  lineRichMenuId?: string | null | undefined;
195
217
  messengerIntegrationType?: "own" | "business" | undefined;
196
218
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -239,6 +261,10 @@ export declare const facebookFeedContract: {
239
261
  mobileNumber: string;
240
262
  apiSecret: string;
241
263
  } | undefined;
264
+ line?: {
265
+ channelId: string;
266
+ channelSecret: string;
267
+ } | undefined;
242
268
  lineRichMenuId?: string | null | undefined;
243
269
  messengerIntegrationType?: "own" | "business" | undefined;
244
270
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -326,6 +352,16 @@ export declare const facebookFeedContract: {
326
352
  mobileNumber: string;
327
353
  apiSecret: string;
328
354
  }>>;
355
+ line: z.ZodOptional<z.ZodObject<{
356
+ channelId: z.ZodString;
357
+ channelSecret: z.ZodString;
358
+ }, "strip", z.ZodTypeAny, {
359
+ channelId: string;
360
+ channelSecret: string;
361
+ }, {
362
+ channelId: string;
363
+ channelSecret: string;
364
+ }>>;
329
365
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
330
366
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
331
367
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -356,6 +392,10 @@ export declare const facebookFeedContract: {
356
392
  mobileNumber: string;
357
393
  apiSecret: string;
358
394
  } | undefined;
395
+ line?: {
396
+ channelId: string;
397
+ channelSecret: string;
398
+ } | undefined;
359
399
  lineRichMenuId?: string | null | undefined;
360
400
  messengerIntegrationType?: "own" | "business" | undefined;
361
401
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -386,6 +426,10 @@ export declare const facebookFeedContract: {
386
426
  mobileNumber: string;
387
427
  apiSecret: string;
388
428
  } | undefined;
429
+ line?: {
430
+ channelId: string;
431
+ channelSecret: string;
432
+ } | undefined;
389
433
  lineRichMenuId?: string | null | undefined;
390
434
  messengerIntegrationType?: "own" | "business" | undefined;
391
435
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -446,6 +490,10 @@ export declare const facebookFeedContract: {
446
490
  mobileNumber: string;
447
491
  apiSecret: string;
448
492
  } | undefined;
493
+ line?: {
494
+ channelId: string;
495
+ channelSecret: string;
496
+ } | undefined;
449
497
  lineRichMenuId?: string | null | undefined;
450
498
  messengerIntegrationType?: "own" | "business" | undefined;
451
499
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -494,6 +542,10 @@ export declare const facebookFeedContract: {
494
542
  mobileNumber: string;
495
543
  apiSecret: string;
496
544
  } | undefined;
545
+ line?: {
546
+ channelId: string;
547
+ channelSecret: string;
548
+ } | undefined;
497
549
  lineRichMenuId?: string | null | undefined;
498
550
  messengerIntegrationType?: "own" | "business" | undefined;
499
551
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -544,6 +596,10 @@ export declare const facebookFeedContract: {
544
596
  mobileNumber: string;
545
597
  apiSecret: string;
546
598
  } | undefined;
599
+ line?: {
600
+ channelId: string;
601
+ channelSecret: string;
602
+ } | undefined;
547
603
  lineRichMenuId?: string | null | undefined;
548
604
  messengerIntegrationType?: "own" | "business" | undefined;
549
605
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -595,6 +651,10 @@ export declare const facebookFeedContract: {
595
651
  mobileNumber: string;
596
652
  apiSecret: string;
597
653
  } | undefined;
654
+ line?: {
655
+ channelId: string;
656
+ channelSecret: string;
657
+ } | undefined;
598
658
  lineRichMenuId?: string | null | undefined;
599
659
  messengerIntegrationType?: "own" | "business" | undefined;
600
660
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -704,6 +764,16 @@ export declare const facebookFeedContract: {
704
764
  mobileNumber: string;
705
765
  apiSecret: string;
706
766
  }>>;
767
+ line: z.ZodOptional<z.ZodObject<{
768
+ channelId: z.ZodString;
769
+ channelSecret: z.ZodString;
770
+ }, "strip", z.ZodTypeAny, {
771
+ channelId: string;
772
+ channelSecret: string;
773
+ }, {
774
+ channelId: string;
775
+ channelSecret: string;
776
+ }>>;
707
777
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
708
778
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
709
779
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -734,6 +804,10 @@ export declare const facebookFeedContract: {
734
804
  mobileNumber: string;
735
805
  apiSecret: string;
736
806
  } | undefined;
807
+ line?: {
808
+ channelId: string;
809
+ channelSecret: string;
810
+ } | undefined;
737
811
  lineRichMenuId?: string | null | undefined;
738
812
  messengerIntegrationType?: "own" | "business" | undefined;
739
813
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -764,6 +838,10 @@ export declare const facebookFeedContract: {
764
838
  mobileNumber: string;
765
839
  apiSecret: string;
766
840
  } | undefined;
841
+ line?: {
842
+ channelId: string;
843
+ channelSecret: string;
844
+ } | undefined;
767
845
  lineRichMenuId?: string | null | undefined;
768
846
  messengerIntegrationType?: "own" | "business" | undefined;
769
847
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -824,6 +902,10 @@ export declare const facebookFeedContract: {
824
902
  mobileNumber: string;
825
903
  apiSecret: string;
826
904
  } | undefined;
905
+ line?: {
906
+ channelId: string;
907
+ channelSecret: string;
908
+ } | undefined;
827
909
  lineRichMenuId?: string | null | undefined;
828
910
  messengerIntegrationType?: "own" | "business" | undefined;
829
911
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -872,6 +954,10 @@ export declare const facebookFeedContract: {
872
954
  mobileNumber: string;
873
955
  apiSecret: string;
874
956
  } | undefined;
957
+ line?: {
958
+ channelId: string;
959
+ channelSecret: string;
960
+ } | undefined;
875
961
  lineRichMenuId?: string | null | undefined;
876
962
  messengerIntegrationType?: "own" | "business" | undefined;
877
963
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -959,6 +1045,16 @@ export declare const facebookFeedContract: {
959
1045
  mobileNumber: string;
960
1046
  apiSecret: string;
961
1047
  }>>;
1048
+ line: z.ZodOptional<z.ZodObject<{
1049
+ channelId: z.ZodString;
1050
+ channelSecret: z.ZodString;
1051
+ }, "strip", z.ZodTypeAny, {
1052
+ channelId: string;
1053
+ channelSecret: string;
1054
+ }, {
1055
+ channelId: string;
1056
+ channelSecret: string;
1057
+ }>>;
962
1058
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
963
1059
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
964
1060
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -989,6 +1085,10 @@ export declare const facebookFeedContract: {
989
1085
  mobileNumber: string;
990
1086
  apiSecret: string;
991
1087
  } | undefined;
1088
+ line?: {
1089
+ channelId: string;
1090
+ channelSecret: string;
1091
+ } | undefined;
992
1092
  lineRichMenuId?: string | null | undefined;
993
1093
  messengerIntegrationType?: "own" | "business" | undefined;
994
1094
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -1019,6 +1119,10 @@ export declare const facebookFeedContract: {
1019
1119
  mobileNumber: string;
1020
1120
  apiSecret: string;
1021
1121
  } | undefined;
1122
+ line?: {
1123
+ channelId: string;
1124
+ channelSecret: string;
1125
+ } | undefined;
1022
1126
  lineRichMenuId?: string | null | undefined;
1023
1127
  messengerIntegrationType?: "own" | "business" | undefined;
1024
1128
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -1079,6 +1183,10 @@ export declare const facebookFeedContract: {
1079
1183
  mobileNumber: string;
1080
1184
  apiSecret: string;
1081
1185
  } | undefined;
1186
+ line?: {
1187
+ channelId: string;
1188
+ channelSecret: string;
1189
+ } | undefined;
1082
1190
  lineRichMenuId?: string | null | undefined;
1083
1191
  messengerIntegrationType?: "own" | "business" | undefined;
1084
1192
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -1127,6 +1235,10 @@ export declare const facebookFeedContract: {
1127
1235
  mobileNumber: string;
1128
1236
  apiSecret: string;
1129
1237
  } | undefined;
1238
+ line?: {
1239
+ channelId: string;
1240
+ channelSecret: string;
1241
+ } | undefined;
1130
1242
  lineRichMenuId?: string | null | undefined;
1131
1243
  messengerIntegrationType?: "own" | "business" | undefined;
1132
1244
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -1177,6 +1289,10 @@ export declare const facebookFeedContract: {
1177
1289
  mobileNumber: string;
1178
1290
  apiSecret: string;
1179
1291
  } | undefined;
1292
+ line?: {
1293
+ channelId: string;
1294
+ channelSecret: string;
1295
+ } | undefined;
1180
1296
  lineRichMenuId?: string | null | undefined;
1181
1297
  messengerIntegrationType?: "own" | "business" | undefined;
1182
1298
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -1228,6 +1344,10 @@ export declare const facebookFeedContract: {
1228
1344
  mobileNumber: string;
1229
1345
  apiSecret: string;
1230
1346
  } | undefined;
1347
+ line?: {
1348
+ channelId: string;
1349
+ channelSecret: string;
1350
+ } | undefined;
1231
1351
  lineRichMenuId?: string | null | undefined;
1232
1352
  messengerIntegrationType?: "own" | "business" | undefined;
1233
1353
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -1349,6 +1469,16 @@ export declare const facebookFeedContract: {
1349
1469
  mobileNumber: string;
1350
1470
  apiSecret: string;
1351
1471
  }>>;
1472
+ line: z.ZodOptional<z.ZodObject<{
1473
+ channelId: z.ZodString;
1474
+ channelSecret: z.ZodString;
1475
+ }, "strip", z.ZodTypeAny, {
1476
+ channelId: string;
1477
+ channelSecret: string;
1478
+ }, {
1479
+ channelId: string;
1480
+ channelSecret: string;
1481
+ }>>;
1352
1482
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1353
1483
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
1354
1484
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -1379,6 +1509,10 @@ export declare const facebookFeedContract: {
1379
1509
  mobileNumber: string;
1380
1510
  apiSecret: string;
1381
1511
  } | undefined;
1512
+ line?: {
1513
+ channelId: string;
1514
+ channelSecret: string;
1515
+ } | undefined;
1382
1516
  lineRichMenuId?: string | null | undefined;
1383
1517
  messengerIntegrationType?: "own" | "business" | undefined;
1384
1518
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -1409,6 +1543,10 @@ export declare const facebookFeedContract: {
1409
1543
  mobileNumber: string;
1410
1544
  apiSecret: string;
1411
1545
  } | undefined;
1546
+ line?: {
1547
+ channelId: string;
1548
+ channelSecret: string;
1549
+ } | undefined;
1412
1550
  lineRichMenuId?: string | null | undefined;
1413
1551
  messengerIntegrationType?: "own" | "business" | undefined;
1414
1552
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -1469,6 +1607,10 @@ export declare const facebookFeedContract: {
1469
1607
  mobileNumber: string;
1470
1608
  apiSecret: string;
1471
1609
  } | undefined;
1610
+ line?: {
1611
+ channelId: string;
1612
+ channelSecret: string;
1613
+ } | undefined;
1472
1614
  lineRichMenuId?: string | null | undefined;
1473
1615
  messengerIntegrationType?: "own" | "business" | undefined;
1474
1616
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -1517,6 +1659,10 @@ export declare const facebookFeedContract: {
1517
1659
  mobileNumber: string;
1518
1660
  apiSecret: string;
1519
1661
  } | undefined;
1662
+ line?: {
1663
+ channelId: string;
1664
+ channelSecret: string;
1665
+ } | undefined;
1520
1666
  lineRichMenuId?: string | null | undefined;
1521
1667
  messengerIntegrationType?: "own" | "business" | undefined;
1522
1668
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -1567,6 +1713,10 @@ export declare const facebookFeedContract: {
1567
1713
  mobileNumber: string;
1568
1714
  apiSecret: string;
1569
1715
  } | undefined;
1716
+ line?: {
1717
+ channelId: string;
1718
+ channelSecret: string;
1719
+ } | undefined;
1570
1720
  lineRichMenuId?: string | null | undefined;
1571
1721
  messengerIntegrationType?: "own" | "business" | undefined;
1572
1722
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -1618,6 +1768,10 @@ export declare const facebookFeedContract: {
1618
1768
  mobileNumber: string;
1619
1769
  apiSecret: string;
1620
1770
  } | undefined;
1771
+ line?: {
1772
+ channelId: string;
1773
+ channelSecret: string;
1774
+ } | undefined;
1621
1775
  lineRichMenuId?: string | null | undefined;
1622
1776
  messengerIntegrationType?: "own" | "business" | undefined;
1623
1777
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -1739,6 +1893,16 @@ export declare const facebookFeedContract: {
1739
1893
  mobileNumber: string;
1740
1894
  apiSecret: string;
1741
1895
  }>>;
1896
+ line: z.ZodOptional<z.ZodObject<{
1897
+ channelId: z.ZodString;
1898
+ channelSecret: z.ZodString;
1899
+ }, "strip", z.ZodTypeAny, {
1900
+ channelId: string;
1901
+ channelSecret: string;
1902
+ }, {
1903
+ channelId: string;
1904
+ channelSecret: string;
1905
+ }>>;
1742
1906
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1743
1907
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
1744
1908
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -1769,6 +1933,10 @@ export declare const facebookFeedContract: {
1769
1933
  mobileNumber: string;
1770
1934
  apiSecret: string;
1771
1935
  } | undefined;
1936
+ line?: {
1937
+ channelId: string;
1938
+ channelSecret: string;
1939
+ } | undefined;
1772
1940
  lineRichMenuId?: string | null | undefined;
1773
1941
  messengerIntegrationType?: "own" | "business" | undefined;
1774
1942
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -1799,6 +1967,10 @@ export declare const facebookFeedContract: {
1799
1967
  mobileNumber: string;
1800
1968
  apiSecret: string;
1801
1969
  } | undefined;
1970
+ line?: {
1971
+ channelId: string;
1972
+ channelSecret: string;
1973
+ } | undefined;
1802
1974
  lineRichMenuId?: string | null | undefined;
1803
1975
  messengerIntegrationType?: "own" | "business" | undefined;
1804
1976
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -1859,6 +2031,10 @@ export declare const facebookFeedContract: {
1859
2031
  mobileNumber: string;
1860
2032
  apiSecret: string;
1861
2033
  } | undefined;
2034
+ line?: {
2035
+ channelId: string;
2036
+ channelSecret: string;
2037
+ } | undefined;
1862
2038
  lineRichMenuId?: string | null | undefined;
1863
2039
  messengerIntegrationType?: "own" | "business" | undefined;
1864
2040
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -1907,6 +2083,10 @@ export declare const facebookFeedContract: {
1907
2083
  mobileNumber: string;
1908
2084
  apiSecret: string;
1909
2085
  } | undefined;
2086
+ line?: {
2087
+ channelId: string;
2088
+ channelSecret: string;
2089
+ } | undefined;
1910
2090
  lineRichMenuId?: string | null | undefined;
1911
2091
  messengerIntegrationType?: "own" | "business" | undefined;
1912
2092
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -1957,6 +2137,10 @@ export declare const facebookFeedContract: {
1957
2137
  mobileNumber: string;
1958
2138
  apiSecret: string;
1959
2139
  } | undefined;
2140
+ line?: {
2141
+ channelId: string;
2142
+ channelSecret: string;
2143
+ } | undefined;
1960
2144
  lineRichMenuId?: string | null | undefined;
1961
2145
  messengerIntegrationType?: "own" | "business" | undefined;
1962
2146
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -2008,6 +2192,10 @@ export declare const facebookFeedContract: {
2008
2192
  mobileNumber: string;
2009
2193
  apiSecret: string;
2010
2194
  } | undefined;
2195
+ line?: {
2196
+ channelId: string;
2197
+ channelSecret: string;
2198
+ } | undefined;
2011
2199
  lineRichMenuId?: string | null | undefined;
2012
2200
  messengerIntegrationType?: "own" | "business" | undefined;
2013
2201
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -2116,6 +2304,16 @@ export declare const facebookFeedContract: {
2116
2304
  mobileNumber: string;
2117
2305
  apiSecret: string;
2118
2306
  }>>;
2307
+ line: z.ZodOptional<z.ZodObject<{
2308
+ channelId: z.ZodString;
2309
+ channelSecret: z.ZodString;
2310
+ }, "strip", z.ZodTypeAny, {
2311
+ channelId: string;
2312
+ channelSecret: string;
2313
+ }, {
2314
+ channelId: string;
2315
+ channelSecret: string;
2316
+ }>>;
2119
2317
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2120
2318
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
2121
2319
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -2146,6 +2344,10 @@ export declare const facebookFeedContract: {
2146
2344
  mobileNumber: string;
2147
2345
  apiSecret: string;
2148
2346
  } | undefined;
2347
+ line?: {
2348
+ channelId: string;
2349
+ channelSecret: string;
2350
+ } | undefined;
2149
2351
  lineRichMenuId?: string | null | undefined;
2150
2352
  messengerIntegrationType?: "own" | "business" | undefined;
2151
2353
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -2176,6 +2378,10 @@ export declare const facebookFeedContract: {
2176
2378
  mobileNumber: string;
2177
2379
  apiSecret: string;
2178
2380
  } | undefined;
2381
+ line?: {
2382
+ channelId: string;
2383
+ channelSecret: string;
2384
+ } | undefined;
2179
2385
  lineRichMenuId?: string | null | undefined;
2180
2386
  messengerIntegrationType?: "own" | "business" | undefined;
2181
2387
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -2241,6 +2447,10 @@ export declare const facebookFeedContract: {
2241
2447
  mobileNumber: string;
2242
2448
  apiSecret: string;
2243
2449
  } | undefined;
2450
+ line?: {
2451
+ channelId: string;
2452
+ channelSecret: string;
2453
+ } | undefined;
2244
2454
  lineRichMenuId?: string | null | undefined;
2245
2455
  messengerIntegrationType?: "own" | "business" | undefined;
2246
2456
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -2293,6 +2503,10 @@ export declare const facebookFeedContract: {
2293
2503
  mobileNumber: string;
2294
2504
  apiSecret: string;
2295
2505
  } | undefined;
2506
+ line?: {
2507
+ channelId: string;
2508
+ channelSecret: string;
2509
+ } | undefined;
2296
2510
  lineRichMenuId?: string | null | undefined;
2297
2511
  messengerIntegrationType?: "own" | "business" | undefined;
2298
2512
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -2384,6 +2598,16 @@ export declare const facebookFeedContract: {
2384
2598
  mobileNumber: string;
2385
2599
  apiSecret: string;
2386
2600
  }>>;
2601
+ line: z.ZodOptional<z.ZodObject<{
2602
+ channelId: z.ZodString;
2603
+ channelSecret: z.ZodString;
2604
+ }, "strip", z.ZodTypeAny, {
2605
+ channelId: string;
2606
+ channelSecret: string;
2607
+ }, {
2608
+ channelId: string;
2609
+ channelSecret: string;
2610
+ }>>;
2387
2611
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2388
2612
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
2389
2613
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -2414,6 +2638,10 @@ export declare const facebookFeedContract: {
2414
2638
  mobileNumber: string;
2415
2639
  apiSecret: string;
2416
2640
  } | undefined;
2641
+ line?: {
2642
+ channelId: string;
2643
+ channelSecret: string;
2644
+ } | undefined;
2417
2645
  lineRichMenuId?: string | null | undefined;
2418
2646
  messengerIntegrationType?: "own" | "business" | undefined;
2419
2647
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -2444,6 +2672,10 @@ export declare const facebookFeedContract: {
2444
2672
  mobileNumber: string;
2445
2673
  apiSecret: string;
2446
2674
  } | undefined;
2675
+ line?: {
2676
+ channelId: string;
2677
+ channelSecret: string;
2678
+ } | undefined;
2447
2679
  lineRichMenuId?: string | null | undefined;
2448
2680
  messengerIntegrationType?: "own" | "business" | undefined;
2449
2681
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -2504,6 +2736,10 @@ export declare const facebookFeedContract: {
2504
2736
  mobileNumber: string;
2505
2737
  apiSecret: string;
2506
2738
  } | undefined;
2739
+ line?: {
2740
+ channelId: string;
2741
+ channelSecret: string;
2742
+ } | undefined;
2507
2743
  lineRichMenuId?: string | null | undefined;
2508
2744
  messengerIntegrationType?: "own" | "business" | undefined;
2509
2745
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -2552,6 +2788,10 @@ export declare const facebookFeedContract: {
2552
2788
  mobileNumber: string;
2553
2789
  apiSecret: string;
2554
2790
  } | undefined;
2791
+ line?: {
2792
+ channelId: string;
2793
+ channelSecret: string;
2794
+ } | undefined;
2555
2795
  lineRichMenuId?: string | null | undefined;
2556
2796
  messengerIntegrationType?: "own" | "business" | undefined;
2557
2797
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -2602,6 +2842,10 @@ export declare const facebookFeedContract: {
2602
2842
  mobileNumber: string;
2603
2843
  apiSecret: string;
2604
2844
  } | undefined;
2845
+ line?: {
2846
+ channelId: string;
2847
+ channelSecret: string;
2848
+ } | undefined;
2605
2849
  lineRichMenuId?: string | null | undefined;
2606
2850
  messengerIntegrationType?: "own" | "business" | undefined;
2607
2851
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -2653,6 +2897,10 @@ export declare const facebookFeedContract: {
2653
2897
  mobileNumber: string;
2654
2898
  apiSecret: string;
2655
2899
  } | undefined;
2900
+ line?: {
2901
+ channelId: string;
2902
+ channelSecret: string;
2903
+ } | undefined;
2656
2904
  lineRichMenuId?: string | null | undefined;
2657
2905
  messengerIntegrationType?: "own" | "business" | undefined;
2658
2906
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -2774,6 +3022,16 @@ export declare const facebookFeedContract: {
2774
3022
  mobileNumber: string;
2775
3023
  apiSecret: string;
2776
3024
  }>>;
3025
+ line: z.ZodOptional<z.ZodObject<{
3026
+ channelId: z.ZodString;
3027
+ channelSecret: z.ZodString;
3028
+ }, "strip", z.ZodTypeAny, {
3029
+ channelId: string;
3030
+ channelSecret: string;
3031
+ }, {
3032
+ channelId: string;
3033
+ channelSecret: string;
3034
+ }>>;
2777
3035
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2778
3036
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
2779
3037
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -2804,6 +3062,10 @@ export declare const facebookFeedContract: {
2804
3062
  mobileNumber: string;
2805
3063
  apiSecret: string;
2806
3064
  } | undefined;
3065
+ line?: {
3066
+ channelId: string;
3067
+ channelSecret: string;
3068
+ } | undefined;
2807
3069
  lineRichMenuId?: string | null | undefined;
2808
3070
  messengerIntegrationType?: "own" | "business" | undefined;
2809
3071
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -2834,6 +3096,10 @@ export declare const facebookFeedContract: {
2834
3096
  mobileNumber: string;
2835
3097
  apiSecret: string;
2836
3098
  } | undefined;
3099
+ line?: {
3100
+ channelId: string;
3101
+ channelSecret: string;
3102
+ } | undefined;
2837
3103
  lineRichMenuId?: string | null | undefined;
2838
3104
  messengerIntegrationType?: "own" | "business" | undefined;
2839
3105
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -4218,6 +4484,10 @@ export declare const facebookFeedContract: {
4218
4484
  mobileNumber: string;
4219
4485
  apiSecret: string;
4220
4486
  } | undefined;
4487
+ line?: {
4488
+ channelId: string;
4489
+ channelSecret: string;
4490
+ } | undefined;
4221
4491
  lineRichMenuId?: string | null | undefined;
4222
4492
  messengerIntegrationType?: "own" | "business" | undefined;
4223
4493
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -4457,6 +4727,10 @@ export declare const facebookFeedContract: {
4457
4727
  mobileNumber: string;
4458
4728
  apiSecret: string;
4459
4729
  } | undefined;
4730
+ line?: {
4731
+ channelId: string;
4732
+ channelSecret: string;
4733
+ } | undefined;
4460
4734
  lineRichMenuId?: string | null | undefined;
4461
4735
  messengerIntegrationType?: "own" | "business" | undefined;
4462
4736
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -4988,6 +5262,16 @@ export declare const facebookFeedContract: {
4988
5262
  mobileNumber: string;
4989
5263
  apiSecret: string;
4990
5264
  }>>;
5265
+ line: z.ZodOptional<z.ZodObject<{
5266
+ channelId: z.ZodString;
5267
+ channelSecret: z.ZodString;
5268
+ }, "strip", z.ZodTypeAny, {
5269
+ channelId: string;
5270
+ channelSecret: string;
5271
+ }, {
5272
+ channelId: string;
5273
+ channelSecret: string;
5274
+ }>>;
4991
5275
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
4992
5276
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
4993
5277
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -5018,6 +5302,10 @@ export declare const facebookFeedContract: {
5018
5302
  mobileNumber: string;
5019
5303
  apiSecret: string;
5020
5304
  } | undefined;
5305
+ line?: {
5306
+ channelId: string;
5307
+ channelSecret: string;
5308
+ } | undefined;
5021
5309
  lineRichMenuId?: string | null | undefined;
5022
5310
  messengerIntegrationType?: "own" | "business" | undefined;
5023
5311
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -5048,6 +5336,10 @@ export declare const facebookFeedContract: {
5048
5336
  mobileNumber: string;
5049
5337
  apiSecret: string;
5050
5338
  } | undefined;
5339
+ line?: {
5340
+ channelId: string;
5341
+ channelSecret: string;
5342
+ } | undefined;
5051
5343
  lineRichMenuId?: string | null | undefined;
5052
5344
  messengerIntegrationType?: "own" | "business" | undefined;
5053
5345
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -5108,6 +5400,10 @@ export declare const facebookFeedContract: {
5108
5400
  mobileNumber: string;
5109
5401
  apiSecret: string;
5110
5402
  } | undefined;
5403
+ line?: {
5404
+ channelId: string;
5405
+ channelSecret: string;
5406
+ } | undefined;
5111
5407
  lineRichMenuId?: string | null | undefined;
5112
5408
  messengerIntegrationType?: "own" | "business" | undefined;
5113
5409
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -5156,6 +5452,10 @@ export declare const facebookFeedContract: {
5156
5452
  mobileNumber: string;
5157
5453
  apiSecret: string;
5158
5454
  } | undefined;
5455
+ line?: {
5456
+ channelId: string;
5457
+ channelSecret: string;
5458
+ } | undefined;
5159
5459
  lineRichMenuId?: string | null | undefined;
5160
5460
  messengerIntegrationType?: "own" | "business" | undefined;
5161
5461
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -5209,6 +5509,10 @@ export declare const facebookFeedContract: {
5209
5509
  mobileNumber: string;
5210
5510
  apiSecret: string;
5211
5511
  } | undefined;
5512
+ line?: {
5513
+ channelId: string;
5514
+ channelSecret: string;
5515
+ } | undefined;
5212
5516
  lineRichMenuId?: string | null | undefined;
5213
5517
  messengerIntegrationType?: "own" | "business" | undefined;
5214
5518
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -5301,6 +5605,10 @@ export declare const facebookFeedContract: {
5301
5605
  mobileNumber: string;
5302
5606
  apiSecret: string;
5303
5607
  } | undefined;
5608
+ line?: {
5609
+ channelId: string;
5610
+ channelSecret: string;
5611
+ } | undefined;
5304
5612
  lineRichMenuId?: string | null | undefined;
5305
5613
  messengerIntegrationType?: "own" | "business" | undefined;
5306
5614
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -5442,6 +5750,10 @@ export declare const facebookFeedContract: {
5442
5750
  mobileNumber: string;
5443
5751
  apiSecret: string;
5444
5752
  } | undefined;
5753
+ line?: {
5754
+ channelId: string;
5755
+ channelSecret: string;
5756
+ } | undefined;
5445
5757
  lineRichMenuId?: string | null | undefined;
5446
5758
  messengerIntegrationType?: "own" | "business" | undefined;
5447
5759
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -5577,6 +5889,10 @@ export declare const facebookFeedContract: {
5577
5889
  mobileNumber: string;
5578
5890
  apiSecret: string;
5579
5891
  } | undefined;
5892
+ line?: {
5893
+ channelId: string;
5894
+ channelSecret: string;
5895
+ } | undefined;
5580
5896
  lineRichMenuId?: string | null | undefined;
5581
5897
  messengerIntegrationType?: "own" | "business" | undefined;
5582
5898
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -7642,6 +7958,16 @@ export declare const facebookFeedContract: {
7642
7958
  mobileNumber: string;
7643
7959
  apiSecret: string;
7644
7960
  }>>;
7961
+ line: z.ZodOptional<z.ZodObject<{
7962
+ channelId: z.ZodString;
7963
+ channelSecret: z.ZodString;
7964
+ }, "strip", z.ZodTypeAny, {
7965
+ channelId: string;
7966
+ channelSecret: string;
7967
+ }, {
7968
+ channelId: string;
7969
+ channelSecret: string;
7970
+ }>>;
7645
7971
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
7646
7972
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
7647
7973
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -7672,6 +7998,10 @@ export declare const facebookFeedContract: {
7672
7998
  mobileNumber: string;
7673
7999
  apiSecret: string;
7674
8000
  } | undefined;
8001
+ line?: {
8002
+ channelId: string;
8003
+ channelSecret: string;
8004
+ } | undefined;
7675
8005
  lineRichMenuId?: string | null | undefined;
7676
8006
  messengerIntegrationType?: "own" | "business" | undefined;
7677
8007
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -7702,6 +8032,10 @@ export declare const facebookFeedContract: {
7702
8032
  mobileNumber: string;
7703
8033
  apiSecret: string;
7704
8034
  } | undefined;
8035
+ line?: {
8036
+ channelId: string;
8037
+ channelSecret: string;
8038
+ } | undefined;
7705
8039
  lineRichMenuId?: string | null | undefined;
7706
8040
  messengerIntegrationType?: "own" | "business" | undefined;
7707
8041
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -7966,6 +8300,10 @@ export declare const facebookFeedContract: {
7966
8300
  mobileNumber: string;
7967
8301
  apiSecret: string;
7968
8302
  } | undefined;
8303
+ line?: {
8304
+ channelId: string;
8305
+ channelSecret: string;
8306
+ } | undefined;
7969
8307
  lineRichMenuId?: string | null | undefined;
7970
8308
  messengerIntegrationType?: "own" | "business" | undefined;
7971
8309
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -8061,6 +8399,10 @@ export declare const facebookFeedContract: {
8061
8399
  mobileNumber: string;
8062
8400
  apiSecret: string;
8063
8401
  } | undefined;
8402
+ line?: {
8403
+ channelId: string;
8404
+ channelSecret: string;
8405
+ } | undefined;
8064
8406
  lineRichMenuId?: string | null | undefined;
8065
8407
  messengerIntegrationType?: "own" | "business" | undefined;
8066
8408
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -8720,6 +9062,10 @@ export declare const facebookFeedContract: {
8720
9062
  mobileNumber: string;
8721
9063
  apiSecret: string;
8722
9064
  } | undefined;
9065
+ line?: {
9066
+ channelId: string;
9067
+ channelSecret: string;
9068
+ } | undefined;
8723
9069
  lineRichMenuId?: string | null | undefined;
8724
9070
  messengerIntegrationType?: "own" | "business" | undefined;
8725
9071
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -9149,6 +9495,10 @@ export declare const facebookFeedContract: {
9149
9495
  mobileNumber: string;
9150
9496
  apiSecret: string;
9151
9497
  } | undefined;
9498
+ line?: {
9499
+ channelId: string;
9500
+ channelSecret: string;
9501
+ } | undefined;
9152
9502
  lineRichMenuId?: string | null | undefined;
9153
9503
  messengerIntegrationType?: "own" | "business" | undefined;
9154
9504
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -12329,6 +12679,16 @@ export declare const facebookFeedContract: {
12329
12679
  mobileNumber: string;
12330
12680
  apiSecret: string;
12331
12681
  }>>;
12682
+ line: z.ZodOptional<z.ZodObject<{
12683
+ channelId: z.ZodString;
12684
+ channelSecret: z.ZodString;
12685
+ }, "strip", z.ZodTypeAny, {
12686
+ channelId: string;
12687
+ channelSecret: string;
12688
+ }, {
12689
+ channelId: string;
12690
+ channelSecret: string;
12691
+ }>>;
12332
12692
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
12333
12693
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
12334
12694
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -12359,6 +12719,10 @@ export declare const facebookFeedContract: {
12359
12719
  mobileNumber: string;
12360
12720
  apiSecret: string;
12361
12721
  } | undefined;
12722
+ line?: {
12723
+ channelId: string;
12724
+ channelSecret: string;
12725
+ } | undefined;
12362
12726
  lineRichMenuId?: string | null | undefined;
12363
12727
  messengerIntegrationType?: "own" | "business" | undefined;
12364
12728
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -12389,6 +12753,10 @@ export declare const facebookFeedContract: {
12389
12753
  mobileNumber: string;
12390
12754
  apiSecret: string;
12391
12755
  } | undefined;
12756
+ line?: {
12757
+ channelId: string;
12758
+ channelSecret: string;
12759
+ } | undefined;
12392
12760
  lineRichMenuId?: string | null | undefined;
12393
12761
  messengerIntegrationType?: "own" | "business" | undefined;
12394
12762
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -12653,6 +13021,10 @@ export declare const facebookFeedContract: {
12653
13021
  mobileNumber: string;
12654
13022
  apiSecret: string;
12655
13023
  } | undefined;
13024
+ line?: {
13025
+ channelId: string;
13026
+ channelSecret: string;
13027
+ } | undefined;
12656
13028
  lineRichMenuId?: string | null | undefined;
12657
13029
  messengerIntegrationType?: "own" | "business" | undefined;
12658
13030
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -12748,6 +13120,10 @@ export declare const facebookFeedContract: {
12748
13120
  mobileNumber: string;
12749
13121
  apiSecret: string;
12750
13122
  } | undefined;
13123
+ line?: {
13124
+ channelId: string;
13125
+ channelSecret: string;
13126
+ } | undefined;
12751
13127
  lineRichMenuId?: string | null | undefined;
12752
13128
  messengerIntegrationType?: "own" | "business" | undefined;
12753
13129
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -13407,6 +13783,10 @@ export declare const facebookFeedContract: {
13407
13783
  mobileNumber: string;
13408
13784
  apiSecret: string;
13409
13785
  } | undefined;
13786
+ line?: {
13787
+ channelId: string;
13788
+ channelSecret: string;
13789
+ } | undefined;
13410
13790
  lineRichMenuId?: string | null | undefined;
13411
13791
  messengerIntegrationType?: "own" | "business" | undefined;
13412
13792
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -13836,6 +14216,10 @@ export declare const facebookFeedContract: {
13836
14216
  mobileNumber: string;
13837
14217
  apiSecret: string;
13838
14218
  } | undefined;
14219
+ line?: {
14220
+ channelId: string;
14221
+ channelSecret: string;
14222
+ } | undefined;
13839
14223
  lineRichMenuId?: string | null | undefined;
13840
14224
  messengerIntegrationType?: "own" | "business" | undefined;
13841
14225
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -16038,6 +16422,10 @@ export declare const facebookFeedContract: {
16038
16422
  mobileNumber: string;
16039
16423
  apiSecret: string;
16040
16424
  } | undefined;
16425
+ line?: {
16426
+ channelId: string;
16427
+ channelSecret: string;
16428
+ } | undefined;
16041
16429
  lineRichMenuId?: string | null | undefined;
16042
16430
  messengerIntegrationType?: "own" | "business" | undefined;
16043
16431
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -16804,6 +17192,10 @@ export declare const facebookFeedContract: {
16804
17192
  mobileNumber: string;
16805
17193
  apiSecret: string;
16806
17194
  } | undefined;
17195
+ line?: {
17196
+ channelId: string;
17197
+ channelSecret: string;
17198
+ } | undefined;
16807
17199
  lineRichMenuId?: string | null | undefined;
16808
17200
  messengerIntegrationType?: "own" | "business" | undefined;
16809
17201
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -17571,6 +17963,10 @@ export declare const facebookFeedContract: {
17571
17963
  mobileNumber: string;
17572
17964
  apiSecret: string;
17573
17965
  } | undefined;
17966
+ line?: {
17967
+ channelId: string;
17968
+ channelSecret: string;
17969
+ } | undefined;
17574
17970
  lineRichMenuId?: string | null | undefined;
17575
17971
  messengerIntegrationType?: "own" | "business" | undefined;
17576
17972
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -18337,6 +18733,10 @@ export declare const facebookFeedContract: {
18337
18733
  mobileNumber: string;
18338
18734
  apiSecret: string;
18339
18735
  } | undefined;
18736
+ line?: {
18737
+ channelId: string;
18738
+ channelSecret: string;
18739
+ } | undefined;
18340
18740
  lineRichMenuId?: string | null | undefined;
18341
18741
  messengerIntegrationType?: "own" | "business" | undefined;
18342
18742
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -19104,6 +19504,10 @@ export declare const facebookFeedContract: {
19104
19504
  mobileNumber: string;
19105
19505
  apiSecret: string;
19106
19506
  } | undefined;
19507
+ line?: {
19508
+ channelId: string;
19509
+ channelSecret: string;
19510
+ } | undefined;
19107
19511
  lineRichMenuId?: string | null | undefined;
19108
19512
  messengerIntegrationType?: "own" | "business" | undefined;
19109
19513
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -19870,6 +20274,10 @@ export declare const facebookFeedContract: {
19870
20274
  mobileNumber: string;
19871
20275
  apiSecret: string;
19872
20276
  } | undefined;
20277
+ line?: {
20278
+ channelId: string;
20279
+ channelSecret: string;
20280
+ } | undefined;
19873
20281
  lineRichMenuId?: string | null | undefined;
19874
20282
  messengerIntegrationType?: "own" | "business" | undefined;
19875
20283
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -20639,6 +21047,10 @@ export declare const facebookFeedContract: {
20639
21047
  mobileNumber: string;
20640
21048
  apiSecret: string;
20641
21049
  } | undefined;
21050
+ line?: {
21051
+ channelId: string;
21052
+ channelSecret: string;
21053
+ } | undefined;
20642
21054
  lineRichMenuId?: string | null | undefined;
20643
21055
  messengerIntegrationType?: "own" | "business" | undefined;
20644
21056
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -21405,6 +21817,10 @@ export declare const facebookFeedContract: {
21405
21817
  mobileNumber: string;
21406
21818
  apiSecret: string;
21407
21819
  } | undefined;
21820
+ line?: {
21821
+ channelId: string;
21822
+ channelSecret: string;
21823
+ } | undefined;
21408
21824
  lineRichMenuId?: string | null | undefined;
21409
21825
  messengerIntegrationType?: "own" | "business" | undefined;
21410
21826
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -22175,6 +22591,10 @@ export declare const facebookFeedContract: {
22175
22591
  mobileNumber: string;
22176
22592
  apiSecret: string;
22177
22593
  } | undefined;
22594
+ line?: {
22595
+ channelId: string;
22596
+ channelSecret: string;
22597
+ } | undefined;
22178
22598
  lineRichMenuId?: string | null | undefined;
22179
22599
  messengerIntegrationType?: "own" | "business" | undefined;
22180
22600
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -22941,6 +23361,10 @@ export declare const facebookFeedContract: {
22941
23361
  mobileNumber: string;
22942
23362
  apiSecret: string;
22943
23363
  } | undefined;
23364
+ line?: {
23365
+ channelId: string;
23366
+ channelSecret: string;
23367
+ } | undefined;
22944
23368
  lineRichMenuId?: string | null | undefined;
22945
23369
  messengerIntegrationType?: "own" | "business" | undefined;
22946
23370
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -23660,6 +24084,16 @@ export declare const facebookFeedContract: {
23660
24084
  mobileNumber: string;
23661
24085
  apiSecret: string;
23662
24086
  }>>;
24087
+ line: z.ZodOptional<z.ZodObject<{
24088
+ channelId: z.ZodString;
24089
+ channelSecret: z.ZodString;
24090
+ }, "strip", z.ZodTypeAny, {
24091
+ channelId: string;
24092
+ channelSecret: string;
24093
+ }, {
24094
+ channelId: string;
24095
+ channelSecret: string;
24096
+ }>>;
23663
24097
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
23664
24098
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
23665
24099
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -23690,6 +24124,10 @@ export declare const facebookFeedContract: {
23690
24124
  mobileNumber: string;
23691
24125
  apiSecret: string;
23692
24126
  } | undefined;
24127
+ line?: {
24128
+ channelId: string;
24129
+ channelSecret: string;
24130
+ } | undefined;
23693
24131
  lineRichMenuId?: string | null | undefined;
23694
24132
  messengerIntegrationType?: "own" | "business" | undefined;
23695
24133
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -23720,6 +24158,10 @@ export declare const facebookFeedContract: {
23720
24158
  mobileNumber: string;
23721
24159
  apiSecret: string;
23722
24160
  } | undefined;
24161
+ line?: {
24162
+ channelId: string;
24163
+ channelSecret: string;
24164
+ } | undefined;
23723
24165
  lineRichMenuId?: string | null | undefined;
23724
24166
  messengerIntegrationType?: "own" | "business" | undefined;
23725
24167
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -23780,6 +24222,10 @@ export declare const facebookFeedContract: {
23780
24222
  mobileNumber: string;
23781
24223
  apiSecret: string;
23782
24224
  } | undefined;
24225
+ line?: {
24226
+ channelId: string;
24227
+ channelSecret: string;
24228
+ } | undefined;
23783
24229
  lineRichMenuId?: string | null | undefined;
23784
24230
  messengerIntegrationType?: "own" | "business" | undefined;
23785
24231
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -23828,6 +24274,10 @@ export declare const facebookFeedContract: {
23828
24274
  mobileNumber: string;
23829
24275
  apiSecret: string;
23830
24276
  } | undefined;
24277
+ line?: {
24278
+ channelId: string;
24279
+ channelSecret: string;
24280
+ } | undefined;
23831
24281
  lineRichMenuId?: string | null | undefined;
23832
24282
  messengerIntegrationType?: "own" | "business" | undefined;
23833
24283
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -23879,6 +24329,10 @@ export declare const facebookFeedContract: {
23879
24329
  mobileNumber: string;
23880
24330
  apiSecret: string;
23881
24331
  } | undefined;
24332
+ line?: {
24333
+ channelId: string;
24334
+ channelSecret: string;
24335
+ } | undefined;
23882
24336
  lineRichMenuId?: string | null | undefined;
23883
24337
  messengerIntegrationType?: "own" | "business" | undefined;
23884
24338
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -23930,6 +24384,10 @@ export declare const facebookFeedContract: {
23930
24384
  mobileNumber: string;
23931
24385
  apiSecret: string;
23932
24386
  } | undefined;
24387
+ line?: {
24388
+ channelId: string;
24389
+ channelSecret: string;
24390
+ } | undefined;
23933
24391
  lineRichMenuId?: string | null | undefined;
23934
24392
  messengerIntegrationType?: "own" | "business" | undefined;
23935
24393
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -24133,6 +24591,10 @@ export declare const facebookFeedContract: {
24133
24591
  mobileNumber: string;
24134
24592
  apiSecret: string;
24135
24593
  } | undefined;
24594
+ line?: {
24595
+ channelId: string;
24596
+ channelSecret: string;
24597
+ } | undefined;
24136
24598
  lineRichMenuId?: string | null | undefined;
24137
24599
  messengerIntegrationType?: "own" | "business" | undefined;
24138
24600
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -24218,6 +24680,10 @@ export declare const facebookFeedContract: {
24218
24680
  mobileNumber: string;
24219
24681
  apiSecret: string;
24220
24682
  } | undefined;
24683
+ line?: {
24684
+ channelId: string;
24685
+ channelSecret: string;
24686
+ } | undefined;
24221
24687
  lineRichMenuId?: string | null | undefined;
24222
24688
  messengerIntegrationType?: "own" | "business" | undefined;
24223
24689
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -24308,6 +24774,16 @@ export declare const facebookFeedContract: {
24308
24774
  mobileNumber: string;
24309
24775
  apiSecret: string;
24310
24776
  }>>;
24777
+ line: z.ZodOptional<z.ZodObject<{
24778
+ channelId: z.ZodString;
24779
+ channelSecret: z.ZodString;
24780
+ }, "strip", z.ZodTypeAny, {
24781
+ channelId: string;
24782
+ channelSecret: string;
24783
+ }, {
24784
+ channelId: string;
24785
+ channelSecret: string;
24786
+ }>>;
24311
24787
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
24312
24788
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
24313
24789
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -24338,6 +24814,10 @@ export declare const facebookFeedContract: {
24338
24814
  mobileNumber: string;
24339
24815
  apiSecret: string;
24340
24816
  } | undefined;
24817
+ line?: {
24818
+ channelId: string;
24819
+ channelSecret: string;
24820
+ } | undefined;
24341
24821
  lineRichMenuId?: string | null | undefined;
24342
24822
  messengerIntegrationType?: "own" | "business" | undefined;
24343
24823
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -24368,6 +24848,10 @@ export declare const facebookFeedContract: {
24368
24848
  mobileNumber: string;
24369
24849
  apiSecret: string;
24370
24850
  } | undefined;
24851
+ line?: {
24852
+ channelId: string;
24853
+ channelSecret: string;
24854
+ } | undefined;
24371
24855
  lineRichMenuId?: string | null | undefined;
24372
24856
  messengerIntegrationType?: "own" | "business" | undefined;
24373
24857
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -24428,6 +24912,10 @@ export declare const facebookFeedContract: {
24428
24912
  mobileNumber: string;
24429
24913
  apiSecret: string;
24430
24914
  } | undefined;
24915
+ line?: {
24916
+ channelId: string;
24917
+ channelSecret: string;
24918
+ } | undefined;
24431
24919
  lineRichMenuId?: string | null | undefined;
24432
24920
  messengerIntegrationType?: "own" | "business" | undefined;
24433
24921
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -24476,6 +24964,10 @@ export declare const facebookFeedContract: {
24476
24964
  mobileNumber: string;
24477
24965
  apiSecret: string;
24478
24966
  } | undefined;
24967
+ line?: {
24968
+ channelId: string;
24969
+ channelSecret: string;
24970
+ } | undefined;
24479
24971
  lineRichMenuId?: string | null | undefined;
24480
24972
  messengerIntegrationType?: "own" | "business" | undefined;
24481
24973
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -24527,6 +25019,10 @@ export declare const facebookFeedContract: {
24527
25019
  mobileNumber: string;
24528
25020
  apiSecret: string;
24529
25021
  } | undefined;
25022
+ line?: {
25023
+ channelId: string;
25024
+ channelSecret: string;
25025
+ } | undefined;
24530
25026
  lineRichMenuId?: string | null | undefined;
24531
25027
  messengerIntegrationType?: "own" | "business" | undefined;
24532
25028
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -24578,6 +25074,10 @@ export declare const facebookFeedContract: {
24578
25074
  mobileNumber: string;
24579
25075
  apiSecret: string;
24580
25076
  } | undefined;
25077
+ line?: {
25078
+ channelId: string;
25079
+ channelSecret: string;
25080
+ } | undefined;
24581
25081
  lineRichMenuId?: string | null | undefined;
24582
25082
  messengerIntegrationType?: "own" | "business" | undefined;
24583
25083
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -24781,6 +25281,10 @@ export declare const facebookFeedContract: {
24781
25281
  mobileNumber: string;
24782
25282
  apiSecret: string;
24783
25283
  } | undefined;
25284
+ line?: {
25285
+ channelId: string;
25286
+ channelSecret: string;
25287
+ } | undefined;
24784
25288
  lineRichMenuId?: string | null | undefined;
24785
25289
  messengerIntegrationType?: "own" | "business" | undefined;
24786
25290
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -24866,6 +25370,10 @@ export declare const facebookFeedContract: {
24866
25370
  mobileNumber: string;
24867
25371
  apiSecret: string;
24868
25372
  } | undefined;
25373
+ line?: {
25374
+ channelId: string;
25375
+ channelSecret: string;
25376
+ } | undefined;
24869
25377
  lineRichMenuId?: string | null | undefined;
24870
25378
  messengerIntegrationType?: "own" | "business" | undefined;
24871
25379
  facebookFeedIntegrationType?: "own" | "business" | undefined;