@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
@@ -95,6 +95,16 @@ export declare const channelContract: {
95
95
  mobileNumber: string;
96
96
  apiSecret: string;
97
97
  }>>;
98
+ line: z.ZodOptional<z.ZodObject<{
99
+ channelId: z.ZodString;
100
+ channelSecret: z.ZodString;
101
+ }, "strip", z.ZodTypeAny, {
102
+ channelId: string;
103
+ channelSecret: string;
104
+ }, {
105
+ channelId: string;
106
+ channelSecret: string;
107
+ }>>;
98
108
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
99
109
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
100
110
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -125,6 +135,10 @@ export declare const channelContract: {
125
135
  mobileNumber: string;
126
136
  apiSecret: string;
127
137
  } | undefined;
138
+ line?: {
139
+ channelId: string;
140
+ channelSecret: string;
141
+ } | undefined;
128
142
  lineRichMenuId?: string | null | undefined;
129
143
  messengerIntegrationType?: "own" | "business" | undefined;
130
144
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -155,6 +169,10 @@ export declare const channelContract: {
155
169
  mobileNumber: string;
156
170
  apiSecret: string;
157
171
  } | undefined;
172
+ line?: {
173
+ channelId: string;
174
+ channelSecret: string;
175
+ } | undefined;
158
176
  lineRichMenuId?: string | null | undefined;
159
177
  messengerIntegrationType?: "own" | "business" | undefined;
160
178
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -419,6 +437,10 @@ export declare const channelContract: {
419
437
  mobileNumber: string;
420
438
  apiSecret: string;
421
439
  } | undefined;
440
+ line?: {
441
+ channelId: string;
442
+ channelSecret: string;
443
+ } | undefined;
422
444
  lineRichMenuId?: string | null | undefined;
423
445
  messengerIntegrationType?: "own" | "business" | undefined;
424
446
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -514,6 +536,10 @@ export declare const channelContract: {
514
536
  mobileNumber: string;
515
537
  apiSecret: string;
516
538
  } | undefined;
539
+ line?: {
540
+ channelId: string;
541
+ channelSecret: string;
542
+ } | undefined;
517
543
  lineRichMenuId?: string | null | undefined;
518
544
  messengerIntegrationType?: "own" | "business" | undefined;
519
545
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -611,6 +637,10 @@ export declare const channelContract: {
611
637
  mobileNumber: string;
612
638
  apiSecret: string;
613
639
  } | undefined;
640
+ line?: {
641
+ channelId: string;
642
+ channelSecret: string;
643
+ } | undefined;
614
644
  lineRichMenuId?: string | null | undefined;
615
645
  messengerIntegrationType?: "own" | "business" | undefined;
616
646
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -709,6 +739,10 @@ export declare const channelContract: {
709
739
  mobileNumber: string;
710
740
  apiSecret: string;
711
741
  } | undefined;
742
+ line?: {
743
+ channelId: string;
744
+ channelSecret: string;
745
+ } | undefined;
712
746
  lineRichMenuId?: string | null | undefined;
713
747
  messengerIntegrationType?: "own" | "business" | undefined;
714
748
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -873,6 +907,16 @@ export declare const channelContract: {
873
907
  mobileNumber: string;
874
908
  apiSecret: string;
875
909
  }>>;
910
+ line: z.ZodOptional<z.ZodObject<{
911
+ channelId: z.ZodString;
912
+ channelSecret: z.ZodString;
913
+ }, "strip", z.ZodTypeAny, {
914
+ channelId: string;
915
+ channelSecret: string;
916
+ }, {
917
+ channelId: string;
918
+ channelSecret: string;
919
+ }>>;
876
920
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
877
921
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
878
922
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -903,6 +947,10 @@ export declare const channelContract: {
903
947
  mobileNumber: string;
904
948
  apiSecret: string;
905
949
  } | undefined;
950
+ line?: {
951
+ channelId: string;
952
+ channelSecret: string;
953
+ } | undefined;
906
954
  lineRichMenuId?: string | null | undefined;
907
955
  messengerIntegrationType?: "own" | "business" | undefined;
908
956
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -933,6 +981,10 @@ export declare const channelContract: {
933
981
  mobileNumber: string;
934
982
  apiSecret: string;
935
983
  } | undefined;
984
+ line?: {
985
+ channelId: string;
986
+ channelSecret: string;
987
+ } | undefined;
936
988
  lineRichMenuId?: string | null | undefined;
937
989
  messengerIntegrationType?: "own" | "business" | undefined;
938
990
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -998,6 +1050,10 @@ export declare const channelContract: {
998
1050
  mobileNumber: string;
999
1051
  apiSecret: string;
1000
1052
  } | undefined;
1053
+ line?: {
1054
+ channelId: string;
1055
+ channelSecret: string;
1056
+ } | undefined;
1001
1057
  lineRichMenuId?: string | null | undefined;
1002
1058
  messengerIntegrationType?: "own" | "business" | undefined;
1003
1059
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -1050,6 +1106,10 @@ export declare const channelContract: {
1050
1106
  mobileNumber: string;
1051
1107
  apiSecret: string;
1052
1108
  } | undefined;
1109
+ line?: {
1110
+ channelId: string;
1111
+ channelSecret: string;
1112
+ } | undefined;
1053
1113
  lineRichMenuId?: string | null | undefined;
1054
1114
  messengerIntegrationType?: "own" | "business" | undefined;
1055
1115
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -1104,6 +1164,10 @@ export declare const channelContract: {
1104
1164
  mobileNumber: string;
1105
1165
  apiSecret: string;
1106
1166
  } | undefined;
1167
+ line?: {
1168
+ channelId: string;
1169
+ channelSecret: string;
1170
+ } | undefined;
1107
1171
  lineRichMenuId?: string | null | undefined;
1108
1172
  messengerIntegrationType?: "own" | "business" | undefined;
1109
1173
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -1159,6 +1223,10 @@ export declare const channelContract: {
1159
1223
  mobileNumber: string;
1160
1224
  apiSecret: string;
1161
1225
  } | undefined;
1226
+ line?: {
1227
+ channelId: string;
1228
+ channelSecret: string;
1229
+ } | undefined;
1162
1230
  lineRichMenuId?: string | null | undefined;
1163
1231
  messengerIntegrationType?: "own" | "business" | undefined;
1164
1232
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -1294,6 +1362,16 @@ export declare const channelContract: {
1294
1362
  mobileNumber: string;
1295
1363
  apiSecret: string;
1296
1364
  }>>;
1365
+ line: z.ZodOptional<z.ZodObject<{
1366
+ channelId: z.ZodString;
1367
+ channelSecret: z.ZodString;
1368
+ }, "strip", z.ZodTypeAny, {
1369
+ channelId: string;
1370
+ channelSecret: string;
1371
+ }, {
1372
+ channelId: string;
1373
+ channelSecret: string;
1374
+ }>>;
1297
1375
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1298
1376
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
1299
1377
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -1324,6 +1402,10 @@ export declare const channelContract: {
1324
1402
  mobileNumber: string;
1325
1403
  apiSecret: string;
1326
1404
  } | undefined;
1405
+ line?: {
1406
+ channelId: string;
1407
+ channelSecret: string;
1408
+ } | undefined;
1327
1409
  lineRichMenuId?: string | null | undefined;
1328
1410
  messengerIntegrationType?: "own" | "business" | undefined;
1329
1411
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -1354,6 +1436,10 @@ export declare const channelContract: {
1354
1436
  mobileNumber: string;
1355
1437
  apiSecret: string;
1356
1438
  } | undefined;
1439
+ line?: {
1440
+ channelId: string;
1441
+ channelSecret: string;
1442
+ } | undefined;
1357
1443
  lineRichMenuId?: string | null | undefined;
1358
1444
  messengerIntegrationType?: "own" | "business" | undefined;
1359
1445
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -1618,6 +1704,10 @@ export declare const channelContract: {
1618
1704
  mobileNumber: string;
1619
1705
  apiSecret: string;
1620
1706
  } | undefined;
1707
+ line?: {
1708
+ channelId: string;
1709
+ channelSecret: string;
1710
+ } | undefined;
1621
1711
  lineRichMenuId?: string | null | undefined;
1622
1712
  messengerIntegrationType?: "own" | "business" | undefined;
1623
1713
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -1713,6 +1803,10 @@ export declare const channelContract: {
1713
1803
  mobileNumber: string;
1714
1804
  apiSecret: string;
1715
1805
  } | undefined;
1806
+ line?: {
1807
+ channelId: string;
1808
+ channelSecret: string;
1809
+ } | undefined;
1716
1810
  lineRichMenuId?: string | null | undefined;
1717
1811
  messengerIntegrationType?: "own" | "business" | undefined;
1718
1812
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -1810,6 +1904,10 @@ export declare const channelContract: {
1810
1904
  mobileNumber: string;
1811
1905
  apiSecret: string;
1812
1906
  } | undefined;
1907
+ line?: {
1908
+ channelId: string;
1909
+ channelSecret: string;
1910
+ } | undefined;
1813
1911
  lineRichMenuId?: string | null | undefined;
