@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
@@ -193,6 +193,16 @@ export declare const instagramContract: {
193
193
  mobileNumber: string;
194
194
  apiSecret: string;
195
195
  }>>;
196
+ line: z.ZodOptional<z.ZodObject<{
197
+ channelId: z.ZodString;
198
+ channelSecret: z.ZodString;
199
+ }, "strip", z.ZodTypeAny, {
200
+ channelId: string;
201
+ channelSecret: string;
202
+ }, {
203
+ channelId: string;
204
+ channelSecret: string;
205
+ }>>;
196
206
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
197
207
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
198
208
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -223,6 +233,10 @@ export declare const instagramContract: {
223
233
  mobileNumber: string;
224
234
  apiSecret: string;
225
235
  } | undefined;
236
+ line?: {
237
+ channelId: string;
238
+ channelSecret: string;
239
+ } | undefined;
226
240
  lineRichMenuId?: string | null | undefined;
227
241
  messengerIntegrationType?: "own" | "business" | undefined;
228
242
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -253,6 +267,10 @@ export declare const instagramContract: {
253
267
  mobileNumber: string;
254
268
  apiSecret: string;
255
269
  } | undefined;
270
+ line?: {
271
+ channelId: string;
272
+ channelSecret: string;
273
+ } | undefined;
256
274
  lineRichMenuId?: string | null | undefined;
257
275
  messengerIntegrationType?: "own" | "business" | undefined;
258
276
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -313,6 +331,10 @@ export declare const instagramContract: {
313
331
  mobileNumber: string;
314
332
  apiSecret: string;
315
333
  } | undefined;
334
+ line?: {
335
+ channelId: string;
336
+ channelSecret: string;
337
+ } | undefined;
316
338
  lineRichMenuId?: string | null | undefined;
317
339
  messengerIntegrationType?: "own" | "business" | undefined;
318
340
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -361,6 +383,10 @@ export declare const instagramContract: {
361
383
  mobileNumber: string;
362
384
  apiSecret: string;
363
385
  } | undefined;
386
+ line?: {
387
+ channelId: string;
388
+ channelSecret: string;
389
+ } | undefined;
364
390
  lineRichMenuId?: string | null | undefined;
365
391
  messengerIntegrationType?: "own" | "business" | undefined;
366
392
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -414,6 +440,10 @@ export declare const instagramContract: {
414
440
  mobileNumber: string;
415
441
  apiSecret: string;
416
442
  } | undefined;
443
+ line?: {
444
+ channelId: string;
445
+ channelSecret: string;
446
+ } | undefined;
417
447
  lineRichMenuId?: string | null | undefined;
418
448
  messengerIntegrationType?: "own" | "business" | undefined;
419
449
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -506,6 +536,10 @@ export declare const instagramContract: {
506
536
  mobileNumber: string;
507
537
  apiSecret: string;
508
538
  } | undefined;
539
+ line?: {
540
+ channelId: string;
541
+ channelSecret: string;
542
+ } | undefined;
509
543
  lineRichMenuId?: string | null | undefined;
510
544
  messengerIntegrationType?: "own" | "business" | undefined;
511
545
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -766,6 +800,10 @@ export declare const instagramContract: {
766
800
  mobileNumber: string;
767
801
  apiSecret: string;
768
802
  } | undefined;
803
+ line?: {
804
+ channelId: string;
805
+ channelSecret: string;
806
+ } | undefined;
769
807
  lineRichMenuId?: string | null | undefined;
770
808
  messengerIntegrationType?: "own" | "business" | undefined;
771
809
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -897,6 +935,10 @@ export declare const instagramContract: {
897
935
  mobileNumber: string;
898
936
  apiSecret: string;
899
937
  } | undefined;
938
+ line?: {
939
+ channelId: string;
940
+ channelSecret: string;
941
+ } | undefined;
900
942
  lineRichMenuId?: string | null | undefined;
901
943
  messengerIntegrationType?: "own" | "business" | undefined;
902
944
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -2958,6 +3000,16 @@ export declare const instagramContract: {
2958
3000
  mobileNumber: string;
2959
3001
  apiSecret: string;
2960
3002
  }>>;
3003
+ line: z.ZodOptional<z.ZodObject<{
3004
+ channelId: z.ZodString;
3005
+ channelSecret: z.ZodString;
3006
+ }, "strip", z.ZodTypeAny, {
3007
+ channelId: string;
3008
+ channelSecret: string;
3009
+ }, {
3010
+ channelId: string;
3011
+ channelSecret: string;
3012
+ }>>;
2961
3013
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2962
3014
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
2963
3015
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -2988,6 +3040,10 @@ export declare const instagramContract: {
2988
3040
  mobileNumber: string;
2989
3041
  apiSecret: string;
2990
3042
  } | undefined;
3043
+ line?: {
3044
+ channelId: string;
3045
+ channelSecret: string;
3046
+ } | undefined;
2991
3047
  lineRichMenuId?: string | null | undefined;
2992
3048
  messengerIntegrationType?: "own" | "business" | undefined;
