@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.
Files changed (58) hide show
  1. package/dist/api-contracts/src/channel/index.d.ts +2772 -197
  2. package/dist/api-contracts/src/channel/index.d.ts.map +1 -1
  3. package/dist/api-contracts/src/channel/schema.d.ts +126 -10
  4. package/dist/api-contracts/src/channel/schema.d.ts.map +1 -1
  5. package/dist/api-contracts/src/channel/validation.d.ts +240 -10
  6. package/dist/api-contracts/src/channel/validation.d.ts.map +1 -1
  7. package/dist/api-contracts/src/chat/index.d.ts +24249 -21551
  8. package/dist/api-contracts/src/chat/index.d.ts.map +1 -1
  9. package/dist/api-contracts/src/chat/schema.d.ts +753 -105
  10. package/dist/api-contracts/src/chat/schema.d.ts.map +1 -1
  11. package/dist/api-contracts/src/chat/validation.d.ts +1096 -144
  12. package/dist/api-contracts/src/chat/validation.d.ts.map +1 -1
  13. package/dist/api-contracts/src/contract.d.ts +35856 -4586
  14. package/dist/api-contracts/src/contract.d.ts.map +1 -1
  15. package/dist/api-contracts/src/cx-log/index.d.ts +140 -12
  16. package/dist/api-contracts/src/cx-log/index.d.ts.map +1 -1
  17. package/dist/api-contracts/src/cx-log/schema.d.ts +118 -10
  18. package/dist/api-contracts/src/cx-log/schema.d.ts.map +1 -1
  19. package/dist/api-contracts/src/facebook-feed/index.d.ts +1475 -163
  20. package/dist/api-contracts/src/facebook-feed/index.d.ts.map +1 -1
  21. package/dist/api-contracts/src/facebook-feed/schema.d.ts +99 -11
  22. package/dist/api-contracts/src/facebook-feed/schema.d.ts.map +1 -1
  23. package/dist/api-contracts/src/facebook-feed/validation.d.ts +74 -6
  24. package/dist/api-contracts/src/facebook-feed/validation.d.ts.map +1 -1
  25. package/dist/api-contracts/src/instagram/index.d.ts +1155 -127
  26. package/dist/api-contracts/src/instagram/index.d.ts.map +1 -1
  27. package/dist/api-contracts/src/line/index.d.ts +1034 -122
  28. package/dist/api-contracts/src/line/index.d.ts.map +1 -1
  29. package/dist/api-contracts/src/line/validation.d.ts +123 -15
  30. package/dist/api-contracts/src/line/validation.d.ts.map +1 -1
  31. package/dist/api-contracts/src/mail/mail-contract.d.ts +6 -6
  32. package/dist/api-contracts/src/mail/mail-server-contract.d.ts +6 -6
  33. package/dist/api-contracts/src/mail/schemas/account.schema.d.ts +2 -2
  34. package/dist/api-contracts/src/messenger/index.d.ts +1155 -127
  35. package/dist/api-contracts/src/messenger/index.d.ts.map +1 -1
  36. package/dist/api-contracts/src/messenger/validation.d.ts +74 -6
  37. package/dist/api-contracts/src/messenger/validation.d.ts.map +1 -1
  38. package/dist/api-contracts/src/sms/index.d.ts +225 -29
  39. package/dist/api-contracts/src/sms/index.d.ts.map +1 -1
  40. package/dist/api-contracts/src/sms/schema.d.ts +6 -6
  41. package/dist/api-contracts/src/sms/validation.d.ts +4 -4
  42. package/dist/api-contracts/src/telegram/index.d.ts +837 -101
  43. package/dist/api-contracts/src/telegram/index.d.ts.map +1 -1
  44. package/dist/api-contracts/src/viber/index.d.ts +837 -101
  45. package/dist/api-contracts/src/viber/index.d.ts.map +1 -1
  46. package/dist/api-contracts/src/webchat/index.d.ts +549 -77
  47. package/dist/api-contracts/src/webchat/index.d.ts.map +1 -1
  48. package/dist/api-contracts/src/whatsapp/index.d.ts +637 -642
  49. package/dist/api-contracts/src/whatsapp/index.d.ts.map +1 -1
  50. package/dist/api-contracts/src/workflow-rule/index.d.ts +236 -20
  51. package/dist/api-contracts/src/workflow-rule/index.d.ts.map +1 -1
  52. package/dist/entities/src/enums/chat.d.ts +1 -0
  53. package/dist/entities/src/enums/chat.d.ts.map +1 -1
  54. package/dist/index.js +2394 -2240
  55. package/dist/index.js.map +1 -1
  56. package/dist/index.mjs +2392 -2240
  57. package/dist/index.mjs.map +1 -1
  58. package/package.json +1 -1