1814
1912
  messengerIntegrationType?: "own" | "business" | undefined;
1815
1913
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -1908,6 +2006,10 @@ export declare const channelContract: {
1908
2006
  mobileNumber: string;
1909
2007
  apiSecret: string;
1910
2008
  } | undefined;
2009
+ line?: {
2010
+ channelId: string;
2011
+ channelSecret: string;
2012
+ } | undefined;
1911
2013
  lineRichMenuId?: string | null | undefined;
1912
2014
  messengerIntegrationType?: "own" | "business" | undefined;
1913
2015
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -2092,6 +2194,16 @@ export declare const channelContract: {
2092
2194
  mobileNumber: string;
2093
2195
  apiSecret: string;
2094
2196
  }>>;
2197
+ line: z.ZodOptional<z.ZodObject<{
2198
+ channelId: z.ZodString;
2199
+ channelSecret: z.ZodString;
2200
+ }, "strip", z.ZodTypeAny, {
2201
+ channelId: string;
2202
+ channelSecret: string;
2203
+ }, {
2204
+ channelId: string;
2205
+ channelSecret: string;
2206
+ }>>;
2095
2207
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2096
2208
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
2097
2209
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -2122,6 +2234,10 @@ export declare const channelContract: {
2122
2234
  mobileNumber: string;
2123
2235
  apiSecret: string;
2124
2236
  } | undefined;
2237
+ line?: {
2238
+ channelId: string;
2239
+ channelSecret: string;
2240
+ } | undefined;
2125
2241
  lineRichMenuId?: string | null | undefined;
2126
2242
  messengerIntegrationType?: "own" | "business" | undefined;
2127
2243
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -2152,6 +2268,10 @@ export declare const channelContract: {
2152
2268
  mobileNumber: string;
2153
2269
  apiSecret: string;
2154
2270
  } | undefined;
2271
+ line?: {
2272
+ channelId: string;
2273
+ channelSecret: string;
2274
+ } | undefined;
2155
2275
  lineRichMenuId?: string | null | undefined;
2156
2276
  messengerIntegrationType?: "own" | "business" | undefined;
2157
2277
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -2416,6 +2536,10 @@ export declare const channelContract: {
2416
2536
  mobileNumber: string;
2417
2537
  apiSecret: string;
2418
2538
  } | undefined;
2539
+ line?: {
2540
+ channelId: string;
2541
+ channelSecret: string;
2542
+ } | undefined;
2419
2543
  lineRichMenuId?: string | null | undefined;
2420
2544
  messengerIntegrationType?: "own" | "business" | undefined;
2421
2545
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -2511,6 +2635,10 @@ export declare const channelContract: {
2511
2635
  mobileNumber: string;
2512
2636
  apiSecret: string;
2513
2637
  } | undefined;
2638
+ line?: {
2639
+ channelId: string;
2640
+ channelSecret: string;
2641
+ } | undefined;
2514
2642
  lineRichMenuId?: string | null | undefined;
2515
2643
  messengerIntegrationType?: "own" | "business" | undefined;
2516
2644
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -2608,6 +2736,10 @@ export declare const channelContract: {
2608
2736
  mobileNumber: string;
2609
2737
  apiSecret: string;
2610
2738
  } | undefined;
2739
+ line?: {
2740
+ channelId: string;
2741
+ channelSecret: string;
2742
+ } | undefined;
2611
2743
  lineRichMenuId?: string | null | undefined;
2612
2744
  messengerIntegrationType?: "own" | "business" | undefined;
2613
2745
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -2706,6 +2838,10 @@ export declare const channelContract: {
2706
2838
  mobileNumber: string;
2707
2839
  apiSecret: string;
2708
2840
  } | undefined;
2841
+ line?: {
2842
+ channelId: string;
2843
+ channelSecret: string;
2844
+ } | undefined;
2709
2845
  lineRichMenuId?: string | null | undefined;
2710
2846
  messengerIntegrationType?: "own" | "business" | undefined;
2711
2847
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -2890,6 +3026,16 @@ export declare const channelContract: {
2890
3026
  mobileNumber: string;
2891
3027
  apiSecret: string;
2892
3028
  }>>;
3029
+ line: z.ZodOptional<z.ZodObject<{
3030
+ channelId: z.ZodString;
3031
+ channelSecret: z.ZodString;
3032
+ }, "strip", z.ZodTypeAny, {
3033
+ channelId: string;
3034
+ channelSecret: string;
3035
+ }, {
3036
+ channelId: string;
3037
+ channelSecret: string;
3038
+ }>>;
2893
3039
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2894
3040
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
2895
3041
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -2920,6 +3066,10 @@ export declare const channelContract: {
2920
3066
  mobileNumber: string;
2921
3067
  apiSecret: string;
2922
3068
  } | undefined;
3069
+ line?: {
3070
+ channelId: string;
3071
+ channelSecret: string;
3072
+ } | undefined;
2923
3073
  lineRichMenuId?: string | null | undefined;
2924
3074
  messengerIntegrationType?: "own" | "business" | undefined;
2925
3075
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -2950,6 +3100,10 @@ export declare const channelContract: {
2950
3100
  mobileNumber: string;
2951
3101
  apiSecret: string;
2952
3102
  } | undefined;
3103
+ line?: {
3104
+ channelId: string;
3105
+ channelSecret: string;
3106
+ } | undefined;
2953
3107
  lineRichMenuId?: string | null | undefined;
2954
3108
  messengerIntegrationType?: "own" | "business" | undefined;
2955
3109
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -3214,6 +3368,10 @@ export declare const channelContract: {
3214
3368
  mobileNumber: string;
3215
3369
  apiSecret: string;
3216
3370
  } | undefined;
3371
+ line?: {
3372
+ channelId: string;
3373
+ channelSecret: string;
3374
+ } | undefined;
3217
3375
  lineRichMenuId?: string | null | undefined;
3218
3376
  messengerIntegrationType?: "own" | "business" | undefined;
3219
3377
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -3309,6 +3467,10 @@ export declare const channelContract: {
3309
3467
  mobileNumber: string;
3310
3468
  apiSecret: string;
3311
3469
  } | undefined;
3470
+ line?: {
3471
+ channelId: string;
3472
+ channelSecret: string;
3473
+ } | undefined;
3312
3474
  lineRichMenuId?: string | null | undefined;
3313
3475
  messengerIntegrationType?: "own" | "business" | undefined;
3314
3476
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -3406,6 +3568,10 @@ export declare const channelContract: {
3406
3568
  mobileNumber: string;
3407
3569
  apiSecret: string;
3408
3570
  } | undefined;
3571
+ line?: {
3572
+ channelId: string;
3573
+ channelSecret: string;
3574
+ } | undefined;
3409
3575
  lineRichMenuId?: string | null | undefined;
3410
3576
  messengerIntegrationType?: "own" | "business" | undefined;
3411
3577
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -3504,6 +3670,10 @@ export declare const channelContract: {
3504
3670
  mobileNumber: string;
3505
3671
  apiSecret: string;
3506
3672
  } | undefined;
3673
+ line?: {
3674
+ channelId: string;
3675
+ channelSecret: string;
3676
+ } | undefined;
3507
3677
  lineRichMenuId?: string | null | undefined;
3508
3678
  messengerIntegrationType?: "own" | "business" | undefined;
3509
3679
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -3665,6 +3835,16 @@ export declare const channelContract: {
3665
3835
  mobileNumber: string;
3666
3836
  apiSecret: string;
3667
3837
  }>>;
3838
+ line: z.ZodOptional<z.ZodObject<{
3839
+ channelId: z.ZodString;
3840
+ channelSecret: z.ZodString;
3841
+ }, "strip", z.ZodTypeAny, {
3842
+ channelId: string;
3843
+ channelSecret: string;
3844
+ }, {
3845
+ channelId: string;
3846
+ channelSecret: string;
3847
+ }>>;
3668
3848
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
3669
3849
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
3670
3850
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -3695,6 +3875,10 @@ export declare const channelContract: {
3695
3875
  mobileNumber: string;
3696
3876
  apiSecret: string;
3697
3877
  } | undefined;
3878
+ line?: {
3879
+ channelId: string;
3880
+ channelSecret: string;
3881
+ } | undefined;
3698
3882
  lineRichMenuId?: string | null | undefined;
3699
3883
  messengerIntegrationType?: "own" | "business" | undefined;
3700
3884
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -3725,6 +3909,10 @@ export declare const channelContract: {
3725
3909
  mobileNumber: string;
3726
3910
  apiSecret: string;
3727
3911
  } | undefined;
3912
+ line?: {
3913
+ channelId: string;
3914
+ channelSecret: string;
3915
+ } | undefined;
3728
3916
  lineRichMenuId?: string | null | undefined;
3729
3917
  messengerIntegrationType?: "own" | "business" | undefined;
3730
3918
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -3762,6 +3950,10 @@ export declare const channelContract: {
3762
3950
  mobileNumber: string;
3763
3951
  apiSecret: string;
3764
3952
  } | undefined;
3953
+ line?: {
3954
+ channelId: string;
3955
+ channelSecret: string;
3956
+ } | undefined;
3765
3957
  lineRichMenuId?: string | null | undefined;