2993
3049
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -3018,6 +3074,10 @@ export declare const instagramContract: {
3018
3074
  mobileNumber: string;
3019
3075
  apiSecret: string;
3020
3076
  } | undefined;
3077
+ line?: {
3078
+ channelId: string;
3079
+ channelSecret: string;
3080
+ } | undefined;
3021
3081
  lineRichMenuId?: string | null | undefined;
3022
3082
  messengerIntegrationType?: "own" | "business" | undefined;
3023
3083
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -3282,6 +3342,10 @@ export declare const instagramContract: {
3282
3342
  mobileNumber: string;
3283
3343
  apiSecret: string;
3284
3344
  } | undefined;
3345
+ line?: {
3346
+ channelId: string;
3347
+ channelSecret: string;
3348
+ } | undefined;
3285
3349
  lineRichMenuId?: string | null | undefined;
3286
3350
  messengerIntegrationType?: "own" | "business" | undefined;
3287
3351
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -3377,6 +3441,10 @@ export declare const instagramContract: {
3377
3441
  mobileNumber: string;
3378
3442
  apiSecret: string;
3379
3443
  } | undefined;
3444
+ line?: {
3445
+ channelId: string;
3446
+ channelSecret: string;
3447
+ } | undefined;
3380
3448
  lineRichMenuId?: string | null | undefined;
3381
3449
  messengerIntegrationType?: "own" | "business" | undefined;
3382
3450
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -4036,6 +4104,10 @@ export declare const instagramContract: {
4036
4104
  mobileNumber: string;
4037
4105
  apiSecret: string;
4038
4106
  } | undefined;
4107
+ line?: {
4108
+ channelId: string;
4109
+ channelSecret: string;
4110
+ } | undefined;
4039
4111
  lineRichMenuId?: string | null | undefined;
4040
4112
  messengerIntegrationType?: "own" | "business" | undefined;
4041
4113
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -4465,6 +4537,10 @@ export declare const instagramContract: {
4465
4537
  mobileNumber: string;
4466
4538
  apiSecret: string;
4467
4539
  } | undefined;
4540
+ line?: {
4541
+ channelId: string;
4542
+ channelSecret: string;
4543
+ } | undefined;
4468
4544
  lineRichMenuId?: string | null | undefined;
4469
4545
  messengerIntegrationType?: "own" | "business" | undefined;
4470
4546
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -7645,6 +7721,16 @@ export declare const instagramContract: {
7645
7721
  mobileNumber: string;
7646
7722
  apiSecret: string;
7647
7723
  }>>;
7724
+ line: z.ZodOptional<z.ZodObject<{
7725
+ channelId: z.ZodString;
7726
+ channelSecret: z.ZodString;
7727
+ }, "strip", z.ZodTypeAny, {
7728
+ channelId: string;
7729
+ channelSecret: string;
7730
+ }, {
7731
+ channelId: string;
7732
+ channelSecret: string;
7733
+ }>>;
7648
7734
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
7649
7735
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
7650
7736
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -7675,6 +7761,10 @@ export declare const instagramContract: {
7675
7761
  mobileNumber: string;
7676
7762
  apiSecret: string;
7677
7763
  } | undefined;
7764
+ line?: {
7765
+ channelId: string;
7766
+ channelSecret: string;
7767
+ } | undefined;
7678
7768
  lineRichMenuId?: string | null | undefined;
7679
7769
  messengerIntegrationType?: "own" | "business" | undefined;
7680
7770
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -7705,6 +7795,10 @@ export declare const instagramContract: {
7705
7795
  mobileNumber: string;
7706
7796
  apiSecret: string;
7707
7797
  } | undefined;
7798
+ line?: {
7799
+ channelId: string;
7800
+ channelSecret: string;
7801
+ } | undefined;
7708
7802
  lineRichMenuId?: string | null | undefined;
7709
7803
  messengerIntegrationType?: "own" | "business" | undefined;
7710
7804
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -7969,6 +8063,10 @@ export declare const instagramContract: {
7969
8063
  mobileNumber: string;
7970
8064
  apiSecret: string;
7971
8065
  } | undefined;
8066
+ line?: {
8067
+ channelId: string;
8068
+ channelSecret: string;
8069
+ } | undefined;
7972
8070
  lineRichMenuId?: string | null | undefined;
7973
8071
  messengerIntegrationType?: "own" | "business" | undefined;
7974
8072
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -8064,6 +8162,10 @@ export declare const instagramContract: {
8064
8162
  mobileNumber: string;
8065
8163
  apiSecret: string;
8066
8164
  } | undefined;
8165
+ line?: {
8166
+ channelId: string;
8167
+ channelSecret: string;
8168
+ } | undefined;
8067
8169
  lineRichMenuId?: string | null | undefined;
8068
8170
  messengerIntegrationType?: "own" | "business" | undefined;
8069
8171
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -8723,6 +8825,10 @@ export declare const instagramContract: {
8723
8825
  mobileNumber: string;
8724
8826
  apiSecret: string;
8725
8827
  } | undefined;
