@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
@@ -190,6 +190,16 @@ export declare const platformWebchatContract: {
190
190
  mobileNumber: string;
191
191
  apiSecret: string;
192
192
  }>>;
193
+ line: z.ZodOptional<z.ZodObject<{
194
+ channelId: z.ZodString;
195
+ channelSecret: z.ZodString;
196
+ }, "strip", z.ZodTypeAny, {
197
+ channelId: string;
198
+ channelSecret: string;
199
+ }, {
200
+ channelId: string;
201
+ channelSecret: string;
202
+ }>>;
193
203
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
194
204
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
195
205
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -220,6 +230,10 @@ export declare const platformWebchatContract: {
220
230
  mobileNumber: string;
221
231
  apiSecret: string;
222
232
  } | undefined;
233
+ line?: {
234
+ channelId: string;
235
+ channelSecret: string;
236
+ } | undefined;
223
237
  lineRichMenuId?: string | null | undefined;
224
238
  messengerIntegrationType?: "own" | "business" | undefined;
225
239
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -250,6 +264,10 @@ export declare const platformWebchatContract: {
250
264
  mobileNumber: string;
251
265
  apiSecret: string;
252
266
  } | undefined;
267
+ line?: {
268
+ channelId: string;
269
+ channelSecret: string;
270
+ } | undefined;
253
271
  lineRichMenuId?: string | null | undefined;
254
272
  messengerIntegrationType?: "own" | "business" | undefined;
255
273
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -310,6 +328,10 @@ export declare const platformWebchatContract: {
310
328
  mobileNumber: string;
311
329
  apiSecret: string;
312
330
  } | undefined;
331
+ line?: {
332
+ channelId: string;
333
+ channelSecret: string;
334
+ } | undefined;
313
335
  lineRichMenuId?: string | null | undefined;
314
336
  messengerIntegrationType?: "own" | "business" | undefined;
315
337
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -358,6 +380,10 @@ export declare const platformWebchatContract: {
358
380
  mobileNumber: string;
359
381
  apiSecret: string;
360
382
  } | undefined;
383
+ line?: {
384
+ channelId: string;
385
+ channelSecret: string;
386
+ } | undefined;
361
387
  lineRichMenuId?: string | null | undefined;
362
388
  messengerIntegrationType?: "own" | "business" | undefined;
363
389
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -411,6 +437,10 @@ export declare const platformWebchatContract: {
411
437
  mobileNumber: string;
412
438
  apiSecret: string;
413
439
  } | undefined;
440
+ line?: {
441
+ channelId: string;
442
+ channelSecret: string;
443
+ } | undefined;
414
444
  lineRichMenuId?: string | null | undefined;
415
445
  messengerIntegrationType?: "own" | "business" | undefined;
416
446
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -503,6 +533,10 @@ export declare const platformWebchatContract: {
503
533
  mobileNumber: string;
504
534
  apiSecret: string;
505
535
  } | undefined;
536
+ line?: {
537
+ channelId: string;
538
+ channelSecret: string;
539
+ } | undefined;
506
540
  lineRichMenuId?: string | null | undefined;
507
541
  messengerIntegrationType?: "own" | "business" | undefined;
508
542
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -763,6 +797,10 @@ export declare const platformWebchatContract: {
763
797
  mobileNumber: string;
764
798
  apiSecret: string;
765
799
  } | undefined;
800
+ line?: {
801
+ channelId: string;
802
+ channelSecret: string;
803
+ } | undefined;
766
804
  lineRichMenuId?: string | null | undefined;
767
805
  messengerIntegrationType?: "own" | "business" | undefined;
768
806
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -894,6 +932,10 @@ export declare const platformWebchatContract: {
894
932
  mobileNumber: string;
895
933
  apiSecret: string;
896
934
  } | undefined;
935
+ line?: {
936
+ channelId: string;
937
+ channelSecret: string;
938
+ } | undefined;
897
939
  lineRichMenuId?: string | null | undefined;
898
940
  messengerIntegrationType?: "own" | "business" | undefined;
899
941
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -2955,6 +2997,16 @@ export declare const platformWebchatContract: {
2955
2997
  mobileNumber: string;
2956
2998
  apiSecret: string;
2957
2999
  }>>;
