@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
@@ -196,6 +196,16 @@ export declare const whatsappContract: {
196
196
  mobileNumber: string;
197
197
  apiSecret: string;
198
198
  }>>;
199
+ line: z.ZodOptional<z.ZodObject<{
200
+ channelId: z.ZodString;
201
+ channelSecret: z.ZodString;
202
+ }, "strip", z.ZodTypeAny, {
203
+ channelId: string;
204
+ channelSecret: string;
205
+ }, {
206
+ channelId: string;
207
+ channelSecret: string;
208
+ }>>;
199
209
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
200
210
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
201
211
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -226,6 +236,10 @@ export declare const whatsappContract: {
226
236
  mobileNumber: string;
227
237
  apiSecret: string;
228
238
  } | undefined;
239
+ line?: {
240
+ channelId: string;
241
+ channelSecret: string;
242
+ } | undefined;
229
243
  lineRichMenuId?: string | null | undefined;
230
244
  messengerIntegrationType?: "own" | "business" | undefined;
231
245
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -256,6 +270,10 @@ export declare const whatsappContract: {
256
270
  mobileNumber: string;
257
271
  apiSecret: string;
258
272
  } | undefined;
273
+ line?: {
274
+ channelId: string;
275
+ channelSecret: string;
276
+ } | undefined;
259
277
  lineRichMenuId?: string | null | undefined;
260
278
  messengerIntegrationType?: "own" | "business" | undefined;
261
279
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -316,6 +334,10 @@ export declare const whatsappContract: {
316
334
  mobileNumber: string;
317
335
  apiSecret: string;
318
336
  } | undefined;
337
+ line?: {
338
+ channelId: string;
339
+ channelSecret: string;
340
+ } | undefined;
319
341
  lineRichMenuId?: string | null | undefined;
320
342
  messengerIntegrationType?: "own" | "business" | undefined;
321
343
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -364,6 +386,10 @@ export declare const whatsappContract: {
364
386
  mobileNumber: string;
365
387
  apiSecret: string;
366
388
  } | undefined;
389
+ line?: {
390
+ channelId: string;
391
+ channelSecret: string;
392
+ } | undefined;
367
393
  lineRichMenuId?: string | null | undefined;
368
394
  messengerIntegrationType?: "own" | "business" | undefined;
369
395
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -417,6 +443,10 @@ export declare const whatsappContract: {
417
443
  mobileNumber: string;
418
444
  apiSecret: string;
419
445
  } | undefined;
446
+ line?: {
447
+ channelId: string;
448
+ channelSecret: string;
449
+ } | undefined;
420
450
  lineRichMenuId?: string | null | undefined;
421
451
  messengerIntegrationType?: "own" | "business" | undefined;
422
452
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -509,6 +539,10 @@ export declare const whatsappContract: {
509
539
  mobileNumber: string;
510
540
  apiSecret: string;
511
541
  } | undefined;
542
+ line?: {
543
+ channelId: string;
544
+ channelSecret: string;
545
+ } | undefined;
512
546
  lineRichMenuId?: string | null | undefined;
513
547
  messengerIntegrationType?: "own" | "business" | undefined;
514
548
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -769,6 +803,10 @@ export declare const whatsappContract: {
769
803
  mobileNumber: string;
770
804
  apiSecret: string;
771
805
  } | undefined;
806
+ line?: {
807
+ channelId: string;
808
+ channelSecret: string;
809
+ } | undefined;
772
810
  lineRichMenuId?: string | null | undefined;
773
811
  messengerIntegrationType?: "own" | "business" | undefined;
774
812
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -900,6 +938,10 @@ export declare const whatsappContract: {
900
938
  mobileNumber: string;
901
939
  apiSecret: string;
902
940
  } | undefined;
941
+ line?: {
942
+ channelId: string;
943
+ channelSecret: string;
944
+ } | undefined;
903
945
  lineRichMenuId?: string | null | undefined;
904
946
  messengerIntegrationType?: "own" | "business" | undefined;
905
947
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -2961,6 +3003,16 @@ export declare const whatsappContract: {
2961
3003
  mobileNumber: string;
2962
3004
  apiSecret: string;
2963
3005
  }>>;