8828
+ line?: {
8829
+ channelId: string;
8830
+ channelSecret: string;
8831
+ } | undefined;
8726
8832
  lineRichMenuId?: string | null | undefined;
8727
8833
  messengerIntegrationType?: "own" | "business" | undefined;
8728
8834
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -9152,6 +9258,10 @@ export declare const instagramContract: {
9152
9258
  mobileNumber: string;
9153
9259
  apiSecret: string;
9154
9260
  } | undefined;
9261
+ line?: {
9262
+ channelId: string;
9263
+ channelSecret: string;
9264
+ } | undefined;
9155
9265
  lineRichMenuId?: string | null | undefined;
9156
9266
  messengerIntegrationType?: "own" | "business" | undefined;
9157
9267
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -11354,6 +11464,10 @@ export declare const instagramContract: {
11354
11464
  mobileNumber: string;
11355
11465
  apiSecret: string;
11356
11466
  } | undefined;
11467
+ line?: {
11468
+ channelId: string;
11469
+ channelSecret: string;
11470
+ } | undefined;
11357
11471
  lineRichMenuId?: string | null | undefined;
11358
11472
  messengerIntegrationType?: "own" | "business" | undefined;
11359
11473
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -12120,6 +12234,10 @@ export declare const instagramContract: {
12120
12234
  mobileNumber: string;
12121
12235
  apiSecret: string;
12122
12236
  } | undefined;
12237
+ line?: {
12238
+ channelId: string;
12239
+ channelSecret: string;
12240
+ } | undefined;
12123
12241
  lineRichMenuId?: string | null | undefined;
12124
12242
  messengerIntegrationType?: "own" | "business" | undefined;
12125
12243
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -12887,6 +13005,10 @@ export declare const instagramContract: {
12887
13005
  mobileNumber: string;
12888
13006
  apiSecret: string;
12889
13007
  } | undefined;
13008
+ line?: {
13009
+ channelId: string;
13010
+ channelSecret: string;
13011
+ } | undefined;
12890
13012
  lineRichMenuId?: string | null | undefined;
12891
13013
  messengerIntegrationType?: "own" | "business" | undefined;
12892
13014
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -13653,6 +13775,10 @@ export declare const instagramContract: {
13653
13775
  mobileNumber: string;
13654
13776
  apiSecret: string;
13655
13777
  } | undefined;
13778
+ line?: {
13779
+ channelId: string;
13780
+ channelSecret: string;
13781
+ } | undefined;
13656
13782
  lineRichMenuId?: string | null | undefined;
13657
13783
  messengerIntegrationType?: "own" | "business" | undefined;
13658
13784
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -14420,6 +14546,10 @@ export declare const instagramContract: {
14420
14546
  mobileNumber: string;
14421
14547
  apiSecret: string;
14422
14548
  } | undefined;
14549
+ line?: {
14550
+ channelId: string;
14551
+ channelSecret: string;
14552
+ } | undefined;
14423
14553
  lineRichMenuId?: string | null | undefined;
14424
14554
  messengerIntegrationType?: "own" | "business" | undefined;
14425
14555
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -15186,6 +15316,10 @@ export declare const instagramContract: {
15186
15316
  mobileNumber: string;
15187
15317
  apiSecret: string;
15188
15318
  } | undefined;
15319
+ line?: {
15320
+ channelId: string;
15321
+ channelSecret: string;
15322
+ } | undefined;
15189
15323
  lineRichMenuId?: string | null | undefined;
15190
15324
  messengerIntegrationType?: "own" | "business" | undefined;
15191
15325
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -15955,6 +16089,10 @@ export declare const instagramContract: {
15955
16089
  mobileNumber: string;
15956
16090
  apiSecret: string;
15957
16091
  } | undefined;
16092
+ line?: {
16093
+ channelId: string;
16094
+ channelSecret: string;
16095
+ } | undefined;
15958
16096
  lineRichMenuId?: string | null | undefined;
15959
16097
  messengerIntegrationType?: "own" | "business" | undefined;
15960
16098
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -16721,6 +16859,10 @@ export declare const instagramContract: {
16721
16859
  mobileNumber: string;
16722
16860
  apiSecret: string;
16723
16861
  } | undefined;
16862
+ line?: {
16863
+ channelId: string;
16864
+ channelSecret: string;
16865
+ } | undefined;
16724
16866
  lineRichMenuId?: string | null | undefined;
16725
16867
  messengerIntegrationType?: "own" | "business" | undefined;
16726
16868
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -17491,6 +17633,10 @@ export declare const instagramContract: {
17491
17633
  mobileNumber: string;
17492
17634
  apiSecret: string;
17493
17635
  } | undefined;
17636
+ line?: {
17637
+ channelId: string;
17638
+ channelSecret: string;
17639
+ } | undefined;
17494
17640
  lineRichMenuId?: string | null | undefined;
17495
17641
  messengerIntegrationType?: "own" | "business" | undefined;