3766
3958
  messengerIntegrationType?: "own" | "business" | undefined;
3767
3959
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -3799,6 +3991,10 @@ export declare const channelContract: {
3799
3991
  mobileNumber: string;
3800
3992
  apiSecret: string;
3801
3993
  } | undefined;
3994
+ line?: {
3995
+ channelId: string;
3996
+ channelSecret: string;
3997
+ } | undefined;
3802
3998
  lineRichMenuId?: string | null | undefined;
3803
3999
  messengerIntegrationType?: "own" | "business" | undefined;
3804
4000
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -3880,6 +4076,16 @@ export declare const channelContract: {
3880
4076
  mobileNumber: string;
3881
4077
  apiSecret: string;
3882
4078
  }>>;
4079
+ line: z.ZodOptional<z.ZodObject<{
4080
+ channelId: z.ZodString;
4081
+ channelSecret: z.ZodString;
4082
+ }, "strip", z.ZodTypeAny, {
4083
+ channelId: string;
4084
+ channelSecret: string;
4085
+ }, {
4086
+ channelId: string;
4087
+ channelSecret: string;
4088
+ }>>;
3883
4089
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
3884
4090
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
3885
4091
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -3910,6 +4116,10 @@ export declare const channelContract: {
3910
4116
  mobileNumber: string;
3911
4117
  apiSecret: string;
3912
4118
  } | undefined;
4119
+ line?: {
4120
+ channelId: string;
4121
+ channelSecret: string;
4122
+ } | undefined;
3913
4123
  lineRichMenuId?: string | null | undefined;
3914
4124
  messengerIntegrationType?: "own" | "business" | undefined;
3915
4125
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -3940,6 +4150,10 @@ export declare const channelContract: {
3940
4150
  mobileNumber: string;
3941
4151
  apiSecret: string;
3942
4152
  } | undefined;
4153
+ line?: {
4154
+ channelId: string;
4155
+ channelSecret: string;
4156
+ } | undefined;
3943
4157
  lineRichMenuId?: string | null | undefined;
3944
4158
  messengerIntegrationType?: "own" | "business" | undefined;
3945
4159
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -4204,6 +4418,10 @@ export declare const channelContract: {
4204
4418
  mobileNumber: string;
4205
4419
  apiSecret: string;
4206
4420
  } | undefined;
4421
+ line?: {
4422
+ channelId: string;
4423
+ channelSecret: string;
4424
+ } | undefined;
4207
4425
  lineRichMenuId?: string | null | undefined;
4208
4426
  messengerIntegrationType?: "own" | "business" | undefined;
4209
4427
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -4299,6 +4517,10 @@ export declare const channelContract: {
4299
4517
  mobileNumber: string;
4300
4518
  apiSecret: string;
4301
4519
  } | undefined;
4520
+ line?: {
4521
+ channelId: string;
4522
+ channelSecret: string;
4523
+ } | undefined;
4302
4524
  lineRichMenuId?: string | null | undefined;
4303
4525
  messengerIntegrationType?: "own" | "business" | undefined;
4304
4526
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -4396,6 +4618,10 @@ export declare const channelContract: {
4396
4618
  mobileNumber: string;
4397
4619
  apiSecret: string;
4398
4620
  } | undefined;
4621
+ line?: {
4622
+ channelId: string;
4623
+ channelSecret: string;
4624
+ } | undefined;
4399
4625
  lineRichMenuId?: string | null | undefined;
4400
4626
  messengerIntegrationType?: "own" | "business" | undefined;
4401
4627
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -4494,6 +4720,10 @@ export declare const channelContract: {
4494
4720
  mobileNumber: string;
4495
4721
  apiSecret: string;
4496
4722
  } | undefined;
4723
+ line?: {
4724
+ channelId: string;
4725
+ channelSecret: string;
4726
+ } | undefined;
4497
4727
  lineRichMenuId?: string | null | undefined;
4498
4728
  messengerIntegrationType?: "own" | "business" | undefined;
4499
4729
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -4789,6 +5019,16 @@ export declare const channelContract: {
4789
5019
  mobileNumber: string;
4790
5020
  apiSecret: string;
4791
5021
  }>>;
5022
+ line: z.ZodOptional<z.ZodObject<{
5023
+ channelId: z.ZodString;
5024
+ channelSecret: z.ZodString;
5025
+ }, "strip", z.ZodTypeAny, {
5026
+ channelId: string;
5027
+ channelSecret: string;
5028
+ }, {
5029
+ channelId: string;
5030
+ channelSecret: string;
5031
+ }>>;
4792
5032
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
4793
5033
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
4794
5034
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -4819,6 +5059,10 @@ export declare const channelContract: {
4819
5059
  mobileNumber: string;
4820
5060
  apiSecret: string;
4821
5061
  } | undefined;
5062
+ line?: {
5063
+ channelId: string;
5064
+ channelSecret: string;
5065
+ } | undefined;
4822
5066
  lineRichMenuId?: string | null | undefined;
4823
5067
  messengerIntegrationType?: "own" | "business" | undefined;
4824
5068
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -4849,6 +5093,10 @@ export declare const channelContract: {
4849
5093
  mobileNumber: string;
4850
5094
  apiSecret: string;
4851
5095
  } | undefined;
5096
+ line?: {
5097
+ channelId: string;
5098
+ channelSecret: string;
5099
+ } | undefined;
4852
5100
  lineRichMenuId?: string | null | undefined;
4853
5101
  messengerIntegrationType?: "own" | "business" | undefined;
4854
5102
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -5113,6 +5361,10 @@ export declare const channelContract: {
5113
5361
  mobileNumber: string;
5114
5362
  apiSecret: string;
5115
5363
  } | undefined;
5364
+ line?: {
5365
+ channelId: string;
5366
+ channelSecret: string;
5367
+ } | undefined;
5116
5368
  lineRichMenuId?: string | null | undefined;
5117
5369
  messengerIntegrationType?: "own" | "business" | undefined;
5118
5370
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -5208,6 +5460,10 @@ export declare const channelContract: {
5208
5460
  mobileNumber: string;
5209
5461
  apiSecret: string;
5210
5462
  } | undefined;
5463
+ line?: {
5464
+ channelId: string;
5465
+ channelSecret: string;
5466
+ } | undefined;
5211
5467
  lineRichMenuId?: string | null | undefined;
5212
5468
  messengerIntegrationType?: "own" | "business" | undefined;
5213
5469
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -5305,6 +5561,10 @@ export declare const channelContract: {
5305
5561
  mobileNumber: string;
5306
5562
  apiSecret: string;
5307
5563
  } | undefined;
5564
+ line?: {
5565
+ channelId: string;
5566
+ channelSecret: string;
5567
+ } | undefined;
5308
5568
  lineRichMenuId?: string | null | undefined;
5309
5569
  messengerIntegrationType?: "own" | "business" | undefined;
5310
5570
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -5403,6 +5663,10 @@ export declare const channelContract: {
5403
5663
  mobileNumber: string;
5404
5664
  apiSecret: string;
5405
5665
  } | undefined;
5666
+ line?: {
5667
+ channelId: string;
5668
+ channelSecret: string;
5669
+ } | undefined;
5406
5670
  lineRichMenuId?: string | null | undefined;
5407
5671
  messengerIntegrationType?: "own" | "business" | undefined;
5408
5672
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -6388,6 +6652,16 @@ export declare const channelContract: {
6388
6652
  mobileNumber: string;
6389
6653
  apiSecret: string;
6390
6654
  }>>;
6655
+ line: z.ZodOptional<z.ZodObject<{
6656
+ channelId: z.ZodString;
6657
+ channelSecret: z.ZodString;
6658
+ }, "strip", z.ZodTypeAny, {
6659
+ channelId: string;
6660
+ channelSecret: string;
6661
+ }, {
6662
+ channelId: string;
6663
+ channelSecret: string;
6664
+ }>>;
6391
6665
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
6392
6666
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
6393
6667
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -6418,6 +6692,10 @@ export declare const channelContract: {
6418
6692
  mobileNumber: string;
6419
6693
  apiSecret: string;
6420
6694
  } | undefined;
6695
+ line?: {
6696
+ channelId: string;
6697
+ channelSecret: string;
6698
+ } | undefined;
6421
6699
  lineRichMenuId?: string | null | undefined;
6422
6700
  messengerIntegrationType?: "own" | "business" | undefined;
6423
6701
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -6448,6 +6726,10 @@ export declare const channelContract: {
6448
6726
  mobileNumber: string;
6449
6727
  apiSecret: string;
6450
6728
  } | undefined;
6729
+ line?: {
6730
+ channelId: string;
6731
+ channelSecret: string;
6732
+ } | undefined;
6451
6733
  lineRichMenuId?: string | null | undefined;
6452
6734
  messengerIntegrationType?: "own" | "business" | undefined;
6453
6735
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -6485,6 +6767,10 @@ export declare const channelContract: {
6485
6767
  mobileNumber: string;
6486
6768
  apiSecret: string;
6487
6769
  } | undefined;
