@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
@@ -140,17 +140,45 @@ export declare const instagramContract: {
|
|
140
140
|
channelSecret: z.ZodOptional<z.ZodString>;
|
141
141
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
142
142
|
senderId: z.ZodOptional<z.ZodString>;
|
143
|
+
whatsapp: z.ZodOptional<z.ZodObject<{
|
144
|
+
wabaBusinessId: z.ZodOptional<z.ZodString>;
|
145
|
+
wabaExternalId: z.ZodString;
|
146
|
+
phoneNumberId: z.ZodString;
|
147
|
+
email: z.ZodString;
|
148
|
+
clientId: z.ZodOptional<z.ZodString>;
|
149
|
+
channelId: z.ZodOptional<z.ZodString>;
|
150
|
+
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
151
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
152
|
+
}, "strip", z.ZodTypeAny, {
|
153
|
+
email: string;
|
154
|
+
wabaExternalId: string;
|
155
|
+
phoneNumberId: string;
|
156
|
+
wabaBusinessId?: string | undefined;
|
157
|
+
clientId?: string | undefined;
|
158
|
+
channelId?: string | undefined;
|
159
|
+
status?: "active" | "pending" | undefined;
|
160
|
+
apiKey?: string | undefined;
|
161
|
+
}, {
|
162
|
+
email: string;
|
163
|
+
wabaExternalId: string;
|
164
|
+
phoneNumberId: string;
|
165
|
+
wabaBusinessId?: string | undefined;
|
166
|
+
clientId?: string | undefined;
|
167
|
+
channelId?: string | undefined;
|
168
|
+
status?: "active" | "pending" | undefined;
|
169
|
+
apiKey?: string | undefined;
|
170
|
+
}>>;
|
143
171
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
144
172
|
mobileNumber: z.ZodString;
|
145
173
|
apiKey: z.ZodString;
|
146
174
|
apiSecret: z.ZodString;
|
147
175
|
}, "strip", z.ZodTypeAny, {
|
148
|
-
mobileNumber: string;
|
149
176
|
apiKey: string;
|
177
|
+
mobileNumber: string;
|
150
178
|
apiSecret: string;
|
151
179
|
}, {
|
152
|
-
mobileNumber: string;
|
153
180
|
apiKey: string;
|
181
|
+
mobileNumber: string;
|
154
182
|
apiSecret: string;
|
155
183
|
}>>;
|
156
184
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
@@ -162,9 +190,19 @@ export declare const instagramContract: {
|
|
162
190
|
channelSecret?: string | undefined;
|
163
191
|
additionalCredentials?: any;
|
164
192
|
senderId?: string | undefined;
|
193
|
+
whatsapp?: {
|
194
|
+
email: string;
|
195
|
+
wabaExternalId: string;
|
196
|
+
phoneNumberId: string;
|
197
|
+
wabaBusinessId?: string | undefined;
|
198
|
+
clientId?: string | undefined;
|
199
|
+
channelId?: string | undefined;
|
200
|
+
status?: "active" | "pending" | undefined;
|
201
|
+
apiKey?: string | undefined;
|
202
|
+
} | undefined;
|
165
203
|
vonageCredentials?: {
|
166
|
-
mobileNumber: string;
|
167
204
|
apiKey: string;
|
205
|
+
mobileNumber: string;
|
168
206
|
apiSecret: string;
|
169
207
|
} | undefined;
|
170
208
|
lineRichMenuId?: string | null | undefined;
|
@@ -176,9 +214,19 @@ export declare const instagramContract: {
|
|
176
214
|
channelSecret?: string | undefined;
|
177
215
|
additionalCredentials?: any;
|
178
216
|
senderId?: string | undefined;
|
217
|
+
whatsapp?: {
|
218
|
+
email: string;
|
219
|
+
wabaExternalId: string;
|
220
|
+
phoneNumberId: string;
|
221
|
+
wabaBusinessId?: string | undefined;
|
222
|
+
clientId?: string | undefined;
|
223
|
+
channelId?: string | undefined;
|
224
|
+
status?: "active" | "pending" | undefined;
|
225
|
+
apiKey?: string | undefined;
|
226
|
+
} | undefined;
|
179
227
|
vonageCredentials?: {
|
180
|
-
mobileNumber: string;
|
181
228
|
apiKey: string;
|
229
|
+
mobileNumber: string;
|
182
230
|
apiSecret: string;
|
183
231
|
} | undefined;
|
184
232
|
lineRichMenuId?: string | null | undefined;
|
@@ -220,9 +268,19 @@ export declare const instagramContract: {
|
|
220
268
|
channelSecret?: string | undefined;
|
221
269
|
additionalCredentials?: any;
|
222
270
|
senderId?: string | undefined;
|
271
|
+
whatsapp?: {
|
272
|
+
email: string;
|
273
|
+
wabaExternalId: string;
|
274
|
+
phoneNumberId: string;
|
275
|
+
wabaBusinessId?: string | undefined;
|
276
|
+
clientId?: string | undefined;
|
277
|
+
channelId?: string | undefined;
|
278
|
+
status?: "active" | "pending" | undefined;
|
279
|
+
apiKey?: string | undefined;
|
280
|
+
} | undefined;
|
223
281
|
vonageCredentials?: {
|
224
|
-
mobileNumber: string;
|
225
282
|
apiKey: string;
|
283
|
+
mobileNumber: string;
|
226
284
|
apiSecret: string;
|
227
285
|
} | undefined;
|
228
286
|
lineRichMenuId?: string | null | undefined;
|
@@ -252,9 +310,19 @@ export declare const instagramContract: {
|
|
252
310
|
channelSecret?: string | undefined;
|
253
311
|
additionalCredentials?: any;
|
254
312
|
senderId?: string | undefined;
|
313
|
+
whatsapp?: {
|
314
|
+
email: string;
|
315
|
+
wabaExternalId: string;
|
316
|
+
phoneNumberId: string;
|
317
|
+
wabaBusinessId?: string | undefined;
|
318
|
+
clientId?: string | undefined;
|
319
|
+
channelId?: string | undefined;
|
320
|
+
status?: "active" | "pending" | undefined;
|
321
|
+
apiKey?: string | undefined;
|
322
|
+
} | undefined;
|
255
323
|
vonageCredentials?: {
|
256
|
-
mobileNumber: string;
|
257
324
|
apiKey: string;
|
325
|
+
mobileNumber: string;
|
258
326
|
apiSecret: string;
|
259
327
|
} | undefined;
|
260
328
|
lineRichMenuId?: string | null | undefined;
|
@@ -288,9 +356,19 @@ export declare const instagramContract: {
|
|
288
356
|
channelSecret?: string | undefined;
|
289
357
|
additionalCredentials?: any;
|
290
358
|
senderId?: string | undefined;
|
359
|
+
whatsapp?: {
|
360
|
+
email: string;
|
361
|
+
wabaExternalId: string;
|
362
|
+
phoneNumberId: string;
|
363
|
+
wabaBusinessId?: string | undefined;
|
364
|
+
clientId?: string | undefined;
|
365
|
+
channelId?: string | undefined;
|
366
|
+
status?: "active" | "pending" | undefined;
|
367
|
+
apiKey?: string | undefined;
|
368
|
+
} | undefined;
|
291
369
|
vonageCredentials?: {
|
292
|
-
mobileNumber: string;
|
293
370
|
apiKey: string;
|
371
|
+
mobileNumber: string;
|
294
372
|
apiSecret: string;
|
295
373
|
} | undefined;
|
296
374
|
lineRichMenuId?: string | null | undefined;
|
@@ -363,9 +441,19 @@ export declare const instagramContract: {
|
|
363
441
|
channelSecret?: string | undefined;
|
364
442
|
additionalCredentials?: any;
|
365
443
|
senderId?: string | undefined;
|
444
|
+
whatsapp?: {
|
445
|
+
email: string;
|
446
|
+
wabaExternalId: string;
|
447
|
+
phoneNumberId: string;
|
448
|
+
wabaBusinessId?: string | undefined;
|
449
|
+
clientId?: string | undefined;
|
450
|
+
channelId?: string | undefined;
|
451
|
+
status?: "active" | "pending" | undefined;
|
452
|
+
apiKey?: string | undefined;
|
453
|
+
} | undefined;
|
366
454
|
vonageCredentials?: {
|
367
|
-
mobileNumber: string;
|
368
455
|
apiKey: string;
|
456
|
+
mobileNumber: string;
|
369
457
|
apiSecret: string;
|
370
458
|
} | undefined;
|
371
459
|
lineRichMenuId?: string | null | undefined;
|
@@ -430,7 +518,7 @@ export declare const instagramContract: {
|
|
430
518
|
id: z.ZodOptional<z.ZodString>;
|
431
519
|
message: z.ZodOptional<z.ZodString>;
|
432
520
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
433
|
-
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"]>;
|
521
|
+
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"]>;
|
434
522
|
readAt: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodString]>>>;
|
435
523
|
metadata: z.ZodOptional<z.ZodAny>;
|
436
524
|
platformId: z.ZodOptional<z.ZodString>;
|
@@ -486,7 +574,7 @@ export declare const instagramContract: {
|
|
486
574
|
editedAt: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodString]>>>;
|
487
575
|
label: z.ZodOptional<z.ZodString>;
|
488
576
|
}, "strip", z.ZodTypeAny, {
|
489
|
-
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";
|
577
|
+
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";
|
490
578
|
direction: "incoming" | "outgoing" | "system";
|
491
579
|
id?: string | undefined;
|
492
580
|
message?: string | undefined;
|
@@ -521,7 +609,7 @@ export declare const instagramContract: {
|
|
521
609
|
editedAt?: string | Date | null | undefined;
|
522
610
|
label?: string | undefined;
|
523
611
|
}, {
|
524
|
-
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";
|
612
|
+
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";
|
525
613
|
direction: "incoming" | "outgoing" | "system";
|
526
614
|
id?: string | undefined;
|
527
615
|
message?: string | undefined;
|
@@ -558,7 +646,7 @@ export declare const instagramContract: {
|
|
558
646
|
}>;
|
559
647
|
}, "strip", z.ZodTypeAny, {
|
560
648
|
message: {
|
561
|
-
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";
|
649
|
+
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";
|
562
650
|
direction: "incoming" | "outgoing" | "system";
|
563
651
|
id?: string | undefined;
|
564
652
|
message?: string | undefined;
|
@@ -606,9 +694,19 @@ export declare const instagramContract: {
|
|
606
694
|
channelSecret?: string | undefined;
|
607
695
|
additionalCredentials?: any;
|
608
696
|
senderId?: string | undefined;
|
697
|
+
whatsapp?: {
|
698
|
+
email: string;
|
699
|
+
wabaExternalId: string;
|
700
|
+
phoneNumberId: string;
|
701
|
+
wabaBusinessId?: string | undefined;
|
702
|
+
clientId?: string | undefined;
|
703
|
+
channelId?: string | undefined;
|
704
|
+
status?: "active" | "pending" | undefined;
|
705
|
+
apiKey?: string | undefined;
|
706
|
+
} | undefined;
|
609
707
|
vonageCredentials?: {
|
610
|
-
mobileNumber: string;
|
611
708
|
apiKey: string;
|
709
|
+
mobileNumber: string;
|
612
710
|
apiSecret: string;
|
613
711
|
} | undefined;
|
614
712
|
lineRichMenuId?: string | null | undefined;
|
@@ -672,7 +770,7 @@ export declare const instagramContract: {
|
|
672
770
|
isBot: boolean | null;
|
673
771
|
}, {
|
674
772
|
message: {
|
675
|
-
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";
|
773
|
+
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";
|
676
774
|
direction: "incoming" | "outgoing" | "system";
|
677
775
|
id?: string | undefined;
|
678
776
|
message?: string | undefined;
|
@@ -720,9 +818,19 @@ export declare const instagramContract: {
|
|
720
818
|
channelSecret?: string | undefined;
|
721
819
|
additionalCredentials?: any;
|
722
820
|
senderId?: string | undefined;
|
821
|
+
whatsapp?: {
|
822
|
+
email: string;
|
823
|
+
wabaExternalId: string;
|
824
|
+
phoneNumberId: string;
|
825
|
+
wabaBusinessId?: string | undefined;
|
826
|
+
clientId?: string | undefined;
|
827
|
+
channelId?: string | undefined;
|
828
|
+
status?: "active" | "pending" | undefined;
|
829
|
+
apiKey?: string | undefined;
|
830
|
+
} | undefined;
|
723
831
|
vonageCredentials?: {
|
724
|
-
mobileNumber: string;
|
725
832
|
apiKey: string;
|
833
|
+
mobileNumber: string;
|
726
834
|
apiSecret: string;
|
727
835
|
} | undefined;
|
728
836
|
lineRichMenuId?: string | null | undefined;
|
@@ -790,7 +898,7 @@ export declare const instagramContract: {
|
|
790
898
|
200: z.ZodObject<{
|
791
899
|
requestId: z.ZodString;
|
792
900
|
data: z.ZodObject<{
|
793
|
-
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"]>;
|
901
|
+
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"]>;
|
794
902
|
message: z.ZodString;
|
795
903
|
id: z.ZodString;
|
796
904
|
url: z.ZodString;
|
@@ -2729,17 +2837,45 @@ export declare const instagramContract: {
|
|
2729
2837
|
channelSecret: z.ZodOptional<z.ZodString>;
|
2730
2838
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
2731
2839
|
senderId: z.ZodOptional<z.ZodString>;
|
2840
|
+
whatsapp: z.ZodOptional<z.ZodObject<{
|
2841
|
+
wabaBusinessId: z.ZodOptional<z.ZodString>;
|
2842
|
+
wabaExternalId: z.ZodString;
|
2843
|
+
phoneNumberId: z.ZodString;
|
2844
|
+
email: z.ZodString;
|
2845
|
+
clientId: z.ZodOptional<z.ZodString>;
|
2846
|
+
channelId: z.ZodOptional<z.ZodString>;
|
2847
|
+
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
2848
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
2849
|
+
}, "strip", z.ZodTypeAny, {
|
2850
|
+
email: string;
|
2851
|
+
wabaExternalId: string;
|
2852
|
+
phoneNumberId: string;
|
2853
|
+
wabaBusinessId?: string | undefined;
|
2854
|
+
clientId?: string | undefined;
|
2855
|
+
channelId?: string | undefined;
|
2856
|
+
status?: "active" | "pending" | undefined;
|
2857
|
+
apiKey?: string | undefined;
|
2858
|
+
}, {
|
2859
|
+
email: string;
|
2860
|
+
wabaExternalId: string;
|
2861
|
+
phoneNumberId: string;
|
2862
|
+
wabaBusinessId?: string | undefined;
|
2863
|
+
clientId?: string | undefined;
|
2864
|
+
channelId?: string | undefined;
|
2865
|
+
status?: "active" | "pending" | undefined;
|
2866
|
+
apiKey?: string | undefined;
|
2867
|
+
}>>;
|
2732
2868
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
2733
2869
|
mobileNumber: z.ZodString;
|
2734
2870
|
apiKey: z.ZodString;
|
2735
2871
|
apiSecret: z.ZodString;
|
2736
2872
|
}, "strip", z.ZodTypeAny, {
|
2737
|
-
mobileNumber: string;
|
2738
2873
|
apiKey: string;
|
2874
|
+
mobileNumber: string;
|
2739
2875
|
apiSecret: string;
|
2740
2876
|
}, {
|
2741
|
-
mobileNumber: string;
|
2742
2877
|
apiKey: string;
|
2878
|
+
mobileNumber: string;
|
2743
2879
|
apiSecret: string;
|
2744
2880
|
}>>;
|
2745
2881
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
@@ -2751,9 +2887,19 @@ export declare const instagramContract: {
|
|
2751
2887
|
channelSecret?: string | undefined;
|
2752
2888
|
additionalCredentials?: any;
|
2753
2889
|
senderId?: string | undefined;
|
2890
|
+
whatsapp?: {
|
2891
|
+
email: string;
|
2892
|
+
wabaExternalId: string;
|
2893
|
+
phoneNumberId: string;
|
2894
|
+
wabaBusinessId?: string | undefined;
|
2895
|
+
clientId?: string | undefined;
|
2896
|
+
channelId?: string | undefined;
|
2897
|
+
status?: "active" | "pending" | undefined;
|
2898
|
+
apiKey?: string | undefined;
|
2899
|
+
} | undefined;
|
2754
2900
|
vonageCredentials?: {
|
2755
|
-
mobileNumber: string;
|
2756
2901
|
apiKey: string;
|
2902
|
+
mobileNumber: string;
|
2757
2903
|
apiSecret: string;
|
2758
2904
|
} | undefined;
|
2759
2905
|
lineRichMenuId?: string | null | undefined;
|
@@ -2765,9 +2911,19 @@ export declare const instagramContract: {
|
|
2765
2911
|
channelSecret?: string | undefined;
|
2766
2912
|
additionalCredentials?: any;
|
2767
2913
|
senderId?: string | undefined;
|
2914
|
+
whatsapp?: {
|
2915
|
+
email: string;
|
2916
|
+
wabaExternalId: string;
|
2917
|
+
phoneNumberId: string;
|
2918
|
+
wabaBusinessId?: string | undefined;
|
2919
|
+
clientId?: string | undefined;
|
2920
|
+
channelId?: string | undefined;
|
2921
|
+
status?: "active" | "pending" | undefined;
|
2922
|
+
apiKey?: string | undefined;
|
2923
|
+
} | undefined;
|
2768
2924
|
vonageCredentials?: {
|
2769
|
-
mobileNumber: string;
|
2770
2925
|
apiKey: string;
|
2926
|
+
mobileNumber: string;
|
2771
2927
|
apiSecret: string;
|
2772
2928
|
} | undefined;
|
2773
2929
|
lineRichMenuId?: string | null | undefined;
|
@@ -3013,9 +3169,19 @@ export declare const instagramContract: {
|
|
3013
3169
|
channelSecret?: string | undefined;
|
3014
3170
|
additionalCredentials?: any;
|
3015
3171
|
senderId?: string | undefined;
|
3172
|
+
whatsapp?: {
|
3173
|
+
email: string;
|
3174
|
+
wabaExternalId: string;
|
3175
|
+
phoneNumberId: string;
|
3176
|
+
wabaBusinessId?: string | undefined;
|
3177
|
+
clientId?: string | undefined;
|
3178
|
+
channelId?: string | undefined;
|
3179
|
+
status?: "active" | "pending" | undefined;
|
3180
|
+
apiKey?: string | undefined;
|
3181
|
+
} | undefined;
|
3016
3182
|
vonageCredentials?: {
|
3017
|
-
mobileNumber: string;
|
3018
3183
|
apiKey: string;
|
3184
|
+
mobileNumber: string;
|
3019
3185
|
apiSecret: string;
|
3020
3186
|
} | undefined;
|
3021
3187
|
lineRichMenuId?: string | null | undefined;
|
@@ -3092,9 +3258,19 @@ export declare const instagramContract: {
|
|
3092
3258
|
channelSecret?: string | undefined;
|
3093
3259
|
additionalCredentials?: any;
|
3094
3260
|
senderId?: string | undefined;
|
3261
|
+
whatsapp?: {
|
3262
|
+
email: string;
|
3263
|
+
wabaExternalId: string;
|
3264
|
+
phoneNumberId: string;
|
3265
|
+
wabaBusinessId?: string | undefined;
|
3266
|
+
clientId?: string | undefined;
|
3267
|
+
channelId?: string | undefined;
|
3268
|
+
status?: "active" | "pending" | undefined;
|
3269
|
+
apiKey?: string | undefined;
|
3270
|
+
} | undefined;
|
3095
3271
|
vonageCredentials?: {
|
3096
|
-
mobileNumber: string;
|
3097
3272
|
apiKey: string;
|
3273
|
+
mobileNumber: string;
|
3098
3274
|
apiSecret: string;
|
3099
3275
|
} | undefined;
|
3100
3276
|
lineRichMenuId?: string | null | undefined;
|
@@ -3619,9 +3795,19 @@ export declare const instagramContract: {
|
|
3619
3795
|
channelSecret?: string | undefined;
|
3620
3796
|
additionalCredentials?: any;
|
3621
3797
|
senderId?: string | undefined;
|
3798
|
+
whatsapp?: {
|
3799
|
+
email: string;
|
3800
|
+
wabaExternalId: string;
|
3801
|
+
phoneNumberId: string;
|
3802
|
+
wabaBusinessId?: string | undefined;
|
3803
|
+
clientId?: string | undefined;
|
3804
|
+
channelId?: string | undefined;
|
3805
|
+
status?: "active" | "pending" | undefined;
|
3806
|
+
apiKey?: string | undefined;
|
3807
|
+
} | undefined;
|
3622
3808
|
vonageCredentials?: {
|
3623
|
-
mobileNumber: string;
|
3624
3809
|
apiKey: string;
|
3810
|
+
mobileNumber: string;
|
3625
3811
|
apiSecret: string;
|
3626
3812
|
} | undefined;
|
3627
3813
|
lineRichMenuId?: string | null | undefined;
|
@@ -4009,9 +4195,19 @@ export declare const instagramContract: {
|
|
4009
4195
|
channelSecret?: string | undefined;
|
4010
4196
|
additionalCredentials?: any;
|
4011
4197
|
senderId?: string | undefined;
|
4198
|
+
whatsapp?: {
|
4199
|
+
email: string;
|
4200
|
+
wabaExternalId: string;
|
4201
|
+
phoneNumberId: string;
|
4202
|
+
wabaBusinessId?: string | undefined;
|
4203
|
+
clientId?: string | undefined;
|
4204
|
+
channelId?: string | undefined;
|
4205
|
+
status?: "active" | "pending" | undefined;
|
4206
|
+
apiKey?: string | undefined;
|
4207
|
+
} | undefined;
|
4012
4208
|
vonageCredentials?: {
|
4013
|
-
mobileNumber: string;
|
4014
4209
|
apiKey: string;
|
4210
|
+
mobileNumber: string;
|
4015
4211
|
apiSecret: string;
|
4016
4212
|
} | undefined;
|
4017
4213
|
lineRichMenuId?: string | null | undefined;
|
@@ -4425,7 +4621,7 @@ export declare const instagramContract: {
|
|
4425
4621
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
4426
4622
|
message: z.ZodString;
|
4427
4623
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
4428
|
-
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"]>;
|
4624
|
+
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"]>;
|
4429
4625
|
readAt: z.ZodDate;
|
4430
4626
|
metadata: z.ZodAny;
|
4431
4627
|
platformId: z.ZodString;
|
@@ -5083,7 +5279,7 @@ export declare const instagramContract: {
|
|
5083
5279
|
};
|
5084
5280
|
}>;
|
5085
5281
|
}, "strip", z.ZodTypeAny, {
|
5086
|
-
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";
|
5282
|
+
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";
|
5087
5283
|
message: string;
|
5088
5284
|
id: string;
|
5089
5285
|
url: string;
|
@@ -5245,7 +5441,7 @@ export declare const instagramContract: {
|
|
5245
5441
|
metadata?: any;
|
5246
5442
|
template?: any;
|
5247
5443
|
}, {
|
5248
|
-
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";
|
5444
|
+
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";
|
5249
5445
|
message: string;
|
5250
5446
|
id: string;
|
5251
5447
|
url: string;
|
@@ -5619,7 +5815,7 @@ export declare const instagramContract: {
|
|
5619
5815
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
5620
5816
|
message: z.ZodString;
|
5621
5817
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
5622
|
-
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"]>;
|
5818
|
+
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"]>;
|
5623
5819
|
readAt: z.ZodDate;
|
5624
5820
|
metadata: z.ZodAny;
|
5625
5821
|
platformId: z.ZodString;
|
@@ -7115,17 +7311,45 @@ export declare const instagramContract: {
|
|
7115
7311
|
channelSecret: z.ZodOptional<z.ZodString>;
|
7116
7312
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
7117
7313
|
senderId: z.ZodOptional<z.ZodString>;
|
7314
|
+
whatsapp: z.ZodOptional<z.ZodObject<{
|
7315
|
+
wabaBusinessId: z.ZodOptional<z.ZodString>;
|
7316
|
+
wabaExternalId: z.ZodString;
|
7317
|
+
phoneNumberId: z.ZodString;
|
7318
|
+
email: z.ZodString;
|
7319
|
+
clientId: z.ZodOptional<z.ZodString>;
|
7320
|
+
channelId: z.ZodOptional<z.ZodString>;
|
7321
|
+
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
7322
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
7323
|
+
}, "strip", z.ZodTypeAny, {
|
7324
|
+
email: string;
|
7325
|
+
wabaExternalId: string;
|
7326
|
+
phoneNumberId: string;
|
7327
|
+
wabaBusinessId?: string | undefined;
|
7328
|
+
clientId?: string | undefined;
|
7329
|
+
channelId?: string | undefined;
|
7330
|
+
status?: "active" | "pending" | undefined;
|
7331
|
+
apiKey?: string | undefined;
|
7332
|
+
}, {
|
7333
|
+
email: string;
|
7334
|
+
wabaExternalId: string;
|
7335
|
+
phoneNumberId: string;
|
7336
|
+
wabaBusinessId?: string | undefined;
|
7337
|
+
clientId?: string | undefined;
|
7338
|
+
channelId?: string | undefined;
|
7339
|
+
status?: "active" | "pending" | undefined;
|
7340
|
+
apiKey?: string | undefined;
|
7341
|
+
}>>;
|
7118
7342
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
7119
7343
|
mobileNumber: z.ZodString;
|
7120
7344
|
apiKey: z.ZodString;
|
7121
7345
|
apiSecret: z.ZodString;
|
7122
7346
|
}, "strip", z.ZodTypeAny, {
|
7123
|
-
mobileNumber: string;
|
7124
7347
|
apiKey: string;
|
7348
|
+
mobileNumber: string;
|
7125
7349
|
apiSecret: string;
|
7126
7350
|
}, {
|
7127
|
-
mobileNumber: string;
|
7128
7351
|
apiKey: string;
|
7352
|
+
mobileNumber: string;
|
7129
7353
|
apiSecret: string;
|
7130
7354
|
}>>;
|
7131
7355
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
@@ -7137,9 +7361,19 @@ export declare const instagramContract: {
|
|
7137
7361
|
channelSecret?: string | undefined;
|
7138
7362
|
additionalCredentials?: any;
|
7139
7363
|
senderId?: string | undefined;
|
7364
|
+
whatsapp?: {
|
7365
|
+
email: string;
|
7366
|
+
wabaExternalId: string;
|
7367
|
+
phoneNumberId: string;
|
7368
|
+
wabaBusinessId?: string | undefined;
|
7369
|
+
clientId?: string | undefined;
|
7370
|
+
channelId?: string | undefined;
|
7371
|
+
status?: "active" | "pending" | undefined;
|
7372
|
+
apiKey?: string | undefined;
|
7373
|
+
} | undefined;
|
7140
7374
|
vonageCredentials?: {
|
7141
|
-
mobileNumber: string;
|
7142
7375
|
apiKey: string;
|
7376
|
+
mobileNumber: string;
|
7143
7377
|
apiSecret: string;
|
7144
7378
|
} | undefined;
|
7145
7379
|
lineRichMenuId?: string | null | undefined;
|
@@ -7151,9 +7385,19 @@ export declare const instagramContract: {
|
|
7151
7385
|
channelSecret?: string | undefined;
|
7152
7386
|
additionalCredentials?: any;
|
7153
7387
|
senderId?: string | undefined;
|
7388
|
+
whatsapp?: {
|
7389
|
+
email: string;
|
7390
|
+
wabaExternalId: string;
|
7391
|
+
phoneNumberId: string;
|
7392
|
+
wabaBusinessId?: string | undefined;
|
7393
|
+
clientId?: string | undefined;
|
7394
|
+
channelId?: string | undefined;
|
7395
|
+
status?: "active" | "pending" | undefined;
|
7396
|
+
apiKey?: string | undefined;
|
7397
|
+
} | undefined;
|
7154
7398
|
vonageCredentials?: {
|
7155
|
-
mobileNumber: string;
|
7156
7399
|
apiKey: string;
|
7400
|
+
mobileNumber: string;
|
7157
7401
|
apiSecret: string;
|
7158
7402
|
} | undefined;
|
7159
7403
|
lineRichMenuId?: string | null | undefined;
|
@@ -7399,9 +7643,19 @@ export declare const instagramContract: {
|
|
7399
7643
|
channelSecret?: string | undefined;
|
7400
7644
|
additionalCredentials?: any;
|
7401
7645
|
senderId?: string | undefined;
|
7646
|
+
whatsapp?: {
|
7647
|
+
email: string;
|
7648
|
+
wabaExternalId: string;
|
7649
|
+
phoneNumberId: string;
|
7650
|
+
wabaBusinessId?: string | undefined;
|
7651
|
+
clientId?: string | undefined;
|
7652
|
+
channelId?: string | undefined;
|
7653
|
+
status?: "active" | "pending" | undefined;
|
7654
|
+
apiKey?: string | undefined;
|
7655
|
+
} | undefined;
|
7402
7656
|
vonageCredentials?: {
|
7403
|
-
mobileNumber: string;
|
7404
7657
|
apiKey: string;
|
7658
|
+
mobileNumber: string;
|
7405
7659
|
apiSecret: string;
|
7406
7660
|
} | undefined;
|
7407
7661
|
lineRichMenuId?: string | null | undefined;
|
@@ -7478,9 +7732,19 @@ export declare const instagramContract: {
|
|
7478
7732
|
channelSecret?: string | undefined;
|
7479
7733
|
additionalCredentials?: any;
|
7480
7734
|
senderId?: string | undefined;
|
7735
|
+
whatsapp?: {
|
7736
|
+
email: string;
|
7737
|
+
wabaExternalId: string;
|
7738
|
+
phoneNumberId: string;
|
7739
|
+
wabaBusinessId?: string | undefined;
|
7740
|
+
clientId?: string | undefined;
|
7741
|
+
channelId?: string | undefined;
|
7742
|
+
status?: "active" | "pending" | undefined;
|
7743
|
+
apiKey?: string | undefined;
|
7744
|
+
} | undefined;
|
7481
7745
|
vonageCredentials?: {
|
7482
|
-
mobileNumber: string;
|
7483
7746
|
apiKey: string;
|
7747
|
+
mobileNumber: string;
|
7484
7748
|
apiSecret: string;
|
7485
7749
|
} | undefined;
|
7486
7750
|
lineRichMenuId?: string | null | undefined;
|
@@ -8005,9 +8269,19 @@ export declare const instagramContract: {
|
|
8005
8269
|
channelSecret?: string | undefined;
|
8006
8270
|
additionalCredentials?: any;
|
8007
8271
|
senderId?: string | undefined;
|
8272
|
+
whatsapp?: {
|
8273
|
+
email: string;
|
8274
|
+
wabaExternalId: string;
|
8275
|
+
phoneNumberId: string;
|
8276
|
+
wabaBusinessId?: string | undefined;
|
8277
|
+
clientId?: string | undefined;
|
8278
|
+
channelId?: string | undefined;
|
8279
|
+
status?: "active" | "pending" | undefined;
|
8280
|
+
apiKey?: string | undefined;
|
8281
|
+
} | undefined;
|
8008
8282
|
vonageCredentials?: {
|
8009
|
-
mobileNumber: string;
|
8010
8283
|
apiKey: string;
|
8284
|
+
mobileNumber: string;
|
8011
8285
|
apiSecret: string;
|
8012
8286
|
} | undefined;
|
8013
8287
|
lineRichMenuId?: string | null | undefined;
|
@@ -8395,9 +8669,19 @@ export declare const instagramContract: {
|
|
8395
8669
|
channelSecret?: string | undefined;
|
8396
8670
|
additionalCredentials?: any;
|
8397
8671
|
senderId?: string | undefined;
|
8672
|
+
whatsapp?: {
|
8673
|
+
email: string;
|
8674
|
+
wabaExternalId: string;
|
8675
|
+
phoneNumberId: string;
|
8676
|
+
wabaBusinessId?: string | undefined;
|
8677
|
+
clientId?: string | undefined;
|
8678
|
+
channelId?: string | undefined;
|
8679
|
+
status?: "active" | "pending" | undefined;
|
8680
|
+
apiKey?: string | undefined;
|
8681
|
+
} | undefined;
|
8398
8682
|
vonageCredentials?: {
|
8399
|
-
mobileNumber: string;
|
8400
8683
|
apiKey: string;
|
8684
|
+
mobileNumber: string;
|
8401
8685
|
apiSecret: string;
|
8402
8686
|
} | undefined;
|
8403
8687
|
lineRichMenuId?: string | null | undefined;
|
@@ -8814,7 +9098,7 @@ export declare const instagramContract: {
|
|
8814
9098
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
8815
9099
|
message: z.ZodString;
|
8816
9100
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
8817
|
-
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"]>;
|
9101
|
+
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"]>;
|
8818
9102
|
readAt: z.ZodDate;
|
8819
9103
|
metadata: z.ZodAny;
|
8820
9104
|
platformId: z.ZodString;
|
@@ -9472,7 +9756,7 @@ export declare const instagramContract: {
|
|
9472
9756
|
};
|
9473
9757
|
}>;
|
9474
9758
|
}, "strip", z.ZodTypeAny, {
|
9475
|
-
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";
|
9759
|
+
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";
|
9476
9760
|
message: string;
|
9477
9761
|
id: string;
|
9478
9762
|
url: string;
|
@@ -9634,7 +9918,7 @@ export declare const instagramContract: {
|
|
9634
9918
|
metadata?: any;
|
9635
9919
|
template?: any;
|
9636
9920
|
}, {
|
9637
|
-
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";
|
9921
|
+
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";
|
9638
9922
|
message: string;
|
9639
9923
|
id: string;
|
9640
9924
|
url: string;
|
@@ -10436,7 +10720,7 @@ export declare const instagramContract: {
|
|
10436
10720
|
editedMessageid: z.ZodString;
|
10437
10721
|
label: z.ZodOptional<z.ZodString>;
|
10438
10722
|
}, "strip", z.ZodTypeAny, {
|
10439
|
-
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";
|
10723
|
+
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";
|
10440
10724
|
message: string;
|
10441
10725
|
id: string;
|
10442
10726
|
url: string;
|
@@ -10558,9 +10842,19 @@ export declare const instagramContract: {
|
|
10558
10842
|
channelSecret?: string | undefined;
|
10559
10843
|
additionalCredentials?: any;
|
10560
10844
|
senderId?: string | undefined;
|
10845
|
+
whatsapp?: {
|
10846
|
+
email: string;
|
10847
|
+
wabaExternalId: string;
|
10848
|
+
phoneNumberId: string;
|
10849
|
+
wabaBusinessId?: string | undefined;
|
10850
|
+
clientId?: string | undefined;
|
10851
|
+
channelId?: string | undefined;
|
10852
|
+
status?: "active" | "pending" | undefined;
|
10853
|
+
apiKey?: string | undefined;
|
10854
|
+
} | undefined;
|
10561
10855
|
vonageCredentials?: {
|
10562
|
-
mobileNumber: string;
|
10563
10856
|
apiKey: string;
|
10857
|
+
mobileNumber: string;
|
10564
10858
|
apiSecret: string;
|
10565
10859
|
} | undefined;
|
10566
10860
|
lineRichMenuId?: string | null | undefined;
|
@@ -10952,7 +11246,7 @@ export declare const instagramContract: {
|
|
10952
11246
|
previewUrl: string;
|
10953
11247
|
imageSetId: string;
|
10954
11248
|
repliedMessage: {
|
10955
|
-
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";
|
11249
|
+
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";
|
10956
11250
|
message: string;
|
10957
11251
|
id: string;
|
10958
11252
|
url: string;
|
@@ -11163,7 +11457,7 @@ export declare const instagramContract: {
|
|
11163
11457
|
template?: any;
|
11164
11458
|
label?: string | undefined;
|
11165
11459
|
}, {
|
11166
|
-
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";
|
11460
|
+
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";
|
11167
11461
|
message: string;
|
11168
11462
|
id: string;
|
11169
11463
|
url: string;
|
@@ -11285,9 +11579,19 @@ export declare const instagramContract: {
|
|
11285
11579
|
channelSecret?: string | undefined;
|
11286
11580
|
additionalCredentials?: any;
|
11287
11581
|
senderId?: string | undefined;
|
11582
|
+
whatsapp?: {
|
11583
|
+
email: string;
|
11584
|
+
wabaExternalId: string;
|
11585
|
+
phoneNumberId: string;
|
11586
|
+
wabaBusinessId?: string | undefined;
|
11587
|
+
clientId?: string | undefined;
|
11588
|
+
channelId?: string | undefined;
|
11589
|
+
status?: "active" | "pending" | undefined;
|
11590
|
+
apiKey?: string | undefined;
|
11591
|
+
} | undefined;
|
11288
11592
|
vonageCredentials?: {
|
11289
|
-
mobileNumber: string;
|
11290
11593
|
apiKey: string;
|
11594
|
+
mobileNumber: string;
|
11291
11595
|
apiSecret: string;
|
11292
11596
|
} | undefined;
|
11293
11597
|
lineRichMenuId?: string | null | undefined;
|
@@ -11679,7 +11983,7 @@ export declare const instagramContract: {
|
|
11679
11983
|
previewUrl: string;
|
11680
11984
|
imageSetId: string;
|
11681
11985
|
repliedMessage: {
|
11682
|
-
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";
|
11986
|
+
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";
|
11683
11987
|
message: string;
|
11684
11988
|
id: string;
|
11685
11989
|
url: string;
|
@@ -11891,7 +12195,7 @@ export declare const instagramContract: {
|
|
11891
12195
|
label?: string | undefined;
|
11892
12196
|
}>>>;
|
11893
12197
|
}, "strip", z.ZodTypeAny, {
|
11894
|
-
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";
|
12198
|
+
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";
|
11895
12199
|
message: string;
|
11896
12200
|
id: string;
|
11897
12201
|
url: string;
|
@@ -12013,9 +12317,19 @@ export declare const instagramContract: {
|
|
12013
12317
|
channelSecret?: string | undefined;
|
12014
12318
|
additionalCredentials?: any;
|
12015
12319
|
senderId?: string | undefined;
|
12320
|
+
whatsapp?: {
|
12321
|
+
email: string;
|
12322
|
+
wabaExternalId: string;
|
12323
|
+
phoneNumberId: string;
|
12324
|
+
wabaBusinessId?: string | undefined;
|
12325
|
+
clientId?: string | undefined;
|
12326
|
+
channelId?: string | undefined;
|
12327
|
+
status?: "active" | "pending" | undefined;
|
12328
|
+
apiKey?: string | undefined;
|
12329
|
+
} | undefined;
|
12016
12330
|
vonageCredentials?: {
|
12017
|
-
mobileNumber: string;
|
12018
12331
|
apiKey: string;
|
12332
|
+
mobileNumber: string;
|
12019
12333
|
apiSecret: string;
|
12020
12334
|
} | undefined;
|
12021
12335
|
lineRichMenuId?: string | null | undefined;
|
@@ -12407,7 +12721,7 @@ export declare const instagramContract: {
|
|
12407
12721
|
previewUrl: string;
|
12408
12722
|
imageSetId: string;
|
12409
12723
|
repliedMessage: {
|
12410
|
-
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";
|
12724
|
+
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";
|
12411
12725
|
message: string;
|
12412
12726
|
id: string;
|
12413
12727
|
url: string;
|
@@ -12618,7 +12932,7 @@ export declare const instagramContract: {
|
|
12618
12932
|
template?: any;
|
12619
12933
|
metadata?: any;
|
12620
12934
|
fromMessage?: {
|
12621
|
-
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";
|
12935
|
+
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";
|
12622
12936
|
message: string;
|
12623
12937
|
id: string;
|
12624
12938
|
url: string;
|
@@ -12740,9 +13054,19 @@ export declare const instagramContract: {
|
|
12740
13054
|
channelSecret?: string | undefined;
|
12741
13055
|
additionalCredentials?: any;
|
12742
13056
|
senderId?: string | undefined;
|
13057
|
+
whatsapp?: {
|
13058
|
+
email: string;
|
13059
|
+
wabaExternalId: string;
|
13060
|
+
phoneNumberId: string;
|
13061
|
+
wabaBusinessId?: string | undefined;
|
13062
|
+
clientId?: string | undefined;
|
13063
|
+
channelId?: string | undefined;
|
13064
|
+
status?: "active" | "pending" | undefined;
|
13065
|
+
apiKey?: string | undefined;
|
13066
|
+
} | undefined;
|
12743
13067
|
vonageCredentials?: {
|
12744
|
-
mobileNumber: string;
|
12745
13068
|
apiKey: string;
|
13069
|
+
mobileNumber: string;
|
12746
13070
|
apiSecret: string;
|
12747
13071
|
} | undefined;
|
12748
13072
|
lineRichMenuId?: string | null | undefined;
|
@@ -13134,7 +13458,7 @@ export declare const instagramContract: {
|
|
13134
13458
|
previewUrl: string;
|
13135
13459
|
imageSetId: string;
|
13136
13460
|
repliedMessage: {
|
13137
|
-
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";
|
13461
|
+
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";
|
13138
13462
|
message: string;
|
13139
13463
|
id: string;
|
13140
13464
|
url: string;
|
@@ -13346,7 +13670,7 @@ export declare const instagramContract: {
|
|
13346
13670
|
label?: string | undefined;
|
13347
13671
|
} | null | undefined;
|
13348
13672
|
}, {
|
13349
|
-
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";
|
13673
|
+
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";
|
13350
13674
|
message: string;
|
13351
13675
|
id: string;
|
13352
13676
|
url: string;
|
@@ -13468,9 +13792,19 @@ export declare const instagramContract: {
|
|
13468
13792
|
channelSecret?: string | undefined;
|
13469
13793
|
additionalCredentials?: any;
|
13470
13794
|
senderId?: string | undefined;
|
13795
|
+
whatsapp?: {
|
13796
|
+
email: string;
|
13797
|
+
wabaExternalId: string;
|
13798
|
+
phoneNumberId: string;
|
13799
|
+
wabaBusinessId?: string | undefined;
|
13800
|
+
clientId?: string | undefined;
|
13801
|
+
channelId?: string | undefined;
|
13802
|
+
status?: "active" | "pending" | undefined;
|
13803
|
+
apiKey?: string | undefined;
|
13804
|
+
} | undefined;
|
13471
13805
|
vonageCredentials?: {
|
13472
|
-
mobileNumber: string;
|
13473
13806
|
apiKey: string;
|
13807
|
+
mobileNumber: string;
|
13474
13808
|
apiSecret: string;
|
13475
13809
|
} | undefined;
|
13476
13810
|
lineRichMenuId?: string | null | undefined;
|
@@ -13862,7 +14196,7 @@ export declare const instagramContract: {
|
|
13862
14196
|
previewUrl: string;
|
13863
14197
|
imageSetId: string;
|
13864
14198
|
repliedMessage: {
|
13865
|
-
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";
|
14199
|
+
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";
|
13866
14200
|
message: string;
|
13867
14201
|
id: string;
|
13868
14202
|
url: string;
|
@@ -14073,7 +14407,7 @@ export declare const instagramContract: {
|
|
14073
14407
|
template?: any;
|
14074
14408
|
metadata?: any;
|
14075
14409
|
fromMessage?: {
|
14076
|
-
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";
|
14410
|
+
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";
|
14077
14411
|
message: string;
|
14078
14412
|
id: string;
|
14079
14413
|
url: string;
|
@@ -14195,9 +14529,19 @@ export declare const instagramContract: {
|
|
14195
14529
|
channelSecret?: string | undefined;
|
14196
14530
|
additionalCredentials?: any;
|
14197
14531
|
senderId?: string | undefined;
|
14532
|
+
whatsapp?: {
|
14533
|
+
email: string;
|
14534
|
+
wabaExternalId: string;
|
14535
|
+
phoneNumberId: string;
|
14536
|
+
wabaBusinessId?: string | undefined;
|
14537
|
+
clientId?: string | undefined;
|
14538
|
+
channelId?: string | undefined;
|
14539
|
+
status?: "active" | "pending" | undefined;
|
14540
|
+
apiKey?: string | undefined;
|
14541
|
+
} | undefined;
|
14198
14542
|
vonageCredentials?: {
|
14199
|
-
mobileNumber: string;
|
14200
14543
|
apiKey: string;
|
14544
|
+
mobileNumber: string;
|
14201
14545
|
apiSecret: string;
|
14202
14546
|
} | undefined;
|
14203
14547
|
lineRichMenuId?: string | null | undefined;
|
@@ -14589,7 +14933,7 @@ export declare const instagramContract: {
|
|
14589
14933
|
previewUrl: string;
|
14590
14934
|
imageSetId: string;
|
14591
14935
|
repliedMessage: {
|
14592
|
-
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";
|
14936
|
+
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";
|
14593
14937
|
message: string;
|
14594
14938
|
id: string;
|
14595
14939
|
url: string;
|
@@ -14803,7 +15147,7 @@ export declare const instagramContract: {
|
|
14803
15147
|
}>;
|
14804
15148
|
}, "strip", z.ZodTypeAny, {
|
14805
15149
|
data: {
|
14806
|
-
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";
|
15150
|
+
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";
|
14807
15151
|
message: string;
|
14808
15152
|
id: string;
|
14809
15153
|
url: string;
|
@@ -14925,9 +15269,19 @@ export declare const instagramContract: {
|
|
14925
15269
|
channelSecret?: string | undefined;
|
14926
15270
|
additionalCredentials?: any;
|
14927
15271
|
senderId?: string | undefined;
|
15272
|
+
whatsapp?: {
|
15273
|
+
email: string;
|
15274
|
+
wabaExternalId: string;
|
15275
|
+
phoneNumberId: string;
|
15276
|
+
wabaBusinessId?: string | undefined;
|
15277
|
+
clientId?: string | undefined;
|
15278
|
+
channelId?: string | undefined;
|
15279
|
+
status?: "active" | "pending" | undefined;
|
15280
|
+
apiKey?: string | undefined;
|
15281
|
+
} | undefined;
|
14928
15282
|
vonageCredentials?: {
|
14929
|
-
mobileNumber: string;
|
14930
15283
|
apiKey: string;
|
15284
|
+
mobileNumber: string;
|
14931
15285
|
apiSecret: string;
|
14932
15286
|
} | undefined;
|
14933
15287
|
lineRichMenuId?: string | null | undefined;
|
@@ -15319,7 +15673,7 @@ export declare const instagramContract: {
|
|
15319
15673
|
previewUrl: string;
|
15320
15674
|
imageSetId: string;
|
15321
15675
|
repliedMessage: {
|
15322
|
-
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";
|
15676
|
+
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";
|
15323
15677
|
message: string;
|
15324
15678
|
id: string;
|
15325
15679
|
url: string;
|
@@ -15530,7 +15884,7 @@ export declare const instagramContract: {
|
|
15530
15884
|
template?: any;
|
15531
15885
|
metadata?: any;
|
15532
15886
|
fromMessage?: {
|
15533
|
-
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";
|
15887
|
+
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";
|
15534
15888
|
message: string;
|
15535
15889
|
id: string;
|
15536
15890
|
url: string;
|
@@ -15652,9 +16006,19 @@ export declare const instagramContract: {
|
|
15652
16006
|
channelSecret?: string | undefined;
|
15653
16007
|
additionalCredentials?: any;
|
15654
16008
|
senderId?: string | undefined;
|
16009
|
+
whatsapp?: {
|
16010
|
+
email: string;
|
16011
|
+
wabaExternalId: string;
|
16012
|
+
phoneNumberId: string;
|
16013
|
+
wabaBusinessId?: string | undefined;
|
16014
|
+
clientId?: string | undefined;
|
16015
|
+
channelId?: string | undefined;
|
16016
|
+
status?: "active" | "pending" | undefined;
|
16017
|
+
apiKey?: string | undefined;
|
16018
|
+
} | undefined;
|
15655
16019
|
vonageCredentials?: {
|
15656
|
-
mobileNumber: string;
|
15657
16020
|
apiKey: string;
|
16021
|
+
mobileNumber: string;
|
15658
16022
|
apiSecret: string;
|
15659
16023
|
} | undefined;
|
15660
16024
|
lineRichMenuId?: string | null | undefined;
|
@@ -16046,7 +16410,7 @@ export declare const instagramContract: {
|
|
16046
16410
|
previewUrl: string;
|
16047
16411
|
imageSetId: string;
|
16048
16412
|
repliedMessage: {
|
16049
|
-
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";
|
16413
|
+
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";
|
16050
16414
|
message: string;
|
16051
16415
|
id: string;
|
16052
16416
|
url: string;
|
@@ -16261,7 +16625,7 @@ export declare const instagramContract: {
|
|
16261
16625
|
requestId: string;
|
16262
16626
|
}, {
|
16263
16627
|
data: {
|
16264
|
-
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";
|
16628
|
+
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";
|
16265
16629
|
message: string;
|
16266
16630
|
id: string;
|
16267
16631
|
url: string;
|
@@ -16383,9 +16747,19 @@ export declare const instagramContract: {
|
|
16383
16747
|
channelSecret?: string | undefined;
|
16384
16748
|
additionalCredentials?: any;
|
16385
16749
|
senderId?: string | undefined;
|
16750
|
+
whatsapp?: {
|
16751
|
+
email: string;
|
16752
|
+
wabaExternalId: string;
|
16753
|
+
phoneNumberId: string;
|
16754
|
+
wabaBusinessId?: string | undefined;
|
16755
|
+
clientId?: string | undefined;
|
16756
|
+
channelId?: string | undefined;
|
16757
|
+
status?: "active" | "pending" | undefined;
|
16758
|
+
apiKey?: string | undefined;
|
16759
|
+
} | undefined;
|
16386
16760
|
vonageCredentials?: {
|
16387
|
-
mobileNumber: string;
|
16388
16761
|
apiKey: string;
|
16762
|
+
mobileNumber: string;
|
16389
16763
|
apiSecret: string;
|
16390
16764
|
} | undefined;
|
16391
16765
|
lineRichMenuId?: string | null | undefined;
|
@@ -16777,7 +17151,7 @@ export declare const instagramContract: {
|
|
16777
17151
|
previewUrl: string;
|
16778
17152
|
imageSetId: string;
|
16779
17153
|
repliedMessage: {
|
16780
|
-
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";
|
17154
|
+
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";
|
16781
17155
|
message: string;
|
16782
17156
|
id: string;
|
16783
17157
|
url: string;
|
@@ -16988,7 +17362,7 @@ export declare const instagramContract: {
|
|
16988
17362
|
template?: any;
|
16989
17363
|
metadata?: any;
|
16990
17364
|
fromMessage?: {
|
16991
|
-
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";
|
17365
|
+
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";
|
16992
17366
|
message: string;
|
16993
17367
|
id: string;
|
16994
17368
|
url: string;
|
@@ -17110,9 +17484,19 @@ export declare const instagramContract: {
|
|
17110
17484
|
channelSecret?: string | undefined;
|
17111
17485
|
additionalCredentials?: any;
|
17112
17486
|
senderId?: string | undefined;
|
17487
|
+
whatsapp?: {
|
17488
|
+
email: string;
|
17489
|
+
wabaExternalId: string;
|
17490
|
+
phoneNumberId: string;
|
17491
|
+
wabaBusinessId?: string | undefined;
|
17492
|
+
clientId?: string | undefined;
|
17493
|
+
channelId?: string | undefined;
|
17494
|
+
status?: "active" | "pending" | undefined;
|
17495
|
+
apiKey?: string | undefined;
|
17496
|
+
} | undefined;
|
17113
17497
|
vonageCredentials?: {
|
17114
|
-
mobileNumber: string;
|
17115
17498
|
apiKey: string;
|
17499
|
+
mobileNumber: string;
|
17116
17500
|
apiSecret: string;
|
17117
17501
|
} | undefined;
|
17118
17502
|
lineRichMenuId?: string | null | undefined;
|
@@ -17504,7 +17888,7 @@ export declare const instagramContract: {
|
|
17504
17888
|
previewUrl: string;
|
17505
17889
|
imageSetId: string;
|
17506
17890
|
repliedMessage: {
|
17507
|
-
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";
|
17891
|
+
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";
|
17508
17892
|
message: string;
|
17509
17893
|
id: string;
|
17510
17894
|
url: string;
|
@@ -17743,17 +18127,45 @@ export declare const instagramContract: {
|
|
17743
18127
|
channelSecret: z.ZodOptional<z.ZodString>;
|
17744
18128
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
17745
18129
|
senderId: z.ZodOptional<z.ZodString>;
|
18130
|
+
whatsapp: z.ZodOptional<z.ZodObject<{
|
18131
|
+
wabaBusinessId: z.ZodOptional<z.ZodString>;
|
18132
|
+
wabaExternalId: z.ZodString;
|
18133
|
+
phoneNumberId: z.ZodString;
|
18134
|
+
email: z.ZodString;
|
18135
|
+
clientId: z.ZodOptional<z.ZodString>;
|
18136
|
+
channelId: z.ZodOptional<z.ZodString>;
|
18137
|
+
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
18138
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
18139
|
+
}, "strip", z.ZodTypeAny, {
|
18140
|
+
email: string;
|
18141
|
+
wabaExternalId: string;
|
18142
|
+
phoneNumberId: string;
|
18143
|
+
wabaBusinessId?: string | undefined;
|
18144
|
+
clientId?: string | undefined;
|
18145
|
+
channelId?: string | undefined;
|
18146
|
+
status?: "active" | "pending" | undefined;
|
18147
|
+
apiKey?: string | undefined;
|
18148
|
+
}, {
|
18149
|
+
email: string;
|
18150
|
+
wabaExternalId: string;
|
18151
|
+
phoneNumberId: string;
|
18152
|
+
wabaBusinessId?: string | undefined;
|
18153
|
+
clientId?: string | undefined;
|
18154
|
+
channelId?: string | undefined;
|
18155
|
+
status?: "active" | "pending" | undefined;
|
18156
|
+
apiKey?: string | undefined;
|
18157
|
+
}>>;
|
17746
18158
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
17747
18159
|
mobileNumber: z.ZodString;
|
17748
18160
|
apiKey: z.ZodString;
|
17749
18161
|
apiSecret: z.ZodString;
|
17750
18162
|
}, "strip", z.ZodTypeAny, {
|
17751
|
-
mobileNumber: string;
|
17752
18163
|
apiKey: string;
|
18164
|
+
mobileNumber: string;
|
17753
18165
|
apiSecret: string;
|
17754
18166
|
}, {
|
17755
|
-
mobileNumber: string;
|
17756
18167
|
apiKey: string;
|
18168
|
+
mobileNumber: string;
|
17757
18169
|
apiSecret: string;
|
17758
18170
|
}>>;
|
17759
18171
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
@@ -17765,9 +18177,19 @@ export declare const instagramContract: {
|
|
17765
18177
|
channelSecret?: string | undefined;
|
17766
18178
|
additionalCredentials?: any;
|
17767
18179
|
senderId?: string | undefined;
|
18180
|
+
whatsapp?: {
|
18181
|
+
email: string;
|
18182
|
+
wabaExternalId: string;
|
18183
|
+
phoneNumberId: string;
|
18184
|
+
wabaBusinessId?: string | undefined;
|
18185
|
+
clientId?: string | undefined;
|
18186
|
+
channelId?: string | undefined;
|
18187
|
+
status?: "active" | "pending" | undefined;
|
18188
|
+
apiKey?: string | undefined;
|
18189
|
+
} | undefined;
|
17768
18190
|
vonageCredentials?: {
|
17769
|
-
mobileNumber: string;
|
17770
18191
|
apiKey: string;
|
18192
|
+
mobileNumber: string;
|
17771
18193
|
apiSecret: string;
|
17772
18194
|
} | undefined;
|
17773
18195
|
lineRichMenuId?: string | null | undefined;
|
@@ -17779,9 +18201,19 @@ export declare const instagramContract: {
|
|
17779
18201
|
channelSecret?: string | undefined;
|
17780
18202
|
additionalCredentials?: any;
|
17781
18203
|
senderId?: string | undefined;
|
18204
|
+
whatsapp?: {
|
18205
|
+
email: string;
|
18206
|
+
wabaExternalId: string;
|
18207
|
+
phoneNumberId: string;
|
18208
|
+
wabaBusinessId?: string | undefined;
|
18209
|
+
clientId?: string | undefined;
|
18210
|
+
channelId?: string | undefined;
|
18211
|
+
status?: "active" | "pending" | undefined;
|
18212
|
+
apiKey?: string | undefined;
|
18213
|
+
} | undefined;
|
17782
18214
|
vonageCredentials?: {
|
17783
|
-
mobileNumber: string;
|
17784
18215
|
apiKey: string;
|
18216
|
+
mobileNumber: string;
|
17785
18217
|
apiSecret: string;
|
17786
18218
|
} | undefined;
|
17787
18219
|
lineRichMenuId?: string | null | undefined;
|
@@ -17823,9 +18255,19 @@ export declare const instagramContract: {
|
|
17823
18255
|
channelSecret?: string | undefined;
|
17824
18256
|
additionalCredentials?: any;
|
17825
18257
|
senderId?: string | undefined;
|
18258
|
+
whatsapp?: {
|
18259
|
+
email: string;
|
18260
|
+
wabaExternalId: string;
|
18261
|
+
phoneNumberId: string;
|
18262
|
+
wabaBusinessId?: string | undefined;
|
18263
|
+
clientId?: string | undefined;
|
18264
|
+
channelId?: string | undefined;
|
18265
|
+
status?: "active" | "pending" | undefined;
|
18266
|
+
apiKey?: string | undefined;
|
18267
|
+
} | undefined;
|
17826
18268
|
vonageCredentials?: {
|
17827
|
-
mobileNumber: string;
|
17828
18269
|
apiKey: string;
|
18270
|
+
mobileNumber: string;
|
17829
18271
|
apiSecret: string;
|
17830
18272
|
} | undefined;
|
17831
18273
|
lineRichMenuId?: string | null | undefined;
|
@@ -17855,9 +18297,19 @@ export declare const instagramContract: {
|
|
17855
18297
|
channelSecret?: string | undefined;
|
17856
18298
|
additionalCredentials?: any;
|
17857
18299
|
senderId?: string | undefined;
|
18300
|
+
whatsapp?: {
|
18301
|
+
email: string;
|
18302
|
+
wabaExternalId: string;
|
18303
|
+
phoneNumberId: string;
|
18304
|
+
wabaBusinessId?: string | undefined;
|
18305
|
+
clientId?: string | undefined;
|
18306
|
+
channelId?: string | undefined;
|
18307
|
+
status?: "active" | "pending" | undefined;
|
18308
|
+
apiKey?: string | undefined;
|
18309
|
+
} | undefined;
|
17858
18310
|
vonageCredentials?: {
|
17859
|
-
mobileNumber: string;
|
17860
18311
|
apiKey: string;
|
18312
|
+
mobileNumber: string;
|
17861
18313
|
apiSecret: string;
|
17862
18314
|
} | undefined;
|
17863
18315
|
lineRichMenuId?: string | null | undefined;
|
@@ -17892,17 +18344,45 @@ export declare const instagramContract: {
|
|
17892
18344
|
channelSecret: z.ZodOptional<z.ZodString>;
|
17893
18345
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
17894
18346
|
senderId: z.ZodOptional<z.ZodString>;
|
18347
|
+
whatsapp: z.ZodOptional<z.ZodObject<{
|
18348
|
+
wabaBusinessId: z.ZodOptional<z.ZodString>;
|
18349
|
+
wabaExternalId: z.ZodString;
|
18350
|
+
phoneNumberId: z.ZodString;
|
18351
|
+
email: z.ZodString;
|
18352
|
+
clientId: z.ZodOptional<z.ZodString>;
|
18353
|
+
channelId: z.ZodOptional<z.ZodString>;
|
18354
|
+
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
18355
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
18356
|
+
}, "strip", z.ZodTypeAny, {
|
18357
|
+
email: string;
|
18358
|
+
wabaExternalId: string;
|
18359
|
+
phoneNumberId: string;
|
18360
|
+
wabaBusinessId?: string | undefined;
|
18361
|
+
clientId?: string | undefined;
|
18362
|
+
channelId?: string | undefined;
|
18363
|
+
status?: "active" | "pending" | undefined;
|
18364
|
+
apiKey?: string | undefined;
|
18365
|
+
}, {
|
18366
|
+
email: string;
|
18367
|
+
wabaExternalId: string;
|
18368
|
+
phoneNumberId: string;
|
18369
|
+
wabaBusinessId?: string | undefined;
|
18370
|
+
clientId?: string | undefined;
|
18371
|
+
channelId?: string | undefined;
|
18372
|
+
status?: "active" | "pending" | undefined;
|
18373
|
+
apiKey?: string | undefined;
|
18374
|
+
}>>;
|
17895
18375
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
17896
18376
|
mobileNumber: z.ZodString;
|
17897
18377
|
apiKey: z.ZodString;
|
17898
18378
|
apiSecret: z.ZodString;
|
17899
18379
|
}, "strip", z.ZodTypeAny, {
|
17900
|
-
mobileNumber: string;
|
17901
18380
|
apiKey: string;
|
18381
|
+
mobileNumber: string;
|
17902
18382
|
apiSecret: string;
|
17903
18383
|
}, {
|
17904
|
-
mobileNumber: string;
|
17905
18384
|
apiKey: string;
|
18385
|
+
mobileNumber: string;
|
17906
18386
|
apiSecret: string;
|
17907
18387
|
}>>;
|
17908
18388
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
@@ -17914,9 +18394,19 @@ export declare const instagramContract: {
|
|
17914
18394
|
channelSecret?: string | undefined;
|
17915
18395
|
additionalCredentials?: any;
|
17916
18396
|
senderId?: string | undefined;
|
18397
|
+
whatsapp?: {
|
18398
|
+
email: string;
|
18399
|
+
wabaExternalId: string;
|
18400
|
+
phoneNumberId: string;
|
18401
|
+
wabaBusinessId?: string | undefined;
|
18402
|
+
clientId?: string | undefined;
|
18403
|
+
channelId?: string | undefined;
|
18404
|
+
status?: "active" | "pending" | undefined;
|
18405
|
+
apiKey?: string | undefined;
|
18406
|
+
} | undefined;
|
17917
18407
|
vonageCredentials?: {
|
17918
|
-
mobileNumber: string;
|
17919
18408
|
apiKey: string;
|
18409
|
+
mobileNumber: string;
|
17920
18410
|
apiSecret: string;
|
17921
18411
|
} | undefined;
|
17922
18412
|
lineRichMenuId?: string | null | undefined;
|
@@ -17928,9 +18418,19 @@ export declare const instagramContract: {
|
|
17928
18418
|
channelSecret?: string | undefined;
|
17929
18419
|
additionalCredentials?: any;
|
17930
18420
|
senderId?: string | undefined;
|
18421
|
+
whatsapp?: {
|
18422
|
+
email: string;
|
18423
|
+
wabaExternalId: string;
|
18424
|
+
phoneNumberId: string;
|
18425
|
+
wabaBusinessId?: string | undefined;
|
18426
|
+
clientId?: string | undefined;
|
18427
|
+
channelId?: string | undefined;
|
18428
|
+
status?: "active" | "pending" | undefined;
|
18429
|
+
apiKey?: string | undefined;
|
18430
|
+
} | undefined;
|
17931
18431
|
vonageCredentials?: {
|
17932
|
-
mobileNumber: string;
|
17933
18432
|
apiKey: string;
|
18433
|
+
mobileNumber: string;
|
17934
18434
|
apiSecret: string;
|
17935
18435
|
} | undefined;
|
17936
18436
|
lineRichMenuId?: string | null | undefined;
|
@@ -17972,9 +18472,19 @@ export declare const instagramContract: {
|
|
17972
18472
|
channelSecret?: string | undefined;
|
17973
18473
|
additionalCredentials?: any;
|
17974
18474
|
senderId?: string | undefined;
|
18475
|
+
whatsapp?: {
|
18476
|
+
email: string;
|
18477
|
+
wabaExternalId: string;
|
18478
|
+
phoneNumberId: string;
|
18479
|
+
wabaBusinessId?: string | undefined;
|
18480
|
+
clientId?: string | undefined;
|
18481
|
+
channelId?: string | undefined;
|
18482
|
+
status?: "active" | "pending" | undefined;
|
18483
|
+
apiKey?: string | undefined;
|
18484
|
+
} | undefined;
|
17975
18485
|
vonageCredentials?: {
|
17976
|
-
mobileNumber: string;
|
17977
18486
|
apiKey: string;
|
18487
|
+
mobileNumber: string;
|
17978
18488
|
apiSecret: string;
|
17979
18489
|
} | undefined;
|
17980
18490
|
lineRichMenuId?: string | null | undefined;
|
@@ -18004,9 +18514,19 @@ export declare const instagramContract: {
|
|
18004
18514
|
channelSecret?: string | undefined;
|
18005
18515
|
additionalCredentials?: any;
|
18006
18516
|
senderId?: string | undefined;
|
18517
|
+
whatsapp?: {
|
18518
|
+
email: string;
|
18519
|
+
wabaExternalId: string;
|
18520
|
+
phoneNumberId: string;
|
18521
|
+
wabaBusinessId?: string | undefined;
|
18522
|
+
clientId?: string | undefined;
|
18523
|
+
channelId?: string | undefined;
|
18524
|
+
status?: "active" | "pending" | undefined;
|
18525
|
+
apiKey?: string | undefined;
|
18526
|
+
} | undefined;
|
18007
18527
|
vonageCredentials?: {
|
18008
|
-
mobileNumber: string;
|
18009
18528
|
apiKey: string;
|
18529
|
+
mobileNumber: string;
|
18010
18530
|
apiSecret: string;
|
18011
18531
|
} | undefined;
|
18012
18532
|
lineRichMenuId?: string | null | undefined;
|
@@ -18038,9 +18558,19 @@ export declare const instagramContract: {
|
|
18038
18558
|
channelSecret?: string | undefined;
|
18039
18559
|
additionalCredentials?: any;
|
18040
18560
|
senderId?: string | undefined;
|
18561
|
+
whatsapp?: {
|
18562
|
+
email: string;
|
18563
|
+
wabaExternalId: string;
|
18564
|
+
phoneNumberId: string;
|
18565
|
+
wabaBusinessId?: string | undefined;
|
18566
|
+
clientId?: string | undefined;
|
18567
|
+
channelId?: string | undefined;
|
18568
|
+
status?: "active" | "pending" | undefined;
|
18569
|
+
apiKey?: string | undefined;
|
18570
|
+
} | undefined;
|
18041
18571
|
vonageCredentials?: {
|
18042
|
-
mobileNumber: string;
|
18043
18572
|
apiKey: string;
|
18573
|
+
mobileNumber: string;
|
18044
18574
|
apiSecret: string;
|
18045
18575
|
} | undefined;
|
18046
18576
|
lineRichMenuId?: string | null | undefined;
|
@@ -18073,9 +18603,19 @@ export declare const instagramContract: {
|
|
18073
18603
|
channelSecret?: string | undefined;
|
18074
18604
|
additionalCredentials?: any;
|
18075
18605
|
senderId?: string | undefined;
|
18606
|
+
whatsapp?: {
|
18607
|
+
email: string;
|
18608
|
+
wabaExternalId: string;
|
18609
|
+
phoneNumberId: string;
|
18610
|
+
wabaBusinessId?: string | undefined;
|
18611
|
+
clientId?: string | undefined;
|
18612
|
+
channelId?: string | undefined;
|
18613
|
+
status?: "active" | "pending" | undefined;
|
18614
|
+
apiKey?: string | undefined;
|
18615
|
+
} | undefined;
|
18076
18616
|
vonageCredentials?: {
|
18077
|
-
mobileNumber: string;
|
18078
18617
|
apiKey: string;
|
18618
|
+
mobileNumber: string;
|
18079
18619
|
apiSecret: string;
|
18080
18620
|
} | undefined;
|
18081
18621
|
lineRichMenuId?: string | null | undefined;
|
@@ -18132,17 +18672,45 @@ export declare const instagramContract: {
|
|
18132
18672
|
channelSecret: z.ZodOptional<z.ZodString>;
|
18133
18673
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
18134
18674
|
senderId: z.ZodOptional<z.ZodString>;
|
18675
|
+
whatsapp: z.ZodOptional<z.ZodObject<{
|
18676
|
+
wabaBusinessId: z.ZodOptional<z.ZodString>;
|
18677
|
+
wabaExternalId: z.ZodString;
|
18678
|
+
phoneNumberId: z.ZodString;
|
18679
|
+
email: z.ZodString;
|
18680
|
+
clientId: z.ZodOptional<z.ZodString>;
|
18681
|
+
channelId: z.ZodOptional<z.ZodString>;
|
18682
|
+
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
18683
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
18684
|
+
}, "strip", z.ZodTypeAny, {
|
18685
|
+
email: string;
|
18686
|
+
wabaExternalId: string;
|
18687
|
+
phoneNumberId: string;
|
18688
|
+
wabaBusinessId?: string | undefined;
|
18689
|
+
clientId?: string | undefined;
|
18690
|
+
channelId?: string | undefined;
|
18691
|
+
status?: "active" | "pending" | undefined;
|
18692
|
+
apiKey?: string | undefined;
|
18693
|
+
}, {
|
18694
|
+
email: string;
|
18695
|
+
wabaExternalId: string;
|
18696
|
+
phoneNumberId: string;
|
18697
|
+
wabaBusinessId?: string | undefined;
|
18698
|
+
clientId?: string | undefined;
|
18699
|
+
channelId?: string | undefined;
|
18700
|
+
status?: "active" | "pending" | undefined;
|
18701
|
+
apiKey?: string | undefined;
|
18702
|
+
}>>;
|
18135
18703
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
18136
18704
|
mobileNumber: z.ZodString;
|
18137
18705
|
apiKey: z.ZodString;
|
18138
18706
|
apiSecret: z.ZodString;
|
18139
18707
|
}, "strip", z.ZodTypeAny, {
|
18140
|
-
mobileNumber: string;
|
18141
18708
|
apiKey: string;
|
18709
|
+
mobileNumber: string;
|
18142
18710
|
apiSecret: string;
|
18143
18711
|
}, {
|
18144
|
-
mobileNumber: string;
|
18145
18712
|
apiKey: string;
|
18713
|
+
mobileNumber: string;
|
18146
18714
|
apiSecret: string;
|
18147
18715
|
}>>;
|
18148
18716
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
@@ -18154,9 +18722,19 @@ export declare const instagramContract: {
|
|
18154
18722
|
channelSecret?: string | undefined;
|
18155
18723
|
additionalCredentials?: any;
|
18156
18724
|
senderId?: string | undefined;
|
18725
|
+
whatsapp?: {
|
18726
|
+
email: string;
|
18727
|
+
wabaExternalId: string;
|
18728
|
+
phoneNumberId: string;
|
18729
|
+
wabaBusinessId?: string | undefined;
|
18730
|
+
clientId?: string | undefined;
|
18731
|
+
channelId?: string | undefined;
|
18732
|
+
status?: "active" | "pending" | undefined;
|
18733
|
+
apiKey?: string | undefined;
|
18734
|
+
} | undefined;
|
18157
18735
|
vonageCredentials?: {
|
18158
|
-
mobileNumber: string;
|
18159
18736
|
apiKey: string;
|
18737
|
+
mobileNumber: string;
|
18160
18738
|
apiSecret: string;
|
18161
18739
|
} | undefined;
|
18162
18740
|
lineRichMenuId?: string | null | undefined;
|
@@ -18168,9 +18746,19 @@ export declare const instagramContract: {
|
|
18168
18746
|
channelSecret?: string | undefined;
|
18169
18747
|
additionalCredentials?: any;
|
18170
18748
|
senderId?: string | undefined;
|
18749
|
+
whatsapp?: {
|
18750
|
+
email: string;
|
18751
|
+
wabaExternalId: string;
|
18752
|
+
phoneNumberId: string;
|
18753
|
+
wabaBusinessId?: string | undefined;
|
18754
|
+
clientId?: string | undefined;
|
18755
|
+
channelId?: string | undefined;
|
18756
|
+
status?: "active" | "pending" | undefined;
|
18757
|
+
apiKey?: string | undefined;
|
18758
|
+
} | undefined;
|
18171
18759
|
vonageCredentials?: {
|
18172
|
-
mobileNumber: string;
|
18173
18760
|
apiKey: string;
|
18761
|
+
mobileNumber: string;
|
18174
18762
|
apiSecret: string;
|
18175
18763
|
} | undefined;
|
18176
18764
|
lineRichMenuId?: string | null | undefined;
|
@@ -18212,9 +18800,19 @@ export declare const instagramContract: {
|
|
18212
18800
|
channelSecret?: string | undefined;
|
18213
18801
|
additionalCredentials?: any;
|
18214
18802
|
senderId?: string | undefined;
|
18803
|
+
whatsapp?: {
|
18804
|
+
email: string;
|
18805
|
+
wabaExternalId: string;
|
18806
|
+
phoneNumberId: string;
|
18807
|
+
wabaBusinessId?: string | undefined;
|
18808
|
+
clientId?: string | undefined;
|
18809
|
+
channelId?: string | undefined;
|
18810
|
+
status?: "active" | "pending" | undefined;
|
18811
|
+
apiKey?: string | undefined;
|
18812
|
+
} | undefined;
|
18215
18813
|
vonageCredentials?: {
|
18216
|
-
mobileNumber: string;
|
18217
18814
|
apiKey: string;
|
18815
|
+
mobileNumber: string;
|
18218
18816
|
apiSecret: string;
|
18219
18817
|
} | undefined;
|
18220
18818
|
lineRichMenuId?: string | null | undefined;
|
@@ -18244,9 +18842,19 @@ export declare const instagramContract: {
|
|
18244
18842
|
channelSecret?: string | undefined;
|
18245
18843
|
additionalCredentials?: any;
|
18246
18844
|
senderId?: string | undefined;
|
18845
|
+
whatsapp?: {
|
18846
|
+
email: string;
|
18847
|
+
wabaExternalId: string;
|
18848
|
+
phoneNumberId: string;
|
18849
|
+
wabaBusinessId?: string | undefined;
|
18850
|
+
clientId?: string | undefined;
|
18851
|
+
channelId?: string | undefined;
|
18852
|
+
status?: "active" | "pending" | undefined;
|
18853
|
+
apiKey?: string | undefined;
|
18854
|
+
} | undefined;
|
18247
18855
|
vonageCredentials?: {
|
18248
|
-
mobileNumber: string;
|
18249
18856
|
apiKey: string;
|
18857
|
+
mobileNumber: string;
|
18250
18858
|
apiSecret: string;
|
18251
18859
|
} | undefined;
|
18252
18860
|
lineRichMenuId?: string | null | undefined;
|
@@ -18281,17 +18889,45 @@ export declare const instagramContract: {
|
|
18281
18889
|
channelSecret: z.ZodOptional<z.ZodString>;
|
18282
18890
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
18283
18891
|
senderId: z.ZodOptional<z.ZodString>;
|
18892
|
+
whatsapp: z.ZodOptional<z.ZodObject<{
|
18893
|
+
wabaBusinessId: z.ZodOptional<z.ZodString>;
|
18894
|
+
wabaExternalId: z.ZodString;
|
18895
|
+
phoneNumberId: z.ZodString;
|
18896
|
+
email: z.ZodString;
|
18897
|
+
clientId: z.ZodOptional<z.ZodString>;
|
18898
|
+
channelId: z.ZodOptional<z.ZodString>;
|
18899
|
+
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
18900
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
18901
|
+
}, "strip", z.ZodTypeAny, {
|
18902
|
+
email: string;
|
18903
|
+
wabaExternalId: string;
|
18904
|
+
phoneNumberId: string;
|
18905
|
+
wabaBusinessId?: string | undefined;
|
18906
|
+
clientId?: string | undefined;
|
18907
|
+
channelId?: string | undefined;
|
18908
|
+
status?: "active" | "pending" | undefined;
|
18909
|
+
apiKey?: string | undefined;
|
18910
|
+
}, {
|
18911
|
+
email: string;
|
18912
|
+
wabaExternalId: string;
|
18913
|
+
phoneNumberId: string;
|
18914
|
+
wabaBusinessId?: string | undefined;
|
18915
|
+
clientId?: string | undefined;
|
18916
|
+
channelId?: string | undefined;
|
18917
|
+
status?: "active" | "pending" | undefined;
|
18918
|
+
apiKey?: string | undefined;
|
18919
|
+
}>>;
|
18284
18920
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
18285
18921
|
mobileNumber: z.ZodString;
|
18286
18922
|
apiKey: z.ZodString;
|
18287
18923
|
apiSecret: z.ZodString;
|
18288
18924
|
}, "strip", z.ZodTypeAny, {
|
18289
|
-
mobileNumber: string;
|
18290
18925
|
apiKey: string;
|
18926
|
+
mobileNumber: string;
|
18291
18927
|
apiSecret: string;
|
18292
18928
|
}, {
|
18293
|
-
mobileNumber: string;
|
18294
18929
|
apiKey: string;
|
18930
|
+
mobileNumber: string;
|
18295
18931
|
apiSecret: string;
|
18296
18932
|
}>>;
|
18297
18933
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
@@ -18303,9 +18939,19 @@ export declare const instagramContract: {
|
|
18303
18939
|
channelSecret?: string | undefined;
|
18304
18940
|
additionalCredentials?: any;
|
18305
18941
|
senderId?: string | undefined;
|
18942
|
+
whatsapp?: {
|
18943
|
+
email: string;
|
18944
|
+
wabaExternalId: string;
|
18945
|
+
phoneNumberId: string;
|
18946
|
+
wabaBusinessId?: string | undefined;
|
18947
|
+
clientId?: string | undefined;
|
18948
|
+
channelId?: string | undefined;
|
18949
|
+
status?: "active" | "pending" | undefined;
|
18950
|
+
apiKey?: string | undefined;
|
18951
|
+
} | undefined;
|
18306
18952
|
vonageCredentials?: {
|
18307
|
-
mobileNumber: string;
|
18308
18953
|
apiKey: string;
|
18954
|
+
mobileNumber: string;
|
18309
18955
|
apiSecret: string;
|
18310
18956
|
} | undefined;
|
18311
18957
|
lineRichMenuId?: string | null | undefined;
|
@@ -18317,9 +18963,19 @@ export declare const instagramContract: {
|
|
18317
18963
|
channelSecret?: string | undefined;
|
18318
18964
|
additionalCredentials?: any;
|
18319
18965
|
senderId?: string | undefined;
|
18966
|
+
whatsapp?: {
|
18967
|
+
email: string;
|
18968
|
+
wabaExternalId: string;
|
18969
|
+
phoneNumberId: string;
|
18970
|
+
wabaBusinessId?: string | undefined;
|
18971
|
+
clientId?: string | undefined;
|
18972
|
+
channelId?: string | undefined;
|
18973
|
+
status?: "active" | "pending" | undefined;
|
18974
|
+
apiKey?: string | undefined;
|
18975
|
+
} | undefined;
|
18320
18976
|
vonageCredentials?: {
|
18321
|
-
mobileNumber: string;
|
18322
18977
|
apiKey: string;
|
18978
|
+
mobileNumber: string;
|
18323
18979
|
apiSecret: string;
|
18324
18980
|
} | undefined;
|
18325
18981
|
lineRichMenuId?: string | null | undefined;
|
@@ -18361,9 +19017,19 @@ export declare const instagramContract: {
|
|
18361
19017
|
channelSecret?: string | undefined;
|
18362
19018
|
additionalCredentials?: any;
|
18363
19019
|
senderId?: string | undefined;
|
19020
|
+
whatsapp?: {
|
19021
|
+
email: string;
|
19022
|
+
wabaExternalId: string;
|
19023
|
+
phoneNumberId: string;
|
19024
|
+
wabaBusinessId?: string | undefined;
|
19025
|
+
clientId?: string | undefined;
|
19026
|
+
channelId?: string | undefined;
|
19027
|
+
status?: "active" | "pending" | undefined;
|
19028
|
+
apiKey?: string | undefined;
|
19029
|
+
} | undefined;
|
18364
19030
|
vonageCredentials?: {
|
18365
|
-
mobileNumber: string;
|
18366
19031
|
apiKey: string;
|
19032
|
+
mobileNumber: string;
|
18367
19033
|
apiSecret: string;
|
18368
19034
|
} | undefined;
|
18369
19035
|
lineRichMenuId?: string | null | undefined;
|
@@ -18393,9 +19059,19 @@ export declare const instagramContract: {
|
|
18393
19059
|
channelSecret?: string | undefined;
|
18394
19060
|
additionalCredentials?: any;
|
18395
19061
|
senderId?: string | undefined;
|
19062
|
+
whatsapp?: {
|
19063
|
+
email: string;
|
19064
|
+
wabaExternalId: string;
|
19065
|
+
phoneNumberId: string;
|
19066
|
+
wabaBusinessId?: string | undefined;
|
19067
|
+
clientId?: string | undefined;
|
19068
|
+
channelId?: string | undefined;
|
19069
|
+
status?: "active" | "pending" | undefined;
|
19070
|
+
apiKey?: string | undefined;
|
19071
|
+
} | undefined;
|
18396
19072
|
vonageCredentials?: {
|
18397
|
-
mobileNumber: string;
|
18398
19073
|
apiKey: string;
|
19074
|
+
mobileNumber: string;
|
18399
19075
|
apiSecret: string;
|
18400
19076
|
} | undefined;
|
18401
19077
|
lineRichMenuId?: string | null | undefined;
|
@@ -18427,9 +19103,19 @@ export declare const instagramContract: {
|
|
18427
19103
|
channelSecret?: string | undefined;
|
18428
19104
|
additionalCredentials?: any;
|
18429
19105
|
senderId?: string | undefined;
|
19106
|
+
whatsapp?: {
|
19107
|
+
email: string;
|
19108
|
+
wabaExternalId: string;
|
19109
|
+
phoneNumberId: string;
|
19110
|
+
wabaBusinessId?: string | undefined;
|
19111
|
+
clientId?: string | undefined;
|
19112
|
+
channelId?: string | undefined;
|
19113
|
+
status?: "active" | "pending" | undefined;
|
19114
|
+
apiKey?: string | undefined;
|
19115
|
+
} | undefined;
|
18430
19116
|
vonageCredentials?: {
|
18431
|
-
mobileNumber: string;
|
18432
19117
|
apiKey: string;
|
19118
|
+
mobileNumber: string;
|
18433
19119
|
apiSecret: string;
|
18434
19120
|
} | undefined;
|
18435
19121
|
lineRichMenuId?: string | null | undefined;
|
@@ -18462,9 +19148,19 @@ export declare const instagramContract: {
|
|
18462
19148
|
channelSecret?: string | undefined;
|
18463
19149
|
additionalCredentials?: any;
|
18464
19150
|
senderId?: string | undefined;
|
19151
|
+
whatsapp?: {
|
19152
|
+
email: string;
|
19153
|
+
wabaExternalId: string;
|
19154
|
+
phoneNumberId: string;
|
19155
|
+
wabaBusinessId?: string | undefined;
|
19156
|
+
clientId?: string | undefined;
|
19157
|
+
channelId?: string | undefined;
|
19158
|
+
status?: "active" | "pending" | undefined;
|
19159
|
+
apiKey?: string | undefined;
|
19160
|
+
} | undefined;
|
18465
19161
|
vonageCredentials?: {
|
18466
|
-
mobileNumber: string;
|
18467
19162
|
apiKey: string;
|
19163
|
+
mobileNumber: string;
|
18468
19164
|
apiSecret: string;
|
18469
19165
|
} | undefined;
|
18470
19166
|
lineRichMenuId?: string | null | undefined;
|
@@ -18533,17 +19229,45 @@ export declare const instagramContract: {
|
|
18533
19229
|
channelSecret: z.ZodOptional<z.ZodString>;
|
18534
19230
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
18535
19231
|
senderId: z.ZodOptional<z.ZodString>;
|
19232
|
+
whatsapp: z.ZodOptional<z.ZodObject<{
|
19233
|
+
wabaBusinessId: z.ZodOptional<z.ZodString>;
|
19234
|
+
wabaExternalId: z.ZodString;
|
19235
|
+
phoneNumberId: z.ZodString;
|
19236
|
+
email: z.ZodString;
|
19237
|
+
clientId: z.ZodOptional<z.ZodString>;
|
19238
|
+
channelId: z.ZodOptional<z.ZodString>;
|
19239
|
+
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
19240
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
19241
|
+
}, "strip", z.ZodTypeAny, {
|
19242
|
+
email: string;
|
19243
|
+
wabaExternalId: string;
|
19244
|
+
phoneNumberId: string;
|
19245
|
+
wabaBusinessId?: string | undefined;
|
19246
|
+
clientId?: string | undefined;
|
19247
|
+
channelId?: string | undefined;
|
19248
|
+
status?: "active" | "pending" | undefined;
|
19249
|
+
apiKey?: string | undefined;
|
19250
|
+
}, {
|
19251
|
+
email: string;
|
19252
|
+
wabaExternalId: string;
|
19253
|
+
phoneNumberId: string;
|
19254
|
+
wabaBusinessId?: string | undefined;
|
19255
|
+
clientId?: string | undefined;
|
19256
|
+
channelId?: string | undefined;
|
19257
|
+
status?: "active" | "pending" | undefined;
|
19258
|
+
apiKey?: string | undefined;
|
19259
|
+
}>>;
|
18536
19260
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
18537
19261
|
mobileNumber: z.ZodString;
|
18538
19262
|
apiKey: z.ZodString;
|
18539
19263
|
apiSecret: z.ZodString;
|
18540
19264
|
}, "strip", z.ZodTypeAny, {
|
18541
|
-
mobileNumber: string;
|
18542
19265
|
apiKey: string;
|
19266
|
+
mobileNumber: string;
|
18543
19267
|
apiSecret: string;
|
18544
19268
|
}, {
|
18545
|
-
mobileNumber: string;
|
18546
19269
|
apiKey: string;
|
19270
|
+
mobileNumber: string;
|
18547
19271
|
apiSecret: string;
|
18548
19272
|
}>>;
|
18549
19273
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
@@ -18555,9 +19279,19 @@ export declare const instagramContract: {
|
|
18555
19279
|
channelSecret?: string | undefined;
|
18556
19280
|
additionalCredentials?: any;
|
18557
19281
|
senderId?: string | undefined;
|
19282
|
+
whatsapp?: {
|
19283
|
+
email: string;
|
19284
|
+
wabaExternalId: string;
|
19285
|
+
phoneNumberId: string;
|
19286
|
+
wabaBusinessId?: string | undefined;
|
19287
|
+
clientId?: string | undefined;
|
19288
|
+
channelId?: string | undefined;
|
19289
|
+
status?: "active" | "pending" | undefined;
|
19290
|
+
apiKey?: string | undefined;
|
19291
|
+
} | undefined;
|
18558
19292
|
vonageCredentials?: {
|
18559
|
-
mobileNumber: string;
|
18560
19293
|
apiKey: string;
|
19294
|
+
mobileNumber: string;
|
18561
19295
|
apiSecret: string;
|
18562
19296
|
} | undefined;
|
18563
19297
|
lineRichMenuId?: string | null | undefined;
|
@@ -18569,9 +19303,19 @@ export declare const instagramContract: {
|
|
18569
19303
|
channelSecret?: string | undefined;
|
18570
19304
|
additionalCredentials?: any;
|
18571
19305
|
senderId?: string | undefined;
|
19306
|
+
whatsapp?: {
|
19307
|
+
email: string;
|
19308
|
+
wabaExternalId: string;
|
19309
|
+
phoneNumberId: string;
|
19310
|
+
wabaBusinessId?: string | undefined;
|
19311
|
+
clientId?: string | undefined;
|
19312
|
+
channelId?: string | undefined;
|
19313
|
+
status?: "active" | "pending" | undefined;
|
19314
|
+
apiKey?: string | undefined;
|
19315
|
+
} | undefined;
|
18572
19316
|
vonageCredentials?: {
|
18573
|
-
mobileNumber: string;
|
18574
19317
|
apiKey: string;
|
19318
|
+
mobileNumber: string;
|
18575
19319
|
apiSecret: string;
|
18576
19320
|
} | undefined;
|
18577
19321
|
lineRichMenuId?: string | null | undefined;
|
@@ -18613,9 +19357,19 @@ export declare const instagramContract: {
|
|
18613
19357
|
channelSecret?: string | undefined;
|
18614
19358
|
additionalCredentials?: any;
|
18615
19359
|
senderId?: string | undefined;
|
19360
|
+
whatsapp?: {
|
19361
|
+
email: string;
|
19362
|
+
wabaExternalId: string;
|
19363
|
+
phoneNumberId: string;
|
19364
|
+
wabaBusinessId?: string | undefined;
|
19365
|
+
clientId?: string | undefined;
|
19366
|
+
channelId?: string | undefined;
|
19367
|
+
status?: "active" | "pending" | undefined;
|
19368
|
+
apiKey?: string | undefined;
|
19369
|
+
} | undefined;
|
18616
19370
|
vonageCredentials?: {
|
18617
|
-
mobileNumber: string;
|
18618
19371
|
apiKey: string;
|
19372
|
+
mobileNumber: string;
|
18619
19373
|
apiSecret: string;
|
18620
19374
|
} | undefined;
|
18621
19375
|
lineRichMenuId?: string | null | undefined;
|
@@ -18645,9 +19399,19 @@ export declare const instagramContract: {
|
|
18645
19399
|
channelSecret?: string | undefined;
|
18646
19400
|
additionalCredentials?: any;
|
18647
19401
|
senderId?: string | undefined;
|
19402
|
+
whatsapp?: {
|
19403
|
+
email: string;
|
19404
|
+
wabaExternalId: string;
|
19405
|
+
phoneNumberId: string;
|
19406
|
+
wabaBusinessId?: string | undefined;
|
19407
|
+
clientId?: string | undefined;
|
19408
|
+
channelId?: string | undefined;
|
19409
|
+
status?: "active" | "pending" | undefined;
|
19410
|
+
apiKey?: string | undefined;
|
19411
|
+
} | undefined;
|
18648
19412
|
vonageCredentials?: {
|
18649
|
-
mobileNumber: string;
|
18650
19413
|
apiKey: string;
|
19414
|
+
mobileNumber: string;
|
18651
19415
|
apiSecret: string;
|
18652
19416
|
} | undefined;
|
18653
19417
|
lineRichMenuId?: string | null | undefined;
|
@@ -18679,9 +19443,19 @@ export declare const instagramContract: {
|
|
18679
19443
|
channelSecret?: string | undefined;
|
18680
19444
|
additionalCredentials?: any;
|
18681
19445
|
senderId?: string | undefined;
|
19446
|
+
whatsapp?: {
|
19447
|
+
email: string;
|
19448
|
+
wabaExternalId: string;
|
19449
|
+
phoneNumberId: string;
|
19450
|
+
wabaBusinessId?: string | undefined;
|
19451
|
+
clientId?: string | undefined;
|
19452
|
+
channelId?: string | undefined;
|
19453
|
+
status?: "active" | "pending" | undefined;
|
19454
|
+
apiKey?: string | undefined;
|
19455
|
+
} | undefined;
|
18682
19456
|
vonageCredentials?: {
|
18683
|
-
mobileNumber: string;
|
18684
19457
|
apiKey: string;
|
19458
|
+
mobileNumber: string;
|
18685
19459
|
apiSecret: string;
|
18686
19460
|
} | undefined;
|
18687
19461
|
lineRichMenuId?: string | null | undefined;
|
@@ -18714,9 +19488,19 @@ export declare const instagramContract: {
|
|
18714
19488
|
channelSecret?: string | undefined;
|
18715
19489
|
additionalCredentials?: any;
|
18716
19490
|
senderId?: string | undefined;
|
19491
|
+
whatsapp?: {
|
19492
|
+
email: string;
|
19493
|
+
wabaExternalId: string;
|
19494
|
+
phoneNumberId: string;
|
19495
|
+
wabaBusinessId?: string | undefined;
|
19496
|
+
clientId?: string | undefined;
|
19497
|
+
channelId?: string | undefined;
|
19498
|
+
status?: "active" | "pending" | undefined;
|
19499
|
+
apiKey?: string | undefined;
|
19500
|
+
} | undefined;
|
18717
19501
|
vonageCredentials?: {
|
18718
|
-
mobileNumber: string;
|
18719
19502
|
apiKey: string;
|
19503
|
+
mobileNumber: string;
|
18720
19504
|
apiSecret: string;
|
18721
19505
|
} | undefined;
|
18722
19506
|
lineRichMenuId?: string | null | undefined;
|
@@ -18785,17 +19569,45 @@ export declare const instagramContract: {
|
|
18785
19569
|
channelSecret: z.ZodOptional<z.ZodString>;
|
18786
19570
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
18787
19571
|
senderId: z.ZodOptional<z.ZodString>;
|
19572
|
+
whatsapp: z.ZodOptional<z.ZodObject<{
|
19573
|
+
wabaBusinessId: z.ZodOptional<z.ZodString>;
|
19574
|
+
wabaExternalId: z.ZodString;
|
19575
|
+
phoneNumberId: z.ZodString;
|
19576
|
+
email: z.ZodString;
|
19577
|
+
clientId: z.ZodOptional<z.ZodString>;
|
19578
|
+
channelId: z.ZodOptional<z.ZodString>;
|
19579
|
+
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
19580
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
19581
|
+
}, "strip", z.ZodTypeAny, {
|
19582
|
+
email: string;
|
19583
|
+
wabaExternalId: string;
|
19584
|
+
phoneNumberId: string;
|
19585
|
+
wabaBusinessId?: string | undefined;
|
19586
|
+
clientId?: string | undefined;
|
19587
|
+
channelId?: string | undefined;
|
19588
|
+
status?: "active" | "pending" | undefined;
|
19589
|
+
apiKey?: string | undefined;
|
19590
|
+
}, {
|
19591
|
+
email: string;
|
19592
|
+
wabaExternalId: string;
|
19593
|
+
phoneNumberId: string;
|
19594
|
+
wabaBusinessId?: string | undefined;
|
19595
|
+
clientId?: string | undefined;
|
19596
|
+
channelId?: string | undefined;
|
19597
|
+
status?: "active" | "pending" | undefined;
|
19598
|
+
apiKey?: string | undefined;
|
19599
|
+
}>>;
|
18788
19600
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
18789
19601
|
mobileNumber: z.ZodString;
|
18790
19602
|
apiKey: z.ZodString;
|
18791
19603
|
apiSecret: z.ZodString;
|
18792
19604
|
}, "strip", z.ZodTypeAny, {
|
18793
|
-
mobileNumber: string;
|
18794
19605
|
apiKey: string;
|
19606
|
+
mobileNumber: string;
|
18795
19607
|
apiSecret: string;
|
18796
19608
|
}, {
|
18797
|
-
mobileNumber: string;
|
18798
19609
|
apiKey: string;
|
19610
|
+
mobileNumber: string;
|
18799
19611
|
apiSecret: string;
|
18800
19612
|
}>>;
|
18801
19613
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
@@ -18807,9 +19619,19 @@ export declare const instagramContract: {
|
|
18807
19619
|
channelSecret?: string | undefined;
|
18808
19620
|
additionalCredentials?: any;
|
18809
19621
|
senderId?: string | undefined;
|
19622
|
+
whatsapp?: {
|
19623
|
+
email: string;
|
19624
|
+
wabaExternalId: string;
|
19625
|
+
phoneNumberId: string;
|
19626
|
+
wabaBusinessId?: string | undefined;
|
19627
|
+
clientId?: string | undefined;
|
19628
|
+
channelId?: string | undefined;
|
19629
|
+
status?: "active" | "pending" | undefined;
|
19630
|
+
apiKey?: string | undefined;
|
19631
|
+
} | undefined;
|
18810
19632
|
vonageCredentials?: {
|
18811
|
-
mobileNumber: string;
|
18812
19633
|
apiKey: string;
|
19634
|
+
mobileNumber: string;
|
18813
19635
|
apiSecret: string;
|
18814
19636
|
} | undefined;
|
18815
19637
|
lineRichMenuId?: string | null | undefined;
|
@@ -18821,9 +19643,19 @@ export declare const instagramContract: {
|
|
18821
19643
|
channelSecret?: string | undefined;
|
18822
19644
|
additionalCredentials?: any;
|
18823
19645
|
senderId?: string | undefined;
|
19646
|
+
whatsapp?: {
|
19647
|
+
email: string;
|
19648
|
+
wabaExternalId: string;
|
19649
|
+
phoneNumberId: string;
|
19650
|
+
wabaBusinessId?: string | undefined;
|
19651
|
+
clientId?: string | undefined;
|
19652
|
+
channelId?: string | undefined;
|
19653
|
+
status?: "active" | "pending" | undefined;
|
19654
|
+
apiKey?: string | undefined;
|
19655
|
+
} | undefined;
|
18824
19656
|
vonageCredentials?: {
|
18825
|
-
mobileNumber: string;
|
18826
19657
|
apiKey: string;
|
19658
|
+
mobileNumber: string;
|
18827
19659
|
apiSecret: string;
|
18828
19660
|
} | undefined;
|
18829
19661
|
lineRichMenuId?: string | null | undefined;
|
@@ -18865,9 +19697,19 @@ export declare const instagramContract: {
|
|
18865
19697
|
channelSecret?: string | undefined;
|
18866
19698
|
additionalCredentials?: any;
|
18867
19699
|
senderId?: string | undefined;
|
19700
|
+
whatsapp?: {
|
19701
|
+
email: string;
|
19702
|
+
wabaExternalId: string;
|
19703
|
+
phoneNumberId: string;
|
19704
|
+
wabaBusinessId?: string | undefined;
|
19705
|
+
clientId?: string | undefined;
|
19706
|
+
channelId?: string | undefined;
|
19707
|
+
status?: "active" | "pending" | undefined;
|
19708
|
+
apiKey?: string | undefined;
|
19709
|
+
} | undefined;
|
18868
19710
|
vonageCredentials?: {
|
18869
|
-
mobileNumber: string;
|
18870
19711
|
apiKey: string;
|
19712
|
+
mobileNumber: string;
|
18871
19713
|
apiSecret: string;
|
18872
19714
|
} | undefined;
|
18873
19715
|
lineRichMenuId?: string | null | undefined;
|
@@ -18897,9 +19739,19 @@ export declare const instagramContract: {
|
|
18897
19739
|
channelSecret?: string | undefined;
|
18898
19740
|
additionalCredentials?: any;
|
18899
19741
|
senderId?: string | undefined;
|
19742
|
+
whatsapp?: {
|
19743
|
+
email: string;
|
19744
|
+
wabaExternalId: string;
|
19745
|
+
phoneNumberId: string;
|
19746
|
+
wabaBusinessId?: string | undefined;
|
19747
|
+
clientId?: string | undefined;
|
19748
|
+
channelId?: string | undefined;
|
19749
|
+
status?: "active" | "pending" | undefined;
|
19750
|
+
apiKey?: string | undefined;
|
19751
|
+
} | undefined;
|
18900
19752
|
vonageCredentials?: {
|
18901
|
-
mobileNumber: string;
|
18902
19753
|
apiKey: string;
|
19754
|
+
mobileNumber: string;
|
18903
19755
|
apiSecret: string;
|
18904
19756
|
} | undefined;
|
18905
19757
|
lineRichMenuId?: string | null | undefined;
|
@@ -18931,9 +19783,19 @@ export declare const instagramContract: {
|
|
18931
19783
|
channelSecret?: string | undefined;
|
18932
19784
|
additionalCredentials?: any;
|
18933
19785
|
senderId?: string | undefined;
|
19786
|
+
whatsapp?: {
|
19787
|
+
email: string;
|
19788
|
+
wabaExternalId: string;
|
19789
|
+
phoneNumberId: string;
|
19790
|
+
wabaBusinessId?: string | undefined;
|
19791
|
+
clientId?: string | undefined;
|
19792
|
+
channelId?: string | undefined;
|
19793
|
+
status?: "active" | "pending" | undefined;
|
19794
|
+
apiKey?: string | undefined;
|
19795
|
+
} | undefined;
|
18934
19796
|
vonageCredentials?: {
|
18935
|
-
mobileNumber: string;
|
18936
19797
|
apiKey: string;
|
19798
|
+
mobileNumber: string;
|
18937
19799
|
apiSecret: string;
|
18938
19800
|
} | undefined;
|
18939
19801
|
lineRichMenuId?: string | null | undefined;
|
@@ -18966,9 +19828,19 @@ export declare const instagramContract: {
|
|
18966
19828
|
channelSecret?: string | undefined;
|
18967
19829
|
additionalCredentials?: any;
|
18968
19830
|
senderId?: string | undefined;
|
19831
|
+
whatsapp?: {
|
19832
|
+
email: string;
|
19833
|
+
wabaExternalId: string;
|
19834
|
+
phoneNumberId: string;
|
19835
|
+
wabaBusinessId?: string | undefined;
|
19836
|
+
clientId?: string | undefined;
|
19837
|
+
channelId?: string | undefined;
|
19838
|
+
status?: "active" | "pending" | undefined;
|
19839
|
+
apiKey?: string | undefined;
|
19840
|
+
} | undefined;
|
18969
19841
|
vonageCredentials?: {
|
18970
|
-
mobileNumber: string;
|
18971
19842
|
apiKey: string;
|
19843
|
+
mobileNumber: string;
|
18972
19844
|
apiSecret: string;
|
18973
19845
|
} | undefined;
|
18974
19846
|
lineRichMenuId?: string | null | undefined;
|
@@ -19025,17 +19897,45 @@ export declare const instagramContract: {
|
|
19025
19897
|
channelSecret: z.ZodOptional<z.ZodString>;
|
19026
19898
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
19027
19899
|
senderId: z.ZodOptional<z.ZodString>;
|
19900
|
+
whatsapp: z.ZodOptional<z.ZodObject<{
|
19901
|
+
wabaBusinessId: z.ZodOptional<z.ZodString>;
|
19902
|
+
wabaExternalId: z.ZodString;
|
19903
|
+
phoneNumberId: z.ZodString;
|
19904
|
+
email: z.ZodString;
|
19905
|
+
clientId: z.ZodOptional<z.ZodString>;
|
19906
|
+
channelId: z.ZodOptional<z.ZodString>;
|
19907
|
+
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
19908
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
19909
|
+
}, "strip", z.ZodTypeAny, {
|
19910
|
+
email: string;
|
19911
|
+
wabaExternalId: string;
|
19912
|
+
phoneNumberId: string;
|
19913
|
+
wabaBusinessId?: string | undefined;
|
19914
|
+
clientId?: string | undefined;
|
19915
|
+
channelId?: string | undefined;
|
19916
|
+
status?: "active" | "pending" | undefined;
|
19917
|
+
apiKey?: string | undefined;
|
19918
|
+
}, {
|
19919
|
+
email: string;
|
19920
|
+
wabaExternalId: string;
|
19921
|
+
phoneNumberId: string;
|
19922
|
+
wabaBusinessId?: string | undefined;
|
19923
|
+
clientId?: string | undefined;
|
19924
|
+
channelId?: string | undefined;
|
19925
|
+
status?: "active" | "pending" | undefined;
|
19926
|
+
apiKey?: string | undefined;
|
19927
|
+
}>>;
|
19028
19928
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
19029
19929
|
mobileNumber: z.ZodString;
|
19030
19930
|
apiKey: z.ZodString;
|
19031
19931
|
apiSecret: z.ZodString;
|
19032
19932
|
}, "strip", z.ZodTypeAny, {
|
19033
|
-
mobileNumber: string;
|
19034
19933
|
apiKey: string;
|
19934
|
+
mobileNumber: string;
|
19035
19935
|
apiSecret: string;
|
19036
19936
|
}, {
|
19037
|
-
mobileNumber: string;
|
19038
19937
|
apiKey: string;
|
19938
|
+
mobileNumber: string;
|
19039
19939
|
apiSecret: string;
|
19040
19940
|
}>>;
|
19041
19941
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
@@ -19047,9 +19947,19 @@ export declare const instagramContract: {
|
|
19047
19947
|
channelSecret?: string | undefined;
|
19048
19948
|
additionalCredentials?: any;
|
19049
19949
|
senderId?: string | undefined;
|
19950
|
+
whatsapp?: {
|
19951
|
+
email: string;
|
19952
|
+
wabaExternalId: string;
|
19953
|
+
phoneNumberId: string;
|
19954
|
+
wabaBusinessId?: string | undefined;
|
19955
|
+
clientId?: string | undefined;
|
19956
|
+
channelId?: string | undefined;
|
19957
|
+
status?: "active" | "pending" | undefined;
|
19958
|
+
apiKey?: string | undefined;
|
19959
|
+
} | undefined;
|
19050
19960
|
vonageCredentials?: {
|
19051
|
-
mobileNumber: string;
|
19052
19961
|
apiKey: string;
|
19962
|
+
mobileNumber: string;
|
19053
19963
|
apiSecret: string;
|
19054
19964
|
} | undefined;
|
19055
19965
|
lineRichMenuId?: string | null | undefined;
|
@@ -19061,9 +19971,19 @@ export declare const instagramContract: {
|
|
19061
19971
|
channelSecret?: string | undefined;
|
19062
19972
|
additionalCredentials?: any;
|
19063
19973
|
senderId?: string | undefined;
|
19974
|
+
whatsapp?: {
|
19975
|
+
email: string;
|
19976
|
+
wabaExternalId: string;
|
19977
|
+
phoneNumberId: string;
|
19978
|
+
wabaBusinessId?: string | undefined;
|
19979
|
+
clientId?: string | undefined;
|
19980
|
+
channelId?: string | undefined;
|
19981
|
+
status?: "active" | "pending" | undefined;
|
19982
|
+
apiKey?: string | undefined;
|
19983
|
+
} | undefined;
|
19064
19984
|
vonageCredentials?: {
|
19065
|
-
mobileNumber: string;
|
19066
19985
|
apiKey: string;
|
19986
|
+
mobileNumber: string;
|
19067
19987
|
apiSecret: string;
|
19068
19988
|
} | undefined;
|
19069
19989
|
lineRichMenuId?: string | null | undefined;
|
@@ -19105,9 +20025,19 @@ export declare const instagramContract: {
|
|
19105
20025
|
channelSecret?: string | undefined;
|
19106
20026
|
additionalCredentials?: any;
|
19107
20027
|
senderId?: string | undefined;
|
20028
|
+
whatsapp?: {
|
20029
|
+
email: string;
|
20030
|
+
wabaExternalId: string;
|
20031
|
+
phoneNumberId: string;
|
20032
|
+
wabaBusinessId?: string | undefined;
|
20033
|
+
clientId?: string | undefined;
|
20034
|
+
channelId?: string | undefined;
|
20035
|
+
status?: "active" | "pending" | undefined;
|
20036
|
+
apiKey?: string | undefined;
|
20037
|
+
} | undefined;
|
19108
20038
|
vonageCredentials?: {
|
19109
|
-
mobileNumber: string;
|
19110
20039
|
apiKey: string;
|
20040
|
+
mobileNumber: string;
|
19111
20041
|
apiSecret: string;
|
19112
20042
|
} | undefined;
|
19113
20043
|
lineRichMenuId?: string | null | undefined;
|
@@ -19137,9 +20067,19 @@ export declare const instagramContract: {
|
|
19137
20067
|
channelSecret?: string | undefined;
|
19138
20068
|
additionalCredentials?: any;
|
19139
20069
|
senderId?: string | undefined;
|
20070
|
+
whatsapp?: {
|
20071
|
+
email: string;
|
20072
|
+
wabaExternalId: string;
|
20073
|
+
phoneNumberId: string;
|
20074
|
+
wabaBusinessId?: string | undefined;
|
20075
|
+
clientId?: string | undefined;
|
20076
|
+
channelId?: string | undefined;
|
20077
|
+
status?: "active" | "pending" | undefined;
|
20078
|
+
apiKey?: string | undefined;
|
20079
|
+
} | undefined;
|
19140
20080
|
vonageCredentials?: {
|
19141
|
-
mobileNumber: string;
|
19142
20081
|
apiKey: string;
|
20082
|
+
mobileNumber: string;
|
19143
20083
|
apiSecret: string;
|
19144
20084
|
} | undefined;
|
19145
20085
|
lineRichMenuId?: string | null | undefined;
|
@@ -19174,17 +20114,45 @@ export declare const instagramContract: {
|
|
19174
20114
|
channelSecret: z.ZodOptional<z.ZodString>;
|
19175
20115
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
19176
20116
|
senderId: z.ZodOptional<z.ZodString>;
|
20117
|
+
whatsapp: z.ZodOptional<z.ZodObject<{
|
20118
|
+
wabaBusinessId: z.ZodOptional<z.ZodString>;
|
20119
|
+
wabaExternalId: z.ZodString;
|
20120
|
+
phoneNumberId: z.ZodString;
|
20121
|
+
email: z.ZodString;
|
20122
|
+
clientId: z.ZodOptional<z.ZodString>;
|
20123
|
+
channelId: z.ZodOptional<z.ZodString>;
|
20124
|
+
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
20125
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
20126
|
+
}, "strip", z.ZodTypeAny, {
|
20127
|
+
email: string;
|
20128
|
+
wabaExternalId: string;
|
20129
|
+
phoneNumberId: string;
|
20130
|
+
wabaBusinessId?: string | undefined;
|
20131
|
+
clientId?: string | undefined;
|
20132
|
+
channelId?: string | undefined;
|
20133
|
+
status?: "active" | "pending" | undefined;
|
20134
|
+
apiKey?: string | undefined;
|
20135
|
+
}, {
|
20136
|
+
email: string;
|
20137
|
+
wabaExternalId: string;
|
20138
|
+
phoneNumberId: string;
|
20139
|
+
wabaBusinessId?: string | undefined;
|
20140
|
+
clientId?: string | undefined;
|
20141
|
+
channelId?: string | undefined;
|
20142
|
+
status?: "active" | "pending" | undefined;
|
20143
|
+
apiKey?: string | undefined;
|
20144
|
+
}>>;
|
19177
20145
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
19178
20146
|
mobileNumber: z.ZodString;
|
19179
20147
|
apiKey: z.ZodString;
|
19180
20148
|
apiSecret: z.ZodString;
|
19181
20149
|
}, "strip", z.ZodTypeAny, {
|
19182
|
-
mobileNumber: string;
|
19183
20150
|
apiKey: string;
|
20151
|
+
mobileNumber: string;
|
19184
20152
|
apiSecret: string;
|
19185
20153
|
}, {
|
19186
|
-
mobileNumber: string;
|
19187
20154
|
apiKey: string;
|
20155
|
+
mobileNumber: string;
|
19188
20156
|
apiSecret: string;
|
19189
20157
|
}>>;
|
19190
20158
|
lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
@@ -19196,9 +20164,19 @@ export declare const instagramContract: {
|
|
19196
20164
|
channelSecret?: string | undefined;
|
19197
20165
|
additionalCredentials?: any;
|
19198
20166
|
senderId?: string | undefined;
|
20167
|
+
whatsapp?: {
|
20168
|
+
email: string;
|
20169
|
+
wabaExternalId: string;
|
20170
|
+
phoneNumberId: string;
|
20171
|
+
wabaBusinessId?: string | undefined;
|
20172
|
+
clientId?: string | undefined;
|
20173
|
+
channelId?: string | undefined;
|
20174
|
+
status?: "active" | "pending" | undefined;
|
20175
|
+
apiKey?: string | undefined;
|
20176
|
+
} | undefined;
|
19199
20177
|
vonageCredentials?: {
|
19200
|
-
mobileNumber: string;
|
19201
20178
|
apiKey: string;
|
20179
|
+
mobileNumber: string;
|
19202
20180
|
apiSecret: string;
|
19203
20181
|
} | undefined;
|
19204
20182
|
lineRichMenuId?: string | null | undefined;
|
@@ -19210,9 +20188,19 @@ export declare const instagramContract: {
|
|
19210
20188
|
channelSecret?: string | undefined;
|
19211
20189
|
additionalCredentials?: any;
|
19212
20190
|
senderId?: string | undefined;
|
20191
|
+
whatsapp?: {
|
20192
|
+
email: string;
|
20193
|
+
wabaExternalId: string;
|
20194
|
+
phoneNumberId: string;
|
20195
|
+
wabaBusinessId?: string | undefined;
|
20196
|
+
clientId?: string | undefined;
|
20197
|
+
channelId?: string | undefined;
|
20198
|
+
status?: "active" | "pending" | undefined;
|
20199
|
+
apiKey?: string | undefined;
|
20200
|
+
} | undefined;
|
19213
20201
|
vonageCredentials?: {
|
19214
|
-
mobileNumber: string;
|
19215
20202
|
apiKey: string;
|
20203
|
+
mobileNumber: string;
|
19216
20204
|
apiSecret: string;
|
19217
20205
|
} | undefined;
|
19218
20206
|
lineRichMenuId?: string | null | undefined;
|
@@ -19254,9 +20242,19 @@ export declare const instagramContract: {
|
|
19254
20242
|
channelSecret?: string | undefined;
|
19255
20243
|
additionalCredentials?: any;
|
19256
20244
|
senderId?: string | undefined;
|
20245
|
+
whatsapp?: {
|
20246
|
+
email: string;
|
20247
|
+
wabaExternalId: string;
|
20248
|
+
phoneNumberId: string;
|
20249
|
+
wabaBusinessId?: string | undefined;
|
20250
|
+
clientId?: string | undefined;
|
20251
|
+
channelId?: string | undefined;
|
20252
|
+
status?: "active" | "pending" | undefined;
|
20253
|
+
apiKey?: string | undefined;
|
20254
|
+
} | undefined;
|
19257
20255
|
vonageCredentials?: {
|
19258
|
-
mobileNumber: string;
|
19259
20256
|
apiKey: string;
|
20257
|
+
mobileNumber: string;
|
19260
20258
|
apiSecret: string;
|
19261
20259
|
} | undefined;
|
19262
20260
|
lineRichMenuId?: string | null | undefined;
|
@@ -19286,9 +20284,19 @@ export declare const instagramContract: {
|
|
19286
20284
|
channelSecret?: string | undefined;
|
19287
20285
|
additionalCredentials?: any;
|
19288
20286
|
senderId?: string | undefined;
|
20287
|
+
whatsapp?: {
|
20288
|
+
email: string;
|
20289
|
+
wabaExternalId: string;
|
20290
|
+
phoneNumberId: string;
|
20291
|
+
wabaBusinessId?: string | undefined;
|
20292
|
+
clientId?: string | undefined;
|
20293
|
+
channelId?: string | undefined;
|
20294
|
+
status?: "active" | "pending" | undefined;
|
20295
|
+
apiKey?: string | undefined;
|
20296
|
+
} | undefined;
|
19289
20297
|
vonageCredentials?: {
|
19290
|
-
mobileNumber: string;
|
19291
20298
|
apiKey: string;
|
20299
|
+
mobileNumber: string;
|
19292
20300
|
apiSecret: string;
|
19293
20301
|
} | undefined;
|
19294
20302
|
lineRichMenuId?: string | null | undefined;
|
@@ -19320,9 +20328,19 @@ export declare const instagramContract: {
|
|
19320
20328
|
channelSecret?: string | undefined;
|
19321
20329
|
additionalCredentials?: any;
|
19322
20330
|
senderId?: string | undefined;
|
20331
|
+
whatsapp?: {
|
20332
|
+
email: string;
|
20333
|
+
wabaExternalId: string;
|
20334
|
+
phoneNumberId: string;
|
20335
|
+
wabaBusinessId?: string | undefined;
|
20336
|
+
clientId?: string | undefined;
|
20337
|
+
channelId?: string | undefined;
|
20338
|
+
status?: "active" | "pending" | undefined;
|
20339
|
+
apiKey?: string | undefined;
|
20340
|
+
} | undefined;
|
19323
20341
|
vonageCredentials?: {
|
19324
|
-
mobileNumber: string;
|
19325
20342
|
apiKey: string;
|
20343
|
+
mobileNumber: string;
|
19326
20344
|
apiSecret: string;
|
19327
20345
|
} | undefined;
|
19328
20346
|
lineRichMenuId?: string | null | undefined;
|
@@ -19355,9 +20373,19 @@ export declare const instagramContract: {
|
|
19355
20373
|
channelSecret?: string | undefined;
|
19356
20374
|
additionalCredentials?: any;
|
19357
20375
|
senderId?: string | undefined;
|
20376
|
+
whatsapp?: {
|
20377
|
+
email: string;
|
20378
|
+
wabaExternalId: string;
|
20379
|
+
phoneNumberId: string;
|
20380
|
+
wabaBusinessId?: string | undefined;
|
20381
|
+
clientId?: string | undefined;
|
20382
|
+
channelId?: string | undefined;
|
20383
|
+
status?: "active" | "pending" | undefined;
|
20384
|
+
apiKey?: string | undefined;
|
20385
|
+
} | undefined;
|
19358
20386
|
vonageCredentials?: {
|
19359
|
-
mobileNumber: string;
|
19360
20387
|
apiKey: string;
|
20388
|
+
mobileNumber: string;
|
19361
20389
|
apiSecret: string;
|
19362
20390
|
} | undefined;
|
19363
20391
|
lineRichMenuId?: string | null | undefined;
|