17496
17642
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -18257,6 +18403,10 @@ export declare const instagramContract: {
18257
18403
  mobileNumber: string;
18258
18404
  apiSecret: string;
18259
18405
  } | undefined;
18406
+ line?: {
18407
+ channelId: string;
18408
+ channelSecret: string;
18409
+ } | undefined;
18260
18410
  lineRichMenuId?: string | null | undefined;
18261
18411
  messengerIntegrationType?: "own" | "business" | undefined;
18262
18412
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -18963,6 +19113,16 @@ export declare const instagramContract: {
18963
19113
  mobileNumber: string;
18964
19114
  apiSecret: string;
18965
19115
  }>>;
19116
+ line: z.ZodOptional<z.ZodObject<{
19117
+ channelId: z.ZodString;
19118
+ channelSecret: z.ZodString;
19119
+ }, "strip", z.ZodTypeAny, {
19120
+ channelId: string;
19121
+ channelSecret: string;
19122
+ }, {
19123
+ channelId: string;
19124
+ channelSecret: string;
19125
+ }>>;
18966
19126
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
18967
19127
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
18968
19128
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -18993,6 +19153,10 @@ export declare const instagramContract: {
18993
19153
  mobileNumber: string;
18994
19154
  apiSecret: string;
18995
19155
  } | undefined;
19156
+ line?: {
19157
+ channelId: string;
19158
+ channelSecret: string;
19159
+ } | undefined;
18996
19160
  lineRichMenuId?: string | null | undefined;
18997
19161
  messengerIntegrationType?: "own" | "business" | undefined;
18998
19162
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -19023,6 +19187,10 @@ export declare const instagramContract: {
19023
19187
  mobileNumber: string;
19024
19188
  apiSecret: string;
19025
19189
  } | undefined;
19190
+ line?: {
19191
+ channelId: string;
19192
+ channelSecret: string;
19193
+ } | undefined;
19026
19194
  lineRichMenuId?: string | null | undefined;
19027
19195
  messengerIntegrationType?: "own" | "business" | undefined;
19028
19196
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -19083,6 +19251,10 @@ export declare const instagramContract: {
19083
19251
  mobileNumber: string;
19084
19252
  apiSecret: string;
19085
19253
  } | undefined;
19254
+ line?: {
19255
+ channelId: string;
19256
+ channelSecret: string;
19257
+ } | undefined;
19086
19258
  lineRichMenuId?: string | null | undefined;
19087
19259
  messengerIntegrationType?: "own" | "business" | undefined;
19088
19260
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -19131,6 +19303,10 @@ export declare const instagramContract: {
19131
19303
  mobileNumber: string;
19132
19304
  apiSecret: string;
19133
19305
  } | undefined;
19306
+ line?: {
19307
+ channelId: string;
19308
+ channelSecret: string;
19309
+ } | undefined;
19134
19310
  lineRichMenuId?: string | null | undefined;
19135
19311
  messengerIntegrationType?: "own" | "business" | undefined;
19136
19312
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -19218,6 +19394,16 @@ export declare const instagramContract: {
19218
19394
  mobileNumber: string;
19219
19395
  apiSecret: string;
19220
19396
  }>>;
19397
+ line: z.ZodOptional<z.ZodObject<{
19398
+ channelId: z.ZodString;
19399
+ channelSecret: z.ZodString;
19400
+ }, "strip", z.ZodTypeAny, {
19401
+ channelId: string;
19402
+ channelSecret: string;
19403
+ }, {
19404
+ channelId: string;
19405
+ channelSecret: string;
19406
+ }>>;
19221
19407
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
19222
19408
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
19223
19409
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -19248,6 +19434,10 @@ export declare const instagramContract: {
19248
19434
  mobileNumber: string;
19249
19435
  apiSecret: string;
19250
19436
  } | undefined;
19437
+ line?: {
19438
+ channelId: string;
19439
+ channelSecret: string;
19440
+ } | undefined;
19251
19441
  lineRichMenuId?: string | null | undefined;
19252
19442
  messengerIntegrationType?: "own" | "business" | undefined;
19253
19443
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -19278,6 +19468,10 @@ export declare const instagramContract: {
19278
19468
  mobileNumber: string;
19279
19469
  apiSecret: string;
19280
19470
  } | undefined;
19471
+ line?: {
19472
+ channelId: string;
19473
+ channelSecret: string;
19474
+ } | undefined;
19281
19475
  lineRichMenuId?: string | null | undefined;
19282
19476
  messengerIntegrationType?: "own" | "business" | undefined;
19283
19477
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -19338,6 +19532,10 @@ export declare const instagramContract: {
19338
19532
  mobileNumber: string;
19339
19533
  apiSecret: string;
19340
19534
  } | undefined;
19535
+ line?: {
19536
+ channelId: string;
19537
+ channelSecret: string;
19538
+ } | undefined;
19341
19539
  lineRichMenuId?: string | null | undefined;
19342
19540
  messengerIntegrationType?: "own" | "business" | undefined;
19343
19541
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -19386,6 +19584,10 @@ export declare const instagramContract: {
19386
19584
  mobileNumber: string;
19387
19585
  apiSecret: string;
19388
19586
  } | undefined;