6770
+ line?: {
6771
+ channelId: string;
6772
+ channelSecret: string;
6773
+ } | undefined;
6488
6774
  lineRichMenuId?: string | null | undefined;
6489
6775
  messengerIntegrationType?: "own" | "business" | undefined;
6490
6776
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -6522,6 +6808,10 @@ export declare const channelContract: {
6522
6808
  mobileNumber: string;
6523
6809
  apiSecret: string;
6524
6810
  } | undefined;
6811
+ line?: {
6812
+ channelId: string;
6813
+ channelSecret: string;
6814
+ } | undefined;
6525
6815
  lineRichMenuId?: string | null | undefined;
6526
6816
  messengerIntegrationType?: "own" | "business" | undefined;
6527
6817
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -6603,6 +6893,16 @@ export declare const channelContract: {
6603
6893
  mobileNumber: string;
6604
6894
  apiSecret: string;
6605
6895
  }>>;
6896
+ line: z.ZodOptional<z.ZodObject<{
6897
+ channelId: z.ZodString;
6898
+ channelSecret: z.ZodString;
6899
+ }, "strip", z.ZodTypeAny, {
6900
+ channelId: string;
6901
+ channelSecret: string;
6902
+ }, {
6903
+ channelId: string;
6904
+ channelSecret: string;
6905
+ }>>;
6606
6906
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
6607
6907
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
6608
6908
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -6633,6 +6933,10 @@ export declare const channelContract: {
6633
6933
  mobileNumber: string;
6634
6934
  apiSecret: string;
6635
6935
  } | undefined;
6936
+ line?: {
6937
+ channelId: string;
6938
+ channelSecret: string;
6939
+ } | undefined;
6636
6940
  lineRichMenuId?: string | null | undefined;
6637
6941
  messengerIntegrationType?: "own" | "business" | undefined;
6638
6942
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -6663,6 +6967,10 @@ export declare const channelContract: {
6663
6967
  mobileNumber: string;
6664
6968
  apiSecret: string;
6665
6969
  } | undefined;
6970
+ line?: {
6971
+ channelId: string;
6972
+ channelSecret: string;
6973
+ } | undefined;
6666
6974
  lineRichMenuId?: string | null | undefined;
6667
6975
  messengerIntegrationType?: "own" | "business" | undefined;
6668
6976
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -6927,6 +7235,10 @@ export declare const channelContract: {
6927
7235
  mobileNumber: string;
6928
7236
  apiSecret: string;
6929
7237
  } | undefined;
7238
+ line?: {
7239
+ channelId: string;
7240
+ channelSecret: string;
7241
+ } | undefined;
6930
7242
  lineRichMenuId?: string | null | undefined;
6931
7243
  messengerIntegrationType?: "own" | "business" | undefined;
6932
7244
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -7022,6 +7334,10 @@ export declare const channelContract: {
7022
7334
  mobileNumber: string;
7023
7335
  apiSecret: string;
7024
7336
  } | undefined;
7337
+ line?: {
7338
+ channelId: string;
7339
+ channelSecret: string;
7340
+ } | undefined;
7025
7341
  lineRichMenuId?: string | null | undefined;
7026
7342
  messengerIntegrationType?: "own" | "business" | undefined;
7027
7343
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -7119,6 +7435,10 @@ export declare const channelContract: {
7119
7435
  mobileNumber: string;
7120
7436
  apiSecret: string;
7121
7437
  } | undefined;
7438
+ line?: {
7439
+ channelId: string;
7440
+ channelSecret: string;
7441
+ } | undefined;
7122
7442
  lineRichMenuId?: string | null | undefined;
7123
7443
  messengerIntegrationType?: "own" | "business" | undefined;
7124
7444
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -7217,6 +7537,10 @@ export declare const channelContract: {
7217
7537
  mobileNumber: string;
7218
7538
  apiSecret: string;
7219
7539
  } | undefined;
7540
+ line?: {
7541
+ channelId: string;
7542
+ channelSecret: string;
7543
+ } | undefined;
7220
7544
  lineRichMenuId?: string | null | undefined;
7221
7545
  messengerIntegrationType?: "own" | "business" | undefined;
7222
7546
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -7629,6 +7953,16 @@ export declare const channelContract: {
7629
7953
  mobileNumber: string;
7630
7954
  apiSecret: string;
7631
7955
  }>>;
7956
+ line: z.ZodOptional<z.ZodObject<{
7957
+ channelId: z.ZodString;
7958
+ channelSecret: z.ZodString;
7959
+ }, "strip", z.ZodTypeAny, {
7960
+ channelId: string;
7961
+ channelSecret: string;
7962
+ }, {
7963
+ channelId: string;
7964
+ channelSecret: string;
7965
+ }>>;
7632
7966
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
7633
7967
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
7634
7968
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -7659,6 +7993,10 @@ export declare const channelContract: {
7659
7993
  mobileNumber: string;
7660
7994
  apiSecret: string;
7661
7995
  } | undefined;
7996
+ line?: {
7997
+ channelId: string;
7998
+ channelSecret: string;
7999
+ } | undefined;
7662
8000
  lineRichMenuId?: string | null | undefined;
7663
8001
  messengerIntegrationType?: "own" | "business" | undefined;
7664
8002
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -7689,6 +8027,10 @@ export declare const channelContract: {
7689
8027
  mobileNumber: string;
7690
8028
  apiSecret: string;
7691
8029
  } | undefined;
8030
+ line?: {
8031
+ channelId: string;
8032
+ channelSecret: string;
8033
+ } | undefined;
7692
8034
  lineRichMenuId?: string | null | undefined;
7693
8035
  messengerIntegrationType?: "own" | "business" | undefined;
7694
8036
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -7726,6 +8068,10 @@ export declare const channelContract: {
7726
8068
  mobileNumber: string;
7727
8069
  apiSecret: string;
7728
8070
  } | undefined;
8071
+ line?: {
8072
+ channelId: string;
8073
+ channelSecret: string;
8074
+ } | undefined;
7729
8075
  lineRichMenuId?: string | null | undefined;
7730
8076
  messengerIntegrationType?: "own" | "business" | undefined;
7731
8077
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -7763,6 +8109,10 @@ export declare const channelContract: {
7763
8109
  mobileNumber: string;
7764
8110
  apiSecret: string;
7765
8111
  } | undefined;
8112
+ line?: {
8113
+ channelId: string;
8114
+ channelSecret: string;
8115
+ } | undefined;
7766
8116
  lineRichMenuId?: string | null | undefined;
7767
8117
  messengerIntegrationType?: "own" | "business" | undefined;
7768
8118
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -7844,6 +8194,16 @@ export declare const channelContract: {
7844
8194
  mobileNumber: string;
7845
8195
  apiSecret: string;
7846
8196
  }>>;
8197
+ line: z.ZodOptional<z.ZodObject<{
8198
+ channelId: z.ZodString;
8199
+ channelSecret: z.ZodString;
8200
+ }, "strip", z.ZodTypeAny, {
8201
+ channelId: string;
8202
+ channelSecret: string;
8203
+ }, {
8204
+ channelId: string;
8205
+ channelSecret: string;
8206
+ }>>;
7847
8207
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
7848
8208
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
7849
8209
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -7874,6 +8234,10 @@ export declare const channelContract: {
7874
8234
  mobileNumber: string;
7875
8235
  apiSecret: string;
7876
8236
  } | undefined;
8237
+ line?: {
8238
+ channelId: string;
8239
+ channelSecret: string;
8240
+ } | undefined;
7877
8241
  lineRichMenuId?: string | null | undefined;
7878
8242
  messengerIntegrationType?: "own" | "business" | undefined;
7879
8243
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -7904,6 +8268,10 @@ export declare const channelContract: {
7904
8268
  mobileNumber: string;
7905
8269
  apiSecret: string;
7906
8270
  } | undefined;
8271
+ line?: {
8272
+ channelId: string;
8273
+ channelSecret: string;
8274
+ } | undefined;
7907
8275
  lineRichMenuId?: string | null | undefined;
7908
8276
  messengerIntegrationType?: "own" | "business" | undefined;
7909
8277
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -8168,6 +8536,10 @@ export declare const channelContract: {
8168
8536
  mobileNumber: string;
8169
8537
  apiSecret: string;
8170
8538
  } | undefined;
8539
+ line?: {
8540
+ channelId: string;
8541
+ channelSecret: string;
8542
+ } | undefined;
8171
8543
  lineRichMenuId?: string | null | undefined;
8172
8544
  messengerIntegrationType?: "own" | "business" | undefined;
8173
8545
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -8263,6 +8635,10 @@ export declare const channelContract: {
8263
8635
  mobileNumber: string;
8264
8636
  apiSecret: string;
8265
8637
  } | undefined;
8638
+ line?: {
8639
+ channelId: string;
8640
+ channelSecret: string;
8641
+ } | undefined;
8266
8642
  lineRichMenuId?: string | null | undefined;
8267
8643
  messengerIntegrationType?: "own" | "business" | undefined;
8268
8644
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -8360,6 +8736,10 @@ export declare const channelContract: {
8360
8736
  mobileNumber: string;
8361
8737
  apiSecret: string;
8362
8738
  } | undefined;