3000
+ line: z.ZodOptional<z.ZodObject<{
3001
+ channelId: z.ZodString;
3002
+ channelSecret: z.ZodString;
3003
+ }, "strip", z.ZodTypeAny, {
3004
+ channelId: string;
3005
+ channelSecret: string;
3006
+ }, {
3007
+ channelId: string;
3008
+ channelSecret: string;
3009
+ }>>;
2958
3010
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2959
3011
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
2960
3012
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -2985,6 +3037,10 @@ export declare const platformWebchatContract: {
2985
3037
  mobileNumber: string;
2986
3038
  apiSecret: string;
2987
3039
  } | undefined;
3040
+ line?: {
3041
+ channelId: string;
3042
+ channelSecret: string;
3043
+ } | undefined;
2988
3044
  lineRichMenuId?: string | null | undefined;
2989
3045
  messengerIntegrationType?: "own" | "business" | undefined;
2990
3046
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -3015,6 +3071,10 @@ export declare const platformWebchatContract: {
3015
3071
  mobileNumber: string;
3016
3072
  apiSecret: string;
3017
3073
  } | undefined;
3074
+ line?: {
3075
+ channelId: string;
3076
+ channelSecret: string;
3077
+ } | undefined;
3018
3078
  lineRichMenuId?: string | null | undefined;
3019
3079
  messengerIntegrationType?: "own" | "business" | undefined;
3020
3080
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -3279,6 +3339,10 @@ export declare const platformWebchatContract: {
3279
3339
  mobileNumber: string;
3280
3340
  apiSecret: string;
3281
3341
  } | undefined;
3342
+ line?: {
3343
+ channelId: string;
3344
+ channelSecret: string;
3345
+ } | undefined;
3282
3346
  lineRichMenuId?: string | null | undefined;
3283
3347
  messengerIntegrationType?: "own" | "business" | undefined;
3284
3348
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -3374,6 +3438,10 @@ export declare const platformWebchatContract: {
3374
3438
  mobileNumber: string;
3375
3439
  apiSecret: string;
3376
3440
  } | undefined;
3441
+ line?: {
3442
+ channelId: string;
3443
+ channelSecret: string;
3444
+ } | undefined;
3377
3445
  lineRichMenuId?: string | null | undefined;
3378
3446
  messengerIntegrationType?: "own" | "business" | undefined;
3379
3447
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -4033,6 +4101,10 @@ export declare const platformWebchatContract: {
4033
4101
  mobileNumber: string;
4034
4102
  apiSecret: string;
4035
4103
  } | undefined;
4104
+ line?: {
4105
+ channelId: string;
4106
+ channelSecret: string;
4107
+ } | undefined;
4036
4108
  lineRichMenuId?: string | null | undefined;
4037
4109
  messengerIntegrationType?: "own" | "business" | undefined;
4038
4110
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -4462,6 +4534,10 @@ export declare const platformWebchatContract: {
4462
4534
  mobileNumber: string;
4463
4535
  apiSecret: string;
4464
4536
  } | undefined;
4537
+ line?: {
4538
+ channelId: string;
4539
+ channelSecret: string;
4540
+ } | undefined;
4465
4541
  lineRichMenuId?: string | null | undefined;
4466
4542
  messengerIntegrationType?: "own" | "business" | undefined;
4467
4543
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -7642,6 +7718,16 @@ export declare const platformWebchatContract: {
7642
7718
  mobileNumber: string;
7643
7719
  apiSecret: string;
7644
7720
  }>>;
7721
+ line: z.ZodOptional<z.ZodObject<{
7722
+ channelId: z.ZodString;
7723
+ channelSecret: z.ZodString;
7724
+ }, "strip", z.ZodTypeAny, {
7725
+ channelId: string;
7726
+ channelSecret: string;
7727
+ }, {
7728
+ channelId: string;
7729
+ channelSecret: string;
7730
+ }>>;
7645
7731
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
7646
7732
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
7647
7733
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -7672,6 +7758,10 @@ export declare const platformWebchatContract: {
7672
7758
  mobileNumber: string;
7673
7759
  apiSecret: string;
7674
7760
  } | undefined;
7761
+ line?: {
7762
+ channelId: string;
7763
+ channelSecret: string;
7764
+ } | undefined;
7675
7765
  lineRichMenuId?: string | null | undefined;