19587
+ line?: {
19588
+ channelId: string;
19589
+ channelSecret: string;
19590
+ } | undefined;
19389
19591
  lineRichMenuId?: string | null | undefined;
19390
19592
  messengerIntegrationType?: "own" | "business" | undefined;
19391
19593
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -19436,6 +19638,10 @@ export declare const instagramContract: {
19436
19638
  mobileNumber: string;
19437
19639
  apiSecret: string;
19438
19640
  } | undefined;
19641
+ line?: {
19642
+ channelId: string;
19643
+ channelSecret: string;
19644
+ } | undefined;
19439
19645
  lineRichMenuId?: string | null | undefined;
19440
19646
  messengerIntegrationType?: "own" | "business" | undefined;
19441
19647
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -19487,6 +19693,10 @@ export declare const instagramContract: {
19487
19693
  mobileNumber: string;
19488
19694
  apiSecret: string;
19489
19695
  } | undefined;
19696
+ line?: {
19697
+ channelId: string;
19698
+ channelSecret: string;
19699
+ } | undefined;
19490
19700
  lineRichMenuId?: string | null | undefined;
19491
19701
  messengerIntegrationType?: "own" | "business" | undefined;
19492
19702
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -19596,6 +19806,16 @@ export declare const instagramContract: {
19596
19806
  mobileNumber: string;
19597
19807
  apiSecret: string;
19598
19808
  }>>;
19809
+ line: z.ZodOptional<z.ZodObject<{
19810
+ channelId: z.ZodString;
19811
+ channelSecret: z.ZodString;
19812
+ }, "strip", z.ZodTypeAny, {
19813
+ channelId: string;
19814
+ channelSecret: string;
19815
+ }, {
19816
+ channelId: string;
19817
+ channelSecret: string;
19818
+ }>>;
19599
19819
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
19600
19820
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
19601
19821
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -19626,6 +19846,10 @@ export declare const instagramContract: {
19626
19846
  mobileNumber: string;
19627
19847
  apiSecret: string;
19628
19848
  } | undefined;
19849
+ line?: {
19850
+ channelId: string;
19851
+ channelSecret: string;
19852
+ } | undefined;
19629
19853
  lineRichMenuId?: string | null | undefined;
19630
19854
  messengerIntegrationType?: "own" | "business" | undefined;
19631
19855
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -19656,6 +19880,10 @@ export declare const instagramContract: {
19656
19880
  mobileNumber: string;
19657
19881
  apiSecret: string;
19658
19882
  } | undefined;
19883
+ line?: {
19884
+ channelId: string;
19885
+ channelSecret: string;
19886
+ } | undefined;
19659
19887
  lineRichMenuId?: string | null | undefined;
19660
19888
  messengerIntegrationType?: "own" | "business" | undefined;
19661
19889
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -19716,6 +19944,10 @@ export declare const instagramContract: {
19716
19944
  mobileNumber: string;
19717
19945
  apiSecret: string;
19718
19946
  } | undefined;
19947
+ line?: {
19948
+ channelId: string;
19949
+ channelSecret: string;
19950
+ } | undefined;
19719
19951
  lineRichMenuId?: string | null | undefined;
19720
19952
  messengerIntegrationType?: "own" | "business" | undefined;
19721
19953
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -19764,6 +19996,10 @@ export declare const instagramContract: {
19764
19996
  mobileNumber: string;
19765
19997
  apiSecret: string;
19766
19998
  } | undefined;
19999
+ line?: {
20000
+ channelId: string;
20001
+ channelSecret: string;
20002
+ } | undefined;
19767
20003
  lineRichMenuId?: string | null | undefined;
19768
20004
  messengerIntegrationType?: "own" | "business" | undefined;
19769
20005
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -19851,6 +20087,16 @@ export declare const instagramContract: {
19851
20087
  mobileNumber: string;
19852
20088
  apiSecret: string;
19853
20089
  }>>;
20090
+ line: z.ZodOptional<z.ZodObject<{
20091
+ channelId: z.ZodString;
20092
+ channelSecret: z.ZodString;
20093
+ }, "strip", z.ZodTypeAny, {
20094
+ channelId: string;
20095
+ channelSecret: string;
20096
+ }, {
20097
+ channelId: string;
20098
+ channelSecret: string;
20099
+ }>>;
19854
20100
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
19855
20101
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
19856
20102
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -19881,6 +20127,10 @@ export declare const instagramContract: {
19881
20127
  mobileNumber: string;
19882
20128
  apiSecret: string;
19883
20129
  } | undefined;
20130
+ line?: {
20131
+ channelId: string;
20132
+ channelSecret: string;
20133
+ } | undefined;
19884
20134
  lineRichMenuId?: string | null | undefined;
19885
20135
  messengerIntegrationType?: "own" | "business" | undefined;
19886
20136
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -19911,6 +20161,10 @@ export declare const instagramContract: {
19911
20161
  mobileNumber: string;
19912
20162
  apiSecret: string;
19913
20163
  } | undefined;