3006
+ line: z.ZodOptional<z.ZodObject<{
3007
+ channelId: z.ZodString;
3008
+ channelSecret: z.ZodString;
3009
+ }, "strip", z.ZodTypeAny, {
3010
+ channelId: string;
3011
+ channelSecret: string;
3012
+ }, {
3013
+ channelId: string;
3014
+ channelSecret: string;
3015
+ }>>;
2964
3016
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2965
3017
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
2966
3018
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -2991,6 +3043,10 @@ export declare const whatsappContract: {
2991
3043
  mobileNumber: string;
2992
3044
  apiSecret: string;
2993
3045
  } | undefined;
3046
+ line?: {
3047
+ channelId: string;
3048
+ channelSecret: string;
3049
+ } | undefined;
2994
3050
  lineRichMenuId?: string | null | undefined;
2995
3051
  messengerIntegrationType?: "own" | "business" | undefined;
2996
3052
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -3021,6 +3077,10 @@ export declare const whatsappContract: {
3021
3077
  mobileNumber: string;
3022
3078
  apiSecret: string;
3023
3079
  } | undefined;
3080
+ line?: {
3081
+ channelId: string;
3082
+ channelSecret: string;
3083
+ } | undefined;
3024
3084
  lineRichMenuId?: string | null | undefined;
3025
3085
  messengerIntegrationType?: "own" | "business" | undefined;
3026
3086
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -3285,6 +3345,10 @@ export declare const whatsappContract: {
3285
3345
  mobileNumber: string;
3286
3346
  apiSecret: string;
3287
3347
  } | undefined;
3348
+ line?: {
3349
+ channelId: string;
3350
+ channelSecret: string;
3351
+ } | undefined;
3288
3352
  lineRichMenuId?: string | null | undefined;
3289
3353
  messengerIntegrationType?: "own" | "business" | undefined;
3290
3354
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -3380,6 +3444,10 @@ export declare const whatsappContract: {
3380
3444
  mobileNumber: string;
3381
3445
  apiSecret: string;
3382
3446
  } | undefined;
3447
+ line?: {
3448
+ channelId: string;
3449
+ channelSecret: string;
3450
+ } | undefined;
3383
3451
  lineRichMenuId?: string | null | undefined;
3384
3452
  messengerIntegrationType?: "own" | "business" | undefined;
3385
3453
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -4039,6 +4107,10 @@ export declare const whatsappContract: {
4039
4107
  mobileNumber: string;
4040
4108
  apiSecret: string;
4041
4109
  } | undefined;
4110
+ line?: {
4111
+ channelId: string;
4112
+ channelSecret: string;
4113
+ } | undefined;
4042
4114
  lineRichMenuId?: string | null | undefined;
4043
4115
  messengerIntegrationType?: "own" | "business" | undefined;
4044
4116
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -4468,6 +4540,10 @@ export declare const whatsappContract: {
4468
4540
  mobileNumber: string;
4469
4541
  apiSecret: string;
4470
4542
  } | undefined;
4543
+ line?: {
4544
+ channelId: string;
4545
+ channelSecret: string;
4546
+ } | undefined;
4471
4547
  lineRichMenuId?: string | null | undefined;
4472
4548
  messengerIntegrationType?: "own" | "business" | undefined;
4473
4549
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -7648,6 +7724,16 @@ export declare const whatsappContract: {
7648
7724
  mobileNumber: string;
7649
7725
  apiSecret: string;
7650
7726
  }>>;
7727
+ line: z.ZodOptional<z.ZodObject<{
7728
+ channelId: z.ZodString;
7729
+ channelSecret: z.ZodString;
7730
+ }, "strip", z.ZodTypeAny, {
7731
+ channelId: string;
7732
+ channelSecret: string;
7733
+ }, {
7734
+ channelId: string;
7735
+ channelSecret: string;
7736
+ }>>;
7651
7737
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
7652
7738
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
7653
7739
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -7678,6 +7764,10 @@ export declare const whatsappContract: {
7678
7764
  mobileNumber: string;
7679
7765
  apiSecret: string;
7680
7766
  } | undefined;
7767
+ line?: {
7768
+ channelId: string;
7769
+ channelSecret: string;
7770
+ } | undefined;
7681
7771
  lineRichMenuId?: string | null | undefined;
7682
7772
  messengerIntegrationType?: "own" | "business" | undefined;
7683
7773
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -7708,6 +7798,10 @@ export declare const whatsappContract: {
7708
7798
  mobileNumber: string;
7709
7799
  apiSecret: string;
7710
7800
  } | undefined;
