@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
@@ -171,6 +171,16 @@ export declare const lineContract: {
171
171
  mobileNumber: string;
172
172
  apiSecret: string;
173
173
  }>>;
174
+ line: z.ZodOptional<z.ZodObject<{
175
+ channelId: z.ZodString;
176
+ channelSecret: z.ZodString;
177
+ }, "strip", z.ZodTypeAny, {
178
+ channelId: string;
179
+ channelSecret: string;
180
+ }, {
181
+ channelId: string;
182
+ channelSecret: string;
183
+ }>>;
174
184
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
175
185
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
176
186
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -201,6 +211,10 @@ export declare const lineContract: {
201
211
  mobileNumber: string;
202
212
  apiSecret: string;
203
213
  } | undefined;
214
+ line?: {
215
+ channelId: string;
216
+ channelSecret: string;
217
+ } | undefined;
204
218
  lineRichMenuId?: string | null | undefined;
205
219
  messengerIntegrationType?: "own" | "business" | undefined;
206
220
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -231,6 +245,10 @@ export declare const lineContract: {
231
245
  mobileNumber: string;
232
246
  apiSecret: string;
233
247
  } | undefined;
248
+ line?: {
249
+ channelId: string;
250
+ channelSecret: string;
251
+ } | undefined;
234
252
  lineRichMenuId?: string | null | undefined;
235
253
  messengerIntegrationType?: "own" | "business" | undefined;
236
254
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -291,6 +309,10 @@ export declare const lineContract: {
291
309
  mobileNumber: string;
292
310
  apiSecret: string;
293
311
  } | undefined;
312
+ line?: {
313
+ channelId: string;
314
+ channelSecret: string;
315
+ } | undefined;
294
316
  lineRichMenuId?: string | null | undefined;
295
317
  messengerIntegrationType?: "own" | "business" | undefined;
296
318
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -339,6 +361,10 @@ export declare const lineContract: {
339
361
  mobileNumber: string;
340
362
  apiSecret: string;
341
363
  } | undefined;
364
+ line?: {
365
+ channelId: string;
366
+ channelSecret: string;
367
+ } | undefined;
342
368
  lineRichMenuId?: string | null | undefined;
343
369
  messengerIntegrationType?: "own" | "business" | undefined;
344
370
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -390,6 +416,10 @@ export declare const lineContract: {
390
416
  mobileNumber: string;
391
417
  apiSecret: string;
392
418
  } | undefined;
419
+ line?: {
420
+ channelId: string;
421
+ channelSecret: string;
422
+ } | undefined;
393
423
  lineRichMenuId?: string | null | undefined;
394
424
  messengerIntegrationType?: "own" | "business" | undefined;
395
425
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -470,6 +500,10 @@ export declare const lineContract: {
470
500
  mobileNumber: string;
471
501
  apiSecret: string;
472
502
  } | undefined;
503
+ line?: {
504
+ channelId: string;
505
+ channelSecret: string;
506
+ } | undefined;
473
507
  lineRichMenuId?: string | null | undefined;
474
508
  messengerIntegrationType?: "own" | "business" | undefined;
475
509
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -678,6 +712,10 @@ export declare const lineContract: {
678
712
  mobileNumber: string;
679
713
  apiSecret: string;
680
714
  } | undefined;
715
+ line?: {
716
+ channelId: string;
717
+ channelSecret: string;
718
+ } | undefined;
681
719
  lineRichMenuId?: string | null | undefined;
682
720
  messengerIntegrationType?: "own" | "business" | undefined;
683
721
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -789,6 +827,10 @@ export declare const lineContract: {
789
827
  mobileNumber: string;
790
828
  apiSecret: string;
791
829
  } | undefined;
830
+ line?: {
831
+ channelId: string;
832
+ channelSecret: string;
833
+ } | undefined;
792
834
  lineRichMenuId?: string | null | undefined;
793
835
  messengerIntegrationType?: "own" | "business" | undefined;
794
836
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -989,6 +1031,16 @@ export declare const lineContract: {
989
1031
  mobileNumber: string;
990
1032
  apiSecret: string;
991
1033
  }>>;
1034
+ line: z.ZodOptional<z.ZodObject<{
1035
+ channelId: z.ZodString;
1036
+ channelSecret: z.ZodString;
1037
+ }, "strip", z.ZodTypeAny, {
1038
+ channelId: string;
1039
+ channelSecret: string;
1040
+ }, {
1041
+ channelId: string;
1042
+ channelSecret: string;
1043
+ }>>;
992
1044
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
993
1045
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
994
1046
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -1019,6 +1071,10 @@ export declare const lineContract: {
1019
1071
  mobileNumber: string;
1020
1072
  apiSecret: string;
1021
1073
  } | undefined;
