@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
@@ -2621,6 +2621,16 @@ export declare const RoomSchema: z.ZodObject<{
2621
2621
  mobileNumber: string;
2622
2622
  apiSecret: string;
2623
2623
  }>>;
2624
+ line: z.ZodOptional<z.ZodObject<{
2625
+ channelId: z.ZodString;
2626
+ channelSecret: z.ZodString;
2627
+ }, "strip", z.ZodTypeAny, {
2628
+ channelId: string;
2629
+ channelSecret: string;
2630
+ }, {
2631
+ channelId: string;
2632
+ channelSecret: string;
2633
+ }>>;
2624
2634
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2625
2635
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
2626
2636
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -2651,6 +2661,10 @@ export declare const RoomSchema: z.ZodObject<{
2651
2661
  mobileNumber: string;
2652
2662
  apiSecret: string;
2653
2663
  } | undefined;
2664
+ line?: {
2665
+ channelId: string;
2666
+ channelSecret: string;
2667
+ } | undefined;
2654
2668
  lineRichMenuId?: string | null | undefined;
2655
2669
  messengerIntegrationType?: "own" | "business" | undefined;
2656
2670
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -2681,6 +2695,10 @@ export declare const RoomSchema: z.ZodObject<{
2681
2695
  mobileNumber: string;
2682
2696
  apiSecret: string;
2683
2697
  } | undefined;
2698
+ line?: {
2699
+ channelId: string;
2700
+ channelSecret: string;
2701
+ } | undefined;
2684
2702
  lineRichMenuId?: string | null | undefined;
2685
2703
  messengerIntegrationType?: "own" | "business" | undefined;
2686
2704
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -2945,6 +2963,10 @@ export declare const RoomSchema: z.ZodObject<{
2945
2963
  mobileNumber: string;
2946
2964
  apiSecret: string;
2947
2965
  } | undefined;
2966
+ line?: {
2967
+ channelId: string;
2968
+ channelSecret: string;
2969
+ } | undefined;
2948
2970
  lineRichMenuId?: string | null | undefined;
2949
2971
  messengerIntegrationType?: "own" | "business" | undefined;
2950
2972
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -3040,6 +3062,10 @@ export declare const RoomSchema: z.ZodObject<{
3040
3062
  mobileNumber: string;
3041
3063
  apiSecret: string;
3042
3064
  } | undefined;
3065
+ line?: {
3066
+ channelId: string;
3067
+ channelSecret: string;
3068
+ } | undefined;
3043
3069
  lineRichMenuId?: string | null | undefined;
3044
3070
  messengerIntegrationType?: "own" | "business" | undefined;
3045
3071
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -3699,6 +3725,10 @@ export declare const RoomSchema: z.ZodObject<{
3699
3725
  mobileNumber: string;
3700
3726
  apiSecret: string;
3701
3727
  } | undefined;
3728
+ line?: {
3729
+ channelId: string;
3730
+ channelSecret: string;
3731
+ } | undefined;
3702
3732
  lineRichMenuId?: string | null | undefined;
3703
3733
  messengerIntegrationType?: "own" | "business" | undefined;
3704
3734
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -4128,6 +4158,10 @@ export declare const RoomSchema: z.ZodObject<{
4128
4158
  mobileNumber: string;
4129
4159
  apiSecret: string;
4130
4160
  } | undefined;
4161
+ line?: {
4162
+ channelId: string;
4163
+ channelSecret: string;
4164
+ } | undefined;
4131
4165
  lineRichMenuId?: string | null | undefined;
4132
4166
  messengerIntegrationType?: "own" | "business" | undefined;
4133
4167
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -6086,6 +6120,16 @@ export declare const MessageSchema: z.ZodObject<{
6086
6120
  mobileNumber: string;
6087
6121
  apiSecret: string;
6088
6122
  }>>;
6123
+ line: z.ZodOptional<z.ZodObject<{
6124
+ channelId: z.ZodString;
6125
+ channelSecret: z.ZodString;
6126
+ }, "strip", z.ZodTypeAny, {
6127
+ channelId: string;
6128
+ channelSecret: string;
6129
+ }, {
6130
+ channelId: string;
6131
+ channelSecret: string;
6132
+ }>>;
6089
6133
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
6090
6134
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
6091
6135
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -6116,6 +6160,10 @@ export declare const MessageSchema: z.ZodObject<{
6116
6160
  mobileNumber: string;
6117
6161
  apiSecret: string;
6118
6162
  } | undefined;