7801
+ line?: {
7802
+ channelId: string;
7803
+ channelSecret: string;
7804
+ } | undefined;
7711
7805
  lineRichMenuId?: string | null | undefined;
7712
7806
  messengerIntegrationType?: "own" | "business" | undefined;
7713
7807
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -7972,6 +8066,10 @@ export declare const whatsappContract: {
7972
8066
  mobileNumber: string;
7973
8067
  apiSecret: string;
7974
8068
  } | undefined;
8069
+ line?: {
8070
+ channelId: string;
8071
+ channelSecret: string;
8072
+ } | undefined;
7975
8073
  lineRichMenuId?: string | null | undefined;
7976
8074
  messengerIntegrationType?: "own" | "business" | undefined;
7977
8075
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -8067,6 +8165,10 @@ export declare const whatsappContract: {
8067
8165
  mobileNumber: string;
8068
8166
  apiSecret: string;
8069
8167
  } | undefined;
8168
+ line?: {
8169
+ channelId: string;
8170
+ channelSecret: string;
8171
+ } | undefined;
8070
8172
  lineRichMenuId?: string | null | undefined;
8071
8173
  messengerIntegrationType?: "own" | "business" | undefined;
8072
8174
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -8726,6 +8828,10 @@ export declare const whatsappContract: {
8726
8828
  mobileNumber: string;
8727
8829
  apiSecret: string;
8728
8830
  } | undefined;
8831
+ line?: {
8832
+ channelId: string;
8833
+ channelSecret: string;
8834
+ } | undefined;
8729
8835
  lineRichMenuId?: string | null | undefined;
8730
8836
  messengerIntegrationType?: "own" | "business" | undefined;
8731
8837
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -9155,6 +9261,10 @@ export declare const whatsappContract: {
9155
9261
  mobileNumber: string;
9156
9262
  apiSecret: string;
9157
9263
  } | undefined;
9264
+ line?: {
9265
+ channelId: string;
9266
+ channelSecret: string;
9267
+ } | undefined;
9158
9268
  lineRichMenuId?: string | null | undefined;
9159
9269
  messengerIntegrationType?: "own" | "business" | undefined;
9160
9270
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -11357,6 +11467,10 @@ export declare const whatsappContract: {
11357
11467
  mobileNumber: string;
11358
11468
  apiSecret: string;
11359
11469
  } | undefined;
11470
+ line?: {
11471
+ channelId: string;
11472
+ channelSecret: string;
11473
+ } | undefined;
11360
11474
  lineRichMenuId?: string | null | undefined;
11361
11475
  messengerIntegrationType?: "own" | "business" | undefined;
11362
11476
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -12123,6 +12237,10 @@ export declare const whatsappContract: {
12123
12237
  mobileNumber: string;
12124
12238
  apiSecret: string;
12125
12239
  } | undefined;
12240
+ line?: {
12241
+ channelId: string;
12242
+ channelSecret: string;
12243
+ } | undefined;
12126
12244
  lineRichMenuId?: string | null | undefined;
12127
12245
  messengerIntegrationType?: "own" | "business" | undefined;
12128
12246
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -12890,6 +13008,10 @@ export declare const whatsappContract: {
12890
13008
  mobileNumber: string;
12891
13009
  apiSecret: string;
12892
13010
  } | undefined;
13011
+ line?: {
13012
+ channelId: string;
13013
+ channelSecret: string;
13014
+ } | undefined;
12893
13015
  lineRichMenuId?: string | null | undefined;
12894
13016
  messengerIntegrationType?: "own" | "business" | undefined;
12895
13017
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -13656,6 +13778,10 @@ export declare const whatsappContract: {
13656
13778
  mobileNumber: string;
13657
13779
  apiSecret: string;
13658
13780
  } | undefined;
13781
+ line?: {
13782
+ channelId: string;
13783
+ channelSecret: string;
13784
+ } | undefined;
13659
13785
  lineRichMenuId?: string | null | undefined;
13660
13786
  messengerIntegrationType?: "own" | "business" | undefined;
13661
13787
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -14423,6 +14549,10 @@ export declare const whatsappContract: {
14423
14549
  mobileNumber: string;
14424
14550
  apiSecret: string;
14425
14551
  } | undefined;