1074
+ line?: {
1075
+ channelId: string;
1076
+ channelSecret: string;
1077
+ } | undefined;
1022
1078
  lineRichMenuId?: string | null | undefined;
1023
1079
  messengerIntegrationType?: "own" | "business" | undefined;
1024
1080
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -1049,6 +1105,10 @@ export declare const lineContract: {
1049
1105
  mobileNumber: string;
1050
1106
  apiSecret: string;
1051
1107
  } | undefined;
1108
+ line?: {
1109
+ channelId: string;
1110
+ channelSecret: string;
1111
+ } | undefined;
1052
1112
  lineRichMenuId?: string | null | undefined;
1053
1113
  messengerIntegrationType?: "own" | "business" | undefined;
1054
1114
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -1109,6 +1169,10 @@ export declare const lineContract: {
1109
1169
  mobileNumber: string;
1110
1170
  apiSecret: string;
1111
1171
  } | undefined;
1172
+ line?: {
1173
+ channelId: string;
1174
+ channelSecret: string;
1175
+ } | undefined;
1112
1176
  lineRichMenuId?: string | null | undefined;
1113
1177
  messengerIntegrationType?: "own" | "business" | undefined;
1114
1178
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -1157,6 +1221,10 @@ export declare const lineContract: {
1157
1221
  mobileNumber: string;
1158
1222
  apiSecret: string;
1159
1223
  } | undefined;
1224
+ line?: {
1225
+ channelId: string;
1226
+ channelSecret: string;
1227
+ } | undefined;
1160
1228
  lineRichMenuId?: string | null | undefined;
1161
1229
  messengerIntegrationType?: "own" | "business" | undefined;
1162
1230
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -1207,6 +1275,10 @@ export declare const lineContract: {
1207
1275
  mobileNumber: string;
1208
1276
  apiSecret: string;
1209
1277
  } | undefined;
1278
+ line?: {
1279
+ channelId: string;
1280
+ channelSecret: string;
1281
+ } | undefined;
1210
1282
  lineRichMenuId?: string | null | undefined;
1211
1283
  messengerIntegrationType?: "own" | "business" | undefined;
1212
1284
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -1258,6 +1330,10 @@ export declare const lineContract: {
1258
1330
  mobileNumber: string;
1259
1331
  apiSecret: string;
1260
1332
  } | undefined;
1333
+ line?: {
1334
+ channelId: string;
1335
+ channelSecret: string;
1336
+ } | undefined;
1261
1337
  lineRichMenuId?: string | null | undefined;
1262
1338
  messengerIntegrationType?: "own" | "business" | undefined;
1263
1339
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -1492,6 +1568,16 @@ export declare const lineContract: {
1492
1568
  mobileNumber: string;
1493
1569
  apiSecret: string;
1494
1570
  }>>;
1571
+ line: z.ZodOptional<z.ZodObject<{
1572
+ channelId: z.ZodString;
1573
+ channelSecret: z.ZodString;
1574
+ }, "strip", z.ZodTypeAny, {
1575
+ channelId: string;
1576
+ channelSecret: string;
1577
+ }, {
1578
+ channelId: string;
1579
+ channelSecret: string;
1580
+ }>>;
1495
1581
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1496
1582
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
1497
1583
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -1522,6 +1608,10 @@ export declare const lineContract: {
1522
1608
  mobileNumber: string;
1523
1609
  apiSecret: string;
1524
1610
  } | undefined;
1611
+ line?: {
1612
+ channelId: string;
1613
+ channelSecret: string;
1614
+ } | undefined;
1525
1615
  lineRichMenuId?: string | null | undefined;
1526
1616
  messengerIntegrationType?: "own" | "business" | undefined;
1527
1617
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -1552,6 +1642,10 @@ export declare const lineContract: {
1552
1642
  mobileNumber: string;
1553
1643
  apiSecret: string;
1554
1644
  } | undefined;
1645
+ line?: {
1646
+ channelId: string;
1647
+ channelSecret: string;
1648
+ } | undefined;
1555
1649
  lineRichMenuId?: string | null | undefined;
1556
1650
  messengerIntegrationType?: "own" | "business" | undefined;
1557
1651
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -1612,6 +1706,10 @@ export declare const lineContract: {
1612
1706
  mobileNumber: string;
1613
1707
  apiSecret: string;
1614
1708
  } | undefined;