6163
+ line?: {
6164
+ channelId: string;
6165
+ channelSecret: string;
6166
+ } | undefined;
6119
6167
  lineRichMenuId?: string | null | undefined;
6120
6168
  messengerIntegrationType?: "own" | "business" | undefined;
6121
6169
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -6146,6 +6194,10 @@ export declare const MessageSchema: z.ZodObject<{
6146
6194
  mobileNumber: string;
6147
6195
  apiSecret: string;
6148
6196
  } | undefined;
6197
+ line?: {
6198
+ channelId: string;
6199
+ channelSecret: string;
6200
+ } | undefined;
6149
6201
  lineRichMenuId?: string | null | undefined;
6150
6202
  messengerIntegrationType?: "own" | "business" | undefined;
6151
6203
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -6410,6 +6462,10 @@ export declare const MessageSchema: z.ZodObject<{
6410
6462
  mobileNumber: string;
6411
6463
  apiSecret: string;
6412
6464
  } | undefined;
6465
+ line?: {
6466
+ channelId: string;
6467
+ channelSecret: string;
6468
+ } | undefined;
6413
6469
  lineRichMenuId?: string | null | undefined;
6414
6470
  messengerIntegrationType?: "own" | "business" | undefined;
6415
6471
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -6505,6 +6561,10 @@ export declare const MessageSchema: z.ZodObject<{
6505
6561
  mobileNumber: string;
6506
6562
  apiSecret: string;
6507
6563
  } | undefined;
6564
+ line?: {
6565
+ channelId: string;
6566
+ channelSecret: string;
6567
+ } | undefined;
6508
6568
  lineRichMenuId?: string | null | undefined;
6509
6569
  messengerIntegrationType?: "own" | "business" | undefined;
6510
6570
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -7164,6 +7224,10 @@ export declare const MessageSchema: z.ZodObject<{
7164
7224
  mobileNumber: string;
7165
7225
  apiSecret: string;
7166
7226
  } | undefined;
7227
+ line?: {
7228
+ channelId: string;
7229
+ channelSecret: string;
7230
+ } | undefined;
7167
7231
  lineRichMenuId?: string | null | undefined;
7168
7232
  messengerIntegrationType?: "own" | "business" | undefined;
7169
7233
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -7593,6 +7657,10 @@ export declare const MessageSchema: z.ZodObject<{
7593
7657
  mobileNumber: string;
7594
7658
  apiSecret: string;
7595
7659
  } | undefined;
7660
+ line?: {
7661
+ channelId: string;
7662
+ channelSecret: string;
7663
+ } | undefined;
7596
7664
  lineRichMenuId?: string | null | undefined;
7597
7665
  messengerIntegrationType?: "own" | "business" | undefined;
7598
7666
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -9795,6 +9863,10 @@ export declare const MessageSchema: z.ZodObject<{
9795
9863
  mobileNumber: string;
9796
9864
  apiSecret: string;
9797
9865
  } | undefined;
9866
+ line?: {
9867
+ channelId: string;
9868
+ channelSecret: string;
9869
+ } | undefined;
9798
9870
  lineRichMenuId?: string | null | undefined;
9799
9871
  messengerIntegrationType?: "own" | "business" | undefined;
9800
9872
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -10561,6 +10633,10 @@ export declare const MessageSchema: z.ZodObject<{
10561
10633
  mobileNumber: string;
10562
10634
  apiSecret: string;
10563
10635
  } | undefined;
10636
+ line?: {
10637
+ channelId: string;
10638
+ channelSecret: string;
10639
+ } | undefined;
10564
10640
  lineRichMenuId?: string | null | undefined;
10565
10641
  messengerIntegrationType?: "own" | "business" | undefined;
10566
10642
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -13180,6 +13256,16 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
13180
13256
  mobileNumber: string;
13181
13257
  apiSecret: string;
13182
13258
  }>>;