7676
7766
  messengerIntegrationType?: "own" | "business" | undefined;
7677
7767
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -7702,6 +7792,10 @@ export declare const platformWebchatContract: {
7702
7792
  mobileNumber: string;
7703
7793
  apiSecret: string;
7704
7794
  } | undefined;
7795
+ line?: {
7796
+ channelId: string;
7797
+ channelSecret: string;
7798
+ } | undefined;
7705
7799
  lineRichMenuId?: string | null | undefined;
7706
7800
  messengerIntegrationType?: "own" | "business" | undefined;
7707
7801
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -7966,6 +8060,10 @@ export declare const platformWebchatContract: {
7966
8060
  mobileNumber: string;
7967
8061
  apiSecret: string;
7968
8062
  } | undefined;
8063
+ line?: {
8064
+ channelId: string;
8065
+ channelSecret: string;
8066
+ } | undefined;
7969
8067
  lineRichMenuId?: string | null | undefined;
7970
8068
  messengerIntegrationType?: "own" | "business" | undefined;
7971
8069
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -8061,6 +8159,10 @@ export declare const platformWebchatContract: {
8061
8159
  mobileNumber: string;
8062
8160
  apiSecret: string;
8063
8161
  } | undefined;
8162
+ line?: {
8163
+ channelId: string;
8164
+ channelSecret: string;
8165
+ } | undefined;
8064
8166
  lineRichMenuId?: string | null | undefined;
8065
8167
  messengerIntegrationType?: "own" | "business" | undefined;
8066
8168
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -8720,6 +8822,10 @@ export declare const platformWebchatContract: {
8720
8822
  mobileNumber: string;
8721
8823
  apiSecret: string;
8722
8824
  } | undefined;
8825
+ line?: {
8826
+ channelId: string;
8827
+ channelSecret: string;
8828
+ } | undefined;
8723
8829
  lineRichMenuId?: string | null | undefined;
8724
8830
  messengerIntegrationType?: "own" | "business" | undefined;
8725
8831
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -9149,6 +9255,10 @@ export declare const platformWebchatContract: {
9149
9255
  mobileNumber: string;
9150
9256
  apiSecret: string;
9151
9257
  } | undefined;
9258
+ line?: {
9259
+ channelId: string;
9260
+ channelSecret: string;
9261
+ } | undefined;
9152
9262
  lineRichMenuId?: string | null | undefined;
9153
9263
  messengerIntegrationType?: "own" | "business" | undefined;
9154
9264
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -11351,6 +11461,10 @@ export declare const platformWebchatContract: {
11351
11461
  mobileNumber: string;
11352
11462
  apiSecret: string;
11353
11463
  } | undefined;
11464
+ line?: {
11465
+ channelId: string;
11466
+ channelSecret: string;
11467
+ } | undefined;
11354
11468
  lineRichMenuId?: string | null | undefined;
11355
11469
  messengerIntegrationType?: "own" | "business" | undefined;
11356
11470
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -12117,6 +12231,10 @@ export declare const platformWebchatContract: {
12117
12231
  mobileNumber: string;
12118
12232
  apiSecret: string;
12119
12233
  } | undefined;
12234
+ line?: {
12235
+ channelId: string;
12236
+ channelSecret: string;
12237
+ } | undefined;
12120
12238
  lineRichMenuId?: string | null | undefined;
12121
12239
  messengerIntegrationType?: "own" | "business" | undefined;
12122
12240
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -12884,6 +13002,10 @@ export declare const platformWebchatContract: {
12884
13002
  mobileNumber: string;
12885
13003
  apiSecret: string;
12886
13004
  } | undefined;
13005
+ line?: {
13006
+ channelId: string;
13007
+ channelSecret: string;
13008
+ } | undefined;
12887
13009
  lineRichMenuId?: string | null | undefined;
12888
13010
  messengerIntegrationType?: "own" | "business" | undefined;
12889
13011
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -13650,6 +13772,10 @@ export declare const platformWebchatContract: {
13650
13772
  mobileNumber: string;
13651
13773
  apiSecret: string;
13652
13774
  } | undefined;
13775
+ line?: {
13776
+ channelId: string;
13777
+ channelSecret: string;
13778
+ } | undefined;
13653
13779
  lineRichMenuId?: string | null | undefined;