8739
+ line?: {
8740
+ channelId: string;
8741
+ channelSecret: string;
8742
+ } | undefined;
8363
8743
  lineRichMenuId?: string | null | undefined;
8364
8744
  messengerIntegrationType?: "own" | "business" | undefined;
8365
8745
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -8458,6 +8838,10 @@ export declare const channelContract: {
8458
8838
  mobileNumber: string;
8459
8839
  apiSecret: string;
8460
8840
  } | undefined;
8841
+ line?: {
8842
+ channelId: string;
8843
+ channelSecret: string;
8844
+ } | undefined;
8461
8845
  lineRichMenuId?: string | null | undefined;
8462
8846
  messengerIntegrationType?: "own" | "business" | undefined;
8463
8847
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -8640,6 +9024,16 @@ export declare const channelContract: {
8640
9024
  mobileNumber: string;
8641
9025
  apiSecret: string;
8642
9026
  }>>;
9027
+ line: z.ZodOptional<z.ZodObject<{
9028
+ channelId: z.ZodString;
9029
+ channelSecret: z.ZodString;
9030
+ }, "strip", z.ZodTypeAny, {
9031
+ channelId: string;
9032
+ channelSecret: string;
9033
+ }, {
9034
+ channelId: string;
9035
+ channelSecret: string;
9036
+ }>>;
8643
9037
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
8644
9038
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
8645
9039
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -8670,6 +9064,10 @@ export declare const channelContract: {
8670
9064
  mobileNumber: string;
8671
9065
  apiSecret: string;
8672
9066
  } | undefined;
9067
+ line?: {
9068
+ channelId: string;
9069
+ channelSecret: string;
9070
+ } | undefined;
8673
9071
  lineRichMenuId?: string | null | undefined;
8674
9072
  messengerIntegrationType?: "own" | "business" | undefined;
8675
9073
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -8700,6 +9098,10 @@ export declare const channelContract: {
8700
9098
  mobileNumber: string;
8701
9099
  apiSecret: string;
8702
9100
  } | undefined;
9101
+ line?: {
9102
+ channelId: string;
9103
+ channelSecret: string;
9104
+ } | undefined;
8703
9105
  lineRichMenuId?: string | null | undefined;
8704
9106
  messengerIntegrationType?: "own" | "business" | undefined;
8705
9107
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -8964,6 +9366,10 @@ export declare const channelContract: {
8964
9366
  mobileNumber: string;
8965
9367
  apiSecret: string;
8966
9368
  } | undefined;
9369
+ line?: {
9370
+ channelId: string;
9371
+ channelSecret: string;
9372
+ } | undefined;
8967
9373
  lineRichMenuId?: string | null | undefined;
8968
9374
  messengerIntegrationType?: "own" | "business" | undefined;
8969
9375
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -9059,6 +9465,10 @@ export declare const channelContract: {
9059
9465
  mobileNumber: string;
9060
9466
  apiSecret: string;
9061
9467
  } | undefined;
9468
+ line?: {
9469
+ channelId: string;
9470
+ channelSecret: string;
9471
+ } | undefined;
9062
9472
  lineRichMenuId?: string | null | undefined;
9063
9473
  messengerIntegrationType?: "own" | "business" | undefined;
9064
9474
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -9156,6 +9566,10 @@ export declare const channelContract: {
9156
9566
  mobileNumber: string;
9157
9567
  apiSecret: string;
9158
9568
  } | undefined;
9569
+ line?: {
9570
+ channelId: string;
9571
+ channelSecret: string;
9572
+ } | undefined;
9159
9573
  lineRichMenuId?: string | null | undefined;
9160
9574
  messengerIntegrationType?: "own" | "business" | undefined;
9161
9575
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -9254,6 +9668,10 @@ export declare const channelContract: {
9254
9668
  mobileNumber: string;
9255
9669
  apiSecret: string;
9256
9670
  } | undefined;
9671
+ line?: {
9672
+ channelId: string;
9673
+ channelSecret: string;
9674
+ } | undefined;
9257
9675
  lineRichMenuId?: string | null | undefined;
9258
9676
  messengerIntegrationType?: "own" | "business" | undefined;
9259
9677
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -9446,6 +9864,16 @@ export declare const channelContract: {
9446
9864
  mobileNumber: string;
9447
9865
  apiSecret: string;
9448
9866
  }>>;
9867
+ line: z.ZodOptional<z.ZodObject<{
9868
+ channelId: z.ZodString;
9869
+ channelSecret: z.ZodString;
9870
+ }, "strip", z.ZodTypeAny, {
9871
+ channelId: string;
9872
+ channelSecret: string;
9873
+ }, {
9874
+ channelId: string;
9875
+ channelSecret: string;
9876
+ }>>;
9449
9877
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
9450
9878
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
9451
9879
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -9476,6 +9904,10 @@ export declare const channelContract: {
9476
9904
  mobileNumber: string;
9477
9905
  apiSecret: string;
9478
9906
  } | undefined;
9907
+ line?: {
9908
+ channelId: string;
9909
+ channelSecret: string;
9910
+ } | undefined;
9479
9911
  lineRichMenuId?: string | null | undefined;
9480
9912
  messengerIntegrationType?: "own" | "business" | undefined;
9481
9913
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -9506,6 +9938,10 @@ export declare const channelContract: {
9506
9938
  mobileNumber: string;
9507
9939
  apiSecret: string;
9508
9940
  } | undefined;
9941
+ line?: {
9942
+ channelId: string;
9943
+ channelSecret: string;
9944
+ } | undefined;
9509
9945
  lineRichMenuId?: string | null | undefined;
9510
9946
  messengerIntegrationType?: "own" | "business" | undefined;
9511
9947
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -9770,6 +10206,10 @@ export declare const channelContract: {
9770
10206
  mobileNumber: string;
9771
10207
  apiSecret: string;
9772
10208
  } | undefined;
10209
+ line?: {
10210
+ channelId: string;
10211
+ channelSecret: string;
10212
+ } | undefined;
9773
10213
  lineRichMenuId?: string | null | undefined;
9774
10214
  messengerIntegrationType?: "own" | "business" | undefined;
9775
10215
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -9865,6 +10305,10 @@ export declare const channelContract: {
9865
10305
  mobileNumber: string;
9866
10306
  apiSecret: string;
9867
10307
  } | undefined;
10308
+ line?: {
10309
+ channelId: string;
10310
+ channelSecret: string;
10311
+ } | undefined;
9868
10312
  lineRichMenuId?: string | null | undefined;
9869
10313
  messengerIntegrationType?: "own" | "business" | undefined;
9870
10314
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -9962,6 +10406,10 @@ export declare const channelContract: {
9962
10406
  mobileNumber: string;
9963
10407
  apiSecret: string;
9964
10408
  } | undefined;
10409
+ line?: {
10410
+ channelId: string;
10411
+ channelSecret: string;
10412
+ } | undefined;
9965
10413
  lineRichMenuId?: string | null | undefined;
9966
10414
  messengerIntegrationType?: "own" | "business" | undefined;
9967
10415
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -10060,6 +10508,10 @@ export declare const channelContract: {
10060
10508
  mobileNumber: string;
10061
10509
  apiSecret: string;
10062
10510
  } | undefined;
10511
+ line?: {
10512
+ channelId: string;
10513
+ channelSecret: string;
10514
+ } | undefined;
10063
10515
  lineRichMenuId?: string | null | undefined;
10064
10516
  messengerIntegrationType?: "own" | "business" | undefined;
10065
10517
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -10302,6 +10754,16 @@ export declare const channelContract: {
10302
10754
  mobileNumber: string;
10303
10755
  apiSecret: string;
10304
10756
  }>>;
10757
+ line: z.ZodOptional<z.ZodObject<{
10758
+ channelId: z.ZodString;
10759
+ channelSecret: z.ZodString;
10760
+ }, "strip", z.ZodTypeAny, {
10761
+ channelId: string;
10762
+ channelSecret: string;
10763
+ }, {
10764
+ channelId: string;
10765
+ channelSecret: string;
10766
+ }>>;
10305
10767
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
10306
10768
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
10307
10769
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -10332,6 +10794,10 @@ export declare const channelContract: {
10332
10794
  mobileNumber: string;
10333
10795
  apiSecret: string;
10334
10796
  } | undefined;
10797
+ line?: {
10798
+ channelId: string;
10799
+ channelSecret: string;
10800
+ } | undefined;
10335
10801
  lineRichMenuId?: string | null | undefined;
10336
10802
  messengerIntegrationType?: "own" | "business" | undefined;
10337
10803
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -10362,6 +10828,10 @@ export declare const channelContract: {
10362
10828
  mobileNumber: string;
10363
10829
  apiSecret: string;
10364
10830
  } | undefined;
10831
+ line?: {
10832
+ channelId: string;
10833
+ channelSecret: string;
10834
+ } | undefined;
10365
10835
  lineRichMenuId?: string | null | undefined;
10366
10836
  messengerIntegrationType?: "own" | "business" | undefined;