13259
+ line: z.ZodOptional<z.ZodObject<{
13260
+ channelId: z.ZodString;
13261
+ channelSecret: z.ZodString;
13262
+ }, "strip", z.ZodTypeAny, {
13263
+ channelId: string;
13264
+ channelSecret: string;
13265
+ }, {
13266
+ channelId: string;
13267
+ channelSecret: string;
13268
+ }>>;
13183
13269
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
13184
13270
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
13185
13271
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -13210,6 +13296,10 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
13210
13296
  mobileNumber: string;
13211
13297
  apiSecret: string;
13212
13298
  } | undefined;
13299
+ line?: {
13300
+ channelId: string;
13301
+ channelSecret: string;
13302
+ } | undefined;
13213
13303
  lineRichMenuId?: string | null | undefined;
13214
13304
  messengerIntegrationType?: "own" | "business" | undefined;
13215
13305
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -13240,6 +13330,10 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
13240
13330
  mobileNumber: string;
13241
13331
  apiSecret: string;
13242
13332
  } | undefined;
13333
+ line?: {
13334
+ channelId: string;
13335
+ channelSecret: string;
13336
+ } | undefined;
13243
13337
  lineRichMenuId?: string | null | undefined;
13244
13338
  messengerIntegrationType?: "own" | "business" | undefined;
13245
13339
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -13504,6 +13598,10 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
13504
13598
  mobileNumber: string;
13505
13599
  apiSecret: string;
13506
13600
  } | undefined;
13601
+ line?: {
13602
+ channelId: string;
13603
+ channelSecret: string;
13604
+ } | undefined;
13507
13605
  lineRichMenuId?: string | null | undefined;
13508
13606
  messengerIntegrationType?: "own" | "business" | undefined;
13509
13607
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -13599,6 +13697,10 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
13599
13697
  mobileNumber: string;
13600
13698
  apiSecret: string;
13601
13699
  } | undefined;
13700
+ line?: {
13701
+ channelId: string;
13702
+ channelSecret: string;
13703
+ } | undefined;
13602
13704
  lineRichMenuId?: string | null | undefined;
13603
13705
  messengerIntegrationType?: "own" | "business" | undefined;
13604
13706
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -14258,6 +14360,10 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
14258
14360
  mobileNumber: string;
14259
14361
  apiSecret: string;
14260
14362
  } | undefined;
14363
+ line?: {
14364
+ channelId: string;
14365
+ channelSecret: string;
14366
+ } | undefined;
14261
14367
  lineRichMenuId?: string | null | undefined;
14262
14368
  messengerIntegrationType?: "own" | "business" | undefined;
14263
14369
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -14687,6 +14793,10 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
14687
14793
  mobileNumber: string;
14688
14794
  apiSecret: string;
14689
14795
  } | undefined;
14796
+ line?: {
14797
+ channelId: string;
14798
+ channelSecret: string;
14799
+ } | undefined;
14690
14800
  lineRichMenuId?: string | null | undefined;
14691
14801
  messengerIntegrationType?: "own" | "business" | undefined;
14692
14802
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -16393,6 +16503,16 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
16393
16503
  mobileNumber: string;
16394
16504
  apiSecret: string;
16395
16505
  }>>;
16506
+ line: z.ZodOptional<z.ZodObject<{
16507
+ channelId: z.ZodString;
16508
+ channelSecret: z.ZodString;
16509
+ }, "strip", z.ZodTypeAny, {
16510
+ channelId: string;
16511
+ channelSecret: string;
16512
+ }, {
16513
+ channelId: string;
16514
+ channelSecret: string;
16515
+ }>>;
16396
16516
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
16397
16517
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
16398
16518
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -16423,6 +16543,10 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
16423
16543
  mobileNumber: string;
16424
16544
  apiSecret: string;
16425
16545
  } | undefined;
16546
+ line?: {
16547
+ channelId: string;
16548
+ channelSecret: string;
16549
+ } | undefined;
16426
16550
  lineRichMenuId?: string | null | undefined;
16427
16551
  messengerIntegrationType?: "own" | "business" | undefined;
16428
16552
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -16453,6 +16577,10 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
16453
16577
  mobileNumber: string;
16454
16578
  apiSecret: string;
16455
16579
  } | undefined;
16580
+ line?: {
16581
+ channelId: string;
16582
+ channelSecret: string;
16583
+ } | undefined;
16456
16584
  lineRichMenuId?: string | null | undefined;