13654
13780
  messengerIntegrationType?: "own" | "business" | undefined;
13655
13781
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -14417,6 +14543,10 @@ export declare const platformWebchatContract: {
14417
14543
  mobileNumber: string;
14418
14544
  apiSecret: string;
14419
14545
  } | undefined;
14546
+ line?: {
14547
+ channelId: string;
14548
+ channelSecret: string;
14549
+ } | undefined;
14420
14550
  lineRichMenuId?: string | null | undefined;
14421
14551
  messengerIntegrationType?: "own" | "business" | undefined;
14422
14552
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -15183,6 +15313,10 @@ export declare const platformWebchatContract: {
15183
15313
  mobileNumber: string;
15184
15314
  apiSecret: string;
15185
15315
  } | undefined;
15316
+ line?: {
15317
+ channelId: string;
15318
+ channelSecret: string;
15319
+ } | undefined;
15186
15320
  lineRichMenuId?: string | null | undefined;
15187
15321
  messengerIntegrationType?: "own" | "business" | undefined;
15188
15322
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -15952,6 +16086,10 @@ export declare const platformWebchatContract: {
15952
16086
  mobileNumber: string;
15953
16087
  apiSecret: string;
15954
16088
  } | undefined;
16089
+ line?: {
16090
+ channelId: string;
16091
+ channelSecret: string;
16092
+ } | undefined;
15955
16093
  lineRichMenuId?: string | null | undefined;
15956
16094
  messengerIntegrationType?: "own" | "business" | undefined;
15957
16095
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -16718,6 +16856,10 @@ export declare const platformWebchatContract: {
16718
16856
  mobileNumber: string;
16719
16857
  apiSecret: string;
16720
16858
  } | undefined;
16859
+ line?: {
16860
+ channelId: string;
16861
+ channelSecret: string;
16862
+ } | undefined;
16721
16863
  lineRichMenuId?: string | null | undefined;
16722
16864
  messengerIntegrationType?: "own" | "business" | undefined;
16723
16865
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -17488,6 +17630,10 @@ export declare const platformWebchatContract: {
17488
17630
  mobileNumber: string;
17489
17631
  apiSecret: string;
17490
17632
  } | undefined;
17633
+ line?: {
17634
+ channelId: string;
17635
+ channelSecret: string;
17636
+ } | undefined;
17491
17637
  lineRichMenuId?: string | null | undefined;
17492
17638
  messengerIntegrationType?: "own" | "business" | undefined;
17493
17639
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -18254,6 +18400,10 @@ export declare const platformWebchatContract: {
18254
18400
  mobileNumber: string;
18255
18401
  apiSecret: string;
18256
18402
  } | undefined;
18403
+ line?: {
18404
+ channelId: string;
18405
+ channelSecret: string;
18406
+ } | undefined;
18257
18407
  lineRichMenuId?: string | null | undefined;
18258
18408
  messengerIntegrationType?: "own" | "business" | undefined;
18259
18409
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -19071,6 +19221,16 @@ export declare const platformWebchatContract: {
19071
19221
  mobileNumber: string;
19072
19222
  apiSecret: string;
19073
19223
  }>>;
19224
+ line: z.ZodOptional<z.ZodObject<{
19225
+ channelId: z.ZodString;
19226
+ channelSecret: z.ZodString;
19227
+ }, "strip", z.ZodTypeAny, {
19228
+ channelId: string;
19229
+ channelSecret: string;
19230
+ }, {
19231
+ channelId: string;
19232
+ channelSecret: string;
19233
+ }>>;
19074
19234
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
19075
19235
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
19076
19236
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -19101,6 +19261,10 @@ export declare const platformWebchatContract: {
19101
19261
  mobileNumber: string;
19102
19262
  apiSecret: string;
19103
19263
  } | undefined;
19264
+ line?: {
19265
+ channelId: string;
19266
+ channelSecret: string;
19267
+ } | undefined;
19104
19268
  lineRichMenuId?: string | null | undefined;
19105
19269
  messengerIntegrationType?: "own" | "business" | undefined;
19106
19270
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -19131,6 +19295,10 @@ export declare const platformWebchatContract: {
19131
19295
  mobileNumber: string;
19132
19296
  apiSecret: string;
19133
19297
  } | undefined;