20164
+ line?: {
20165
+ channelId: string;
20166
+ channelSecret: string;
20167
+ } | undefined;
19914
20168
  lineRichMenuId?: string | null | undefined;
19915
20169
  messengerIntegrationType?: "own" | "business" | undefined;
19916
20170
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -19971,6 +20225,10 @@ export declare const instagramContract: {
19971
20225
  mobileNumber: string;
19972
20226
  apiSecret: string;
19973
20227
  } | undefined;
20228
+ line?: {
20229
+ channelId: string;
20230
+ channelSecret: string;
20231
+ } | undefined;
19974
20232
  lineRichMenuId?: string | null | undefined;
19975
20233
  messengerIntegrationType?: "own" | "business" | undefined;
19976
20234
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -20019,6 +20277,10 @@ export declare const instagramContract: {
20019
20277
  mobileNumber: string;
20020
20278
  apiSecret: string;
20021
20279
  } | undefined;
20280
+ line?: {
20281
+ channelId: string;
20282
+ channelSecret: string;
20283
+ } | undefined;
20022
20284
  lineRichMenuId?: string | null | undefined;
20023
20285
  messengerIntegrationType?: "own" | "business" | undefined;
20024
20286
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -20069,6 +20331,10 @@ export declare const instagramContract: {
20069
20331
  mobileNumber: string;
20070
20332
  apiSecret: string;
20071
20333
  } | undefined;
20334
+ line?: {
20335
+ channelId: string;
20336
+ channelSecret: string;
20337
+ } | undefined;
20072
20338
  lineRichMenuId?: string | null | undefined;
20073
20339
  messengerIntegrationType?: "own" | "business" | undefined;
20074
20340
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -20120,6 +20386,10 @@ export declare const instagramContract: {
20120
20386
  mobileNumber: string;
20121
20387
  apiSecret: string;
20122
20388
  } | undefined;
20389
+ line?: {
20390
+ channelId: string;
20391
+ channelSecret: string;
20392
+ } | undefined;
20123
20393
  lineRichMenuId?: string | null | undefined;
20124
20394
  messengerIntegrationType?: "own" | "business" | undefined;
20125
20395
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -20241,6 +20511,16 @@ export declare const instagramContract: {
20241
20511
  mobileNumber: string;
20242
20512
  apiSecret: string;
20243
20513
  }>>;
20514
+ line: z.ZodOptional<z.ZodObject<{
20515
+ channelId: z.ZodString;
20516
+ channelSecret: z.ZodString;
20517
+ }, "strip", z.ZodTypeAny, {
20518
+ channelId: string;
20519
+ channelSecret: string;
20520
+ }, {
20521
+ channelId: string;
20522
+ channelSecret: string;
20523
+ }>>;
20244
20524
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
20245
20525
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
20246
20526
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -20271,6 +20551,10 @@ export declare const instagramContract: {
20271
20551
  mobileNumber: string;
20272
20552
  apiSecret: string;
20273
20553
  } | undefined;
20554
+ line?: {
20555
+ channelId: string;
20556
+ channelSecret: string;
20557
+ } | undefined;
20274
20558
  lineRichMenuId?: string | null | undefined;
20275
20559
  messengerIntegrationType?: "own" | "business" | undefined;
20276
20560
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -20301,6 +20585,10 @@ export declare const instagramContract: {
20301
20585
  mobileNumber: string;
20302
20586
  apiSecret: string;
20303
20587
  } | undefined;
20588
+ line?: {
20589
+ channelId: string;
20590
+ channelSecret: string;
20591
+ } | undefined;
20304
20592
  lineRichMenuId?: string | null | undefined;
20305
20593
  messengerIntegrationType?: "own" | "business" | undefined;
20306
20594
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -20361,6 +20649,10 @@ export declare const instagramContract: {
20361
20649
  mobileNumber: string;
20362
20650
  apiSecret: string;
20363
20651
  } | undefined;
20652
+ line?: {
20653
+ channelId: string;
20654
+ channelSecret: string;
20655
+ } | undefined;
20364
20656
  lineRichMenuId?: string | null | undefined;
20365
20657
  messengerIntegrationType?: "own" | "business" | undefined;
20366
20658
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -20409,6 +20701,10 @@ export declare const instagramContract: {
20409
20701
  mobileNumber: string;
20410
20702
  apiSecret: string;
20411
20703
  } | undefined;
20704
+ line?: {
20705
+ channelId: string;
20706
+ channelSecret: string;
20707
+ } | undefined;
20412
20708
  lineRichMenuId?: string | null | undefined;
20413
20709
  messengerIntegrationType?: "own" | "business" | undefined;
20414
20710
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -20459,6 +20755,10 @@ export declare const instagramContract: {
20459
20755
  mobileNumber: string;
20460
20756
  apiSecret: string;
20461
20757
  } | undefined;
20758
+ line?: {
20759
+ channelId: string;
20760
+ channelSecret: string;
20761
+ } | undefined;
20462
20762
  lineRichMenuId?: string | null | undefined;