16457
16585
  messengerIntegrationType?: "own" | "business" | undefined;
16458
16586
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -16717,6 +16845,10 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
16717
16845
  mobileNumber: string;
16718
16846
  apiSecret: string;
16719
16847
  } | undefined;
16848
+ line?: {
16849
+ channelId: string;
16850
+ channelSecret: string;
16851
+ } | undefined;
16720
16852
  lineRichMenuId?: string | null | undefined;
16721
16853
  messengerIntegrationType?: "own" | "business" | undefined;
16722
16854
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -16812,6 +16944,10 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
16812
16944
  mobileNumber: string;
16813
16945
  apiSecret: string;
16814
16946
  } | undefined;
16947
+ line?: {
16948
+ channelId: string;
16949
+ channelSecret: string;
16950
+ } | undefined;
16815
16951
  lineRichMenuId?: string | null | undefined;
16816
16952
  messengerIntegrationType?: "own" | "business" | undefined;
16817
16953
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -18164,6 +18300,10 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
18164
18300
  mobileNumber: string;
18165
18301
  apiSecret: string;
18166
18302
  } | undefined;
18303
+ line?: {
18304
+ channelId: string;
18305
+ channelSecret: string;
18306
+ } | undefined;
18167
18307
  lineRichMenuId?: string | null | undefined;
18168
18308
  messengerIntegrationType?: "own" | "business" | undefined;
18169
18309
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -18446,6 +18586,10 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
18446
18586
  mobileNumber: string;
18447
18587
  apiSecret: string;
18448
18588
  } | undefined;
18589
+ line?: {
18590
+ channelId: string;
18591
+ channelSecret: string;
18592
+ } | undefined;
18449
18593
  lineRichMenuId?: string | null | undefined;
18450
18594
  messengerIntegrationType?: "own" | "business" | undefined;
18451
18595
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -18838,6 +18982,10 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
18838
18982
  mobileNumber: string;
18839
18983
  apiSecret: string;
18840
18984
  } | undefined;
18985
+ line?: {
18986
+ channelId: string;
18987
+ channelSecret: string;
18988
+ } | undefined;
18841
18989
  lineRichMenuId?: string | null | undefined;
18842
18990
  messengerIntegrationType?: "own" | "business" | undefined;
18843
18991
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -19495,6 +19643,10 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
19495
19643
  mobileNumber: string;
19496
19644
  apiSecret: string;
19497
19645
  } | undefined;
19646
+ line?: {
19647
+ channelId: string;
19648
+ channelSecret: string;
19649
+ } | undefined;
19498
19650
  lineRichMenuId?: string | null | undefined;
19499
19651
  messengerIntegrationType?: "own" | "business" | undefined;
19500
19652
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -19890,6 +20042,10 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
19890
20042
  mobileNumber: string;
19891
20043
  apiSecret: string;
19892
20044
  } | undefined;
20045
+ line?: {
20046
+ channelId: string;
20047
+ channelSecret: string;
20048
+ } | undefined;
19893
20049
  lineRichMenuId?: string | null | undefined;
19894
20050
  messengerIntegrationType?: "own" | "business" | undefined;
19895
20051
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -20547,6 +20703,10 @@ export declare const MessageWithFeedPostSchema: z.ZodObject<{
20547
20703
  mobileNumber: string;
20548
20704
  apiSecret: string;
20549
20705
  } | undefined;
20706
+ line?: {
20707
+ channelId: string;
20708
+ channelSecret: string;
20709
+ } | undefined;
20550
20710
  lineRichMenuId?: string | null | undefined;
20551
20711
  messengerIntegrationType?: "own" | "business" | undefined;
20552
20712
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -23797,6 +23957,16 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
23797
23957
  mobileNumber: string;
23798
23958
  apiSecret: string;
23799
23959
  }>>;
23960
+ line: z.ZodOptional<z.ZodObject<{
23961
+ channelId: z.ZodString;
23962
+ channelSecret: z.ZodString;
23963
+ }, "strip", z.ZodTypeAny, {
23964
+ channelId: string;
23965
+ channelSecret: string;
23966
+ }, {
23967
+ channelId: string;
23968
+ channelSecret: string;
23969
+ }>>;
23800
23970
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
23801
23971
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
23802
23972
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -23827,6 +23997,10 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
23827
23997
  mobileNumber: string;