14552
+ line?: {
14553
+ channelId: string;
14554
+ channelSecret: string;
14555
+ } | undefined;
14426
14556
  lineRichMenuId?: string | null | undefined;
14427
14557
  messengerIntegrationType?: "own" | "business" | undefined;
14428
14558
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -15189,6 +15319,10 @@ export declare const whatsappContract: {
15189
15319
  mobileNumber: string;
15190
15320
  apiSecret: string;
15191
15321
  } | undefined;
15322
+ line?: {
15323
+ channelId: string;
15324
+ channelSecret: string;
15325
+ } | undefined;
15192
15326
  lineRichMenuId?: string | null | undefined;
15193
15327
  messengerIntegrationType?: "own" | "business" | undefined;
15194
15328
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -15958,6 +16092,10 @@ export declare const whatsappContract: {
15958
16092
  mobileNumber: string;
15959
16093
  apiSecret: string;
15960
16094
  } | undefined;
16095
+ line?: {
16096
+ channelId: string;
16097
+ channelSecret: string;
16098
+ } | undefined;
15961
16099
  lineRichMenuId?: string | null | undefined;
15962
16100
  messengerIntegrationType?: "own" | "business" | undefined;
15963
16101
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -16724,6 +16862,10 @@ export declare const whatsappContract: {
16724
16862
  mobileNumber: string;
16725
16863
  apiSecret: string;
16726
16864
  } | undefined;
16865
+ line?: {
16866
+ channelId: string;
16867
+ channelSecret: string;
16868
+ } | undefined;
16727
16869
  lineRichMenuId?: string | null | undefined;
16728
16870
  messengerIntegrationType?: "own" | "business" | undefined;
16729
16871
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -17494,6 +17636,10 @@ export declare const whatsappContract: {
17494
17636
  mobileNumber: string;
17495
17637
  apiSecret: string;
17496
17638
  } | undefined;
17639
+ line?: {
17640
+ channelId: string;
17641
+ channelSecret: string;
17642
+ } | undefined;
17497
17643
  lineRichMenuId?: string | null | undefined;
17498
17644
  messengerIntegrationType?: "own" | "business" | undefined;
17499
17645
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -18260,6 +18406,10 @@ export declare const whatsappContract: {
18260
18406
  mobileNumber: string;
18261
18407
  apiSecret: string;
18262
18408
  } | undefined;
18409
+ line?: {
18410
+ channelId: string;
18411
+ channelSecret: string;
18412
+ } | undefined;
18263
18413
  lineRichMenuId?: string | null | undefined;
18264
18414
  messengerIntegrationType?: "own" | "business" | undefined;
18265
18415
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -18976,6 +19126,16 @@ export declare const whatsappContract: {
18976
19126
  mobileNumber: string;
18977
19127
  apiSecret: string;
18978
19128
  }>>;
19129
+ line: z.ZodOptional<z.ZodObject<{
19130
+ channelId: z.ZodString;
19131
+ channelSecret: z.ZodString;
19132
+ }, "strip", z.ZodTypeAny, {
19133
+ channelId: string;
19134
+ channelSecret: string;
19135
+ }, {
19136
+ channelId: string;
19137
+ channelSecret: string;
19138
+ }>>;
18979
19139
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
18980
19140
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
18981
19141
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -19006,6 +19166,10 @@ export declare const whatsappContract: {
19006
19166
  mobileNumber: string;
19007
19167
  apiSecret: string;
19008
19168
  } | undefined;
19169
+ line?: {
19170
+ channelId: string;
19171
+ channelSecret: string;
19172
+ } | undefined;
19009
19173
  lineRichMenuId?: string | null | undefined;
19010
19174
  messengerIntegrationType?: "own" | "business" | undefined;
19011
19175
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -19036,6 +19200,10 @@ export declare const whatsappContract: {
19036
19200
  mobileNumber: string;
19037
19201
  apiSecret: string;
19038
19202
  } | undefined;
19203
+ line?: {
19204
+ channelId: string;
19205
+ channelSecret: string;
19206
+ } | undefined;
19039
19207
  lineRichMenuId?: string | null | undefined;
19040
19208
  messengerIntegrationType?: "own" | "business" | undefined;
19041
19209
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -19096,6 +19264,10 @@ export declare const whatsappContract: {
19096
19264
  mobileNumber: string;
19097
19265
  apiSecret: string;
19098
19266
  } | undefined;