10367
10837
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -10626,6 +11096,10 @@ export declare const channelContract: {
10626
11096
  mobileNumber: string;
10627
11097
  apiSecret: string;
10628
11098
  } | undefined;
11099
+ line?: {
11100
+ channelId: string;
11101
+ channelSecret: string;
11102
+ } | undefined;
10629
11103
  lineRichMenuId?: string | null | undefined;
10630
11104
  messengerIntegrationType?: "own" | "business" | undefined;
10631
11105
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -10721,6 +11195,10 @@ export declare const channelContract: {
10721
11195
  mobileNumber: string;
10722
11196
  apiSecret: string;
10723
11197
  } | undefined;
11198
+ line?: {
11199
+ channelId: string;
11200
+ channelSecret: string;
11201
+ } | undefined;
10724
11202
  lineRichMenuId?: string | null | undefined;
10725
11203
  messengerIntegrationType?: "own" | "business" | undefined;
10726
11204
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -10818,6 +11296,10 @@ export declare const channelContract: {
10818
11296
  mobileNumber: string;
10819
11297
  apiSecret: string;
10820
11298
  } | undefined;
11299
+ line?: {
11300
+ channelId: string;
11301
+ channelSecret: string;
11302
+ } | undefined;
10821
11303
  lineRichMenuId?: string | null | undefined;
10822
11304
  messengerIntegrationType?: "own" | "business" | undefined;
10823
11305
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -10916,6 +11398,10 @@ export declare const channelContract: {
10916
11398
  mobileNumber: string;
10917
11399
  apiSecret: string;
10918
11400
  } | undefined;
11401
+ line?: {
11402
+ channelId: string;
11403
+ channelSecret: string;
11404
+ } | undefined;
10919
11405
  lineRichMenuId?: string | null | undefined;
10920
11406
  messengerIntegrationType?: "own" | "business" | undefined;
10921
11407
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -11089,6 +11575,16 @@ export declare const channelContract: {
11089
11575
  mobileNumber: string;
11090
11576
  apiSecret: string;
11091
11577
  }>>;
11578
+ line: z.ZodOptional<z.ZodObject<{
11579
+ channelId: z.ZodString;
11580
+ channelSecret: z.ZodString;
11581
+ }, "strip", z.ZodTypeAny, {
11582
+ channelId: string;
11583
+ channelSecret: string;
11584
+ }, {
11585
+ channelId: string;
11586
+ channelSecret: string;
11587
+ }>>;
11092
11588
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
11093
11589
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
11094
11590
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -11119,6 +11615,10 @@ export declare const channelContract: {
11119
11615
  mobileNumber: string;
11120
11616
  apiSecret: string;
11121
11617
  } | undefined;
11618
+ line?: {
11619
+ channelId: string;
11620
+ channelSecret: string;
11621
+ } | undefined;
11122
11622
  lineRichMenuId?: string | null | undefined;
11123
11623
  messengerIntegrationType?: "own" | "business" | undefined;
11124
11624
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -11149,6 +11649,10 @@ export declare const channelContract: {
11149
11649
  mobileNumber: string;
11150
11650
  apiSecret: string;
11151
11651
  } | undefined;
11652
+ line?: {
11653
+ channelId: string;
11654
+ channelSecret: string;
11655
+ } | undefined;
11152
11656
  lineRichMenuId?: string | null | undefined;
11153
11657
  messengerIntegrationType?: "own" | "business" | undefined;
11154
11658
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -11184,6 +11688,10 @@ export declare const channelContract: {
11184
11688
  mobileNumber: string;
11185
11689
  apiSecret: string;
11186
11690
  } | undefined;
11691
+ line?: {
11692
+ channelId: string;
11693
+ channelSecret: string;
11694
+ } | undefined;
11187
11695
  lineRichMenuId?: string | null | undefined;
11188
11696
  messengerIntegrationType?: "own" | "business" | undefined;
11189
11697
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -11219,6 +11727,10 @@ export declare const channelContract: {
11219
11727
  mobileNumber: string;
11220
11728
  apiSecret: string;
11221
11729
  } | undefined;
11730
+ line?: {
11731
+ channelId: string;
11732
+ channelSecret: string;
11733
+ } | undefined;
11222
11734
  lineRichMenuId?: string | null | undefined;
11223
11735
  messengerIntegrationType?: "own" | "business" | undefined;
11224
11736
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -11298,6 +11810,16 @@ export declare const channelContract: {
11298
11810
  mobileNumber: string;
11299
11811
  apiSecret: string;
11300
11812
  }>>;
11813
+ line: z.ZodOptional<z.ZodObject<{
11814
+ channelId: z.ZodString;
11815
+ channelSecret: z.ZodString;
11816
+ }, "strip", z.ZodTypeAny, {
11817
+ channelId: string;
11818
+ channelSecret: string;
11819
+ }, {
11820
+ channelId: string;
11821
+ channelSecret: string;
11822
+ }>>;
11301
11823
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
11302
11824
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
11303
11825
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -11328,6 +11850,10 @@ export declare const channelContract: {
11328
11850
  mobileNumber: string;
11329
11851
  apiSecret: string;
11330
11852
  } | undefined;
11853
+ line?: {
11854
+ channelId: string;
11855
+ channelSecret: string;
11856
+ } | undefined;
11331
11857
  lineRichMenuId?: string | null | undefined;
11332
11858
  messengerIntegrationType?: "own" | "business" | undefined;
11333
11859
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -11358,6 +11884,10 @@ export declare const channelContract: {
11358
11884
  mobileNumber: string;
11359
11885
  apiSecret: string;
11360
11886
  } | undefined;
11887
+ line?: {
11888
+ channelId: string;
11889
+ channelSecret: string;
11890
+ } | undefined;
11361
11891
  lineRichMenuId?: string | null | undefined;
11362
11892
  messengerIntegrationType?: "own" | "business" | undefined;
11363
11893
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -11622,6 +12152,10 @@ export declare const channelContract: {
11622
12152
  mobileNumber: string;
11623
12153
  apiSecret: string;
11624
12154
  } | undefined;
12155
+ line?: {
12156
+ channelId: string;
12157
+ channelSecret: string;
12158
+ } | undefined;
11625
12159
  lineRichMenuId?: string | null | undefined;
11626
12160
  messengerIntegrationType?: "own" | "business" | undefined;
11627
12161
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -11717,6 +12251,10 @@ export declare const channelContract: {
11717
12251
  mobileNumber: string;
11718
12252
  apiSecret: string;
11719
12253
  } | undefined;
12254
+ line?: {
12255
+ channelId: string;
12256
+ channelSecret: string;
12257
+ } | undefined;
11720
12258
  lineRichMenuId?: string | null | undefined;
11721
12259
  messengerIntegrationType?: "own" | "business" | undefined;
11722
12260
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -11814,6 +12352,10 @@ export declare const channelContract: {
11814
12352
  mobileNumber: string;
11815
12353
  apiSecret: string;
11816
12354
  } | undefined;
12355
+ line?: {
12356
+ channelId: string;
12357
+ channelSecret: string;
12358
+ } | undefined;
11817
12359
  lineRichMenuId?: string | null | undefined;
11818
12360
  messengerIntegrationType?: "own" | "business" | undefined;
11819
12361
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -11912,6 +12454,10 @@ export declare const channelContract: {
11912
12454
  mobileNumber: string;
11913
12455
  apiSecret: string;
11914
12456
  } | undefined;
12457
+ line?: {
12458
+ channelId: string;
12459
+ channelSecret: string;
12460
+ } | undefined;
11915
12461
  lineRichMenuId?: string | null | undefined;
11916
12462
  messengerIntegrationType?: "own" | "business" | undefined;
11917
12463
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -12372,6 +12918,16 @@ export declare const channelContract: {
12372
12918
  mobileNumber: string;
12373
12919
  apiSecret: string;
12374
12920
  }>>;
12921
+ line: z.ZodOptional<z.ZodObject<{
12922
+ channelId: z.ZodString;
12923
+ channelSecret: z.ZodString;
12924
+ }, "strip", z.ZodTypeAny, {
12925
+ channelId: string;
12926
+ channelSecret: string;
12927
+ }, {
12928
+ channelId: string;
12929
+ channelSecret: string;
12930
+ }>>;
12375
12931
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
12376
12932
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
12377
12933
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -12402,6 +12958,10 @@ export declare const channelContract: {
12402
12958
  mobileNumber: string;
12403
12959
  apiSecret: string;
12404
12960
  } | undefined;
12961
+ line?: {
12962
+ channelId: string;
12963
+ channelSecret: string;
12964
+ } | undefined;
12405
12965
  lineRichMenuId?: string | null | undefined;
12406
12966
  messengerIntegrationType?: "own" | "business" | undefined;
12407
12967
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -12432,6 +12992,10 @@ export declare const channelContract: {
12432
12992
  mobileNumber: string;
12433
12993
  apiSecret: string;
12434
12994
  } | undefined;
12995
+ line?: {
12996
+ channelId: string;
12997
+ channelSecret: string;
12998
+ } | undefined;
12435
12999
  lineRichMenuId?: string | null | undefined;
12436
13000
  messengerIntegrationType?: "own" | "business" | undefined;