19298
+ line?: {
19299
+ channelId: string;
19300
+ channelSecret: string;
19301
+ } | undefined;
19134
19302
  lineRichMenuId?: string | null | undefined;
19135
19303
  messengerIntegrationType?: "own" | "business" | undefined;
19136
19304
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -19395,6 +19563,10 @@ export declare const platformWebchatContract: {
19395
19563
  mobileNumber: string;
19396
19564
  apiSecret: string;
19397
19565
  } | undefined;
19566
+ line?: {
19567
+ channelId: string;
19568
+ channelSecret: string;
19569
+ } | undefined;
19398
19570
  lineRichMenuId?: string | null | undefined;
19399
19571
  messengerIntegrationType?: "own" | "business" | undefined;
19400
19572
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -19490,6 +19662,10 @@ export declare const platformWebchatContract: {
19490
19662
  mobileNumber: string;
19491
19663
  apiSecret: string;
19492
19664
  } | undefined;
19665
+ line?: {
19666
+ channelId: string;
19667
+ channelSecret: string;
19668
+ } | undefined;
19493
19669
  lineRichMenuId?: string | null | undefined;
19494
19670
  messengerIntegrationType?: "own" | "business" | undefined;
19495
19671
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -19587,6 +19763,10 @@ export declare const platformWebchatContract: {
19587
19763
  mobileNumber: string;
19588
19764
  apiSecret: string;
19589
19765
  } | undefined;
19766
+ line?: {
19767
+ channelId: string;
19768
+ channelSecret: string;
19769
+ } | undefined;
19590
19770
  lineRichMenuId?: string | null | undefined;
19591
19771
  messengerIntegrationType?: "own" | "business" | undefined;
19592
19772
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -19685,6 +19865,10 @@ export declare const platformWebchatContract: {
19685
19865
  mobileNumber: string;
19686
19866
  apiSecret: string;
19687
19867
  } | undefined;
19868
+ line?: {
19869
+ channelId: string;
19870
+ channelSecret: string;
19871
+ } | undefined;
19688
19872
  lineRichMenuId?: string | null | undefined;
19689
19873
  messengerIntegrationType?: "own" | "business" | undefined;
19690
19874
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -19852,6 +20036,16 @@ export declare const platformWebchatContract: {
19852
20036
  mobileNumber: string;
19853
20037
  apiSecret: string;
19854
20038
  }>>;
20039
+ line: z.ZodOptional<z.ZodObject<{
20040
+ channelId: z.ZodString;
20041
+ channelSecret: z.ZodString;
20042
+ }, "strip", z.ZodTypeAny, {
20043
+ channelId: string;
20044
+ channelSecret: string;
20045
+ }, {
20046
+ channelId: string;
20047
+ channelSecret: string;
20048
+ }>>;
19855
20049
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
19856
20050
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
19857
20051
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -19882,6 +20076,10 @@ export declare const platformWebchatContract: {
19882
20076
  mobileNumber: string;
19883
20077
  apiSecret: string;
19884
20078
  } | undefined;
20079
+ line?: {
20080
+ channelId: string;
20081
+ channelSecret: string;
20082
+ } | undefined;
19885
20083
  lineRichMenuId?: string | null | undefined;
19886
20084
  messengerIntegrationType?: "own" | "business" | undefined;
19887
20085
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -19912,6 +20110,10 @@ export declare const platformWebchatContract: {
19912
20110
  mobileNumber: string;
19913
20111
  apiSecret: string;
19914
20112
  } | undefined;
20113
+ line?: {
20114
+ channelId: string;
20115
+ channelSecret: string;
20116
+ } | undefined;
19915
20117
  lineRichMenuId?: string | null | undefined;
19916
20118
  messengerIntegrationType?: "own" | "business" | undefined;
19917
20119
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -19972,6 +20174,10 @@ export declare const platformWebchatContract: {
19972
20174
  mobileNumber: string;
19973
20175
  apiSecret: string;
19974
20176
  } | undefined;
20177
+ line?: {
20178
+ channelId: string;
20179
+ channelSecret: string;
20180
+ } | undefined;
19975
20181
  lineRichMenuId?: string | null | undefined;
19976
20182
  messengerIntegrationType?: "own" | "business" | undefined;