1709
+ line?: {
1710
+ channelId: string;
1711
+ channelSecret: string;
1712
+ } | undefined;
1615
1713
  lineRichMenuId?: string | null | undefined;
1616
1714
  messengerIntegrationType?: "own" | "business" | undefined;
1617
1715
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -1660,6 +1758,10 @@ export declare const lineContract: {
1660
1758
  mobileNumber: string;
1661
1759
  apiSecret: string;
1662
1760
  } | undefined;
1761
+ line?: {
1762
+ channelId: string;
1763
+ channelSecret: string;
1764
+ } | undefined;
1663
1765
  lineRichMenuId?: string | null | undefined;
1664
1766
  messengerIntegrationType?: "own" | "business" | undefined;
1665
1767
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -1713,6 +1815,10 @@ export declare const lineContract: {
1713
1815
  mobileNumber: string;
1714
1816
  apiSecret: string;
1715
1817
  } | undefined;
1818
+ line?: {
1819
+ channelId: string;
1820
+ channelSecret: string;
1821
+ } | undefined;
1716
1822
  lineRichMenuId?: string | null | undefined;
1717
1823
  messengerIntegrationType?: "own" | "business" | undefined;
1718
1824
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -1805,6 +1911,10 @@ export declare const lineContract: {
1805
1911
  mobileNumber: string;
1806
1912
  apiSecret: string;
1807
1913
  } | undefined;
1914
+ line?: {
1915
+ channelId: string;
1916
+ channelSecret: string;
1917
+ } | undefined;
1808
1918
  lineRichMenuId?: string | null | undefined;
1809
1919
  messengerIntegrationType?: "own" | "business" | undefined;
1810
1920
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -2065,6 +2175,10 @@ export declare const lineContract: {
2065
2175
  mobileNumber: string;
2066
2176
  apiSecret: string;
2067
2177
  } | undefined;
2178
+ line?: {
2179
+ channelId: string;
2180
+ channelSecret: string;
2181
+ } | undefined;
2068
2182
  lineRichMenuId?: string | null | undefined;
2069
2183
  messengerIntegrationType?: "own" | "business" | undefined;
2070
2184
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -2196,6 +2310,10 @@ export declare const lineContract: {
2196
2310
  mobileNumber: string;
2197
2311
  apiSecret: string;
2198
2312
  } | undefined;
2313
+ line?: {
2314
+ channelId: string;
2315
+ channelSecret: string;
2316
+ } | undefined;
2199
2317
  lineRichMenuId?: string | null | undefined;
2200
2318
  messengerIntegrationType?: "own" | "business" | undefined;
2201
2319
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -4257,6 +4375,16 @@ export declare const lineContract: {
4257
4375
  mobileNumber: string;
4258
4376
  apiSecret: string;
4259
4377
  }>>;
4378
+ line: z.ZodOptional<z.ZodObject<{
4379
+ channelId: z.ZodString;
4380
+ channelSecret: z.ZodString;
4381
+ }, "strip", z.ZodTypeAny, {
4382
+ channelId: string;
4383
+ channelSecret: string;
4384
+ }, {
4385
+ channelId: string;
4386
+ channelSecret: string;
4387
+ }>>;
4260
4388
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
4261
4389
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
4262
4390
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -4287,6 +4415,10 @@ export declare const lineContract: {
4287
4415
  mobileNumber: string;
4288
4416
  apiSecret: string;
4289
4417
  } | undefined;
4418
+ line?: {
4419
+ channelId: string;
4420
+ channelSecret: string;
4421
+ } | undefined;
4290
4422
  lineRichMenuId?: string | null | undefined;
4291
4423
  messengerIntegrationType?: "own" | "business" | undefined;
4292
4424
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -4317,6 +4449,10 @@ export declare const lineContract: {
4317
4449
  mobileNumber: string;
4318
4450
  apiSecret: string;
4319
4451
  } | undefined;
4452
+ line?: {
4453
+ channelId: string;
4454
+ channelSecret: string;
4455
+ } | undefined;
4320
4456
  lineRichMenuId?: string | null | undefined;
4321
4457
  messengerIntegrationType?: "own" | "business" | undefined;
4322
4458
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -4581,6 +4717,10 @@ export declare const lineContract: {
4581
4717
  mobileNumber: string;
4582
4718
  apiSecret: string;
4583
4719
  } | undefined;