12437
13001
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -12696,6 +13260,10 @@ export declare const channelContract: {
12696
13260
  mobileNumber: string;
12697
13261
  apiSecret: string;
12698
13262
  } | undefined;
13263
+ line?: {
13264
+ channelId: string;
13265
+ channelSecret: string;
13266
+ } | undefined;
12699
13267
  lineRichMenuId?: string | null | undefined;
12700
13268
  messengerIntegrationType?: "own" | "business" | undefined;
12701
13269
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -12791,6 +13359,10 @@ export declare const channelContract: {
12791
13359
  mobileNumber: string;
12792
13360
  apiSecret: string;
12793
13361
  } | undefined;
13362
+ line?: {
13363
+ channelId: string;
13364
+ channelSecret: string;
13365
+ } | undefined;
12794
13366
  lineRichMenuId?: string | null | undefined;
12795
13367
  messengerIntegrationType?: "own" | "business" | undefined;
12796
13368
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -12888,6 +13460,10 @@ export declare const channelContract: {
12888
13460
  mobileNumber: string;
12889
13461
  apiSecret: string;
12890
13462
  } | undefined;
13463
+ line?: {
13464
+ channelId: string;
13465
+ channelSecret: string;
13466
+ } | undefined;
12891
13467
  lineRichMenuId?: string | null | undefined;
12892
13468
  messengerIntegrationType?: "own" | "business" | undefined;
12893
13469
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -12986,6 +13562,10 @@ export declare const channelContract: {
12986
13562
  mobileNumber: string;
12987
13563
  apiSecret: string;
12988
13564
  } | undefined;
13565
+ line?: {
13566
+ channelId: string;
13567
+ channelSecret: string;
13568
+ } | undefined;
12989
13569
  lineRichMenuId?: string | null | undefined;
12990
13570
  messengerIntegrationType?: "own" | "business" | undefined;
12991
13571
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -13365,6 +13945,16 @@ export declare const channelFacebookFeedContract: {
13365
13945
  mobileNumber: string;
13366
13946
  apiSecret: string;
13367
13947
  }>>;
13948
+ line: z.ZodOptional<z.ZodObject<{
13949
+ channelId: z.ZodString;
13950
+ channelSecret: z.ZodString;
13951
+ }, "strip", z.ZodTypeAny, {
13952
+ channelId: string;
13953
+ channelSecret: string;
13954
+ }, {
13955
+ channelId: string;
13956
+ channelSecret: string;
13957
+ }>>;
13368
13958
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
13369
13959
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
13370
13960
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -13395,6 +13985,10 @@ export declare const channelFacebookFeedContract: {
13395
13985
  mobileNumber: string;
13396
13986
  apiSecret: string;
13397
13987
  } | undefined;
13988
+ line?: {
13989
+ channelId: string;
13990
+ channelSecret: string;
13991
+ } | undefined;
13398
13992
  lineRichMenuId?: string | null | undefined;
13399
13993
  messengerIntegrationType?: "own" | "business" | undefined;
13400
13994
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -13425,6 +14019,10 @@ export declare const channelFacebookFeedContract: {
13425
14019
  mobileNumber: string;
13426
14020
  apiSecret: string;
13427
14021
  } | undefined;
14022
+ line?: {
14023
+ channelId: string;
14024
+ channelSecret: string;
14025
+ } | undefined;
13428
14026
  lineRichMenuId?: string | null | undefined;
13429
14027
  messengerIntegrationType?: "own" | "business" | undefined;
13430
14028
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -13462,6 +14060,10 @@ export declare const channelFacebookFeedContract: {
13462
14060
  mobileNumber: string;
13463
14061
  apiSecret: string;
13464
14062
  } | undefined;
14063
+ line?: {
14064
+ channelId: string;
14065
+ channelSecret: string;
14066
+ } | undefined;
13465
14067
  lineRichMenuId?: string | null | undefined;
13466
14068
  messengerIntegrationType?: "own" | "business" | undefined;
13467
14069
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -13499,6 +14101,10 @@ export declare const channelFacebookFeedContract: {
13499
14101
  mobileNumber: string;
13500
14102
  apiSecret: string;
13501
14103
  } | undefined;
14104
+ line?: {
14105
+ channelId: string;
14106
+ channelSecret: string;
14107
+ } | undefined;
13502
14108
  lineRichMenuId?: string | null | undefined;
13503
14109
  messengerIntegrationType?: "own" | "business" | undefined;
13504
14110
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -13580,6 +14186,16 @@ export declare const channelFacebookFeedContract: {
13580
14186
  mobileNumber: string;
13581
14187
  apiSecret: string;
13582
14188
  }>>;
14189
+ line: z.ZodOptional<z.ZodObject<{
14190
+ channelId: z.ZodString;
14191
+ channelSecret: z.ZodString;
14192
+ }, "strip", z.ZodTypeAny, {
14193
+ channelId: string;
14194
+ channelSecret: string;
14195
+ }, {
14196
+ channelId: string;
14197
+ channelSecret: string;
14198
+ }>>;
13583
14199
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
13584
14200
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
13585
14201
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -13610,6 +14226,10 @@ export declare const channelFacebookFeedContract: {
13610
14226
  mobileNumber: string;
13611
14227
  apiSecret: string;
13612
14228
  } | undefined;
14229
+ line?: {
14230
+ channelId: string;
14231
+ channelSecret: string;
14232
+ } | undefined;
13613
14233
  lineRichMenuId?: string | null | undefined;
13614
14234
  messengerIntegrationType?: "own" | "business" | undefined;
13615
14235
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -13640,6 +14260,10 @@ export declare const channelFacebookFeedContract: {
13640
14260
  mobileNumber: string;
13641
14261
  apiSecret: string;
13642
14262
  } | undefined;
14263
+ line?: {
14264
+ channelId: string;
14265
+ channelSecret: string;
14266
+ } | undefined;
13643
14267
  lineRichMenuId?: string | null | undefined;
13644
14268
  messengerIntegrationType?: "own" | "business" | undefined;
13645
14269
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -13904,6 +14528,10 @@ export declare const channelFacebookFeedContract: {
13904
14528
  mobileNumber: string;
13905
14529
  apiSecret: string;
13906
14530
  } | undefined;
14531
+ line?: {
14532
+ channelId: string;
14533
+ channelSecret: string;
14534
+ } | undefined;
13907
14535
  lineRichMenuId?: string | null | undefined;
13908
14536
  messengerIntegrationType?: "own" | "business" | undefined;
13909
14537
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -13999,6 +14627,10 @@ export declare const channelFacebookFeedContract: {
13999
14627
  mobileNumber: string;
14000
14628
  apiSecret: string;
14001
14629
  } | undefined;
14630
+ line?: {
14631
+ channelId: string;
14632
+ channelSecret: string;
14633
+ } | undefined;
14002
14634
  lineRichMenuId?: string | null | undefined;
14003
14635
  messengerIntegrationType?: "own" | "business" | undefined;
14004
14636
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -14096,6 +14728,10 @@ export declare const channelFacebookFeedContract: {
14096
14728
  mobileNumber: string;
14097
14729
  apiSecret: string;
14098
14730
  } | undefined;
14731
+ line?: {
14732
+ channelId: string;
14733
+ channelSecret: string;
14734
+ } | undefined;
14099
14735
  lineRichMenuId?: string | null | undefined;
14100
14736
  messengerIntegrationType?: "own" | "business" | undefined;
14101
14737
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -14194,6 +14830,10 @@ export declare const channelFacebookFeedContract: {
14194
14830
  mobileNumber: string;
14195
14831
  apiSecret: string;
14196
14832
  } | undefined;
14833
+ line?: {
14834
+ channelId: string;
14835
+ channelSecret: string;
14836
+ } | undefined;
14197
14837
  lineRichMenuId?: string | null | undefined;
14198
14838
  messengerIntegrationType?: "own" | "business" | undefined;
14199
14839
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -14356,6 +14996,16 @@ export declare const channelBotContract: {
14356
14996
  mobileNumber: string;
14357
14997
  apiSecret: string;
14358
14998
  }>>;
14999
+ line: z.ZodOptional<z.ZodObject<{
15000
+ channelId: z.ZodString;
15001
+ channelSecret: z.ZodString;
15002
+ }, "strip", z.ZodTypeAny, {
15003
+ channelId: string;
15004
+ channelSecret: string;
15005
+ }, {
15006
+ channelId: string;
15007
+ channelSecret: string;
15008
+ }>>;
14359
15009
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
14360
15010
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
14361
15011
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -14386,6 +15036,10 @@ export declare const channelBotContract: {
14386
15036
  mobileNumber: string;
14387
15037
  apiSecret: string;
14388
15038
  } | undefined;
15039
+ line?: {
15040
+ channelId: string;
15041
+ channelSecret: string;
15042
+ } | undefined;
14389
15043
  lineRichMenuId?: string | null | undefined;
14390
15044
  messengerIntegrationType?: "own" | "business" | undefined;
14391
15045
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -14416,6 +15070,10 @@ export declare const channelBotContract: {
14416
15070
  mobileNumber: string;
14417
15071
  apiSecret: string;
14418
15072
  } | undefined;