19267
+ line?: {
19268
+ channelId: string;
19269
+ channelSecret: string;
19270
+ } | undefined;
19099
19271
  lineRichMenuId?: string | null | undefined;
19100
19272
  messengerIntegrationType?: "own" | "business" | undefined;
19101
19273
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -19144,6 +19316,10 @@ export declare const whatsappContract: {
19144
19316
  mobileNumber: string;
19145
19317
  apiSecret: string;
19146
19318
  } | undefined;
19319
+ line?: {
19320
+ channelId: string;
19321
+ channelSecret: string;
19322
+ } | undefined;
19147
19323
  lineRichMenuId?: string | null | undefined;
19148
19324
  messengerIntegrationType?: "own" | "business" | undefined;
19149
19325
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -19231,6 +19407,16 @@ export declare const whatsappContract: {
19231
19407
  mobileNumber: string;
19232
19408
  apiSecret: string;
19233
19409
  }>>;
19410
+ line: z.ZodOptional<z.ZodObject<{
19411
+ channelId: z.ZodString;
19412
+ channelSecret: z.ZodString;
19413
+ }, "strip", z.ZodTypeAny, {
19414
+ channelId: string;
19415
+ channelSecret: string;
19416
+ }, {
19417
+ channelId: string;
19418
+ channelSecret: string;
19419
+ }>>;
19234
19420
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
19235
19421
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
19236
19422
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -19261,6 +19447,10 @@ export declare const whatsappContract: {
19261
19447
  mobileNumber: string;
19262
19448
  apiSecret: string;
19263
19449
  } | undefined;
19450
+ line?: {
19451
+ channelId: string;
19452
+ channelSecret: string;
19453
+ } | undefined;
19264
19454
  lineRichMenuId?: string | null | undefined;
19265
19455
  messengerIntegrationType?: "own" | "business" | undefined;
19266
19456
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -19291,6 +19481,10 @@ export declare const whatsappContract: {
19291
19481
  mobileNumber: string;
19292
19482
  apiSecret: string;
19293
19483
  } | undefined;
19484
+ line?: {
19485
+ channelId: string;
19486
+ channelSecret: string;
19487
+ } | undefined;
19294
19488
  lineRichMenuId?: string | null | undefined;
19295
19489
  messengerIntegrationType?: "own" | "business" | undefined;
19296
19490
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -19351,6 +19545,10 @@ export declare const whatsappContract: {
19351
19545
  mobileNumber: string;
19352
19546
  apiSecret: string;
19353
19547
  } | undefined;
19548
+ line?: {
19549
+ channelId: string;
19550
+ channelSecret: string;
19551
+ } | undefined;
19354
19552
  lineRichMenuId?: string | null | undefined;
19355
19553
  messengerIntegrationType?: "own" | "business" | undefined;
19356
19554
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -19399,6 +19597,10 @@ export declare const whatsappContract: {
19399
19597
  mobileNumber: string;
19400
19598
  apiSecret: string;
19401
19599
  } | undefined;
19600
+ line?: {
19601
+ channelId: string;
19602
+ channelSecret: string;
19603
+ } | undefined;
19402
19604
  lineRichMenuId?: string | null | undefined;
19403
19605
  messengerIntegrationType?: "own" | "business" | undefined;
19404
19606
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -19449,6 +19651,10 @@ export declare const whatsappContract: {
19449
19651
  mobileNumber: string;
19450
19652
  apiSecret: string;
19451
19653
  } | undefined;
19654
+ line?: {
19655
+ channelId: string;
19656
+ channelSecret: string;
19657
+ } | undefined;
19452
19658
  lineRichMenuId?: string | null | undefined;
19453
19659
  messengerIntegrationType?: "own" | "business" | undefined;
19454
19660
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -19500,6 +19706,10 @@ export declare const whatsappContract: {
19500
19706
  mobileNumber: string;
19501
19707
  apiSecret: string;
19502
19708
  } | undefined;
19709
+ line?: {
19710
+ channelId: string;
19711
+ channelSecret: string;
19712
+ } | undefined;
19503
19713
  lineRichMenuId?: string | null | undefined;
19504
19714
  messengerIntegrationType?: "own" | "business" | undefined;