@@ -18,17 +18,45 @@ export declare const facebookFeedContract: {
18
18
  channelSecret: z.ZodOptional<z.ZodString>;
19
19
  additionalCredentials: z.ZodOptional<z.ZodAny>;
20
20
  senderId: z.ZodOptional<z.ZodString>;
21
+ whatsapp: z.ZodOptional<z.ZodObject<{
22
+ wabaBusinessId: z.ZodOptional<z.ZodString>;
23
+ wabaExternalId: z.ZodString;
24
+ phoneNumberId: z.ZodString;
25
+ email: z.ZodString;
26
+ clientId: z.ZodOptional<z.ZodString>;
27
+ channelId: z.ZodOptional<z.ZodString>;
28
+ status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
29
+ apiKey: z.ZodOptional<z.ZodString>;
30
+ }, "strip", z.ZodTypeAny, {
31
+ email: string;
32
+ wabaExternalId: string;
33
+ phoneNumberId: string;
34
+ wabaBusinessId?: string | undefined;
35
+ clientId?: string | undefined;
36
+ channelId?: string | undefined;
37
+ status?: "active" | "pending" | undefined;
38
+ apiKey?: string | undefined;
39
+ }, {
40
+ email: string;
41
+ wabaExternalId: string;
42
+ phoneNumberId: string;
43
+ wabaBusinessId?: string | undefined;
44
+ clientId?: string | undefined;
45
+ channelId?: string | undefined;
46
+ status?: "active" | "pending" | undefined;
47
+ apiKey?: string | undefined;
48
+ }>>;
21
49
  vonageCredentials: z.ZodOptional<z.ZodObject<{
22
50
  mobileNumber: z.ZodString;
23
51
  apiKey: z.ZodString;
24
52
  apiSecret: z.ZodString;
25
53
  }, "strip", z.ZodTypeAny, {
26
- mobileNumber: string;
27
54
  apiKey: string;
55
+ mobileNumber: string;
28
56
  apiSecret: string;
29
57
  }, {
30
- mobileNumber: string;
31
58
  apiKey: string;
59
+ mobileNumber: string;
32
60
  apiSecret: string;
33
61
  }>>;
34
62
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -40,9 +68,19 @@ export declare const facebookFeedContract: {
40
68
  channelSecret?: string | undefined;
41
69
  additionalCredentials?: any;
42
70
  senderId?: string | undefined;
71
+ whatsapp?: {
72
+ email: string;
73
+ wabaExternalId: string;
74
+ phoneNumberId: string;
75
+ wabaBusinessId?: string | undefined;
76
+ clientId?: string | undefined;
77
+ channelId?: string | undefined;
78
+ status?: "active" | "pending" | undefined;
79
+ apiKey?: string | undefined;
80
+ } | undefined;
43
81
  vonageCredentials?: {
44
- mobileNumber: string;
45
82
  apiKey: string;
83
+ mobileNumber: string;
46
84
  apiSecret: string;
47
85
  } | undefined;
48
86
  lineRichMenuId?: string | null | undefined;
@@ -54,9 +92,19 @@ export declare const facebookFeedContract: {
54
92
  channelSecret?: string | undefined;
55
93
  additionalCredentials?: any;
56
94
  senderId?: string | undefined;
95
+ whatsapp?: {
96
+ email: string;
97
+ wabaExternalId: string;
98
+ phoneNumberId: string;
99
+ wabaBusinessId?: string | undefined;
100
+ clientId?: string | undefined;
101
+ channelId?: string | undefined;
102
+ status?: "active" | "pending" | undefined;
103
+ apiKey?: string | undefined;
104
+ } | undefined;
57
105
  vonageCredentials?: {
58
- mobileNumber: string;
59
106
  apiKey: string;
107
+ mobileNumber: string;
60
108
  apiSecret: string;
61
109
  } | undefined;
62
110
  lineRichMenuId?: string | null | undefined;
@@ -98,9 +146,19 @@ export declare const facebookFeedContract: {
98
146
  channelSecret?: string | undefined;
99
147
  additionalCredentials?: any;
100
148
  senderId?: string | undefined;
149
+ whatsapp?: {
150
+ email: string;
151
+ wabaExternalId: string;
152
+ phoneNumberId: string;
153
+ wabaBusinessId?: string | undefined;
154
+ clientId?: string | undefined;
155
+ channelId?: string | undefined;
156
+ status?: "active" | "pending" | undefined;
157
+ apiKey?: string | undefined;
158
+ } | undefined;
101
159
  vonageCredentials?: {
102
- mobileNumber: string;
103
160
  apiKey: string;
161
+ mobileNumber: string;
104
162
  apiSecret: string;
105
163
  } | undefined;
106
164
  lineRichMenuId?: string | null | undefined;
@@ -130,9 +188,19 @@ export declare const facebookFeedContract: {
130
188
  channelSecret?: string | undefined;
131
189
  additionalCredentials?: any;
132
190
  senderId?: string | undefined;
191
+ whatsapp?: {
192
+ email: string;
193
+ wabaExternalId: string;
194
+ phoneNumberId: string;
195
+ wabaBusinessId?: string | undefined;
196
+ clientId?: string | undefined;
197
+ channelId?: string | undefined;
198
+ status?: "active" | "pending" | undefined;
199
+ apiKey?: string | undefined;
200
+ } | undefined;
133
201
  vonageCredentials?: {
134
- mobileNumber: string;
135
202
  apiKey: string;
203
+ mobileNumber: string;
136
204
  apiSecret: string;
137
205
  } | undefined;
138
206
  lineRichMenuId?: string | null | undefined;
@@ -167,17 +235,45 @@ export declare const facebookFeedContract: {
167
235
  channelSecret: z.ZodOptional<z.ZodString>;
168
236
  additionalCredentials: z.ZodOptional<z.ZodAny>;
169
237
  senderId: z.ZodOptional<z.ZodString>;
238
+ whatsapp: z.ZodOptional<z.ZodObject<{
239
+ wabaBusinessId: z.ZodOptional<z.ZodString>;
240
+ wabaExternalId: z.ZodString;
241
+ phoneNumberId: z.ZodString;
242
+ email: z.ZodString;
243
+ clientId: z.ZodOptional<z.ZodString>;
244
+ channelId: z.ZodOptional<z.ZodString>;
245
+ status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
246
+ apiKey: z.ZodOptional<z.ZodString>;
247
+ }, "strip", z.ZodTypeAny, {
248
+ email: string;
249
+ wabaExternalId: string;
250
+ phoneNumberId: string;
251
+ wabaBusinessId?: string | undefined;
252
+ clientId?: string | undefined;
253
+ channelId?: string | undefined;
254
+ status?: "active" | "pending" | undefined;
255
+ apiKey?: string | undefined;
256
+ }, {
257
+ email: string;
258
+ wabaExternalId: string;
259
+ phoneNumberId: string;
260
+ wabaBusinessId?: string | undefined;
261
+ clientId?: string | undefined;
262
+ channelId?: string | undefined;
263
+ status?: "active" | "pending" | undefined;
264
+ apiKey?: string | undefined;
265
+ }>>;
170
266
  vonageCredentials: z.ZodOptional<z.ZodObject<{
171
267
  mobileNumber: z.ZodString;
172
268
  apiKey: z.ZodString;
173
269
  apiSecret: z.ZodString;
174
270
  }, "strip", z.ZodTypeAny, {
175
- mobileNumber: string;
176
271
  apiKey: string;
272
+ mobileNumber: string;
177
273
  apiSecret: string;
178
274
  }, {
179
- mobileNumber: string;
180
275
  apiKey: string;
276
+ mobileNumber: string;
181
277
  apiSecret: string;
182
278
  }>>;
183
279
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -189,9 +285,19 @@ export declare const facebookFeedContract: {
189
285
  channelSecret?: string | undefined;
190
286
  additionalCredentials?: any;
191
287
  senderId?: string | undefined;
288
+ whatsapp?: {
289
+ email: string;
290
+ wabaExternalId: string;
291
+ phoneNumberId: string;
292
+ wabaBusinessId?: string | undefined;
293
+ clientId?: string | undefined;
294
+ channelId?: string | undefined;
295
+ status?: "active" | "pending" | undefined;
296
+ apiKey?: string | undefined;
297
+ } | undefined;
192
298
  vonageCredentials?: {
193
- mobileNumber: string;
194
299
  apiKey: string;
300
+ mobileNumber: string;
195
301
  apiSecret: string;
196
302
  } | undefined;
197
303
  lineRichMenuId?: string | null | undefined;
@@ -203,9 +309,19 @@ export declare const facebookFeedContract: {
203
309
  channelSecret?: string | undefined;
204
310
  additionalCredentials?: any;
205
311
  senderId?: string | undefined;
312
+ whatsapp?: {
313
+ email: string;
314
+ wabaExternalId: string;
315
+ phoneNumberId: string;
316
+ wabaBusinessId?: string | undefined;
317
+ clientId?: string | undefined;
318
+ channelId?: string | undefined;
319
+ status?: "active" | "pending" | undefined;
320
+ apiKey?: string | undefined;
321
+ } | undefined;
206
322
  vonageCredentials?: {
207
- mobileNumber: string;
208
323
  apiKey: string;
324
+ mobileNumber: string;
209
325
  apiSecret: string;
210
326
  } | undefined;
211
327
  lineRichMenuId?: string | null | undefined;
@@ -247,9 +363,19 @@ export declare const facebookFeedContract: {
247
363
  channelSecret?: string | undefined;
248
364
  additionalCredentials?: any;
249
365
  senderId?: string | undefined;
366
+ whatsapp?: {
367
+ email: string;
368
+ wabaExternalId: string;
369
+ phoneNumberId: string;
370
+ wabaBusinessId?: string | undefined;
371
+ clientId?: string | undefined;
372
+ channelId?: string | undefined;
373
+ status?: "active" | "pending" | undefined;
374
+ apiKey?: string | undefined;
375
+ } | undefined;
250
376
  vonageCredentials?: {
251
- mobileNumber: string;
252
377
  apiKey: string;
378
+ mobileNumber: string;
253
379
  apiSecret: string;
254
380
  } | undefined;
255
381
  lineRichMenuId?: string | null | undefined;
@@ -279,9 +405,19 @@ export declare const facebookFeedContract: {
279
405
  channelSecret?: string | undefined;
280
406
  additionalCredentials?: any;
281
407
  senderId?: string | undefined;
408
+ whatsapp?: {
409
+ email: string;
410
+ wabaExternalId: string;
411
+ phoneNumberId: string;
412
+ wabaBusinessId?: string | undefined;
413
+ clientId?: string | undefined;
414
+ channelId?: string | undefined;
415
+ status?: "active" | "pending" | undefined;
416
+ apiKey?: string | undefined;
417
+ } | undefined;
282
418
  vonageCredentials?: {
283
- mobileNumber: string;
284
419
  apiKey: string;
420
+ mobileNumber: string;
285
421
  apiSecret: string;
286
422
  } | undefined;
287
423
  lineRichMenuId?: string | null | undefined;
@@ -313,9 +449,19 @@ export declare const facebookFeedContract: {
313
449
  channelSecret?: string | undefined;
314
450
  additionalCredentials?: any;
315
451
  senderId?: string | undefined;
452
+ whatsapp?: {
453
+ email: string;
454
+ wabaExternalId: string;
455
+ phoneNumberId: string;
456
+ wabaBusinessId?: string | undefined;
457
+ clientId?: string | undefined;
458
+ channelId?: string | undefined;
459
+ status?: "active" | "pending" | undefined;
460
+ apiKey?: string | undefined;
461
+ } | undefined;
316
462
  vonageCredentials?: {
317
- mobileNumber: string;
318
463
  apiKey: string;
464
+ mobileNumber: string;
319
465
  apiSecret: string;
320
466
  } | undefined;
321
467
  lineRichMenuId?: string | null | undefined;
@@ -348,9 +494,19 @@ export declare const facebookFeedContract: {
348
494
  channelSecret?: string | undefined;
349
495
  additionalCredentials?: any;
350
496
  senderId?: string | undefined;
497
+ whatsapp?: {
498
+ email: string;
499
+ wabaExternalId: string;
500
+ phoneNumberId: string;
501
+ wabaBusinessId?: string | undefined;
502
+ clientId?: string | undefined;
503
+ channelId?: string | undefined;
504
+ status?: "active" | "pending" | undefined;
505
+ apiKey?: string | undefined;
506
+ } | undefined;
351
507
  vonageCredentials?: {
352
- mobileNumber: string;
353
508
  apiKey: string;
509
+ mobileNumber: string;
354
510
  apiSecret: string;
355
511
  } | undefined;
356
512
  lineRichMenuId?: string | null | undefined;
@@ -407,17 +563,45 @@ export declare const facebookFeedContract: {
407
563
  channelSecret: z.ZodOptional<z.ZodString>;
408
564
  additionalCredentials: z.ZodOptional<z.ZodAny>;
409
565
  senderId: z.ZodOptional<z.ZodString>;
566
+ whatsapp: z.ZodOptional<z.ZodObject<{
567
+ wabaBusinessId: z.ZodOptional<z.ZodString>;
568
+ wabaExternalId: z.ZodString;
569
+ phoneNumberId: z.ZodString;
570
+ email: z.ZodString;
571
+ clientId: z.ZodOptional<z.ZodString>;
572
+ channelId: z.ZodOptional<z.ZodString>;
573
+ status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
574
+ apiKey: z.ZodOptional<z.ZodString>;
575
+ }, "strip", z.ZodTypeAny, {
576
+ email: string;
577
+ wabaExternalId: string;
578
+ phoneNumberId: string;
579
+ wabaBusinessId?: string | undefined;
580
+ clientId?: string | undefined;
581
+ channelId?: string | undefined;
582
+ status?: "active" | "pending" | undefined;
583
+ apiKey?: string | undefined;
584
+ }, {
585
+ email: string;
586
+ wabaExternalId: string;
587
+ phoneNumberId: string;
588
+ wabaBusinessId?: string | undefined;
589
+ clientId?: string | undefined;
590
+ channelId?: string | undefined;
591
+ status?: "active" | "pending" | undefined;
592
+ apiKey?: string | undefined;
593
+ }>>;
410
594
  vonageCredentials: z.ZodOptional<z.ZodObject<{
411
595
  mobileNumber: z.ZodString;
412
596
  apiKey: z.ZodString;
413
597
  apiSecret: z.ZodString;
414
598
  }, "strip", z.ZodTypeAny, {
415
- mobileNumber: string;
416
599
  apiKey: string;
600
+ mobileNumber: string;
417
601
  apiSecret: string;
418
602
  }, {
419
- mobileNumber: string;
420
603
  apiKey: string;
604
+ mobileNumber: string;
421
605
  apiSecret: string;
422
606
  }>>;
423
607
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -429,9 +613,19 @@ export declare const facebookFeedContract: {
429
613
  channelSecret?: string | undefined;
430
614
  additionalCredentials?: any;
431
615
  senderId?: string | undefined;
616
+ whatsapp?: {
617
+ email: string;
618
+ wabaExternalId: string;
619
+ phoneNumberId: string;
620
+ wabaBusinessId?: string | undefined;
621
+ clientId?: string | undefined;
622
+ channelId?: string | undefined;
623
+ status?: "active" | "pending" | undefined;
624
+ apiKey?: string | undefined;
625
+ } | undefined;
432
626
  vonageCredentials?: {
433
- mobileNumber: string;
434
627
  apiKey: string;
628
+ mobileNumber: string;
435
629
  apiSecret: string;
436
630
  } | undefined;
437
631
  lineRichMenuId?: string | null | undefined;
@@ -443,9 +637,19 @@ export declare const facebookFeedContract: {
443
637
  channelSecret?: string | undefined;
444
638
  additionalCredentials?: any;
445
639
  senderId?: string | undefined;
640
+ whatsapp?: {
641
+ email: string;
642
+ wabaExternalId: string;
643
+ phoneNumberId: string;
644
+ wabaBusinessId?: string | undefined;
645
+ clientId?: string | undefined;
646
+ channelId?: string | undefined;
647
+ status?: "active" | "pending" | undefined;
648
+ apiKey?: string | undefined;
649
+ } | undefined;
446
650
  vonageCredentials?: {
447
- mobileNumber: string;
448
651
  apiKey: string;
652
+ mobileNumber: string;
449
653
  apiSecret: string;
450
654
  } | undefined;
451
655
  lineRichMenuId?: string | null | undefined;
@@ -487,9 +691,19 @@ export declare const facebookFeedContract: {
487
691
  channelSecret?: string | undefined;
488
692
  additionalCredentials?: any;
489
693
  senderId?: string | undefined;
694
+ whatsapp?: {
695
+ email: string;
696
+ wabaExternalId: string;
697
+ phoneNumberId: string;
698
+ wabaBusinessId?: string | undefined;
699
+ clientId?: string | undefined;
700
+ channelId?: string | undefined;
701
+ status?: "active" | "pending" | undefined;
702
+ apiKey?: string | undefined;
703
+ } | undefined;
490
704
  vonageCredentials?: {
491
- mobileNumber: string;
492
705
  apiKey: string;
706
+ mobileNumber: string;
493
707
  apiSecret: string;
494
708
  } | undefined;
495
709
  lineRichMenuId?: string | null | undefined;
@@ -519,9 +733,19 @@ export declare const facebookFeedContract: {
519
733
  channelSecret?: string | undefined;
520
734
  additionalCredentials?: any;
521
735
  senderId?: string | undefined;
736
+ whatsapp?: {
737
+ email: string;
738
+ wabaExternalId: string;
739
+ phoneNumberId: string;
740
+ wabaBusinessId?: string | undefined;
741
+ clientId?: string | undefined;
742
+ channelId?: string | undefined;
743
+ status?: "active" | "pending" | undefined;
744
+ apiKey?: string | undefined;
745
+ } | undefined;
522
746
  vonageCredentials?: {
523
- mobileNumber: string;
524
747
  apiKey: string;
748
+ mobileNumber: string;
525
749
  apiSecret: string;
526
750
  } | undefined;
527
751
  lineRichMenuId?: string | null | undefined;
@@ -556,17 +780,45 @@ export declare const facebookFeedContract: {
556
780
  channelSecret: z.ZodOptional<z.ZodString>;
557
781
  additionalCredentials: z.ZodOptional<z.ZodAny>;
558
782
  senderId: z.ZodOptional<z.ZodString>;
783
+ whatsapp: z.ZodOptional<z.ZodObject<{
784
+ wabaBusinessId: z.ZodOptional<z.ZodString>;
785
+ wabaExternalId: z.ZodString;
786
+ phoneNumberId: z.ZodString;
787
+ email: z.ZodString;
788
+ clientId: z.ZodOptional<z.ZodString>;
789
+ channelId: z.ZodOptional<z.ZodString>;
790
+ status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
791
+ apiKey: z.ZodOptional<z.ZodString>;
792
+ }, "strip", z.ZodTypeAny, {
793
+ email: string;
794
+ wabaExternalId: string;
795
+ phoneNumberId: string;
796
+ wabaBusinessId?: string | undefined;
797
+ clientId?: string | undefined;
798
+ channelId?: string | undefined;
799
+ status?: "active" | "pending" | undefined;
800
+ apiKey?: string | undefined;
801
+ }, {
802
+ email: string;
803
+ wabaExternalId: string;
804
+ phoneNumberId: string;
805
+ wabaBusinessId?: string | undefined;
806
+ clientId?: string | undefined;
807
+ channelId?: string | undefined;
808
+ status?: "active" | "pending" | undefined;
809
+ apiKey?: string | undefined;
810
+ }>>;
559
811
  vonageCredentials: z.ZodOptional<z.ZodObject<{
560
812
  mobileNumber: z.ZodString;
561
813
  apiKey: z.ZodString;
562
814
  apiSecret: z.ZodString;
563
815
  }, "strip", z.ZodTypeAny, {
564
- mobileNumber: string;
565
816
  apiKey: string;
817
+ mobileNumber: string;
566
818
  apiSecret: string;
567
819
  }, {
568
- mobileNumber: string;
569
820
  apiKey: string;
821
+ mobileNumber: string;
570
822
  apiSecret: string;
571
823
  }>>;
572
824
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -578,9 +830,19 @@ export declare const facebookFeedContract: {
578
830
  channelSecret?: string | undefined;
579
831
  additionalCredentials?: any;
580
832
  senderId?: string | undefined;
833
+ whatsapp?: {
834
+ email: string;
835
+ wabaExternalId: string;
836
+ phoneNumberId: string;
837
+ wabaBusinessId?: string | undefined;
838
+ clientId?: string | undefined;
839
+ channelId?: string | undefined;
840
+ status?: "active" | "pending" | undefined;
841
+ apiKey?: string | undefined;
842
+ } | undefined;
581
843
  vonageCredentials?: {
582
- mobileNumber: string;
583
844
  apiKey: string;
845
+ mobileNumber: string;
584
846
  apiSecret: string;
585
847
  } | undefined;
586
848
  lineRichMenuId?: string | null | undefined;
@@ -592,9 +854,19 @@ export declare const facebookFeedContract: {
592
854
  channelSecret?: string | undefined;
593
855
  additionalCredentials?: any;
594
856
  senderId?: string | undefined;
857
+ whatsapp?: {
858
+ email: string;
859
+ wabaExternalId: string;
860
+ phoneNumberId: string;
861
+ wabaBusinessId?: string | undefined;
862
+ clientId?: string | undefined;
863
+ channelId?: string | undefined;
864
+ status?: "active" | "pending" | undefined;
865
+ apiKey?: string | undefined;
866
+ } | undefined;
595
867
  vonageCredentials?: {
596
- mobileNumber: string;
597
868
  apiKey: string;
869
+ mobileNumber: string;
598
870
  apiSecret: string;
599
871
  } | undefined;
600
872
  lineRichMenuId?: string | null | undefined;
@@ -636,9 +908,19 @@ export declare const facebookFeedContract: {
636
908
  channelSecret?: string | undefined;
637
909
  additionalCredentials?: any;
638
910
  senderId?: string | undefined;
911
+ whatsapp?: {
912
+ email: string;
913
+ wabaExternalId: string;
914
+ phoneNumberId: string;
915
+ wabaBusinessId?: string | undefined;
916
+ clientId?: string | undefined;
917
+ channelId?: string | undefined;
918
+ status?: "active" | "pending" | undefined;
919
+ apiKey?: string | undefined;
920
+ } | undefined;
639
921
  vonageCredentials?: {
640
- mobileNumber: string;
641
922
  apiKey: string;
923
+ mobileNumber: string;
642
924
  apiSecret: string;
643
925
  } | undefined;
644
926
  lineRichMenuId?: string | null | undefined;
@@ -668,9 +950,19 @@ export declare const facebookFeedContract: {
668
950
  channelSecret?: string | undefined;
669
951
  additionalCredentials?: any;
670
952
  senderId?: string | undefined;
953
+ whatsapp?: {
954
+ email: string;
955
+ wabaExternalId: string;
956
+ phoneNumberId: string;
957
+ wabaBusinessId?: string | undefined;
958
+ clientId?: string | undefined;
959
+ channelId?: string | undefined;
960
+ status?: "active" | "pending" | undefined;
961
+ apiKey?: string | undefined;
962
+ } | undefined;
671
963
  vonageCredentials?: {
672
- mobileNumber: string;
673
964
  apiKey: string;
965
+ mobileNumber: string;
674
966
  apiSecret: string;
675
967
  } | undefined;
676
968
  lineRichMenuId?: string | null | undefined;
@@ -702,9 +994,19 @@ export declare const facebookFeedContract: {
702
994
  channelSecret?: string | undefined;
703
995
  additionalCredentials?: any;
704
996
  senderId?: string | undefined;
997
+ whatsapp?: {
998
+ email: string;
999
+ wabaExternalId: string;
1000
+ phoneNumberId: string;
1001
+ wabaBusinessId?: string | undefined;
1002
+ clientId?: string | undefined;
1003
+ channelId?: string | undefined;
1004
+ status?: "active" | "pending" | undefined;
1005
+ apiKey?: string | undefined;
1006
+ } | undefined;
705
1007
  vonageCredentials?: {
706
- mobileNumber: string;
707
1008
  apiKey: string;
1009
+ mobileNumber: string;
708
1010
  apiSecret: string;
709
1011
  } | undefined;
710
1012
  lineRichMenuId?: string | null | undefined;
@@ -737,9 +1039,19 @@ export declare const facebookFeedContract: {
737
1039
  channelSecret?: string | undefined;
738
1040
  additionalCredentials?: any;
739
1041
  senderId?: string | undefined;
1042
+ whatsapp?: {
1043
+ email: string;
1044
+ wabaExternalId: string;
1045
+ phoneNumberId: string;
1046
+ wabaBusinessId?: string | undefined;
1047
+ clientId?: string | undefined;
1048
+ channelId?: string | undefined;
1049
+ status?: "active" | "pending" | undefined;
1050
+ apiKey?: string | undefined;
1051
+ } | undefined;
740
1052
  vonageCredentials?: {
741
- mobileNumber: string;
742
1053
  apiKey: string;
1054
+ mobileNumber: string;
743
1055
  apiSecret: string;
744
1056
  } | undefined;
745
1057
  lineRichMenuId?: string | null | undefined;
@@ -808,17 +1120,45 @@ export declare const facebookFeedContract: {
808
1120
  channelSecret: z.ZodOptional<z.ZodString>;
809
1121
  additionalCredentials: z.ZodOptional<z.ZodAny>;
810
1122
  senderId: z.ZodOptional<z.ZodString>;
1123
+ whatsapp: z.ZodOptional<z.ZodObject<{
1124
+ wabaBusinessId: z.ZodOptional<z.ZodString>;
1125
+ wabaExternalId: z.ZodString;
1126
+ phoneNumberId: z.ZodString;
1127
+ email: z.ZodString;
1128
+ clientId: z.ZodOptional<z.ZodString>;
1129
+ channelId: z.ZodOptional<z.ZodString>;
1130
+ status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
1131
+ apiKey: z.ZodOptional<z.ZodString>;
1132
+ }, "strip", z.ZodTypeAny, {
1133
+ email: string;
1134
+ wabaExternalId: string;
1135
+ phoneNumberId: string;
1136
+ wabaBusinessId?: string | undefined;
1137
+ clientId?: string | undefined;
1138
+ channelId?: string | undefined;
1139
+ status?: "active" | "pending" | undefined;
1140
+ apiKey?: string | undefined;
1141
+ }, {
1142
+ email: string;
1143
+ wabaExternalId: string;
1144
+ phoneNumberId: string;
1145
+ wabaBusinessId?: string | undefined;
1146
+ clientId?: string | undefined;
1147
+ channelId?: string | undefined;
1148
+ status?: "active" | "pending" | undefined;
1149
+ apiKey?: string | undefined;
1150
+ }>>;
811
1151
  vonageCredentials: z.ZodOptional<z.ZodObject<{
812
1152
  mobileNumber: z.ZodString;
813
1153
  apiKey: z.ZodString;
814
1154
  apiSecret: z.ZodString;
815
1155
  }, "strip", z.ZodTypeAny, {
816
- mobileNumber: string;
817
1156
  apiKey: string;
1157
+ mobileNumber: string;
818
1158
  apiSecret: string;
819
1159
  }, {
820
- mobileNumber: string;
821
1160
  apiKey: string;
1161
+ mobileNumber: string;
822
1162
  apiSecret: string;
823
1163
  }>>;
824
1164
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -830,9 +1170,19 @@ export declare const facebookFeedContract: {
830
1170
  channelSecret?: string | undefined;
831
1171
  additionalCredentials?: any;
832
1172
  senderId?: string | undefined;
1173
+ whatsapp?: {
1174
+ email: string;
1175
+ wabaExternalId: string;
1176
+ phoneNumberId: string;
1177
+ wabaBusinessId?: string | undefined;
1178
+ clientId?: string | undefined;
1179
+ channelId?: string | undefined;
1180
+ status?: "active" | "pending" | undefined;
1181
+ apiKey?: string | undefined;
1182
+ } | undefined;
833
1183
  vonageCredentials?: {
834
- mobileNumber: string;
835
1184
  apiKey: string;
1185
+ mobileNumber: string;
836
1186
  apiSecret: string;
837
1187
  } | undefined;
838
1188
  lineRichMenuId?: string | null | undefined;
@@ -844,9 +1194,19 @@ export declare const facebookFeedContract: {
844
1194
  channelSecret?: string | undefined;
845
1195
  additionalCredentials?: any;
846
1196
  senderId?: string | undefined;
1197
+ whatsapp?: {
1198
+ email: string;
1199
+ wabaExternalId: string;
1200
+ phoneNumberId: string;
1201
+ wabaBusinessId?: string | undefined;
1202
+ clientId?: string | undefined;
1203
+ channelId?: string | undefined;
1204
+ status?: "active" | "pending" | undefined;
1205
+ apiKey?: string | undefined;
1206
+ } | undefined;
847
1207
  vonageCredentials?: {
848
- mobileNumber: string;
849
1208
  apiKey: string;
1209
+ mobileNumber: string;
850
1210
  apiSecret: string;
851
1211
  } | undefined;
852
1212
  lineRichMenuId?: string | null | undefined;
@@ -888,9 +1248,19 @@ export declare const facebookFeedContract: {
888
1248
  channelSecret?: string | undefined;
889
1249
  additionalCredentials?: any;
890
1250
  senderId?: string | undefined;
1251
+ whatsapp?: {
1252
+ email: string;
1253
+ wabaExternalId: string;
1254
+ phoneNumberId: string;
1255
+ wabaBusinessId?: string | undefined;
1256
+ clientId?: string | undefined;
1257
+ channelId?: string | undefined;
1258
+ status?: "active" | "pending" | undefined;
1259
+ apiKey?: string | undefined;
1260
+ } | undefined;
891
1261
  vonageCredentials?: {
892
- mobileNumber: string;
893
1262
  apiKey: string;
1263
+ mobileNumber: string;
894
1264
  apiSecret: string;
895
1265
  } | undefined;
896
1266
  lineRichMenuId?: string | null | undefined;
@@ -920,9 +1290,19 @@ export declare const facebookFeedContract: {
920
1290
  channelSecret?: string | undefined;
921
1291
  additionalCredentials?: any;
922
1292
  senderId?: string | undefined;
1293
+ whatsapp?: {
1294
+ email: string;
1295
+ wabaExternalId: string;
1296
+ phoneNumberId: string;
1297
+ wabaBusinessId?: string | undefined;
1298
+ clientId?: string | undefined;
1299
+ channelId?: string | undefined;
1300
+ status?: "active" | "pending" | undefined;
1301
+ apiKey?: string | undefined;
1302
+ } | undefined;
923
1303
  vonageCredentials?: {
924
- mobileNumber: string;
925
1304
  apiKey: string;
1305
+ mobileNumber: string;
926
1306
  apiSecret: string;
927
1307
  } | undefined;
928
1308
  lineRichMenuId?: string | null | undefined;
@@ -954,9 +1334,19 @@ export declare const facebookFeedContract: {
954
1334
  channelSecret?: string | undefined;
955
1335
  additionalCredentials?: any;
956
1336
  senderId?: string | undefined;
1337
+ whatsapp?: {
1338
+ email: string;
1339
+ wabaExternalId: string;
1340
+ phoneNumberId: string;
1341
+ wabaBusinessId?: string | undefined;
1342
+ clientId?: string | undefined;
1343
+ channelId?: string | undefined;
1344
+ status?: "active" | "pending" | undefined;
1345
+ apiKey?: string | undefined;
1346
+ } | undefined;
957
1347
  vonageCredentials?: {
958
- mobileNumber: string;
959
1348
  apiKey: string;
1349
+ mobileNumber: string;
960
1350
  apiSecret: string;
961
1351
  } | undefined;
962
1352
  lineRichMenuId?: string | null | undefined;
@@ -989,9 +1379,19 @@ export declare const facebookFeedContract: {
989
1379
  channelSecret?: string | undefined;
990
1380
  additionalCredentials?: any;
991
1381
  senderId?: string | undefined;
1382
+ whatsapp?: {
1383
+ email: string;
1384
+ wabaExternalId: string;
1385
+ phoneNumberId: string;
1386
+ wabaBusinessId?: string | undefined;
1387
+ clientId?: string | undefined;
1388
+ channelId?: string | undefined;
1389
+ status?: "active" | "pending" | undefined;
1390
+ apiKey?: string | undefined;
1391
+ } | undefined;
992
1392
  vonageCredentials?: {
993
- mobileNumber: string;
994
1393
  apiKey: string;
1394
+ mobileNumber: string;
995
1395
  apiSecret: string;
996
1396
  } | undefined;
997
1397
  lineRichMenuId?: string | null | undefined;
@@ -1060,17 +1460,45 @@ export declare const facebookFeedContract: {
1060
1460
  channelSecret: z.ZodOptional<z.ZodString>;
1061
1461
  additionalCredentials: z.ZodOptional<z.ZodAny>;
1062
1462
  senderId: z.ZodOptional<z.ZodString>;
1463
+ whatsapp: z.ZodOptional<z.ZodObject<{
1464
+ wabaBusinessId: z.ZodOptional<z.ZodString>;
1465
+ wabaExternalId: z.ZodString;
1466
+ phoneNumberId: z.ZodString;
1467
+ email: z.ZodString;
1468
+ clientId: z.ZodOptional<z.ZodString>;
1469
+ channelId: z.ZodOptional<z.ZodString>;
1470
+ status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
1471
+ apiKey: z.ZodOptional<z.ZodString>;
1472
+ }, "strip", z.ZodTypeAny, {
1473
+ email: string;
1474
+ wabaExternalId: string;
1475
+ phoneNumberId: string;
1476
+ wabaBusinessId?: string | undefined;
1477
+ clientId?: string | undefined;
1478
+ channelId?: string | undefined;
1479
+ status?: "active" | "pending" | undefined;
1480
+ apiKey?: string | undefined;
1481
+ }, {
1482
+ email: string;
1483
+ wabaExternalId: string;
1484
+ phoneNumberId: string;
1485
+ wabaBusinessId?: string | undefined;
1486
+ clientId?: string | undefined;
1487
+ channelId?: string | undefined;
1488
+ status?: "active" | "pending" | undefined;
1489
+ apiKey?: string | undefined;
1490
+ }>>;
1063
1491
  vonageCredentials: z.ZodOptional<z.ZodObject<{
1064
1492
  mobileNumber: z.ZodString;
1065
1493
  apiKey: z.ZodString;
1066
1494
  apiSecret: z.ZodString;
1067
1495
  }, "strip", z.ZodTypeAny, {
1068
- mobileNumber: string;
1069
1496
  apiKey: string;
1497
+ mobileNumber: string;
1070
1498
  apiSecret: string;
1071
1499
  }, {
1072
- mobileNumber: string;
1073
1500
  apiKey: string;
1501
+ mobileNumber: string;
1074
1502
  apiSecret: string;
1075
1503
  }>>;
1076
1504
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -1082,9 +1510,19 @@ export declare const facebookFeedContract: {
1082
1510
  channelSecret?: string | undefined;
1083
1511
  additionalCredentials?: any;
1084
1512
  senderId?: string | undefined;
1513
+ whatsapp?: {
1514
+ email: string;
1515
+ wabaExternalId: string;
1516
+ phoneNumberId: string;
1517
+ wabaBusinessId?: string | undefined;
1518
+ clientId?: string | undefined;
1519
+ channelId?: string | undefined;
1520
+ status?: "active" | "pending" | undefined;
1521
+ apiKey?: string | undefined;
1522
+ } | undefined;
1085
1523
  vonageCredentials?: {
1086
- mobileNumber: string;
1087
1524
  apiKey: string;
1525
+ mobileNumber: string;
1088
1526
  apiSecret: string;
1089
1527
  } | undefined;
1090
1528
  lineRichMenuId?: string | null | undefined;
@@ -1096,9 +1534,19 @@ export declare const facebookFeedContract: {
1096
1534
  channelSecret?: string | undefined;
1097
1535
  additionalCredentials?: any;
1098
1536
  senderId?: string | undefined;
1537
+ whatsapp?: {
1538
+ email: string;
1539
+ wabaExternalId: string;
1540
+ phoneNumberId: string;
1541
+ wabaBusinessId?: string | undefined;
1542
+ clientId?: string | undefined;
1543
+ channelId?: string | undefined;
1544
+ status?: "active" | "pending" | undefined;
1545
+ apiKey?: string | undefined;
1546
+ } | undefined;
1099
1547
  vonageCredentials?: {
1100
- mobileNumber: string;
1101
1548
  apiKey: string;
1549
+ mobileNumber: string;
1102
1550
  apiSecret: string;
1103
1551
  } | undefined;
1104
1552
  lineRichMenuId?: string | null | undefined;
@@ -1140,9 +1588,19 @@ export declare const facebookFeedContract: {
1140
1588
  channelSecret?: string | undefined;
1141
1589
  additionalCredentials?: any;
1142
1590
  senderId?: string | undefined;
1591
+ whatsapp?: {
1592
+ email: string;
1593
+ wabaExternalId: string;
1594
+ phoneNumberId: string;
1595
+ wabaBusinessId?: string | undefined;
1596
+ clientId?: string | undefined;
1597
+ channelId?: string | undefined;
1598
+ status?: "active" | "pending" | undefined;
1599
+ apiKey?: string | undefined;
1600
+ } | undefined;
1143
1601
  vonageCredentials?: {
1144
- mobileNumber: string;
1145
1602
  apiKey: string;
1603
+ mobileNumber: string;
1146
1604
  apiSecret: string;
1147
1605
  } | undefined;
1148
1606
  lineRichMenuId?: string | null | undefined;
@@ -1172,9 +1630,19 @@ export declare const facebookFeedContract: {
1172
1630
  channelSecret?: string | undefined;
1173
1631
  additionalCredentials?: any;
1174
1632
  senderId?: string | undefined;
1633
+ whatsapp?: {
1634
+ email: string;
1635
+ wabaExternalId: string;
1636
+ phoneNumberId: string;
1637
+ wabaBusinessId?: string | undefined;
1638
+ clientId?: string | undefined;
1639
+ channelId?: string | undefined;
1640
+ status?: "active" | "pending" | undefined;
1641
+ apiKey?: string | undefined;
1642
+ } | undefined;
1175
1643
  vonageCredentials?: {
1176
- mobileNumber: string;
1177
1644
  apiKey: string;
1645
+ mobileNumber: string;
1178
1646
  apiSecret: string;
1179
1647
  } | undefined;
1180
1648
  lineRichMenuId?: string | null | undefined;
@@ -1206,9 +1674,19 @@ export declare const facebookFeedContract: {
1206
1674
  channelSecret?: string | undefined;
1207
1675
  additionalCredentials?: any;
1208
1676
  senderId?: string | undefined;
1677
+ whatsapp?: {
1678
+ email: string;
1679
+ wabaExternalId: string;
1680
+ phoneNumberId: string;
1681
+ wabaBusinessId?: string | undefined;
1682
+ clientId?: string | undefined;
1683
+ channelId?: string | undefined;
1684
+ status?: "active" | "pending" | undefined;
1685
+ apiKey?: string | undefined;
1686
+ } | undefined;
1209
1687
  vonageCredentials?: {
1210
- mobileNumber: string;
1211
1688
  apiKey: string;
1689
+ mobileNumber: string;
1212
1690
  apiSecret: string;
1213
1691
  } | undefined;
1214
1692
  lineRichMenuId?: string | null | undefined;
@@ -1241,9 +1719,19 @@ export declare const facebookFeedContract: {
1241
1719
  channelSecret?: string | undefined;
1242
1720
  additionalCredentials?: any;
1243
1721
  senderId?: string | undefined;
1722
+ whatsapp?: {
1723
+ email: string;
1724
+ wabaExternalId: string;
1725
+ phoneNumberId: string;
1726
+ wabaBusinessId?: string | undefined;
1727
+ clientId?: string | undefined;
1728
+ channelId?: string | undefined;
1729
+ status?: "active" | "pending" | undefined;
1730
+ apiKey?: string | undefined;
1731
+ } | undefined;
1244
1732
  vonageCredentials?: {
1245
- mobileNumber: string;
1246
1733
  apiKey: string;
1734
+ mobileNumber: string;
1247
1735
  apiSecret: string;
1248
1736
  } | undefined;
1249
1737
  lineRichMenuId?: string | null | undefined;
@@ -1299,17 +1787,45 @@ export declare const facebookFeedContract: {
1299
1787
  channelSecret: z.ZodOptional<z.ZodString>;
1300
1788
  additionalCredentials: z.ZodOptional<z.ZodAny>;
1301
1789
  senderId: z.ZodOptional<z.ZodString>;
1790
+ whatsapp: z.ZodOptional<z.ZodObject<{
1791
+ wabaBusinessId: z.ZodOptional<z.ZodString>;
1792
+ wabaExternalId: z.ZodString;
1793
+ phoneNumberId: z.ZodString;
1794
+ email: z.ZodString;
1795
+ clientId: z.ZodOptional<z.ZodString>;
1796
+ channelId: z.ZodOptional<z.ZodString>;
1797
+ status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
1798
+ apiKey: z.ZodOptional<z.ZodString>;
1799
+ }, "strip", z.ZodTypeAny, {
1800
+ email: string;
1801
+ wabaExternalId: string;
1802
+ phoneNumberId: string;
1803
+ wabaBusinessId?: string | undefined;
1804
+ clientId?: string | undefined;
1805
+ channelId?: string | undefined;
1806
+ status?: "active" | "pending" | undefined;
1807
+ apiKey?: string | undefined;
1808
+ }, {
1809
+ email: string;
1810
+ wabaExternalId: string;
1811
+ phoneNumberId: string;
1812
+ wabaBusinessId?: string | undefined;
1813
+ clientId?: string | undefined;
1814
+ channelId?: string | undefined;
1815
+ status?: "active" | "pending" | undefined;
1816
+ apiKey?: string | undefined;
1817
+ }>>;
1302
1818
  vonageCredentials: z.ZodOptional<z.ZodObject<{
1303
1819
  mobileNumber: z.ZodString;
1304
1820
  apiKey: z.ZodString;
1305
1821
  apiSecret: z.ZodString;
1306
1822
  }, "strip", z.ZodTypeAny, {
1307
- mobileNumber: string;
1308
1823
  apiKey: string;
1824
+ mobileNumber: string;
1309
1825
  apiSecret: string;
1310
1826
  }, {
1311
- mobileNumber: string;
1312
1827
  apiKey: string;
1828
+ mobileNumber: string;
1313
1829
  apiSecret: string;
1314
1830
  }>>;
1315
1831
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -1321,9 +1837,19 @@ export declare const facebookFeedContract: {
1321
1837
  channelSecret?: string | undefined;
1322
1838
  additionalCredentials?: any;
1323
1839
  senderId?: string | undefined;
1840
+ whatsapp?: {
1841
+ email: string;
1842
+ wabaExternalId: string;
1843
+ phoneNumberId: string;
1844
+ wabaBusinessId?: string | undefined;
1845
+ clientId?: string | undefined;
1846
+ channelId?: string | undefined;
1847
+ status?: "active" | "pending" | undefined;
1848
+ apiKey?: string | undefined;
1849
+ } | undefined;
1324
1850
  vonageCredentials?: {
1325
- mobileNumber: string;
1326
1851
  apiKey: string;
1852
+ mobileNumber: string;
1327
1853
  apiSecret: string;
1328
1854
  } | undefined;
1329
1855
  lineRichMenuId?: string | null | undefined;
@@ -1335,9 +1861,19 @@ export declare const facebookFeedContract: {
1335
1861
  channelSecret?: string | undefined;
1336
1862
  additionalCredentials?: any;
1337
1863
  senderId?: string | undefined;
1864
+ whatsapp?: {
1865
+ email: string;
1866
+ wabaExternalId: string;
1867
+ phoneNumberId: string;
1868
+ wabaBusinessId?: string | undefined;
1869
+ clientId?: string | undefined;
1870
+ channelId?: string | undefined;
1871
+ status?: "active" | "pending" | undefined;
1872
+ apiKey?: string | undefined;
1873
+ } | undefined;
1338
1874
  vonageCredentials?: {
1339
- mobileNumber: string;
1340
1875
  apiKey: string;
1876
+ mobileNumber: string;
1341
1877
  apiSecret: string;
1342
1878
  } | undefined;
1343
1879
  lineRichMenuId?: string | null | undefined;
@@ -1384,9 +1920,19 @@ export declare const facebookFeedContract: {
1384
1920
  channelSecret?: string | undefined;
1385
1921
  additionalCredentials?: any;
1386
1922
  senderId?: string | undefined;
1923
+ whatsapp?: {
1924
+ email: string;
1925
+ wabaExternalId: string;
1926
+ phoneNumberId: string;
1927
+ wabaBusinessId?: string | undefined;
1928
+ clientId?: string | undefined;
1929
+ channelId?: string | undefined;
1930
+ status?: "active" | "pending" | undefined;
1931
+ apiKey?: string | undefined;
1932
+ } | undefined;
1387
1933
  vonageCredentials?: {
1388
- mobileNumber: string;
1389
1934
  apiKey: string;
1935
+ mobileNumber: string;
1390
1936
  apiSecret: string;
1391
1937
  } | undefined;
1392
1938
  lineRichMenuId?: string | null | undefined;
@@ -1420,9 +1966,19 @@ export declare const facebookFeedContract: {
1420
1966
  channelSecret?: string | undefined;
1421
1967
  additionalCredentials?: any;
1422
1968
  senderId?: string | undefined;
1969
+ whatsapp?: {
1970
+ email: string;
1971
+ wabaExternalId: string;
1972
+ phoneNumberId: string;
1973
+ wabaBusinessId?: string | undefined;
1974
+ clientId?: string | undefined;
1975
+ channelId?: string | undefined;
1976
+ status?: "active" | "pending" | undefined;
1977
+ apiKey?: string | undefined;
1978
+ } | undefined;
1423
1979
  vonageCredentials?: {
1424
- mobileNumber: string;
1425
1980
  apiKey: string;
1981
+ mobileNumber: string;
1426
1982
  apiSecret: string;
1427
1983
  } | undefined;
1428
1984
  lineRichMenuId?: string | null | undefined;
@@ -1461,17 +2017,45 @@ export declare const facebookFeedContract: {
1461
2017
  channelSecret: z.ZodOptional<z.ZodString>;
1462
2018
  additionalCredentials: z.ZodOptional<z.ZodAny>;
1463
2019
  senderId: z.ZodOptional<z.ZodString>;
2020
+ whatsapp: z.ZodOptional<z.ZodObject<{
2021
+ wabaBusinessId: z.ZodOptional<z.ZodString>;
2022
+ wabaExternalId: z.ZodString;
2023
+ phoneNumberId: z.ZodString;
2024
+ email: z.ZodString;
2025
+ clientId: z.ZodOptional<z.ZodString>;
2026
+ channelId: z.ZodOptional<z.ZodString>;
2027
+ status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
2028
+ apiKey: z.ZodOptional<z.ZodString>;
2029
+ }, "strip", z.ZodTypeAny, {
2030
+ email: string;
2031
+ wabaExternalId: string;
2032
+ phoneNumberId: string;
2033
+ wabaBusinessId?: string | undefined;
2034
+ clientId?: string | undefined;
2035
+ channelId?: string | undefined;
2036
+ status?: "active" | "pending" | undefined;
2037
+ apiKey?: string | undefined;
2038
+ }, {
2039
+ email: string;
2040
+ wabaExternalId: string;
2041
+ phoneNumberId: string;
2042
+ wabaBusinessId?: string | undefined;
2043
+ clientId?: string | undefined;
2044
+ channelId?: string | undefined;
2045
+ status?: "active" | "pending" | undefined;
2046
+ apiKey?: string | undefined;
2047
+ }>>;
1464
2048
  vonageCredentials: z.ZodOptional<z.ZodObject<{
1465
2049
  mobileNumber: z.ZodString;
1466
2050
  apiKey: z.ZodString;
1467
2051
  apiSecret: z.ZodString;
1468
2052
  }, "strip", z.ZodTypeAny, {
1469
- mobileNumber: string;
1470
2053
  apiKey: string;
2054
+ mobileNumber: string;
1471
2055
  apiSecret: string;
1472
2056
  }, {
1473
- mobileNumber: string;
1474
2057
  apiKey: string;
2058
+ mobileNumber: string;
1475
2059
  apiSecret: string;
1476
2060
  }>>;
1477
2061
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -1483,9 +2067,19 @@ export declare const facebookFeedContract: {
1483
2067
  channelSecret?: string | undefined;
1484
2068
  additionalCredentials?: any;
1485
2069
  senderId?: string | undefined;
2070
+ whatsapp?: {
2071
+ email: string;
2072
+ wabaExternalId: string;
2073
+ phoneNumberId: string;
2074
+ wabaBusinessId?: string | undefined;
2075
+ clientId?: string | undefined;
2076
+ channelId?: string | undefined;
2077
+ status?: "active" | "pending" | undefined;
2078
+ apiKey?: string | undefined;
2079
+ } | undefined;
1486
2080
  vonageCredentials?: {
1487
- mobileNumber: string;
1488
2081
  apiKey: string;
2082
+ mobileNumber: string;
1489
2083
  apiSecret: string;
1490
2084
  } | undefined;
1491
2085
  lineRichMenuId?: string | null | undefined;
@@ -1497,9 +2091,19 @@ export declare const facebookFeedContract: {
1497
2091
  channelSecret?: string | undefined;
1498
2092
  additionalCredentials?: any;
1499
2093
  senderId?: string | undefined;
2094
+ whatsapp?: {
2095
+ email: string;
2096
+ wabaExternalId: string;
2097
+ phoneNumberId: string;
2098
+ wabaBusinessId?: string | undefined;
2099
+ clientId?: string | undefined;
2100
+ channelId?: string | undefined;
2101
+ status?: "active" | "pending" | undefined;
2102
+ apiKey?: string | undefined;
2103
+ } | undefined;
1500
2104
  vonageCredentials?: {
1501
- mobileNumber: string;
1502
2105
  apiKey: string;
2106
+ mobileNumber: string;
1503
2107
  apiSecret: string;
1504
2108
  } | undefined;
1505
2109
  lineRichMenuId?: string | null | undefined;
@@ -1541,9 +2145,19 @@ export declare const facebookFeedContract: {
1541
2145
  channelSecret?: string | undefined;
1542
2146
  additionalCredentials?: any;
1543
2147
  senderId?: string | undefined;
2148
+ whatsapp?: {
2149
+ email: string;
2150
+ wabaExternalId: string;
2151
+ phoneNumberId: string;
2152
+ wabaBusinessId?: string | undefined;
2153
+ clientId?: string | undefined;
2154
+ channelId?: string | undefined;
2155
+ status?: "active" | "pending" | undefined;
2156
+ apiKey?: string | undefined;
2157
+ } | undefined;
1544
2158
  vonageCredentials?: {
1545
- mobileNumber: string;
1546
2159
  apiKey: string;
2160
+ mobileNumber: string;
1547
2161
  apiSecret: string;
1548
2162
  } | undefined;
1549
2163
  lineRichMenuId?: string | null | undefined;
@@ -1573,9 +2187,19 @@ export declare const facebookFeedContract: {
1573
2187
  channelSecret?: string | undefined;
1574
2188
  additionalCredentials?: any;
1575
2189
  senderId?: string | undefined;
2190
+ whatsapp?: {
2191
+ email: string;
2192
+ wabaExternalId: string;
2193
+ phoneNumberId: string;
2194
+ wabaBusinessId?: string | undefined;
2195
+ clientId?: string | undefined;
2196
+ channelId?: string | undefined;
2197
+ status?: "active" | "pending" | undefined;
2198
+ apiKey?: string | undefined;
2199
+ } | undefined;
1576
2200
  vonageCredentials?: {
1577
- mobileNumber: string;
1578
2201
  apiKey: string;
2202
+ mobileNumber: string;
1579
2203
  apiSecret: string;
1580
2204
  } | undefined;
1581
2205
  lineRichMenuId?: string | null | undefined;
@@ -1607,9 +2231,19 @@ export declare const facebookFeedContract: {
1607
2231
  channelSecret?: string | undefined;
1608
2232
  additionalCredentials?: any;
1609
2233
  senderId?: string | undefined;
2234
+ whatsapp?: {
2235
+ email: string;
2236
+ wabaExternalId: string;
2237
+ phoneNumberId: string;
2238
+ wabaBusinessId?: string | undefined;
2239
+ clientId?: string | undefined;
2240
+ channelId?: string | undefined;
2241
+ status?: "active" | "pending" | undefined;
2242
+ apiKey?: string | undefined;
2243
+ } | undefined;
1610
2244
  vonageCredentials?: {
1611
- mobileNumber: string;
1612
2245
  apiKey: string;
2246
+ mobileNumber: string;
1613
2247
  apiSecret: string;
1614
2248
  } | undefined;
1615
2249
  lineRichMenuId?: string | null | undefined;
@@ -1642,9 +2276,19 @@ export declare const facebookFeedContract: {
1642
2276
  channelSecret?: string | undefined;
1643
2277
  additionalCredentials?: any;
1644
2278
  senderId?: string | undefined;
2279
+ whatsapp?: {
2280
+ email: string;
2281
+ wabaExternalId: string;
2282
+ phoneNumberId: string;
2283
+ wabaBusinessId?: string | undefined;
2284
+ clientId?: string | undefined;
2285
+ channelId?: string | undefined;
2286
+ status?: "active" | "pending" | undefined;
2287
+ apiKey?: string | undefined;
2288
+ } | undefined;
1645
2289
  vonageCredentials?: {
1646
- mobileNumber: string;
1647
2290
  apiKey: string;
2291
+ mobileNumber: string;
1648
2292
  apiSecret: string;
1649
2293
  } | undefined;
1650
2294
  lineRichMenuId?: string | null | undefined;
@@ -1713,17 +2357,45 @@ export declare const facebookFeedContract: {
1713
2357
  channelSecret: z.ZodOptional<z.ZodString>;
1714
2358
  additionalCredentials: z.ZodOptional<z.ZodAny>;
1715
2359
  senderId: z.ZodOptional<z.ZodString>;
2360
+ whatsapp: z.ZodOptional<z.ZodObject<{
2361
+ wabaBusinessId: z.ZodOptional<z.ZodString>;
2362
+ wabaExternalId: z.ZodString;
2363
+ phoneNumberId: z.ZodString;
2364
+ email: z.ZodString;
2365
+ clientId: z.ZodOptional<z.ZodString>;
2366
+ channelId: z.ZodOptional<z.ZodString>;
2367
+ status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
2368
+ apiKey: z.ZodOptional<z.ZodString>;
2369
+ }, "strip", z.ZodTypeAny, {
2370
+ email: string;
2371
+ wabaExternalId: string;
2372
+ phoneNumberId: string;
2373
+ wabaBusinessId?: string | undefined;
2374
+ clientId?: string | undefined;
2375
+ channelId?: string | undefined;
2376
+ status?: "active" | "pending" | undefined;
2377
+ apiKey?: string | undefined;
2378
+ }, {
2379
+ email: string;
2380
+ wabaExternalId: string;
2381
+ phoneNumberId: string;
2382
+ wabaBusinessId?: string | undefined;
2383
+ clientId?: string | undefined;
2384
+ channelId?: string | undefined;
2385
+ status?: "active" | "pending" | undefined;
2386
+ apiKey?: string | undefined;
2387
+ }>>;
1716
2388
  vonageCredentials: z.ZodOptional<z.ZodObject<{
1717
2389
  mobileNumber: z.ZodString;
1718
2390
  apiKey: z.ZodString;
1719
2391
  apiSecret: z.ZodString;
1720
2392
  }, "strip", z.ZodTypeAny, {
1721
- mobileNumber: string;
1722
2393
  apiKey: string;
2394
+ mobileNumber: string;
1723
2395
  apiSecret: string;
1724
2396
  }, {
1725
- mobileNumber: string;
1726
2397
  apiKey: string;
2398
+ mobileNumber: string;
1727
2399
  apiSecret: string;
1728
2400
  }>>;
1729
2401
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -1735,9 +2407,19 @@ export declare const facebookFeedContract: {
1735
2407
  channelSecret?: string | undefined;
1736
2408
  additionalCredentials?: any;
1737
2409
  senderId?: string | undefined;
2410
+ whatsapp?: {
2411
+ email: string;
2412
+ wabaExternalId: string;
2413
+ phoneNumberId: string;
2414
+ wabaBusinessId?: string | undefined;
2415
+ clientId?: string | undefined;
2416
+ channelId?: string | undefined;
2417
+ status?: "active" | "pending" | undefined;
2418
+ apiKey?: string | undefined;
2419
+ } | undefined;
1738
2420
  vonageCredentials?: {
1739
- mobileNumber: string;
1740
2421
  apiKey: string;
2422
+ mobileNumber: string;
1741
2423
  apiSecret: string;
1742
2424
  } | undefined;
1743
2425
  lineRichMenuId?: string | null | undefined;
@@ -1749,9 +2431,19 @@ export declare const facebookFeedContract: {
1749
2431
  channelSecret?: string | undefined;
1750
2432
  additionalCredentials?: any;
1751
2433
  senderId?: string | undefined;
2434
+ whatsapp?: {
2435
+ email: string;
2436
+ wabaExternalId: string;
2437
+ phoneNumberId: string;
2438
+ wabaBusinessId?: string | undefined;
2439
+ clientId?: string | undefined;
2440
+ channelId?: string | undefined;
2441
+ status?: "active" | "pending" | undefined;
2442
+ apiKey?: string | undefined;
2443
+ } | undefined;
1752
2444
  vonageCredentials?: {
1753
- mobileNumber: string;
1754
2445
  apiKey: string;
2446
+ mobileNumber: string;
1755
2447
  apiSecret: string;
1756
2448
  } | undefined;
1757
2449
  lineRichMenuId?: string | null | undefined;
@@ -3117,9 +3809,19 @@ export declare const facebookFeedContract: {
3117
3809
  channelSecret?: string | undefined;
3118
3810
  additionalCredentials?: any;
3119
3811
  senderId?: string | undefined;
3812
+ whatsapp?: {
3813
+ email: string;
3814
+ wabaExternalId: string;
3815
+ phoneNumberId: string;
3816
+ wabaBusinessId?: string | undefined;
3817
+ clientId?: string | undefined;
3818
+ channelId?: string | undefined;
3819
+ status?: "active" | "pending" | undefined;
3820
+ apiKey?: string | undefined;
3821
+ } | undefined;
3120
3822
  vonageCredentials?: {
3121
- mobileNumber: string;
3122
3823
  apiKey: string;
3824
+ mobileNumber: string;
3123
3825
  apiSecret: string;
3124
3826
  } | undefined;
3125
3827
  lineRichMenuId?: string | null | undefined;
@@ -3340,9 +4042,19 @@ export declare const facebookFeedContract: {
3340
4042
  channelSecret?: string | undefined;
3341
4043
  additionalCredentials?: any;
3342
4044
  senderId?: string | undefined;
4045
+ whatsapp?: {
4046
+ email: string;
4047
+ wabaExternalId: string;
4048
+ phoneNumberId: string;
4049
+ wabaBusinessId?: string | undefined;
4050
+ clientId?: string | undefined;
4051
+ channelId?: string | undefined;
4052
+ status?: "active" | "pending" | undefined;
4053
+ apiKey?: string | undefined;
4054
+ } | undefined;
3343
4055
  vonageCredentials?: {
3344
- mobileNumber: string;
3345
4056
  apiKey: string;
4057
+ mobileNumber: string;
3346
4058
  apiSecret: string;
3347
4059
  } | undefined;
3348
4060
  lineRichMenuId?: string | null | undefined;
@@ -3561,7 +4273,7 @@ export declare const facebookFeedContract: {
3561
4273
  id: z.ZodOptional<z.ZodString>;
3562
4274
  message: z.ZodOptional<z.ZodString>;
3563
4275
  direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
3564
- 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"]>;
4276
+ 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"]>;
3565
4277
  readAt: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodString]>>>;
3566
4278
  metadata: z.ZodOptional<z.ZodAny>;
3567
4279
  platformId: z.ZodOptional<z.ZodString>;
@@ -3617,7 +4329,7 @@ export declare const facebookFeedContract: {
3617
4329
  editedAt: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodString]>>>;
3618
4330
  label: z.ZodOptional<z.ZodString>;
3619
4331
  }, "strip", z.ZodTypeAny, {
3620
- 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";
4332
+ 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";
3621
4333
  direction: "incoming" | "outgoing" | "system";
3622
4334
  id?: string | undefined;
3623
4335
  message?: string | undefined;
@@ -3652,7 +4364,7 @@ export declare const facebookFeedContract: {
3652
4364
  editedAt?: string | Date | null | undefined;
3653
4365
  label?: string | undefined;
3654
4366
  }, {
3655
- 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";
4367
+ 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";
3656
4368
  direction: "incoming" | "outgoing" | "system";
3657
4369
  id?: string | undefined;
3658
4370
  message?: string | undefined;
@@ -3821,17 +4533,45 @@ export declare const facebookFeedContract: {
3821
4533
  channelSecret: z.ZodOptional<z.ZodString>;
3822
4534
  additionalCredentials: z.ZodOptional<z.ZodAny>;
3823
4535
  senderId: z.ZodOptional<z.ZodString>;
4536
+ whatsapp: z.ZodOptional<z.ZodObject<{
4537
+ wabaBusinessId: z.ZodOptional<z.ZodString>;
4538
+ wabaExternalId: z.ZodString;
4539
+ phoneNumberId: z.ZodString;
4540
+ email: z.ZodString;
4541
+ clientId: z.ZodOptional<z.ZodString>;
4542
+ channelId: z.ZodOptional<z.ZodString>;
4543
+ status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
4544
+ apiKey: z.ZodOptional<z.ZodString>;
4545
+ }, "strip", z.ZodTypeAny, {
4546
+ email: string;
4547
+ wabaExternalId: string;
4548
+ phoneNumberId: string;
4549
+ wabaBusinessId?: string | undefined;
4550
+ clientId?: string | undefined;
4551
+ channelId?: string | undefined;
4552
+ status?: "active" | "pending" | undefined;
4553
+ apiKey?: string | undefined;
4554
+ }, {
4555
+ email: string;
4556
+ wabaExternalId: string;
4557
+ phoneNumberId: string;
4558
+ wabaBusinessId?: string | undefined;
4559
+ clientId?: string | undefined;
4560
+ channelId?: string | undefined;
4561
+ status?: "active" | "pending" | undefined;
4562
+ apiKey?: string | undefined;
4563
+ }>>;
3824
4564
  vonageCredentials: z.ZodOptional<z.ZodObject<{
3825
4565
  mobileNumber: z.ZodString;
3826
4566
  apiKey: z.ZodString;
3827
4567
  apiSecret: z.ZodString;
3828
4568
  }, "strip", z.ZodTypeAny, {
3829
- mobileNumber: string;
3830
4569
  apiKey: string;
4570
+ mobileNumber: string;
3831
4571
  apiSecret: string;
3832
4572
  }, {
3833
- mobileNumber: string;
3834
4573
  apiKey: string;
4574
+ mobileNumber: string;
3835
4575
  apiSecret: string;
3836
4576
  }>>;
3837
4577
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -3843,9 +4583,19 @@ export declare const facebookFeedContract: {
3843
4583
  channelSecret?: string | undefined;
3844
4584
  additionalCredentials?: any;
3845
4585
  senderId?: string | undefined;
4586
+ whatsapp?: {
4587
+ email: string;
4588
+ wabaExternalId: string;
4589
+ phoneNumberId: string;
4590
+ wabaBusinessId?: string | undefined;
4591
+ clientId?: string | undefined;
4592
+ channelId?: string | undefined;
4593
+ status?: "active" | "pending" | undefined;
4594
+ apiKey?: string | undefined;
4595
+ } | undefined;
3846
4596
  vonageCredentials?: {
3847
- mobileNumber: string;
3848
4597
  apiKey: string;
4598
+ mobileNumber: string;
3849
4599
  apiSecret: string;
3850
4600
  } | undefined;
3851
4601
  lineRichMenuId?: string | null | undefined;
@@ -3857,9 +4607,19 @@ export declare const facebookFeedContract: {
3857
4607
  channelSecret?: string | undefined;
3858
4608
  additionalCredentials?: any;
3859
4609
  senderId?: string | undefined;
4610
+ whatsapp?: {
4611
+ email: string;
4612
+ wabaExternalId: string;
4613
+ phoneNumberId: string;
4614
+ wabaBusinessId?: string | undefined;
4615
+ clientId?: string | undefined;
4616
+ channelId?: string | undefined;
4617
+ status?: "active" | "pending" | undefined;
4618
+ apiKey?: string | undefined;
4619
+ } | undefined;
3860
4620
  vonageCredentials?: {
3861
- mobileNumber: string;
3862
4621
  apiKey: string;
4622
+ mobileNumber: string;
3863
4623
  apiSecret: string;
3864
4624
  } | undefined;
3865
4625
  lineRichMenuId?: string | null | undefined;
@@ -3901,9 +4661,19 @@ export declare const facebookFeedContract: {
3901
4661
  channelSecret?: string | undefined;
3902
4662
  additionalCredentials?: any;
3903
4663
  senderId?: string | undefined;
4664
+ whatsapp?: {
4665
+ email: string;
4666
+ wabaExternalId: string;
4667
+ phoneNumberId: string;
4668
+ wabaBusinessId?: string | undefined;
4669
+ clientId?: string | undefined;
4670
+ channelId?: string | undefined;
4671
+ status?: "active" | "pending" | undefined;
4672
+ apiKey?: string | undefined;
4673
+ } | undefined;
3904
4674
  vonageCredentials?: {
3905
- mobileNumber: string;
3906
4675
  apiKey: string;
4676
+ mobileNumber: string;
3907
4677
  apiSecret: string;
3908
4678
  } | undefined;
3909
4679
  lineRichMenuId?: string | null | undefined;
@@ -3933,9 +4703,19 @@ export declare const facebookFeedContract: {
3933
4703
  channelSecret?: string | undefined;
3934
4704
  additionalCredentials?: any;
3935
4705
  senderId?: string | undefined;
4706
+ whatsapp?: {
4707
+ email: string;
4708
+ wabaExternalId: string;
4709
+ phoneNumberId: string;
4710
+ wabaBusinessId?: string | undefined;
4711
+ clientId?: string | undefined;
4712
+ channelId?: string | undefined;
4713
+ status?: "active" | "pending" | undefined;
4714
+ apiKey?: string | undefined;
4715
+ } | undefined;
3936
4716
  vonageCredentials?: {
3937
- mobileNumber: string;
3938
4717
  apiKey: string;
4718
+ mobileNumber: string;
3939
4719
  apiSecret: string;
3940
4720
  } | undefined;
3941
4721
  lineRichMenuId?: string | null | undefined;
@@ -3969,9 +4749,19 @@ export declare const facebookFeedContract: {
3969
4749
  channelSecret?: string | undefined;
3970
4750
  additionalCredentials?: any;
3971
4751
  senderId?: string | undefined;
4752
+ whatsapp?: {
4753
+ email: string;
4754
+ wabaExternalId: string;
4755
+ phoneNumberId: string;
4756
+ wabaBusinessId?: string | undefined;
4757
+ clientId?: string | undefined;
4758
+ channelId?: string | undefined;
4759
+ status?: "active" | "pending" | undefined;
4760
+ apiKey?: string | undefined;
4761
+ } | undefined;
3972
4762
  vonageCredentials?: {
3973
- mobileNumber: string;
3974
4763
  apiKey: string;
4764
+ mobileNumber: string;
3975
4765
  apiSecret: string;
3976
4766
  } | undefined;
3977
4767
  lineRichMenuId?: string | null | undefined;
@@ -4044,9 +4834,19 @@ export declare const facebookFeedContract: {
4044
4834
  channelSecret?: string | undefined;
4045
4835
  additionalCredentials?: any;
4046
4836
  senderId?: string | undefined;
4837
+ whatsapp?: {
4838
+ email: string;
4839
+ wabaExternalId: string;
4840
+ phoneNumberId: string;
4841
+ wabaBusinessId?: string | undefined;
4842
+ clientId?: string | undefined;
4843
+ channelId?: string | undefined;
4844
+ status?: "active" | "pending" | undefined;
4845
+ apiKey?: string | undefined;
4846
+ } | undefined;
4047
4847
  vonageCredentials?: {
4048
- mobileNumber: string;
4049
4848
  apiKey: string;
4849
+ mobileNumber: string;
4050
4850
  apiSecret: string;
4051
4851
  } | undefined;
4052
4852
  lineRichMenuId?: string | null | undefined;
@@ -4120,7 +4920,7 @@ export declare const facebookFeedContract: {
4120
4920
  }>>;
4121
4921
  }, "strip", z.ZodTypeAny, {
4122
4922
  message: {
4123
- 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";
4923
+ 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";
4124
4924
  direction: "incoming" | "outgoing" | "system";
4125
4925
  id?: string | undefined;
4126
4926
  message?: string | undefined;
@@ -4168,9 +4968,19 @@ export declare const facebookFeedContract: {
4168
4968
  channelSecret?: string | undefined;
4169
4969
  additionalCredentials?: any;
4170
4970
  senderId?: string | undefined;
4971
+ whatsapp?: {
4972
+ email: string;
4973
+ wabaExternalId: string;
4974
+ phoneNumberId: string;
4975
+ wabaBusinessId?: string | undefined;
4976
+ clientId?: string | undefined;
4977
+ channelId?: string | undefined;
4978
+ status?: "active" | "pending" | undefined;
4979
+ apiKey?: string | undefined;
4980
+ } | undefined;
4171
4981
  vonageCredentials?: {
4172
- mobileNumber: string;
4173
4982
  apiKey: string;
4983
+ mobileNumber: string;
4174
4984
  apiSecret: string;
4175
4985
  } | undefined;
4176
4986
  lineRichMenuId?: string | null | undefined;
@@ -4238,7 +5048,7 @@ export declare const facebookFeedContract: {
4238
5048
  } | undefined;
4239
5049
  }, {
4240
5050
  message: {
4241
- 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";
5051
+ 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";
4242
5052
  direction: "incoming" | "outgoing" | "system";
4243
5053
  id?: string | undefined;
4244
5054
  message?: string | undefined;
@@ -4286,9 +5096,19 @@ export declare const facebookFeedContract: {
4286
5096
  channelSecret?: string | undefined;
4287
5097
  additionalCredentials?: any;
4288
5098
  senderId?: string | undefined;
5099
+ whatsapp?: {
5100
+ email: string;
5101
+ wabaExternalId: string;
5102
+ phoneNumberId: string;
5103
+ wabaBusinessId?: string | undefined;
5104
+ clientId?: string | undefined;
5105
+ channelId?: string | undefined;
5106
+ status?: "active" | "pending" | undefined;
5107
+ apiKey?: string | undefined;
5108
+ } | undefined;
4289
5109
  vonageCredentials?: {
4290
- mobileNumber: string;
4291
5110
  apiKey: string;
5111
+ mobileNumber: string;
4292
5112
  apiSecret: string;
4293
5113
  } | undefined;
4294
5114
  lineRichMenuId?: string | null | undefined;
@@ -4360,7 +5180,7 @@ export declare const facebookFeedContract: {
4360
5180
  200: z.ZodObject<{
4361
5181
  requestId: z.ZodString;
4362
5182
  data: z.ZodObject<{
4363
- 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"]>;
5183
+ 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"]>;
4364
5184
  message: z.ZodString;
4365
5185
  id: z.ZodString;
4366
5186
  url: z.ZodString;
@@ -6299,17 +7119,45 @@ export declare const facebookFeedContract: {
6299
7119
  channelSecret: z.ZodOptional<z.ZodString>;
6300
7120
  additionalCredentials: z.ZodOptional<z.ZodAny>;
6301
7121
  senderId: z.ZodOptional<z.ZodString>;
7122
+ whatsapp: z.ZodOptional<z.ZodObject<{
7123
+ wabaBusinessId: z.ZodOptional<z.ZodString>;
7124
+ wabaExternalId: z.ZodString;
7125
+ phoneNumberId: z.ZodString;
7126
+ email: z.ZodString;
7127
+ clientId: z.ZodOptional<z.ZodString>;
7128
+ channelId: z.ZodOptional<z.ZodString>;
7129
+ status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
7130
+ apiKey: z.ZodOptional<z.ZodString>;
7131
+ }, "strip", z.ZodTypeAny, {
7132
+ email: string;
7133
+ wabaExternalId: string;
7134
+ phoneNumberId: string;
7135
+ wabaBusinessId?: string | undefined;
7136
+ clientId?: string | undefined;
7137
+ channelId?: string | undefined;
7138
+ status?: "active" | "pending" | undefined;
7139
+ apiKey?: string | undefined;
7140
+ }, {
7141
+ email: string;
7142
+ wabaExternalId: string;
7143
+ phoneNumberId: string;
7144
+ wabaBusinessId?: string | undefined;
7145
+ clientId?: string | undefined;
7146
+ channelId?: string | undefined;
7147
+ status?: "active" | "pending" | undefined;
7148
+ apiKey?: string | undefined;
7149
+ }>>;
6302
7150
  vonageCredentials: z.ZodOptional<z.ZodObject<{
6303
7151
  mobileNumber: z.ZodString;
6304
7152
  apiKey: z.ZodString;
6305
7153
  apiSecret: z.ZodString;
6306
7154
  }, "strip", z.ZodTypeAny, {
6307
- mobileNumber: string;
6308
7155
  apiKey: string;
7156
+ mobileNumber: string;
6309
7157
  apiSecret: string;
6310
7158
  }, {
6311
- mobileNumber: string;
6312
7159
  apiKey: string;
7160
+ mobileNumber: string;
6313
7161
  apiSecret: string;
6314
7162
  }>>;
6315
7163
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -6321,9 +7169,19 @@ export declare const facebookFeedContract: {
6321
7169
  channelSecret?: string | undefined;
6322
7170
  additionalCredentials?: any;
6323
7171
  senderId?: string | undefined;
7172
+ whatsapp?: {
7173
+ email: string;
7174
+ wabaExternalId: string;
7175
+ phoneNumberId: string;
7176
+ wabaBusinessId?: string | undefined;
7177
+ clientId?: string | undefined;
7178
+ channelId?: string | undefined;
7179
+ status?: "active" | "pending" | undefined;
7180
+ apiKey?: string | undefined;
7181
+ } | undefined;
6324
7182
  vonageCredentials?: {
6325
- mobileNumber: string;
6326
7183
  apiKey: string;
7184
+ mobileNumber: string;
6327
7185
  apiSecret: string;
6328
7186
  } | undefined;
6329
7187
  lineRichMenuId?: string | null | undefined;
@@ -6335,9 +7193,19 @@ export declare const facebookFeedContract: {
6335
7193
  channelSecret?: string | undefined;
6336
7194
  additionalCredentials?: any;
6337
7195
  senderId?: string | undefined;
7196
+ whatsapp?: {
7197
+ email: string;
7198
+ wabaExternalId: string;
7199
+ phoneNumberId: string;
7200
+ wabaBusinessId?: string | undefined;
7201
+ clientId?: string | undefined;
7202
+ channelId?: string | undefined;
7203
+ status?: "active" | "pending" | undefined;
7204
+ apiKey?: string | undefined;
7205
+ } | undefined;
6338
7206
  vonageCredentials?: {
6339
- mobileNumber: string;
6340
7207
  apiKey: string;
7208
+ mobileNumber: string;
6341
7209
  apiSecret: string;
6342
7210
  } | undefined;
6343
7211
  lineRichMenuId?: string | null | undefined;
@@ -6583,9 +7451,19 @@ export declare const facebookFeedContract: {
6583
7451
  channelSecret?: string | undefined;
6584
7452
  additionalCredentials?: any;
6585
7453
  senderId?: string | undefined;
7454
+ whatsapp?: {
7455
+ email: string;
7456
+ wabaExternalId: string;
7457
+ phoneNumberId: string;
7458
+ wabaBusinessId?: string | undefined;
7459
+ clientId?: string | undefined;
7460
+ channelId?: string | undefined;
7461
+ status?: "active" | "pending" | undefined;
7462
+ apiKey?: string | undefined;
7463
+ } | undefined;
6586
7464
  vonageCredentials?: {
6587
- mobileNumber: string;
6588
7465
  apiKey: string;
7466
+ mobileNumber: string;
6589
7467
  apiSecret: string;
6590
7468
  } | undefined;
6591
7469
  lineRichMenuId?: string | null | undefined;
@@ -6662,9 +7540,19 @@ export declare const facebookFeedContract: {
6662
7540
  channelSecret?: string | undefined;
6663
7541
  additionalCredentials?: any;
6664
7542
  senderId?: string | undefined;
7543
+ whatsapp?: {
7544
+ email: string;
7545
+ wabaExternalId: string;
7546
+ phoneNumberId: string;
7547
+ wabaBusinessId?: string | undefined;
7548
+ clientId?: string | undefined;
7549
+ channelId?: string | undefined;
7550
+ status?: "active" | "pending" | undefined;
7551
+ apiKey?: string | undefined;
7552
+ } | undefined;
6665
7553
  vonageCredentials?: {
6666
- mobileNumber: string;
6667
7554
  apiKey: string;
7555
+ mobileNumber: string;
6668
7556
  apiSecret: string;
6669
7557
  } | undefined;
6670
7558
  lineRichMenuId?: string | null | undefined;
@@ -7189,9 +8077,19 @@ export declare const facebookFeedContract: {
7189
8077
  channelSecret?: string | undefined;
7190
8078
  additionalCredentials?: any;
7191
8079
  senderId?: string | undefined;
8080
+ whatsapp?: {
8081
+ email: string;
8082
+ wabaExternalId: string;
8083
+ phoneNumberId: string;
8084
+ wabaBusinessId?: string | undefined;
8085
+ clientId?: string | undefined;
8086
+ channelId?: string | undefined;
8087
+ status?: "active" | "pending" | undefined;
8088
+ apiKey?: string | undefined;
8089
+ } | undefined;
7192
8090
  vonageCredentials?: {
7193
- mobileNumber: string;
7194
8091
  apiKey: string;
8092
+ mobileNumber: string;
7195
8093
  apiSecret: string;
7196
8094
  } | undefined;
7197
8095
  lineRichMenuId?: string | null | undefined;
@@ -7579,9 +8477,19 @@ export declare const facebookFeedContract: {
7579
8477
  channelSecret?: string | undefined;
7580
8478
  additionalCredentials?: any;
7581
8479
  senderId?: string | undefined;
8480
+ whatsapp?: {
8481
+ email: string;
8482
+ wabaExternalId: string;
8483
+ phoneNumberId: string;
8484
+ wabaBusinessId?: string | undefined;
8485
+ clientId?: string | undefined;
8486
+ channelId?: string | undefined;
8487
+ status?: "active" | "pending" | undefined;
8488
+ apiKey?: string | undefined;
8489
+ } | undefined;
7582
8490
  vonageCredentials?: {
7583
- mobileNumber: string;
7584
8491
  apiKey: string;
8492
+ mobileNumber: string;
7585
8493
  apiSecret: string;
7586
8494
  } | undefined;
7587
8495
  lineRichMenuId?: string | null | undefined;
@@ -7995,7 +8903,7 @@ export declare const facebookFeedContract: {
7995
8903
  deletedAt: z.ZodNullable<z.ZodDate>;
7996
8904
  message: z.ZodString;
7997
8905
  direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
7998
- 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"]>;
8906
+ 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"]>;
7999
8907
  readAt: z.ZodDate;
8000
8908
  metadata: z.ZodAny;
8001
8909
  platformId: z.ZodString;
@@ -8653,7 +9561,7 @@ export declare const facebookFeedContract: {
8653
9561
  };
8654
9562
  }>;
8655
9563
  }, "strip", z.ZodTypeAny, {
8656
- 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";
9564
+ 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";
8657
9565
  message: string;
8658
9566
  id: string;
8659
9567
  url: string;
@@ -8815,7 +9723,7 @@ export declare const facebookFeedContract: {
8815
9723
  metadata?: any;
8816
9724
  template?: any;
8817
9725
  }, {
8818
- 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";
9726
+ 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";
8819
9727
  message: string;
8820
9728
  id: string;
8821
9729
  url: string;
@@ -9189,7 +10097,7 @@ export declare const facebookFeedContract: {
9189
10097
  deletedAt: z.ZodNullable<z.ZodDate>;
9190
10098
  message: z.ZodString;
9191
10099
  direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
9192
- 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"]>;
10100
+ 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"]>;
9193
10101
  readAt: z.ZodDate;
9194
10102
  metadata: z.ZodAny;
9195
10103
  platformId: z.ZodString;
@@ -10685,17 +11593,45 @@ export declare const facebookFeedContract: {
10685
11593
  channelSecret: z.ZodOptional<z.ZodString>;
10686
11594
  additionalCredentials: z.ZodOptional<z.ZodAny>;
10687
11595
  senderId: z.ZodOptional<z.ZodString>;
11596
+ whatsapp: z.ZodOptional<z.ZodObject<{
11597
+ wabaBusinessId: z.ZodOptional<z.ZodString>;
11598
+ wabaExternalId: z.ZodString;
11599
+ phoneNumberId: z.ZodString;
11600
+ email: z.ZodString;
11601
+ clientId: z.ZodOptional<z.ZodString>;
11602
+ channelId: z.ZodOptional<z.ZodString>;
11603
+ status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
11604
+ apiKey: z.ZodOptional<z.ZodString>;
11605
+ }, "strip", z.ZodTypeAny, {
11606
+ email: string;
11607
+ wabaExternalId: string;
11608
+ phoneNumberId: string;
11609
+ wabaBusinessId?: string | undefined;
11610
+ clientId?: string | undefined;
11611
+ channelId?: string | undefined;
11612
+ status?: "active" | "pending" | undefined;
11613
+ apiKey?: string | undefined;
11614
+ }, {
11615
+ email: string;
11616
+ wabaExternalId: string;
11617
+ phoneNumberId: string;
11618
+ wabaBusinessId?: string | undefined;
11619
+ clientId?: string | undefined;
11620
+ channelId?: string | undefined;
11621
+ status?: "active" | "pending" | undefined;
11622
+ apiKey?: string | undefined;
11623
+ }>>;
10688
11624
  vonageCredentials: z.ZodOptional<z.ZodObject<{
10689
11625
  mobileNumber: z.ZodString;
10690
11626
  apiKey: z.ZodString;
10691
11627
  apiSecret: z.ZodString;
10692
11628
  }, "strip", z.ZodTypeAny, {
10693
- mobileNumber: string;
10694
11629
  apiKey: string;
11630
+ mobileNumber: string;
10695
11631
  apiSecret: string;
10696
11632
  }, {
10697
- mobileNumber: string;
10698
11633
  apiKey: string;
11634
+ mobileNumber: string;
10699
11635
  apiSecret: string;
10700
11636
  }>>;
10701
11637
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -10707,9 +11643,19 @@ export declare const facebookFeedContract: {
10707
11643
  channelSecret?: string | undefined;
10708
11644
  additionalCredentials?: any;
10709
11645
  senderId?: string | undefined;
11646
+ whatsapp?: {
11647
+ email: string;
11648
+ wabaExternalId: string;
11649
+ phoneNumberId: string;
11650
+ wabaBusinessId?: string | undefined;
11651
+ clientId?: string | undefined;
11652
+ channelId?: string | undefined;
11653
+ status?: "active" | "pending" | undefined;
11654
+ apiKey?: string | undefined;
11655
+ } | undefined;
10710
11656
  vonageCredentials?: {
10711
- mobileNumber: string;
10712
11657
  apiKey: string;
11658
+ mobileNumber: string;
10713
11659
  apiSecret: string;
10714
11660
  } | undefined;
10715
11661
  lineRichMenuId?: string | null | undefined;
@@ -10721,9 +11667,19 @@ export declare const facebookFeedContract: {
10721
11667
  channelSecret?: string | undefined;
10722
11668
  additionalCredentials?: any;
10723
11669
  senderId?: string | undefined;
11670
+ whatsapp?: {
11671
+ email: string;
11672
+ wabaExternalId: string;
11673
+ phoneNumberId: string;
11674
+ wabaBusinessId?: string | undefined;
11675
+ clientId?: string | undefined;
11676
+ channelId?: string | undefined;
11677
+ status?: "active" | "pending" | undefined;
11678
+ apiKey?: string | undefined;
11679
+ } | undefined;
10724
11680
  vonageCredentials?: {
10725
- mobileNumber: string;
10726
11681
  apiKey: string;
11682
+ mobileNumber: string;
10727
11683
  apiSecret: string;
10728
11684
  } | undefined;
10729
11685
  lineRichMenuId?: string | null | undefined;
@@ -10969,9 +11925,19 @@ export declare const facebookFeedContract: {
10969
11925
  channelSecret?: string | undefined;
10970
11926
  additionalCredentials?: any;
10971
11927
  senderId?: string | undefined;
11928
+ whatsapp?: {
11929
+ email: string;
11930
+ wabaExternalId: string;
11931
+ phoneNumberId: string;
11932
+ wabaBusinessId?: string | undefined;
11933
+ clientId?: string | undefined;
11934
+ channelId?: string | undefined;
11935
+ status?: "active" | "pending" | undefined;
11936
+ apiKey?: string | undefined;
11937
+ } | undefined;
10972
11938
  vonageCredentials?: {
10973
- mobileNumber: string;
10974
11939
  apiKey: string;
11940
+ mobileNumber: string;
10975
11941
  apiSecret: string;
10976
11942
  } | undefined;
10977
11943
  lineRichMenuId?: string | null | undefined;
@@ -11048,9 +12014,19 @@ export declare const facebookFeedContract: {
11048
12014
  channelSecret?: string | undefined;
11049
12015
  additionalCredentials?: any;
11050
12016
  senderId?: string | undefined;
12017
+ whatsapp?: {
12018
+ email: string;
12019
+ wabaExternalId: string;
12020
+ phoneNumberId: string;
12021
+ wabaBusinessId?: string | undefined;
12022
+ clientId?: string | undefined;
12023
+ channelId?: string | undefined;
12024
+ status?: "active" | "pending" | undefined;
12025
+ apiKey?: string | undefined;
12026
+ } | undefined;
11051
12027
  vonageCredentials?: {
11052
- mobileNumber: string;
11053
12028
  apiKey: string;
12029
+ mobileNumber: string;
11054
12030
  apiSecret: string;
11055
12031
  } | undefined;
11056
12032
  lineRichMenuId?: string | null | undefined;
@@ -11575,9 +12551,19 @@ export declare const facebookFeedContract: {
11575
12551
  channelSecret?: string | undefined;
11576
12552
  additionalCredentials?: any;
11577
12553
  senderId?: string | undefined;
12554
+ whatsapp?: {
12555
+ email: string;
12556
+ wabaExternalId: string;
12557
+ phoneNumberId: string;
12558
+ wabaBusinessId?: string | undefined;
12559
+ clientId?: string | undefined;
12560
+ channelId?: string | undefined;
12561
+ status?: "active" | "pending" | undefined;
12562
+ apiKey?: string | undefined;
12563
+ } | undefined;
11578
12564
  vonageCredentials?: {
11579
- mobileNumber: string;
11580
12565
  apiKey: string;
12566
+ mobileNumber: string;
11581
12567
  apiSecret: string;
11582
12568
  } | undefined;
11583
12569
  lineRichMenuId?: string | null | undefined;
@@ -11965,9 +12951,19 @@ export declare const facebookFeedContract: {
11965
12951
  channelSecret?: string | undefined;
11966
12952
  additionalCredentials?: any;
11967
12953
  senderId?: string | undefined;
12954
+ whatsapp?: {
12955
+ email: string;
12956
+ wabaExternalId: string;
12957
+ phoneNumberId: string;
12958
+ wabaBusinessId?: string | undefined;
12959
+ clientId?: string | undefined;
12960
+ channelId?: string | undefined;
12961
+ status?: "active" | "pending" | undefined;
12962
+ apiKey?: string | undefined;
12963
+ } | undefined;
11968
12964
  vonageCredentials?: {
11969
- mobileNumber: string;
11970
12965
  apiKey: string;
12966
+ mobileNumber: string;
11971
12967
  apiSecret: string;
11972
12968
  } | undefined;
11973
12969
  lineRichMenuId?: string | null | undefined;
@@ -12384,7 +13380,7 @@ export declare const facebookFeedContract: {
12384
13380
  deletedAt: z.ZodNullable<z.ZodDate>;
12385
13381
  message: z.ZodString;
12386
13382
  direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
12387
- 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"]>;
13383
+ 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"]>;
12388
13384
  readAt: z.ZodDate;
12389
13385
  metadata: z.ZodAny;
12390
13386
  platformId: z.ZodString;
@@ -13042,7 +14038,7 @@ export declare const facebookFeedContract: {
13042
14038
  };
13043
14039
  }>;
13044
14040
  }, "strip", z.ZodTypeAny, {
13045
- 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";
14041
+ 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";
13046
14042
  message: string;
13047
14043
  id: string;
13048
14044
  url: string;
@@ -13204,7 +14200,7 @@ export declare const facebookFeedContract: {
13204
14200
  metadata?: any;
13205
14201
  template?: any;
13206
14202
  }, {
13207
- 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";
14203
+ 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";
13208
14204
  message: string;
13209
14205
  id: string;
13210
14206
  url: string;
@@ -14006,7 +15002,7 @@ export declare const facebookFeedContract: {
14006
15002
  editedMessageid: z.ZodString;
14007
15003
  label: z.ZodOptional<z.ZodString>;
14008
15004
  }, "strip", z.ZodTypeAny, {
14009
- 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";
15005
+ 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";
14010
15006
  message: string;
14011
15007
  id: string;
14012
15008
  url: string;
@@ -14128,9 +15124,19 @@ export declare const facebookFeedContract: {
14128
15124
  channelSecret?: string | undefined;
14129
15125
  additionalCredentials?: any;
14130
15126
  senderId?: string | undefined;
15127
+ whatsapp?: {
15128
+ email: string;
15129
+ wabaExternalId: string;
15130
+ phoneNumberId: string;
15131
+ wabaBusinessId?: string | undefined;
15132
+ clientId?: string | undefined;
15133
+ channelId?: string | undefined;
15134
+ status?: "active" | "pending" | undefined;
15135
+ apiKey?: string | undefined;
15136
+ } | undefined;
14131
15137
  vonageCredentials?: {
14132
- mobileNumber: string;
14133
15138
  apiKey: string;
15139
+ mobileNumber: string;
14134
15140
  apiSecret: string;
14135
15141
  } | undefined;
14136
15142
  lineRichMenuId?: string | null | undefined;
@@ -14522,7 +15528,7 @@ export declare const facebookFeedContract: {
14522
15528
  previewUrl: string;
14523
15529
  imageSetId: string;
14524
15530
  repliedMessage: {
14525
- 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";
15531
+ 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";
14526
15532
  message: string;
14527
15533
  id: string;
14528
15534
  url: string;
@@ -14733,7 +15739,7 @@ export declare const facebookFeedContract: {
14733
15739
  template?: any;
14734
15740
  label?: string | undefined;
14735
15741
  }, {
14736
- 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";
15742
+ 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";
14737
15743
  message: string;
14738
15744
  id: string;
14739
15745
  url: string;
@@ -14855,9 +15861,19 @@ export declare const facebookFeedContract: {
14855
15861
  channelSecret?: string | undefined;
14856
15862
  additionalCredentials?: any;
14857
15863
  senderId?: string | undefined;
15864
+ whatsapp?: {
15865
+ email: string;
15866
+ wabaExternalId: string;
15867
+ phoneNumberId: string;
15868
+ wabaBusinessId?: string | undefined;
15869
+ clientId?: string | undefined;
15870
+ channelId?: string | undefined;
15871
+ status?: "active" | "pending" | undefined;
15872
+ apiKey?: string | undefined;
15873
+ } | undefined;
14858
15874
  vonageCredentials?: {
14859
- mobileNumber: string;
14860
15875
  apiKey: string;
15876
+ mobileNumber: string;
14861
15877
  apiSecret: string;
14862
15878
  } | undefined;
14863
15879
  lineRichMenuId?: string | null | undefined;
@@ -15249,7 +16265,7 @@ export declare const facebookFeedContract: {
15249
16265
  previewUrl: string;
15250
16266
  imageSetId: string;
15251
16267
  repliedMessage: {
15252
- 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";
16268
+ 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";
15253
16269
  message: string;
15254
16270
  id: string;
15255
16271
  url: string;
@@ -15461,7 +16477,7 @@ export declare const facebookFeedContract: {
15461
16477
  label?: string | undefined;
15462
16478
  }>>>;
15463
16479
  }, "strip", z.ZodTypeAny, {
15464
- 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";
16480
+ 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";
15465
16481
  message: string;
15466
16482
  id: string;
15467
16483
  url: string;
@@ -15583,9 +16599,19 @@ export declare const facebookFeedContract: {
15583
16599
  channelSecret?: string | undefined;
15584
16600
  additionalCredentials?: any;
15585
16601
  senderId?: string | undefined;
16602
+ whatsapp?: {
16603
+ email: string;
16604
+ wabaExternalId: string;
16605
+ phoneNumberId: string;
16606
+ wabaBusinessId?: string | undefined;
16607
+ clientId?: string | undefined;
16608
+ channelId?: string | undefined;
16609
+ status?: "active" | "pending" | undefined;
16610
+ apiKey?: string | undefined;
16611
+ } | undefined;
15586
16612
  vonageCredentials?: {
15587
- mobileNumber: string;
15588
16613
  apiKey: string;
16614
+ mobileNumber: string;
15589
16615
  apiSecret: string;
15590
16616
  } | undefined;
15591
16617
  lineRichMenuId?: string | null | undefined;
@@ -15977,7 +17003,7 @@ export declare const facebookFeedContract: {
15977
17003
  previewUrl: string;
15978
17004
  imageSetId: string;
15979
17005
  repliedMessage: {
15980
- 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";
17006
+ 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";
15981
17007
  message: string;
15982
17008
  id: string;
15983
17009
  url: string;
@@ -16188,7 +17214,7 @@ export declare const facebookFeedContract: {
16188
17214
  template?: any;
16189
17215
  metadata?: any;
16190
17216
  fromMessage?: {
16191
- 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";
17217
+ 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";
16192
17218
  message: string;
16193
17219
  id: string;
16194
17220
  url: string;
@@ -16310,9 +17336,19 @@ export declare const facebookFeedContract: {
16310
17336
  channelSecret?: string | undefined;
16311
17337
  additionalCredentials?: any;
16312
17338
  senderId?: string | undefined;
17339
+ whatsapp?: {
17340
+ email: string;
17341
+ wabaExternalId: string;
17342
+ phoneNumberId: string;
17343
+ wabaBusinessId?: string | undefined;
17344
+ clientId?: string | undefined;
17345
+ channelId?: string | undefined;
17346
+ status?: "active" | "pending" | undefined;
17347
+ apiKey?: string | undefined;
17348
+ } | undefined;
16313
17349
  vonageCredentials?: {
16314
- mobileNumber: string;
16315
17350
  apiKey: string;
17351
+ mobileNumber: string;
16316
17352
  apiSecret: string;
16317
17353
  } | undefined;
16318
17354
  lineRichMenuId?: string | null | undefined;
@@ -16704,7 +17740,7 @@ export declare const facebookFeedContract: {
16704
17740
  previewUrl: string;
16705
17741
  imageSetId: string;
16706
17742
  repliedMessage: {
16707
- 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";
17743
+ 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";
16708
17744
  message: string;
16709
17745
  id: string;
16710
17746
  url: string;
@@ -16916,7 +17952,7 @@ export declare const facebookFeedContract: {
16916
17952
  label?: string | undefined;
16917
17953
  } | null | undefined;
16918
17954
  }, {
16919
- 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";
17955
+ 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";
16920
17956
  message: string;
16921
17957
  id: string;
16922
17958
  url: string;
@@ -17038,9 +18074,19 @@ export declare const facebookFeedContract: {
17038
18074
  channelSecret?: string | undefined;
17039
18075
  additionalCredentials?: any;
17040
18076
  senderId?: string | undefined;
18077
+ whatsapp?: {
18078
+ email: string;
18079
+ wabaExternalId: string;
18080
+ phoneNumberId: string;
18081
+ wabaBusinessId?: string | undefined;
18082
+ clientId?: string | undefined;
18083
+ channelId?: string | undefined;
18084
+ status?: "active" | "pending" | undefined;
18085
+ apiKey?: string | undefined;
18086
+ } | undefined;
17041
18087
  vonageCredentials?: {
17042
- mobileNumber: string;
17043
18088
  apiKey: string;
18089
+ mobileNumber: string;
17044
18090
  apiSecret: string;
17045
18091
  } | undefined;
17046
18092
  lineRichMenuId?: string | null | undefined;
@@ -17432,7 +18478,7 @@ export declare const facebookFeedContract: {
17432
18478
  previewUrl: string;
17433
18479
  imageSetId: string;
17434
18480
  repliedMessage: {
17435
- 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";
18481
+ 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";
17436
18482
  message: string;
17437
18483
  id: string;
17438
18484
  url: string;
@@ -17643,7 +18689,7 @@ export declare const facebookFeedContract: {
17643
18689
  template?: any;
17644
18690
  metadata?: any;
17645
18691
  fromMessage?: {
17646
- 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";
18692
+ 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";
17647
18693
  message: string;
17648
18694
  id: string;
17649
18695
  url: string;
@@ -17765,9 +18811,19 @@ export declare const facebookFeedContract: {
17765
18811
  channelSecret?: string | undefined;
17766
18812
  additionalCredentials?: any;
17767
18813
  senderId?: string | undefined;
18814
+ whatsapp?: {
18815
+ email: string;
18816
+ wabaExternalId: string;
18817
+ phoneNumberId: string;
18818
+ wabaBusinessId?: string | undefined;
18819
+ clientId?: string | undefined;
18820
+ channelId?: string | undefined;
18821
+ status?: "active" | "pending" | undefined;
18822
+ apiKey?: string | undefined;
18823
+ } | undefined;
17768
18824
  vonageCredentials?: {
17769
- mobileNumber: string;
17770
18825
  apiKey: string;
18826
+ mobileNumber: string;
17771
18827
  apiSecret: string;
17772
18828
  } | undefined;
17773
18829
  lineRichMenuId?: string | null | undefined;
@@ -18159,7 +19215,7 @@ export declare const facebookFeedContract: {
18159
19215
  previewUrl: string;
18160
19216
  imageSetId: string;
18161
19217
  repliedMessage: {
18162
- 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";
19218
+ 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";
18163
19219
  message: string;
18164
19220
  id: string;
18165
19221
  url: string;
@@ -18373,7 +19429,7 @@ export declare const facebookFeedContract: {
18373
19429
  }>;
18374
19430
  }, "strip", z.ZodTypeAny, {
18375
19431
  data: {
18376
- 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";
19432
+ 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";
18377
19433
  message: string;
18378
19434
  id: string;
18379
19435
  url: string;
@@ -18495,9 +19551,19 @@ export declare const facebookFeedContract: {
18495
19551
  channelSecret?: string | undefined;
18496
19552
  additionalCredentials?: any;
18497
19553
  senderId?: string | undefined;
19554
+ whatsapp?: {
19555
+ email: string;
19556
+ wabaExternalId: string;
19557
+ phoneNumberId: string;
19558
+ wabaBusinessId?: string | undefined;
19559
+ clientId?: string | undefined;
19560
+ channelId?: string | undefined;
19561
+ status?: "active" | "pending" | undefined;
19562
+ apiKey?: string | undefined;
19563
+ } | undefined;
18498
19564
  vonageCredentials?: {
18499
- mobileNumber: string;
18500
19565
  apiKey: string;
19566
+ mobileNumber: string;
18501
19567
  apiSecret: string;
18502
19568
  } | undefined;
18503
19569
  lineRichMenuId?: string | null | undefined;
@@ -18889,7 +19955,7 @@ export declare const facebookFeedContract: {
18889
19955
  previewUrl: string;
18890
19956
  imageSetId: string;
18891
19957
  repliedMessage: {
18892
- 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";
19958
+ 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";
18893
19959
  message: string;
18894
19960
  id: string;
18895
19961
  url: string;
@@ -19100,7 +20166,7 @@ export declare const facebookFeedContract: {
19100
20166
  template?: any;
19101
20167
  metadata?: any;
19102
20168
  fromMessage?: {
19103
- 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";
20169
+ 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";
19104
20170
  message: string;
19105
20171
  id: string;
19106
20172
  url: string;
@@ -19222,9 +20288,19 @@ export declare const facebookFeedContract: {
19222
20288
  channelSecret?: string | undefined;
19223
20289
  additionalCredentials?: any;
19224
20290
  senderId?: string | undefined;
20291
+ whatsapp?: {
20292
+ email: string;
20293
+ wabaExternalId: string;
20294
+ phoneNumberId: string;
20295
+ wabaBusinessId?: string | undefined;
20296
+ clientId?: string | undefined;
20297
+ channelId?: string | undefined;
20298
+ status?: "active" | "pending" | undefined;
20299
+ apiKey?: string | undefined;
20300
+ } | undefined;
19225
20301
  vonageCredentials?: {
19226
- mobileNumber: string;
19227
20302
  apiKey: string;
20303
+ mobileNumber: string;
19228
20304
  apiSecret: string;
19229
20305
  } | undefined;
19230
20306
  lineRichMenuId?: string | null | undefined;
@@ -19616,7 +20692,7 @@ export declare const facebookFeedContract: {
19616
20692
  previewUrl: string;
19617
20693
  imageSetId: string;
19618
20694
  repliedMessage: {
19619
- 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";
20695
+ 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";
19620
20696
  message: string;
19621
20697
  id: string;
19622
20698
  url: string;
@@ -19831,7 +20907,7 @@ export declare const facebookFeedContract: {
19831
20907
  requestId: string;
19832
20908
  }, {
19833
20909
  data: {
19834
- 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";
20910
+ 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";
19835
20911
  message: string;
19836
20912
  id: string;
19837
20913
  url: string;
@@ -19953,9 +21029,19 @@ export declare const facebookFeedContract: {
19953
21029
  channelSecret?: string | undefined;
19954
21030
  additionalCredentials?: any;
19955
21031
  senderId?: string | undefined;
21032
+ whatsapp?: {
21033
+ email: string;
21034
+ wabaExternalId: string;
21035
+ phoneNumberId: string;
21036
+ wabaBusinessId?: string | undefined;
21037
+ clientId?: string | undefined;
21038
+ channelId?: string | undefined;
21039
+ status?: "active" | "pending" | undefined;
21040
+ apiKey?: string | undefined;
21041
+ } | undefined;
19956
21042
  vonageCredentials?: {
19957
- mobileNumber: string;
19958
21043
  apiKey: string;
21044
+ mobileNumber: string;
19959
21045
  apiSecret: string;
19960
21046
  } | undefined;
19961
21047
  lineRichMenuId?: string | null | undefined;
@@ -20347,7 +21433,7 @@ export declare const facebookFeedContract: {
20347
21433
  previewUrl: string;
20348
21434
  imageSetId: string;
20349
21435
  repliedMessage: {
20350
- 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";
21436
+ 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";
20351
21437
  message: string;
20352
21438
  id: string;
20353
21439
  url: string;
@@ -20558,7 +21644,7 @@ export declare const facebookFeedContract: {
20558
21644
  template?: any;
20559
21645
  metadata?: any;
20560
21646
  fromMessage?: {
20561
- 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";
21647
+ 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";
20562
21648
  message: string;
20563
21649
  id: string;
20564
21650
  url: string;
@@ -20680,9 +21766,19 @@ export declare const facebookFeedContract: {
20680
21766
  channelSecret?: string | undefined;
20681
21767
  additionalCredentials?: any;
20682
21768
  senderId?: string | undefined;
21769
+ whatsapp?: {
21770
+ email: string;
21771
+ wabaExternalId: string;
21772
+ phoneNumberId: string;
21773
+ wabaBusinessId?: string | undefined;
21774
+ clientId?: string | undefined;
21775
+ channelId?: string | undefined;
21776
+ status?: "active" | "pending" | undefined;
21777
+ apiKey?: string | undefined;
21778
+ } | undefined;
20683
21779
  vonageCredentials?: {
20684
- mobileNumber: string;
20685
21780
  apiKey: string;
21781
+ mobileNumber: string;
20686
21782
  apiSecret: string;
20687
21783
  } | undefined;
20688
21784
  lineRichMenuId?: string | null | undefined;
@@ -21074,7 +22170,7 @@ export declare const facebookFeedContract: {
21074
22170
  previewUrl: string;
21075
22171
  imageSetId: string;
21076
22172
  repliedMessage: {
21077
- 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";
22173
+ 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";
21078
22174
  message: string;
21079
22175
  id: string;
21080
22176
  url: string;
@@ -21326,17 +22422,45 @@ export declare const facebookFeedContract: {
21326
22422
  channelSecret: z.ZodOptional<z.ZodString>;
21327
22423
  additionalCredentials: z.ZodOptional<z.ZodAny>;
21328
22424
  senderId: z.ZodOptional<z.ZodString>;
22425
+ whatsapp: z.ZodOptional<z.ZodObject<{
22426
+ wabaBusinessId: z.ZodOptional<z.ZodString>;
22427
+ wabaExternalId: z.ZodString;
22428
+ phoneNumberId: z.ZodString;
22429
+ email: z.ZodString;
22430
+ clientId: z.ZodOptional<z.ZodString>;
22431
+ channelId: z.ZodOptional<z.ZodString>;
22432
+ status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
22433
+ apiKey: z.ZodOptional<z.ZodString>;
22434
+ }, "strip", z.ZodTypeAny, {
22435
+ email: string;
22436
+ wabaExternalId: string;
22437
+ phoneNumberId: string;
22438
+ wabaBusinessId?: string | undefined;
22439
+ clientId?: string | undefined;
22440
+ channelId?: string | undefined;
22441
+ status?: "active" | "pending" | undefined;
22442
+ apiKey?: string | undefined;
22443
+ }, {
22444
+ email: string;
22445
+ wabaExternalId: string;
22446
+ phoneNumberId: string;
22447
+ wabaBusinessId?: string | undefined;
22448
+ clientId?: string | undefined;
22449
+ channelId?: string | undefined;
22450
+ status?: "active" | "pending" | undefined;
22451
+ apiKey?: string | undefined;
22452
+ }>>;
21329
22453
  vonageCredentials: z.ZodOptional<z.ZodObject<{
21330
22454
  mobileNumber: z.ZodString;
21331
22455
  apiKey: z.ZodString;
21332
22456
  apiSecret: z.ZodString;
21333
22457
  }, "strip", z.ZodTypeAny, {
21334
- mobileNumber: string;
21335
22458
  apiKey: string;
22459
+ mobileNumber: string;
21336
22460
  apiSecret: string;
21337
22461
  }, {
21338
- mobileNumber: string;
21339
22462
  apiKey: string;
22463
+ mobileNumber: string;
21340
22464
  apiSecret: string;
21341
22465
  }>>;
21342
22466
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -21348,9 +22472,19 @@ export declare const facebookFeedContract: {
21348
22472
  channelSecret?: string | undefined;
21349
22473
  additionalCredentials?: any;
21350
22474
  senderId?: string | undefined;
22475
+ whatsapp?: {
22476
+ email: string;
22477
+ wabaExternalId: string;
22478
+ phoneNumberId: string;
22479
+ wabaBusinessId?: string | undefined;
22480
+ clientId?: string | undefined;
22481
+ channelId?: string | undefined;
22482
+ status?: "active" | "pending" | undefined;
22483
+ apiKey?: string | undefined;
22484
+ } | undefined;
21351
22485
  vonageCredentials?: {
21352
- mobileNumber: string;
21353
22486
  apiKey: string;
22487
+ mobileNumber: string;
21354
22488
  apiSecret: string;
21355
22489
  } | undefined;
21356
22490
  lineRichMenuId?: string | null | undefined;
@@ -21362,9 +22496,19 @@ export declare const facebookFeedContract: {
21362
22496
  channelSecret?: string | undefined;
21363
22497
  additionalCredentials?: any;
21364
22498
  senderId?: string | undefined;
22499
+ whatsapp?: {
22500
+ email: string;
22501
+ wabaExternalId: string;
22502
+ phoneNumberId: string;
22503
+ wabaBusinessId?: string | undefined;
22504
+ clientId?: string | undefined;
22505
+ channelId?: string | undefined;
22506
+ status?: "active" | "pending" | undefined;
22507
+ apiKey?: string | undefined;
22508
+ } | undefined;
21365
22509
  vonageCredentials?: {
21366
- mobileNumber: string;
21367
22510
  apiKey: string;
22511
+ mobileNumber: string;
21368
22512
  apiSecret: string;
21369
22513
  } | undefined;
21370
22514
  lineRichMenuId?: string | null | undefined;
@@ -21406,9 +22550,19 @@ export declare const facebookFeedContract: {
21406
22550
  channelSecret?: string | undefined;
21407
22551
  additionalCredentials?: any;
21408
22552
  senderId?: string | undefined;
22553
+ whatsapp?: {
22554
+ email: string;
22555
+ wabaExternalId: string;
22556
+ phoneNumberId: string;
22557
+ wabaBusinessId?: string | undefined;
22558
+ clientId?: string | undefined;
22559
+ channelId?: string | undefined;
22560
+ status?: "active" | "pending" | undefined;
22561
+ apiKey?: string | undefined;
22562
+ } | undefined;
21409
22563
  vonageCredentials?: {
21410
- mobileNumber: string;
21411
22564
  apiKey: string;
22565
+ mobileNumber: string;
21412
22566
  apiSecret: string;
21413
22567
  } | undefined;
21414
22568
  lineRichMenuId?: string | null | undefined;
@@ -21438,9 +22592,19 @@ export declare const facebookFeedContract: {
21438
22592
  channelSecret?: string | undefined;
21439
22593
  additionalCredentials?: any;
21440
22594
  senderId?: string | undefined;
22595
+ whatsapp?: {
22596
+ email: string;
22597
+ wabaExternalId: string;
22598
+ phoneNumberId: string;
22599
+ wabaBusinessId?: string | undefined;
22600
+ clientId?: string | undefined;
22601
+ channelId?: string | undefined;
22602
+ status?: "active" | "pending" | undefined;
22603
+ apiKey?: string | undefined;
22604
+ } | undefined;
21441
22605
  vonageCredentials?: {
21442
- mobileNumber: string;
21443
22606
  apiKey: string;
22607
+ mobileNumber: string;
21444
22608
  apiSecret: string;
21445
22609
  } | undefined;
21446
22610
  lineRichMenuId?: string | null | undefined;
@@ -21473,9 +22637,19 @@ export declare const facebookFeedContract: {
21473
22637
  channelSecret?: string | undefined;
21474
22638
  additionalCredentials?: any;
21475
22639
  senderId?: string | undefined;
22640
+ whatsapp?: {
22641
+ email: string;
22642
+ wabaExternalId: string;
22643
+ phoneNumberId: string;
22644
+ wabaBusinessId?: string | undefined;
22645
+ clientId?: string | undefined;
22646
+ channelId?: string | undefined;
22647
+ status?: "active" | "pending" | undefined;
22648
+ apiKey?: string | undefined;
22649
+ } | undefined;
21476
22650
  vonageCredentials?: {
21477
- mobileNumber: string;
21478
22651
  apiKey: string;
22652
+ mobileNumber: string;
21479
22653
  apiSecret: string;
21480
22654
  } | undefined;
21481
22655
  lineRichMenuId?: string | null | undefined;
@@ -21508,9 +22682,19 @@ export declare const facebookFeedContract: {
21508
22682
  channelSecret?: string | undefined;
21509
22683
  additionalCredentials?: any;
21510
22684
  senderId?: string | undefined;
22685
+ whatsapp?: {
22686
+ email: string;
22687
+ wabaExternalId: string;
22688
+ phoneNumberId: string;
22689
+ wabaBusinessId?: string | undefined;
22690
+ clientId?: string | undefined;
22691
+ channelId?: string | undefined;
22692
+ status?: "active" | "pending" | undefined;
22693
+ apiKey?: string | undefined;
22694
+ } | undefined;
21511
22695
  vonageCredentials?: {
21512
- mobileNumber: string;
21513
22696
  apiKey: string;
22697
+ mobileNumber: string;
21514
22698
  apiSecret: string;
21515
22699
  } | undefined;
21516
22700
  lineRichMenuId?: string | null | undefined;
@@ -21535,7 +22719,7 @@ export declare const facebookFeedContract: {
21535
22719
  id: z.ZodOptional<z.ZodString>;
21536
22720
  message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
21537
22721
  direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
21538
- 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"]>;
22722
+ 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"]>;
21539
22723
  readAt: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodString]>>>;
21540
22724
  metadata: z.ZodOptional<z.ZodAny>;
21541
22725
  platformId: z.ZodOptional<z.ZodString>;
@@ -21587,7 +22771,7 @@ export declare const facebookFeedContract: {
21587
22771
  parentMessageId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
21588
22772
  feedPostId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
21589
22773
  }, "strip", z.ZodTypeAny, {
21590
- 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";
22774
+ 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";
21591
22775
  direction: "incoming" | "outgoing" | "system";
21592
22776
  id?: string | undefined;
21593
22777
  message?: string | null | undefined;
@@ -21618,7 +22802,7 @@ export declare const facebookFeedContract: {
21618
22802
  parentMessageId?: string | null | undefined;
21619
22803
  feedPostId?: string | null | undefined;
21620
22804
  }, {
21621
- 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";
22805
+ 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";
21622
22806
  direction: "incoming" | "outgoing" | "system";
21623
22807
  id?: string | undefined;
21624
22808
  message?: string | null | undefined;
@@ -21651,7 +22835,7 @@ export declare const facebookFeedContract: {
21651
22835
  }>;
21652
22836
  }, "strip", z.ZodTypeAny, {
21653
22837
  message: {
21654
- 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";
22838
+ 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";
21655
22839
  direction: "incoming" | "outgoing" | "system";
21656
22840
  id?: string | undefined;
21657
22841
  message?: string | null | undefined;
@@ -21695,9 +22879,19 @@ export declare const facebookFeedContract: {
21695
22879
  channelSecret?: string | undefined;
21696
22880
  additionalCredentials?: any;
21697
22881
  senderId?: string | undefined;
22882
+ whatsapp?: {
22883
+ email: string;
22884
+ wabaExternalId: string;
22885
+ phoneNumberId: string;
22886
+ wabaBusinessId?: string | undefined;
22887
+ clientId?: string | undefined;
22888
+ channelId?: string | undefined;
22889
+ status?: "active" | "pending" | undefined;
22890
+ apiKey?: string | undefined;
22891
+ } | undefined;
21698
22892
  vonageCredentials?: {
21699
- mobileNumber: string;
21700
22893
  apiKey: string;
22894
+ mobileNumber: string;
21701
22895
  apiSecret: string;
21702
22896
  } | undefined;
21703
22897
  lineRichMenuId?: string | null | undefined;
@@ -21720,7 +22914,7 @@ export declare const facebookFeedContract: {
21720
22914
  };
21721
22915
  }, {
21722
22916
  message: {
21723
- 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";
22917
+ 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";
21724
22918
  direction: "incoming" | "outgoing" | "system";
21725
22919
  id?: string | undefined;
21726
22920
  message?: string | null | undefined;
@@ -21764,9 +22958,19 @@ export declare const facebookFeedContract: {
21764
22958
  channelSecret?: string | undefined;
21765
22959
  additionalCredentials?: any;
21766
22960
  senderId?: string | undefined;
22961
+ whatsapp?: {
22962
+ email: string;
22963
+ wabaExternalId: string;
22964
+ phoneNumberId: string;
22965
+ wabaBusinessId?: string | undefined;
22966
+ clientId?: string | undefined;
22967
+ channelId?: string | undefined;
22968
+ status?: "active" | "pending" | undefined;
22969
+ apiKey?: string | undefined;
22970
+ } | undefined;
21767
22971
  vonageCredentials?: {
21768
- mobileNumber: string;
21769
22972
  apiKey: string;
22973
+ mobileNumber: string;
21770
22974
  apiSecret: string;
21771
22975
  } | undefined;
21772
22976
  lineRichMenuId?: string | null | undefined;
@@ -21804,17 +23008,45 @@ export declare const facebookFeedContract: {
21804
23008
  channelSecret: z.ZodOptional<z.ZodString>;
21805
23009
  additionalCredentials: z.ZodOptional<z.ZodAny>;
21806
23010
  senderId: z.ZodOptional<z.ZodString>;
23011
+ whatsapp: z.ZodOptional<z.ZodObject<{
23012
+ wabaBusinessId: z.ZodOptional<z.ZodString>;
23013
+ wabaExternalId: z.ZodString;
23014
+ phoneNumberId: z.ZodString;
23015
+ email: z.ZodString;
23016
+ clientId: z.ZodOptional<z.ZodString>;
23017
+ channelId: z.ZodOptional<z.ZodString>;
23018
+ status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
23019
+ apiKey: z.ZodOptional<z.ZodString>;
23020
+ }, "strip", z.ZodTypeAny, {
23021
+ email: string;
23022
+ wabaExternalId: string;
23023
+ phoneNumberId: string;
23024
+ wabaBusinessId?: string | undefined;
23025
+ clientId?: string | undefined;
23026
+ channelId?: string | undefined;
23027
+ status?: "active" | "pending" | undefined;
23028
+ apiKey?: string | undefined;
23029
+ }, {
23030
+ email: string;
23031
+ wabaExternalId: string;
23032
+ phoneNumberId: string;
23033
+ wabaBusinessId?: string | undefined;
23034
+ clientId?: string | undefined;
23035
+ channelId?: string | undefined;
23036
+ status?: "active" | "pending" | undefined;
23037
+ apiKey?: string | undefined;
23038
+ }>>;
21807
23039
  vonageCredentials: z.ZodOptional<z.ZodObject<{
21808
23040
  mobileNumber: z.ZodString;
21809
23041
  apiKey: z.ZodString;
21810
23042
  apiSecret: z.ZodString;
21811
23043
  }, "strip", z.ZodTypeAny, {
21812
- mobileNumber: string;
21813
23044
  apiKey: string;
23045
+ mobileNumber: string;
21814
23046
  apiSecret: string;
21815
23047
  }, {
21816
- mobileNumber: string;
21817
23048
  apiKey: string;
23049
+ mobileNumber: string;
21818
23050
  apiSecret: string;
21819
23051
  }>>;
21820
23052
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -21826,9 +23058,19 @@ export declare const facebookFeedContract: {
21826
23058
  channelSecret?: string | undefined;
21827
23059
  additionalCredentials?: any;
21828
23060
  senderId?: string | undefined;
23061
+ whatsapp?: {
23062
+ email: string;
23063
+ wabaExternalId: string;
23064
+ phoneNumberId: string;
23065
+ wabaBusinessId?: string | undefined;
23066
+ clientId?: string | undefined;
23067
+ channelId?: string | undefined;
23068
+ status?: "active" | "pending" | undefined;
23069
+ apiKey?: string | undefined;
23070
+ } | undefined;
21829
23071
  vonageCredentials?: {
21830
- mobileNumber: string;
21831
23072
  apiKey: string;
23073
+ mobileNumber: string;
21832
23074
  apiSecret: string;
21833
23075
  } | undefined;
21834
23076
  lineRichMenuId?: string | null | undefined;
@@ -21840,9 +23082,19 @@ export declare const facebookFeedContract: {
21840
23082
  channelSecret?: string | undefined;
21841
23083
  additionalCredentials?: any;
21842
23084
  senderId?: string | undefined;
23085
+ whatsapp?: {
23086
+ email: string;
23087
+ wabaExternalId: string;
23088
+ phoneNumberId: string;
23089
+ wabaBusinessId?: string | undefined;
23090
+ clientId?: string | undefined;
23091
+ channelId?: string | undefined;
23092
+ status?: "active" | "pending" | undefined;
23093
+ apiKey?: string | undefined;
23094
+ } | undefined;
21843
23095
  vonageCredentials?: {
21844
- mobileNumber: string;
21845
23096
  apiKey: string;
23097
+ mobileNumber: string;
21846
23098
  apiSecret: string;
21847
23099
  } | undefined;
21848
23100
  lineRichMenuId?: string | null | undefined;
@@ -21884,9 +23136,19 @@ export declare const facebookFeedContract: {
21884
23136
  channelSecret?: string | undefined;
21885
23137
  additionalCredentials?: any;
21886
23138
  senderId?: string | undefined;
23139
+ whatsapp?: {
23140
+ email: string;
23141
+ wabaExternalId: string;
23142
+ phoneNumberId: string;
23143
+ wabaBusinessId?: string | undefined;
23144
+ clientId?: string | undefined;
23145
+ channelId?: string | undefined;
23146
+ status?: "active" | "pending" | undefined;
23147
+ apiKey?: string | undefined;
23148
+ } | undefined;
21887
23149
  vonageCredentials?: {
21888
- mobileNumber: string;
21889
23150
  apiKey: string;
23151
+ mobileNumber: string;
21890
23152
  apiSecret: string;
21891
23153
  } | undefined;
21892
23154
  lineRichMenuId?: string | null | undefined;
@@ -21916,9 +23178,19 @@ export declare const facebookFeedContract: {
21916
23178
  channelSecret?: string | undefined;
21917
23179
  additionalCredentials?: any;
21918
23180
  senderId?: string | undefined;
23181
+ whatsapp?: {
23182
+ email: string;
23183
+ wabaExternalId: string;
23184
+ phoneNumberId: string;
23185
+ wabaBusinessId?: string | undefined;
23186
+ clientId?: string | undefined;
23187
+ channelId?: string | undefined;
23188
+ status?: "active" | "pending" | undefined;
23189
+ apiKey?: string | undefined;
23190
+ } | undefined;
21919
23191
  vonageCredentials?: {
21920
- mobileNumber: string;
21921
23192
  apiKey: string;
23193
+ mobileNumber: string;
21922
23194
  apiSecret: string;
21923
23195
  } | undefined;
21924
23196
  lineRichMenuId?: string | null | undefined;
@@ -21951,9 +23223,19 @@ export declare const facebookFeedContract: {
21951
23223
  channelSecret?: string | undefined;
21952
23224
  additionalCredentials?: any;
21953
23225
  senderId?: string | undefined;
23226
+ whatsapp?: {
23227
+ email: string;
23228
+ wabaExternalId: string;
23229
+ phoneNumberId: string;
23230
+ wabaBusinessId?: string | undefined;
23231
+ clientId?: string | undefined;
23232
+ channelId?: string | undefined;
23233
+ status?: "active" | "pending" | undefined;
23234
+ apiKey?: string | undefined;
23235
+ } | undefined;
21954
23236
  vonageCredentials?: {
21955
- mobileNumber: string;
21956
23237
  apiKey: string;
23238
+ mobileNumber: string;
21957
23239
  apiSecret: string;
21958
23240
  } | undefined;
21959
23241
  lineRichMenuId?: string | null | undefined;
@@ -21986,9 +23268,19 @@ export declare const facebookFeedContract: {
21986
23268
  channelSecret?: string | undefined;
21987
23269
  additionalCredentials?: any;
21988
23270
  senderId?: string | undefined;
23271
+ whatsapp?: {
23272
+ email: string;
23273
+ wabaExternalId: string;
23274
+ phoneNumberId: string;
23275
+ wabaBusinessId?: string | undefined;
23276
+ clientId?: string | undefined;
23277
+ channelId?: string | undefined;
23278
+ status?: "active" | "pending" | undefined;
23279
+ apiKey?: string | undefined;
23280
+ } | undefined;
21989
23281
  vonageCredentials?: {
21990
- mobileNumber: string;
21991
23282
  apiKey: string;
23283
+ mobileNumber: string;
21992
23284
  apiSecret: string;
21993
23285
  } | undefined;
21994
23286
  lineRichMenuId?: string | null | undefined;
@@ -22013,7 +23305,7 @@ export declare const facebookFeedContract: {
22013
23305
  id: z.ZodOptional<z.ZodString>;
22014
23306
  message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
22015
23307
  direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
22016
- 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"]>;
23308
+ 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"]>;
22017
23309
  readAt: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodString]>>>;
22018
23310
  metadata: z.ZodOptional<z.ZodAny>;
22019
23311
  platformId: z.ZodOptional<z.ZodString>;
@@ -22065,7 +23357,7 @@ export declare const facebookFeedContract: {
22065
23357
  parentMessageId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
22066
23358
  feedPostId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
22067
23359
  }, "strip", z.ZodTypeAny, {
22068
- 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";
23360
+ 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";
22069
23361
  direction: "incoming" | "outgoing" | "system";
22070
23362
  id?: string | undefined;
22071
23363
  message?: string | null | undefined;
@@ -22096,7 +23388,7 @@ export declare const facebookFeedContract: {
22096
23388
  parentMessageId?: string | null | undefined;
22097
23389
  feedPostId?: string | null | undefined;
22098
23390
  }, {
22099
- 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";
23391
+ 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";
22100
23392
  direction: "incoming" | "outgoing" | "system";
22101
23393
  id?: string | undefined;
22102
23394
  message?: string | null | undefined;
@@ -22129,7 +23421,7 @@ export declare const facebookFeedContract: {
22129
23421
  }>;
22130
23422
  }, "strip", z.ZodTypeAny, {
22131
23423
  message: {
22132
- 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";
23424
+ 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";
22133
23425
  direction: "incoming" | "outgoing" | "system";
22134
23426
  id?: string | undefined;
22135
23427
  message?: string | null | undefined;
@@ -22173,9 +23465,19 @@ export declare const facebookFeedContract: {
22173
23465
  channelSecret?: string | undefined;
22174
23466
  additionalCredentials?: any;
22175
23467
  senderId?: string | undefined;
23468
+ whatsapp?: {
23469
+ email: string;
23470
+ wabaExternalId: string;
23471
+ phoneNumberId: string;
23472
+ wabaBusinessId?: string | undefined;
23473
+ clientId?: string | undefined;
23474
+ channelId?: string | undefined;
23475
+ status?: "active" | "pending" | undefined;
23476
+ apiKey?: string | undefined;
23477
+ } | undefined;
22176
23478
  vonageCredentials?: {
22177
- mobileNumber: string;
22178
23479
  apiKey: string;
23480
+ mobileNumber: string;
22179
23481
  apiSecret: string;
22180
23482
  } | undefined;
22181
23483
  lineRichMenuId?: string | null | undefined;
@@ -22198,7 +23500,7 @@ export declare const facebookFeedContract: {
22198
23500
  };
22199
23501
  }, {
22200
23502
  message: {
22201
- 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";
23503
+ 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";
22202
23504
  direction: "incoming" | "outgoing" | "system";
22203
23505
  id?: string | undefined;
22204
23506
  message?: string | null | undefined;
@@ -22242,9 +23544,19 @@ export declare const facebookFeedContract: {
22242
23544
  channelSecret?: string | undefined;
22243
23545
  additionalCredentials?: any;
22244
23546
  senderId?: string | undefined;
23547
+ whatsapp?: {
23548
+ email: string;
23549
+ wabaExternalId: string;
23550
+ phoneNumberId: string;
23551
+ wabaBusinessId?: string | undefined;
23552
+ clientId?: string | undefined;
23553
+ channelId?: string | undefined;
23554
+ status?: "active" | "pending" | undefined;
23555
+ apiKey?: string | undefined;
23556
+ } | undefined;
22245
23557
  vonageCredentials?: {
22246
- mobileNumber: string;
22247
23558
  apiKey: string;
23559
+ mobileNumber: string;
22248
23560
  apiSecret: string;
22249
23561
  } | undefined;
22250
23562
  lineRichMenuId?: string | null | undefined;