20463
20763
  messengerIntegrationType?: "own" | "business" | undefined;
20464
20764
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -20510,6 +20810,10 @@ export declare const instagramContract: {
20510
20810
  mobileNumber: string;
20511
20811
  apiSecret: string;
20512
20812
  } | undefined;
20813
+ line?: {
20814
+ channelId: string;
20815
+ channelSecret: string;
20816
+ } | undefined;
20513
20817
  lineRichMenuId?: string | null | undefined;
20514
20818
  messengerIntegrationType?: "own" | "business" | undefined;
20515
20819
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -20631,6 +20935,16 @@ export declare const instagramContract: {
20631
20935
  mobileNumber: string;
20632
20936
  apiSecret: string;
20633
20937
  }>>;
20938
+ line: z.ZodOptional<z.ZodObject<{
20939
+ channelId: z.ZodString;
20940
+ channelSecret: z.ZodString;
20941
+ }, "strip", z.ZodTypeAny, {
20942
+ channelId: string;
20943
+ channelSecret: string;
20944
+ }, {
20945
+ channelId: string;
20946
+ channelSecret: string;
20947
+ }>>;
20634
20948
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
20635
20949
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
20636
20950
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -20661,6 +20975,10 @@ export declare const instagramContract: {
20661
20975
  mobileNumber: string;
20662
20976
  apiSecret: string;
20663
20977
  } | undefined;
20978
+ line?: {
20979
+ channelId: string;
20980
+ channelSecret: string;
20981
+ } | undefined;
20664
20982
  lineRichMenuId?: string | null | undefined;
20665
20983
  messengerIntegrationType?: "own" | "business" | undefined;
20666
20984
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -20691,6 +21009,10 @@ export declare const instagramContract: {
20691
21009
  mobileNumber: string;
20692
21010
  apiSecret: string;
20693
21011
  } | undefined;
21012
+ line?: {
21013
+ channelId: string;
21014
+ channelSecret: string;
21015
+ } | undefined;
20694
21016
  lineRichMenuId?: string | null | undefined;
20695
21017
  messengerIntegrationType?: "own" | "business" | undefined;
20696
21018
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -20751,6 +21073,10 @@ export declare const instagramContract: {
20751
21073
  mobileNumber: string;
20752
21074
  apiSecret: string;
20753
21075
  } | undefined;
21076
+ line?: {
21077
+ channelId: string;
21078
+ channelSecret: string;
21079
+ } | undefined;
20754
21080
  lineRichMenuId?: string | null | undefined;
20755
21081
  messengerIntegrationType?: "own" | "business" | undefined;
20756
21082
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -20799,6 +21125,10 @@ export declare const instagramContract: {
20799
21125
  mobileNumber: string;
20800
21126
  apiSecret: string;
20801
21127
  } | undefined;
21128
+ line?: {
21129
+ channelId: string;
21130
+ channelSecret: string;
21131
+ } | undefined;
20802
21132
  lineRichMenuId?: string | null | undefined;
20803
21133
  messengerIntegrationType?: "own" | "business" | undefined;
20804
21134
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -20849,6 +21179,10 @@ export declare const instagramContract: {
20849
21179
  mobileNumber: string;
20850
21180
  apiSecret: string;
20851
21181
  } | undefined;
21182
+ line?: {
21183
+ channelId: string;
21184
+ channelSecret: string;
21185
+ } | undefined;
20852
21186
  lineRichMenuId?: string | null | undefined;
20853
21187
  messengerIntegrationType?: "own" | "business" | undefined;
20854
21188
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -20900,6 +21234,10 @@ export declare const instagramContract: {
20900
21234
  mobileNumber: string;
20901
21235
  apiSecret: string;
20902
21236
  } | undefined;
21237
+ line?: {
21238
+ channelId: string;
21239
+ channelSecret: string;
21240
+ } | undefined;
20903
21241
  lineRichMenuId?: string | null | undefined;
20904
21242
  messengerIntegrationType?: "own" | "business" | undefined;
20905
21243
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -21009,6 +21347,16 @@ export declare const instagramContract: {
21009
21347
  mobileNumber: string;
21010
21348
  apiSecret: string;
21011
21349
  }>>;
21350
+ line: z.ZodOptional<z.ZodObject<{
21351
+ channelId: z.ZodString;
21352
+ channelSecret: z.ZodString;
21353
+ }, "strip", z.ZodTypeAny, {
21354
+ channelId: string;
21355
+ channelSecret: string;
21356
+ }, {
21357
+ channelId: string;
21358
+ channelSecret: string;
21359
+ }>>;
21012
21360
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
21013
21361
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
21014
21362
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -21039,6 +21387,10 @@ export declare const instagramContract: {
21039
21387
  mobileNumber: string;
21040
21388
  apiSecret: string;
21041
21389
  } | undefined;
21390
+ line?: {
21391
+ channelId: string;
21392
+ channelSecret: string;
21393
+ } | undefined;
21042
21394
  lineRichMenuId?: string | null | undefined;