23828
23998
  apiSecret: string;
23829
23999
  } | undefined;
24000
+ line?: {
24001
+ channelId: string;
24002
+ channelSecret: string;
24003
+ } | undefined;
23830
24004
  lineRichMenuId?: string | null | undefined;
23831
24005
  messengerIntegrationType?: "own" | "business" | undefined;
23832
24006
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -23857,6 +24031,10 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
23857
24031
  mobileNumber: string;
23858
24032
  apiSecret: string;
23859
24033
  } | undefined;
24034
+ line?: {
24035
+ channelId: string;
24036
+ channelSecret: string;
24037
+ } | undefined;
23860
24038
  lineRichMenuId?: string | null | undefined;
23861
24039
  messengerIntegrationType?: "own" | "business" | undefined;
23862
24040
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -24121,6 +24299,10 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
24121
24299
  mobileNumber: string;
24122
24300
  apiSecret: string;
24123
24301
  } | undefined;
24302
+ line?: {
24303
+ channelId: string;
24304
+ channelSecret: string;
24305
+ } | undefined;
24124
24306
  lineRichMenuId?: string | null | undefined;
24125
24307
  messengerIntegrationType?: "own" | "business" | undefined;
24126
24308
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -24216,6 +24398,10 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
24216
24398
  mobileNumber: string;
24217
24399
  apiSecret: string;
24218
24400
  } | undefined;
24401
+ line?: {
24402
+ channelId: string;
24403
+ channelSecret: string;
24404
+ } | undefined;
24219
24405
  lineRichMenuId?: string | null | undefined;
24220
24406
  messengerIntegrationType?: "own" | "business" | undefined;
24221
24407
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -24875,6 +25061,10 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
24875
25061
  mobileNumber: string;
24876
25062
  apiSecret: string;
24877
25063
  } | undefined;
25064
+ line?: {
25065
+ channelId: string;
25066
+ channelSecret: string;
25067
+ } | undefined;
24878
25068
  lineRichMenuId?: string | null | undefined;
24879
25069
  messengerIntegrationType?: "own" | "business" | undefined;
24880
25070
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -25304,6 +25494,10 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
25304
25494
  mobileNumber: string;
25305
25495
  apiSecret: string;
25306
25496
  } | undefined;
25497
+ line?: {
25498
+ channelId: string;
25499
+ channelSecret: string;
25500
+ } | undefined;
25307
25501
  lineRichMenuId?: string | null | undefined;
25308
25502
  messengerIntegrationType?: "own" | "business" | undefined;
25309
25503
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -29531,6 +29725,16 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
29531
29725
  mobileNumber: string;
29532
29726
  apiSecret: string;
29533
29727
  }>>;
29728
+ line: z.ZodOptional<z.ZodObject<{
29729
+ channelId: z.ZodString;
29730
+ channelSecret: z.ZodString;
29731
+ }, "strip", z.ZodTypeAny, {
29732
+ channelId: string;
29733
+ channelSecret: string;
29734
+ }, {
29735
+ channelId: string;
29736
+ channelSecret: string;
29737
+ }>>;
29534
29738
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
29535
29739
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
29536
29740
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -29561,6 +29765,10 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
29561
29765
  mobileNumber: string;
29562
29766
  apiSecret: string;
29563
29767
  } | undefined;
29768
+ line?: {
29769
+ channelId: string;
29770
+ channelSecret: string;
29771
+ } | undefined;
29564
29772
  lineRichMenuId?: string | null | undefined;
29565
29773
  messengerIntegrationType?: "own" | "business" | undefined;
29566
29774
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -29591,6 +29799,10 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
29591
29799
  mobileNumber: string;
29592
29800
  apiSecret: string;
29593
29801
  } | undefined;
29802
+ line?: {
29803
+ channelId: string;
29804
+ channelSecret: string;
29805
+ } | undefined;
29594
29806
  lineRichMenuId?: string | null | undefined;
29595
29807
  messengerIntegrationType?: "own" | "business" | undefined;
29596
29808
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -29855,6 +30067,10 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
29855
30067
  mobileNumber: string;
29856
30068
  apiSecret: string;
29857
30069
  } | undefined;