19977
20183
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -20020,6 +20226,10 @@ export declare const platformWebchatContract: {
20020
20226
  mobileNumber: string;
20021
20227
  apiSecret: string;
20022
20228
  } | undefined;
20229
+ line?: {
20230
+ channelId: string;
20231
+ channelSecret: string;
20232
+ } | undefined;
20023
20233
  lineRichMenuId?: string | null | undefined;
20024
20234
  messengerIntegrationType?: "own" | "business" | undefined;
20025
20235
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -20070,6 +20280,10 @@ export declare const platformWebchatContract: {
20070
20280
  mobileNumber: string;
20071
20281
  apiSecret: string;
20072
20282
  } | undefined;
20283
+ line?: {
20284
+ channelId: string;
20285
+ channelSecret: string;
20286
+ } | undefined;
20073
20287
  lineRichMenuId?: string | null | undefined;
20074
20288
  messengerIntegrationType?: "own" | "business" | undefined;
20075
20289
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -20121,6 +20335,10 @@ export declare const platformWebchatContract: {
20121
20335
  mobileNumber: string;
20122
20336
  apiSecret: string;
20123
20337
  } | undefined;
20338
+ line?: {
20339
+ channelId: string;
20340
+ channelSecret: string;
20341
+ } | undefined;
20124
20342
  lineRichMenuId?: string | null | undefined;
20125
20343
  messengerIntegrationType?: "own" | "business" | undefined;
20126
20344
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -20242,6 +20460,16 @@ export declare const platformWebchatContract: {
20242
20460
  mobileNumber: string;
20243
20461
  apiSecret: string;
20244
20462
  }>>;
20463
+ line: z.ZodOptional<z.ZodObject<{
20464
+ channelId: z.ZodString;
20465
+ channelSecret: z.ZodString;
20466
+ }, "strip", z.ZodTypeAny, {
20467
+ channelId: string;
20468
+ channelSecret: string;
20469
+ }, {
20470
+ channelId: string;
20471
+ channelSecret: string;
20472
+ }>>;
20245
20473
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
20246
20474
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
20247
20475
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -20272,6 +20500,10 @@ export declare const platformWebchatContract: {
20272
20500
  mobileNumber: string;
20273
20501
  apiSecret: string;
20274
20502
  } | undefined;
20503
+ line?: {
20504
+ channelId: string;
20505
+ channelSecret: string;
20506
+ } | undefined;
20275
20507
  lineRichMenuId?: string | null | undefined;
20276
20508
  messengerIntegrationType?: "own" | "business" | undefined;
20277
20509
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -20302,6 +20534,10 @@ export declare const platformWebchatContract: {
20302
20534
  mobileNumber: string;
20303
20535
  apiSecret: string;
20304
20536
  } | undefined;
20537
+ line?: {
20538
+ channelId: string;
20539
+ channelSecret: string;
20540
+ } | undefined;
20305
20541
  lineRichMenuId?: string | null | undefined;
20306
20542
  messengerIntegrationType?: "own" | "business" | undefined;
20307
20543
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -20362,6 +20598,10 @@ export declare const platformWebchatContract: {
20362
20598
  mobileNumber: string;
20363
20599
  apiSecret: string;
20364
20600
  } | undefined;
20601
+ line?: {
20602
+ channelId: string;
20603
+ channelSecret: string;
20604
+ } | undefined;
20365
20605
  lineRichMenuId?: string | null | undefined;
20366
20606
  messengerIntegrationType?: "own" | "business" | undefined;
20367
20607
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -20410,6 +20650,10 @@ export declare const platformWebchatContract: {
20410
20650
  mobileNumber: string;
20411
20651
  apiSecret: string;
20412
20652
  } | undefined;
20653
+ line?: {
20654
+ channelId: string;
20655
+ channelSecret: string;
20656
+ } | undefined;
20413
20657
  lineRichMenuId?: string | null | undefined;
20414
20658
  messengerIntegrationType?: "own" | "business" | undefined;
20415
20659
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -20460,6 +20704,10 @@ export declare const platformWebchatContract: {
20460
20704
  mobileNumber: string;
20461
20705
  apiSecret: string;
20462
20706
  } | undefined;