21043
21395
  messengerIntegrationType?: "own" | "business" | undefined;
21044
21396
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -21069,6 +21421,10 @@ export declare const instagramContract: {
21069
21421
  mobileNumber: string;
21070
21422
  apiSecret: string;
21071
21423
  } | undefined;
21424
+ line?: {
21425
+ channelId: string;
21426
+ channelSecret: string;
21427
+ } | undefined;
21072
21428
  lineRichMenuId?: string | null | undefined;
21073
21429
  messengerIntegrationType?: "own" | "business" | undefined;
21074
21430
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -21129,6 +21485,10 @@ export declare const instagramContract: {
21129
21485
  mobileNumber: string;
21130
21486
  apiSecret: string;
21131
21487
  } | undefined;
21488
+ line?: {
21489
+ channelId: string;
21490
+ channelSecret: string;
21491
+ } | undefined;
21132
21492
  lineRichMenuId?: string | null | undefined;
21133
21493
  messengerIntegrationType?: "own" | "business" | undefined;
21134
21494
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -21177,6 +21537,10 @@ export declare const instagramContract: {
21177
21537
  mobileNumber: string;
21178
21538
  apiSecret: string;
21179
21539
  } | undefined;
21540
+ line?: {
21541
+ channelId: string;
21542
+ channelSecret: string;
21543
+ } | undefined;
21180
21544
  lineRichMenuId?: string | null | undefined;
21181
21545
  messengerIntegrationType?: "own" | "business" | undefined;
21182
21546
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -21264,6 +21628,16 @@ export declare const instagramContract: {
21264
21628
  mobileNumber: string;
21265
21629
  apiSecret: string;
21266
21630
  }>>;
21631
+ line: z.ZodOptional<z.ZodObject<{
21632
+ channelId: z.ZodString;
21633
+ channelSecret: z.ZodString;
21634
+ }, "strip", z.ZodTypeAny, {
21635
+ channelId: string;
21636
+ channelSecret: string;
21637
+ }, {
21638
+ channelId: string;
21639
+ channelSecret: string;
21640
+ }>>;
21267
21641
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
21268
21642
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
21269
21643
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -21294,6 +21668,10 @@ export declare const instagramContract: {
21294
21668
  mobileNumber: string;
21295
21669
  apiSecret: string;
21296
21670
  } | undefined;
21671
+ line?: {
21672
+ channelId: string;
21673
+ channelSecret: string;
21674
+ } | undefined;
21297
21675
  lineRichMenuId?: string | null | undefined;
21298
21676
  messengerIntegrationType?: "own" | "business" | undefined;
21299
21677
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -21324,6 +21702,10 @@ export declare const instagramContract: {
21324
21702
  mobileNumber: string;
21325
21703
  apiSecret: string;
21326
21704
  } | undefined;
21705
+ line?: {
21706
+ channelId: string;
21707
+ channelSecret: string;
21708
+ } | undefined;
21327
21709
  lineRichMenuId?: string | null | undefined;
21328
21710
  messengerIntegrationType?: "own" | "business" | undefined;
21329
21711
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -21384,6 +21766,10 @@ export declare const instagramContract: {
21384
21766
  mobileNumber: string;
21385
21767
  apiSecret: string;
21386
21768
  } | undefined;
21769
+ line?: {
21770
+ channelId: string;
21771
+ channelSecret: string;
21772
+ } | undefined;
21387
21773
  lineRichMenuId?: string | null | undefined;
21388
21774
  messengerIntegrationType?: "own" | "business" | undefined;
21389
21775
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -21432,6 +21818,10 @@ export declare const instagramContract: {
21432
21818
  mobileNumber: string;
21433
21819
  apiSecret: string;
21434
21820
  } | undefined;
21821
+ line?: {
21822
+ channelId: string;
21823
+ channelSecret: string;
21824
+ } | undefined;
21435
21825
  lineRichMenuId?: string | null | undefined;
21436
21826
  messengerIntegrationType?: "own" | "business" | undefined;
21437
21827
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -21482,6 +21872,10 @@ export declare const instagramContract: {
21482
21872
  mobileNumber: string;
21483
21873
  apiSecret: string;
21484
21874
  } | undefined;
21875
+ line?: {
21876
+ channelId: string;
21877
+ channelSecret: string;
21878
+ } | undefined;
21485
21879
  lineRichMenuId?: string | null | undefined;
21486
21880
  messengerIntegrationType?: "own" | "business" | undefined;
21487
21881
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -21533,6 +21927,10 @@ export declare const instagramContract: {
21533
21927
  mobileNumber: string;
21534
21928
  apiSecret: string;
21535
21929
  } | undefined;
21930
+ line?: {
21931
+ channelId: string;
21932
+ channelSecret: string;
21933
+ } | undefined;
21536
21934
  lineRichMenuId?: string | null | undefined;
21537
21935
  messengerIntegrationType?: "own" | "business" | undefined;
21538
21936
  facebookFeedIntegrationType?: "own" | "business" | undefined;