19505
19715
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -19609,6 +19819,16 @@ export declare const whatsappContract: {
19609
19819
  mobileNumber: string;
19610
19820
  apiSecret: string;
19611
19821
  }>>;
19822
+ line: z.ZodOptional<z.ZodObject<{
19823
+ channelId: z.ZodString;
19824
+ channelSecret: z.ZodString;
19825
+ }, "strip", z.ZodTypeAny, {
19826
+ channelId: string;
19827
+ channelSecret: string;
19828
+ }, {
19829
+ channelId: string;
19830
+ channelSecret: string;
19831
+ }>>;
19612
19832
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
19613
19833
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
19614
19834
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -19639,6 +19859,10 @@ export declare const whatsappContract: {
19639
19859
  mobileNumber: string;
19640
19860
  apiSecret: string;
19641
19861
  } | undefined;
19862
+ line?: {
19863
+ channelId: string;
19864
+ channelSecret: string;
19865
+ } | undefined;
19642
19866
  lineRichMenuId?: string | null | undefined;
19643
19867
  messengerIntegrationType?: "own" | "business" | undefined;
19644
19868
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -19669,6 +19893,10 @@ export declare const whatsappContract: {
19669
19893
  mobileNumber: string;
19670
19894
  apiSecret: string;
19671
19895
  } | undefined;
19896
+ line?: {
19897
+ channelId: string;
19898
+ channelSecret: string;
19899
+ } | undefined;
19672
19900
  lineRichMenuId?: string | null | undefined;
19673
19901
  messengerIntegrationType?: "own" | "business" | undefined;
19674
19902
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -19729,6 +19957,10 @@ export declare const whatsappContract: {
19729
19957
  mobileNumber: string;
19730
19958
  apiSecret: string;
19731
19959
  } | undefined;
19960
+ line?: {
19961
+ channelId: string;
19962
+ channelSecret: string;
19963
+ } | undefined;
19732
19964
  lineRichMenuId?: string | null | undefined;
19733
19965
  messengerIntegrationType?: "own" | "business" | undefined;
19734
19966
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -19777,6 +20009,10 @@ export declare const whatsappContract: {
19777
20009
  mobileNumber: string;
19778
20010
  apiSecret: string;
19779
20011
  } | undefined;
20012
+ line?: {
20013
+ channelId: string;
20014
+ channelSecret: string;
20015
+ } | undefined;
19780
20016
  lineRichMenuId?: string | null | undefined;
19781
20017
  messengerIntegrationType?: "own" | "business" | undefined;
19782
20018
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -19864,6 +20100,16 @@ export declare const whatsappContract: {
19864
20100
  mobileNumber: string;
19865
20101
  apiSecret: string;
19866
20102
  }>>;
20103
+ line: z.ZodOptional<z.ZodObject<{
20104
+ channelId: z.ZodString;
20105
+ channelSecret: z.ZodString;
20106
+ }, "strip", z.ZodTypeAny, {
20107
+ channelId: string;
20108
+ channelSecret: string;
20109
+ }, {
20110
+ channelId: string;
20111
+ channelSecret: string;
20112
+ }>>;
19867
20113
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
19868
20114
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
19869
20115
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -19894,6 +20140,10 @@ export declare const whatsappContract: {
19894
20140
  mobileNumber: string;
19895
20141
  apiSecret: string;
19896
20142
  } | undefined;
20143
+ line?: {
20144
+ channelId: string;
20145
+ channelSecret: string;
20146
+ } | undefined;
19897
20147
  lineRichMenuId?: string | null | undefined;
19898
20148
  messengerIntegrationType?: "own" | "business" | undefined;
19899
20149
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -19924,6 +20174,10 @@ export declare const whatsappContract: {
19924
20174
  mobileNumber: string;
19925
20175
  apiSecret: string;
19926
20176
  } | undefined;
20177
+ line?: {
20178
+ channelId: string;
20179
+ channelSecret: string;
20180
+ } | undefined;
19927
20181
  lineRichMenuId?: string | null | undefined;
19928
20182
  messengerIntegrationType?: "own" | "business" | undefined;
19929
20183
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -19984,6 +20238,10 @@ export declare const whatsappContract: {
19984
20238
  mobileNumber: string;
19985
20239
  apiSecret: string;
19986
20240
  } | undefined;
20241
+ line?: {
20242
+ channelId: string;
20243
+ channelSecret: string;
20244
+ } | undefined;
19987
20245
  lineRichMenuId?: string | null | undefined;