4720
+ line?: {
4721
+ channelId: string;
4722
+ channelSecret: string;
4723
+ } | undefined;
4584
4724
  lineRichMenuId?: string | null | undefined;
4585
4725
  messengerIntegrationType?: "own" | "business" | undefined;
4586
4726
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -4676,6 +4816,10 @@ export declare const lineContract: {
4676
4816
  mobileNumber: string;
4677
4817
  apiSecret: string;
4678
4818
  } | undefined;
4819
+ line?: {
4820
+ channelId: string;
4821
+ channelSecret: string;
4822
+ } | undefined;
4679
4823
  lineRichMenuId?: string | null | undefined;
4680
4824
  messengerIntegrationType?: "own" | "business" | undefined;
4681
4825
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -5335,6 +5479,10 @@ export declare const lineContract: {
5335
5479
  mobileNumber: string;
5336
5480
  apiSecret: string;
5337
5481
  } | undefined;
5482
+ line?: {
5483
+ channelId: string;
5484
+ channelSecret: string;
5485
+ } | undefined;
5338
5486
  lineRichMenuId?: string | null | undefined;
5339
5487
  messengerIntegrationType?: "own" | "business" | undefined;
5340
5488
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -5764,6 +5912,10 @@ export declare const lineContract: {
5764
5912
  mobileNumber: string;
5765
5913
  apiSecret: string;
5766
5914
  } | undefined;
5915
+ line?: {
5916
+ channelId: string;
5917
+ channelSecret: string;
5918
+ } | undefined;
5767
5919
  lineRichMenuId?: string | null | undefined;
5768
5920
  messengerIntegrationType?: "own" | "business" | undefined;
5769
5921
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -8944,6 +9096,16 @@ export declare const lineContract: {
8944
9096
  mobileNumber: string;
8945
9097
  apiSecret: string;
8946
9098
  }>>;
9099
+ line: z.ZodOptional<z.ZodObject<{
9100
+ channelId: z.ZodString;
9101
+ channelSecret: z.ZodString;
9102
+ }, "strip", z.ZodTypeAny, {
9103
+ channelId: string;
9104
+ channelSecret: string;
9105
+ }, {
9106
+ channelId: string;
9107
+ channelSecret: string;
9108
+ }>>;
8947
9109
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
8948
9110
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
8949
9111
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -8974,6 +9136,10 @@ export declare const lineContract: {
8974
9136
  mobileNumber: string;
8975
9137
  apiSecret: string;
8976
9138
  } | undefined;
9139
+ line?: {
9140
+ channelId: string;
9141
+ channelSecret: string;
9142
+ } | undefined;
8977
9143
  lineRichMenuId?: string | null | undefined;
8978
9144
  messengerIntegrationType?: "own" | "business" | undefined;
8979
9145
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -9004,6 +9170,10 @@ export declare const lineContract: {
9004
9170
  mobileNumber: string;
9005
9171
  apiSecret: string;
9006
9172
  } | undefined;
9173
+ line?: {
9174
+ channelId: string;
9175
+ channelSecret: string;
9176
+ } | undefined;
9007
9177
  lineRichMenuId?: string | null | undefined;
9008
9178
  messengerIntegrationType?: "own" | "business" | undefined;
9009
9179
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -9268,6 +9438,10 @@ export declare const lineContract: {
9268
9438
  mobileNumber: string;
9269
9439
  apiSecret: string;
9270
9440
  } | undefined;
9441
+ line?: {
9442
+ channelId: string;
9443
+ channelSecret: string;
9444
+ } | undefined;
9271
9445
  lineRichMenuId?: string | null | undefined;
9272
9446
  messengerIntegrationType?: "own" | "business" | undefined;
9273
9447
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -9363,6 +9537,10 @@ export declare const lineContract: {
9363
9537
  mobileNumber: string;
9364
9538
  apiSecret: string;
9365
9539
  } | undefined;
9540
+ line?: {
9541
+ channelId: string;
9542
+ channelSecret: string;
9543
+ } | undefined;
9366
9544
  lineRichMenuId?: string | null | undefined;
9367
9545
  messengerIntegrationType?: "own" | "business" | undefined;
9368
9546
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -10022,6 +10200,10 @@ export declare const lineContract: {
10022
10200
  mobileNumber: string;
10023
10201
  apiSecret: string;
10024
10202
  } | undefined;
10203
+ line?: {
10204
+ channelId: string;
10205
+ channelSecret: string;
10206
+ } | undefined;
10025
10207
  lineRichMenuId?: string | null | undefined;
