@kl1/contracts 1.1.53 → 1.1.54
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 +2772 -197
- package/dist/api-contracts/src/channel/index.d.ts.map +1 -1
- package/dist/api-contracts/src/channel/schema.d.ts +126 -10
- package/dist/api-contracts/src/channel/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/channel/validation.d.ts +240 -10
- package/dist/api-contracts/src/channel/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/index.d.ts +24249 -21551
- package/dist/api-contracts/src/chat/index.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/schema.d.ts +753 -105
- package/dist/api-contracts/src/chat/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/validation.d.ts +1096 -144
- package/dist/api-contracts/src/chat/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/contract.d.ts +35856 -4586
- package/dist/api-contracts/src/contract.d.ts.map +1 -1
- package/dist/api-contracts/src/cx-log/index.d.ts +140 -12
- package/dist/api-contracts/src/cx-log/index.d.ts.map +1 -1
- package/dist/api-contracts/src/cx-log/schema.d.ts +118 -10
- package/dist/api-contracts/src/cx-log/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/facebook-feed/index.d.ts +1475 -163
- package/dist/api-contracts/src/facebook-feed/index.d.ts.map +1 -1
- package/dist/api-contracts/src/facebook-feed/schema.d.ts +99 -11
- package/dist/api-contracts/src/facebook-feed/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/facebook-feed/validation.d.ts +74 -6
- package/dist/api-contracts/src/facebook-feed/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/instagram/index.d.ts +1155 -127
- package/dist/api-contracts/src/instagram/index.d.ts.map +1 -1
- package/dist/api-contracts/src/line/index.d.ts +1034 -122
- package/dist/api-contracts/src/line/index.d.ts.map +1 -1
- package/dist/api-contracts/src/line/validation.d.ts +123 -15
- package/dist/api-contracts/src/line/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/mail/mail-contract.d.ts +6 -6
- package/dist/api-contracts/src/mail/mail-server-contract.d.ts +6 -6
- package/dist/api-contracts/src/mail/schemas/account.schema.d.ts +2 -2
- package/dist/api-contracts/src/messenger/index.d.ts +1155 -127
- package/dist/api-contracts/src/messenger/index.d.ts.map +1 -1
- package/dist/api-contracts/src/messenger/validation.d.ts +74 -6
- package/dist/api-contracts/src/messenger/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/sms/index.d.ts +225 -29
- package/dist/api-contracts/src/sms/index.d.ts.map +1 -1
- package/dist/api-contracts/src/sms/schema.d.ts +6 -6
- package/dist/api-contracts/src/sms/validation.d.ts +4 -4
- package/dist/api-contracts/src/telegram/index.d.ts +837 -101
- package/dist/api-contracts/src/telegram/index.d.ts.map +1 -1
- package/dist/api-contracts/src/viber/index.d.ts +837 -101
- package/dist/api-contracts/src/viber/index.d.ts.map +1 -1
- package/dist/api-contracts/src/webchat/index.d.ts +549 -77
- package/dist/api-contracts/src/webchat/index.d.ts.map +1 -1
- package/dist/api-contracts/src/whatsapp/index.d.ts +637 -642
- package/dist/api-contracts/src/whatsapp/index.d.ts.map +1 -1
- package/dist/api-contracts/src/workflow-rule/index.d.ts +236 -20
- package/dist/api-contracts/src/workflow-rule/index.d.ts.map +1 -1
- package/dist/entities/src/enums/chat.d.ts +1 -0
- package/dist/entities/src/enums/chat.d.ts.map +1 -1
- package/dist/index.js +2394 -2240
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2392 -2240
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
@@ -118,17 +118,45 @@ export declare const lineContract: {
|
|
118
118
|
channelSecret: z.ZodOptional<z.ZodString>;
|
119
119
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
120
120
|
senderId: z.ZodOptional<z.ZodString>;
|
121
|
+
whatsapp: z.ZodOptional<z.ZodObject<{
|
122
|
+
wabaBusinessId: z.ZodOptional<z.ZodString>;
|
123
|
+
wabaExternalId: z.ZodString;
|
124
|
+
phoneNumberId: z.ZodString;
|
125
|
+
email: z.ZodString;
|
126
|
+
clientId: z.ZodOptional<z.ZodString>;
|
127
|
+
channelId: z.ZodOptional<z.ZodString>;
|
128
|
+
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
129
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
130
|
+
}, "strip", z.ZodTypeAny, {
|
131
|
+
email: string;
|
132
|
+
wabaExternalId: string;
|
133
|
+
phoneNumberId: string;
|
134
|
+
wabaBusinessId?: string | undefined;
|
135
|
+
clientId?: string | undefined;
|
136
|
+
channelId?: string | undefined;
|
137
|
+
status?: "active" | "pending" | undefined;
|
138
|
+
apiKey?: string | undefined;
|
139
|
+
}, {
|
140
|
+
email: string;
|
141
|
+
wabaExternalId: string;
|
142
|
+
phoneNumberId: string;
|
143
|
+
wabaBusinessId?: string | undefined;
|
144
|
+
clientId?: string | undefined;
|
145
|
+
channelId?: string | undefined;
|
146
|
+
status?: "active" | "pending" | undefined;
|
147
|
+
apiKey?: string | undefined;
|
148
|
+
}>>;
|
121
149
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
122
150
|
mobileNumber: z.ZodString;
|
123
151
|
apiKey: z.ZodString;
|
124
152
|
apiSecret: z.ZodString;
|
125
153
|
}, "strip", z.ZodTypeAny, {
|
126
|
-
mobileNumber: string;
|
127
154
|
apiKey: string;
|
155
|
+
mobileNumber: string;
|
128
156
|
apiSecret: string;
|
129
157
|
}, {
|
130
|
-
mobileNumber: string;
|
131
158
|
apiKey: string;
|
159
|
+
mobileNumber: string;
|
132
160
|
apiSecret: string;
|
133
161
|
}>>;
|
134
162
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
@@ -140,9 +168,19 @@ export declare const lineContract: {
|
|
140
168
|
channelSecret?: string | undefined;
|
141
169
|
additionalCredentials?: any;
|
142
170
|
senderId?: string | undefined;
|
171
|
+
whatsapp?: {
|
172
|
+
email: string;
|
173
|
+
wabaExternalId: string;
|
174
|
+
phoneNumberId: string;
|
175
|
+
wabaBusinessId?: string | undefined;
|
176
|
+
clientId?: string | undefined;
|
177
|
+
channelId?: string | undefined;
|
178
|
+
status?: "active" | "pending" | undefined;
|
179
|
+
apiKey?: string | undefined;
|
180
|
+
} | undefined;
|
143
181
|
vonageCredentials?: {
|
144
|
-
mobileNumber: string;
|
145
182
|
apiKey: string;
|
183
|
+
mobileNumber: string;
|
146
184
|
apiSecret: string;
|
147
185
|
} | undefined;
|
148
186
|
lineRichMenuId?: string | null | undefined;
|
@@ -154,9 +192,19 @@ export declare const lineContract: {
|
|
154
192
|
channelSecret?: string | undefined;
|
155
193
|
additionalCredentials?: any;
|
156
194
|
senderId?: string | undefined;
|
195
|
+
whatsapp?: {
|
196
|
+
email: string;
|
197
|
+
wabaExternalId: string;
|
198
|
+
phoneNumberId: string;
|
199
|
+
wabaBusinessId?: string | undefined;
|
200
|
+
clientId?: string | undefined;
|
201
|
+
channelId?: string | undefined;
|
202
|
+
status?: "active" | "pending" | undefined;
|
203
|
+
apiKey?: string | undefined;
|
204
|
+
} | undefined;
|
157
205
|
vonageCredentials?: {
|
158
|
-
mobileNumber: string;
|
159
206
|
apiKey: string;
|
207
|
+
mobileNumber: string;
|
160
208
|
apiSecret: string;
|
161
209
|
} | undefined;
|
162
210
|
lineRichMenuId?: string | null | undefined;
|
@@ -198,9 +246,19 @@ export declare const lineContract: {
|
|
198
246
|
channelSecret?: string | undefined;
|
199
247
|
additionalCredentials?: any;
|
200
248
|
senderId?: string | undefined;
|
249
|
+
whatsapp?: {
|
250
|
+
email: string;
|
251
|
+
wabaExternalId: string;
|
252
|
+
phoneNumberId: string;
|
253
|
+
wabaBusinessId?: string | undefined;
|
254
|
+
clientId?: string | undefined;
|
255
|
+
channelId?: string | undefined;
|
256
|
+
status?: "active" | "pending" | undefined;
|
257
|
+
apiKey?: string | undefined;
|
258
|
+
} | undefined;
|
201
259
|
vonageCredentials?: {
|
202
|
-
mobileNumber: string;
|
203
260
|
apiKey: string;
|
261
|
+
mobileNumber: string;
|
204
262
|
apiSecret: string;
|
205
263
|
} | undefined;
|
206
264
|
lineRichMenuId?: string | null | undefined;
|
@@ -230,9 +288,19 @@ export declare const lineContract: {
|
|
230
288
|
channelSecret?: string | undefined;
|
231
289
|
additionalCredentials?: any;
|
232
290
|
senderId?: string | undefined;
|
291
|
+
whatsapp?: {
|
292
|
+
email: string;
|
293
|
+
wabaExternalId: string;
|
294
|
+
phoneNumberId: string;
|
295
|
+
wabaBusinessId?: string | undefined;
|
296
|
+
clientId?: string | undefined;
|
297
|
+
channelId?: string | undefined;
|
298
|
+
status?: "active" | "pending" | undefined;
|
299
|
+
apiKey?: string | undefined;
|
300
|
+
} | undefined;
|
233
301
|
vonageCredentials?: {
|
234
|
-
mobileNumber: string;
|
235
302
|
apiKey: string;
|
303
|
+
mobileNumber: string;
|
236
304
|
apiSecret: string;
|
237
305
|
} | undefined;
|
238
306
|
lineRichMenuId?: string | null | undefined;
|
@@ -265,9 +333,19 @@ export declare const lineContract: {
|
|
265
333
|
channelSecret?: string | undefined;
|
266
334
|
additionalCredentials?: any;
|
267
335
|
senderId?: string | undefined;
|
336
|
+
whatsapp?: {
|
337
|
+
email: string;
|
338
|
+
wabaExternalId: string;
|
339
|
+
phoneNumberId: string;
|
340
|
+
wabaBusinessId?: string | undefined;
|
341
|
+
clientId?: string | undefined;
|
342
|
+
channelId?: string | undefined;
|
343
|
+
status?: "active" | "pending" | undefined;
|
344
|
+
apiKey?: string | undefined;
|
345
|
+
} | undefined;
|
268
346
|
vonageCredentials?: {
|
269
|
-
mobileNumber: string;
|
270
347
|
apiKey: string;
|
348
|
+
mobileNumber: string;
|
271
349
|
apiSecret: string;
|
272
350
|
} | undefined;
|
273
351
|
lineRichMenuId?: string | null | undefined;
|
@@ -329,9 +407,19 @@ export declare const lineContract: {
|
|
329
407
|
channelSecret?: string | undefined;
|
330
408
|
additionalCredentials?: any;
|
331
409
|
senderId?: string | undefined;
|
410
|
+
whatsapp?: {
|
411
|
+
email: string;
|
412
|
+
wabaExternalId: string;
|
413
|
+
phoneNumberId: string;
|
414
|
+
wabaBusinessId?: string | undefined;
|
415
|
+
clientId?: string | undefined;
|
416
|
+
channelId?: string | undefined;
|
417
|
+
status?: "active" | "pending" | undefined;
|
418
|
+
apiKey?: string | undefined;
|
419
|
+
} | undefined;
|
332
420
|
vonageCredentials?: {
|
333
|
-
mobileNumber: string;
|
334
421
|
apiKey: string;
|
422
|
+
mobileNumber: string;
|
335
423
|
apiSecret: string;
|
336
424
|
} | undefined;
|
337
425
|
lineRichMenuId?: string | null | undefined;
|
@@ -384,7 +472,7 @@ export declare const lineContract: {
|
|
384
472
|
message: z.ZodObject<{
|
385
473
|
message: z.ZodOptional<z.ZodString>;
|
386
474
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
387
|
-
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "reaction", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "deleted", "unsupported"]>;
|
475
|
+
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "deleted", "unsupported"]>;
|
388
476
|
readAt: z.ZodOptional<z.ZodDate>;
|
389
477
|
metadata: z.ZodOptional<z.ZodAny>;
|
390
478
|
platformId: z.ZodOptional<z.ZodString>;
|
@@ -428,7 +516,7 @@ export declare const lineContract: {
|
|
428
516
|
phone: string | null;
|
429
517
|
}>;
|
430
518
|
}, "strip", z.ZodTypeAny, {
|
431
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
519
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "contacts" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
432
520
|
direction: "incoming" | "outgoing" | "system";
|
433
521
|
sender: {
|
434
522
|
name: string;
|
@@ -454,7 +542,7 @@ export declare const lineContract: {
|
|
454
542
|
fileSize: number;
|
455
543
|
} | undefined;
|
456
544
|
}, {
|
457
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
545
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "contacts" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
458
546
|
direction: "incoming" | "outgoing" | "system";
|
459
547
|
sender: {
|
460
548
|
name: string;
|
@@ -482,7 +570,7 @@ export declare const lineContract: {
|
|
482
570
|
}>;
|
483
571
|
}, "strip", z.ZodTypeAny, {
|
484
572
|
message: {
|
485
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
573
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "contacts" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
486
574
|
direction: "incoming" | "outgoing" | "system";
|
487
575
|
sender: {
|
488
576
|
name: string;
|
@@ -521,9 +609,19 @@ export declare const lineContract: {
|
|
521
609
|
channelSecret?: string | undefined;
|
522
610
|
additionalCredentials?: any;
|
523
611
|
senderId?: string | undefined;
|
612
|
+
whatsapp?: {
|
613
|
+
email: string;
|
614
|
+
wabaExternalId: string;
|
615
|
+
phoneNumberId: string;
|
616
|
+
wabaBusinessId?: string | undefined;
|
617
|
+
clientId?: string | undefined;
|
618
|
+
channelId?: string | undefined;
|
619
|
+
status?: "active" | "pending" | undefined;
|
620
|
+
apiKey?: string | undefined;
|
621
|
+
} | undefined;
|
524
622
|
vonageCredentials?: {
|
525
|
-
mobileNumber: string;
|
526
623
|
apiKey: string;
|
624
|
+
mobileNumber: string;
|
527
625
|
apiSecret: string;
|
528
626
|
} | undefined;
|
529
627
|
lineRichMenuId?: string | null | undefined;
|
@@ -577,7 +675,7 @@ export declare const lineContract: {
|
|
577
675
|
stickerId: number;
|
578
676
|
}, {
|
579
677
|
message: {
|
580
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
678
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "contacts" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
581
679
|
direction: "incoming" | "outgoing" | "system";
|
582
680
|
sender: {
|
583
681
|
name: string;
|
@@ -616,9 +714,19 @@ export declare const lineContract: {
|
|
616
714
|
channelSecret?: string | undefined;
|
617
715
|
additionalCredentials?: any;
|
618
716
|
senderId?: string | undefined;
|
717
|
+
whatsapp?: {
|
718
|
+
email: string;
|
719
|
+
wabaExternalId: string;
|
720
|
+
phoneNumberId: string;
|
721
|
+
wabaBusinessId?: string | undefined;
|
722
|
+
clientId?: string | undefined;
|
723
|
+
channelId?: string | undefined;
|
724
|
+
status?: "active" | "pending" | undefined;
|
725
|
+
apiKey?: string | undefined;
|
726
|
+
} | undefined;
|
619
727
|
vonageCredentials?: {
|
620
|
-
mobileNumber: string;
|
621
728
|
apiKey: string;
|
729
|
+
mobileNumber: string;
|
622
730
|
apiSecret: string;
|
623
731
|
} | undefined;
|
624
732
|
lineRichMenuId?: string | null | undefined;
|
@@ -766,17 +874,45 @@ export declare const lineContract: {
|
|
766
874
|
channelSecret: z.ZodOptional<z.ZodString>;
|
767
875
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
768
876
|
senderId: z.ZodOptional<z.ZodString>;
|
877
|
+
whatsapp: z.ZodOptional<z.ZodObject<{
|
878
|
+
wabaBusinessId: z.ZodOptional<z.ZodString>;
|
879
|
+
wabaExternalId: z.ZodString;
|
880
|
+
phoneNumberId: z.ZodString;
|
881
|
+
email: z.ZodString;
|
882
|
+
clientId: z.ZodOptional<z.ZodString>;
|
883
|
+
channelId: z.ZodOptional<z.ZodString>;
|
884
|
+
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
885
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
886
|
+
}, "strip", z.ZodTypeAny, {
|
887
|
+
email: string;
|
888
|
+
wabaExternalId: string;
|
889
|
+
phoneNumberId: string;
|
890
|
+
wabaBusinessId?: string | undefined;
|
891
|
+
clientId?: string | undefined;
|
892
|
+
channelId?: string | undefined;
|
893
|
+
status?: "active" | "pending" | undefined;
|
894
|
+
apiKey?: string | undefined;
|
895
|
+
}, {
|
896
|
+
email: string;
|
897
|
+
wabaExternalId: string;
|
898
|
+
phoneNumberId: string;
|
899
|
+
wabaBusinessId?: string | undefined;
|
900
|
+
clientId?: string | undefined;
|
901
|
+
channelId?: string | undefined;
|
902
|
+
status?: "active" | "pending" | undefined;
|
903
|
+
apiKey?: string | undefined;
|
904
|
+
}>>;
|
769
905
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
770
906
|
mobileNumber: z.ZodString;
|
771
907
|
apiKey: z.ZodString;
|
772
908
|
apiSecret: z.ZodString;
|
773
909
|
}, "strip", z.ZodTypeAny, {
|
774
|
-
mobileNumber: string;
|
775
910
|
apiKey: string;
|
911
|
+
mobileNumber: string;
|
776
912
|
apiSecret: string;
|
777
913
|
}, {
|
778
|
-
mobileNumber: string;
|
779
914
|
apiKey: string;
|
915
|
+
mobileNumber: string;
|
780
916
|
apiSecret: string;
|
781
917
|
}>>;
|
782
918
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
@@ -788,9 +924,19 @@ export declare const lineContract: {
|
|
788
924
|
channelSecret?: string | undefined;
|
789
925
|
additionalCredentials?: any;
|
790
926
|
senderId?: string | undefined;
|
927
|
+
whatsapp?: {
|
928
|
+
email: string;
|
929
|
+
wabaExternalId: string;
|
930
|
+
phoneNumberId: string;
|
931
|
+
wabaBusinessId?: string | undefined;
|
932
|
+
clientId?: string | undefined;
|
933
|
+
channelId?: string | undefined;
|
934
|
+
status?: "active" | "pending" | undefined;
|
935
|
+
apiKey?: string | undefined;
|
936
|
+
} | undefined;
|
791
937
|
vonageCredentials?: {
|
792
|
-
mobileNumber: string;
|
793
938
|
apiKey: string;
|
939
|
+
mobileNumber: string;
|
794
940
|
apiSecret: string;
|
795
941
|
} | undefined;
|
796
942
|
lineRichMenuId?: string | null | undefined;
|
@@ -802,9 +948,19 @@ export declare const lineContract: {
|
|
802
948
|
channelSecret?: string | undefined;
|
803
949
|
additionalCredentials?: any;
|
804
950
|
senderId?: string | undefined;
|
951
|
+
whatsapp?: {
|
952
|
+
email: string;
|
953
|
+
wabaExternalId: string;
|
954
|
+
phoneNumberId: string;
|
955
|
+
wabaBusinessId?: string | undefined;
|
956
|
+
clientId?: string | undefined;
|
957
|
+
channelId?: string | undefined;
|
958
|
+
status?: "active" | "pending" | undefined;
|
959
|
+
apiKey?: string | undefined;
|
960
|
+
} | undefined;
|
805
961
|
vonageCredentials?: {
|
806
|
-
mobileNumber: string;
|
807
962
|
apiKey: string;
|
963
|
+
mobileNumber: string;
|
808
964
|
apiSecret: string;
|
809
965
|
} | undefined;
|
810
966
|
lineRichMenuId?: string | null | undefined;
|
@@ -846,9 +1002,19 @@ export declare const lineContract: {
|
|
846
1002
|
channelSecret?: string | undefined;
|
847
1003
|
additionalCredentials?: any;
|
848
1004
|
senderId?: string | undefined;
|
1005
|
+
whatsapp?: {
|
1006
|
+
email: string;
|
1007
|
+
wabaExternalId: string;
|
1008
|
+
phoneNumberId: string;
|
1009
|
+
wabaBusinessId?: string | undefined;
|
1010
|
+
clientId?: string | undefined;
|
1011
|
+
channelId?: string | undefined;
|
1012
|
+
status?: "active" | "pending" | undefined;
|
1013
|
+
apiKey?: string | undefined;
|
1014
|
+
} | undefined;
|
849
1015
|
vonageCredentials?: {
|
850
|
-
mobileNumber: string;
|
851
1016
|
apiKey: string;
|
1017
|
+
mobileNumber: string;
|
852
1018
|
apiSecret: string;
|
853
1019
|
} | undefined;
|
854
1020
|
lineRichMenuId?: string | null | undefined;
|
@@ -878,9 +1044,19 @@ export declare const lineContract: {
|
|
878
1044
|
channelSecret?: string | undefined;
|
879
1045
|
additionalCredentials?: any;
|
880
1046
|
senderId?: string | undefined;
|
1047
|
+
whatsapp?: {
|
1048
|
+
email: string;
|
1049
|
+
wabaExternalId: string;
|
1050
|
+
phoneNumberId: string;
|
1051
|
+
wabaBusinessId?: string | undefined;
|
1052
|
+
clientId?: string | undefined;
|
1053
|
+
channelId?: string | undefined;
|
1054
|
+
status?: "active" | "pending" | undefined;
|
1055
|
+
apiKey?: string | undefined;
|
1056
|
+
} | undefined;
|
881
1057
|
vonageCredentials?: {
|
882
|
-
mobileNumber: string;
|
883
1058
|
apiKey: string;
|
1059
|
+
mobileNumber: string;
|
884
1060
|
apiSecret: string;
|
885
1061
|
} | undefined;
|
886
1062
|
lineRichMenuId?: string | null | undefined;
|
@@ -912,9 +1088,19 @@ export declare const lineContract: {
|
|
912
1088
|
channelSecret?: string | undefined;
|
913
1089
|
additionalCredentials?: any;
|
914
1090
|
senderId?: string | undefined;
|
1091
|
+
whatsapp?: {
|
1092
|
+
email: string;
|
1093
|
+
wabaExternalId: string;
|
1094
|
+
phoneNumberId: string;
|
1095
|
+
wabaBusinessId?: string | undefined;
|
1096
|
+
clientId?: string | undefined;
|
1097
|
+
channelId?: string | undefined;
|
1098
|
+
status?: "active" | "pending" | undefined;
|
1099
|
+
apiKey?: string | undefined;
|
1100
|
+
} | undefined;
|
915
1101
|
vonageCredentials?: {
|
916
|
-
mobileNumber: string;
|
917
1102
|
apiKey: string;
|
1103
|
+
mobileNumber: string;
|
918
1104
|
apiSecret: string;
|
919
1105
|
} | undefined;
|
920
1106
|
lineRichMenuId?: string | null | undefined;
|
@@ -947,9 +1133,19 @@ export declare const lineContract: {
|
|
947
1133
|
channelSecret?: string | undefined;
|
948
1134
|
additionalCredentials?: any;
|
949
1135
|
senderId?: string | undefined;
|
1136
|
+
whatsapp?: {
|
1137
|
+
email: string;
|
1138
|
+
wabaExternalId: string;
|
1139
|
+
phoneNumberId: string;
|
1140
|
+
wabaBusinessId?: string | undefined;
|
1141
|
+
clientId?: string | undefined;
|
1142
|
+
channelId?: string | undefined;
|
1143
|
+
status?: "active" | "pending" | undefined;
|
1144
|
+
apiKey?: string | undefined;
|
1145
|
+
} | undefined;
|
950
1146
|
vonageCredentials?: {
|
951
|
-
mobileNumber: string;
|
952
1147
|
apiKey: string;
|
1148
|
+
mobileNumber: string;
|
953
1149
|
apiSecret: string;
|
954
1150
|
} | undefined;
|
955
1151
|
lineRichMenuId?: string | null | undefined;
|
@@ -1131,17 +1327,45 @@ export declare const lineContract: {
|
|
1131
1327
|
channelSecret: z.ZodOptional<z.ZodString>;
|
1132
1328
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
1133
1329
|
senderId: z.ZodOptional<z.ZodString>;
|
1330
|
+
whatsapp: z.ZodOptional<z.ZodObject<{
|
1331
|
+
wabaBusinessId: z.ZodOptional<z.ZodString>;
|
1332
|
+
wabaExternalId: z.ZodString;
|
1333
|
+
phoneNumberId: z.ZodString;
|
1334
|
+
email: z.ZodString;
|
1335
|
+
clientId: z.ZodOptional<z.ZodString>;
|
1336
|
+
channelId: z.ZodOptional<z.ZodString>;
|
1337
|
+
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
1338
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
1339
|
+
}, "strip", z.ZodTypeAny, {
|
1340
|
+
email: string;
|
1341
|
+
wabaExternalId: string;
|
1342
|
+
phoneNumberId: string;
|
1343
|
+
wabaBusinessId?: string | undefined;
|
1344
|
+
clientId?: string | undefined;
|
1345
|
+
channelId?: string | undefined;
|
1346
|
+
status?: "active" | "pending" | undefined;
|
1347
|
+
apiKey?: string | undefined;
|
1348
|
+
}, {
|
1349
|
+
email: string;
|
1350
|
+
wabaExternalId: string;
|
1351
|
+
phoneNumberId: string;
|
1352
|
+
wabaBusinessId?: string | undefined;
|
1353
|
+
clientId?: string | undefined;
|
1354
|
+
channelId?: string | undefined;
|
1355
|
+
status?: "active" | "pending" | undefined;
|
1356
|
+
apiKey?: string | undefined;
|
1357
|
+
}>>;
|
1134
1358
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
1135
1359
|
mobileNumber: z.ZodString;
|
1136
1360
|
apiKey: z.ZodString;
|
1137
1361
|
apiSecret: z.ZodString;
|
1138
1362
|
}, "strip", z.ZodTypeAny, {
|
1139
|
-
mobileNumber: string;
|
1140
1363
|
apiKey: string;
|
1364
|
+
mobileNumber: string;
|
1141
1365
|
apiSecret: string;
|
1142
1366
|
}, {
|
1143
|
-
mobileNumber: string;
|
1144
1367
|
apiKey: string;
|
1368
|
+
mobileNumber: string;
|
1145
1369
|
apiSecret: string;
|
1146
1370
|
}>>;
|
1147
1371
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
@@ -1153,9 +1377,19 @@ export declare const lineContract: {
|
|
1153
1377
|
channelSecret?: string | undefined;
|
1154
1378
|
additionalCredentials?: any;
|
1155
1379
|
senderId?: string | undefined;
|
1380
|
+
whatsapp?: {
|
1381
|
+
email: string;
|
1382
|
+
wabaExternalId: string;
|
1383
|
+
phoneNumberId: string;
|
1384
|
+
wabaBusinessId?: string | undefined;
|
1385
|
+
clientId?: string | undefined;
|
1386
|
+
channelId?: string | undefined;
|
1387
|
+
status?: "active" | "pending" | undefined;
|
1388
|
+
apiKey?: string | undefined;
|
1389
|
+
} | undefined;
|
1156
1390
|
vonageCredentials?: {
|
1157
|
-
mobileNumber: string;
|
1158
1391
|
apiKey: string;
|
1392
|
+
mobileNumber: string;
|
1159
1393
|
apiSecret: string;
|
1160
1394
|
} | undefined;
|
1161
1395
|
lineRichMenuId?: string | null | undefined;
|
@@ -1167,9 +1401,19 @@ export declare const lineContract: {
|
|
1167
1401
|
channelSecret?: string | undefined;
|
1168
1402
|
additionalCredentials?: any;
|
1169
1403
|
senderId?: string | undefined;
|
1404
|
+
whatsapp?: {
|
1405
|
+
email: string;
|
1406
|
+
wabaExternalId: string;
|
1407
|
+
phoneNumberId: string;
|
1408
|
+
wabaBusinessId?: string | undefined;
|
1409
|
+
clientId?: string | undefined;
|
1410
|
+
channelId?: string | undefined;
|
1411
|
+
status?: "active" | "pending" | undefined;
|
1412
|
+
apiKey?: string | undefined;
|
1413
|
+
} | undefined;
|
1170
1414
|
vonageCredentials?: {
|
1171
|
-
mobileNumber: string;
|
1172
1415
|
apiKey: string;
|
1416
|
+
mobileNumber: string;
|
1173
1417
|
apiSecret: string;
|
1174
1418
|
} | undefined;
|
1175
1419
|
lineRichMenuId?: string | null | undefined;
|
@@ -1211,9 +1455,19 @@ export declare const lineContract: {
|
|
1211
1455
|
channelSecret?: string | undefined;
|
1212
1456
|
additionalCredentials?: any;
|
1213
1457
|
senderId?: string | undefined;
|
1458
|
+
whatsapp?: {
|
1459
|
+
email: string;
|
1460
|
+
wabaExternalId: string;
|
1461
|
+
phoneNumberId: string;
|
1462
|
+
wabaBusinessId?: string | undefined;
|
1463
|
+
clientId?: string | undefined;
|
1464
|
+
channelId?: string | undefined;
|
1465
|
+
status?: "active" | "pending" | undefined;
|
1466
|
+
apiKey?: string | undefined;
|
1467
|
+
} | undefined;
|
1214
1468
|
vonageCredentials?: {
|
1215
|
-
mobileNumber: string;
|
1216
1469
|
apiKey: string;
|
1470
|
+
mobileNumber: string;
|
1217
1471
|
apiSecret: string;
|
1218
1472
|
} | undefined;
|
1219
1473
|
lineRichMenuId?: string | null | undefined;
|
@@ -1243,9 +1497,19 @@ export declare const lineContract: {
|
|
1243
1497
|
channelSecret?: string | undefined;
|
1244
1498
|
additionalCredentials?: any;
|
1245
1499
|
senderId?: string | undefined;
|
1500
|
+
whatsapp?: {
|
1501
|
+
email: string;
|
1502
|
+
wabaExternalId: string;
|
1503
|
+
phoneNumberId: string;
|
1504
|
+
wabaBusinessId?: string | undefined;
|
1505
|
+
clientId?: string | undefined;
|
1506
|
+
channelId?: string | undefined;
|
1507
|
+
status?: "active" | "pending" | undefined;
|
1508
|
+
apiKey?: string | undefined;
|
1509
|
+
} | undefined;
|
1246
1510
|
vonageCredentials?: {
|
1247
|
-
mobileNumber: string;
|
1248
1511
|
apiKey: string;
|
1512
|
+
mobileNumber: string;
|
1249
1513
|
apiSecret: string;
|
1250
1514
|
} | undefined;
|
1251
1515
|
lineRichMenuId?: string | null | undefined;
|
@@ -1279,9 +1543,19 @@ export declare const lineContract: {
|
|
1279
1543
|
channelSecret?: string | undefined;
|
1280
1544
|
additionalCredentials?: any;
|
1281
1545
|
senderId?: string | undefined;
|
1546
|
+
whatsapp?: {
|
1547
|
+
email: string;
|
1548
|
+
wabaExternalId: string;
|
1549
|
+
phoneNumberId: string;
|
1550
|
+
wabaBusinessId?: string | undefined;
|
1551
|
+
clientId?: string | undefined;
|
1552
|
+
channelId?: string | undefined;
|
1553
|
+
status?: "active" | "pending" | undefined;
|
1554
|
+
apiKey?: string | undefined;
|
1555
|
+
} | undefined;
|
1282
1556
|
vonageCredentials?: {
|
1283
|
-
mobileNumber: string;
|
1284
1557
|
apiKey: string;
|
1558
|
+
mobileNumber: string;
|
1285
1559
|
apiSecret: string;
|
1286
1560
|
} | undefined;
|
1287
1561
|
lineRichMenuId?: string | null | undefined;
|
@@ -1354,9 +1628,19 @@ export declare const lineContract: {
|
|
1354
1628
|
channelSecret?: string | undefined;
|
1355
1629
|
additionalCredentials?: any;
|
1356
1630
|
senderId?: string | undefined;
|
1631
|
+
whatsapp?: {
|
1632
|
+
email: string;
|
1633
|
+
wabaExternalId: string;
|
1634
|
+
phoneNumberId: string;
|
1635
|
+
wabaBusinessId?: string | undefined;
|
1636
|
+
clientId?: string | undefined;
|
1637
|
+
channelId?: string | undefined;
|
1638
|
+
status?: "active" | "pending" | undefined;
|
1639
|
+
apiKey?: string | undefined;
|
1640
|
+
} | undefined;
|
1357
1641
|
vonageCredentials?: {
|
1358
|
-
mobileNumber: string;
|
1359
1642
|
apiKey: string;
|
1643
|
+
mobileNumber: string;
|
1360
1644
|
apiSecret: string;
|
1361
1645
|
} | undefined;
|
1362
1646
|
lineRichMenuId?: string | null | undefined;
|
@@ -1421,7 +1705,7 @@ export declare const lineContract: {
|
|
1421
1705
|
id: z.ZodOptional<z.ZodString>;
|
1422
1706
|
message: z.ZodOptional<z.ZodString>;
|
1423
1707
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
1424
|
-
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "reaction", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "deleted", "unsupported"]>;
|
1708
|
+
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "deleted", "unsupported"]>;
|
1425
1709
|
readAt: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodString]>>>;
|
1426
1710
|
metadata: z.ZodOptional<z.ZodAny>;
|
1427
1711
|
platformId: z.ZodOptional<z.ZodString>;
|
@@ -1477,7 +1761,7 @@ export declare const lineContract: {
|
|
1477
1761
|
editedAt: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodString]>>>;
|
1478
1762
|
label: z.ZodOptional<z.ZodString>;
|
1479
1763
|
}, "strip", z.ZodTypeAny, {
|
1480
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
1764
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "contacts" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
1481
1765
|
direction: "incoming" | "outgoing" | "system";
|
1482
1766
|
id?: string | undefined;
|
1483
1767
|
message?: string | undefined;
|
@@ -1512,7 +1796,7 @@ export declare const lineContract: {
|
|
1512
1796
|
editedAt?: string | Date | null | undefined;
|
1513
1797
|
label?: string | undefined;
|
1514
1798
|
}, {
|
1515
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
1799
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "contacts" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
1516
1800
|
direction: "incoming" | "outgoing" | "system";
|
1517
1801
|
id?: string | undefined;
|
1518
1802
|
message?: string | undefined;
|
@@ -1549,7 +1833,7 @@ export declare const lineContract: {
|
|
1549
1833
|
}>;
|
1550
1834
|
}, "strip", z.ZodTypeAny, {
|
1551
1835
|
message: {
|
1552
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
1836
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "contacts" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
1553
1837
|
direction: "incoming" | "outgoing" | "system";
|
1554
1838
|
id?: string | undefined;
|
1555
1839
|
message?: string | undefined;
|
@@ -1597,9 +1881,19 @@ export declare const lineContract: {
|
|
1597
1881
|
channelSecret?: string | undefined;
|
1598
1882
|
additionalCredentials?: any;
|
1599
1883
|
senderId?: string | undefined;
|
1884
|
+
whatsapp?: {
|
1885
|
+
email: string;
|
1886
|
+
wabaExternalId: string;
|
1887
|
+
phoneNumberId: string;
|
1888
|
+
wabaBusinessId?: string | undefined;
|
1889
|
+
clientId?: string | undefined;
|
1890
|
+
channelId?: string | undefined;
|
1891
|
+
status?: "active" | "pending" | undefined;
|
1892
|
+
apiKey?: string | undefined;
|
1893
|
+
} | undefined;
|
1600
1894
|
vonageCredentials?: {
|
1601
|
-
mobileNumber: string;
|
1602
1895
|
apiKey: string;
|
1896
|
+
mobileNumber: string;
|
1603
1897
|
apiSecret: string;
|
1604
1898
|
} | undefined;
|
1605
1899
|
lineRichMenuId?: string | null | undefined;
|
@@ -1663,7 +1957,7 @@ export declare const lineContract: {
|
|
1663
1957
|
isBot: boolean | null;
|
1664
1958
|
}, {
|
1665
1959
|
message: {
|
1666
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
1960
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "contacts" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
1667
1961
|
direction: "incoming" | "outgoing" | "system";
|
1668
1962
|
id?: string | undefined;
|
1669
1963
|
message?: string | undefined;
|
@@ -1711,9 +2005,19 @@ export declare const lineContract: {
|
|
1711
2005
|
channelSecret?: string | undefined;
|
1712
2006
|
additionalCredentials?: any;
|
1713
2007
|
senderId?: string | undefined;
|
2008
|
+
whatsapp?: {
|
2009
|
+
email: string;
|
2010
|
+
wabaExternalId: string;
|
2011
|
+
phoneNumberId: string;
|
2012
|
+
wabaBusinessId?: string | undefined;
|
2013
|
+
clientId?: string | undefined;
|
2014
|
+
channelId?: string | undefined;
|
2015
|
+
status?: "active" | "pending" | undefined;
|
2016
|
+
apiKey?: string | undefined;
|
2017
|
+
} | undefined;
|
1714
2018
|
vonageCredentials?: {
|
1715
|
-
mobileNumber: string;
|
1716
2019
|
apiKey: string;
|
2020
|
+
mobileNumber: string;
|
1717
2021
|
apiSecret: string;
|
1718
2022
|
} | undefined;
|
1719
2023
|
lineRichMenuId?: string | null | undefined;
|
@@ -1781,7 +2085,7 @@ export declare const lineContract: {
|
|
1781
2085
|
200: z.ZodObject<{
|
1782
2086
|
requestId: z.ZodString;
|
1783
2087
|
data: z.ZodObject<{
|
1784
|
-
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "reaction", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "deleted", "unsupported"]>;
|
2088
|
+
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "deleted", "unsupported"]>;
|
1785
2089
|
message: z.ZodString;
|
1786
2090
|
id: z.ZodString;
|
1787
2091
|
url: z.ZodString;
|
@@ -3720,17 +4024,45 @@ export declare const lineContract: {
|
|
3720
4024
|
channelSecret: z.ZodOptional<z.ZodString>;
|
3721
4025
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
3722
4026
|
senderId: z.ZodOptional<z.ZodString>;
|
4027
|
+
whatsapp: z.ZodOptional<z.ZodObject<{
|
4028
|
+
wabaBusinessId: z.ZodOptional<z.ZodString>;
|
4029
|
+
wabaExternalId: z.ZodString;
|
4030
|
+
phoneNumberId: z.ZodString;
|
4031
|
+
email: z.ZodString;
|
4032
|
+
clientId: z.ZodOptional<z.ZodString>;
|
4033
|
+
channelId: z.ZodOptional<z.ZodString>;
|
4034
|
+
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
4035
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
4036
|
+
}, "strip", z.ZodTypeAny, {
|
4037
|
+
email: string;
|
4038
|
+
wabaExternalId: string;
|
4039
|
+
phoneNumberId: string;
|
4040
|
+
wabaBusinessId?: string | undefined;
|
4041
|
+
clientId?: string | undefined;
|
4042
|
+
channelId?: string | undefined;
|
4043
|
+
status?: "active" | "pending" | undefined;
|
4044
|
+
apiKey?: string | undefined;
|
4045
|
+
}, {
|
4046
|
+
email: string;
|
4047
|
+
wabaExternalId: string;
|
4048
|
+
phoneNumberId: string;
|
4049
|
+
wabaBusinessId?: string | undefined;
|
4050
|
+
clientId?: string | undefined;
|
4051
|
+
channelId?: string | undefined;
|
4052
|
+
status?: "active" | "pending" | undefined;
|
4053
|
+
apiKey?: string | undefined;
|
4054
|
+
}>>;
|
3723
4055
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
3724
4056
|
mobileNumber: z.ZodString;
|
3725
4057
|
apiKey: z.ZodString;
|
3726
4058
|
apiSecret: z.ZodString;
|
3727
4059
|
}, "strip", z.ZodTypeAny, {
|
3728
|
-
mobileNumber: string;
|
3729
4060
|
apiKey: string;
|
4061
|
+
mobileNumber: string;
|
3730
4062
|
apiSecret: string;
|
3731
4063
|
}, {
|
3732
|
-
mobileNumber: string;
|
3733
4064
|
apiKey: string;
|
4065
|
+
mobileNumber: string;
|
3734
4066
|
apiSecret: string;
|
3735
4067
|
}>>;
|
3736
4068
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
@@ -3742,9 +4074,19 @@ export declare const lineContract: {
|
|
3742
4074
|
channelSecret?: string | undefined;
|
3743
4075
|
additionalCredentials?: any;
|
3744
4076
|
senderId?: string | undefined;
|
4077
|
+
whatsapp?: {
|
4078
|
+
email: string;
|
4079
|
+
wabaExternalId: string;
|
4080
|
+
phoneNumberId: string;
|
4081
|
+
wabaBusinessId?: string | undefined;
|
4082
|
+
clientId?: string | undefined;
|
4083
|
+
channelId?: string | undefined;
|
4084
|
+
status?: "active" | "pending" | undefined;
|
4085
|
+
apiKey?: string | undefined;
|
4086
|
+
} | undefined;
|
3745
4087
|
vonageCredentials?: {
|
3746
|
-
mobileNumber: string;
|
3747
4088
|
apiKey: string;
|
4089
|
+
mobileNumber: string;
|
3748
4090
|
apiSecret: string;
|
3749
4091
|
} | undefined;
|
3750
4092
|
lineRichMenuId?: string | null | undefined;
|
@@ -3756,9 +4098,19 @@ export declare const lineContract: {
|
|
3756
4098
|
channelSecret?: string | undefined;
|
3757
4099
|
additionalCredentials?: any;
|
3758
4100
|
senderId?: string | undefined;
|
4101
|
+
whatsapp?: {
|
4102
|
+
email: string;
|
4103
|
+
wabaExternalId: string;
|
4104
|
+
phoneNumberId: string;
|
4105
|
+
wabaBusinessId?: string | undefined;
|
4106
|
+
clientId?: string | undefined;
|
4107
|
+
channelId?: string | undefined;
|
4108
|
+
status?: "active" | "pending" | undefined;
|
4109
|
+
apiKey?: string | undefined;
|
4110
|
+
} | undefined;
|
3759
4111
|
vonageCredentials?: {
|
3760
|
-
mobileNumber: string;
|
3761
4112
|
apiKey: string;
|
4113
|
+
mobileNumber: string;
|
3762
4114
|
apiSecret: string;
|
3763
4115
|
} | undefined;
|
3764
4116
|
lineRichMenuId?: string | null | undefined;
|
@@ -4004,9 +4356,19 @@ export declare const lineContract: {
|
|
4004
4356
|
channelSecret?: string | undefined;
|
4005
4357
|
additionalCredentials?: any;
|
4006
4358
|
senderId?: string | undefined;
|
4359
|
+
whatsapp?: {
|
4360
|
+
email: string;
|
4361
|
+
wabaExternalId: string;
|
4362
|
+
phoneNumberId: string;
|
4363
|
+
wabaBusinessId?: string | undefined;
|
4364
|
+
clientId?: string | undefined;
|
4365
|
+
channelId?: string | undefined;
|
4366
|
+
status?: "active" | "pending" | undefined;
|
4367
|
+
apiKey?: string | undefined;
|
4368
|
+
} | undefined;
|
4007
4369
|
vonageCredentials?: {
|
4008
|
-
mobileNumber: string;
|
4009
4370
|
apiKey: string;
|
4371
|
+
mobileNumber: string;
|
4010
4372
|
apiSecret: string;
|
4011
4373
|
} | undefined;
|
4012
4374
|
lineRichMenuId?: string | null | undefined;
|
@@ -4083,9 +4445,19 @@ export declare const lineContract: {
|
|
4083
4445
|
channelSecret?: string | undefined;
|
4084
4446
|
additionalCredentials?: any;
|
4085
4447
|
senderId?: string | undefined;
|
4448
|
+
whatsapp?: {
|
4449
|
+
email: string;
|
4450
|
+
wabaExternalId: string;
|
4451
|
+
phoneNumberId: string;
|
4452
|
+
wabaBusinessId?: string | undefined;
|
4453
|
+
clientId?: string | undefined;
|
4454
|
+
channelId?: string | undefined;
|
4455
|
+
status?: "active" | "pending" | undefined;
|
4456
|
+
apiKey?: string | undefined;
|
4457
|
+
} | undefined;
|
4086
4458
|
vonageCredentials?: {
|
4087
|
-
mobileNumber: string;
|
4088
4459
|
apiKey: string;
|
4460
|
+
mobileNumber: string;
|
4089
4461
|
apiSecret: string;
|
4090
4462
|
} | undefined;
|
4091
4463
|
lineRichMenuId?: string | null | undefined;
|
@@ -4610,9 +4982,19 @@ export declare const lineContract: {
|
|
4610
4982
|
channelSecret?: string | undefined;
|
4611
4983
|
additionalCredentials?: any;
|
4612
4984
|
senderId?: string | undefined;
|
4985
|
+
whatsapp?: {
|
4986
|
+
email: string;
|
4987
|
+
wabaExternalId: string;
|
4988
|
+
phoneNumberId: string;
|
4989
|
+
wabaBusinessId?: string | undefined;
|
4990
|
+
clientId?: string | undefined;
|
4991
|
+
channelId?: string | undefined;
|
4992
|
+
status?: "active" | "pending" | undefined;
|
4993
|
+
apiKey?: string | undefined;
|
4994
|
+
} | undefined;
|
4613
4995
|
vonageCredentials?: {
|
4614
|
-
mobileNumber: string;
|
4615
4996
|
apiKey: string;
|
4997
|
+
mobileNumber: string;
|
4616
4998
|
apiSecret: string;
|
4617
4999
|
} | undefined;
|
4618
5000
|
lineRichMenuId?: string | null | undefined;
|
@@ -5000,9 +5382,19 @@ export declare const lineContract: {
|
|
5000
5382
|
channelSecret?: string | undefined;
|
5001
5383
|
additionalCredentials?: any;
|
5002
5384
|
senderId?: string | undefined;
|
5385
|
+
whatsapp?: {
|
5386
|
+
email: string;
|
5387
|
+
wabaExternalId: string;
|
5388
|
+
phoneNumberId: string;
|
5389
|
+
wabaBusinessId?: string | undefined;
|
5390
|
+
clientId?: string | undefined;
|
5391
|
+
channelId?: string | undefined;
|
5392
|
+
status?: "active" | "pending" | undefined;
|
5393
|
+
apiKey?: string | undefined;
|
5394
|
+
} | undefined;
|
5003
5395
|
vonageCredentials?: {
|
5004
|
-
mobileNumber: string;
|
5005
5396
|
apiKey: string;
|
5397
|
+
mobileNumber: string;
|
5006
5398
|
apiSecret: string;
|
5007
5399
|
} | undefined;
|
5008
5400
|
lineRichMenuId?: string | null | undefined;
|
@@ -5416,7 +5808,7 @@ export declare const lineContract: {
|
|
5416
5808
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
5417
5809
|
message: z.ZodString;
|
5418
5810
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
5419
|
-
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "reaction", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "deleted", "unsupported"]>;
|
5811
|
+
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "deleted", "unsupported"]>;
|
5420
5812
|
readAt: z.ZodDate;
|
5421
5813
|
metadata: z.ZodAny;
|
5422
5814
|
platformId: z.ZodString;
|
@@ -6074,7 +6466,7 @@ export declare const lineContract: {
|
|
6074
6466
|
};
|
6075
6467
|
}>;
|
6076
6468
|
}, "strip", z.ZodTypeAny, {
|
6077
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
6469
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "contacts" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
6078
6470
|
message: string;
|
6079
6471
|
id: string;
|
6080
6472
|
url: string;
|
@@ -6236,7 +6628,7 @@ export declare const lineContract: {
|
|
6236
6628
|
metadata?: any;
|
6237
6629
|
template?: any;
|
6238
6630
|
}, {
|
6239
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
6631
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "contacts" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
6240
6632
|
message: string;
|
6241
6633
|
id: string;
|
6242
6634
|
url: string;
|
@@ -6610,7 +7002,7 @@ export declare const lineContract: {
|
|
6610
7002
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
6611
7003
|
message: z.ZodString;
|
6612
7004
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
6613
|
-
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "reaction", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "deleted", "unsupported"]>;
|
7005
|
+
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "deleted", "unsupported"]>;
|
6614
7006
|
readAt: z.ZodDate;
|
6615
7007
|
metadata: z.ZodAny;
|
6616
7008
|
platformId: z.ZodString;
|
@@ -8106,17 +8498,45 @@ export declare const lineContract: {
|
|
8106
8498
|
channelSecret: z.ZodOptional<z.ZodString>;
|
8107
8499
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
8108
8500
|
senderId: z.ZodOptional<z.ZodString>;
|
8501
|
+
whatsapp: z.ZodOptional<z.ZodObject<{
|
8502
|
+
wabaBusinessId: z.ZodOptional<z.ZodString>;
|
8503
|
+
wabaExternalId: z.ZodString;
|
8504
|
+
phoneNumberId: z.ZodString;
|
8505
|
+
email: z.ZodString;
|
8506
|
+
clientId: z.ZodOptional<z.ZodString>;
|
8507
|
+
channelId: z.ZodOptional<z.ZodString>;
|
8508
|
+
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
8509
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
8510
|
+
}, "strip", z.ZodTypeAny, {
|
8511
|
+
email: string;
|
8512
|
+
wabaExternalId: string;
|
8513
|
+
phoneNumberId: string;
|
8514
|
+
wabaBusinessId?: string | undefined;
|
8515
|
+
clientId?: string | undefined;
|
8516
|
+
channelId?: string | undefined;
|
8517
|
+
status?: "active" | "pending" | undefined;
|
8518
|
+
apiKey?: string | undefined;
|
8519
|
+
}, {
|
8520
|
+
email: string;
|
8521
|
+
wabaExternalId: string;
|
8522
|
+
phoneNumberId: string;
|
8523
|
+
wabaBusinessId?: string | undefined;
|
8524
|
+
clientId?: string | undefined;
|
8525
|
+
channelId?: string | undefined;
|
8526
|
+
status?: "active" | "pending" | undefined;
|
8527
|
+
apiKey?: string | undefined;
|
8528
|
+
}>>;
|
8109
8529
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
8110
8530
|
mobileNumber: z.ZodString;
|
8111
8531
|
apiKey: z.ZodString;
|
8112
8532
|
apiSecret: z.ZodString;
|
8113
8533
|
}, "strip", z.ZodTypeAny, {
|
8114
|
-
mobileNumber: string;
|
8115
8534
|
apiKey: string;
|
8535
|
+
mobileNumber: string;
|
8116
8536
|
apiSecret: string;
|
8117
8537
|
}, {
|
8118
|
-
mobileNumber: string;
|
8119
8538
|
apiKey: string;
|
8539
|
+
mobileNumber: string;
|
8120
8540
|
apiSecret: string;
|
8121
8541
|
}>>;
|
8122
8542
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
@@ -8128,9 +8548,19 @@ export declare const lineContract: {
|
|
8128
8548
|
channelSecret?: string | undefined;
|
8129
8549
|
additionalCredentials?: any;
|
8130
8550
|
senderId?: string | undefined;
|
8551
|
+
whatsapp?: {
|
8552
|
+
email: string;
|
8553
|
+
wabaExternalId: string;
|
8554
|
+
phoneNumberId: string;
|
8555
|
+
wabaBusinessId?: string | undefined;
|
8556
|
+
clientId?: string | undefined;
|
8557
|
+
channelId?: string | undefined;
|
8558
|
+
status?: "active" | "pending" | undefined;
|
8559
|
+
apiKey?: string | undefined;
|
8560
|
+
} | undefined;
|
8131
8561
|
vonageCredentials?: {
|
8132
|
-
mobileNumber: string;
|
8133
8562
|
apiKey: string;
|
8563
|
+
mobileNumber: string;
|
8134
8564
|
apiSecret: string;
|
8135
8565
|
} | undefined;
|
8136
8566
|
lineRichMenuId?: string | null | undefined;
|
@@ -8142,9 +8572,19 @@ export declare const lineContract: {
|
|
8142
8572
|
channelSecret?: string | undefined;
|
8143
8573
|
additionalCredentials?: any;
|
8144
8574
|
senderId?: string | undefined;
|
8575
|
+
whatsapp?: {
|
8576
|
+
email: string;
|
8577
|
+
wabaExternalId: string;
|
8578
|
+
phoneNumberId: string;
|
8579
|
+
wabaBusinessId?: string | undefined;
|
8580
|
+
clientId?: string | undefined;
|
8581
|
+
channelId?: string | undefined;
|
8582
|
+
status?: "active" | "pending" | undefined;
|
8583
|
+
apiKey?: string | undefined;
|
8584
|
+
} | undefined;
|
8145
8585
|
vonageCredentials?: {
|
8146
|
-
mobileNumber: string;
|
8147
8586
|
apiKey: string;
|
8587
|
+
mobileNumber: string;
|
8148
8588
|
apiSecret: string;
|
8149
8589
|
} | undefined;
|
8150
8590
|
lineRichMenuId?: string | null | undefined;
|
@@ -8390,9 +8830,19 @@ export declare const lineContract: {
|
|
8390
8830
|
channelSecret?: string | undefined;
|
8391
8831
|
additionalCredentials?: any;
|
8392
8832
|
senderId?: string | undefined;
|
8833
|
+
whatsapp?: {
|
8834
|
+
email: string;
|
8835
|
+
wabaExternalId: string;
|
8836
|
+
phoneNumberId: string;
|
8837
|
+
wabaBusinessId?: string | undefined;
|
8838
|
+
clientId?: string | undefined;
|
8839
|
+
channelId?: string | undefined;
|
8840
|
+
status?: "active" | "pending" | undefined;
|
8841
|
+
apiKey?: string | undefined;
|
8842
|
+
} | undefined;
|
8393
8843
|
vonageCredentials?: {
|
8394
|
-
mobileNumber: string;
|
8395
8844
|
apiKey: string;
|
8845
|
+
mobileNumber: string;
|
8396
8846
|
apiSecret: string;
|
8397
8847
|
} | undefined;
|
8398
8848
|
lineRichMenuId?: string | null | undefined;
|
@@ -8469,9 +8919,19 @@ export declare const lineContract: {
|
|
8469
8919
|
channelSecret?: string | undefined;
|
8470
8920
|
additionalCredentials?: any;
|
8471
8921
|
senderId?: string | undefined;
|
8922
|
+
whatsapp?: {
|
8923
|
+
email: string;
|
8924
|
+
wabaExternalId: string;
|
8925
|
+
phoneNumberId: string;
|
8926
|
+
wabaBusinessId?: string | undefined;
|
8927
|
+
clientId?: string | undefined;
|
8928
|
+
channelId?: string | undefined;
|
8929
|
+
status?: "active" | "pending" | undefined;
|
8930
|
+
apiKey?: string | undefined;
|
8931
|
+
} | undefined;
|
8472
8932
|
vonageCredentials?: {
|
8473
|
-
mobileNumber: string;
|
8474
8933
|
apiKey: string;
|
8934
|
+
mobileNumber: string;
|
8475
8935
|
apiSecret: string;
|
8476
8936
|
} | undefined;
|
8477
8937
|
lineRichMenuId?: string | null | undefined;
|
@@ -8996,9 +9456,19 @@ export declare const lineContract: {
|
|
8996
9456
|
channelSecret?: string | undefined;
|
8997
9457
|
additionalCredentials?: any;
|
8998
9458
|
senderId?: string | undefined;
|
9459
|
+
whatsapp?: {
|
9460
|
+
email: string;
|
9461
|
+
wabaExternalId: string;
|
9462
|
+
phoneNumberId: string;
|
9463
|
+
wabaBusinessId?: string | undefined;
|
9464
|
+
clientId?: string | undefined;
|
9465
|
+
channelId?: string | undefined;
|
9466
|
+
status?: "active" | "pending" | undefined;
|
9467
|
+
apiKey?: string | undefined;
|
9468
|
+
} | undefined;
|
8999
9469
|
vonageCredentials?: {
|
9000
|
-
mobileNumber: string;
|
9001
9470
|
apiKey: string;
|
9471
|
+
mobileNumber: string;
|
9002
9472
|
apiSecret: string;
|
9003
9473
|
} | undefined;
|
9004
9474
|
lineRichMenuId?: string | null | undefined;
|
@@ -9386,9 +9856,19 @@ export declare const lineContract: {
|
|
9386
9856
|
channelSecret?: string | undefined;
|
9387
9857
|
additionalCredentials?: any;
|
9388
9858
|
senderId?: string | undefined;
|
9859
|
+
whatsapp?: {
|
9860
|
+
email: string;
|
9861
|
+
wabaExternalId: string;
|
9862
|
+
phoneNumberId: string;
|
9863
|
+
wabaBusinessId?: string | undefined;
|
9864
|
+
clientId?: string | undefined;
|
9865
|
+
channelId?: string | undefined;
|
9866
|
+
status?: "active" | "pending" | undefined;
|
9867
|
+
apiKey?: string | undefined;
|
9868
|
+
} | undefined;
|
9389
9869
|
vonageCredentials?: {
|
9390
|
-
mobileNumber: string;
|
9391
9870
|
apiKey: string;
|
9871
|
+
mobileNumber: string;
|
9392
9872
|
apiSecret: string;
|
9393
9873
|
} | undefined;
|
9394
9874
|
lineRichMenuId?: string | null | undefined;
|
@@ -9805,7 +10285,7 @@ export declare const lineContract: {
|
|
9805
10285
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
9806
10286
|
message: z.ZodString;
|
9807
10287
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
9808
|
-
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "reaction", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "deleted", "unsupported"]>;
|
10288
|
+
type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "deleted", "unsupported"]>;
|
9809
10289
|
readAt: z.ZodDate;
|
9810
10290
|
metadata: z.ZodAny;
|
9811
10291
|
platformId: z.ZodString;
|
@@ -10463,7 +10943,7 @@ export declare const lineContract: {
|
|
10463
10943
|
};
|
10464
10944
|
}>;
|
10465
10945
|
}, "strip", z.ZodTypeAny, {
|
10466
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
10946
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "contacts" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
10467
10947
|
message: string;
|
10468
10948
|
id: string;
|
10469
10949
|
url: string;
|
@@ -10625,7 +11105,7 @@ export declare const lineContract: {
|
|
10625
11105
|
metadata?: any;
|
10626
11106
|
template?: any;
|
10627
11107
|
}, {
|
10628
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
11108
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "contacts" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
10629
11109
|
message: string;
|
10630
11110
|
id: string;
|
10631
11111
|
url: string;
|
@@ -11427,7 +11907,7 @@ export declare const lineContract: {
|
|
11427
11907
|
editedMessageid: z.ZodString;
|
11428
11908
|
label: z.ZodOptional<z.ZodString>;
|
11429
11909
|
}, "strip", z.ZodTypeAny, {
|
11430
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
11910
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "contacts" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
11431
11911
|
message: string;
|
11432
11912
|
id: string;
|
11433
11913
|
url: string;
|
@@ -11549,9 +12029,19 @@ export declare const lineContract: {
|
|
11549
12029
|
channelSecret?: string | undefined;
|
11550
12030
|
additionalCredentials?: any;
|
11551
12031
|
senderId?: string | undefined;
|
12032
|
+
whatsapp?: {
|
12033
|
+
email: string;
|
12034
|
+
wabaExternalId: string;
|
12035
|
+
phoneNumberId: string;
|
12036
|
+
wabaBusinessId?: string | undefined;
|
12037
|
+
clientId?: string | undefined;
|
12038
|
+
channelId?: string | undefined;
|
12039
|
+
status?: "active" | "pending" | undefined;
|
12040
|
+
apiKey?: string | undefined;
|
12041
|
+
} | undefined;
|
11552
12042
|
vonageCredentials?: {
|
11553
|
-
mobileNumber: string;
|
11554
12043
|
apiKey: string;
|
12044
|
+
mobileNumber: string;
|
11555
12045
|
apiSecret: string;
|
11556
12046
|
} | undefined;
|
11557
12047
|
lineRichMenuId?: string | null | undefined;
|
@@ -11943,7 +12433,7 @@ export declare const lineContract: {
|
|
11943
12433
|
previewUrl: string;
|
11944
12434
|
imageSetId: string;
|
11945
12435
|
repliedMessage: {
|
11946
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
12436
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "contacts" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
11947
12437
|
message: string;
|
11948
12438
|
id: string;
|
11949
12439
|
url: string;
|
@@ -12154,7 +12644,7 @@ export declare const lineContract: {
|
|
12154
12644
|
template?: any;
|
12155
12645
|
label?: string | undefined;
|
12156
12646
|
}, {
|
12157
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
12647
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "contacts" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
12158
12648
|
message: string;
|
12159
12649
|
id: string;
|
12160
12650
|
url: string;
|
@@ -12276,9 +12766,19 @@ export declare const lineContract: {
|
|
12276
12766
|
channelSecret?: string | undefined;
|
12277
12767
|
additionalCredentials?: any;
|
12278
12768
|
senderId?: string | undefined;
|
12769
|
+
whatsapp?: {
|
12770
|
+
email: string;
|
12771
|
+
wabaExternalId: string;
|
12772
|
+
phoneNumberId: string;
|
12773
|
+
wabaBusinessId?: string | undefined;
|
12774
|
+
clientId?: string | undefined;
|
12775
|
+
channelId?: string | undefined;
|
12776
|
+
status?: "active" | "pending" | undefined;
|
12777
|
+
apiKey?: string | undefined;
|
12778
|
+
} | undefined;
|
12279
12779
|
vonageCredentials?: {
|
12280
|
-
mobileNumber: string;
|
12281
12780
|
apiKey: string;
|
12781
|
+
mobileNumber: string;
|
12282
12782
|
apiSecret: string;
|
12283
12783
|
} | undefined;
|
12284
12784
|
lineRichMenuId?: string | null | undefined;
|
@@ -12670,7 +13170,7 @@ export declare const lineContract: {
|
|
12670
13170
|
previewUrl: string;
|
12671
13171
|
imageSetId: string;
|
12672
13172
|
repliedMessage: {
|
12673
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
13173
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "contacts" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
12674
13174
|
message: string;
|
12675
13175
|
id: string;
|
12676
13176
|
url: string;
|
@@ -12882,7 +13382,7 @@ export declare const lineContract: {
|
|
12882
13382
|
label?: string | undefined;
|
12883
13383
|
}>>>;
|
12884
13384
|
}, "strip", z.ZodTypeAny, {
|
12885
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
13385
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "contacts" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
12886
13386
|
message: string;
|
12887
13387
|
id: string;
|
12888
13388
|
url: string;
|
@@ -13004,9 +13504,19 @@ export declare const lineContract: {
|
|
13004
13504
|
channelSecret?: string | undefined;
|
13005
13505
|
additionalCredentials?: any;
|
13006
13506
|
senderId?: string | undefined;
|
13507
|
+
whatsapp?: {
|
13508
|
+
email: string;
|
13509
|
+
wabaExternalId: string;
|
13510
|
+
phoneNumberId: string;
|
13511
|
+
wabaBusinessId?: string | undefined;
|
13512
|
+
clientId?: string | undefined;
|
13513
|
+
channelId?: string | undefined;
|
13514
|
+
status?: "active" | "pending" | undefined;
|
13515
|
+
apiKey?: string | undefined;
|
13516
|
+
} | undefined;
|
13007
13517
|
vonageCredentials?: {
|
13008
|
-
mobileNumber: string;
|
13009
13518
|
apiKey: string;
|
13519
|
+
mobileNumber: string;
|
13010
13520
|
apiSecret: string;
|
13011
13521
|
} | undefined;
|
13012
13522
|
lineRichMenuId?: string | null | undefined;
|
@@ -13398,7 +13908,7 @@ export declare const lineContract: {
|
|
13398
13908
|
previewUrl: string;
|
13399
13909
|
imageSetId: string;
|
13400
13910
|
repliedMessage: {
|
13401
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
13911
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "contacts" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
13402
13912
|
message: string;
|
13403
13913
|
id: string;
|
13404
13914
|
url: string;
|
@@ -13609,7 +14119,7 @@ export declare const lineContract: {
|
|
13609
14119
|
template?: any;
|
13610
14120
|
metadata?: any;
|
13611
14121
|
fromMessage?: {
|
13612
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
14122
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "contacts" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
13613
14123
|
message: string;
|
13614
14124
|
id: string;
|
13615
14125
|
url: string;
|
@@ -13731,9 +14241,19 @@ export declare const lineContract: {
|
|
13731
14241
|
channelSecret?: string | undefined;
|
13732
14242
|
additionalCredentials?: any;
|
13733
14243
|
senderId?: string | undefined;
|
14244
|
+
whatsapp?: {
|
14245
|
+
email: string;
|
14246
|
+
wabaExternalId: string;
|
14247
|
+
phoneNumberId: string;
|
14248
|
+
wabaBusinessId?: string | undefined;
|
14249
|
+
clientId?: string | undefined;
|
14250
|
+
channelId?: string | undefined;
|
14251
|
+
status?: "active" | "pending" | undefined;
|
14252
|
+
apiKey?: string | undefined;
|
14253
|
+
} | undefined;
|
13734
14254
|
vonageCredentials?: {
|
13735
|
-
mobileNumber: string;
|
13736
14255
|
apiKey: string;
|
14256
|
+
mobileNumber: string;
|
13737
14257
|
apiSecret: string;
|
13738
14258
|
} | undefined;
|
13739
14259
|
lineRichMenuId?: string | null | undefined;
|
@@ -14125,7 +14645,7 @@ export declare const lineContract: {
|
|
14125
14645
|
previewUrl: string;
|
14126
14646
|
imageSetId: string;
|
14127
14647
|
repliedMessage: {
|
14128
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
14648
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "contacts" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
14129
14649
|
message: string;
|
14130
14650
|
id: string;
|
14131
14651
|
url: string;
|
@@ -14337,7 +14857,7 @@ export declare const lineContract: {
|
|
14337
14857
|
label?: string | undefined;
|
14338
14858
|
} | null | undefined;
|
14339
14859
|
}, {
|
14340
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
14860
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "contacts" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
14341
14861
|
message: string;
|
14342
14862
|
id: string;
|
14343
14863
|
url: string;
|
@@ -14459,9 +14979,19 @@ export declare const lineContract: {
|
|
14459
14979
|
channelSecret?: string | undefined;
|
14460
14980
|
additionalCredentials?: any;
|
14461
14981
|
senderId?: string | undefined;
|
14982
|
+
whatsapp?: {
|
14983
|
+
email: string;
|
14984
|
+
wabaExternalId: string;
|
14985
|
+
phoneNumberId: string;
|
14986
|
+
wabaBusinessId?: string | undefined;
|
14987
|
+
clientId?: string | undefined;
|
14988
|
+
channelId?: string | undefined;
|
14989
|
+
status?: "active" | "pending" | undefined;
|
14990
|
+
apiKey?: string | undefined;
|
14991
|
+
} | undefined;
|
14462
14992
|
vonageCredentials?: {
|
14463
|
-
mobileNumber: string;
|
14464
14993
|
apiKey: string;
|
14994
|
+
mobileNumber: string;
|
14465
14995
|
apiSecret: string;
|
14466
14996
|
} | undefined;
|
14467
14997
|
lineRichMenuId?: string | null | undefined;
|
@@ -14853,7 +15383,7 @@ export declare const lineContract: {
|
|
14853
15383
|
previewUrl: string;
|
14854
15384
|
imageSetId: string;
|
14855
15385
|
repliedMessage: {
|
14856
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
15386
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "contacts" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
14857
15387
|
message: string;
|
14858
15388
|
id: string;
|
14859
15389
|
url: string;
|
@@ -15064,7 +15594,7 @@ export declare const lineContract: {
|
|
15064
15594
|
template?: any;
|
15065
15595
|
metadata?: any;
|
15066
15596
|
fromMessage?: {
|
15067
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
15597
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "contacts" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
15068
15598
|
message: string;
|
15069
15599
|
id: string;
|
15070
15600
|
url: string;
|
@@ -15186,9 +15716,19 @@ export declare const lineContract: {
|
|
15186
15716
|
channelSecret?: string | undefined;
|
15187
15717
|
additionalCredentials?: any;
|
15188
15718
|
senderId?: string | undefined;
|
15719
|
+
whatsapp?: {
|
15720
|
+
email: string;
|
15721
|
+
wabaExternalId: string;
|
15722
|
+
phoneNumberId: string;
|
15723
|
+
wabaBusinessId?: string | undefined;
|
15724
|
+
clientId?: string | undefined;
|
15725
|
+
channelId?: string | undefined;
|
15726
|
+
status?: "active" | "pending" | undefined;
|
15727
|
+
apiKey?: string | undefined;
|
15728
|
+
} | undefined;
|
15189
15729
|
vonageCredentials?: {
|
15190
|
-
mobileNumber: string;
|
15191
15730
|
apiKey: string;
|
15731
|
+
mobileNumber: string;
|
15192
15732
|
apiSecret: string;
|
15193
15733
|
} | undefined;
|
15194
15734
|
lineRichMenuId?: string | null | undefined;
|
@@ -15580,7 +16120,7 @@ export declare const lineContract: {
|
|
15580
16120
|
previewUrl: string;
|
15581
16121
|
imageSetId: string;
|
15582
16122
|
repliedMessage: {
|
15583
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
16123
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "contacts" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
15584
16124
|
message: string;
|
15585
16125
|
id: string;
|
15586
16126
|
url: string;
|
@@ -15794,7 +16334,7 @@ export declare const lineContract: {
|
|
15794
16334
|
}>;
|
15795
16335
|
}, "strip", z.ZodTypeAny, {
|
15796
16336
|
data: {
|
15797
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
16337
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "contacts" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
15798
16338
|
message: string;
|
15799
16339
|
id: string;
|
15800
16340
|
url: string;
|
@@ -15916,9 +16456,19 @@ export declare const lineContract: {
|
|
15916
16456
|
channelSecret?: string | undefined;
|
15917
16457
|
additionalCredentials?: any;
|
15918
16458
|
senderId?: string | undefined;
|
16459
|
+
whatsapp?: {
|
16460
|
+
email: string;
|
16461
|
+
wabaExternalId: string;
|
16462
|
+
phoneNumberId: string;
|
16463
|
+
wabaBusinessId?: string | undefined;
|
16464
|
+
clientId?: string | undefined;
|
16465
|
+
channelId?: string | undefined;
|
16466
|
+
status?: "active" | "pending" | undefined;
|
16467
|
+
apiKey?: string | undefined;
|
16468
|
+
} | undefined;
|
15919
16469
|
vonageCredentials?: {
|
15920
|
-
mobileNumber: string;
|
15921
16470
|
apiKey: string;
|
16471
|
+
mobileNumber: string;
|
15922
16472
|
apiSecret: string;
|
15923
16473
|
} | undefined;
|
15924
16474
|
lineRichMenuId?: string | null | undefined;
|
@@ -16310,7 +16860,7 @@ export declare const lineContract: {
|
|
16310
16860
|
previewUrl: string;
|
16311
16861
|
imageSetId: string;
|
16312
16862
|
repliedMessage: {
|
16313
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
16863
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "contacts" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
16314
16864
|
message: string;
|
16315
16865
|
id: string;
|
16316
16866
|
url: string;
|
@@ -16521,7 +17071,7 @@ export declare const lineContract: {
|
|
16521
17071
|
template?: any;
|
16522
17072
|
metadata?: any;
|
16523
17073
|
fromMessage?: {
|
16524
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
17074
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "contacts" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
16525
17075
|
message: string;
|
16526
17076
|
id: string;
|
16527
17077
|
url: string;
|
@@ -16643,9 +17193,19 @@ export declare const lineContract: {
|
|
16643
17193
|
channelSecret?: string | undefined;
|
16644
17194
|
additionalCredentials?: any;
|
16645
17195
|
senderId?: string | undefined;
|
17196
|
+
whatsapp?: {
|
17197
|
+
email: string;
|
17198
|
+
wabaExternalId: string;
|
17199
|
+
phoneNumberId: string;
|
17200
|
+
wabaBusinessId?: string | undefined;
|
17201
|
+
clientId?: string | undefined;
|
17202
|
+
channelId?: string | undefined;
|
17203
|
+
status?: "active" | "pending" | undefined;
|
17204
|
+
apiKey?: string | undefined;
|
17205
|
+
} | undefined;
|
16646
17206
|
vonageCredentials?: {
|
16647
|
-
mobileNumber: string;
|
16648
17207
|
apiKey: string;
|
17208
|
+
mobileNumber: string;
|
16649
17209
|
apiSecret: string;
|
16650
17210
|
} | undefined;
|
16651
17211
|
lineRichMenuId?: string | null | undefined;
|
@@ -17037,7 +17597,7 @@ export declare const lineContract: {
|
|
17037
17597
|
previewUrl: string;
|
17038
17598
|
imageSetId: string;
|
17039
17599
|
repliedMessage: {
|
17040
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
17600
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "contacts" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
17041
17601
|
message: string;
|
17042
17602
|
id: string;
|
17043
17603
|
url: string;
|
@@ -17252,7 +17812,7 @@ export declare const lineContract: {
|
|
17252
17812
|
requestId: string;
|
17253
17813
|
}, {
|
17254
17814
|
data: {
|
17255
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
17815
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "contacts" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
17256
17816
|
message: string;
|
17257
17817
|
id: string;
|
17258
17818
|
url: string;
|
@@ -17374,9 +17934,19 @@ export declare const lineContract: {
|
|
17374
17934
|
channelSecret?: string | undefined;
|
17375
17935
|
additionalCredentials?: any;
|
17376
17936
|
senderId?: string | undefined;
|
17937
|
+
whatsapp?: {
|
17938
|
+
email: string;
|
17939
|
+
wabaExternalId: string;
|
17940
|
+
phoneNumberId: string;
|
17941
|
+
wabaBusinessId?: string | undefined;
|
17942
|
+
clientId?: string | undefined;
|
17943
|
+
channelId?: string | undefined;
|
17944
|
+
status?: "active" | "pending" | undefined;
|
17945
|
+
apiKey?: string | undefined;
|
17946
|
+
} | undefined;
|
17377
17947
|
vonageCredentials?: {
|
17378
|
-
mobileNumber: string;
|
17379
17948
|
apiKey: string;
|
17949
|
+
mobileNumber: string;
|
17380
17950
|
apiSecret: string;
|
17381
17951
|
} | undefined;
|
17382
17952
|
lineRichMenuId?: string | null | undefined;
|
@@ -17768,7 +18338,7 @@ export declare const lineContract: {
|
|
17768
18338
|
previewUrl: string;
|
17769
18339
|
imageSetId: string;
|
17770
18340
|
repliedMessage: {
|
17771
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
18341
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "contacts" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
17772
18342
|
message: string;
|
17773
18343
|
id: string;
|
17774
18344
|
url: string;
|
@@ -17979,7 +18549,7 @@ export declare const lineContract: {
|
|
17979
18549
|
template?: any;
|
17980
18550
|
metadata?: any;
|
17981
18551
|
fromMessage?: {
|
17982
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
18552
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "contacts" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
17983
18553
|
message: string;
|
17984
18554
|
id: string;
|
17985
18555
|
url: string;
|
@@ -18101,9 +18671,19 @@ export declare const lineContract: {
|
|
18101
18671
|
channelSecret?: string | undefined;
|
18102
18672
|
additionalCredentials?: any;
|
18103
18673
|
senderId?: string | undefined;
|
18674
|
+
whatsapp?: {
|
18675
|
+
email: string;
|
18676
|
+
wabaExternalId: string;
|
18677
|
+
phoneNumberId: string;
|
18678
|
+
wabaBusinessId?: string | undefined;
|
18679
|
+
clientId?: string | undefined;
|
18680
|
+
channelId?: string | undefined;
|
18681
|
+
status?: "active" | "pending" | undefined;
|
18682
|
+
apiKey?: string | undefined;
|
18683
|
+
} | undefined;
|
18104
18684
|
vonageCredentials?: {
|
18105
|
-
mobileNumber: string;
|
18106
18685
|
apiKey: string;
|
18686
|
+
mobileNumber: string;
|
18107
18687
|
apiSecret: string;
|
18108
18688
|
} | undefined;
|
18109
18689
|
lineRichMenuId?: string | null | undefined;
|
@@ -18495,7 +19075,7 @@ export declare const lineContract: {
|
|
18495
19075
|
previewUrl: string;
|
18496
19076
|
imageSetId: string;
|
18497
19077
|
repliedMessage: {
|
18498
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
19078
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "reaction" | "contacts" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
|
18499
19079
|
message: string;
|
18500
19080
|
id: string;
|
18501
19081
|
url: string;
|
@@ -18734,17 +19314,45 @@ export declare const lineContract: {
|
|
18734
19314
|
channelSecret: z.ZodOptional<z.ZodString>;
|
18735
19315
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
18736
19316
|
senderId: z.ZodOptional<z.ZodString>;
|
19317
|
+
whatsapp: z.ZodOptional<z.ZodObject<{
|
19318
|
+
wabaBusinessId: z.ZodOptional<z.ZodString>;
|
19319
|
+
wabaExternalId: z.ZodString;
|
19320
|
+
phoneNumberId: z.ZodString;
|
19321
|
+
email: z.ZodString;
|
19322
|
+
clientId: z.ZodOptional<z.ZodString>;
|
19323
|
+
channelId: z.ZodOptional<z.ZodString>;
|
19324
|
+
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
19325
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
19326
|
+
}, "strip", z.ZodTypeAny, {
|
19327
|
+
email: string;
|
19328
|
+
wabaExternalId: string;
|
19329
|
+
phoneNumberId: string;
|
19330
|
+
wabaBusinessId?: string | undefined;
|
19331
|
+
clientId?: string | undefined;
|
19332
|
+
channelId?: string | undefined;
|
19333
|
+
status?: "active" | "pending" | undefined;
|
19334
|
+
apiKey?: string | undefined;
|
19335
|
+
}, {
|
19336
|
+
email: string;
|
19337
|
+
wabaExternalId: string;
|
19338
|
+
phoneNumberId: string;
|
19339
|
+
wabaBusinessId?: string | undefined;
|
19340
|
+
clientId?: string | undefined;
|
19341
|
+
channelId?: string | undefined;
|
19342
|
+
status?: "active" | "pending" | undefined;
|
19343
|
+
apiKey?: string | undefined;
|
19344
|
+
}>>;
|
18737
19345
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
18738
19346
|
mobileNumber: z.ZodString;
|
18739
19347
|
apiKey: z.ZodString;
|
18740
19348
|
apiSecret: z.ZodString;
|
18741
19349
|
}, "strip", z.ZodTypeAny, {
|
18742
|
-
mobileNumber: string;
|
18743
19350
|
apiKey: string;
|
19351
|
+
mobileNumber: string;
|
18744
19352
|
apiSecret: string;
|
18745
19353
|
}, {
|
18746
|
-
mobileNumber: string;
|
18747
19354
|
apiKey: string;
|
19355
|
+
mobileNumber: string;
|
18748
19356
|
apiSecret: string;
|
18749
19357
|
}>>;
|
18750
19358
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
@@ -18756,9 +19364,19 @@ export declare const lineContract: {
|
|
18756
19364
|
channelSecret?: string | undefined;
|
18757
19365
|
additionalCredentials?: any;
|
18758
19366
|
senderId?: string | undefined;
|
19367
|
+
whatsapp?: {
|
19368
|
+
email: string;
|
19369
|
+
wabaExternalId: string;
|
19370
|
+
phoneNumberId: string;
|
19371
|
+
wabaBusinessId?: string | undefined;
|
19372
|
+
clientId?: string | undefined;
|
19373
|
+
channelId?: string | undefined;
|
19374
|
+
status?: "active" | "pending" | undefined;
|
19375
|
+
apiKey?: string | undefined;
|
19376
|
+
} | undefined;
|
18759
19377
|
vonageCredentials?: {
|
18760
|
-
mobileNumber: string;
|
18761
19378
|
apiKey: string;
|
19379
|
+
mobileNumber: string;
|
18762
19380
|
apiSecret: string;
|
18763
19381
|
} | undefined;
|
18764
19382
|
lineRichMenuId?: string | null | undefined;
|
@@ -18770,9 +19388,19 @@ export declare const lineContract: {
|
|
18770
19388
|
channelSecret?: string | undefined;
|
18771
19389
|
additionalCredentials?: any;
|
18772
19390
|
senderId?: string | undefined;
|
19391
|
+
whatsapp?: {
|
19392
|
+
email: string;
|
19393
|
+
wabaExternalId: string;
|
19394
|
+
phoneNumberId: string;
|
19395
|
+
wabaBusinessId?: string | undefined;
|
19396
|
+
clientId?: string | undefined;
|
19397
|
+
channelId?: string | undefined;
|
19398
|
+
status?: "active" | "pending" | undefined;
|
19399
|
+
apiKey?: string | undefined;
|
19400
|
+
} | undefined;
|
18773
19401
|
vonageCredentials?: {
|
18774
|
-
mobileNumber: string;
|
18775
19402
|
apiKey: string;
|
19403
|
+
mobileNumber: string;
|
18776
19404
|
apiSecret: string;
|
18777
19405
|
} | undefined;
|
18778
19406
|
lineRichMenuId?: string | null | undefined;
|
@@ -18814,9 +19442,19 @@ export declare const lineContract: {
|
|
18814
19442
|
channelSecret?: string | undefined;
|
18815
19443
|
additionalCredentials?: any;
|
18816
19444
|
senderId?: string | undefined;
|
19445
|
+
whatsapp?: {
|
19446
|
+
email: string;
|
19447
|
+
wabaExternalId: string;
|
19448
|
+
phoneNumberId: string;
|
19449
|
+
wabaBusinessId?: string | undefined;
|
19450
|
+
clientId?: string | undefined;
|
19451
|
+
channelId?: string | undefined;
|
19452
|
+
status?: "active" | "pending" | undefined;
|
19453
|
+
apiKey?: string | undefined;
|
19454
|
+
} | undefined;
|
18817
19455
|
vonageCredentials?: {
|
18818
|
-
mobileNumber: string;
|
18819
19456
|
apiKey: string;
|
19457
|
+
mobileNumber: string;
|
18820
19458
|
apiSecret: string;
|
18821
19459
|
} | undefined;
|
18822
19460
|
lineRichMenuId?: string | null | undefined;
|
@@ -18846,9 +19484,19 @@ export declare const lineContract: {
|
|
18846
19484
|
channelSecret?: string | undefined;
|
18847
19485
|
additionalCredentials?: any;
|
18848
19486
|
senderId?: string | undefined;
|
19487
|
+
whatsapp?: {
|
19488
|
+
email: string;
|
19489
|
+
wabaExternalId: string;
|
19490
|
+
phoneNumberId: string;
|
19491
|
+
wabaBusinessId?: string | undefined;
|
19492
|
+
clientId?: string | undefined;
|
19493
|
+
channelId?: string | undefined;
|
19494
|
+
status?: "active" | "pending" | undefined;
|
19495
|
+
apiKey?: string | undefined;
|
19496
|
+
} | undefined;
|
18849
19497
|
vonageCredentials?: {
|
18850
|
-
mobileNumber: string;
|
18851
19498
|
apiKey: string;
|
19499
|
+
mobileNumber: string;
|
18852
19500
|
apiSecret: string;
|
18853
19501
|
} | undefined;
|
18854
19502
|
lineRichMenuId?: string | null | undefined;
|
@@ -18883,17 +19531,45 @@ export declare const lineContract: {
|
|
18883
19531
|
channelSecret: z.ZodOptional<z.ZodString>;
|
18884
19532
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
18885
19533
|
senderId: z.ZodOptional<z.ZodString>;
|
19534
|
+
whatsapp: z.ZodOptional<z.ZodObject<{
|
19535
|
+
wabaBusinessId: z.ZodOptional<z.ZodString>;
|
19536
|
+
wabaExternalId: z.ZodString;
|
19537
|
+
phoneNumberId: z.ZodString;
|
19538
|
+
email: z.ZodString;
|
19539
|
+
clientId: z.ZodOptional<z.ZodString>;
|
19540
|
+
channelId: z.ZodOptional<z.ZodString>;
|
19541
|
+
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
19542
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
19543
|
+
}, "strip", z.ZodTypeAny, {
|
19544
|
+
email: string;
|
19545
|
+
wabaExternalId: string;
|
19546
|
+
phoneNumberId: string;
|
19547
|
+
wabaBusinessId?: string | undefined;
|
19548
|
+
clientId?: string | undefined;
|
19549
|
+
channelId?: string | undefined;
|
19550
|
+
status?: "active" | "pending" | undefined;
|
19551
|
+
apiKey?: string | undefined;
|
19552
|
+
}, {
|
19553
|
+
email: string;
|
19554
|
+
wabaExternalId: string;
|
19555
|
+
phoneNumberId: string;
|
19556
|
+
wabaBusinessId?: string | undefined;
|
19557
|
+
clientId?: string | undefined;
|
19558
|
+
channelId?: string | undefined;
|
19559
|
+
status?: "active" | "pending" | undefined;
|
19560
|
+
apiKey?: string | undefined;
|
19561
|
+
}>>;
|
18886
19562
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
18887
19563
|
mobileNumber: z.ZodString;
|
18888
19564
|
apiKey: z.ZodString;
|
18889
19565
|
apiSecret: z.ZodString;
|
18890
19566
|
}, "strip", z.ZodTypeAny, {
|
18891
|
-
mobileNumber: string;
|
18892
19567
|
apiKey: string;
|
19568
|
+
mobileNumber: string;
|
18893
19569
|
apiSecret: string;
|
18894
19570
|
}, {
|
18895
|
-
mobileNumber: string;
|
18896
19571
|
apiKey: string;
|
19572
|
+
mobileNumber: string;
|
18897
19573
|
apiSecret: string;
|
18898
19574
|
}>>;
|
18899
19575
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
@@ -18905,9 +19581,19 @@ export declare const lineContract: {
|
|
18905
19581
|
channelSecret?: string | undefined;
|
18906
19582
|
additionalCredentials?: any;
|
18907
19583
|
senderId?: string | undefined;
|
19584
|
+
whatsapp?: {
|
19585
|
+
email: string;
|
19586
|
+
wabaExternalId: string;
|
19587
|
+
phoneNumberId: string;
|
19588
|
+
wabaBusinessId?: string | undefined;
|
19589
|
+
clientId?: string | undefined;
|
19590
|
+
channelId?: string | undefined;
|
19591
|
+
status?: "active" | "pending" | undefined;
|
19592
|
+
apiKey?: string | undefined;
|
19593
|
+
} | undefined;
|
18908
19594
|
vonageCredentials?: {
|
18909
|
-
mobileNumber: string;
|
18910
19595
|
apiKey: string;
|
19596
|
+
mobileNumber: string;
|
18911
19597
|
apiSecret: string;
|
18912
19598
|
} | undefined;
|
18913
19599
|
lineRichMenuId?: string | null | undefined;
|
@@ -18919,9 +19605,19 @@ export declare const lineContract: {
|
|
18919
19605
|
channelSecret?: string | undefined;
|
18920
19606
|
additionalCredentials?: any;
|
18921
19607
|
senderId?: string | undefined;
|
19608
|
+
whatsapp?: {
|
19609
|
+
email: string;
|
19610
|
+
wabaExternalId: string;
|
19611
|
+
phoneNumberId: string;
|
19612
|
+
wabaBusinessId?: string | undefined;
|
19613
|
+
clientId?: string | undefined;
|
19614
|
+
channelId?: string | undefined;
|
19615
|
+
status?: "active" | "pending" | undefined;
|
19616
|
+
apiKey?: string | undefined;
|
19617
|
+
} | undefined;
|
18922
19618
|
vonageCredentials?: {
|
18923
|
-
mobileNumber: string;
|
18924
19619
|
apiKey: string;
|
19620
|
+
mobileNumber: string;
|
18925
19621
|
apiSecret: string;
|
18926
19622
|
} | undefined;
|
18927
19623
|
lineRichMenuId?: string | null | undefined;
|
@@ -18963,9 +19659,19 @@ export declare const lineContract: {
|
|
18963
19659
|
channelSecret?: string | undefined;
|
18964
19660
|
additionalCredentials?: any;
|
18965
19661
|
senderId?: string | undefined;
|
19662
|
+
whatsapp?: {
|
19663
|
+
email: string;
|
19664
|
+
wabaExternalId: string;
|
19665
|
+
phoneNumberId: string;
|
19666
|
+
wabaBusinessId?: string | undefined;
|
19667
|
+
clientId?: string | undefined;
|
19668
|
+
channelId?: string | undefined;
|
19669
|
+
status?: "active" | "pending" | undefined;
|
19670
|
+
apiKey?: string | undefined;
|
19671
|
+
} | undefined;
|
18966
19672
|
vonageCredentials?: {
|
18967
|
-
mobileNumber: string;
|
18968
19673
|
apiKey: string;
|
19674
|
+
mobileNumber: string;
|
18969
19675
|
apiSecret: string;
|
18970
19676
|
} | undefined;
|
18971
19677
|
lineRichMenuId?: string | null | undefined;
|
@@ -18995,9 +19701,19 @@ export declare const lineContract: {
|
|
18995
19701
|
channelSecret?: string | undefined;
|
18996
19702
|
additionalCredentials?: any;
|
18997
19703
|
senderId?: string | undefined;
|
19704
|
+
whatsapp?: {
|
19705
|
+
email: string;
|
19706
|
+
wabaExternalId: string;
|
19707
|
+
phoneNumberId: string;
|
19708
|
+
wabaBusinessId?: string | undefined;
|
19709
|
+
clientId?: string | undefined;
|
19710
|
+
channelId?: string | undefined;
|
19711
|
+
status?: "active" | "pending" | undefined;
|
19712
|
+
apiKey?: string | undefined;
|
19713
|
+
} | undefined;
|
18998
19714
|
vonageCredentials?: {
|
18999
|
-
mobileNumber: string;
|
19000
19715
|
apiKey: string;
|
19716
|
+
mobileNumber: string;
|
19001
19717
|
apiSecret: string;
|
19002
19718
|
} | undefined;
|
19003
19719
|
lineRichMenuId?: string | null | undefined;
|
@@ -19029,9 +19745,19 @@ export declare const lineContract: {
|
|
19029
19745
|
channelSecret?: string | undefined;
|
19030
19746
|
additionalCredentials?: any;
|
19031
19747
|
senderId?: string | undefined;
|
19748
|
+
whatsapp?: {
|
19749
|
+
email: string;
|
19750
|
+
wabaExternalId: string;
|
19751
|
+
phoneNumberId: string;
|
19752
|
+
wabaBusinessId?: string | undefined;
|
19753
|
+
clientId?: string | undefined;
|
19754
|
+
channelId?: string | undefined;
|
19755
|
+
status?: "active" | "pending" | undefined;
|
19756
|
+
apiKey?: string | undefined;
|
19757
|
+
} | undefined;
|
19032
19758
|
vonageCredentials?: {
|
19033
|
-
mobileNumber: string;
|
19034
19759
|
apiKey: string;
|
19760
|
+
mobileNumber: string;
|
19035
19761
|
apiSecret: string;
|
19036
19762
|
} | undefined;
|
19037
19763
|
lineRichMenuId?: string | null | undefined;
|
@@ -19064,9 +19790,19 @@ export declare const lineContract: {
|
|
19064
19790
|
channelSecret?: string | undefined;
|
19065
19791
|
additionalCredentials?: any;
|
19066
19792
|
senderId?: string | undefined;
|
19793
|
+
whatsapp?: {
|
19794
|
+
email: string;
|
19795
|
+
wabaExternalId: string;
|
19796
|
+
phoneNumberId: string;
|
19797
|
+
wabaBusinessId?: string | undefined;
|
19798
|
+
clientId?: string | undefined;
|
19799
|
+
channelId?: string | undefined;
|
19800
|
+
status?: "active" | "pending" | undefined;
|
19801
|
+
apiKey?: string | undefined;
|
19802
|
+
} | undefined;
|
19067
19803
|
vonageCredentials?: {
|
19068
|
-
mobileNumber: string;
|
19069
19804
|
apiKey: string;
|
19805
|
+
mobileNumber: string;
|
19070
19806
|
apiSecret: string;
|
19071
19807
|
} | undefined;
|
19072
19808
|
lineRichMenuId?: string | null | undefined;
|
@@ -19135,17 +19871,45 @@ export declare const lineContract: {
|
|
19135
19871
|
channelSecret: z.ZodOptional<z.ZodString>;
|
19136
19872
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
19137
19873
|
senderId: z.ZodOptional<z.ZodString>;
|
19874
|
+
whatsapp: z.ZodOptional<z.ZodObject<{
|
19875
|
+
wabaBusinessId: z.ZodOptional<z.ZodString>;
|
19876
|
+
wabaExternalId: z.ZodString;
|
19877
|
+
phoneNumberId: z.ZodString;
|
19878
|
+
email: z.ZodString;
|
19879
|
+
clientId: z.ZodOptional<z.ZodString>;
|
19880
|
+
channelId: z.ZodOptional<z.ZodString>;
|
19881
|
+
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
19882
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
19883
|
+
}, "strip", z.ZodTypeAny, {
|
19884
|
+
email: string;
|
19885
|
+
wabaExternalId: string;
|
19886
|
+
phoneNumberId: string;
|
19887
|
+
wabaBusinessId?: string | undefined;
|
19888
|
+
clientId?: string | undefined;
|
19889
|
+
channelId?: string | undefined;
|
19890
|
+
status?: "active" | "pending" | undefined;
|
19891
|
+
apiKey?: string | undefined;
|
19892
|
+
}, {
|
19893
|
+
email: string;
|
19894
|
+
wabaExternalId: string;
|
19895
|
+
phoneNumberId: string;
|
19896
|
+
wabaBusinessId?: string | undefined;
|
19897
|
+
clientId?: string | undefined;
|
19898
|
+
channelId?: string | undefined;
|
19899
|
+
status?: "active" | "pending" | undefined;
|
19900
|
+
apiKey?: string | undefined;
|
19901
|
+
}>>;
|
19138
19902
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
19139
19903
|
mobileNumber: z.ZodString;
|
19140
19904
|
apiKey: z.ZodString;
|
19141
19905
|
apiSecret: z.ZodString;
|
19142
19906
|
}, "strip", z.ZodTypeAny, {
|
19143
|
-
mobileNumber: string;
|
19144
19907
|
apiKey: string;
|
19908
|
+
mobileNumber: string;
|
19145
19909
|
apiSecret: string;
|
19146
19910
|
}, {
|
19147
|
-
mobileNumber: string;
|
19148
19911
|
apiKey: string;
|
19912
|
+
mobileNumber: string;
|
19149
19913
|
apiSecret: string;
|
19150
19914
|
}>>;
|
19151
19915
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
@@ -19157,9 +19921,19 @@ export declare const lineContract: {
|
|
19157
19921
|
channelSecret?: string | undefined;
|
19158
19922
|
additionalCredentials?: any;
|
19159
19923
|
senderId?: string | undefined;
|
19924
|
+
whatsapp?: {
|
19925
|
+
email: string;
|
19926
|
+
wabaExternalId: string;
|
19927
|
+
phoneNumberId: string;
|
19928
|
+
wabaBusinessId?: string | undefined;
|
19929
|
+
clientId?: string | undefined;
|
19930
|
+
channelId?: string | undefined;
|
19931
|
+
status?: "active" | "pending" | undefined;
|
19932
|
+
apiKey?: string | undefined;
|
19933
|
+
} | undefined;
|
19160
19934
|
vonageCredentials?: {
|
19161
|
-
mobileNumber: string;
|
19162
19935
|
apiKey: string;
|
19936
|
+
mobileNumber: string;
|
19163
19937
|
apiSecret: string;
|
19164
19938
|
} | undefined;
|
19165
19939
|
lineRichMenuId?: string | null | undefined;
|
@@ -19171,9 +19945,19 @@ export declare const lineContract: {
|
|
19171
19945
|
channelSecret?: string | undefined;
|
19172
19946
|
additionalCredentials?: any;
|
19173
19947
|
senderId?: string | undefined;
|
19948
|
+
whatsapp?: {
|
19949
|
+
email: string;
|
19950
|
+
wabaExternalId: string;
|
19951
|
+
phoneNumberId: string;
|
19952
|
+
wabaBusinessId?: string | undefined;
|
19953
|
+
clientId?: string | undefined;
|
19954
|
+
channelId?: string | undefined;
|
19955
|
+
status?: "active" | "pending" | undefined;
|
19956
|
+
apiKey?: string | undefined;
|
19957
|
+
} | undefined;
|
19174
19958
|
vonageCredentials?: {
|
19175
|
-
mobileNumber: string;
|
19176
19959
|
apiKey: string;
|
19960
|
+
mobileNumber: string;
|
19177
19961
|
apiSecret: string;
|
19178
19962
|
} | undefined;
|
19179
19963
|
lineRichMenuId?: string | null | undefined;
|
@@ -19215,9 +19999,19 @@ export declare const lineContract: {
|
|
19215
19999
|
channelSecret?: string | undefined;
|
19216
20000
|
additionalCredentials?: any;
|
19217
20001
|
senderId?: string | undefined;
|
20002
|
+
whatsapp?: {
|
20003
|
+
email: string;
|
20004
|
+
wabaExternalId: string;
|
20005
|
+
phoneNumberId: string;
|
20006
|
+
wabaBusinessId?: string | undefined;
|
20007
|
+
clientId?: string | undefined;
|
20008
|
+
channelId?: string | undefined;
|
20009
|
+
status?: "active" | "pending" | undefined;
|
20010
|
+
apiKey?: string | undefined;
|
20011
|
+
} | undefined;
|
19218
20012
|
vonageCredentials?: {
|
19219
|
-
mobileNumber: string;
|
19220
20013
|
apiKey: string;
|
20014
|
+
mobileNumber: string;
|
19221
20015
|
apiSecret: string;
|
19222
20016
|
} | undefined;
|
19223
20017
|
lineRichMenuId?: string | null | undefined;
|
@@ -19247,9 +20041,19 @@ export declare const lineContract: {
|
|
19247
20041
|
channelSecret?: string | undefined;
|
19248
20042
|
additionalCredentials?: any;
|
19249
20043
|
senderId?: string | undefined;
|
20044
|
+
whatsapp?: {
|
20045
|
+
email: string;
|
20046
|
+
wabaExternalId: string;
|
20047
|
+
phoneNumberId: string;
|
20048
|
+
wabaBusinessId?: string | undefined;
|
20049
|
+
clientId?: string | undefined;
|
20050
|
+
channelId?: string | undefined;
|
20051
|
+
status?: "active" | "pending" | undefined;
|
20052
|
+
apiKey?: string | undefined;
|
20053
|
+
} | undefined;
|
19250
20054
|
vonageCredentials?: {
|
19251
|
-
mobileNumber: string;
|
19252
20055
|
apiKey: string;
|
20056
|
+
mobileNumber: string;
|
19253
20057
|
apiSecret: string;
|
19254
20058
|
} | undefined;
|
19255
20059
|
lineRichMenuId?: string | null | undefined;
|
@@ -19281,9 +20085,19 @@ export declare const lineContract: {
|
|
19281
20085
|
channelSecret?: string | undefined;
|
19282
20086
|
additionalCredentials?: any;
|
19283
20087
|
senderId?: string | undefined;
|
20088
|
+
whatsapp?: {
|
20089
|
+
email: string;
|
20090
|
+
wabaExternalId: string;
|
20091
|
+
phoneNumberId: string;
|
20092
|
+
wabaBusinessId?: string | undefined;
|
20093
|
+
clientId?: string | undefined;
|
20094
|
+
channelId?: string | undefined;
|
20095
|
+
status?: "active" | "pending" | undefined;
|
20096
|
+
apiKey?: string | undefined;
|
20097
|
+
} | undefined;
|
19284
20098
|
vonageCredentials?: {
|
19285
|
-
mobileNumber: string;
|
19286
20099
|
apiKey: string;
|
20100
|
+
mobileNumber: string;
|
19287
20101
|
apiSecret: string;
|
19288
20102
|
} | undefined;
|
19289
20103
|
lineRichMenuId?: string | null | undefined;
|
@@ -19316,9 +20130,19 @@ export declare const lineContract: {
|
|
19316
20130
|
channelSecret?: string | undefined;
|
19317
20131
|
additionalCredentials?: any;
|
19318
20132
|
senderId?: string | undefined;
|
20133
|
+
whatsapp?: {
|
20134
|
+
email: string;
|
20135
|
+
wabaExternalId: string;
|
20136
|
+
phoneNumberId: string;
|
20137
|
+
wabaBusinessId?: string | undefined;
|
20138
|
+
clientId?: string | undefined;
|
20139
|
+
channelId?: string | undefined;
|
20140
|
+
status?: "active" | "pending" | undefined;
|
20141
|
+
apiKey?: string | undefined;
|
20142
|
+
} | undefined;
|
19319
20143
|
vonageCredentials?: {
|
19320
|
-
mobileNumber: string;
|
19321
20144
|
apiKey: string;
|
20145
|
+
mobileNumber: string;
|
19322
20146
|
apiSecret: string;
|
19323
20147
|
} | undefined;
|
19324
20148
|
lineRichMenuId?: string | null | undefined;
|
@@ -19387,17 +20211,45 @@ export declare const lineContract: {
|
|
19387
20211
|
channelSecret: z.ZodOptional<z.ZodString>;
|
19388
20212
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
19389
20213
|
senderId: z.ZodOptional<z.ZodString>;
|
20214
|
+
whatsapp: z.ZodOptional<z.ZodObject<{
|
20215
|
+
wabaBusinessId: z.ZodOptional<z.ZodString>;
|
20216
|
+
wabaExternalId: z.ZodString;
|
20217
|
+
phoneNumberId: z.ZodString;
|
20218
|
+
email: z.ZodString;
|
20219
|
+
clientId: z.ZodOptional<z.ZodString>;
|
20220
|
+
channelId: z.ZodOptional<z.ZodString>;
|
20221
|
+
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
20222
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
20223
|
+
}, "strip", z.ZodTypeAny, {
|
20224
|
+
email: string;
|
20225
|
+
wabaExternalId: string;
|
20226
|
+
phoneNumberId: string;
|
20227
|
+
wabaBusinessId?: string | undefined;
|
20228
|
+
clientId?: string | undefined;
|
20229
|
+
channelId?: string | undefined;
|
20230
|
+
status?: "active" | "pending" | undefined;
|
20231
|
+
apiKey?: string | undefined;
|
20232
|
+
}, {
|
20233
|
+
email: string;
|
20234
|
+
wabaExternalId: string;
|
20235
|
+
phoneNumberId: string;
|
20236
|
+
wabaBusinessId?: string | undefined;
|
20237
|
+
clientId?: string | undefined;
|
20238
|
+
channelId?: string | undefined;
|
20239
|
+
status?: "active" | "pending" | undefined;
|
20240
|
+
apiKey?: string | undefined;
|
20241
|
+
}>>;
|
19390
20242
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
19391
20243
|
mobileNumber: z.ZodString;
|
19392
20244
|
apiKey: z.ZodString;
|
19393
20245
|
apiSecret: z.ZodString;
|
19394
20246
|
}, "strip", z.ZodTypeAny, {
|
19395
|
-
mobileNumber: string;
|
19396
20247
|
apiKey: string;
|
20248
|
+
mobileNumber: string;
|
19397
20249
|
apiSecret: string;
|
19398
20250
|
}, {
|
19399
|
-
mobileNumber: string;
|
19400
20251
|
apiKey: string;
|
20252
|
+
mobileNumber: string;
|
19401
20253
|
apiSecret: string;
|
19402
20254
|
}>>;
|
19403
20255
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
@@ -19409,9 +20261,19 @@ export declare const lineContract: {
|
|
19409
20261
|
channelSecret?: string | undefined;
|
19410
20262
|
additionalCredentials?: any;
|
19411
20263
|
senderId?: string | undefined;
|
20264
|
+
whatsapp?: {
|
20265
|
+
email: string;
|
20266
|
+
wabaExternalId: string;
|
20267
|
+
phoneNumberId: string;
|
20268
|
+
wabaBusinessId?: string | undefined;
|
20269
|
+
clientId?: string | undefined;
|
20270
|
+
channelId?: string | undefined;
|
20271
|
+
status?: "active" | "pending" | undefined;
|
20272
|
+
apiKey?: string | undefined;
|
20273
|
+
} | undefined;
|
19412
20274
|
vonageCredentials?: {
|
19413
|
-
mobileNumber: string;
|
19414
20275
|
apiKey: string;
|
20276
|
+
mobileNumber: string;
|
19415
20277
|
apiSecret: string;
|
19416
20278
|
} | undefined;
|
19417
20279
|
lineRichMenuId?: string | null | undefined;
|
@@ -19423,9 +20285,19 @@ export declare const lineContract: {
|
|
19423
20285
|
channelSecret?: string | undefined;
|
19424
20286
|
additionalCredentials?: any;
|
19425
20287
|
senderId?: string | undefined;
|
20288
|
+
whatsapp?: {
|
20289
|
+
email: string;
|
20290
|
+
wabaExternalId: string;
|
20291
|
+
phoneNumberId: string;
|
20292
|
+
wabaBusinessId?: string | undefined;
|
20293
|
+
clientId?: string | undefined;
|
20294
|
+
channelId?: string | undefined;
|
20295
|
+
status?: "active" | "pending" | undefined;
|
20296
|
+
apiKey?: string | undefined;
|
20297
|
+
} | undefined;
|
19426
20298
|
vonageCredentials?: {
|
19427
|
-
mobileNumber: string;
|
19428
20299
|
apiKey: string;
|
20300
|
+
mobileNumber: string;
|
19429
20301
|
apiSecret: string;
|
19430
20302
|
} | undefined;
|
19431
20303
|
lineRichMenuId?: string | null | undefined;
|
@@ -19467,9 +20339,19 @@ export declare const lineContract: {
|
|
19467
20339
|
channelSecret?: string | undefined;
|
19468
20340
|
additionalCredentials?: any;
|
19469
20341
|
senderId?: string | undefined;
|
20342
|
+
whatsapp?: {
|
20343
|
+
email: string;
|
20344
|
+
wabaExternalId: string;
|
20345
|
+
phoneNumberId: string;
|
20346
|
+
wabaBusinessId?: string | undefined;
|
20347
|
+
clientId?: string | undefined;
|
20348
|
+
channelId?: string | undefined;
|
20349
|
+
status?: "active" | "pending" | undefined;
|
20350
|
+
apiKey?: string | undefined;
|
20351
|
+
} | undefined;
|
19470
20352
|
vonageCredentials?: {
|
19471
|
-
mobileNumber: string;
|
19472
20353
|
apiKey: string;
|
20354
|
+
mobileNumber: string;
|
19473
20355
|
apiSecret: string;
|
19474
20356
|
} | undefined;
|
19475
20357
|
lineRichMenuId?: string | null | undefined;
|
@@ -19499,9 +20381,19 @@ export declare const lineContract: {
|
|
19499
20381
|
channelSecret?: string | undefined;
|
19500
20382
|
additionalCredentials?: any;
|
19501
20383
|
senderId?: string | undefined;
|
20384
|
+
whatsapp?: {
|
20385
|
+
email: string;
|
20386
|
+
wabaExternalId: string;
|
20387
|
+
phoneNumberId: string;
|
20388
|
+
wabaBusinessId?: string | undefined;
|
20389
|
+
clientId?: string | undefined;
|
20390
|
+
channelId?: string | undefined;
|
20391
|
+
status?: "active" | "pending" | undefined;
|
20392
|
+
apiKey?: string | undefined;
|
20393
|
+
} | undefined;
|
19502
20394
|
vonageCredentials?: {
|
19503
|
-
mobileNumber: string;
|
19504
20395
|
apiKey: string;
|
20396
|
+
mobileNumber: string;
|
19505
20397
|
apiSecret: string;
|
19506
20398
|
} | undefined;
|
19507
20399
|
lineRichMenuId?: string | null | undefined;
|
@@ -19533,9 +20425,19 @@ export declare const lineContract: {
|
|
19533
20425
|
channelSecret?: string | undefined;
|
19534
20426
|
additionalCredentials?: any;
|
19535
20427
|
senderId?: string | undefined;
|
20428
|
+
whatsapp?: {
|
20429
|
+
email: string;
|
20430
|
+
wabaExternalId: string;
|
20431
|
+
phoneNumberId: string;
|
20432
|
+
wabaBusinessId?: string | undefined;
|
20433
|
+
clientId?: string | undefined;
|
20434
|
+
channelId?: string | undefined;
|
20435
|
+
status?: "active" | "pending" | undefined;
|
20436
|
+
apiKey?: string | undefined;
|
20437
|
+
} | undefined;
|
19536
20438
|
vonageCredentials?: {
|
19537
|
-
mobileNumber: string;
|
19538
20439
|
apiKey: string;
|
20440
|
+
mobileNumber: string;
|
19539
20441
|
apiSecret: string;
|
19540
20442
|
} | undefined;
|
19541
20443
|
lineRichMenuId?: string | null | undefined;
|
@@ -19568,9 +20470,19 @@ export declare const lineContract: {
|
|
19568
20470
|
channelSecret?: string | undefined;
|
19569
20471
|
additionalCredentials?: any;
|
19570
20472
|
senderId?: string | undefined;
|
20473
|
+
whatsapp?: {
|
20474
|
+
email: string;
|
20475
|
+
wabaExternalId: string;
|
20476
|
+
phoneNumberId: string;
|
20477
|
+
wabaBusinessId?: string | undefined;
|
20478
|
+
clientId?: string | undefined;
|
20479
|
+
channelId?: string | undefined;
|
20480
|
+
status?: "active" | "pending" | undefined;
|
20481
|
+
apiKey?: string | undefined;
|
20482
|
+
} | undefined;
|
19571
20483
|
vonageCredentials?: {
|
19572
|
-
mobileNumber: string;
|
19573
20484
|
apiKey: string;
|
20485
|
+
mobileNumber: string;
|
19574
20486
|
apiSecret: string;
|
19575
20487
|
} | undefined;
|
19576
20488
|
lineRichMenuId?: string | null | undefined;
|