19988
20246
  messengerIntegrationType?: "own" | "business" | undefined;
19989
20247
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -20032,6 +20290,10 @@ export declare const whatsappContract: {
20032
20290
  mobileNumber: string;
20033
20291
  apiSecret: string;
20034
20292
  } | undefined;
20293
+ line?: {
20294
+ channelId: string;
20295
+ channelSecret: string;
20296
+ } | undefined;
20035
20297
  lineRichMenuId?: string | null | undefined;
20036
20298
  messengerIntegrationType?: "own" | "business" | undefined;
20037
20299
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -20082,6 +20344,10 @@ export declare const whatsappContract: {
20082
20344
  mobileNumber: string;
20083
20345
  apiSecret: string;
20084
20346
  } | undefined;
20347
+ line?: {
20348
+ channelId: string;
20349
+ channelSecret: string;
20350
+ } | undefined;
20085
20351
  lineRichMenuId?: string | null | undefined;
20086
20352
  messengerIntegrationType?: "own" | "business" | undefined;
20087
20353
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -20133,6 +20399,10 @@ export declare const whatsappContract: {
20133
20399
  mobileNumber: string;
20134
20400
  apiSecret: string;
20135
20401
  } | undefined;
20402
+ line?: {
20403
+ channelId: string;
20404
+ channelSecret: string;
20405
+ } | undefined;
20136
20406
  lineRichMenuId?: string | null | undefined;
20137
20407
  messengerIntegrationType?: "own" | "business" | undefined;
20138
20408
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -20260,6 +20530,16 @@ export declare const whatsappContract: {
20260
20530
  mobileNumber: string;
20261
20531
  apiSecret: string;
20262
20532
  }>>;
20533
+ line: z.ZodOptional<z.ZodObject<{
20534
+ channelId: z.ZodString;
20535
+ channelSecret: z.ZodString;
20536
+ }, "strip", z.ZodTypeAny, {
20537
+ channelId: string;
20538
+ channelSecret: string;
20539
+ }, {
20540
+ channelId: string;
20541
+ channelSecret: string;
20542
+ }>>;
20263
20543
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
20264
20544
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
20265
20545
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -20290,6 +20570,10 @@ export declare const whatsappContract: {
20290
20570
  mobileNumber: string;
20291
20571
  apiSecret: string;
20292
20572
  } | undefined;
20573
+ line?: {
20574
+ channelId: string;
20575
+ channelSecret: string;
20576
+ } | undefined;
20293
20577
  lineRichMenuId?: string | null | undefined;
20294
20578
  messengerIntegrationType?: "own" | "business" | undefined;
20295
20579
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -20320,6 +20604,10 @@ export declare const whatsappContract: {
20320
20604
  mobileNumber: string;
20321
20605
  apiSecret: string;
20322
20606
  } | undefined;
20607
+ line?: {
20608
+ channelId: string;
20609
+ channelSecret: string;
20610
+ } | undefined;
20323
20611
  lineRichMenuId?: string | null | undefined;
20324
20612
  messengerIntegrationType?: "own" | "business" | undefined;
20325
20613
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -20380,6 +20668,10 @@ export declare const whatsappContract: {
20380
20668
  mobileNumber: string;
20381
20669
  apiSecret: string;
20382
20670
  } | undefined;
20671
+ line?: {
20672
+ channelId: string;
20673
+ channelSecret: string;
20674
+ } | undefined;
20383
20675
  lineRichMenuId?: string | null | undefined;
20384
20676
  messengerIntegrationType?: "own" | "business" | undefined;
20385
20677
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -20428,6 +20720,10 @@ export declare const whatsappContract: {
20428
20720
  mobileNumber: string;
20429
20721
  apiSecret: string;
20430
20722
  } | undefined;
20723
+ line?: {
20724
+ channelId: string;
20725
+ channelSecret: string;
20726
+ } | undefined;
20431
20727
  lineRichMenuId?: string | null | undefined;
20432
20728
  messengerIntegrationType?: "own" | "business" | undefined;
20433
20729
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -20478,6 +20774,10 @@ export declare const whatsappContract: {
20478
20774
  mobileNumber: string;
20479
20775
  apiSecret: string;
20480
20776
  } | undefined;