10026
10208
  messengerIntegrationType?: "own" | "business" | undefined;
10027
10209
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -10451,6 +10633,10 @@ export declare const lineContract: {
10451
10633
  mobileNumber: string;
10452
10634
  apiSecret: string;
10453
10635
  } | undefined;
10636
+ line?: {
10637
+ channelId: string;
10638
+ channelSecret: string;
10639
+ } | undefined;
10454
10640
  lineRichMenuId?: string | null | undefined;
10455
10641
  messengerIntegrationType?: "own" | "business" | undefined;
10456
10642
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -12653,6 +12839,10 @@ export declare const lineContract: {
12653
12839
  mobileNumber: string;
12654
12840
  apiSecret: string;
12655
12841
  } | undefined;
12842
+ line?: {
12843
+ channelId: string;
12844
+ channelSecret: string;
12845
+ } | undefined;
12656
12846
  lineRichMenuId?: string | null | undefined;
12657
12847
  messengerIntegrationType?: "own" | "business" | undefined;
12658
12848
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -13419,6 +13609,10 @@ export declare const lineContract: {
13419
13609
  mobileNumber: string;
13420
13610
  apiSecret: string;
13421
13611
  } | undefined;
13612
+ line?: {
13613
+ channelId: string;
13614
+ channelSecret: string;
13615
+ } | undefined;
13422
13616
  lineRichMenuId?: string | null | undefined;
13423
13617
  messengerIntegrationType?: "own" | "business" | undefined;
13424
13618
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -14186,6 +14380,10 @@ export declare const lineContract: {
14186
14380
  mobileNumber: string;
14187
14381
  apiSecret: string;
14188
14382
  } | undefined;
14383
+ line?: {
14384
+ channelId: string;
14385
+ channelSecret: string;
14386
+ } | undefined;
14189
14387
  lineRichMenuId?: string | null | undefined;
14190
14388
  messengerIntegrationType?: "own" | "business" | undefined;
14191
14389
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -14952,6 +15150,10 @@ export declare const lineContract: {
14952
15150
  mobileNumber: string;
14953
15151
  apiSecret: string;
14954
15152
  } | undefined;
15153
+ line?: {
15154
+ channelId: string;
15155
+ channelSecret: string;
15156
+ } | undefined;
14955
15157
  lineRichMenuId?: string | null | undefined;
14956
15158
  messengerIntegrationType?: "own" | "business" | undefined;
14957
15159
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -15719,6 +15921,10 @@ export declare const lineContract: {
15719
15921
  mobileNumber: string;
15720
15922
  apiSecret: string;
15721
15923
  } | undefined;
15924
+ line?: {
15925
+ channelId: string;
15926
+ channelSecret: string;
15927
+ } | undefined;
15722
15928
  lineRichMenuId?: string | null | undefined;
15723
15929
  messengerIntegrationType?: "own" | "business" | undefined;
15724
15930
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -16485,6 +16691,10 @@ export declare const lineContract: {
16485
16691
  mobileNumber: string;
16486
16692
  apiSecret: string;
16487
16693
  } | undefined;
16694
+ line?: {
16695
+ channelId: string;
16696
+ channelSecret: string;
16697
+ } | undefined;
16488
16698
  lineRichMenuId?: string | null | undefined;
16489
16699
  messengerIntegrationType?: "own" | "business" | undefined;
16490
16700
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -17254,6 +17464,10 @@ export declare const lineContract: {
17254
17464
  mobileNumber: string;
17255
17465
  apiSecret: string;
17256
17466
  } | undefined;
17467
+ line?: {
17468
+ channelId: string;
17469
+ channelSecret: string;
17470
+ } | undefined;
17257
17471
  lineRichMenuId?: string | null | undefined;
17258
17472
  messengerIntegrationType?: "own" | "business" | undefined;
17259
17473
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -18020,6 +18234,10 @@ export declare const lineContract: {
18020
18234
  mobileNumber: string;
18021
18235
  apiSecret: string;
18022
18236
  } | undefined;
18237
+ line?: {
18238
+ channelId: string;
18239
+ channelSecret: string;
18240
+ } | undefined;
18023
18241
  lineRichMenuId?: string | null | undefined;
18024
18242
  messengerIntegrationType?: "own" | "business" | undefined;
18025
18243
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -18790,6 +19008,10 @@ export declare const lineContract: {
18790
19008
  mobileNumber: string;
18791
19009
  apiSecret: string;
18792
19010
  } | undefined;