30070
+ line?: {
30071
+ channelId: string;
30072
+ channelSecret: string;
30073
+ } | undefined;
29858
30074
  lineRichMenuId?: string | null | undefined;
29859
30075
  messengerIntegrationType?: "own" | "business" | undefined;
29860
30076
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -29950,6 +30166,10 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
29950
30166
  mobileNumber: string;
29951
30167
  apiSecret: string;
29952
30168
  } | undefined;
30169
+ line?: {
30170
+ channelId: string;
30171
+ channelSecret: string;
30172
+ } | undefined;
29953
30173
  lineRichMenuId?: string | null | undefined;
29954
30174
  messengerIntegrationType?: "own" | "business" | undefined;
29955
30175
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -30609,6 +30829,10 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
30609
30829
  mobileNumber: string;
30610
30830
  apiSecret: string;
30611
30831
  } | undefined;
30832
+ line?: {
30833
+ channelId: string;
30834
+ channelSecret: string;
30835
+ } | undefined;
30612
30836
  lineRichMenuId?: string | null | undefined;
30613
30837
  messengerIntegrationType?: "own" | "business" | undefined;
30614
30838
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -31038,6 +31262,10 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
31038
31262
  mobileNumber: string;
31039
31263
  apiSecret: string;
31040
31264
  } | undefined;
31265
+ line?: {
31266
+ channelId: string;
31267
+ channelSecret: string;
31268
+ } | undefined;
31041
31269
  lineRichMenuId?: string | null | undefined;
31042
31270
  messengerIntegrationType?: "own" | "business" | undefined;
31043
31271
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -33240,6 +33468,10 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
33240
33468
  mobileNumber: string;
33241
33469
  apiSecret: string;
33242
33470
  } | undefined;
33471
+ line?: {
33472
+ channelId: string;
33473
+ channelSecret: string;
33474
+ } | undefined;
33243
33475
  lineRichMenuId?: string | null | undefined;
33244
33476
  messengerIntegrationType?: "own" | "business" | undefined;
33245
33477
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -34006,6 +34238,10 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
34006
34238
  mobileNumber: string;
34007
34239
  apiSecret: string;
34008
34240
  } | undefined;
34241
+ line?: {
34242
+ channelId: string;
34243
+ channelSecret: string;
34244
+ } | undefined;
34009
34245
  lineRichMenuId?: string | null | undefined;
34010
34246
  messengerIntegrationType?: "own" | "business" | undefined;
34011
34247
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -34779,6 +35015,10 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
34779
35015
  mobileNumber: string;
34780
35016
  apiSecret: string;
34781
35017
  } | undefined;
35018
+ line?: {
35019
+ channelId: string;
35020
+ channelSecret: string;
35021
+ } | undefined;
34782
35022
  lineRichMenuId?: string | null | undefined;
34783
35023
  messengerIntegrationType?: "own" | "business" | undefined;
34784
35024
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -35540,6 +35780,10 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
35540
35780
  mobileNumber: string;
35541
35781
  apiSecret: string;
35542
35782
  } | undefined;
35783
+ line?: {
35784
+ channelId: string;
35785
+ channelSecret: string;
35786
+ } | undefined;
35543
35787
  lineRichMenuId?: string | null | undefined;
35544
35788
  messengerIntegrationType?: "own" | "business" | undefined;
35545
35789
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -36439,6 +36683,10 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
36439
36683
  mobileNumber: string;
36440
36684
  apiSecret: string;
36441
36685
  } | undefined;
36686
+ line?: {
36687
+ channelId: string;
36688
+ channelSecret: string;
36689
+ } | undefined;
36442
36690
  lineRichMenuId?: string | null | undefined;
36443
36691
  messengerIntegrationType?: "own" | "business" | undefined;
36444
36692
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -37200,6 +37448,10 @@ export declare const MessageRelevanceSchema: z.ZodObject<{
37200
37448
  mobileNumber: string;
37201
37449
  apiSecret: string;
37202
37450
  } | undefined;
37451
+ line?: {
37452
+ channelId: string;
37453
+ channelSecret: string;
37454
+ } | undefined;
37203
37455
  lineRichMenuId?: string | null | undefined;
37204
37456
  messengerIntegrationType?: "own" | "business" | undefined;
37205
37457
  facebookFeedIntegrationType?: "own" | "business" | undefined;