@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
@@ -25,13 +25,13 @@ export type ReceiveMessageRequest = z.infer<typeof ReceiveMessageSchema>;
25
25
  export type GetMessagesResponse = z.infer<typeof DefaultQueryParamsSchema>;
26
26
  export type RoomSchemaType = z.infer<typeof RoomSchema>;
27
27
  export type MessageSchemaType = z.infer<typeof MessageSchema>;
28
+ export type MessageType = z.infer<typeof MessageTypeSchema>;
29
+ export type MessageDirectionType = z.infer<typeof MessageDirectionTypeSchema>;
28
30
  export type MessageWithFeedPostSchemaType = z.infer<typeof MessageWithFeedPostSchema>;
29
31
  export type LineStickerRequestType = z.infer<typeof LineStickerSchema>;
30
32
  export type MessageRelevanceType = z.infer<typeof MessageRelevanceSchema>;
31
33
  export type FeedPostType = z.infer<typeof FeedPostSchema>;
32
34
  export type OrderQueryParamType = z.infer<typeof OrderQueryParamSchema>;
33
- export type MessageDirectionType = z.infer<typeof MessageDirectionTypeSchema>;
34
- export type MessageType = z.infer<typeof MessageTypeSchema>;
35
35
  export declare const receiveMessageContract: {
36
36
  receiveMessage: {
37
37
  body: z.ZodObject<{
@@ -1471,6 +1471,16 @@ export declare const receiveMessageContract: {
1471
1471
  mobileNumber: string;
1472
1472
  apiSecret: string;
1473
1473
  }>>;
1474
+ line: z.ZodOptional<z.ZodObject<{
1475
+ channelId: z.ZodString;
1476
+ channelSecret: z.ZodString;
1477
+ }, "strip", z.ZodTypeAny, {
1478
+ channelId: string;
1479
+ channelSecret: string;
1480
+ }, {
1481
+ channelId: string;
1482
+ channelSecret: string;
1483
+ }>>;
1474
1484
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1475
1485
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
1476
1486
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -1501,6 +1511,10 @@ export declare const receiveMessageContract: {
1501
1511
  mobileNumber: string;
1502
1512
  apiSecret: string;
1503
1513
  } | undefined;
1514
+ line?: {
1515
+ channelId: string;
1516
+ channelSecret: string;
1517
+ } | undefined;
1504
1518
  lineRichMenuId?: string | null | undefined;
1505
1519
  messengerIntegrationType?: "own" | "business" | undefined;
1506
1520
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -1531,6 +1545,10 @@ export declare const receiveMessageContract: {
1531
1545
  mobileNumber: string;
1532
1546
  apiSecret: string;
1533
1547
  } | undefined;
1548
+ line?: {
1549
+ channelId: string;
1550
+ channelSecret: string;
1551
+ } | undefined;
1534
1552
  lineRichMenuId?: string | null | undefined;
1535
1553
  messengerIntegrationType?: "own" | "business" | undefined;
1536
1554
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -1591,6 +1609,10 @@ export declare const receiveMessageContract: {
1591
1609
  mobileNumber: string;
1592
1610
  apiSecret: string;
1593
1611
  } | undefined;
1612
+ line?: {
1613
+ channelId: string;
1614
+ channelSecret: string;
1615
+ } | undefined;
1594
1616
  lineRichMenuId?: string | null | undefined;
1595
1617
  messengerIntegrationType?: "own" | "business" | undefined;
1596
1618
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -1639,6 +1661,10 @@ export declare const receiveMessageContract: {
1639
1661
  mobileNumber: string;
1640
1662
  apiSecret: string;
1641
1663
  } | undefined;
1664
+ line?: {
1665
+ channelId: string;
1666
+ channelSecret: string;
1667
+ } | undefined;
1642
1668
  lineRichMenuId?: string | null | undefined;
1643
1669
  messengerIntegrationType?: "own" | "business" | undefined;
1644
1670
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -2436,6 +2462,10 @@ export declare const receiveMessageContract: {
2436
2462
  mobileNumber: string;
2437
2463
  apiSecret: string;
2438
2464
  } | undefined;
2465
+ line?: {
2466
+ channelId: string;
2467
+ channelSecret: string;
2468
+ } | undefined;
2439
2469
  lineRichMenuId?: string | null | undefined;
2440
2470
  messengerIntegrationType?: "own" | "business" | undefined;
2441
2471
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -2789,6 +2819,10 @@ export declare const receiveMessageContract: {
2789
2819
  mobileNumber: string;
2790
2820
  apiSecret: string;
2791
2821
  } | undefined;
2822
+ line?: {
2823
+ channelId: string;
2824
+ channelSecret: string;
2825
+ } | undefined;
2792
2826
  lineRichMenuId?: string | null | undefined;
2793
2827
  messengerIntegrationType?: "own" | "business" | undefined;
2794
2828
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -3798,6 +3832,10 @@ export declare const receiveMessageContract: {
3798
3832
  mobileNumber: string;
3799
3833
  apiSecret: string;
3800
3834
  } | undefined;
3835
+ line?: {
3836
+ channelId: string;
3837
+ channelSecret: string;
3838
+ } | undefined;
3801
3839
  lineRichMenuId?: string | null | undefined;
3802
3840
  messengerIntegrationType?: "own" | "business" | undefined;
3803
3841
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -4314,6 +4352,10 @@ export declare const receiveMessageContract: {
4314
4352
  mobileNumber: string;
4315
4353
  apiSecret: string;
4316
4354
  } | undefined;
4355
+ line?: {
4356
+ channelId: string;
4357
+ channelSecret: string;
4358
+ } | undefined;
4317
4359
  lineRichMenuId?: string | null | undefined;
4318
4360
  messengerIntegrationType?: "own" | "business" | undefined;
4319
4361
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -4832,6 +4874,10 @@ export declare const receiveMessageContract: {
4832
4874
  mobileNumber: string;
4833
4875
  apiSecret: string;
4834
4876
  } | undefined;
4877
+ line?: {
4878
+ channelId: string;
4879
+ channelSecret: string;
4880
+ } | undefined;
4835
4881
  lineRichMenuId?: string | null | undefined;
4836
4882
  messengerIntegrationType?: "own" | "business" | undefined;
4837
4883
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -5350,6 +5396,10 @@ export declare const receiveMessageContract: {
5350
5396
  mobileNumber: string;
5351
5397
  apiSecret: string;
5352
5398
  } | undefined;
5399
+ line?: {
5400
+ channelId: string;
5401
+ channelSecret: string;
5402
+ } | undefined;
5353
5403
  lineRichMenuId?: string | null | undefined;
5354
5404
  messengerIntegrationType?: "own" | "business" | undefined;
5355
5405
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -5740,6 +5790,16 @@ export declare const mainFeedContract: {
5740
5790
  mobileNumber: string;
5741
5791
  apiSecret: string;
5742
5792
  }>>;
5793
+ line: z.ZodOptional<z.ZodObject<{
5794
+ channelId: z.ZodString;
5795
+ channelSecret: z.ZodString;
5796
+ }, "strip", z.ZodTypeAny, {
5797
+ channelId: string;
5798
+ channelSecret: string;
5799
+ }, {
5800
+ channelId: string;
5801
+ channelSecret: string;
5802
+ }>>;
5743
5803
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
5744
5804
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
5745
5805
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -5770,6 +5830,10 @@ export declare const mainFeedContract: {
5770
5830
  mobileNumber: string;
5771
5831
  apiSecret: string;
5772
5832
  } | undefined;
5833
+ line?: {
5834
+ channelId: string;
5835
+ channelSecret: string;
5836
+ } | undefined;
5773
5837
  lineRichMenuId?: string | null | undefined;
5774
5838
  messengerIntegrationType?: "own" | "business" | undefined;
5775
5839
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -5800,6 +5864,10 @@ export declare const mainFeedContract: {
5800
5864
  mobileNumber: string;
5801
5865
  apiSecret: string;
5802
5866
  } | undefined;
5867
+ line?: {
5868
+ channelId: string;
5869
+ channelSecret: string;
5870
+ } | undefined;
5803
5871
  lineRichMenuId?: string | null | undefined;
5804
5872
  messengerIntegrationType?: "own" | "business" | undefined;
5805
5873
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -6064,6 +6132,10 @@ export declare const mainFeedContract: {
6064
6132
  mobileNumber: string;
6065
6133
  apiSecret: string;
6066
6134
  } | undefined;
6135
+ line?: {
6136
+ channelId: string;
6137
+ channelSecret: string;
6138
+ } | undefined;
6067
6139
  lineRichMenuId?: string | null | undefined;
6068
6140
  messengerIntegrationType?: "own" | "business" | undefined;
6069
6141
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -6159,6 +6231,10 @@ export declare const mainFeedContract: {
6159
6231
  mobileNumber: string;
6160
6232
  apiSecret: string;
6161
6233
  } | undefined;
6234
+ line?: {
6235
+ channelId: string;
6236
+ channelSecret: string;
6237
+ } | undefined;
6162
6238
  lineRichMenuId?: string | null | undefined;
6163
6239
  messengerIntegrationType?: "own" | "business" | undefined;
6164
6240
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -7511,6 +7587,10 @@ export declare const mainFeedContract: {
7511
7587
  mobileNumber: string;
7512
7588
  apiSecret: string;
7513
7589
  } | undefined;
7590
+ line?: {
7591
+ channelId: string;
7592
+ channelSecret: string;
7593
+ } | undefined;
7514
7594
  lineRichMenuId?: string | null | undefined;
7515
7595
  messengerIntegrationType?: "own" | "business" | undefined;
7516
7596
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -7793,6 +7873,10 @@ export declare const mainFeedContract: {
7793
7873
  mobileNumber: string;
7794
7874
  apiSecret: string;
7795
7875
  } | undefined;
7876
+ line?: {
7877
+ channelId: string;
7878
+ channelSecret: string;
7879
+ } | undefined;
7796
7880
  lineRichMenuId?: string | null | undefined;
7797
7881
  messengerIntegrationType?: "own" | "business" | undefined;
7798
7882
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -8077,6 +8161,10 @@ export declare const mainFeedContract: {
8077
8161
  mobileNumber: string;
8078
8162
  apiSecret: string;
8079
8163
  } | undefined;
8164
+ line?: {
8165
+ channelId: string;
8166
+ channelSecret: string;
8167
+ } | undefined;
8080
8168
  lineRichMenuId?: string | null | undefined;
8081
8169
  messengerIntegrationType?: "own" | "business" | undefined;
8082
8170
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -8362,6 +8450,10 @@ export declare const mainFeedContract: {
8362
8450
  mobileNumber: string;
8363
8451
  apiSecret: string;
8364
8452
  } | undefined;
8453
+ line?: {
8454
+ channelId: string;
8455
+ channelSecret: string;
8456
+ } | undefined;
8365
8457
  lineRichMenuId?: string | null | undefined;
8366
8458
  messengerIntegrationType?: "own" | "business" | undefined;
8367
8459
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -10652,6 +10744,16 @@ export declare const mainFeedContract: {
10652
10744
  mobileNumber: string;
10653
10745
  apiSecret: string;
10654
10746
  }>>;
10747
+ line: z.ZodOptional<z.ZodObject<{
10748
+ channelId: z.ZodString;
10749
+ channelSecret: z.ZodString;
10750
+ }, "strip", z.ZodTypeAny, {
10751
+ channelId: string;
10752
+ channelSecret: string;
10753
+ }, {
10754
+ channelId: string;
10755
+ channelSecret: string;
10756
+ }>>;
10655
10757
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
10656
10758
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
10657
10759
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -10682,6 +10784,10 @@ export declare const mainFeedContract: {
10682
10784
  mobileNumber: string;
10683
10785
  apiSecret: string;
10684
10786
  } | undefined;
10787
+ line?: {
10788
+ channelId: string;
10789
+ channelSecret: string;
10790
+ } | undefined;
10685
10791
  lineRichMenuId?: string | null | undefined;
10686
10792
  messengerIntegrationType?: "own" | "business" | undefined;
10687
10793
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -10712,6 +10818,10 @@ export declare const mainFeedContract: {
10712
10818
  mobileNumber: string;
10713
10819
  apiSecret: string;
10714
10820
  } | undefined;
10821
+ line?: {
10822
+ channelId: string;
10823
+ channelSecret: string;
10824
+ } | undefined;
10715
10825
  lineRichMenuId?: string | null | undefined;
10716
10826
  messengerIntegrationType?: "own" | "business" | undefined;
10717
10827
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -10976,6 +11086,10 @@ export declare const mainFeedContract: {
10976
11086
  mobileNumber: string;
10977
11087
  apiSecret: string;
10978
11088
  } | undefined;
11089
+ line?: {
11090
+ channelId: string;
11091
+ channelSecret: string;
11092
+ } | undefined;
10979
11093
  lineRichMenuId?: string | null | undefined;
10980
11094
  messengerIntegrationType?: "own" | "business" | undefined;
10981
11095
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -11071,6 +11185,10 @@ export declare const mainFeedContract: {
11071
11185
  mobileNumber: string;
11072
11186
  apiSecret: string;
11073
11187
  } | undefined;
11188
+ line?: {
11189
+ channelId: string;
11190
+ channelSecret: string;
11191
+ } | undefined;
11074
11192
  lineRichMenuId?: string | null | undefined;
11075
11193
  messengerIntegrationType?: "own" | "business" | undefined;
11076
11194
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -11730,6 +11848,10 @@ export declare const mainFeedContract: {
11730
11848
  mobileNumber: string;
11731
11849
  apiSecret: string;
11732
11850
  } | undefined;
11851
+ line?: {
11852
+ channelId: string;
11853
+ channelSecret: string;
11854
+ } | undefined;
11733
11855
  lineRichMenuId?: string | null | undefined;
11734
11856
  messengerIntegrationType?: "own" | "business" | undefined;
11735
11857
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -12159,6 +12281,10 @@ export declare const mainFeedContract: {
12159
12281
  mobileNumber: string;
12160
12282
  apiSecret: string;
12161
12283
  } | undefined;
12284
+ line?: {
12285
+ channelId: string;
12286
+ channelSecret: string;
12287
+ } | undefined;
12162
12288
  lineRichMenuId?: string | null | undefined;
12163
12289
  messengerIntegrationType?: "own" | "business" | undefined;
12164
12290
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -16386,6 +16512,16 @@ export declare const mainFeedContract: {
16386
16512
  mobileNumber: string;
16387
16513
  apiSecret: string;
16388
16514
  }>>;
16515
+ line: z.ZodOptional<z.ZodObject<{
16516
+ channelId: z.ZodString;
16517
+ channelSecret: z.ZodString;
16518
+ }, "strip", z.ZodTypeAny, {
16519
+ channelId: string;
16520
+ channelSecret: string;
16521
+ }, {
16522
+ channelId: string;
16523
+ channelSecret: string;
16524
+ }>>;
16389
16525
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
16390
16526
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
16391
16527
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -16416,6 +16552,10 @@ export declare const mainFeedContract: {
16416
16552
  mobileNumber: string;
16417
16553
  apiSecret: string;
16418
16554
  } | undefined;
16555
+ line?: {
16556
+ channelId: string;
16557
+ channelSecret: string;
16558
+ } | undefined;
16419
16559
  lineRichMenuId?: string | null | undefined;
16420
16560
  messengerIntegrationType?: "own" | "business" | undefined;
16421
16561
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -16446,6 +16586,10 @@ export declare const mainFeedContract: {
16446
16586
  mobileNumber: string;
16447
16587
  apiSecret: string;
16448
16588
  } | undefined;
16589
+ line?: {
16590
+ channelId: string;
16591
+ channelSecret: string;
16592
+ } | undefined;
16449
16593
  lineRichMenuId?: string | null | undefined;
16450
16594
  messengerIntegrationType?: "own" | "business" | undefined;
16451
16595
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -16710,6 +16854,10 @@ export declare const mainFeedContract: {
16710
16854
  mobileNumber: string;
16711
16855
  apiSecret: string;
16712
16856
  } | undefined;
16857
+ line?: {
16858
+ channelId: string;
16859
+ channelSecret: string;
16860
+ } | undefined;
16713
16861
  lineRichMenuId?: string | null | undefined;
16714
16862
  messengerIntegrationType?: "own" | "business" | undefined;
16715
16863
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -16805,6 +16953,10 @@ export declare const mainFeedContract: {
16805
16953
  mobileNumber: string;
16806
16954
  apiSecret: string;
16807
16955
  } | undefined;
16956
+ line?: {
16957
+ channelId: string;
16958
+ channelSecret: string;
16959
+ } | undefined;
16808
16960
  lineRichMenuId?: string | null | undefined;
16809
16961
  messengerIntegrationType?: "own" | "business" | undefined;
16810
16962
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -17464,6 +17616,10 @@ export declare const mainFeedContract: {
17464
17616
  mobileNumber: string;
17465
17617
  apiSecret: string;
17466
17618
  } | undefined;
17619
+ line?: {
17620
+ channelId: string;
17621
+ channelSecret: string;
17622
+ } | undefined;
17467
17623
  lineRichMenuId?: string | null | undefined;
17468
17624
  messengerIntegrationType?: "own" | "business" | undefined;
17469
17625
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -17893,6 +18049,10 @@ export declare const mainFeedContract: {
17893
18049
  mobileNumber: string;
17894
18050
  apiSecret: string;
17895
18051
  } | undefined;
18052
+ line?: {
18053
+ channelId: string;
18054
+ channelSecret: string;
18055
+ } | undefined;
17896
18056
  lineRichMenuId?: string | null | undefined;
17897
18057
  messengerIntegrationType?: "own" | "business" | undefined;
17898
18058
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -20095,6 +20255,10 @@ export declare const mainFeedContract: {
20095
20255
  mobileNumber: string;
20096
20256
  apiSecret: string;
20097
20257
  } | undefined;
20258
+ line?: {
20259
+ channelId: string;
20260
+ channelSecret: string;
20261
+ } | undefined;
20098
20262
  lineRichMenuId?: string | null | undefined;
20099
20263
  messengerIntegrationType?: "own" | "business" | undefined;
20100
20264
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -20861,6 +21025,10 @@ export declare const mainFeedContract: {
20861
21025
  mobileNumber: string;
20862
21026
  apiSecret: string;
20863
21027
  } | undefined;
21028
+ line?: {
21029
+ channelId: string;
21030
+ channelSecret: string;
21031
+ } | undefined;
20864
21032
  lineRichMenuId?: string | null | undefined;
20865
21033
  messengerIntegrationType?: "own" | "business" | undefined;
20866
21034
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -21634,6 +21802,10 @@ export declare const mainFeedContract: {
21634
21802
  mobileNumber: string;
21635
21803
  apiSecret: string;
21636
21804
  } | undefined;
21805
+ line?: {
21806
+ channelId: string;
21807
+ channelSecret: string;
21808
+ } | undefined;
21637
21809
  lineRichMenuId?: string | null | undefined;
21638
21810
  messengerIntegrationType?: "own" | "business" | undefined;
21639
21811
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -22395,6 +22567,10 @@ export declare const mainFeedContract: {
22395
22567
  mobileNumber: string;
22396
22568
  apiSecret: string;
22397
22569
  } | undefined;
22570
+ line?: {
22571
+ channelId: string;
22572
+ channelSecret: string;
22573
+ } | undefined;
22398
22574
  lineRichMenuId?: string | null | undefined;
22399
22575
  messengerIntegrationType?: "own" | "business" | undefined;
22400
22576
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -23294,6 +23470,10 @@ export declare const mainFeedContract: {
23294
23470
  mobileNumber: string;
23295
23471
  apiSecret: string;
23296
23472
  } | undefined;
23473
+ line?: {
23474
+ channelId: string;
23475
+ channelSecret: string;
23476
+ } | undefined;
23297
23477
  lineRichMenuId?: string | null | undefined;
23298
23478
  messengerIntegrationType?: "own" | "business" | undefined;
23299
23479
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -24055,6 +24235,10 @@ export declare const mainFeedContract: {
24055
24235
  mobileNumber: string;
24056
24236
  apiSecret: string;
24057
24237
  } | undefined;
24238
+ line?: {
24239
+ channelId: string;
24240
+ channelSecret: string;
24241
+ } | undefined;
24058
24242
  lineRichMenuId?: string | null | undefined;
24059
24243
  messengerIntegrationType?: "own" | "business" | undefined;
24060
24244
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -24956,6 +25140,10 @@ export declare const mainFeedContract: {
24956
25140
  mobileNumber: string;
24957
25141
  apiSecret: string;
24958
25142
  } | undefined;
25143
+ line?: {
25144
+ channelId: string;
25145
+ channelSecret: string;
25146
+ } | undefined;
24959
25147
  lineRichMenuId?: string | null | undefined;
24960
25148
  messengerIntegrationType?: "own" | "business" | undefined;
24961
25149
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -25717,6 +25905,10 @@ export declare const mainFeedContract: {
25717
25905
  mobileNumber: string;
25718
25906
  apiSecret: string;
25719
25907
  } | undefined;
25908
+ line?: {
25909
+ channelId: string;
25910
+ channelSecret: string;
25911
+ } | undefined;
25720
25912
  lineRichMenuId?: string | null | undefined;
25721
25913
  messengerIntegrationType?: "own" | "business" | undefined;
25722
25914
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -26622,6 +26814,10 @@ export declare const mainFeedContract: {
26622
26814
  mobileNumber: string;
26623
26815
  apiSecret: string;
26624
26816
  } | undefined;
26817
+ line?: {
26818
+ channelId: string;
26819
+ channelSecret: string;
26820
+ } | undefined;
26625
26821
  lineRichMenuId?: string | null | undefined;
26626
26822
  messengerIntegrationType?: "own" | "business" | undefined;
26627
26823
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -27383,6 +27579,10 @@ export declare const mainFeedContract: {
27383
27579
  mobileNumber: string;
27384
27580
  apiSecret: string;
27385
27581
  } | undefined;
27582
+ line?: {
27583
+ channelId: string;
27584
+ channelSecret: string;
27585
+ } | undefined;
27386
27586
  lineRichMenuId?: string | null | undefined;
27387
27587
  messengerIntegrationType?: "own" | "business" | undefined;
27388
27588
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -29843,6 +30043,16 @@ export declare const mainChatRoomContract: {
29843
30043
  mobileNumber: string;
29844
30044
  apiSecret: string;
29845
30045
  }>>;
30046
+ line: z.ZodOptional<z.ZodObject<{
30047
+ channelId: z.ZodString;
30048
+ channelSecret: z.ZodString;
30049
+ }, "strip", z.ZodTypeAny, {
30050
+ channelId: string;
30051
+ channelSecret: string;
30052
+ }, {
30053
+ channelId: string;
30054
+ channelSecret: string;
30055
+ }>>;
29846
30056
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
29847
30057
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
29848
30058
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -29873,6 +30083,10 @@ export declare const mainChatRoomContract: {
29873
30083
  mobileNumber: string;
29874
30084
  apiSecret: string;
29875
30085
  } | undefined;
30086
+ line?: {
30087
+ channelId: string;
30088
+ channelSecret: string;
30089
+ } | undefined;
29876
30090
  lineRichMenuId?: string | null | undefined;
29877
30091
  messengerIntegrationType?: "own" | "business" | undefined;
29878
30092
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -29903,6 +30117,10 @@ export declare const mainChatRoomContract: {
29903
30117
  mobileNumber: string;
29904
30118
  apiSecret: string;
29905
30119
  } | undefined;
30120
+ line?: {
30121
+ channelId: string;
30122
+ channelSecret: string;
30123
+ } | undefined;
29906
30124
  lineRichMenuId?: string | null | undefined;
29907
30125
  messengerIntegrationType?: "own" | "business" | undefined;
29908
30126
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -30167,6 +30385,10 @@ export declare const mainChatRoomContract: {
30167
30385
  mobileNumber: string;
30168
30386
  apiSecret: string;
30169
30387
  } | undefined;
30388
+ line?: {
30389
+ channelId: string;
30390
+ channelSecret: string;
30391
+ } | undefined;
30170
30392
  lineRichMenuId?: string | null | undefined;
30171
30393
  messengerIntegrationType?: "own" | "business" | undefined;
30172
30394
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -30262,6 +30484,10 @@ export declare const mainChatRoomContract: {
30262
30484
  mobileNumber: string;
30263
30485
  apiSecret: string;
30264
30486
  } | undefined;
30487
+ line?: {
30488
+ channelId: string;
30489
+ channelSecret: string;
30490
+ } | undefined;
30265
30491
  lineRichMenuId?: string | null | undefined;
30266
30492
  messengerIntegrationType?: "own" | "business" | undefined;
30267
30493
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -30921,6 +31147,10 @@ export declare const mainChatRoomContract: {
30921
31147
  mobileNumber: string;
30922
31148
  apiSecret: string;
30923
31149
  } | undefined;
31150
+ line?: {
31151
+ channelId: string;
31152
+ channelSecret: string;
31153
+ } | undefined;
30924
31154
  lineRichMenuId?: string | null | undefined;
30925
31155
  messengerIntegrationType?: "own" | "business" | undefined;
30926
31156
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -31350,6 +31580,10 @@ export declare const mainChatRoomContract: {
31350
31580
  mobileNumber: string;
31351
31581
  apiSecret: string;
31352
31582
  } | undefined;
31583
+ line?: {
31584
+ channelId: string;
31585
+ channelSecret: string;
31586
+ } | undefined;
31353
31587
  lineRichMenuId?: string | null | undefined;
31354
31588
  messengerIntegrationType?: "own" | "business" | undefined;
31355
31589
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -31791,6 +32025,10 @@ export declare const mainChatRoomContract: {
31791
32025
  mobileNumber: string;
31792
32026
  apiSecret: string;
31793
32027
  } | undefined;
32028
+ line?: {
32029
+ channelId: string;
32030
+ channelSecret: string;
32031
+ } | undefined;
31794
32032
  lineRichMenuId?: string | null | undefined;
31795
32033
  messengerIntegrationType?: "own" | "business" | undefined;
31796
32034
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -32230,6 +32468,10 @@ export declare const mainChatRoomContract: {
32230
32468
  mobileNumber: string;
32231
32469
  apiSecret: string;
32232
32470
  } | undefined;
32471
+ line?: {
32472
+ channelId: string;
32473
+ channelSecret: string;
32474
+ } | undefined;
32233
32475
  lineRichMenuId?: string | null | undefined;
32234
32476
  messengerIntegrationType?: "own" | "business" | undefined;
32235
32477
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -34219,6 +34461,16 @@ export declare const mainChatRoomContract: {
34219
34461
  mobileNumber: string;
34220
34462
  apiSecret: string;
34221
34463
  }>>;
34464
+ line: z.ZodOptional<z.ZodObject<{
34465
+ channelId: z.ZodString;
34466
+ channelSecret: z.ZodString;
34467
+ }, "strip", z.ZodTypeAny, {
34468
+ channelId: string;
34469
+ channelSecret: string;
34470
+ }, {
34471
+ channelId: string;
34472
+ channelSecret: string;
34473
+ }>>;
34222
34474
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
34223
34475
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
34224
34476
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -34249,6 +34501,10 @@ export declare const mainChatRoomContract: {
34249
34501
  mobileNumber: string;
34250
34502
  apiSecret: string;
34251
34503
  } | undefined;
34504
+ line?: {
34505
+ channelId: string;
34506
+ channelSecret: string;
34507
+ } | undefined;
34252
34508
  lineRichMenuId?: string | null | undefined;
34253
34509
  messengerIntegrationType?: "own" | "business" | undefined;
34254
34510
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -34279,6 +34535,10 @@ export declare const mainChatRoomContract: {
34279
34535
  mobileNumber: string;
34280
34536
  apiSecret: string;
34281
34537
  } | undefined;
34538
+ line?: {
34539
+ channelId: string;
34540
+ channelSecret: string;
34541
+ } | undefined;
34282
34542
  lineRichMenuId?: string | null | undefined;
34283
34543
  messengerIntegrationType?: "own" | "business" | undefined;
34284
34544
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -34543,6 +34803,10 @@ export declare const mainChatRoomContract: {
34543
34803
  mobileNumber: string;
34544
34804
  apiSecret: string;
34545
34805
  } | undefined;
34806
+ line?: {
34807
+ channelId: string;
34808
+ channelSecret: string;
34809
+ } | undefined;
34546
34810
  lineRichMenuId?: string | null | undefined;
34547
34811
  messengerIntegrationType?: "own" | "business" | undefined;
34548
34812
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -34638,6 +34902,10 @@ export declare const mainChatRoomContract: {
34638
34902
  mobileNumber: string;
34639
34903
  apiSecret: string;
34640
34904
  } | undefined;
34905
+ line?: {
34906
+ channelId: string;
34907
+ channelSecret: string;
34908
+ } | undefined;
34641
34909
  lineRichMenuId?: string | null | undefined;
34642
34910
  messengerIntegrationType?: "own" | "business" | undefined;
34643
34911
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -35297,6 +35565,10 @@ export declare const mainChatRoomContract: {
35297
35565
  mobileNumber: string;
35298
35566
  apiSecret: string;
35299
35567
  } | undefined;
35568
+ line?: {
35569
+ channelId: string;
35570
+ channelSecret: string;
35571
+ } | undefined;
35300
35572
  lineRichMenuId?: string | null | undefined;
35301
35573
  messengerIntegrationType?: "own" | "business" | undefined;
35302
35574
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -35726,6 +35998,10 @@ export declare const mainChatRoomContract: {
35726
35998
  mobileNumber: string;
35727
35999
  apiSecret: string;
35728
36000
  } | undefined;
36001
+ line?: {
36002
+ channelId: string;
36003
+ channelSecret: string;
36004
+ } | undefined;
35729
36005
  lineRichMenuId?: string | null | undefined;
35730
36006
  messengerIntegrationType?: "own" | "business" | undefined;
35731
36007
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -36243,6 +36519,10 @@ export declare const mainChatRoomContract: {
36243
36519
  mobileNumber: string;
36244
36520
  apiSecret: string;
36245
36521
  } | undefined;
36522
+ line?: {
36523
+ channelId: string;
36524
+ channelSecret: string;
36525
+ } | undefined;
36246
36526
  lineRichMenuId?: string | null | undefined;
36247
36527
  messengerIntegrationType?: "own" | "business" | undefined;
36248
36528
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -36704,6 +36984,10 @@ export declare const mainChatRoomContract: {
36704
36984
  mobileNumber: string;
36705
36985
  apiSecret: string;
36706
36986
  } | undefined;
36987
+ line?: {
36988
+ channelId: string;
36989
+ channelSecret: string;
36990
+ } | undefined;
36707
36991
  lineRichMenuId?: string | null | undefined;
36708
36992
  messengerIntegrationType?: "own" | "business" | undefined;
36709
36993
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -37167,6 +37451,10 @@ export declare const mainChatRoomContract: {
37167
37451
  mobileNumber: string;
37168
37452
  apiSecret: string;
37169
37453
  } | undefined;
37454
+ line?: {
37455
+ channelId: string;
37456
+ channelSecret: string;
37457
+ } | undefined;
37170
37458
  lineRichMenuId?: string | null | undefined;
37171
37459
  messengerIntegrationType?: "own" | "business" | undefined;
37172
37460
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -37631,6 +37919,10 @@ export declare const mainChatRoomContract: {
37631
37919
  mobileNumber: string;
37632
37920
  apiSecret: string;
37633
37921
  } | undefined;
37922
+ line?: {
37923
+ channelId: string;
37924
+ channelSecret: string;
37925
+ } | undefined;
37634
37926
  lineRichMenuId?: string | null | undefined;
37635
37927
  messengerIntegrationType?: "own" | "business" | undefined;
37636
37928
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -38176,6 +38468,16 @@ export declare const mainChatRoomContract: {
38176
38468
  mobileNumber: string;
38177
38469
  apiSecret: string;
38178
38470
  }>>;
38471
+ line: z.ZodOptional<z.ZodObject<{
38472
+ channelId: z.ZodString;
38473
+ channelSecret: z.ZodString;
38474
+ }, "strip", z.ZodTypeAny, {
38475
+ channelId: string;
38476
+ channelSecret: string;
38477
+ }, {
38478
+ channelId: string;
38479
+ channelSecret: string;
38480
+ }>>;
38179
38481
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
38180
38482
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
38181
38483
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -38206,6 +38508,10 @@ export declare const mainChatRoomContract: {
38206
38508
  mobileNumber: string;
38207
38509
  apiSecret: string;
38208
38510
  } | undefined;
38511
+ line?: {
38512
+ channelId: string;
38513
+ channelSecret: string;
38514
+ } | undefined;
38209
38515
  lineRichMenuId?: string | null | undefined;
38210
38516
  messengerIntegrationType?: "own" | "business" | undefined;
38211
38517
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -38236,6 +38542,10 @@ export declare const mainChatRoomContract: {
38236
38542
  mobileNumber: string;
38237
38543
  apiSecret: string;
38238
38544
  } | undefined;
38545
+ line?: {
38546
+ channelId: string;
38547
+ channelSecret: string;
38548
+ } | undefined;
38239
38549
  lineRichMenuId?: string | null | undefined;
38240
38550
  messengerIntegrationType?: "own" | "business" | undefined;
38241
38551
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -38500,6 +38810,10 @@ export declare const mainChatRoomContract: {
38500
38810
  mobileNumber: string;
38501
38811
  apiSecret: string;
38502
38812
  } | undefined;
38813
+ line?: {
38814
+ channelId: string;
38815
+ channelSecret: string;
38816
+ } | undefined;
38503
38817
  lineRichMenuId?: string | null | undefined;
38504
38818
  messengerIntegrationType?: "own" | "business" | undefined;
38505
38819
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -38595,6 +38909,10 @@ export declare const mainChatRoomContract: {
38595
38909
  mobileNumber: string;
38596
38910
  apiSecret: string;
38597
38911
  } | undefined;
38912
+ line?: {
38913
+ channelId: string;
38914
+ channelSecret: string;
38915
+ } | undefined;
38598
38916
  lineRichMenuId?: string | null | undefined;
38599
38917
  messengerIntegrationType?: "own" | "business" | undefined;
38600
38918
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -40725,6 +41043,10 @@ export declare const mainChatRoomContract: {
40725
41043
  mobileNumber: string;
40726
41044
  apiSecret: string;
40727
41045
  } | undefined;
41046
+ line?: {
41047
+ channelId: string;
41048
+ channelSecret: string;
41049
+ } | undefined;
40728
41050
  lineRichMenuId?: string | null | undefined;
40729
41051
  messengerIntegrationType?: "own" | "business" | undefined;
40730
41052
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -41155,6 +41477,10 @@ export declare const mainChatRoomContract: {
41155
41477
  mobileNumber: string;
41156
41478
  apiSecret: string;
41157
41479
  } | undefined;
41480
+ line?: {
41481
+ channelId: string;
41482
+ channelSecret: string;
41483
+ } | undefined;
41158
41484
  lineRichMenuId?: string | null | undefined;
41159
41485
  messengerIntegrationType?: "own" | "business" | undefined;
41160
41486
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -41587,6 +41913,10 @@ export declare const mainChatRoomContract: {
41587
41913
  mobileNumber: string;
41588
41914
  apiSecret: string;
41589
41915
  } | undefined;
41916
+ line?: {
41917
+ channelId: string;
41918
+ channelSecret: string;
41919
+ } | undefined;
41590
41920
  lineRichMenuId?: string | null | undefined;
41591
41921
  messengerIntegrationType?: "own" | "business" | undefined;
41592
41922
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -42020,6 +42350,10 @@ export declare const mainChatRoomContract: {
42020
42350
  mobileNumber: string;
42021
42351
  apiSecret: string;
42022
42352
  } | undefined;
42353
+ line?: {
42354
+ channelId: string;
42355
+ channelSecret: string;
42356
+ } | undefined;
42023
42357
  lineRichMenuId?: string | null | undefined;
42024
42358
  messengerIntegrationType?: "own" | "business" | undefined;
42025
42359
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -42533,6 +42867,16 @@ export declare const mainChatRoomContract: {
42533
42867
  mobileNumber: string;
42534
42868
  apiSecret: string;
42535
42869
  }>>;
42870
+ line: z.ZodOptional<z.ZodObject<{
42871
+ channelId: z.ZodString;
42872
+ channelSecret: z.ZodString;
42873
+ }, "strip", z.ZodTypeAny, {
42874
+ channelId: string;
42875
+ channelSecret: string;
42876
+ }, {
42877
+ channelId: string;
42878
+ channelSecret: string;
42879
+ }>>;
42536
42880
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
42537
42881
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
42538
42882
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -42563,6 +42907,10 @@ export declare const mainChatRoomContract: {
42563
42907
  mobileNumber: string;
42564
42908
  apiSecret: string;
42565
42909
  } | undefined;
42910
+ line?: {
42911
+ channelId: string;
42912
+ channelSecret: string;
42913
+ } | undefined;
42566
42914
  lineRichMenuId?: string | null | undefined;
42567
42915
  messengerIntegrationType?: "own" | "business" | undefined;
42568
42916
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -42593,6 +42941,10 @@ export declare const mainChatRoomContract: {
42593
42941
  mobileNumber: string;
42594
42942
  apiSecret: string;
42595
42943
  } | undefined;
42944
+ line?: {
42945
+ channelId: string;
42946
+ channelSecret: string;
42947
+ } | undefined;
42596
42948
  lineRichMenuId?: string | null | undefined;
42597
42949
  messengerIntegrationType?: "own" | "business" | undefined;
42598
42950
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -42857,6 +43209,10 @@ export declare const mainChatRoomContract: {
42857
43209
  mobileNumber: string;
42858
43210
  apiSecret: string;
42859
43211
  } | undefined;
43212
+ line?: {
43213
+ channelId: string;
43214
+ channelSecret: string;
43215
+ } | undefined;
42860
43216
  lineRichMenuId?: string | null | undefined;
42861
43217
  messengerIntegrationType?: "own" | "business" | undefined;
42862
43218
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -42952,6 +43308,10 @@ export declare const mainChatRoomContract: {
42952
43308
  mobileNumber: string;
42953
43309
  apiSecret: string;
42954
43310
  } | undefined;
43311
+ line?: {
43312
+ channelId: string;
43313
+ channelSecret: string;
43314
+ } | undefined;
42955
43315
  lineRichMenuId?: string | null | undefined;
42956
43316
  messengerIntegrationType?: "own" | "business" | undefined;
42957
43317
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -45852,6 +46212,10 @@ export declare const mainChatRoomContract: {
45852
46212
  mobileNumber: string;
45853
46213
  apiSecret: string;
45854
46214
  } | undefined;
46215
+ line?: {
46216
+ channelId: string;
46217
+ channelSecret: string;
46218
+ } | undefined;
45855
46219
  lineRichMenuId?: string | null | undefined;
45856
46220
  messengerIntegrationType?: "own" | "business" | undefined;
45857
46221
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -46394,6 +46758,10 @@ export declare const mainChatRoomContract: {
46394
46758
  mobileNumber: string;
46395
46759
  apiSecret: string;
46396
46760
  } | undefined;
46761
+ line?: {
46762
+ channelId: string;
46763
+ channelSecret: string;
46764
+ } | undefined;
46397
46765
  lineRichMenuId?: string | null | undefined;
46398
46766
  messengerIntegrationType?: "own" | "business" | undefined;
46399
46767
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -46938,6 +47306,10 @@ export declare const mainChatRoomContract: {
46938
47306
  mobileNumber: string;
46939
47307
  apiSecret: string;
46940
47308
  } | undefined;
47309
+ line?: {
47310
+ channelId: string;
47311
+ channelSecret: string;
47312
+ } | undefined;
46941
47313
  lineRichMenuId?: string | null | undefined;
46942
47314
  messengerIntegrationType?: "own" | "business" | undefined;
46943
47315
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -47483,6 +47855,10 @@ export declare const mainChatRoomContract: {
47483
47855
  mobileNumber: string;
47484
47856
  apiSecret: string;
47485
47857
  } | undefined;
47858
+ line?: {
47859
+ channelId: string;
47860
+ channelSecret: string;
47861
+ } | undefined;
47486
47862
  lineRichMenuId?: string | null | undefined;
47487
47863
  messengerIntegrationType?: "own" | "business" | undefined;
47488
47864
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -48098,6 +48474,16 @@ export declare const mainChatRoomContract: {
48098
48474
  mobileNumber: string;
48099
48475
  apiSecret: string;
48100
48476
  }>>;
48477
+ line: z.ZodOptional<z.ZodObject<{
48478
+ channelId: z.ZodString;
48479
+ channelSecret: z.ZodString;
48480
+ }, "strip", z.ZodTypeAny, {
48481
+ channelId: string;
48482
+ channelSecret: string;
48483
+ }, {
48484
+ channelId: string;
48485
+ channelSecret: string;
48486
+ }>>;
48101
48487
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
48102
48488
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
48103
48489
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -48128,6 +48514,10 @@ export declare const mainChatRoomContract: {
48128
48514
  mobileNumber: string;
48129
48515
  apiSecret: string;
48130
48516
  } | undefined;
48517
+ line?: {
48518
+ channelId: string;
48519
+ channelSecret: string;
48520
+ } | undefined;
48131
48521
  lineRichMenuId?: string | null | undefined;
48132
48522
  messengerIntegrationType?: "own" | "business" | undefined;
48133
48523
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -48158,6 +48548,10 @@ export declare const mainChatRoomContract: {
48158
48548
  mobileNumber: string;
48159
48549
  apiSecret: string;
48160
48550
  } | undefined;
48551
+ line?: {
48552
+ channelId: string;
48553
+ channelSecret: string;
48554
+ } | undefined;
48161
48555
  lineRichMenuId?: string | null | undefined;
48162
48556
  messengerIntegrationType?: "own" | "business" | undefined;
48163
48557
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -48422,6 +48816,10 @@ export declare const mainChatRoomContract: {
48422
48816
  mobileNumber: string;
48423
48817
  apiSecret: string;
48424
48818
  } | undefined;
48819
+ line?: {
48820
+ channelId: string;
48821
+ channelSecret: string;
48822
+ } | undefined;
48425
48823
  lineRichMenuId?: string | null | undefined;
48426
48824
  messengerIntegrationType?: "own" | "business" | undefined;
48427
48825
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -48517,6 +48915,10 @@ export declare const mainChatRoomContract: {
48517
48915
  mobileNumber: string;
48518
48916
  apiSecret: string;
48519
48917
  } | undefined;
48918
+ line?: {
48919
+ channelId: string;
48920
+ channelSecret: string;
48921
+ } | undefined;
48520
48922
  lineRichMenuId?: string | null | undefined;
48521
48923
  messengerIntegrationType?: "own" | "business" | undefined;
48522
48924
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -50647,6 +51049,10 @@ export declare const mainChatRoomContract: {
50647
51049
  mobileNumber: string;
50648
51050
  apiSecret: string;
50649
51051
  } | undefined;
51052
+ line?: {
51053
+ channelId: string;
51054
+ channelSecret: string;
51055
+ } | undefined;
50650
51056
  lineRichMenuId?: string | null | undefined;
50651
51057
  messengerIntegrationType?: "own" | "business" | undefined;
50652
51058
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -51077,6 +51483,10 @@ export declare const mainChatRoomContract: {
51077
51483
  mobileNumber: string;
51078
51484
  apiSecret: string;
51079
51485
  } | undefined;
51486
+ line?: {
51487
+ channelId: string;
51488
+ channelSecret: string;
51489
+ } | undefined;
51080
51490
  lineRichMenuId?: string | null | undefined;
51081
51491
  messengerIntegrationType?: "own" | "business" | undefined;
51082
51492
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -51509,6 +51919,10 @@ export declare const mainChatRoomContract: {
51509
51919
  mobileNumber: string;
51510
51920
  apiSecret: string;
51511
51921
  } | undefined;
51922
+ line?: {
51923
+ channelId: string;
51924
+ channelSecret: string;
51925
+ } | undefined;
51512
51926
  lineRichMenuId?: string | null | undefined;
51513
51927
  messengerIntegrationType?: "own" | "business" | undefined;
51514
51928
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -51942,6 +52356,10 @@ export declare const mainChatRoomContract: {
51942
52356
  mobileNumber: string;
51943
52357
  apiSecret: string;
51944
52358
  } | undefined;
52359
+ line?: {
52360
+ channelId: string;
52361
+ channelSecret: string;
52362
+ } | undefined;
51945
52363
  lineRichMenuId?: string | null | undefined;
51946
52364
  messengerIntegrationType?: "own" | "business" | undefined;
51947
52365
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -52459,6 +52877,16 @@ export declare const mainChatRoomContract: {
52459
52877
  mobileNumber: string;
52460
52878
  apiSecret: string;
52461
52879
  }>>;
52880
+ line: z.ZodOptional<z.ZodObject<{
52881
+ channelId: z.ZodString;
52882
+ channelSecret: z.ZodString;
52883
+ }, "strip", z.ZodTypeAny, {
52884
+ channelId: string;
52885
+ channelSecret: string;
52886
+ }, {
52887
+ channelId: string;
52888
+ channelSecret: string;
52889
+ }>>;
52462
52890
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
52463
52891
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
52464
52892
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -52489,6 +52917,10 @@ export declare const mainChatRoomContract: {
52489
52917
  mobileNumber: string;
52490
52918
  apiSecret: string;
52491
52919
  } | undefined;
52920
+ line?: {
52921
+ channelId: string;
52922
+ channelSecret: string;
52923
+ } | undefined;
52492
52924
  lineRichMenuId?: string | null | undefined;
52493
52925
  messengerIntegrationType?: "own" | "business" | undefined;
52494
52926
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -52519,6 +52951,10 @@ export declare const mainChatRoomContract: {
52519
52951
  mobileNumber: string;
52520
52952
  apiSecret: string;
52521
52953
  } | undefined;
52954
+ line?: {
52955
+ channelId: string;
52956
+ channelSecret: string;
52957
+ } | undefined;
52522
52958
  lineRichMenuId?: string | null | undefined;
52523
52959
  messengerIntegrationType?: "own" | "business" | undefined;
52524
52960
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -52783,6 +53219,10 @@ export declare const mainChatRoomContract: {
52783
53219
  mobileNumber: string;
52784
53220
  apiSecret: string;
52785
53221
  } | undefined;
53222
+ line?: {
53223
+ channelId: string;
53224
+ channelSecret: string;
53225
+ } | undefined;
52786
53226
  lineRichMenuId?: string | null | undefined;
52787
53227
  messengerIntegrationType?: "own" | "business" | undefined;
52788
53228
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -52878,6 +53318,10 @@ export declare const mainChatRoomContract: {
52878
53318
  mobileNumber: string;
52879
53319
  apiSecret: string;
52880
53320
  } | undefined;
53321
+ line?: {
53322
+ channelId: string;
53323
+ channelSecret: string;
53324
+ } | undefined;
52881
53325
  lineRichMenuId?: string | null | undefined;
52882
53326
  messengerIntegrationType?: "own" | "business" | undefined;
52883
53327
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -55007,6 +55451,10 @@ export declare const mainChatRoomContract: {
55007
55451
  mobileNumber: string;
55008
55452
  apiSecret: string;
55009
55453
  } | undefined;
55454
+ line?: {
55455
+ channelId: string;
55456
+ channelSecret: string;
55457
+ } | undefined;
55010
55458
  lineRichMenuId?: string | null | undefined;
55011
55459
  messengerIntegrationType?: "own" | "business" | undefined;
55012
55460
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -55436,6 +55884,10 @@ export declare const mainChatRoomContract: {
55436
55884
  mobileNumber: string;
55437
55885
  apiSecret: string;
55438
55886
  } | undefined;
55887
+ line?: {
55888
+ channelId: string;
55889
+ channelSecret: string;
55890
+ } | undefined;
55439
55891
  lineRichMenuId?: string | null | undefined;
55440
55892
  messengerIntegrationType?: "own" | "business" | undefined;
55441
55893
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -55867,6 +56319,10 @@ export declare const mainChatRoomContract: {
55867
56319
  mobileNumber: string;
55868
56320
  apiSecret: string;
55869
56321
  } | undefined;
56322
+ line?: {
56323
+ channelId: string;
56324
+ channelSecret: string;
56325
+ } | undefined;
55870
56326
  lineRichMenuId?: string | null | undefined;
55871
56327
  messengerIntegrationType?: "own" | "business" | undefined;
55872
56328
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -56302,6 +56758,10 @@ export declare const mainChatRoomContract: {
56302
56758
  mobileNumber: string;
56303
56759
  apiSecret: string;
56304
56760
  } | undefined;
56761
+ line?: {
56762
+ channelId: string;
56763
+ channelSecret: string;
56764
+ } | undefined;
56305
56765
  lineRichMenuId?: string | null | undefined;
56306
56766
  messengerIntegrationType?: "own" | "business" | undefined;
56307
56767
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -59141,6 +59601,16 @@ export declare const mainChatContract: {
59141
59601
  mobileNumber: string;
59142
59602
  apiSecret: string;
59143
59603
  }>>;
59604
+ line: z.ZodOptional<z.ZodObject<{
59605
+ channelId: z.ZodString;
59606
+ channelSecret: z.ZodString;
59607
+ }, "strip", z.ZodTypeAny, {
59608
+ channelId: string;
59609
+ channelSecret: string;
59610
+ }, {
59611
+ channelId: string;
59612
+ channelSecret: string;
59613
+ }>>;
59144
59614
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
59145
59615
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
59146
59616
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -59171,6 +59641,10 @@ export declare const mainChatContract: {
59171
59641
  mobileNumber: string;
59172
59642
  apiSecret: string;
59173
59643
  } | undefined;
59644
+ line?: {
59645
+ channelId: string;
59646
+ channelSecret: string;
59647
+ } | undefined;
59174
59648
  lineRichMenuId?: string | null | undefined;
59175
59649
  messengerIntegrationType?: "own" | "business" | undefined;
59176
59650
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -59201,6 +59675,10 @@ export declare const mainChatContract: {
59201
59675
  mobileNumber: string;
59202
59676
  apiSecret: string;
59203
59677
  } | undefined;
59678
+ line?: {
59679
+ channelId: string;
59680
+ channelSecret: string;
59681
+ } | undefined;
59204
59682
  lineRichMenuId?: string | null | undefined;
59205
59683
  messengerIntegrationType?: "own" | "business" | undefined;
59206
59684
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -59465,6 +59943,10 @@ export declare const mainChatContract: {
59465
59943
  mobileNumber: string;
59466
59944
  apiSecret: string;
59467
59945
  } | undefined;
59946
+ line?: {
59947
+ channelId: string;
59948
+ channelSecret: string;
59949
+ } | undefined;
59468
59950
  lineRichMenuId?: string | null | undefined;
59469
59951
  messengerIntegrationType?: "own" | "business" | undefined;
59470
59952
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -59560,6 +60042,10 @@ export declare const mainChatContract: {
59560
60042
  mobileNumber: string;
59561
60043
  apiSecret: string;
59562
60044
  } | undefined;
60045
+ line?: {
60046
+ channelId: string;
60047
+ channelSecret: string;
60048
+ } | undefined;
59563
60049
  lineRichMenuId?: string | null | undefined;
59564
60050
  messengerIntegrationType?: "own" | "business" | undefined;
59565
60051
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -60219,6 +60705,10 @@ export declare const mainChatContract: {
60219
60705
  mobileNumber: string;
60220
60706
  apiSecret: string;
60221
60707
  } | undefined;
60708
+ line?: {
60709
+ channelId: string;
60710
+ channelSecret: string;
60711
+ } | undefined;
60222
60712
  lineRichMenuId?: string | null | undefined;
60223
60713
  messengerIntegrationType?: "own" | "business" | undefined;
60224
60714
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -60648,6 +61138,10 @@ export declare const mainChatContract: {
60648
61138
  mobileNumber: string;
60649
61139
  apiSecret: string;
60650
61140
  } | undefined;
61141
+ line?: {
61142
+ channelId: string;
61143
+ channelSecret: string;
61144
+ } | undefined;
60651
61145
  lineRichMenuId?: string | null | undefined;
60652
61146
  messengerIntegrationType?: "own" | "business" | undefined;
60653
61147
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -63828,6 +64322,16 @@ export declare const mainChatContract: {
63828
64322
  mobileNumber: string;
63829
64323
  apiSecret: string;
63830
64324
  }>>;
64325
+ line: z.ZodOptional<z.ZodObject<{
64326
+ channelId: z.ZodString;
64327
+ channelSecret: z.ZodString;
64328
+ }, "strip", z.ZodTypeAny, {
64329
+ channelId: string;
64330
+ channelSecret: string;
64331
+ }, {
64332
+ channelId: string;
64333
+ channelSecret: string;
64334
+ }>>;
63831
64335
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
63832
64336
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
63833
64337
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -63858,6 +64362,10 @@ export declare const mainChatContract: {
63858
64362
  mobileNumber: string;
63859
64363
  apiSecret: string;
63860
64364
  } | undefined;
64365
+ line?: {
64366
+ channelId: string;
64367
+ channelSecret: string;
64368
+ } | undefined;
63861
64369
  lineRichMenuId?: string | null | undefined;
63862
64370
  messengerIntegrationType?: "own" | "business" | undefined;
63863
64371
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -63888,6 +64396,10 @@ export declare const mainChatContract: {
63888
64396
  mobileNumber: string;
63889
64397
  apiSecret: string;
63890
64398
  } | undefined;
64399
+ line?: {
64400
+ channelId: string;
64401
+ channelSecret: string;
64402
+ } | undefined;
63891
64403
  lineRichMenuId?: string | null | undefined;
63892
64404
  messengerIntegrationType?: "own" | "business" | undefined;
63893
64405
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -64152,6 +64664,10 @@ export declare const mainChatContract: {
64152
64664
  mobileNumber: string;
64153
64665
  apiSecret: string;
64154
64666
  } | undefined;
64667
+ line?: {
64668
+ channelId: string;
64669
+ channelSecret: string;
64670
+ } | undefined;
64155
64671
  lineRichMenuId?: string | null | undefined;
64156
64672
  messengerIntegrationType?: "own" | "business" | undefined;
64157
64673
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -64247,6 +64763,10 @@ export declare const mainChatContract: {
64247
64763
  mobileNumber: string;
64248
64764
  apiSecret: string;
64249
64765
  } | undefined;
64766
+ line?: {
64767
+ channelId: string;
64768
+ channelSecret: string;
64769
+ } | undefined;
64250
64770
  lineRichMenuId?: string | null | undefined;
64251
64771
  messengerIntegrationType?: "own" | "business" | undefined;
64252
64772
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -64906,6 +65426,10 @@ export declare const mainChatContract: {
64906
65426
  mobileNumber: string;
64907
65427
  apiSecret: string;
64908
65428
  } | undefined;
65429
+ line?: {
65430
+ channelId: string;
65431
+ channelSecret: string;
65432
+ } | undefined;
64909
65433
  lineRichMenuId?: string | null | undefined;
64910
65434
  messengerIntegrationType?: "own" | "business" | undefined;
64911
65435
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -65335,6 +65859,10 @@ export declare const mainChatContract: {
65335
65859
  mobileNumber: string;
65336
65860
  apiSecret: string;
65337
65861
  } | undefined;
65862
+ line?: {
65863
+ channelId: string;
65864
+ channelSecret: string;
65865
+ } | undefined;
65338
65866
  lineRichMenuId?: string | null | undefined;
65339
65867
  messengerIntegrationType?: "own" | "business" | undefined;
65340
65868
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -67537,6 +68065,10 @@ export declare const mainChatContract: {
67537
68065
  mobileNumber: string;
67538
68066
  apiSecret: string;
67539
68067
  } | undefined;
68068
+ line?: {
68069
+ channelId: string;
68070
+ channelSecret: string;
68071
+ } | undefined;
67540
68072
  lineRichMenuId?: string | null | undefined;
67541
68073
  messengerIntegrationType?: "own" | "business" | undefined;
67542
68074
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -68303,6 +68835,10 @@ export declare const mainChatContract: {
68303
68835
  mobileNumber: string;
68304
68836
  apiSecret: string;
68305
68837
  } | undefined;
68838
+ line?: {
68839
+ channelId: string;
68840
+ channelSecret: string;
68841
+ } | undefined;
68306
68842
  lineRichMenuId?: string | null | undefined;
68307
68843
  messengerIntegrationType?: "own" | "business" | undefined;
68308
68844
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -69070,6 +69606,10 @@ export declare const mainChatContract: {
69070
69606
  mobileNumber: string;
69071
69607
  apiSecret: string;
69072
69608
  } | undefined;
69609
+ line?: {
69610
+ channelId: string;
69611
+ channelSecret: string;
69612
+ } | undefined;
69073
69613
  lineRichMenuId?: string | null | undefined;
69074
69614
  messengerIntegrationType?: "own" | "business" | undefined;
69075
69615
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -69836,6 +70376,10 @@ export declare const mainChatContract: {
69836
70376
  mobileNumber: string;
69837
70377
  apiSecret: string;
69838
70378
  } | undefined;
70379
+ line?: {
70380
+ channelId: string;
70381
+ channelSecret: string;
70382
+ } | undefined;
69839
70383
  lineRichMenuId?: string | null | undefined;
69840
70384
  messengerIntegrationType?: "own" | "business" | undefined;
69841
70385
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -70603,6 +71147,10 @@ export declare const mainChatContract: {
70603
71147
  mobileNumber: string;
70604
71148
  apiSecret: string;
70605
71149
  } | undefined;
71150
+ line?: {
71151
+ channelId: string;
71152
+ channelSecret: string;
71153
+ } | undefined;
70606
71154
  lineRichMenuId?: string | null | undefined;
70607
71155
  messengerIntegrationType?: "own" | "business" | undefined;
70608
71156
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -71369,6 +71917,10 @@ export declare const mainChatContract: {
71369
71917
  mobileNumber: string;
71370
71918
  apiSecret: string;
71371
71919
  } | undefined;
71920
+ line?: {
71921
+ channelId: string;
71922
+ channelSecret: string;
71923
+ } | undefined;
71372
71924
  lineRichMenuId?: string | null | undefined;
71373
71925
  messengerIntegrationType?: "own" | "business" | undefined;
71374
71926
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -72138,6 +72690,10 @@ export declare const mainChatContract: {
72138
72690
  mobileNumber: string;
72139
72691
  apiSecret: string;
72140
72692
  } | undefined;
72693
+ line?: {
72694
+ channelId: string;
72695
+ channelSecret: string;
72696
+ } | undefined;
72141
72697
  lineRichMenuId?: string | null | undefined;
72142
72698
  messengerIntegrationType?: "own" | "business" | undefined;
72143
72699
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -72904,6 +73460,10 @@ export declare const mainChatContract: {
72904
73460
  mobileNumber: string;
72905
73461
  apiSecret: string;
72906
73462
  } | undefined;
73463
+ line?: {
73464
+ channelId: string;
73465
+ channelSecret: string;
73466
+ } | undefined;
72907
73467
  lineRichMenuId?: string | null | undefined;
72908
73468
  messengerIntegrationType?: "own" | "business" | undefined;
72909
73469
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -73674,6 +74234,10 @@ export declare const mainChatContract: {
73674
74234
  mobileNumber: string;
73675
74235
  apiSecret: string;
73676
74236
  } | undefined;
74237
+ line?: {
74238
+ channelId: string;
74239
+ channelSecret: string;
74240
+ } | undefined;
73677
74241
  lineRichMenuId?: string | null | undefined;
73678
74242
  messengerIntegrationType?: "own" | "business" | undefined;
73679
74243
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -74440,6 +75004,10 @@ export declare const mainChatContract: {
74440
75004
  mobileNumber: string;
74441
75005
  apiSecret: string;
74442
75006
  } | undefined;
75007
+ line?: {
75008
+ channelId: string;
75009
+ channelSecret: string;
75010
+ } | undefined;
74443
75011
  lineRichMenuId?: string | null | undefined;
74444
75012
  messengerIntegrationType?: "own" | "business" | undefined;
74445
75013
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -77239,6 +77807,16 @@ export declare const mainChatContract: {
77239
77807
  mobileNumber: string;
77240
77808
  apiSecret: string;
77241
77809
  }>>;
77810
+ line: z.ZodOptional<z.ZodObject<{
77811
+ channelId: z.ZodString;
77812
+ channelSecret: z.ZodString;
77813
+ }, "strip", z.ZodTypeAny, {
77814
+ channelId: string;
77815
+ channelSecret: string;
77816
+ }, {
77817
+ channelId: string;
77818
+ channelSecret: string;
77819
+ }>>;
77242
77820
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
77243
77821
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
77244
77822
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -77269,6 +77847,10 @@ export declare const mainChatContract: {
77269
77847
  mobileNumber: string;
77270
77848
  apiSecret: string;
77271
77849
  } | undefined;
77850
+ line?: {
77851
+ channelId: string;
77852
+ channelSecret: string;
77853
+ } | undefined;
77272
77854
  lineRichMenuId?: string | null | undefined;
77273
77855
  messengerIntegrationType?: "own" | "business" | undefined;
77274
77856
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -77299,6 +77881,10 @@ export declare const mainChatContract: {
77299
77881
  mobileNumber: string;
77300
77882
  apiSecret: string;
77301
77883
  } | undefined;
77884
+ line?: {
77885
+ channelId: string;
77886
+ channelSecret: string;
77887
+ } | undefined;
77302
77888
  lineRichMenuId?: string | null | undefined;
77303
77889
  messengerIntegrationType?: "own" | "business" | undefined;
77304
77890
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -77563,6 +78149,10 @@ export declare const mainChatContract: {
77563
78149
  mobileNumber: string;
77564
78150
  apiSecret: string;
77565
78151
  } | undefined;
78152
+ line?: {
78153
+ channelId: string;
78154
+ channelSecret: string;
78155
+ } | undefined;
77566
78156
  lineRichMenuId?: string | null | undefined;
77567
78157
  messengerIntegrationType?: "own" | "business" | undefined;
77568
78158
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -77658,6 +78248,10 @@ export declare const mainChatContract: {
77658
78248
  mobileNumber: string;
77659
78249
  apiSecret: string;
77660
78250
  } | undefined;
78251
+ line?: {
78252
+ channelId: string;
78253
+ channelSecret: string;
78254
+ } | undefined;
77661
78255
  lineRichMenuId?: string | null | undefined;
77662
78256
  messengerIntegrationType?: "own" | "business" | undefined;
77663
78257
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -78317,6 +78911,10 @@ export declare const mainChatContract: {
78317
78911
  mobileNumber: string;
78318
78912
  apiSecret: string;
78319
78913
  } | undefined;
78914
+ line?: {
78915
+ channelId: string;
78916
+ channelSecret: string;
78917
+ } | undefined;
78320
78918
  lineRichMenuId?: string | null | undefined;
78321
78919
  messengerIntegrationType?: "own" | "business" | undefined;
78322
78920
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -78746,6 +79344,10 @@ export declare const mainChatContract: {
78746
79344
  mobileNumber: string;
78747
79345
  apiSecret: string;
78748
79346
  } | undefined;
79347
+ line?: {
79348
+ channelId: string;
79349
+ channelSecret: string;
79350
+ } | undefined;
78749
79351
  lineRichMenuId?: string | null | undefined;
78750
79352
  messengerIntegrationType?: "own" | "business" | undefined;
78751
79353
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -80452,6 +81054,16 @@ export declare const mainChatContract: {
80452
81054
  mobileNumber: string;
80453
81055
  apiSecret: string;
80454
81056
  }>>;
81057
+ line: z.ZodOptional<z.ZodObject<{
81058
+ channelId: z.ZodString;
81059
+ channelSecret: z.ZodString;
81060
+ }, "strip", z.ZodTypeAny, {
81061
+ channelId: string;
81062
+ channelSecret: string;
81063
+ }, {
81064
+ channelId: string;
81065
+ channelSecret: string;
81066
+ }>>;
80455
81067
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
80456
81068
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
80457
81069
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -80482,6 +81094,10 @@ export declare const mainChatContract: {
80482
81094
  mobileNumber: string;
80483
81095
  apiSecret: string;
80484
81096
  } | undefined;
81097
+ line?: {
81098
+ channelId: string;
81099
+ channelSecret: string;
81100
+ } | undefined;
80485
81101
  lineRichMenuId?: string | null | undefined;
80486
81102
  messengerIntegrationType?: "own" | "business" | undefined;
80487
81103
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -80512,6 +81128,10 @@ export declare const mainChatContract: {
80512
81128
  mobileNumber: string;
80513
81129
  apiSecret: string;
80514
81130
  } | undefined;
81131
+ line?: {
81132
+ channelId: string;
81133
+ channelSecret: string;
81134
+ } | undefined;
80515
81135
  lineRichMenuId?: string | null | undefined;
80516
81136
  messengerIntegrationType?: "own" | "business" | undefined;
80517
81137
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -80776,6 +81396,10 @@ export declare const mainChatContract: {
80776
81396
  mobileNumber: string;
80777
81397
  apiSecret: string;
80778
81398
  } | undefined;
81399
+ line?: {
81400
+ channelId: string;
81401
+ channelSecret: string;
81402
+ } | undefined;
80779
81403
  lineRichMenuId?: string | null | undefined;
80780
81404
  messengerIntegrationType?: "own" | "business" | undefined;
80781
81405
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -80871,6 +81495,10 @@ export declare const mainChatContract: {
80871
81495
  mobileNumber: string;
80872
81496
  apiSecret: string;
80873
81497
  } | undefined;
81498
+ line?: {
81499
+ channelId: string;
81500
+ channelSecret: string;
81501
+ } | undefined;
80874
81502
  lineRichMenuId?: string | null | undefined;
80875
81503
  messengerIntegrationType?: "own" | "business" | undefined;
80876
81504
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -82223,6 +82851,10 @@ export declare const mainChatContract: {
82223
82851
  mobileNumber: string;
82224
82852
  apiSecret: string;
82225
82853
  } | undefined;
82854
+ line?: {
82855
+ channelId: string;
82856
+ channelSecret: string;
82857
+ } | undefined;
82226
82858
  lineRichMenuId?: string | null | undefined;
82227
82859
  messengerIntegrationType?: "own" | "business" | undefined;
82228
82860
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -82505,6 +83137,10 @@ export declare const mainChatContract: {
82505
83137
  mobileNumber: string;
82506
83138
  apiSecret: string;
82507
83139
  } | undefined;
83140
+ line?: {
83141
+ channelId: string;
83142
+ channelSecret: string;
83143
+ } | undefined;
82508
83144
  lineRichMenuId?: string | null | undefined;
82509
83145
  messengerIntegrationType?: "own" | "business" | undefined;
82510
83146
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -82897,6 +83533,10 @@ export declare const mainChatContract: {
82897
83533
  mobileNumber: string;
82898
83534
  apiSecret: string;
82899
83535
  } | undefined;
83536
+ line?: {
83537
+ channelId: string;
83538
+ channelSecret: string;
83539
+ } | undefined;
82900
83540
  lineRichMenuId?: string | null | undefined;
82901
83541
  messengerIntegrationType?: "own" | "business" | undefined;
82902
83542
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -83554,6 +84194,10 @@ export declare const mainChatContract: {
83554
84194
  mobileNumber: string;
83555
84195
  apiSecret: string;
83556
84196
  } | undefined;
84197
+ line?: {
84198
+ channelId: string;
84199
+ channelSecret: string;
84200
+ } | undefined;
83557
84201
  lineRichMenuId?: string | null | undefined;
83558
84202
  messengerIntegrationType?: "own" | "business" | undefined;
83559
84203
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -83949,6 +84593,10 @@ export declare const mainChatContract: {
83949
84593
  mobileNumber: string;
83950
84594
  apiSecret: string;
83951
84595
  } | undefined;
84596
+ line?: {
84597
+ channelId: string;
84598
+ channelSecret: string;
84599
+ } | undefined;
83952
84600
  lineRichMenuId?: string | null | undefined;
83953
84601
  messengerIntegrationType?: "own" | "business" | undefined;
83954
84602
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -84606,6 +85254,10 @@ export declare const mainChatContract: {
84606
85254
  mobileNumber: string;
84607
85255
  apiSecret: string;
84608
85256
  } | undefined;
85257
+ line?: {
85258
+ channelId: string;
85259
+ channelSecret: string;
85260
+ } | undefined;
84609
85261
  lineRichMenuId?: string | null | undefined;
84610
85262
  messengerIntegrationType?: "own" | "business" | undefined;
84611
85263
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -85003,6 +85655,10 @@ export declare const mainChatContract: {
85003
85655
  mobileNumber: string;
85004
85656
  apiSecret: string;
85005
85657
  } | undefined;
85658
+ line?: {
85659
+ channelId: string;
85660
+ channelSecret: string;
85661
+ } | undefined;
85006
85662
  lineRichMenuId?: string | null | undefined;
85007
85663
  messengerIntegrationType?: "own" | "business" | undefined;
85008
85664
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -85660,6 +86316,10 @@ export declare const mainChatContract: {
85660
86316
  mobileNumber: string;
85661
86317
  apiSecret: string;
85662
86318
  } | undefined;
86319
+ line?: {
86320
+ channelId: string;
86321
+ channelSecret: string;
86322
+ } | undefined;
85663
86323
  lineRichMenuId?: string | null | undefined;
85664
86324
  messengerIntegrationType?: "own" | "business" | undefined;
85665
86325
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -86061,6 +86721,10 @@ export declare const mainChatContract: {
86061
86721
  mobileNumber: string;
86062
86722
  apiSecret: string;
86063
86723
  } | undefined;
86724
+ line?: {
86725
+ channelId: string;
86726
+ channelSecret: string;
86727
+ } | undefined;
86064
86728
  lineRichMenuId?: string | null | undefined;
86065
86729
  messengerIntegrationType?: "own" | "business" | undefined;
86066
86730
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -86718,6 +87382,10 @@ export declare const mainChatContract: {
86718
87382
  mobileNumber: string;
86719
87383
  apiSecret: string;
86720
87384
  } | undefined;
87385
+ line?: {
87386
+ channelId: string;
87387
+ channelSecret: string;
87388
+ } | undefined;
86721
87389
  lineRichMenuId?: string | null | undefined;
86722
87390
  messengerIntegrationType?: "own" | "business" | undefined;
86723
87391
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -88554,6 +89222,16 @@ export declare const mainChatContract: {
88554
89222
  mobileNumber: string;
88555
89223
  apiSecret: string;
88556
89224
  }>>;
89225
+ line: z.ZodOptional<z.ZodObject<{
89226
+ channelId: z.ZodString;
89227
+ channelSecret: z.ZodString;
89228
+ }, "strip", z.ZodTypeAny, {
89229
+ channelId: string;
89230
+ channelSecret: string;
89231
+ }, {
89232
+ channelId: string;
89233
+ channelSecret: string;
89234
+ }>>;
88557
89235
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
88558
89236
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
88559
89237
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -88584,6 +89262,10 @@ export declare const mainChatContract: {
88584
89262
  mobileNumber: string;
88585
89263
  apiSecret: string;
88586
89264
  } | undefined;
89265
+ line?: {
89266
+ channelId: string;
89267
+ channelSecret: string;
89268
+ } | undefined;
88587
89269
  lineRichMenuId?: string | null | undefined;
88588
89270
  messengerIntegrationType?: "own" | "business" | undefined;
88589
89271
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -88614,6 +89296,10 @@ export declare const mainChatContract: {
88614
89296
  mobileNumber: string;
88615
89297
  apiSecret: string;
88616
89298
  } | undefined;
89299
+ line?: {
89300
+ channelId: string;
89301
+ channelSecret: string;
89302
+ } | undefined;
88617
89303
  lineRichMenuId?: string | null | undefined;
88618
89304
  messengerIntegrationType?: "own" | "business" | undefined;
88619
89305
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -88878,6 +89564,10 @@ export declare const mainChatContract: {
88878
89564
  mobileNumber: string;
88879
89565
  apiSecret: string;
88880
89566
  } | undefined;
89567
+ line?: {
89568
+ channelId: string;
89569
+ channelSecret: string;
89570
+ } | undefined;
88881
89571
  lineRichMenuId?: string | null | undefined;
88882
89572
  messengerIntegrationType?: "own" | "business" | undefined;
88883
89573
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -88973,6 +89663,10 @@ export declare const mainChatContract: {
88973
89663
  mobileNumber: string;
88974
89664
  apiSecret: string;
88975
89665
  } | undefined;
89666
+ line?: {
89667
+ channelId: string;
89668
+ channelSecret: string;
89669
+ } | undefined;
88976
89670
  lineRichMenuId?: string | null | undefined;
88977
89671
  messengerIntegrationType?: "own" | "business" | undefined;
88978
89672
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -89632,6 +90326,10 @@ export declare const mainChatContract: {
89632
90326
  mobileNumber: string;
89633
90327
  apiSecret: string;
89634
90328
  } | undefined;
90329
+ line?: {
90330
+ channelId: string;
90331
+ channelSecret: string;
90332
+ } | undefined;
89635
90333
  lineRichMenuId?: string | null | undefined;
89636
90334
  messengerIntegrationType?: "own" | "business" | undefined;
89637
90335
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -90061,6 +90759,10 @@ export declare const mainChatContract: {
90061
90759
  mobileNumber: string;
90062
90760
  apiSecret: string;
90063
90761
  } | undefined;
90762
+ line?: {
90763
+ channelId: string;
90764
+ channelSecret: string;
90765
+ } | undefined;
90064
90766
  lineRichMenuId?: string | null | undefined;
90065
90767
  messengerIntegrationType?: "own" | "business" | undefined;
90066
90768
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -90492,6 +91194,10 @@ export declare const mainChatContract: {
90492
91194
  mobileNumber: string;
90493
91195
  apiSecret: string;
90494
91196
  } | undefined;
91197
+ line?: {
91198
+ channelId: string;
91199
+ channelSecret: string;
91200
+ } | undefined;
90495
91201
  lineRichMenuId?: string | null | undefined;
90496
91202
  messengerIntegrationType?: "own" | "business" | undefined;
90497
91203
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -90924,6 +91630,10 @@ export declare const mainChatContract: {
90924
91630
  mobileNumber: string;
90925
91631
  apiSecret: string;
90926
91632
  } | undefined;
91633
+ line?: {
91634
+ channelId: string;
91635
+ channelSecret: string;
91636
+ } | undefined;
90927
91637
  lineRichMenuId?: string | null | undefined;
90928
91638
  messengerIntegrationType?: "own" | "business" | undefined;
90929
91639
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -92911,6 +93621,16 @@ export declare const mainChatContract: {
92911
93621
  mobileNumber: string;
92912
93622
  apiSecret: string;
92913
93623
  }>>;
93624
+ line: z.ZodOptional<z.ZodObject<{
93625
+ channelId: z.ZodString;
93626
+ channelSecret: z.ZodString;
93627
+ }, "strip", z.ZodTypeAny, {
93628
+ channelId: string;
93629
+ channelSecret: string;
93630
+ }, {
93631
+ channelId: string;
93632
+ channelSecret: string;
93633
+ }>>;
92914
93634
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
92915
93635
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
92916
93636
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -92941,6 +93661,10 @@ export declare const mainChatContract: {
92941
93661
  mobileNumber: string;
92942
93662
  apiSecret: string;
92943
93663
  } | undefined;
93664
+ line?: {
93665
+ channelId: string;
93666
+ channelSecret: string;
93667
+ } | undefined;
92944
93668
  lineRichMenuId?: string | null | undefined;
92945
93669
  messengerIntegrationType?: "own" | "business" | undefined;
92946
93670
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -92971,6 +93695,10 @@ export declare const mainChatContract: {
92971
93695
  mobileNumber: string;
92972
93696
  apiSecret: string;
92973
93697
  } | undefined;
93698
+ line?: {
93699
+ channelId: string;
93700
+ channelSecret: string;
93701
+ } | undefined;
92974
93702
  lineRichMenuId?: string | null | undefined;
92975
93703
  messengerIntegrationType?: "own" | "business" | undefined;
92976
93704
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -93235,6 +93963,10 @@ export declare const mainChatContract: {
93235
93963
  mobileNumber: string;
93236
93964
  apiSecret: string;
93237
93965
  } | undefined;
93966
+ line?: {
93967
+ channelId: string;
93968
+ channelSecret: string;
93969
+ } | undefined;
93238
93970
  lineRichMenuId?: string | null | undefined;
93239
93971
  messengerIntegrationType?: "own" | "business" | undefined;
93240
93972
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -93330,6 +94062,10 @@ export declare const mainChatContract: {
93330
94062
  mobileNumber: string;
93331
94063
  apiSecret: string;
93332
94064
  } | undefined;
94065
+ line?: {
94066
+ channelId: string;
94067
+ channelSecret: string;
94068
+ } | undefined;
93333
94069
  lineRichMenuId?: string | null | undefined;
93334
94070
  messengerIntegrationType?: "own" | "business" | undefined;
93335
94071
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -93989,6 +94725,10 @@ export declare const mainChatContract: {
93989
94725
  mobileNumber: string;
93990
94726
  apiSecret: string;
93991
94727
  } | undefined;
94728
+ line?: {
94729
+ channelId: string;
94730
+ channelSecret: string;
94731
+ } | undefined;
93992
94732
  lineRichMenuId?: string | null | undefined;
93993
94733
  messengerIntegrationType?: "own" | "business" | undefined;
93994
94734
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -94418,6 +95158,10 @@ export declare const mainChatContract: {
94418
95158
  mobileNumber: string;
94419
95159
  apiSecret: string;
94420
95160
  } | undefined;
95161
+ line?: {
95162
+ channelId: string;
95163
+ channelSecret: string;
95164
+ } | undefined;
94421
95165
  lineRichMenuId?: string | null | undefined;
94422
95166
  messengerIntegrationType?: "own" | "business" | undefined;
94423
95167
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -94849,6 +95593,10 @@ export declare const mainChatContract: {
94849
95593
  mobileNumber: string;
94850
95594
  apiSecret: string;
94851
95595
  } | undefined;
95596
+ line?: {
95597
+ channelId: string;
95598
+ channelSecret: string;
95599
+ } | undefined;
94852
95600
  lineRichMenuId?: string | null | undefined;
94853
95601
  messengerIntegrationType?: "own" | "business" | undefined;
94854
95602
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -95281,6 +96029,10 @@ export declare const mainChatContract: {
95281
96029
  mobileNumber: string;
95282
96030
  apiSecret: string;
95283
96031
  } | undefined;
96032
+ line?: {
96033
+ channelId: string;
96034
+ channelSecret: string;
96035
+ } | undefined;
95284
96036
  lineRichMenuId?: string | null | undefined;
95285
96037
  messengerIntegrationType?: "own" | "business" | undefined;
95286
96038
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -98329,6 +99081,16 @@ export declare const mainChatContract: {
98329
99081
  mobileNumber: string;
98330
99082
  apiSecret: string;
98331
99083
  }>>;
99084
+ line: z.ZodOptional<z.ZodObject<{
99085
+ channelId: z.ZodString;
99086
+ channelSecret: z.ZodString;
99087
+ }, "strip", z.ZodTypeAny, {
99088
+ channelId: string;
99089
+ channelSecret: string;
99090
+ }, {
99091
+ channelId: string;
99092
+ channelSecret: string;
99093
+ }>>;
98332
99094
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
98333
99095
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
98334
99096
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -98359,6 +99121,10 @@ export declare const mainChatContract: {
98359
99121
  mobileNumber: string;
98360
99122
  apiSecret: string;
98361
99123
  } | undefined;
99124
+ line?: {
99125
+ channelId: string;
99126
+ channelSecret: string;
99127
+ } | undefined;
98362
99128
  lineRichMenuId?: string | null | undefined;
98363
99129
  messengerIntegrationType?: "own" | "business" | undefined;
98364
99130
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -98389,6 +99155,10 @@ export declare const mainChatContract: {
98389
99155
  mobileNumber: string;
98390
99156
  apiSecret: string;
98391
99157
  } | undefined;
99158
+ line?: {
99159
+ channelId: string;
99160
+ channelSecret: string;
99161
+ } | undefined;
98392
99162
  lineRichMenuId?: string | null | undefined;
98393
99163
  messengerIntegrationType?: "own" | "business" | undefined;
98394
99164
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -98653,6 +99423,10 @@ export declare const mainChatContract: {
98653
99423
  mobileNumber: string;
98654
99424
  apiSecret: string;
98655
99425
  } | undefined;
99426
+ line?: {
99427
+ channelId: string;
99428
+ channelSecret: string;
99429
+ } | undefined;
98656
99430
  lineRichMenuId?: string | null | undefined;
98657
99431
  messengerIntegrationType?: "own" | "business" | undefined;
98658
99432
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -98748,6 +99522,10 @@ export declare const mainChatContract: {
98748
99522
  mobileNumber: string;
98749
99523
  apiSecret: string;
98750
99524
  } | undefined;
99525
+ line?: {
99526
+ channelId: string;
99527
+ channelSecret: string;
99528
+ } | undefined;
98751
99529
  lineRichMenuId?: string | null | undefined;
98752
99530
  messengerIntegrationType?: "own" | "business" | undefined;
98753
99531
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -99407,6 +100185,10 @@ export declare const mainChatContract: {
99407
100185
  mobileNumber: string;
99408
100186
  apiSecret: string;
99409
100187
  } | undefined;
100188
+ line?: {
100189
+ channelId: string;
100190
+ channelSecret: string;
100191
+ } | undefined;
99410
100192
  lineRichMenuId?: string | null | undefined;
99411
100193
  messengerIntegrationType?: "own" | "business" | undefined;
99412
100194
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -99836,6 +100618,10 @@ export declare const mainChatContract: {
99836
100618
  mobileNumber: string;
99837
100619
  apiSecret: string;
99838
100620
  } | undefined;
100621
+ line?: {
100622
+ channelId: string;
100623
+ channelSecret: string;
100624
+ } | undefined;
99839
100625
  lineRichMenuId?: string | null | undefined;
99840
100626
  messengerIntegrationType?: "own" | "business" | undefined;
99841
100627
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -100267,6 +101053,10 @@ export declare const mainChatContract: {
100267
101053
  mobileNumber: string;
100268
101054
  apiSecret: string;
100269
101055
  } | undefined;
101056
+ line?: {
101057
+ channelId: string;
101058
+ channelSecret: string;
101059
+ } | undefined;
100270
101060
  lineRichMenuId?: string | null | undefined;
100271
101061
  messengerIntegrationType?: "own" | "business" | undefined;
100272
101062
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -100699,6 +101489,10 @@ export declare const mainChatContract: {
100699
101489
  mobileNumber: string;
100700
101490
  apiSecret: string;
100701
101491
  } | undefined;
101492
+ line?: {
101493
+ channelId: string;
101494
+ channelSecret: string;
101495
+ } | undefined;
100702
101496
  lineRichMenuId?: string | null | undefined;
100703
101497
  messengerIntegrationType?: "own" | "business" | undefined;
100704
101498
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -102713,6 +103507,16 @@ export declare const initiateMessageContract: {
102713
103507
  mobileNumber: string;
102714
103508
  apiSecret: string;
102715
103509
  }>>;
103510
+ line: z.ZodOptional<z.ZodObject<{
103511
+ channelId: z.ZodString;
103512
+ channelSecret: z.ZodString;
103513
+ }, "strip", z.ZodTypeAny, {
103514
+ channelId: string;
103515
+ channelSecret: string;
103516
+ }, {
103517
+ channelId: string;
103518
+ channelSecret: string;
103519
+ }>>;
102716
103520
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
102717
103521
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
102718
103522
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -102743,6 +103547,10 @@ export declare const initiateMessageContract: {
102743
103547
  mobileNumber: string;
102744
103548
  apiSecret: string;
102745
103549
  } | undefined;
103550
+ line?: {
103551
+ channelId: string;
103552
+ channelSecret: string;
103553
+ } | undefined;
102746
103554
  lineRichMenuId?: string | null | undefined;
102747
103555
  messengerIntegrationType?: "own" | "business" | undefined;
102748
103556
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -102773,6 +103581,10 @@ export declare const initiateMessageContract: {
102773
103581
  mobileNumber: string;
102774
103582
  apiSecret: string;
102775
103583
  } | undefined;
103584
+ line?: {
103585
+ channelId: string;
103586
+ channelSecret: string;
103587
+ } | undefined;
102776
103588
  lineRichMenuId?: string | null | undefined;
102777
103589
  messengerIntegrationType?: "own" | "business" | undefined;
102778
103590
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -103037,6 +103849,10 @@ export declare const initiateMessageContract: {
103037
103849
  mobileNumber: string;
103038
103850
  apiSecret: string;
103039
103851
  } | undefined;
103852
+ line?: {
103853
+ channelId: string;
103854
+ channelSecret: string;
103855
+ } | undefined;
103040
103856
  lineRichMenuId?: string | null | undefined;
103041
103857
  messengerIntegrationType?: "own" | "business" | undefined;
103042
103858
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -103132,6 +103948,10 @@ export declare const initiateMessageContract: {
103132
103948
  mobileNumber: string;
103133
103949
  apiSecret: string;
103134
103950
  } | undefined;
103951
+ line?: {
103952
+ channelId: string;
103953
+ channelSecret: string;
103954
+ } | undefined;
103135
103955
  lineRichMenuId?: string | null | undefined;
103136
103956
  messengerIntegrationType?: "own" | "business" | undefined;
103137
103957
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -103791,6 +104611,10 @@ export declare const initiateMessageContract: {
103791
104611
  mobileNumber: string;
103792
104612
  apiSecret: string;
103793
104613
  } | undefined;
104614
+ line?: {
104615
+ channelId: string;
104616
+ channelSecret: string;
104617
+ } | undefined;
103794
104618
  lineRichMenuId?: string | null | undefined;
103795
104619
  messengerIntegrationType?: "own" | "business" | undefined;
103796
104620
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -104220,6 +105044,10 @@ export declare const initiateMessageContract: {
104220
105044
  mobileNumber: string;
104221
105045
  apiSecret: string;
104222
105046
  } | undefined;
105047
+ line?: {
105048
+ channelId: string;
105049
+ channelSecret: string;
105050
+ } | undefined;
104223
105051
  lineRichMenuId?: string | null | undefined;
104224
105052
  messengerIntegrationType?: "own" | "business" | undefined;
104225
105053
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -106422,6 +107250,10 @@ export declare const initiateMessageContract: {
106422
107250
  mobileNumber: string;
106423
107251
  apiSecret: string;
106424
107252
  } | undefined;
107253
+ line?: {
107254
+ channelId: string;
107255
+ channelSecret: string;
107256
+ } | undefined;
106425
107257
  lineRichMenuId?: string | null | undefined;
106426
107258
  messengerIntegrationType?: "own" | "business" | undefined;
106427
107259
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -107188,6 +108020,10 @@ export declare const initiateMessageContract: {
107188
108020
  mobileNumber: string;
107189
108021
  apiSecret: string;
107190
108022
  } | undefined;
108023
+ line?: {
108024
+ channelId: string;
108025
+ channelSecret: string;
108026
+ } | undefined;
107191
108027
  lineRichMenuId?: string | null | undefined;
107192
108028
  messengerIntegrationType?: "own" | "business" | undefined;
107193
108029
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -107956,6 +108792,10 @@ export declare const initiateMessageContract: {
107956
108792
  mobileNumber: string;
107957
108793
  apiSecret: string;
107958
108794
  } | undefined;
108795
+ line?: {
108796
+ channelId: string;
108797
+ channelSecret: string;
108798
+ } | undefined;
107959
108799
  lineRichMenuId?: string | null | undefined;
107960
108800
  messengerIntegrationType?: "own" | "business" | undefined;
107961
108801
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -108725,6 +109565,10 @@ export declare const initiateMessageContract: {
108725
109565
  mobileNumber: string;
108726
109566
  apiSecret: string;
108727
109567
  } | undefined;
109568
+ line?: {
109569
+ channelId: string;
109570
+ channelSecret: string;
109571
+ } | undefined;
108728
109572
  lineRichMenuId?: string | null | undefined;
108729
109573
  messengerIntegrationType?: "own" | "business" | undefined;
108730
109574
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -111808,6 +112652,16 @@ export declare const mainChatMessageContract: {
111808
112652
  mobileNumber: string;
111809
112653
  apiSecret: string;
111810
112654
  }>>;
112655
+ line: z.ZodOptional<z.ZodObject<{
112656
+ channelId: z.ZodString;
112657
+ channelSecret: z.ZodString;
112658
+ }, "strip", z.ZodTypeAny, {
112659
+ channelId: string;
112660
+ channelSecret: string;
112661
+ }, {
112662
+ channelId: string;
112663
+ channelSecret: string;
112664
+ }>>;
111811
112665
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
111812
112666
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
111813
112667
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -111838,6 +112692,10 @@ export declare const mainChatMessageContract: {
111838
112692
  mobileNumber: string;
111839
112693
  apiSecret: string;
111840
112694
  } | undefined;
112695
+ line?: {
112696
+ channelId: string;
112697
+ channelSecret: string;
112698
+ } | undefined;
111841
112699
  lineRichMenuId?: string | null | undefined;
111842
112700
  messengerIntegrationType?: "own" | "business" | undefined;
111843
112701
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -111868,6 +112726,10 @@ export declare const mainChatMessageContract: {
111868
112726
  mobileNumber: string;
111869
112727
  apiSecret: string;
111870
112728
  } | undefined;
112729
+ line?: {
112730
+ channelId: string;
112731
+ channelSecret: string;
112732
+ } | undefined;
111871
112733
  lineRichMenuId?: string | null | undefined;
111872
112734
  messengerIntegrationType?: "own" | "business" | undefined;
111873
112735
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -112132,6 +112994,10 @@ export declare const mainChatMessageContract: {
112132
112994
  mobileNumber: string;
112133
112995
  apiSecret: string;
112134
112996
  } | undefined;
112997
+ line?: {
112998
+ channelId: string;
112999
+ channelSecret: string;
113000
+ } | undefined;
112135
113001
  lineRichMenuId?: string | null | undefined;
112136
113002
  messengerIntegrationType?: "own" | "business" | undefined;
112137
113003
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -112227,6 +113093,10 @@ export declare const mainChatMessageContract: {
112227
113093
  mobileNumber: string;
112228
113094
  apiSecret: string;
112229
113095
  } | undefined;
113096
+ line?: {
113097
+ channelId: string;
113098
+ channelSecret: string;
113099
+ } | undefined;
112230
113100
  lineRichMenuId?: string | null | undefined;
112231
113101
  messengerIntegrationType?: "own" | "business" | undefined;
112232
113102
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -112886,6 +113756,10 @@ export declare const mainChatMessageContract: {
112886
113756
  mobileNumber: string;
112887
113757
  apiSecret: string;
112888
113758
  } | undefined;
113759
+ line?: {
113760
+ channelId: string;
113761
+ channelSecret: string;
113762
+ } | undefined;
112889
113763
  lineRichMenuId?: string | null | undefined;
112890
113764
  messengerIntegrationType?: "own" | "business" | undefined;
112891
113765
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -113315,6 +114189,10 @@ export declare const mainChatMessageContract: {
113315
114189
  mobileNumber: string;
113316
114190
  apiSecret: string;
113317
114191
  } | undefined;
114192
+ line?: {
114193
+ channelId: string;
114194
+ channelSecret: string;
114195
+ } | undefined;
113318
114196
  lineRichMenuId?: string | null | undefined;
113319
114197
  messengerIntegrationType?: "own" | "business" | undefined;
113320
114198
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -116495,6 +117373,16 @@ export declare const mainChatMessageContract: {
116495
117373
  mobileNumber: string;
116496
117374
  apiSecret: string;
116497
117375
  }>>;
117376
+ line: z.ZodOptional<z.ZodObject<{
117377
+ channelId: z.ZodString;
117378
+ channelSecret: z.ZodString;
117379
+ }, "strip", z.ZodTypeAny, {
117380
+ channelId: string;
117381
+ channelSecret: string;
117382
+ }, {
117383
+ channelId: string;
117384
+ channelSecret: string;
117385
+ }>>;
116498
117386
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
116499
117387
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
116500
117388
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -116525,6 +117413,10 @@ export declare const mainChatMessageContract: {
116525
117413
  mobileNumber: string;
116526
117414
  apiSecret: string;
116527
117415
  } | undefined;
117416
+ line?: {
117417
+ channelId: string;
117418
+ channelSecret: string;
117419
+ } | undefined;
116528
117420
  lineRichMenuId?: string | null | undefined;
116529
117421
  messengerIntegrationType?: "own" | "business" | undefined;
116530
117422
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -116555,6 +117447,10 @@ export declare const mainChatMessageContract: {
116555
117447
  mobileNumber: string;
116556
117448
  apiSecret: string;
116557
117449
  } | undefined;
117450
+ line?: {
117451
+ channelId: string;
117452
+ channelSecret: string;
117453
+ } | undefined;
116558
117454
  lineRichMenuId?: string | null | undefined;
116559
117455
  messengerIntegrationType?: "own" | "business" | undefined;
116560
117456
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -116819,6 +117715,10 @@ export declare const mainChatMessageContract: {
116819
117715
  mobileNumber: string;
116820
117716
  apiSecret: string;
116821
117717
  } | undefined;
117718
+ line?: {
117719
+ channelId: string;
117720
+ channelSecret: string;
117721
+ } | undefined;
116822
117722
  lineRichMenuId?: string | null | undefined;
116823
117723
  messengerIntegrationType?: "own" | "business" | undefined;
116824
117724
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -116914,6 +117814,10 @@ export declare const mainChatMessageContract: {
116914
117814
  mobileNumber: string;
116915
117815
  apiSecret: string;
116916
117816
  } | undefined;
117817
+ line?: {
117818
+ channelId: string;
117819
+ channelSecret: string;
117820
+ } | undefined;
116917
117821
  lineRichMenuId?: string | null | undefined;
116918
117822
  messengerIntegrationType?: "own" | "business" | undefined;
116919
117823
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -117573,6 +118477,10 @@ export declare const mainChatMessageContract: {
117573
118477
  mobileNumber: string;
117574
118478
  apiSecret: string;
117575
118479
  } | undefined;
118480
+ line?: {
118481
+ channelId: string;
118482
+ channelSecret: string;
118483
+ } | undefined;
117576
118484
  lineRichMenuId?: string | null | undefined;
117577
118485
  messengerIntegrationType?: "own" | "business" | undefined;
117578
118486
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -118002,6 +118910,10 @@ export declare const mainChatMessageContract: {
118002
118910
  mobileNumber: string;
118003
118911
  apiSecret: string;
118004
118912
  } | undefined;
118913
+ line?: {
118914
+ channelId: string;
118915
+ channelSecret: string;
118916
+ } | undefined;
118005
118917
  lineRichMenuId?: string | null | undefined;
118006
118918
  messengerIntegrationType?: "own" | "business" | undefined;
118007
118919
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -120204,6 +121116,10 @@ export declare const mainChatMessageContract: {
120204
121116
  mobileNumber: string;
120205
121117
  apiSecret: string;
120206
121118
  } | undefined;
121119
+ line?: {
121120
+ channelId: string;
121121
+ channelSecret: string;
121122
+ } | undefined;
120207
121123
  lineRichMenuId?: string | null | undefined;
120208
121124
  messengerIntegrationType?: "own" | "business" | undefined;
120209
121125
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -120970,6 +121886,10 @@ export declare const mainChatMessageContract: {
120970
121886
  mobileNumber: string;
120971
121887
  apiSecret: string;
120972
121888
  } | undefined;
121889
+ line?: {
121890
+ channelId: string;
121891
+ channelSecret: string;
121892
+ } | undefined;
120973
121893
  lineRichMenuId?: string | null | undefined;
120974
121894
  messengerIntegrationType?: "own" | "business" | undefined;
120975
121895
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -121737,6 +122657,10 @@ export declare const mainChatMessageContract: {
121737
122657
  mobileNumber: string;
121738
122658
  apiSecret: string;
121739
122659
  } | undefined;
122660
+ line?: {
122661
+ channelId: string;
122662
+ channelSecret: string;
122663
+ } | undefined;
121740
122664
  lineRichMenuId?: string | null | undefined;
121741
122665
  messengerIntegrationType?: "own" | "business" | undefined;
121742
122666
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -122503,6 +123427,10 @@ export declare const mainChatMessageContract: {
122503
123427
  mobileNumber: string;
122504
123428
  apiSecret: string;
122505
123429
  } | undefined;
123430
+ line?: {
123431
+ channelId: string;
123432
+ channelSecret: string;
123433
+ } | undefined;
122506
123434
  lineRichMenuId?: string | null | undefined;
122507
123435
  messengerIntegrationType?: "own" | "business" | undefined;
122508
123436
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -123270,6 +124198,10 @@ export declare const mainChatMessageContract: {
123270
124198
  mobileNumber: string;
123271
124199
  apiSecret: string;
123272
124200
  } | undefined;
124201
+ line?: {
124202
+ channelId: string;
124203
+ channelSecret: string;
124204
+ } | undefined;
123273
124205
  lineRichMenuId?: string | null | undefined;
123274
124206
  messengerIntegrationType?: "own" | "business" | undefined;
123275
124207
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -124036,6 +124968,10 @@ export declare const mainChatMessageContract: {
124036
124968
  mobileNumber: string;
124037
124969
  apiSecret: string;
124038
124970
  } | undefined;
124971
+ line?: {
124972
+ channelId: string;
124973
+ channelSecret: string;
124974
+ } | undefined;
124039
124975
  lineRichMenuId?: string | null | undefined;
124040
124976
  messengerIntegrationType?: "own" | "business" | undefined;
124041
124977
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -124805,6 +125741,10 @@ export declare const mainChatMessageContract: {
124805
125741
  mobileNumber: string;
124806
125742
  apiSecret: string;
124807
125743
  } | undefined;
125744
+ line?: {
125745
+ channelId: string;
125746
+ channelSecret: string;
125747
+ } | undefined;
124808
125748
  lineRichMenuId?: string | null | undefined;
124809
125749
  messengerIntegrationType?: "own" | "business" | undefined;
124810
125750
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -125571,6 +126511,10 @@ export declare const mainChatMessageContract: {
125571
126511
  mobileNumber: string;
125572
126512
  apiSecret: string;
125573
126513
  } | undefined;
126514
+ line?: {
126515
+ channelId: string;
126516
+ channelSecret: string;
126517
+ } | undefined;
125574
126518
  lineRichMenuId?: string | null | undefined;
125575
126519
  messengerIntegrationType?: "own" | "business" | undefined;
125576
126520
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -126341,6 +127285,10 @@ export declare const mainChatMessageContract: {
126341
127285
  mobileNumber: string;
126342
127286
  apiSecret: string;
126343
127287
  } | undefined;
127288
+ line?: {
127289
+ channelId: string;
127290
+ channelSecret: string;
127291
+ } | undefined;
126344
127292
  lineRichMenuId?: string | null | undefined;
126345
127293
  messengerIntegrationType?: "own" | "business" | undefined;
126346
127294
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -127107,6 +128055,10 @@ export declare const mainChatMessageContract: {
127107
128055
  mobileNumber: string;
127108
128056
  apiSecret: string;
127109
128057
  } | undefined;
128058
+ line?: {
128059
+ channelId: string;
128060
+ channelSecret: string;
128061
+ } | undefined;
127110
128062
  lineRichMenuId?: string | null | undefined;
127111
128063
  messengerIntegrationType?: "own" | "business" | undefined;
127112
128064
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -127867,6 +128819,16 @@ export declare const mainChatMessageContract: {
127867
128819
  mobileNumber: string;
127868
128820
  apiSecret: string;
127869
128821
  }>>;
128822
+ line: z.ZodOptional<z.ZodObject<{
128823
+ channelId: z.ZodString;
128824
+ channelSecret: z.ZodString;
128825
+ }, "strip", z.ZodTypeAny, {
128826
+ channelId: string;
128827
+ channelSecret: string;
128828
+ }, {
128829
+ channelId: string;
128830
+ channelSecret: string;
128831
+ }>>;
127870
128832
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
127871
128833
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
127872
128834
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -127897,6 +128859,10 @@ export declare const mainChatMessageContract: {
127897
128859
  mobileNumber: string;
127898
128860
  apiSecret: string;
127899
128861
  } | undefined;
128862
+ line?: {
128863
+ channelId: string;
128864
+ channelSecret: string;
128865
+ } | undefined;
127900
128866
  lineRichMenuId?: string | null | undefined;
127901
128867
  messengerIntegrationType?: "own" | "business" | undefined;
127902
128868
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -127927,6 +128893,10 @@ export declare const mainChatMessageContract: {
127927
128893
  mobileNumber: string;
127928
128894
  apiSecret: string;
127929
128895
  } | undefined;
128896
+ line?: {
128897
+ channelId: string;
128898
+ channelSecret: string;
128899
+ } | undefined;
127930
128900
  lineRichMenuId?: string | null | undefined;
127931
128901
  messengerIntegrationType?: "own" | "business" | undefined;
127932
128902
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -127987,6 +128957,10 @@ export declare const mainChatMessageContract: {
127987
128957
  mobileNumber: string;
127988
128958
  apiSecret: string;
127989
128959
  } | undefined;
128960
+ line?: {
128961
+ channelId: string;
128962
+ channelSecret: string;
128963
+ } | undefined;
127990
128964
  lineRichMenuId?: string | null | undefined;
127991
128965
  messengerIntegrationType?: "own" | "business" | undefined;
127992
128966
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -128035,6 +129009,10 @@ export declare const mainChatMessageContract: {
128035
129009
  mobileNumber: string;
128036
129010
  apiSecret: string;
128037
129011
  } | undefined;
129012
+ line?: {
129013
+ channelId: string;
129014
+ channelSecret: string;
129015
+ } | undefined;
128038
129016
  lineRichMenuId?: string | null | undefined;
128039
129017
  messengerIntegrationType?: "own" | "business" | undefined;
128040
129018
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -128086,6 +129064,10 @@ export declare const mainChatMessageContract: {
128086
129064
  mobileNumber: string;
128087
129065
  apiSecret: string;
128088
129066
  } | undefined;
129067
+ line?: {
129068
+ channelId: string;
129069
+ channelSecret: string;
129070
+ } | undefined;
128089
129071
  lineRichMenuId?: string | null | undefined;
128090
129072
  messengerIntegrationType?: "own" | "business" | undefined;
128091
129073
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -128137,6 +129119,10 @@ export declare const mainChatMessageContract: {
128137
129119
  mobileNumber: string;
128138
129120
  apiSecret: string;
128139
129121
  } | undefined;
129122
+ line?: {
129123
+ channelId: string;
129124
+ channelSecret: string;
129125
+ } | undefined;
128140
129126
  lineRichMenuId?: string | null | undefined;
128141
129127
  messengerIntegrationType?: "own" | "business" | undefined;
128142
129128
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -128340,6 +129326,10 @@ export declare const mainChatMessageContract: {
128340
129326
  mobileNumber: string;
128341
129327
  apiSecret: string;
128342
129328
  } | undefined;
129329
+ line?: {
129330
+ channelId: string;
129331
+ channelSecret: string;
129332
+ } | undefined;
128343
129333
  lineRichMenuId?: string | null | undefined;
128344
129334
  messengerIntegrationType?: "own" | "business" | undefined;
128345
129335
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -128425,6 +129415,10 @@ export declare const mainChatMessageContract: {
128425
129415
  mobileNumber: string;
128426
129416
  apiSecret: string;
128427
129417
  } | undefined;
129418
+ line?: {
129419
+ channelId: string;
129420
+ channelSecret: string;
129421
+ } | undefined;
128428
129422
  lineRichMenuId?: string | null | undefined;
128429
129423
  messengerIntegrationType?: "own" | "business" | undefined;
128430
129424
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -128512,6 +129506,10 @@ export declare const mainChatMessageContract: {
128512
129506
  mobileNumber: string;
128513
129507
  apiSecret: string;
128514
129508
  } | undefined;
129509
+ line?: {
129510
+ channelId: string;
129511
+ channelSecret: string;
129512
+ } | undefined;
128515
129513
  lineRichMenuId?: string | null | undefined;
128516
129514
  messengerIntegrationType?: "own" | "business" | undefined;
128517
129515
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -128600,6 +129598,10 @@ export declare const mainChatMessageContract: {
128600
129598
  mobileNumber: string;
128601
129599
  apiSecret: string;
128602
129600
  } | undefined;
129601
+ line?: {
129602
+ channelId: string;
129603
+ channelSecret: string;
129604
+ } | undefined;
128603
129605
  lineRichMenuId?: string | null | undefined;
128604
129606
  messengerIntegrationType?: "own" | "business" | undefined;
128605
129607
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -130221,6 +131223,16 @@ export declare const mainChatMessageContract: {
130221
131223
  mobileNumber: string;
130222
131224
  apiSecret: string;
130223
131225
  }>>;
131226
+ line: z.ZodOptional<z.ZodObject<{
131227
+ channelId: z.ZodString;
131228
+ channelSecret: z.ZodString;
131229
+ }, "strip", z.ZodTypeAny, {
131230
+ channelId: string;
131231
+ channelSecret: string;
131232
+ }, {
131233
+ channelId: string;
131234
+ channelSecret: string;
131235
+ }>>;
130224
131236
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
130225
131237
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
130226
131238
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -130251,6 +131263,10 @@ export declare const mainChatMessageContract: {
130251
131263
  mobileNumber: string;
130252
131264
  apiSecret: string;
130253
131265
  } | undefined;
131266
+ line?: {
131267
+ channelId: string;
131268
+ channelSecret: string;
131269
+ } | undefined;
130254
131270
  lineRichMenuId?: string | null | undefined;
130255
131271
  messengerIntegrationType?: "own" | "business" | undefined;
130256
131272
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -130281,6 +131297,10 @@ export declare const mainChatMessageContract: {
130281
131297
  mobileNumber: string;
130282
131298
  apiSecret: string;
130283
131299
  } | undefined;
131300
+ line?: {
131301
+ channelId: string;
131302
+ channelSecret: string;
131303
+ } | undefined;
130284
131304
  lineRichMenuId?: string | null | undefined;
130285
131305
  messengerIntegrationType?: "own" | "business" | undefined;
130286
131306
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -130545,6 +131565,10 @@ export declare const mainChatMessageContract: {
130545
131565
  mobileNumber: string;
130546
131566
  apiSecret: string;
130547
131567
  } | undefined;
131568
+ line?: {
131569
+ channelId: string;
131570
+ channelSecret: string;
131571
+ } | undefined;
130548
131572
  lineRichMenuId?: string | null | undefined;
130549
131573
  messengerIntegrationType?: "own" | "business" | undefined;
130550
131574
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -130640,6 +131664,10 @@ export declare const mainChatMessageContract: {
130640
131664
  mobileNumber: string;
130641
131665
  apiSecret: string;
130642
131666
  } | undefined;
131667
+ line?: {
131668
+ channelId: string;
131669
+ channelSecret: string;
131670
+ } | undefined;
130643
131671
  lineRichMenuId?: string | null | undefined;
130644
131672
  messengerIntegrationType?: "own" | "business" | undefined;
130645
131673
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -131299,6 +132327,10 @@ export declare const mainChatMessageContract: {
131299
132327
  mobileNumber: string;
131300
132328
  apiSecret: string;
131301
132329
  } | undefined;
132330
+ line?: {
132331
+ channelId: string;
132332
+ channelSecret: string;
132333
+ } | undefined;
131302
132334
  lineRichMenuId?: string | null | undefined;
131303
132335
  messengerIntegrationType?: "own" | "business" | undefined;
131304
132336
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -131728,6 +132760,10 @@ export declare const mainChatMessageContract: {
131728
132760
  mobileNumber: string;
131729
132761
  apiSecret: string;
131730
132762
  } | undefined;
132763
+ line?: {
132764
+ channelId: string;
132765
+ channelSecret: string;
132766
+ } | undefined;
131731
132767
  lineRichMenuId?: string | null | undefined;
131732
132768
  messengerIntegrationType?: "own" | "business" | undefined;
131733
132769
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -133930,6 +134966,10 @@ export declare const mainChatMessageContract: {
133930
134966
  mobileNumber: string;
133931
134967
  apiSecret: string;
133932
134968
  } | undefined;
134969
+ line?: {
134970
+ channelId: string;
134971
+ channelSecret: string;
134972
+ } | undefined;
133933
134973
  lineRichMenuId?: string | null | undefined;
133934
134974
  messengerIntegrationType?: "own" | "business" | undefined;
133935
134975
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -134696,6 +135736,10 @@ export declare const mainChatMessageContract: {
134696
135736
  mobileNumber: string;
134697
135737
  apiSecret: string;
134698
135738
  } | undefined;
135739
+ line?: {
135740
+ channelId: string;
135741
+ channelSecret: string;
135742
+ } | undefined;
134699
135743
  lineRichMenuId?: string | null | undefined;
134700
135744
  messengerIntegrationType?: "own" | "business" | undefined;
134701
135745
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -135464,6 +136508,10 @@ export declare const mainChatMessageContract: {
135464
136508
  mobileNumber: string;
135465
136509
  apiSecret: string;
135466
136510
  } | undefined;
136511
+ line?: {
136512
+ channelId: string;
136513
+ channelSecret: string;
136514
+ } | undefined;
135467
136515
  lineRichMenuId?: string | null | undefined;
135468
136516
  messengerIntegrationType?: "own" | "business" | undefined;
135469
136517
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -136233,6 +137281,10 @@ export declare const mainChatMessageContract: {
136233
137281
  mobileNumber: string;
136234
137282
  apiSecret: string;
136235
137283
  } | undefined;
137284
+ line?: {
137285
+ channelId: string;
137286
+ channelSecret: string;
137287
+ } | undefined;
136236
137288
  lineRichMenuId?: string | null | undefined;
136237
137289
  messengerIntegrationType?: "own" | "business" | undefined;
136238
137290
  facebookFeedIntegrationType?: "own" | "business" | undefined;