19011
+ line?: {
19012
+ channelId: string;
19013
+ channelSecret: string;
19014
+ } | undefined;
18793
19015
  lineRichMenuId?: string | null | undefined;
18794
19016
  messengerIntegrationType?: "own" | "business" | undefined;
18795
19017
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -19556,6 +19778,10 @@ export declare const lineContract: {
19556
19778
  mobileNumber: string;
19557
19779
  apiSecret: string;
19558
19780
  } | undefined;
19781
+ line?: {
19782
+ channelId: string;
19783
+ channelSecret: string;
19784
+ } | undefined;
19559
19785
  lineRichMenuId?: string | null | undefined;
19560
19786
  messengerIntegrationType?: "own" | "business" | undefined;
19561
19787
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -20262,6 +20488,16 @@ export declare const lineContract: {
20262
20488
  mobileNumber: string;
20263
20489
  apiSecret: string;
20264
20490
  }>>;
20491
+ line: z.ZodOptional<z.ZodObject<{
20492
+ channelId: z.ZodString;
20493
+ channelSecret: z.ZodString;
20494
+ }, "strip", z.ZodTypeAny, {
20495
+ channelId: string;
20496
+ channelSecret: string;
20497
+ }, {
20498
+ channelId: string;
20499
+ channelSecret: string;
20500
+ }>>;
20265
20501
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
20266
20502
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
20267
20503
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -20292,6 +20528,10 @@ export declare const lineContract: {
20292
20528
  mobileNumber: string;
20293
20529
  apiSecret: string;
20294
20530
  } | undefined;
20531
+ line?: {
20532
+ channelId: string;
20533
+ channelSecret: string;
20534
+ } | undefined;
20295
20535
  lineRichMenuId?: string | null | undefined;
20296
20536
  messengerIntegrationType?: "own" | "business" | undefined;
20297
20537
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -20322,6 +20562,10 @@ export declare const lineContract: {
20322
20562
  mobileNumber: string;
20323
20563
  apiSecret: string;
20324
20564
  } | undefined;
20565
+ line?: {
20566
+ channelId: string;
20567
+ channelSecret: string;
20568
+ } | undefined;
20325
20569
  lineRichMenuId?: string | null | undefined;
20326
20570
  messengerIntegrationType?: "own" | "business" | undefined;
20327
20571
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -20382,6 +20626,10 @@ export declare const lineContract: {
20382
20626
  mobileNumber: string;
20383
20627
  apiSecret: string;
20384
20628
  } | undefined;
20629
+ line?: {
20630
+ channelId: string;
20631
+ channelSecret: string;
20632
+ } | undefined;
20385
20633
  lineRichMenuId?: string | null | undefined;
20386
20634
  messengerIntegrationType?: "own" | "business" | undefined;
20387
20635
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -20430,6 +20678,10 @@ export declare const lineContract: {
20430
20678
  mobileNumber: string;
20431
20679
  apiSecret: string;
20432
20680
  } | undefined;
20681
+ line?: {
20682
+ channelId: string;
20683
+ channelSecret: string;
20684
+ } | undefined;
20433
20685
  lineRichMenuId?: string | null | undefined;
20434
20686
  messengerIntegrationType?: "own" | "business" | undefined;
20435
20687
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -20517,6 +20769,16 @@ export declare const lineContract: {
20517
20769
  mobileNumber: string;
20518
20770
  apiSecret: string;
20519
20771
  }>>;
20772
+ line: z.ZodOptional<z.ZodObject<{
20773
+ channelId: z.ZodString;
20774
+ channelSecret: z.ZodString;
20775
+ }, "strip", z.ZodTypeAny, {
20776
+ channelId: string;
20777
+ channelSecret: string;
20778
+ }, {
20779
+ channelId: string;
20780
+ channelSecret: string;
20781
+ }>>;
20520
20782
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
20521
20783
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
20522
20784
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -20547,6 +20809,10 @@ export declare const lineContract: {
20547
20809
  mobileNumber: string;
20548
20810
  apiSecret: string;
20549
20811
  } | undefined;
20812
+ line?: {
20813
+ channelId: string;
20814
+ channelSecret: string;
20815
+ } | undefined;
20550
20816
  lineRichMenuId?: string | null | undefined;
20551
20817
  messengerIntegrationType?: "own" | "business" | undefined;
20552
20818
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -20577,6 +20843,10 @@ export declare const lineContract: {
20577
20843
  mobileNumber: string;
20578
20844
  apiSecret: string;
20579
20845
  } | undefined;
