@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.
- package/dist/api-contracts/src/channel/index.d.ts +742 -0
- package/dist/api-contracts/src/channel/index.d.ts.map +1 -1
- package/dist/api-contracts/src/channel/schema.d.ts +44 -0
- package/dist/api-contracts/src/channel/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/channel/validation.d.ts +52 -0
- package/dist/api-contracts/src/channel/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/index.d.ts +1054 -2
- package/dist/api-contracts/src/chat/index.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/schema.d.ts +252 -0
- package/dist/api-contracts/src/chat/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/validation.d.ts +370 -0
- package/dist/api-contracts/src/chat/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/contract.d.ts +4960 -154
- package/dist/api-contracts/src/contract.d.ts.map +1 -1
- package/dist/api-contracts/src/cx-log/index.d.ts +54 -4
- package/dist/api-contracts/src/cx-log/index.d.ts.map +1 -1
- package/dist/api-contracts/src/cx-log/schema.d.ts +42 -0
- package/dist/api-contracts/src/cx-log/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/cx-log/validation.d.ts +2 -2
- package/dist/api-contracts/src/cx-log/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/facebook-feed/index.d.ts +508 -0
- package/dist/api-contracts/src/facebook-feed/index.d.ts.map +1 -1
- package/dist/api-contracts/src/facebook-feed/schema.d.ts +34 -0
- package/dist/api-contracts/src/facebook-feed/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/facebook-feed/validation.d.ts +26 -0
- package/dist/api-contracts/src/facebook-feed/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/instagram/index.d.ts +398 -0
- package/dist/api-contracts/src/instagram/index.d.ts.map +1 -1
- package/dist/api-contracts/src/line/index.d.ts +354 -0
- package/dist/api-contracts/src/line/index.d.ts.map +1 -1
- package/dist/api-contracts/src/line/validation.d.ts +42 -0
- package/dist/api-contracts/src/line/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/messenger/index.d.ts +398 -0
- package/dist/api-contracts/src/messenger/index.d.ts.map +1 -1
- package/dist/api-contracts/src/messenger/validation.d.ts +26 -0
- package/dist/api-contracts/src/messenger/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/sms/index.d.ts +178 -0
- package/dist/api-contracts/src/sms/index.d.ts.map +1 -1
- package/dist/api-contracts/src/telegram/index.d.ts +286 -0
- package/dist/api-contracts/src/telegram/index.d.ts.map +1 -1
- package/dist/api-contracts/src/viber/index.d.ts +286 -0
- package/dist/api-contracts/src/viber/index.d.ts.map +1 -1
- package/dist/api-contracts/src/webchat/index.d.ts +286 -0
- package/dist/api-contracts/src/webchat/index.d.ts.map +1 -1
- package/dist/api-contracts/src/whatsapp/index.d.ts +338 -0
- package/dist/api-contracts/src/whatsapp/index.d.ts.map +1 -1
- package/dist/api-contracts/src/widget/index.d.ts +286 -3
- package/dist/api-contracts/src/widget/index.d.ts.map +1 -1
- package/dist/api-contracts/src/workflow-rule/index.d.ts +134 -0
- package/dist/api-contracts/src/workflow-rule/index.d.ts.map +1 -1
- package/dist/index.js +50 -5
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +50 -5
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
@@ -197,6 +197,16 @@ export declare const messengerContract: {
|
|
197
197
|
mobileNumber: string;
|
198
198
|
apiSecret: string;
|
199
199
|
}>>;
|
200
|
+
line: z.ZodOptional<z.ZodObject<{
|
201
|
+
channelId: z.ZodString;
|
202
|
+
channelSecret: z.ZodString;
|
203
|
+
}, "strip", z.ZodTypeAny, {
|
204
|
+
channelId: string;
|
205
|
+
channelSecret: string;
|
206
|
+
}, {
|
207
|
+
channelId: string;
|
208
|
+
channelSecret: string;
|
209
|
+
}>>;
|
200
210
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
201
211
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
202
212
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
@@ -227,6 +237,10 @@ export declare const messengerContract: {
|
|
227
237
|
mobileNumber: string;
|
228
238
|
apiSecret: string;
|
229
239
|
} | undefined;
|
240
|
+
line?: {
|
241
|
+
channelId: string;
|
242
|
+
channelSecret: string;
|
243
|
+
} | undefined;
|
230
244
|
lineRichMenuId?: string | null | undefined;
|
231
245
|
messengerIntegrationType?: "own" | "business" | undefined;
|
232
246
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -257,6 +271,10 @@ export declare const messengerContract: {
|
|
257
271
|
mobileNumber: string;
|
258
272
|
apiSecret: string;
|
259
273
|
} | undefined;
|
274
|
+
line?: {
|
275
|
+
channelId: string;
|
276
|
+
channelSecret: string;
|
277
|
+
} | undefined;
|
260
278
|
lineRichMenuId?: string | null | undefined;
|
261
279
|
messengerIntegrationType?: "own" | "business" | undefined;
|
262
280
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -317,6 +335,10 @@ export declare const messengerContract: {
|
|
317
335
|
mobileNumber: string;
|
318
336
|
apiSecret: string;
|
319
337
|
} | undefined;
|
338
|
+
line?: {
|
339
|
+
channelId: string;
|
340
|
+
channelSecret: string;
|
341
|
+
} | undefined;
|
320
342
|
lineRichMenuId?: string | null | undefined;
|
321
343
|
messengerIntegrationType?: "own" | "business" | undefined;
|
322
344
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -365,6 +387,10 @@ export declare const messengerContract: {
|
|
365
387
|
mobileNumber: string;
|
366
388
|
apiSecret: string;
|
367
389
|
} | undefined;
|
390
|
+
line?: {
|
391
|
+
channelId: string;
|
392
|
+
channelSecret: string;
|
393
|
+
} | undefined;
|
368
394
|
lineRichMenuId?: string | null | undefined;
|
369
395
|
messengerIntegrationType?: "own" | "business" | undefined;
|
370
396
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -418,6 +444,10 @@ export declare const messengerContract: {
|
|
418
444
|
mobileNumber: string;
|
419
445
|
apiSecret: string;
|
420
446
|
} | undefined;
|
447
|
+
line?: {
|
448
|
+
channelId: string;
|
449
|
+
channelSecret: string;
|
450
|
+
} | undefined;
|
421
451
|
lineRichMenuId?: string | null | undefined;
|
422
452
|
messengerIntegrationType?: "own" | "business" | undefined;
|
423
453
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -510,6 +540,10 @@ export declare const messengerContract: {
|
|
510
540
|
mobileNumber: string;
|
511
541
|
apiSecret: string;
|
512
542
|
} | undefined;
|
543
|
+
line?: {
|
544
|
+
channelId: string;
|
545
|
+
channelSecret: string;
|
546
|
+
} | undefined;
|
513
547
|
lineRichMenuId?: string | null | undefined;
|
514
548
|
messengerIntegrationType?: "own" | "business" | undefined;
|
515
549
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -770,6 +804,10 @@ export declare const messengerContract: {
|
|
770
804
|
mobileNumber: string;
|
771
805
|
apiSecret: string;
|
772
806
|
} | undefined;
|
807
|
+
line?: {
|
808
|
+
channelId: string;
|
809
|
+
channelSecret: string;
|
810
|
+
} | undefined;
|
773
811
|
lineRichMenuId?: string | null | undefined;
|
774
812
|
messengerIntegrationType?: "own" | "business" | undefined;
|
775
813
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -901,6 +939,10 @@ export declare const messengerContract: {
|
|
901
939
|
mobileNumber: string;
|
902
940
|
apiSecret: string;
|
903
941
|
} | undefined;
|
942
|
+
line?: {
|
943
|
+
channelId: string;
|
944
|
+
channelSecret: string;
|
945
|
+
} | undefined;
|
904
946
|
lineRichMenuId?: string | null | undefined;
|
905
947
|
messengerIntegrationType?: "own" | "business" | undefined;
|
906
948
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -2962,6 +3004,16 @@ export declare const messengerContract: {
|
|
2962
3004
|
mobileNumber: string;
|
2963
3005
|
apiSecret: string;
|
2964
3006
|
}>>;
|
3007
|
+
line: z.ZodOptional<z.ZodObject<{
|
3008
|
+
channelId: z.ZodString;
|
3009
|
+
channelSecret: z.ZodString;
|
3010
|
+
}, "strip", z.ZodTypeAny, {
|
3011
|
+
channelId: string;
|
3012
|
+
channelSecret: string;
|
3013
|
+
}, {
|
3014
|
+
channelId: string;
|
3015
|
+
channelSecret: string;
|
3016
|
+
}>>;
|
2965
3017
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
2966
3018
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
2967
3019
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
@@ -2992,6 +3044,10 @@ export declare const messengerContract: {
|
|
2992
3044
|
mobileNumber: string;
|
2993
3045
|
apiSecret: string;
|
2994
3046
|
} | undefined;
|
3047
|
+
line?: {
|
3048
|
+
channelId: string;
|
3049
|
+
channelSecret: string;
|
3050
|
+
} | undefined;
|
2995
3051
|
lineRichMenuId?: string | null | undefined;
|
2996
3052
|
messengerIntegrationType?: "own" | "business" | undefined;
|
2997
3053
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -3022,6 +3078,10 @@ export declare const messengerContract: {
|
|
3022
3078
|
mobileNumber: string;
|
3023
3079
|
apiSecret: string;
|
3024
3080
|
} | undefined;
|
3081
|
+
line?: {
|
3082
|
+
channelId: string;
|
3083
|
+
channelSecret: string;
|
3084
|
+
} | undefined;
|
3025
3085
|
lineRichMenuId?: string | null | undefined;
|
3026
3086
|
messengerIntegrationType?: "own" | "business" | undefined;
|
3027
3087
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -3286,6 +3346,10 @@ export declare const messengerContract: {
|
|
3286
3346
|
mobileNumber: string;
|
3287
3347
|
apiSecret: string;
|
3288
3348
|
} | undefined;
|
3349
|
+
line?: {
|
3350
|
+
channelId: string;
|
3351
|
+
channelSecret: string;
|
3352
|
+
} | undefined;
|
3289
3353
|
lineRichMenuId?: string | null | undefined;
|
3290
3354
|
messengerIntegrationType?: "own" | "business" | undefined;
|
3291
3355
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -3381,6 +3445,10 @@ export declare const messengerContract: {
|
|
3381
3445
|
mobileNumber: string;
|
3382
3446
|
apiSecret: string;
|
3383
3447
|
} | undefined;
|
3448
|
+
line?: {
|
3449
|
+
channelId: string;
|
3450
|
+
channelSecret: string;
|
3451
|
+
} | undefined;
|
3384
3452
|
lineRichMenuId?: string | null | undefined;
|
3385
3453
|
messengerIntegrationType?: "own" | "business" | undefined;
|
3386
3454
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -4040,6 +4108,10 @@ export declare const messengerContract: {
|
|
4040
4108
|
mobileNumber: string;
|
4041
4109
|
apiSecret: string;
|
4042
4110
|
} | undefined;
|
4111
|
+
line?: {
|
4112
|
+
channelId: string;
|
4113
|
+
channelSecret: string;
|
4114
|
+
} | undefined;
|
4043
4115
|
lineRichMenuId?: string | null | undefined;
|
4044
4116
|
messengerIntegrationType?: "own" | "business" | undefined;
|
4045
4117
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -4469,6 +4541,10 @@ export declare const messengerContract: {
|
|
4469
4541
|
mobileNumber: string;
|
4470
4542
|
apiSecret: string;
|
4471
4543
|
} | undefined;
|
4544
|
+
line?: {
|
4545
|
+
channelId: string;
|
4546
|
+
channelSecret: string;
|
4547
|
+
} | undefined;
|
4472
4548
|
lineRichMenuId?: string | null | undefined;
|
4473
4549
|
messengerIntegrationType?: "own" | "business" | undefined;
|
4474
4550
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -7649,6 +7725,16 @@ export declare const messengerContract: {
|
|
7649
7725
|
mobileNumber: string;
|
7650
7726
|
apiSecret: string;
|
7651
7727
|
}>>;
|
7728
|
+
line: z.ZodOptional<z.ZodObject<{
|
7729
|
+
channelId: z.ZodString;
|
7730
|
+
channelSecret: z.ZodString;
|
7731
|
+
}, "strip", z.ZodTypeAny, {
|
7732
|
+
channelId: string;
|
7733
|
+
channelSecret: string;
|
7734
|
+
}, {
|
7735
|
+
channelId: string;
|
7736
|
+
channelSecret: string;
|
7737
|
+
}>>;
|
7652
7738
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
7653
7739
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
7654
7740
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
@@ -7679,6 +7765,10 @@ export declare const messengerContract: {
|
|
7679
7765
|
mobileNumber: string;
|
7680
7766
|
apiSecret: string;
|
7681
7767
|
} | undefined;
|
7768
|
+
line?: {
|
7769
|
+
channelId: string;
|
7770
|
+
channelSecret: string;
|
7771
|
+
} | undefined;
|
7682
7772
|
lineRichMenuId?: string | null | undefined;
|
7683
7773
|
messengerIntegrationType?: "own" | "business" | undefined;
|
7684
7774
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -7709,6 +7799,10 @@ export declare const messengerContract: {
|
|
7709
7799
|
mobileNumber: string;
|
7710
7800
|
apiSecret: string;
|
7711
7801
|
} | undefined;
|
7802
|
+
line?: {
|
7803
|
+
channelId: string;
|
7804
|
+
channelSecret: string;
|
7805
|
+
} | undefined;
|
7712
7806
|
lineRichMenuId?: string | null | undefined;
|
7713
7807
|
messengerIntegrationType?: "own" | "business" | undefined;
|
7714
7808
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -7973,6 +8067,10 @@ export declare const messengerContract: {
|
|
7973
8067
|
mobileNumber: string;
|
7974
8068
|
apiSecret: string;
|
7975
8069
|
} | undefined;
|
8070
|
+
line?: {
|
8071
|
+
channelId: string;
|
8072
|
+
channelSecret: string;
|
8073
|
+
} | undefined;
|
7976
8074
|
lineRichMenuId?: string | null | undefined;
|
7977
8075
|
messengerIntegrationType?: "own" | "business" | undefined;
|
7978
8076
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -8068,6 +8166,10 @@ export declare const messengerContract: {
|
|
8068
8166
|
mobileNumber: string;
|
8069
8167
|
apiSecret: string;
|
8070
8168
|
} | undefined;
|
8169
|
+
line?: {
|
8170
|
+
channelId: string;
|
8171
|
+
channelSecret: string;
|
8172
|
+
} | undefined;
|
8071
8173
|
lineRichMenuId?: string | null | undefined;
|
8072
8174
|
messengerIntegrationType?: "own" | "business" | undefined;
|
8073
8175
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -8727,6 +8829,10 @@ export declare const messengerContract: {
|
|
8727
8829
|
mobileNumber: string;
|
8728
8830
|
apiSecret: string;
|
8729
8831
|
} | undefined;
|
8832
|
+
line?: {
|
8833
|
+
channelId: string;
|
8834
|
+
channelSecret: string;
|
8835
|
+
} | undefined;
|
8730
8836
|
lineRichMenuId?: string | null | undefined;
|
8731
8837
|
messengerIntegrationType?: "own" | "business" | undefined;
|
8732
8838
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -9156,6 +9262,10 @@ export declare const messengerContract: {
|
|
9156
9262
|
mobileNumber: string;
|
9157
9263
|
apiSecret: string;
|
9158
9264
|
} | undefined;
|
9265
|
+
line?: {
|
9266
|
+
channelId: string;
|
9267
|
+
channelSecret: string;
|
9268
|
+
} | undefined;
|
9159
9269
|
lineRichMenuId?: string | null | undefined;
|
9160
9270
|
messengerIntegrationType?: "own" | "business" | undefined;
|
9161
9271
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -11358,6 +11468,10 @@ export declare const messengerContract: {
|
|
11358
11468
|
mobileNumber: string;
|
11359
11469
|
apiSecret: string;
|
11360
11470
|
} | undefined;
|
11471
|
+
line?: {
|
11472
|
+
channelId: string;
|
11473
|
+
channelSecret: string;
|
11474
|
+
} | undefined;
|
11361
11475
|
lineRichMenuId?: string | null | undefined;
|
11362
11476
|
messengerIntegrationType?: "own" | "business" | undefined;
|
11363
11477
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -12124,6 +12238,10 @@ export declare const messengerContract: {
|
|
12124
12238
|
mobileNumber: string;
|
12125
12239
|
apiSecret: string;
|
12126
12240
|
} | undefined;
|
12241
|
+
line?: {
|
12242
|
+
channelId: string;
|
12243
|
+
channelSecret: string;
|
12244
|
+
} | undefined;
|
12127
12245
|
lineRichMenuId?: string | null | undefined;
|
12128
12246
|
messengerIntegrationType?: "own" | "business" | undefined;
|
12129
12247
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -12891,6 +13009,10 @@ export declare const messengerContract: {
|
|
12891
13009
|
mobileNumber: string;
|
12892
13010
|
apiSecret: string;
|
12893
13011
|
} | undefined;
|
13012
|
+
line?: {
|
13013
|
+
channelId: string;
|
13014
|
+
channelSecret: string;
|
13015
|
+
} | undefined;
|
12894
13016
|
lineRichMenuId?: string | null | undefined;
|
12895
13017
|
messengerIntegrationType?: "own" | "business" | undefined;
|
12896
13018
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -13657,6 +13779,10 @@ export declare const messengerContract: {
|
|
13657
13779
|
mobileNumber: string;
|
13658
13780
|
apiSecret: string;
|
13659
13781
|
} | undefined;
|
13782
|
+
line?: {
|
13783
|
+
channelId: string;
|
13784
|
+
channelSecret: string;
|
13785
|
+
} | undefined;
|
13660
13786
|
lineRichMenuId?: string | null | undefined;
|
13661
13787
|
messengerIntegrationType?: "own" | "business" | undefined;
|
13662
13788
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -14424,6 +14550,10 @@ export declare const messengerContract: {
|
|
14424
14550
|
mobileNumber: string;
|
14425
14551
|
apiSecret: string;
|
14426
14552
|
} | undefined;
|
14553
|
+
line?: {
|
14554
|
+
channelId: string;
|
14555
|
+
channelSecret: string;
|
14556
|
+
} | undefined;
|
14427
14557
|
lineRichMenuId?: string | null | undefined;
|
14428
14558
|
messengerIntegrationType?: "own" | "business" | undefined;
|
14429
14559
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -15190,6 +15320,10 @@ export declare const messengerContract: {
|
|
15190
15320
|
mobileNumber: string;
|
15191
15321
|
apiSecret: string;
|
15192
15322
|
} | undefined;
|
15323
|
+
line?: {
|
15324
|
+
channelId: string;
|
15325
|
+
channelSecret: string;
|
15326
|
+
} | undefined;
|
15193
15327
|
lineRichMenuId?: string | null | undefined;
|
15194
15328
|
messengerIntegrationType?: "own" | "business" | undefined;
|
15195
15329
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -15959,6 +16093,10 @@ export declare const messengerContract: {
|
|
15959
16093
|
mobileNumber: string;
|
15960
16094
|
apiSecret: string;
|
15961
16095
|
} | undefined;
|
16096
|
+
line?: {
|
16097
|
+
channelId: string;
|
16098
|
+
channelSecret: string;
|
16099
|
+
} | undefined;
|
15962
16100
|
lineRichMenuId?: string | null | undefined;
|
15963
16101
|
messengerIntegrationType?: "own" | "business" | undefined;
|
15964
16102
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -16725,6 +16863,10 @@ export declare const messengerContract: {
|
|
16725
16863
|
mobileNumber: string;
|
16726
16864
|
apiSecret: string;
|
16727
16865
|
} | undefined;
|
16866
|
+
line?: {
|
16867
|
+
channelId: string;
|
16868
|
+
channelSecret: string;
|
16869
|
+
} | undefined;
|
16728
16870
|
lineRichMenuId?: string | null | undefined;
|
16729
16871
|
messengerIntegrationType?: "own" | "business" | undefined;
|
16730
16872
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -17495,6 +17637,10 @@ export declare const messengerContract: {
|
|
17495
17637
|
mobileNumber: string;
|
17496
17638
|
apiSecret: string;
|
17497
17639
|
} | undefined;
|
17640
|
+
line?: {
|
17641
|
+
channelId: string;
|
17642
|
+
channelSecret: string;
|
17643
|
+
} | undefined;
|
17498
17644
|
lineRichMenuId?: string | null | undefined;
|
17499
17645
|
messengerIntegrationType?: "own" | "business" | undefined;
|
17500
17646
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -18261,6 +18407,10 @@ export declare const messengerContract: {
|
|
18261
18407
|
mobileNumber: string;
|
18262
18408
|
apiSecret: string;
|
18263
18409
|
} | undefined;
|
18410
|
+
line?: {
|
18411
|
+
channelId: string;
|
18412
|
+
channelSecret: string;
|
18413
|
+
} | undefined;
|
18264
18414
|
lineRichMenuId?: string | null | undefined;
|
18265
18415
|
messengerIntegrationType?: "own" | "business" | undefined;
|
18266
18416
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -18977,6 +19127,16 @@ export declare const messengerContract: {
|
|
18977
19127
|
mobileNumber: string;
|
18978
19128
|
apiSecret: string;
|
18979
19129
|
}>>;
|
19130
|
+
line: z.ZodOptional<z.ZodObject<{
|
19131
|
+
channelId: z.ZodString;
|
19132
|
+
channelSecret: z.ZodString;
|
19133
|
+
}, "strip", z.ZodTypeAny, {
|
19134
|
+
channelId: string;
|
19135
|
+
channelSecret: string;
|
19136
|
+
}, {
|
19137
|
+
channelId: string;
|
19138
|
+
channelSecret: string;
|
19139
|
+
}>>;
|
18980
19140
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
18981
19141
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
18982
19142
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
@@ -19007,6 +19167,10 @@ export declare const messengerContract: {
|
|
19007
19167
|
mobileNumber: string;
|
19008
19168
|
apiSecret: string;
|
19009
19169
|
} | undefined;
|
19170
|
+
line?: {
|
19171
|
+
channelId: string;
|
19172
|
+
channelSecret: string;
|
19173
|
+
} | undefined;
|
19010
19174
|
lineRichMenuId?: string | null | undefined;
|
19011
19175
|
messengerIntegrationType?: "own" | "business" | undefined;
|
19012
19176
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -19037,6 +19201,10 @@ export declare const messengerContract: {
|
|
19037
19201
|
mobileNumber: string;
|
19038
19202
|
apiSecret: string;
|
19039
19203
|
} | undefined;
|
19204
|
+
line?: {
|
19205
|
+
channelId: string;
|
19206
|
+
channelSecret: string;
|
19207
|
+
} | undefined;
|
19040
19208
|
lineRichMenuId?: string | null | undefined;
|
19041
19209
|
messengerIntegrationType?: "own" | "business" | undefined;
|
19042
19210
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -19097,6 +19265,10 @@ export declare const messengerContract: {
|
|
19097
19265
|
mobileNumber: string;
|
19098
19266
|
apiSecret: string;
|
19099
19267
|
} | undefined;
|
19268
|
+
line?: {
|
19269
|
+
channelId: string;
|
19270
|
+
channelSecret: string;
|
19271
|
+
} | undefined;
|
19100
19272
|
lineRichMenuId?: string | null | undefined;
|
19101
19273
|
messengerIntegrationType?: "own" | "business" | undefined;
|
19102
19274
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -19145,6 +19317,10 @@ export declare const messengerContract: {
|
|
19145
19317
|
mobileNumber: string;
|
19146
19318
|
apiSecret: string;
|
19147
19319
|
} | undefined;
|
19320
|
+
line?: {
|
19321
|
+
channelId: string;
|
19322
|
+
channelSecret: string;
|
19323
|
+
} | undefined;
|
19148
19324
|
lineRichMenuId?: string | null | undefined;
|
19149
19325
|
messengerIntegrationType?: "own" | "business" | undefined;
|
19150
19326
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -19232,6 +19408,16 @@ export declare const messengerContract: {
|
|
19232
19408
|
mobileNumber: string;
|
19233
19409
|
apiSecret: string;
|
19234
19410
|
}>>;
|
19411
|
+
line: z.ZodOptional<z.ZodObject<{
|
19412
|
+
channelId: z.ZodString;
|
19413
|
+
channelSecret: z.ZodString;
|
19414
|
+
}, "strip", z.ZodTypeAny, {
|
19415
|
+
channelId: string;
|
19416
|
+
channelSecret: string;
|
19417
|
+
}, {
|
19418
|
+
channelId: string;
|
19419
|
+
channelSecret: string;
|
19420
|
+
}>>;
|
19235
19421
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
19236
19422
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
19237
19423
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
@@ -19262,6 +19448,10 @@ export declare const messengerContract: {
|
|
19262
19448
|
mobileNumber: string;
|
19263
19449
|
apiSecret: string;
|
19264
19450
|
} | undefined;
|
19451
|
+
line?: {
|
19452
|
+
channelId: string;
|
19453
|
+
channelSecret: string;
|
19454
|
+
} | undefined;
|
19265
19455
|
lineRichMenuId?: string | null | undefined;
|
19266
19456
|
messengerIntegrationType?: "own" | "business" | undefined;
|
19267
19457
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -19292,6 +19482,10 @@ export declare const messengerContract: {
|
|
19292
19482
|
mobileNumber: string;
|
19293
19483
|
apiSecret: string;
|
19294
19484
|
} | undefined;
|
19485
|
+
line?: {
|
19486
|
+
channelId: string;
|
19487
|
+
channelSecret: string;
|
19488
|
+
} | undefined;
|
19295
19489
|
lineRichMenuId?: string | null | undefined;
|
19296
19490
|
messengerIntegrationType?: "own" | "business" | undefined;
|
19297
19491
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -19352,6 +19546,10 @@ export declare const messengerContract: {
|
|
19352
19546
|
mobileNumber: string;
|
19353
19547
|
apiSecret: string;
|
19354
19548
|
} | undefined;
|
19549
|
+
line?: {
|
19550
|
+
channelId: string;
|
19551
|
+
channelSecret: string;
|
19552
|
+
} | undefined;
|
19355
19553
|
lineRichMenuId?: string | null | undefined;
|
19356
19554
|
messengerIntegrationType?: "own" | "business" | undefined;
|
19357
19555
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -19400,6 +19598,10 @@ export declare const messengerContract: {
|
|
19400
19598
|
mobileNumber: string;
|
19401
19599
|
apiSecret: string;
|
19402
19600
|
} | undefined;
|
19601
|
+
line?: {
|
19602
|
+
channelId: string;
|
19603
|
+
channelSecret: string;
|
19604
|
+
} | undefined;
|
19403
19605
|
lineRichMenuId?: string | null | undefined;
|
19404
19606
|
messengerIntegrationType?: "own" | "business" | undefined;
|
19405
19607
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -19450,6 +19652,10 @@ export declare const messengerContract: {
|
|
19450
19652
|
mobileNumber: string;
|
19451
19653
|
apiSecret: string;
|
19452
19654
|
} | undefined;
|
19655
|
+
line?: {
|
19656
|
+
channelId: string;
|
19657
|
+
channelSecret: string;
|
19658
|
+
} | undefined;
|
19453
19659
|
lineRichMenuId?: string | null | undefined;
|
19454
19660
|
messengerIntegrationType?: "own" | "business" | undefined;
|
19455
19661
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -19501,6 +19707,10 @@ export declare const messengerContract: {
|
|
19501
19707
|
mobileNumber: string;
|
19502
19708
|
apiSecret: string;
|
19503
19709
|
} | undefined;
|
19710
|
+
line?: {
|
19711
|
+
channelId: string;
|
19712
|
+
channelSecret: string;
|
19713
|
+
} | undefined;
|
19504
19714
|
lineRichMenuId?: string | null | undefined;
|
19505
19715
|
messengerIntegrationType?: "own" | "business" | undefined;
|
19506
19716
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -19610,6 +19820,16 @@ export declare const messengerContract: {
|
|
19610
19820
|
mobileNumber: string;
|
19611
19821
|
apiSecret: string;
|
19612
19822
|
}>>;
|
19823
|
+
line: z.ZodOptional<z.ZodObject<{
|
19824
|
+
channelId: z.ZodString;
|
19825
|
+
channelSecret: z.ZodString;
|
19826
|
+
}, "strip", z.ZodTypeAny, {
|
19827
|
+
channelId: string;
|
19828
|
+
channelSecret: string;
|
19829
|
+
}, {
|
19830
|
+
channelId: string;
|
19831
|
+
channelSecret: string;
|
19832
|
+
}>>;
|
19613
19833
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
19614
19834
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
19615
19835
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
@@ -19640,6 +19860,10 @@ export declare const messengerContract: {
|
|
19640
19860
|
mobileNumber: string;
|
19641
19861
|
apiSecret: string;
|
19642
19862
|
} | undefined;
|
19863
|
+
line?: {
|
19864
|
+
channelId: string;
|
19865
|
+
channelSecret: string;
|
19866
|
+
} | undefined;
|
19643
19867
|
lineRichMenuId?: string | null | undefined;
|
19644
19868
|
messengerIntegrationType?: "own" | "business" | undefined;
|
19645
19869
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -19670,6 +19894,10 @@ export declare const messengerContract: {
|
|
19670
19894
|
mobileNumber: string;
|
19671
19895
|
apiSecret: string;
|
19672
19896
|
} | undefined;
|
19897
|
+
line?: {
|
19898
|
+
channelId: string;
|
19899
|
+
channelSecret: string;
|
19900
|
+
} | undefined;
|
19673
19901
|
lineRichMenuId?: string | null | undefined;
|
19674
19902
|
messengerIntegrationType?: "own" | "business" | undefined;
|
19675
19903
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -19730,6 +19958,10 @@ export declare const messengerContract: {
|
|
19730
19958
|
mobileNumber: string;
|
19731
19959
|
apiSecret: string;
|
19732
19960
|
} | undefined;
|
19961
|
+
line?: {
|
19962
|
+
channelId: string;
|
19963
|
+
channelSecret: string;
|
19964
|
+
} | undefined;
|
19733
19965
|
lineRichMenuId?: string | null | undefined;
|
19734
19966
|
messengerIntegrationType?: "own" | "business" | undefined;
|
19735
19967
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -19778,6 +20010,10 @@ export declare const messengerContract: {
|
|
19778
20010
|
mobileNumber: string;
|
19779
20011
|
apiSecret: string;
|
19780
20012
|
} | undefined;
|
20013
|
+
line?: {
|
20014
|
+
channelId: string;
|
20015
|
+
channelSecret: string;
|
20016
|
+
} | undefined;
|
19781
20017
|
lineRichMenuId?: string | null | undefined;
|
19782
20018
|
messengerIntegrationType?: "own" | "business" | undefined;
|
19783
20019
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -19865,6 +20101,16 @@ export declare const messengerContract: {
|
|
19865
20101
|
mobileNumber: string;
|
19866
20102
|
apiSecret: string;
|
19867
20103
|
}>>;
|
20104
|
+
line: z.ZodOptional<z.ZodObject<{
|
20105
|
+
channelId: z.ZodString;
|
20106
|
+
channelSecret: z.ZodString;
|
20107
|
+
}, "strip", z.ZodTypeAny, {
|
20108
|
+
channelId: string;
|
20109
|
+
channelSecret: string;
|
20110
|
+
}, {
|
20111
|
+
channelId: string;
|
20112
|
+
channelSecret: string;
|
20113
|
+
}>>;
|
19868
20114
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
19869
20115
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
19870
20116
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
@@ -19895,6 +20141,10 @@ export declare const messengerContract: {
|
|
19895
20141
|
mobileNumber: string;
|
19896
20142
|
apiSecret: string;
|
19897
20143
|
} | undefined;
|
20144
|
+
line?: {
|
20145
|
+
channelId: string;
|
20146
|
+
channelSecret: string;
|
20147
|
+
} | undefined;
|
19898
20148
|
lineRichMenuId?: string | null | undefined;
|
19899
20149
|
messengerIntegrationType?: "own" | "business" | undefined;
|
19900
20150
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -19925,6 +20175,10 @@ export declare const messengerContract: {
|
|
19925
20175
|
mobileNumber: string;
|
19926
20176
|
apiSecret: string;
|
19927
20177
|
} | undefined;
|
20178
|
+
line?: {
|
20179
|
+
channelId: string;
|
20180
|
+
channelSecret: string;
|
20181
|
+
} | undefined;
|
19928
20182
|
lineRichMenuId?: string | null | undefined;
|
19929
20183
|
messengerIntegrationType?: "own" | "business" | undefined;
|
19930
20184
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -19985,6 +20239,10 @@ export declare const messengerContract: {
|
|
19985
20239
|
mobileNumber: string;
|
19986
20240
|
apiSecret: string;
|
19987
20241
|
} | undefined;
|
20242
|
+
line?: {
|
20243
|
+
channelId: string;
|
20244
|
+
channelSecret: string;
|
20245
|
+
} | undefined;
|
19988
20246
|
lineRichMenuId?: string | null | undefined;
|
19989
20247
|
messengerIntegrationType?: "own" | "business" | undefined;
|
19990
20248
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -20033,6 +20291,10 @@ export declare const messengerContract: {
|
|
20033
20291
|
mobileNumber: string;
|
20034
20292
|
apiSecret: string;
|
20035
20293
|
} | undefined;
|
20294
|
+
line?: {
|
20295
|
+
channelId: string;
|
20296
|
+
channelSecret: string;
|
20297
|
+
} | undefined;
|
20036
20298
|
lineRichMenuId?: string | null | undefined;
|
20037
20299
|
messengerIntegrationType?: "own" | "business" | undefined;
|
20038
20300
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -20083,6 +20345,10 @@ export declare const messengerContract: {
|
|
20083
20345
|
mobileNumber: string;
|
20084
20346
|
apiSecret: string;
|
20085
20347
|
} | undefined;
|
20348
|
+
line?: {
|
20349
|
+
channelId: string;
|
20350
|
+
channelSecret: string;
|
20351
|
+
} | undefined;
|
20086
20352
|
lineRichMenuId?: string | null | undefined;
|
20087
20353
|
messengerIntegrationType?: "own" | "business" | undefined;
|
20088
20354
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -20134,6 +20400,10 @@ export declare const messengerContract: {
|
|
20134
20400
|
mobileNumber: string;
|
20135
20401
|
apiSecret: string;
|
20136
20402
|
} | undefined;
|
20403
|
+
line?: {
|
20404
|
+
channelId: string;
|
20405
|
+
channelSecret: string;
|
20406
|
+
} | undefined;
|
20137
20407
|
lineRichMenuId?: string | null | undefined;
|
20138
20408
|
messengerIntegrationType?: "own" | "business" | undefined;
|
20139
20409
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -20255,6 +20525,16 @@ export declare const messengerContract: {
|
|
20255
20525
|
mobileNumber: string;
|
20256
20526
|
apiSecret: string;
|
20257
20527
|
}>>;
|
20528
|
+
line: z.ZodOptional<z.ZodObject<{
|
20529
|
+
channelId: z.ZodString;
|
20530
|
+
channelSecret: z.ZodString;
|
20531
|
+
}, "strip", z.ZodTypeAny, {
|
20532
|
+
channelId: string;
|
20533
|
+
channelSecret: string;
|
20534
|
+
}, {
|
20535
|
+
channelId: string;
|
20536
|
+
channelSecret: string;
|
20537
|
+
}>>;
|
20258
20538
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
20259
20539
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
20260
20540
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
@@ -20285,6 +20565,10 @@ export declare const messengerContract: {
|
|
20285
20565
|
mobileNumber: string;
|
20286
20566
|
apiSecret: string;
|
20287
20567
|
} | undefined;
|
20568
|
+
line?: {
|
20569
|
+
channelId: string;
|
20570
|
+
channelSecret: string;
|
20571
|
+
} | undefined;
|
20288
20572
|
lineRichMenuId?: string | null | undefined;
|
20289
20573
|
messengerIntegrationType?: "own" | "business" | undefined;
|
20290
20574
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -20315,6 +20599,10 @@ export declare const messengerContract: {
|
|
20315
20599
|
mobileNumber: string;
|
20316
20600
|
apiSecret: string;
|
20317
20601
|
} | undefined;
|
20602
|
+
line?: {
|
20603
|
+
channelId: string;
|
20604
|
+
channelSecret: string;
|
20605
|
+
} | undefined;
|
20318
20606
|
lineRichMenuId?: string | null | undefined;
|
20319
20607
|
messengerIntegrationType?: "own" | "business" | undefined;
|
20320
20608
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -20375,6 +20663,10 @@ export declare const messengerContract: {
|
|
20375
20663
|
mobileNumber: string;
|
20376
20664
|
apiSecret: string;
|
20377
20665
|
} | undefined;
|
20666
|
+
line?: {
|
20667
|
+
channelId: string;
|
20668
|
+
channelSecret: string;
|
20669
|
+
} | undefined;
|
20378
20670
|
lineRichMenuId?: string | null | undefined;
|
20379
20671
|
messengerIntegrationType?: "own" | "business" | undefined;
|
20380
20672
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -20423,6 +20715,10 @@ export declare const messengerContract: {
|
|
20423
20715
|
mobileNumber: string;
|
20424
20716
|
apiSecret: string;
|
20425
20717
|
} | undefined;
|
20718
|
+
line?: {
|
20719
|
+
channelId: string;
|
20720
|
+
channelSecret: string;
|
20721
|
+
} | undefined;
|
20426
20722
|
lineRichMenuId?: string | null | undefined;
|
20427
20723
|
messengerIntegrationType?: "own" | "business" | undefined;
|
20428
20724
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -20473,6 +20769,10 @@ export declare const messengerContract: {
|
|
20473
20769
|
mobileNumber: string;
|
20474
20770
|
apiSecret: string;
|
20475
20771
|
} | undefined;
|
20772
|
+
line?: {
|
20773
|
+
channelId: string;
|
20774
|
+
channelSecret: string;
|
20775
|
+
} | undefined;
|
20476
20776
|
lineRichMenuId?: string | null | undefined;
|
20477
20777
|
messengerIntegrationType?: "own" | "business" | undefined;
|
20478
20778
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -20524,6 +20824,10 @@ export declare const messengerContract: {
|
|
20524
20824
|
mobileNumber: string;
|
20525
20825
|
apiSecret: string;
|
20526
20826
|
} | undefined;
|
20827
|
+
line?: {
|
20828
|
+
channelId: string;
|
20829
|
+
channelSecret: string;
|
20830
|
+
} | undefined;
|
20527
20831
|
lineRichMenuId?: string | null | undefined;
|
20528
20832
|
messengerIntegrationType?: "own" | "business" | undefined;
|
20529
20833
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -20645,6 +20949,16 @@ export declare const messengerContract: {
|
|
20645
20949
|
mobileNumber: string;
|
20646
20950
|
apiSecret: string;
|
20647
20951
|
}>>;
|
20952
|
+
line: z.ZodOptional<z.ZodObject<{
|
20953
|
+
channelId: z.ZodString;
|
20954
|
+
channelSecret: z.ZodString;
|
20955
|
+
}, "strip", z.ZodTypeAny, {
|
20956
|
+
channelId: string;
|
20957
|
+
channelSecret: string;
|
20958
|
+
}, {
|
20959
|
+
channelId: string;
|
20960
|
+
channelSecret: string;
|
20961
|
+
}>>;
|
20648
20962
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
20649
20963
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
20650
20964
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
@@ -20675,6 +20989,10 @@ export declare const messengerContract: {
|
|
20675
20989
|
mobileNumber: string;
|
20676
20990
|
apiSecret: string;
|
20677
20991
|
} | undefined;
|
20992
|
+
line?: {
|
20993
|
+
channelId: string;
|
20994
|
+
channelSecret: string;
|
20995
|
+
} | undefined;
|
20678
20996
|
lineRichMenuId?: string | null | undefined;
|
20679
20997
|
messengerIntegrationType?: "own" | "business" | undefined;
|
20680
20998
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -20705,6 +21023,10 @@ export declare const messengerContract: {
|
|
20705
21023
|
mobileNumber: string;
|
20706
21024
|
apiSecret: string;
|
20707
21025
|
} | undefined;
|
21026
|
+
line?: {
|
21027
|
+
channelId: string;
|
21028
|
+
channelSecret: string;
|
21029
|
+
} | undefined;
|
20708
21030
|
lineRichMenuId?: string | null | undefined;
|
20709
21031
|
messengerIntegrationType?: "own" | "business" | undefined;
|
20710
21032
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -20765,6 +21087,10 @@ export declare const messengerContract: {
|
|
20765
21087
|
mobileNumber: string;
|
20766
21088
|
apiSecret: string;
|
20767
21089
|
} | undefined;
|
21090
|
+
line?: {
|
21091
|
+
channelId: string;
|
21092
|
+
channelSecret: string;
|
21093
|
+
} | undefined;
|
20768
21094
|
lineRichMenuId?: string | null | undefined;
|
20769
21095
|
messengerIntegrationType?: "own" | "business" | undefined;
|
20770
21096
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -20813,6 +21139,10 @@ export declare const messengerContract: {
|
|
20813
21139
|
mobileNumber: string;
|
20814
21140
|
apiSecret: string;
|
20815
21141
|
} | undefined;
|
21142
|
+
line?: {
|
21143
|
+
channelId: string;
|
21144
|
+
channelSecret: string;
|
21145
|
+
} | undefined;
|
20816
21146
|
lineRichMenuId?: string | null | undefined;
|
20817
21147
|
messengerIntegrationType?: "own" | "business" | undefined;
|
20818
21148
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -20863,6 +21193,10 @@ export declare const messengerContract: {
|
|
20863
21193
|
mobileNumber: string;
|
20864
21194
|
apiSecret: string;
|
20865
21195
|
} | undefined;
|
21196
|
+
line?: {
|
21197
|
+
channelId: string;
|
21198
|
+
channelSecret: string;
|
21199
|
+
} | undefined;
|
20866
21200
|
lineRichMenuId?: string | null | undefined;
|
20867
21201
|
messengerIntegrationType?: "own" | "business" | undefined;
|
20868
21202
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -20914,6 +21248,10 @@ export declare const messengerContract: {
|
|
20914
21248
|
mobileNumber: string;
|
20915
21249
|
apiSecret: string;
|
20916
21250
|
} | undefined;
|
21251
|
+
line?: {
|
21252
|
+
channelId: string;
|
21253
|
+
channelSecret: string;
|
21254
|
+
} | undefined;
|
20917
21255
|
lineRichMenuId?: string | null | undefined;
|
20918
21256
|
messengerIntegrationType?: "own" | "business" | undefined;
|
20919
21257
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -21022,6 +21360,16 @@ export declare const messengerContract: {
|
|
21022
21360
|
mobileNumber: string;
|
21023
21361
|
apiSecret: string;
|
21024
21362
|
}>>;
|
21363
|
+
line: z.ZodOptional<z.ZodObject<{
|
21364
|
+
channelId: z.ZodString;
|
21365
|
+
channelSecret: z.ZodString;
|
21366
|
+
}, "strip", z.ZodTypeAny, {
|
21367
|
+
channelId: string;
|
21368
|
+
channelSecret: string;
|
21369
|
+
}, {
|
21370
|
+
channelId: string;
|
21371
|
+
channelSecret: string;
|
21372
|
+
}>>;
|
21025
21373
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
21026
21374
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
21027
21375
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
@@ -21052,6 +21400,10 @@ export declare const messengerContract: {
|
|
21052
21400
|
mobileNumber: string;
|
21053
21401
|
apiSecret: string;
|
21054
21402
|
} | undefined;
|
21403
|
+
line?: {
|
21404
|
+
channelId: string;
|
21405
|
+
channelSecret: string;
|
21406
|
+
} | undefined;
|
21055
21407
|
lineRichMenuId?: string | null | undefined;
|
21056
21408
|
messengerIntegrationType?: "own" | "business" | undefined;
|
21057
21409
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -21082,6 +21434,10 @@ export declare const messengerContract: {
|
|
21082
21434
|
mobileNumber: string;
|
21083
21435
|
apiSecret: string;
|
21084
21436
|
} | undefined;
|
21437
|
+
line?: {
|
21438
|
+
channelId: string;
|
21439
|
+
channelSecret: string;
|
21440
|
+
} | undefined;
|
21085
21441
|
lineRichMenuId?: string | null | undefined;
|
21086
21442
|
messengerIntegrationType?: "own" | "business" | undefined;
|
21087
21443
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -21147,6 +21503,10 @@ export declare const messengerContract: {
|
|
21147
21503
|
mobileNumber: string;
|
21148
21504
|
apiSecret: string;
|
21149
21505
|
} | undefined;
|
21506
|
+
line?: {
|
21507
|
+
channelId: string;
|
21508
|
+
channelSecret: string;
|
21509
|
+
} | undefined;
|
21150
21510
|
lineRichMenuId?: string | null | undefined;
|
21151
21511
|
messengerIntegrationType?: "own" | "business" | undefined;
|
21152
21512
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -21199,6 +21559,10 @@ export declare const messengerContract: {
|
|
21199
21559
|
mobileNumber: string;
|
21200
21560
|
apiSecret: string;
|
21201
21561
|
} | undefined;
|
21562
|
+
line?: {
|
21563
|
+
channelId: string;
|
21564
|
+
channelSecret: string;
|
21565
|
+
} | undefined;
|
21202
21566
|
lineRichMenuId?: string | null | undefined;
|
21203
21567
|
messengerIntegrationType?: "own" | "business" | undefined;
|
21204
21568
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -21290,6 +21654,16 @@ export declare const messengerContract: {
|
|
21290
21654
|
mobileNumber: string;
|
21291
21655
|
apiSecret: string;
|
21292
21656
|
}>>;
|
21657
|
+
line: z.ZodOptional<z.ZodObject<{
|
21658
|
+
channelId: z.ZodString;
|
21659
|
+
channelSecret: z.ZodString;
|
21660
|
+
}, "strip", z.ZodTypeAny, {
|
21661
|
+
channelId: string;
|
21662
|
+
channelSecret: string;
|
21663
|
+
}, {
|
21664
|
+
channelId: string;
|
21665
|
+
channelSecret: string;
|
21666
|
+
}>>;
|
21293
21667
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
21294
21668
|
messengerIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
21295
21669
|
facebookFeedIntegrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"own">, z.ZodLiteral<"business">]>>;
|
@@ -21320,6 +21694,10 @@ export declare const messengerContract: {
|
|
21320
21694
|
mobileNumber: string;
|
21321
21695
|
apiSecret: string;
|
21322
21696
|
} | undefined;
|
21697
|
+
line?: {
|
21698
|
+
channelId: string;
|
21699
|
+
channelSecret: string;
|
21700
|
+
} | undefined;
|
21323
21701
|
lineRichMenuId?: string | null | undefined;
|
21324
21702
|
messengerIntegrationType?: "own" | "business" | undefined;
|
21325
21703
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -21350,6 +21728,10 @@ export declare const messengerContract: {
|
|
21350
21728
|
mobileNumber: string;
|
21351
21729
|
apiSecret: string;
|
21352
21730
|
} | undefined;
|
21731
|
+
line?: {
|
21732
|
+
channelId: string;
|
21733
|
+
channelSecret: string;
|
21734
|
+
} | undefined;
|
21353
21735
|
lineRichMenuId?: string | null | undefined;
|
21354
21736
|
messengerIntegrationType?: "own" | "business" | undefined;
|
21355
21737
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -21410,6 +21792,10 @@ export declare const messengerContract: {
|
|
21410
21792
|
mobileNumber: string;
|
21411
21793
|
apiSecret: string;
|
21412
21794
|
} | undefined;
|
21795
|
+
line?: {
|
21796
|
+
channelId: string;
|
21797
|
+
channelSecret: string;
|
21798
|
+
} | undefined;
|
21413
21799
|
lineRichMenuId?: string | null | undefined;
|
21414
21800
|
messengerIntegrationType?: "own" | "business" | undefined;
|
21415
21801
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -21458,6 +21844,10 @@ export declare const messengerContract: {
|
|
21458
21844
|
mobileNumber: string;
|
21459
21845
|
apiSecret: string;
|
21460
21846
|
} | undefined;
|
21847
|
+
line?: {
|
21848
|
+
channelId: string;
|
21849
|
+
channelSecret: string;
|
21850
|
+
} | undefined;
|
21461
21851
|
lineRichMenuId?: string | null | undefined;
|
21462
21852
|
messengerIntegrationType?: "own" | "business" | undefined;
|
21463
21853
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -21508,6 +21898,10 @@ export declare const messengerContract: {
|
|
21508
21898
|
mobileNumber: string;
|
21509
21899
|
apiSecret: string;
|
21510
21900
|
} | undefined;
|
21901
|
+
line?: {
|
21902
|
+
channelId: string;
|
21903
|
+
channelSecret: string;
|
21904
|
+
} | undefined;
|
21511
21905
|
lineRichMenuId?: string | null | undefined;
|
21512
21906
|
messengerIntegrationType?: "own" | "business" | undefined;
|
21513
21907
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|
@@ -21559,6 +21953,10 @@ export declare const messengerContract: {
|
|
21559
21953
|
mobileNumber: string;
|
21560
21954
|
apiSecret: string;
|
21561
21955
|
} | undefined;
|
21956
|
+
line?: {
|
21957
|
+
channelId: string;
|
21958
|
+
channelSecret: string;
|
21959
|
+
} | undefined;
|
21562
21960
|
lineRichMenuId?: string | null | undefined;
|
21563
21961
|
messengerIntegrationType?: "own" | "business" | undefined;
|
21564
21962
|
facebookFeedIntegrationType?: "own" | "business" | undefined;
|