20777
+ line?: {
20778
+ channelId: string;
20779
+ channelSecret: string;
20780
+ } | undefined;
20481
20781
  lineRichMenuId?: string | null | undefined;
20482
20782
  messengerIntegrationType?: "own" | "business" | undefined;
20483
20783
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -20529,6 +20829,10 @@ export declare const whatsappContract: {
20529
20829
  mobileNumber: string;
20530
20830
  apiSecret: string;
20531
20831
  } | undefined;
20832
+ line?: {
20833
+ channelId: string;
20834
+ channelSecret: string;
20835
+ } | undefined;
20532
20836
  lineRichMenuId?: string | null | undefined;
20533
20837
  messengerIntegrationType?: "own" | "business" | undefined;
20534
20838
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -20650,6 +20954,16 @@ export declare const whatsappContract: {
20650
20954
  mobileNumber: string;
20651
20955
  apiSecret: string;
20652
20956
  }>>;
20957
+ line: z.ZodOptional<z.ZodObject<{
20958
+ channelId: z.ZodString;
20959
+ channelSecret: z.ZodString;
20960
+ }, "strip", z.ZodTypeAny, {
20961
+ channelId: string;
20962
+ channelSecret: string;
20963
+ }, {
20964
+ channelId: string;
20965
+ channelSecret: string;
20966
+ }>>;
20653
20967
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
20654
20968
  messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
20655
20969
  facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
@@ -20680,6 +20994,10 @@ export declare const whatsappContract: {
20680
20994
  mobileNumber: string;
20681
20995
  apiSecret: string;
20682
20996
  } | undefined;
20997
+ line?: {
20998
+ channelId: string;
20999
+ channelSecret: string;
21000
+ } | undefined;
20683
21001
  lineRichMenuId?: string | null | undefined;
20684
21002
  messengerIntegrationType?: "own" | "business" | undefined;
20685
21003
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -20710,6 +21028,10 @@ export declare const whatsappContract: {
20710
21028
  mobileNumber: string;
20711
21029
  apiSecret: string;
20712
21030
  } | undefined;
21031
+ line?: {
21032
+ channelId: string;
21033
+ channelSecret: string;
21034
+ } | undefined;
20713
21035
  lineRichMenuId?: string | null | undefined;
20714
21036
  messengerIntegrationType?: "own" | "business" | undefined;
20715
21037
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -20770,6 +21092,10 @@ export declare const whatsappContract: {
20770
21092
  mobileNumber: string;
20771
21093
  apiSecret: string;
20772
21094
  } | undefined;
21095
+ line?: {
21096
+ channelId: string;
21097
+ channelSecret: string;
21098
+ } | undefined;
20773
21099
  lineRichMenuId?: string | null | undefined;
20774
21100
  messengerIntegrationType?: "own" | "business" | undefined;
20775
21101
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -20818,6 +21144,10 @@ export declare const whatsappContract: {
20818
21144
  mobileNumber: string;
20819
21145
  apiSecret: string;
20820
21146
  } | undefined;
21147
+ line?: {
21148
+ channelId: string;
21149
+ channelSecret: string;
21150
+ } | undefined;
20821
21151
  lineRichMenuId?: string | null | undefined;
20822
21152
  messengerIntegrationType?: "own" | "business" | undefined;
20823
21153
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -20868,6 +21198,10 @@ export declare const whatsappContract: {
20868
21198
  mobileNumber: string;
20869
21199
  apiSecret: string;
20870
21200
  } | undefined;
21201
+ line?: {
21202
+ channelId: string;
21203
+ channelSecret: string;
21204
+ } | undefined;
20871
21205
  lineRichMenuId?: string | null | undefined;
20872
21206
  messengerIntegrationType?: "own" | "business" | undefined;
20873
21207
  facebookFeedIntegrationType?: "own" | "business" | undefined;
@@ -20919,6 +21253,10 @@ export declare const whatsappContract: {
20919
21253
  mobileNumber: string;
20920
21254
  apiSecret: string;
20921
21255
  } | undefined;
21256
+ line?: {
21257
+ channelId: string;
21258
+ channelSecret: string;
21259
+ } | undefined;
20922
21260
  lineRichMenuId?: string | null | undefined;
20923
21261
  messengerIntegrationType?: "own" | "business" | undefined;
20924
21262
  facebookFeedIntegrationType?: "own" | "business" | undefined;