20846
+ line?: {
20847
+ channelId: string;
20848
+ channelSecret: string;
20849
+ } | undefined;
20580
20850
  lineRichMenuId?: string | null | undefined;
20581
20851
  messengerIntegrationType?: "own" | "business" | undefined;
20582
20852
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -20637,6 +20907,10 @@ export declare const lineContract: {
20637
20907
  mobileNumber: string;
20638
20908
  apiSecret: string;
20639
20909
  } | undefined;
20910
+ line?: {
20911
+ channelId: string;
20912
+ channelSecret: string;
20913
+ } | undefined;
20640
20914
  lineRichMenuId?: string | null | undefined;
20641
20915
  messengerIntegrationType?: "own" | "business" | undefined;
20642
20916
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -20685,6 +20959,10 @@ export declare const lineContract: {
20685
20959
  mobileNumber: string;
20686
20960
  apiSecret: string;
20687
20961
  } | undefined;
20962
+ line?: {
20963
+ channelId: string;
20964
+ channelSecret: string;
20965
+ } | undefined;
20688
20966
  lineRichMenuId?: string | null | undefined;
20689
20967
  messengerIntegrationType?: "own" | "business" | undefined;
20690
20968
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -20735,6 +21013,10 @@ export declare const lineContract: {
20735
21013
  mobileNumber: string;
20736
21014
  apiSecret: string;
20737
21015
  } | undefined;
21016
+ line?: {
21017
+ channelId: string;
21018
+ channelSecret: string;
21019
+ } | undefined;
20738
21020
  lineRichMenuId?: string | null | undefined;
20739
21021
  messengerIntegrationType?: "own" | "business" | undefined;
20740
21022
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -20786,6 +21068,10 @@ export declare const lineContract: {
20786
21068
  mobileNumber: string;
20787
21069
  apiSecret: string;
20788
21070
  } | undefined;
21071
+ line?: {
21072
+ channelId: string;
21073
+ channelSecret: string;
21074
+ } | undefined;
20789
21075
  lineRichMenuId?: string | null | undefined;
20790
21076
  messengerIntegrationType?: "own" | "business" | undefined;
20791
21077
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -20907,6 +21193,16 @@ export declare const lineContract: {
20907
21193
  mobileNumber: string;
20908
21194
  apiSecret: string;
20909
21195
  }>>;
21196
+ line: z.ZodOptional<z.ZodObject<{
21197
+ channelId: z.ZodString;
21198
+ channelSecret: z.ZodString;
21199
+ }, "strip", z.ZodTypeAny, {
21200
+ channelId: string;
21201
+ channelSecret: string;
21202
+ }, {
21203
+ channelId: string;
21204
+ channelSecret: string;
21205
+ }>>;
20910
21206
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
20911
21207
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
20912
21208
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -20937,6 +21233,10 @@ export declare const lineContract: {
20937
21233
  mobileNumber: string;
20938
21234
  apiSecret: string;
20939
21235
  } | undefined;
21236
+ line?: {
21237
+ channelId: string;
21238
+ channelSecret: string;
21239
+ } | undefined;
20940
21240
  lineRichMenuId?: string | null | undefined;
20941
21241
  messengerIntegrationType?: "own" | "business" | undefined;
20942
21242
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -20967,6 +21267,10 @@ export declare const lineContract: {
20967
21267
  mobileNumber: string;
20968
21268
  apiSecret: string;
20969
21269
  } | undefined;
21270
+ line?: {
21271
+ channelId: string;
21272
+ channelSecret: string;
21273
+ } | undefined;
20970
21274
  lineRichMenuId?: string | null | undefined;
20971
21275
  messengerIntegrationType?: "own" | "business" | undefined;
20972
21276
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -21027,6 +21331,10 @@ export declare const lineContract: {
21027
21331
  mobileNumber: string;
21028
21332
  apiSecret: string;
21029
21333
  } | undefined;
21334
+ line?: {
21335
+ channelId: string;
21336
+ channelSecret: string;
21337
+ } | undefined;
21030
21338
  lineRichMenuId?: string | null | undefined;
21031
21339
  messengerIntegrationType?: "own" | "business" | undefined;
21032
21340
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -21075,6 +21383,10 @@ export declare const lineContract: {
21075
21383
  mobileNumber: string;
21076
21384
  apiSecret: string;
21077
21385
  } | undefined;
21386
+ line?: {
21387
+ channelId: string;
21388
+ channelSecret: string;
21389
+ } | undefined;
21078
21390
  lineRichMenuId?: string | null | undefined;