15073
+ line?: {
15074
+ channelId: string;
15075
+ channelSecret: string;
15076
+ } | undefined;
14419
15077
  lineRichMenuId?: string | null | undefined;
14420
15078
  messengerIntegrationType?: "own" | "business" | undefined;
14421
15079
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -14680,6 +15338,10 @@ export declare const channelBotContract: {
14680
15338
  mobileNumber: string;
14681
15339
  apiSecret: string;
14682
15340
  } | undefined;
15341
+ line?: {
15342
+ channelId: string;
15343
+ channelSecret: string;
15344
+ } | undefined;
14683
15345
  lineRichMenuId?: string | null | undefined;
14684
15346
  messengerIntegrationType?: "own" | "business" | undefined;
14685
15347
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -14775,6 +15437,10 @@ export declare const channelBotContract: {
14775
15437
  mobileNumber: string;
14776
15438
  apiSecret: string;
14777
15439
  } | undefined;
15440
+ line?: {
15441
+ channelId: string;
15442
+ channelSecret: string;
15443
+ } | undefined;
14778
15444
  lineRichMenuId?: string | null | undefined;
14779
15445
  messengerIntegrationType?: "own" | "business" | undefined;
14780
15446
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -14872,6 +15538,10 @@ export declare const channelBotContract: {
14872
15538
  mobileNumber: string;
14873
15539
  apiSecret: string;
14874
15540
  } | undefined;
15541
+ line?: {
15542
+ channelId: string;
15543
+ channelSecret: string;
15544
+ } | undefined;
14875
15545
  lineRichMenuId?: string | null | undefined;
14876
15546
  messengerIntegrationType?: "own" | "business" | undefined;
14877
15547
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -14970,6 +15640,10 @@ export declare const channelBotContract: {
14970
15640
  mobileNumber: string;
14971
15641
  apiSecret: string;
14972
15642
  } | undefined;
15643
+ line?: {
15644
+ channelId: string;
15645
+ channelSecret: string;
15646
+ } | undefined;
14973
15647
  lineRichMenuId?: string | null | undefined;
14974
15648
  messengerIntegrationType?: "own" | "business" | undefined;
14975
15649
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -15134,6 +15808,16 @@ export declare const channelBotContract: {
15134
15808
  mobileNumber: string;
15135
15809
  apiSecret: string;
15136
15810
  }>>;
15811
+ line: z.ZodOptional<z.ZodObject<{
15812
+ channelId: z.ZodString;
15813
+ channelSecret: z.ZodString;
15814
+ }, "strip", z.ZodTypeAny, {
15815
+ channelId: string;
15816
+ channelSecret: string;
15817
+ }, {
15818
+ channelId: string;
15819
+ channelSecret: string;
15820
+ }>>;
15137
15821
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
15138
15822
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
15139
15823
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -15164,6 +15848,10 @@ export declare const channelBotContract: {
15164
15848
  mobileNumber: string;
15165
15849
  apiSecret: string;
15166
15850
  } | undefined;
15851
+ line?: {
15852
+ channelId: string;
15853
+ channelSecret: string;
15854
+ } | undefined;
15167
15855
  lineRichMenuId?: string | null | undefined;
15168
15856
  messengerIntegrationType?: "own" | "business" | undefined;
15169
15857
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -15194,6 +15882,10 @@ export declare const channelBotContract: {
15194
15882
  mobileNumber: string;
15195
15883
  apiSecret: string;
15196
15884
  } | undefined;
15885
+ line?: {
15886
+ channelId: string;
15887
+ channelSecret: string;
15888
+ } | undefined;
15197
15889
  lineRichMenuId?: string | null | undefined;
15198
15890
  messengerIntegrationType?: "own" | "business" | undefined;
15199
15891
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -15458,6 +16150,10 @@ export declare const channelBotContract: {
15458
16150
  mobileNumber: string;
15459
16151
  apiSecret: string;
15460
16152
  } | undefined;
16153
+ line?: {
16154
+ channelId: string;
16155
+ channelSecret: string;
16156
+ } | undefined;
15461
16157
  lineRichMenuId?: string | null | undefined;
15462
16158
  messengerIntegrationType?: "own" | "business" | undefined;
15463
16159
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -15553,6 +16249,10 @@ export declare const channelBotContract: {
15553
16249
  mobileNumber: string;
15554
16250
  apiSecret: string;
15555
16251
  } | undefined;
16252
+ line?: {
16253
+ channelId: string;
16254
+ channelSecret: string;
16255
+ } | undefined;
15556
16256
  lineRichMenuId?: string | null | undefined;
15557
16257
  messengerIntegrationType?: "own" | "business" | undefined;
15558
16258
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -15650,6 +16350,10 @@ export declare const channelBotContract: {
15650
16350
  mobileNumber: string;
15651
16351
  apiSecret: string;
15652
16352
  } | undefined;
16353
+ line?: {
16354
+ channelId: string;
16355
+ channelSecret: string;
16356
+ } | undefined;
15653
16357
  lineRichMenuId?: string | null | undefined;
15654
16358
  messengerIntegrationType?: "own" | "business" | undefined;
15655
16359
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -15748,6 +16452,10 @@ export declare const channelBotContract: {
15748
16452
  mobileNumber: string;
15749
16453
  apiSecret: string;
15750
16454
  } | undefined;
16455
+ line?: {
16456
+ channelId: string;
16457
+ channelSecret: string;
16458
+ } | undefined;
15751
16459
  lineRichMenuId?: string | null | undefined;
15752
16460
  messengerIntegrationType?: "own" | "business" | undefined;
15753
16461
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -15950,6 +16658,16 @@ export declare const channelSMSContract: {
15950
16658
  mobileNumber: string;
15951
16659
  apiSecret: string;
15952
16660
  }>>;
16661
+ line: z.ZodOptional<z.ZodObject<{
16662
+ channelId: z.ZodString;
16663
+ channelSecret: z.ZodString;
16664
+ }, "strip", z.ZodTypeAny, {
16665
+ channelId: string;
16666
+ channelSecret: string;
16667
+ }, {
16668
+ channelId: string;
16669
+ channelSecret: string;
16670
+ }>>;
15953
16671
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
15954
16672
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
15955
16673
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -15980,6 +16698,10 @@ export declare const channelSMSContract: {
15980
16698
  mobileNumber: string;
15981
16699
  apiSecret: string;
15982
16700
  } | undefined;
16701
+ line?: {
16702
+ channelId: string;
16703
+ channelSecret: string;
16704
+ } | undefined;
15983
16705
  lineRichMenuId?: string | null | undefined;
15984
16706
  messengerIntegrationType?: "own" | "business" | undefined;
15985
16707
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -16010,6 +16732,10 @@ export declare const channelSMSContract: {
16010
16732
  mobileNumber: string;
16011
16733
  apiSecret: string;
16012
16734
  } | undefined;
16735
+ line?: {
16736
+ channelId: string;
16737
+ channelSecret: string;
16738
+ } | undefined;
16013
16739
  lineRichMenuId?: string | null | undefined;
16014
16740
  messengerIntegrationType?: "own" | "business" | undefined;
16015
16741
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -16274,6 +17000,10 @@ export declare const channelSMSContract: {
16274
17000
  mobileNumber: string;
16275
17001
  apiSecret: string;
16276
17002
  } | undefined;
17003
+ line?: {
17004
+ channelId: string;
17005
+ channelSecret: string;
17006
+ } | undefined;
16277
17007
  lineRichMenuId?: string | null | undefined;
16278
17008
  messengerIntegrationType?: "own" | "business" | undefined;
16279
17009
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -16369,6 +17099,10 @@ export declare const channelSMSContract: {
16369
17099
  mobileNumber: string;
16370
17100
  apiSecret: string;
16371
17101
  } | undefined;
17102
+ line?: {
17103
+ channelId: string;
17104
+ channelSecret: string;
17105
+ } | undefined;
16372
17106
  lineRichMenuId?: string | null | undefined;
16373
17107
  messengerIntegrationType?: "own" | "business" | undefined;
16374
17108
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -16466,6 +17200,10 @@ export declare const channelSMSContract: {
16466
17200
  mobileNumber: string;
16467
17201
  apiSecret: string;
16468
17202
  } | undefined;
17203
+ line?: {
17204
+ channelId: string;
17205
+ channelSecret: string;
17206
+ } | undefined;
16469
17207
  lineRichMenuId?: string | null | undefined;
16470
17208
  messengerIntegrationType?: "own" | "business" | undefined;
16471
17209
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -16564,6 +17302,10 @@ export declare const channelSMSContract: {
16564
17302
  mobileNumber: string;
16565
17303
  apiSecret: string;
16566
17304
  } | undefined;
17305
+ line?: {
17306
+ channelId: string;
17307
+ channelSecret: string;
17308
+ } | undefined;
16567
17309
  lineRichMenuId?: string | null | undefined;
16568
17310
  messengerIntegrationType?: "own" | "business" | undefined;
16569
17311
  facebookFeedIntegrationType?: "own" | "business" | undefined;