20707
+ line?: {
20708
+ channelId: string;
20709
+ channelSecret: string;
20710
+ } | undefined;
20463
20711
  lineRichMenuId?: string | null | undefined;
20464
20712
  messengerIntegrationType?: "own" | "business" | undefined;
20465
20713
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -20511,6 +20759,10 @@ export declare const platformWebchatContract: {
20511
20759
  mobileNumber: string;
20512
20760
  apiSecret: string;
20513
20761
  } | undefined;
20762
+ line?: {
20763
+ channelId: string;
20764
+ channelSecret: string;
20765
+ } | undefined;
20514
20766
  lineRichMenuId?: string | null | undefined;
20515
20767
  messengerIntegrationType?: "own" | "business" | undefined;
20516
20768
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -20632,6 +20884,16 @@ export declare const platformWebchatContract: {
20632
20884
  mobileNumber: string;
20633
20885
  apiSecret: string;
20634
20886
  }>>;
20887
+ line: z.ZodOptional<z.ZodObject<{
20888
+ channelId: z.ZodString;
20889
+ channelSecret: z.ZodString;
20890
+ }, "strip", z.ZodTypeAny, {
20891
+ channelId: string;
20892
+ channelSecret: string;
20893
+ }, {
20894
+ channelId: string;
20895
+ channelSecret: string;
20896
+ }>>;
20635
20897
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
20636
20898
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
20637
20899
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -20662,6 +20924,10 @@ export declare const platformWebchatContract: {
20662
20924
  mobileNumber: string;
20663
20925
  apiSecret: string;
20664
20926
  } | undefined;
20927
+ line?: {
20928
+ channelId: string;
20929
+ channelSecret: string;
20930
+ } | undefined;
20665
20931
  lineRichMenuId?: string | null | undefined;
20666
20932
  messengerIntegrationType?: "own" | "business" | undefined;
20667
20933
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -20692,6 +20958,10 @@ export declare const platformWebchatContract: {
20692
20958
  mobileNumber: string;
20693
20959
  apiSecret: string;
20694
20960
  } | undefined;
20961
+ line?: {
20962
+ channelId: string;
20963
+ channelSecret: string;
20964
+ } | undefined;
20695
20965
  lineRichMenuId?: string | null | undefined;
20696
20966
  messengerIntegrationType?: "own" | "business" | undefined;
20697
20967
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -20752,6 +21022,10 @@ export declare const platformWebchatContract: {
20752
21022
  mobileNumber: string;
20753
21023
  apiSecret: string;
20754
21024
  } | undefined;
21025
+ line?: {
21026
+ channelId: string;
21027
+ channelSecret: string;
21028
+ } | undefined;
20755
21029
  lineRichMenuId?: string | null | undefined;
20756
21030
  messengerIntegrationType?: "own" | "business" | undefined;
20757
21031
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -20800,6 +21074,10 @@ export declare const platformWebchatContract: {
20800
21074
  mobileNumber: string;
20801
21075
  apiSecret: string;
20802
21076
  } | undefined;
21077
+ line?: {
21078
+ channelId: string;
21079
+ channelSecret: string;
21080
+ } | undefined;
20803
21081
  lineRichMenuId?: string | null | undefined;
20804
21082
  messengerIntegrationType?: "own" | "business" | undefined;
20805
21083
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -20850,6 +21128,10 @@ export declare const platformWebchatContract: {
20850
21128
  mobileNumber: string;
20851
21129
  apiSecret: string;
20852
21130
  } | undefined;
21131
+ line?: {
21132
+ channelId: string;
21133
+ channelSecret: string;
21134
+ } | undefined;
20853
21135
  lineRichMenuId?: string | null | undefined;
20854
21136
  messengerIntegrationType?: "own" | "business" | undefined;
20855
21137
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -20901,6 +21183,10 @@ export declare const platformWebchatContract: {
20901
21183
  mobileNumber: string;
20902
21184
  apiSecret: string;
20903
21185
  } | undefined;
21186
+ line?: {
21187
+ channelId: string;
21188
+ channelSecret: string;
21189
+ } | undefined;
20904
21190
  lineRichMenuId?: string | null | undefined;
20905
21191
  messengerIntegrationType?: "own" | "business" | undefined;
20906
21192
  facebookFeedIntegrationType?: "own" | "business" | undefined;