21079
21391
  messengerIntegrationType?: "own" | "business" | undefined;
21080
21392
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -21125,6 +21437,10 @@ export declare const lineContract: {
21125
21437
  mobileNumber: string;
21126
21438
  apiSecret: string;
21127
21439
  } | undefined;
21440
+ line?: {
21441
+ channelId: string;
21442
+ channelSecret: string;
21443
+ } | undefined;
21128
21444
  lineRichMenuId?: string | null | undefined;
21129
21445
  messengerIntegrationType?: "own" | "business" | undefined;
21130
21446
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -21176,6 +21492,10 @@ export declare const lineContract: {
21176
21492
  mobileNumber: string;
21177
21493
  apiSecret: string;
21178
21494
  } | undefined;
21495
+ line?: {
21496
+ channelId: string;
21497
+ channelSecret: string;
21498
+ } | undefined;
21179
21499
  lineRichMenuId?: string | null | undefined;
21180
21500
  messengerIntegrationType?: "own" | "business" | undefined;
21181
21501
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -21297,6 +21617,16 @@ export declare const lineContract: {
21297
21617
  mobileNumber: string;
21298
21618
  apiSecret: string;
21299
21619
  }>>;
21620
+ line: z.ZodOptional<z.ZodObject<{
21621
+ channelId: z.ZodString;
21622
+ channelSecret: z.ZodString;
21623
+ }, "strip", z.ZodTypeAny, {
21624
+ channelId: string;
21625
+ channelSecret: string;
21626
+ }, {
21627
+ channelId: string;
21628
+ channelSecret: string;
21629
+ }>>;
21300
21630
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
21301
21631
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
21302
21632
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -21327,6 +21657,10 @@ export declare const lineContract: {
21327
21657
  mobileNumber: string;
21328
21658
  apiSecret: string;
21329
21659
  } | undefined;
21660
+ line?: {
21661
+ channelId: string;
21662
+ channelSecret: string;
21663
+ } | undefined;
21330
21664
  lineRichMenuId?: string | null | undefined;
21331
21665
  messengerIntegrationType?: "own" | "business" | undefined;
21332
21666
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -21357,6 +21691,10 @@ export declare const lineContract: {
21357
21691
  mobileNumber: string;
21358
21692
  apiSecret: string;
21359
21693
  } | undefined;
21694
+ line?: {
21695
+ channelId: string;
21696
+ channelSecret: string;
21697
+ } | undefined;
21360
21698
  lineRichMenuId?: string | null | undefined;
21361
21699
  messengerIntegrationType?: "own" | "business" | undefined;
21362
21700
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -21417,6 +21755,10 @@ export declare const lineContract: {
21417
21755
  mobileNumber: string;
21418
21756
  apiSecret: string;
21419
21757
  } | undefined;
21758
+ line?: {
21759
+ channelId: string;
21760
+ channelSecret: string;
21761
+ } | undefined;
21420
21762
  lineRichMenuId?: string | null | undefined;
21421
21763
  messengerIntegrationType?: "own" | "business" | undefined;
21422
21764
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -21465,6 +21807,10 @@ export declare const lineContract: {
21465
21807
  mobileNumber: string;
21466
21808
  apiSecret: string;
21467
21809
  } | undefined;
21810
+ line?: {
21811
+ channelId: string;
21812
+ channelSecret: string;
21813
+ } | undefined;
21468
21814
  lineRichMenuId?: string | null | undefined;
21469
21815
  messengerIntegrationType?: "own" | "business" | undefined;
21470
21816
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -21515,6 +21861,10 @@ export declare const lineContract: {
21515
21861
  mobileNumber: string;
21516
21862
  apiSecret: string;
21517
21863
  } | undefined;
21864
+ line?: {
21865
+ channelId: string;
21866
+ channelSecret: string;
21867
+ } | undefined;
21518
21868
  lineRichMenuId?: string | null | undefined;
21519
21869
  messengerIntegrationType?: "own" | "business" | undefined;
21520
21870
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -21566,6 +21916,10 @@ export declare const lineContract: {
21566
21916
  mobileNumber: string;
21567
21917
  apiSecret: string;
21568
21918
  } | undefined;
21919
+ line?: {
21920
+ channelId: string;
21921
+ channelSecret: string;
21922
+ } | undefined;
21569
21923
  lineRichMenuId?: string | null | undefined;
21570
21924
  messengerIntegrationType?: "own" | "business" | undefined;
21571
21925
  facebookFeedIntegrationType?: "own" | "business" | undefined;