@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
@@ -144,17 +144,45 @@ export declare const messengerContract: {
144
144
  channelSecret: z.ZodOptional<z.ZodString>;
145
145
  additionalCredentials: z.ZodOptional<z.ZodAny>;
146
146
  senderId: z.ZodOptional<z.ZodString>;
147
+ whatsapp: z.ZodOptional<z.ZodObject<{
148
+ wabaBusinessId: z.ZodOptional<z.ZodString>;
149
+ wabaExternalId: z.ZodString;
150
+ phoneNumberId: z.ZodString;
151
+ email: z.ZodString;
152
+ clientId: z.ZodOptional<z.ZodString>;
153
+ channelId: z.ZodOptional<z.ZodString>;
154
+ status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
155
+ apiKey: z.ZodOptional<z.ZodString>;
156
+ }, "strip", z.ZodTypeAny, {
157
+ email: string;
158
+ wabaExternalId: string;
159
+ phoneNumberId: string;
160
+ wabaBusinessId?: string | undefined;
161
+ clientId?: string | undefined;
162
+ channelId?: string | undefined;
163
+ status?: "active" | "pending" | undefined;
164
+ apiKey?: string | undefined;
165
+ }, {
166
+ email: string;
167
+ wabaExternalId: string;
168
+ phoneNumberId: string;
169
+ wabaBusinessId?: string | undefined;
170
+ clientId?: string | undefined;
171
+ channelId?: string | undefined;
172
+ status?: "active" | "pending" | undefined;
173
+ apiKey?: string | undefined;
174
+ }>>;
147
175
  vonageCredentials: z.ZodOptional<z.ZodObject<{
148
176
  mobileNumber: z.ZodString;
149
177
  apiKey: z.ZodString;
150
178
  apiSecret: z.ZodString;
151
179
  }, "strip", z.ZodTypeAny, {
152
- mobileNumber: string;
153
180
  apiKey: string;
181
+ mobileNumber: string;
154
182
  apiSecret: string;
155
183
  }, {
156
- mobileNumber: string;
157
184
  apiKey: string;
185
+ mobileNumber: string;
158
186
  apiSecret: string;
159
187
  }>>;
160
188
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -166,9 +194,19 @@ export declare const messengerContract: {
166
194
  channelSecret?: string | undefined;
167
195
  additionalCredentials?: any;
168
196
  senderId?: string | undefined;
197
+ whatsapp?: {
198
+ email: string;
199
+ wabaExternalId: string;
200
+ phoneNumberId: string;
201
+ wabaBusinessId?: string | undefined;
202
+ clientId?: string | undefined;
203
+ channelId?: string | undefined;
204
+ status?: "active" | "pending" | undefined;
205
+ apiKey?: string | undefined;
206
+ } | undefined;
169
207
  vonageCredentials?: {
170
- mobileNumber: string;
171
208
  apiKey: string;
209
+ mobileNumber: string;
172
210
  apiSecret: string;
173
211
  } | undefined;
174
212
  lineRichMenuId?: string | null | undefined;
@@ -180,9 +218,19 @@ export declare const messengerContract: {
180
218
  channelSecret?: string | undefined;
181
219
  additionalCredentials?: any;
182
220
  senderId?: string | undefined;
221
+ whatsapp?: {
222
+ email: string;
223
+ wabaExternalId: string;
224
+ phoneNumberId: string;
225
+ wabaBusinessId?: string | undefined;
226
+ clientId?: string | undefined;
227
+ channelId?: string | undefined;
228
+ status?: "active" | "pending" | undefined;
229
+ apiKey?: string | undefined;
230
+ } | undefined;
183
231
  vonageCredentials?: {
184
- mobileNumber: string;
185
232
  apiKey: string;
233
+ mobileNumber: string;
186
234
  apiSecret: string;
187
235
  } | undefined;
188
236
  lineRichMenuId?: string | null | undefined;
@@ -224,9 +272,19 @@ export declare const messengerContract: {
224
272
  channelSecret?: string | undefined;
225
273
  additionalCredentials?: any;
226
274
  senderId?: string | undefined;
275
+ whatsapp?: {
276
+ email: string;
277
+ wabaExternalId: string;
278
+ phoneNumberId: string;
279
+ wabaBusinessId?: string | undefined;
280
+ clientId?: string | undefined;
281
+ channelId?: string | undefined;
282
+ status?: "active" | "pending" | undefined;
283
+ apiKey?: string | undefined;
284
+ } | undefined;
227
285
  vonageCredentials?: {
228
- mobileNumber: string;
229
286
  apiKey: string;
287
+ mobileNumber: string;
230
288
  apiSecret: string;
231
289
  } | undefined;
232
290
  lineRichMenuId?: string | null | undefined;
@@ -256,9 +314,19 @@ export declare const messengerContract: {
256
314
  channelSecret?: string | undefined;
257
315
  additionalCredentials?: any;
258
316
  senderId?: string | undefined;
317
+ whatsapp?: {
318
+ email: string;
319
+ wabaExternalId: string;
320
+ phoneNumberId: string;
321
+ wabaBusinessId?: string | undefined;
322
+ clientId?: string | undefined;
323
+ channelId?: string | undefined;
324
+ status?: "active" | "pending" | undefined;
325
+ apiKey?: string | undefined;
326
+ } | undefined;
259
327
  vonageCredentials?: {
260
- mobileNumber: string;
261
328
  apiKey: string;
329
+ mobileNumber: string;
262
330
  apiSecret: string;
263
331
  } | undefined;
264
332
  lineRichMenuId?: string | null | undefined;
@@ -292,9 +360,19 @@ export declare const messengerContract: {
292
360
  channelSecret?: string | undefined;
293
361
  additionalCredentials?: any;
294
362
  senderId?: string | undefined;
363
+ whatsapp?: {
364
+ email: string;
365
+ wabaExternalId: string;
366
+ phoneNumberId: string;
367
+ wabaBusinessId?: string | undefined;
368
+ clientId?: string | undefined;
369
+ channelId?: string | undefined;
370
+ status?: "active" | "pending" | undefined;
371
+ apiKey?: string | undefined;
372
+ } | undefined;
295
373
  vonageCredentials?: {
296
- mobileNumber: string;
297
374
  apiKey: string;
375
+ mobileNumber: string;
298
376
  apiSecret: string;
299
377
  } | undefined;
300
378
  lineRichMenuId?: string | null | undefined;
@@ -367,9 +445,19 @@ export declare const messengerContract: {
367
445
  channelSecret?: string | undefined;
368
446
  additionalCredentials?: any;
369
447
  senderId?: string | undefined;
448
+ whatsapp?: {
449
+ email: string;
450
+ wabaExternalId: string;
451
+ phoneNumberId: string;
452
+ wabaBusinessId?: string | undefined;
453
+ clientId?: string | undefined;
454
+ channelId?: string | undefined;
455
+ status?: "active" | "pending" | undefined;
456
+ apiKey?: string | undefined;
457
+ } | undefined;
370
458
  vonageCredentials?: {
371
- mobileNumber: string;
372
459
  apiKey: string;
460
+ mobileNumber: string;
373
461
  apiSecret: string;
374
462
  } | undefined;
375
463
  lineRichMenuId?: string | null | undefined;
@@ -434,7 +522,7 @@ export declare const messengerContract: {
434
522
  id: z.ZodOptional<z.ZodString>;
435
523
  message: z.ZodOptional<z.ZodString>;
436
524
  direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
437
- 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"]>;
525
+ 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"]>;
438
526
  readAt: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodString]>>>;
439
527
  metadata: z.ZodOptional<z.ZodAny>;
440
528
  platformId: z.ZodOptional<z.ZodString>;
@@ -490,7 +578,7 @@ export declare const messengerContract: {
490
578
  editedAt: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodString]>>>;
491
579
  label: z.ZodOptional<z.ZodString>;
492
580
  }, "strip", z.ZodTypeAny, {
493
- 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";
581
+ 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";
494
582
  direction: "incoming" | "outgoing" | "system";
495
583
  id?: string | undefined;
496
584
  message?: string | undefined;
@@ -525,7 +613,7 @@ export declare const messengerContract: {
525
613
  editedAt?: string | Date | null | undefined;
526
614
  label?: string | undefined;
527
615
  }, {
528
- 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";
616
+ 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";
529
617
  direction: "incoming" | "outgoing" | "system";
530
618
  id?: string | undefined;
531
619
  message?: string | undefined;
@@ -562,7 +650,7 @@ export declare const messengerContract: {
562
650
  }>;
563
651
  }, "strip", z.ZodTypeAny, {
564
652
  message: {
565
- 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";
653
+ 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";
566
654
  direction: "incoming" | "outgoing" | "system";
567
655
  id?: string | undefined;
568
656
  message?: string | undefined;
@@ -610,9 +698,19 @@ export declare const messengerContract: {
610
698
  channelSecret?: string | undefined;
611
699
  additionalCredentials?: any;
612
700
  senderId?: string | undefined;
701
+ whatsapp?: {
702
+ email: string;
703
+ wabaExternalId: string;
704
+ phoneNumberId: string;
705
+ wabaBusinessId?: string | undefined;
706
+ clientId?: string | undefined;
707
+ channelId?: string | undefined;
708
+ status?: "active" | "pending" | undefined;
709
+ apiKey?: string | undefined;
710
+ } | undefined;
613
711
  vonageCredentials?: {
614
- mobileNumber: string;
615
712
  apiKey: string;
713
+ mobileNumber: string;
616
714
  apiSecret: string;
617
715
  } | undefined;
618
716
  lineRichMenuId?: string | null | undefined;
@@ -676,7 +774,7 @@ export declare const messengerContract: {
676
774
  isBot: boolean | null;
677
775
  }, {
678
776
  message: {
679
- 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";
777
+ 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";
680
778
  direction: "incoming" | "outgoing" | "system";
681
779
  id?: string | undefined;
682
780
  message?: string | undefined;
@@ -724,9 +822,19 @@ export declare const messengerContract: {
724
822
  channelSecret?: string | undefined;
725
823
  additionalCredentials?: any;
726
824
  senderId?: string | undefined;
825
+ whatsapp?: {
826
+ email: string;
827
+ wabaExternalId: string;
828
+ phoneNumberId: string;
829
+ wabaBusinessId?: string | undefined;
830
+ clientId?: string | undefined;
831
+ channelId?: string | undefined;
832
+ status?: "active" | "pending" | undefined;
833
+ apiKey?: string | undefined;
834
+ } | undefined;
727
835
  vonageCredentials?: {
728
- mobileNumber: string;
729
836
  apiKey: string;
837
+ mobileNumber: string;
730
838
  apiSecret: string;
731
839
  } | undefined;
732
840
  lineRichMenuId?: string | null | undefined;
@@ -794,7 +902,7 @@ export declare const messengerContract: {
794
902
  200: z.ZodObject<{
795
903
  requestId: z.ZodString;
796
904
  data: z.ZodObject<{
797
- 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"]>;
905
+ 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"]>;
798
906
  message: z.ZodString;
799
907
  id: z.ZodString;
800
908
  url: z.ZodString;
@@ -2733,17 +2841,45 @@ export declare const messengerContract: {
2733
2841
  channelSecret: z.ZodOptional<z.ZodString>;
2734
2842
  additionalCredentials: z.ZodOptional<z.ZodAny>;
2735
2843
  senderId: z.ZodOptional<z.ZodString>;
2844
+ whatsapp: z.ZodOptional<z.ZodObject<{
2845
+ wabaBusinessId: z.ZodOptional<z.ZodString>;
2846
+ wabaExternalId: z.ZodString;
2847
+ phoneNumberId: z.ZodString;
2848
+ email: z.ZodString;
2849
+ clientId: z.ZodOptional<z.ZodString>;
2850
+ channelId: z.ZodOptional<z.ZodString>;
2851
+ status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
2852
+ apiKey: z.ZodOptional<z.ZodString>;
2853
+ }, "strip", z.ZodTypeAny, {
2854
+ email: string;
2855
+ wabaExternalId: string;
2856
+ phoneNumberId: string;
2857
+ wabaBusinessId?: string | undefined;
2858
+ clientId?: string | undefined;
2859
+ channelId?: string | undefined;
2860
+ status?: "active" | "pending" | undefined;
2861
+ apiKey?: string | undefined;
2862
+ }, {
2863
+ email: string;
2864
+ wabaExternalId: string;
2865
+ phoneNumberId: string;
2866
+ wabaBusinessId?: string | undefined;
2867
+ clientId?: string | undefined;
2868
+ channelId?: string | undefined;
2869
+ status?: "active" | "pending" | undefined;
2870
+ apiKey?: string | undefined;
2871
+ }>>;
2736
2872
  vonageCredentials: z.ZodOptional<z.ZodObject<{
2737
2873
  mobileNumber: z.ZodString;
2738
2874
  apiKey: z.ZodString;
2739
2875
  apiSecret: z.ZodString;
2740
2876
  }, "strip", z.ZodTypeAny, {
2741
- mobileNumber: string;
2742
2877
  apiKey: string;
2878
+ mobileNumber: string;
2743
2879
  apiSecret: string;
2744
2880
  }, {
2745
- mobileNumber: string;
2746
2881
  apiKey: string;
2882
+ mobileNumber: string;
2747
2883
  apiSecret: string;
2748
2884
  }>>;
2749
2885
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -2755,9 +2891,19 @@ export declare const messengerContract: {
2755
2891
  channelSecret?: string | undefined;
2756
2892
  additionalCredentials?: any;
2757
2893
  senderId?: string | undefined;
2894
+ whatsapp?: {
2895
+ email: string;
2896
+ wabaExternalId: string;
2897
+ phoneNumberId: string;
2898
+ wabaBusinessId?: string | undefined;
2899
+ clientId?: string | undefined;
2900
+ channelId?: string | undefined;
2901
+ status?: "active" | "pending" | undefined;
2902
+ apiKey?: string | undefined;
2903
+ } | undefined;
2758
2904
  vonageCredentials?: {
2759
- mobileNumber: string;
2760
2905
  apiKey: string;
2906
+ mobileNumber: string;
2761
2907
  apiSecret: string;
2762
2908
  } | undefined;
2763
2909
  lineRichMenuId?: string | null | undefined;
@@ -2769,9 +2915,19 @@ export declare const messengerContract: {
2769
2915
  channelSecret?: string | undefined;
2770
2916
  additionalCredentials?: any;
2771
2917
  senderId?: string | undefined;
2918
+ whatsapp?: {
2919
+ email: string;
2920
+ wabaExternalId: string;
2921
+ phoneNumberId: string;
2922
+ wabaBusinessId?: string | undefined;
2923
+ clientId?: string | undefined;
2924
+ channelId?: string | undefined;
2925
+ status?: "active" | "pending" | undefined;
2926
+ apiKey?: string | undefined;
2927
+ } | undefined;
2772
2928
  vonageCredentials?: {
2773
- mobileNumber: string;
2774
2929
  apiKey: string;
2930
+ mobileNumber: string;
2775
2931
  apiSecret: string;
2776
2932
  } | undefined;
2777
2933
  lineRichMenuId?: string | null | undefined;
@@ -3017,9 +3173,19 @@ export declare const messengerContract: {
3017
3173
  channelSecret?: string | undefined;
3018
3174
  additionalCredentials?: any;
3019
3175
  senderId?: string | undefined;
3176
+ whatsapp?: {
3177
+ email: string;
3178
+ wabaExternalId: string;
3179
+ phoneNumberId: string;
3180
+ wabaBusinessId?: string | undefined;
3181
+ clientId?: string | undefined;
3182
+ channelId?: string | undefined;
3183
+ status?: "active" | "pending" | undefined;
3184
+ apiKey?: string | undefined;
3185
+ } | undefined;
3020
3186
  vonageCredentials?: {
3021
- mobileNumber: string;
3022
3187
  apiKey: string;
3188
+ mobileNumber: string;
3023
3189
  apiSecret: string;
3024
3190
  } | undefined;
3025
3191
  lineRichMenuId?: string | null | undefined;
@@ -3096,9 +3262,19 @@ export declare const messengerContract: {
3096
3262
  channelSecret?: string | undefined;
3097
3263
  additionalCredentials?: any;
3098
3264
  senderId?: string | undefined;
3265
+ whatsapp?: {
3266
+ email: string;
3267
+ wabaExternalId: string;
3268
+ phoneNumberId: string;
3269
+ wabaBusinessId?: string | undefined;
3270
+ clientId?: string | undefined;
3271
+ channelId?: string | undefined;
3272
+ status?: "active" | "pending" | undefined;
3273
+ apiKey?: string | undefined;
3274
+ } | undefined;
3099
3275
  vonageCredentials?: {
3100
- mobileNumber: string;
3101
3276
  apiKey: string;
3277
+ mobileNumber: string;
3102
3278
  apiSecret: string;
3103
3279
  } | undefined;
3104
3280
  lineRichMenuId?: string | null | undefined;
@@ -3623,9 +3799,19 @@ export declare const messengerContract: {
3623
3799
  channelSecret?: string | undefined;
3624
3800
  additionalCredentials?: any;
3625
3801
  senderId?: string | undefined;
3802
+ whatsapp?: {
3803
+ email: string;
3804
+ wabaExternalId: string;
3805
+ phoneNumberId: string;
3806
+ wabaBusinessId?: string | undefined;
3807
+ clientId?: string | undefined;
3808
+ channelId?: string | undefined;
3809
+ status?: "active" | "pending" | undefined;
3810
+ apiKey?: string | undefined;
3811
+ } | undefined;
3626
3812
  vonageCredentials?: {
3627
- mobileNumber: string;
3628
3813
  apiKey: string;
3814
+ mobileNumber: string;
3629
3815
  apiSecret: string;
3630
3816
  } | undefined;
3631
3817
  lineRichMenuId?: string | null | undefined;
@@ -4013,9 +4199,19 @@ export declare const messengerContract: {
4013
4199
  channelSecret?: string | undefined;
4014
4200
  additionalCredentials?: any;
4015
4201
  senderId?: string | undefined;
4202
+ whatsapp?: {
4203
+ email: string;
4204
+ wabaExternalId: string;
4205
+ phoneNumberId: string;
4206
+ wabaBusinessId?: string | undefined;
4207
+ clientId?: string | undefined;
4208
+ channelId?: string | undefined;
4209
+ status?: "active" | "pending" | undefined;
4210
+ apiKey?: string | undefined;
4211
+ } | undefined;
4016
4212
  vonageCredentials?: {
4017
- mobileNumber: string;
4018
4213
  apiKey: string;
4214
+ mobileNumber: string;
4019
4215
  apiSecret: string;
4020
4216
  } | undefined;
4021
4217
  lineRichMenuId?: string | null | undefined;
@@ -4429,7 +4625,7 @@ export declare const messengerContract: {
4429
4625
  deletedAt: z.ZodNullable<z.ZodDate>;
4430
4626
  message: z.ZodString;
4431
4627
  direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
4432
- 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"]>;
4628
+ 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"]>;
4433
4629
  readAt: z.ZodDate;
4434
4630
  metadata: z.ZodAny;
4435
4631
  platformId: z.ZodString;
@@ -5087,7 +5283,7 @@ export declare const messengerContract: {
5087
5283
  };
5088
5284
  }>;
5089
5285
  }, "strip", z.ZodTypeAny, {
5090
- 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";
5286
+ 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";
5091
5287
  message: string;
5092
5288
  id: string;
5093
5289
  url: string;
@@ -5249,7 +5445,7 @@ export declare const messengerContract: {
5249
5445
  metadata?: any;
5250
5446
  template?: any;
5251
5447
  }, {
5252
- 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";
5448
+ 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";
5253
5449
  message: string;
5254
5450
  id: string;
5255
5451
  url: string;
@@ -5623,7 +5819,7 @@ export declare const messengerContract: {
5623
5819
  deletedAt: z.ZodNullable<z.ZodDate>;
5624
5820
  message: z.ZodString;
5625
5821
  direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
5626
- 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"]>;
5822
+ 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"]>;
5627
5823
  readAt: z.ZodDate;
5628
5824
  metadata: z.ZodAny;
5629
5825
  platformId: z.ZodString;
@@ -7119,17 +7315,45 @@ export declare const messengerContract: {
7119
7315
  channelSecret: z.ZodOptional<z.ZodString>;
7120
7316
  additionalCredentials: z.ZodOptional<z.ZodAny>;
7121
7317
  senderId: z.ZodOptional<z.ZodString>;
7318
+ whatsapp: z.ZodOptional<z.ZodObject<{
7319
+ wabaBusinessId: z.ZodOptional<z.ZodString>;
7320
+ wabaExternalId: z.ZodString;
7321
+ phoneNumberId: z.ZodString;
7322
+ email: z.ZodString;
7323
+ clientId: z.ZodOptional<z.ZodString>;
7324
+ channelId: z.ZodOptional<z.ZodString>;
7325
+ status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
7326
+ apiKey: z.ZodOptional<z.ZodString>;
7327
+ }, "strip", z.ZodTypeAny, {
7328
+ email: string;
7329
+ wabaExternalId: string;
7330
+ phoneNumberId: string;
7331
+ wabaBusinessId?: string | undefined;
7332
+ clientId?: string | undefined;
7333
+ channelId?: string | undefined;
7334
+ status?: "active" | "pending" | undefined;
7335
+ apiKey?: string | undefined;
7336
+ }, {
7337
+ email: string;
7338
+ wabaExternalId: string;
7339
+ phoneNumberId: string;
7340
+ wabaBusinessId?: string | undefined;
7341
+ clientId?: string | undefined;
7342
+ channelId?: string | undefined;
7343
+ status?: "active" | "pending" | undefined;
7344
+ apiKey?: string | undefined;
7345
+ }>>;
7122
7346
  vonageCredentials: z.ZodOptional<z.ZodObject<{
7123
7347
  mobileNumber: z.ZodString;
7124
7348
  apiKey: z.ZodString;
7125
7349
  apiSecret: z.ZodString;
7126
7350
  }, "strip", z.ZodTypeAny, {
7127
- mobileNumber: string;
7128
7351
  apiKey: string;
7352
+ mobileNumber: string;
7129
7353
  apiSecret: string;
7130
7354
  }, {
7131
- mobileNumber: string;
7132
7355
  apiKey: string;
7356
+ mobileNumber: string;
7133
7357
  apiSecret: string;
7134
7358
  }>>;
7135
7359
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -7141,9 +7365,19 @@ export declare const messengerContract: {
7141
7365
  channelSecret?: string | undefined;
7142
7366
  additionalCredentials?: any;
7143
7367
  senderId?: string | undefined;
7368
+ whatsapp?: {
7369
+ email: string;
7370
+ wabaExternalId: string;
7371
+ phoneNumberId: string;
7372
+ wabaBusinessId?: string | undefined;
7373
+ clientId?: string | undefined;
7374
+ channelId?: string | undefined;
7375
+ status?: "active" | "pending" | undefined;
7376
+ apiKey?: string | undefined;
7377
+ } | undefined;
7144
7378
  vonageCredentials?: {
7145
- mobileNumber: string;
7146
7379
  apiKey: string;
7380
+ mobileNumber: string;
7147
7381
  apiSecret: string;
7148
7382
  } | undefined;
7149
7383
  lineRichMenuId?: string | null | undefined;
@@ -7155,9 +7389,19 @@ export declare const messengerContract: {
7155
7389
  channelSecret?: string | undefined;
7156
7390
  additionalCredentials?: any;
7157
7391
  senderId?: string | undefined;
7392
+ whatsapp?: {
7393
+ email: string;
7394
+ wabaExternalId: string;
7395
+ phoneNumberId: string;
7396
+ wabaBusinessId?: string | undefined;
7397
+ clientId?: string | undefined;
7398
+ channelId?: string | undefined;
7399
+ status?: "active" | "pending" | undefined;
7400
+ apiKey?: string | undefined;
7401
+ } | undefined;
7158
7402
  vonageCredentials?: {
7159
- mobileNumber: string;
7160
7403
  apiKey: string;
7404
+ mobileNumber: string;
7161
7405
  apiSecret: string;
7162
7406
  } | undefined;
7163
7407
  lineRichMenuId?: string | null | undefined;
@@ -7403,9 +7647,19 @@ export declare const messengerContract: {
7403
7647
  channelSecret?: string | undefined;
7404
7648
  additionalCredentials?: any;
7405
7649
  senderId?: string | undefined;
7650
+ whatsapp?: {
7651
+ email: string;
7652
+ wabaExternalId: string;
7653
+ phoneNumberId: string;
7654
+ wabaBusinessId?: string | undefined;
7655
+ clientId?: string | undefined;
7656
+ channelId?: string | undefined;
7657
+ status?: "active" | "pending" | undefined;
7658
+ apiKey?: string | undefined;
7659
+ } | undefined;
7406
7660
  vonageCredentials?: {
7407
- mobileNumber: string;
7408
7661
  apiKey: string;
7662
+ mobileNumber: string;
7409
7663
  apiSecret: string;
7410
7664
  } | undefined;
7411
7665
  lineRichMenuId?: string | null | undefined;
@@ -7482,9 +7736,19 @@ export declare const messengerContract: {
7482
7736
  channelSecret?: string | undefined;
7483
7737
  additionalCredentials?: any;
7484
7738
  senderId?: string | undefined;
7739
+ whatsapp?: {
7740
+ email: string;
7741
+ wabaExternalId: string;
7742
+ phoneNumberId: string;
7743
+ wabaBusinessId?: string | undefined;
7744
+ clientId?: string | undefined;
7745
+ channelId?: string | undefined;
7746
+ status?: "active" | "pending" | undefined;
7747
+ apiKey?: string | undefined;
7748
+ } | undefined;
7485
7749
  vonageCredentials?: {
7486
- mobileNumber: string;
7487
7750
  apiKey: string;
7751
+ mobileNumber: string;
7488
7752
  apiSecret: string;
7489
7753
  } | undefined;
7490
7754
  lineRichMenuId?: string | null | undefined;
@@ -8009,9 +8273,19 @@ export declare const messengerContract: {
8009
8273
  channelSecret?: string | undefined;
8010
8274
  additionalCredentials?: any;
8011
8275
  senderId?: string | undefined;
8276
+ whatsapp?: {
8277
+ email: string;
8278
+ wabaExternalId: string;
8279
+ phoneNumberId: string;
8280
+ wabaBusinessId?: string | undefined;
8281
+ clientId?: string | undefined;
8282
+ channelId?: string | undefined;
8283
+ status?: "active" | "pending" | undefined;
8284
+ apiKey?: string | undefined;
8285
+ } | undefined;
8012
8286
  vonageCredentials?: {
8013
- mobileNumber: string;
8014
8287
  apiKey: string;
8288
+ mobileNumber: string;
8015
8289
  apiSecret: string;
8016
8290
  } | undefined;
8017
8291
  lineRichMenuId?: string | null | undefined;
@@ -8399,9 +8673,19 @@ export declare const messengerContract: {
8399
8673
  channelSecret?: string | undefined;
8400
8674
  additionalCredentials?: any;
8401
8675
  senderId?: string | undefined;
8676
+ whatsapp?: {
8677
+ email: string;
8678
+ wabaExternalId: string;
8679
+ phoneNumberId: string;
8680
+ wabaBusinessId?: string | undefined;
8681
+ clientId?: string | undefined;
8682
+ channelId?: string | undefined;
8683
+ status?: "active" | "pending" | undefined;
8684
+ apiKey?: string | undefined;
8685
+ } | undefined;
8402
8686
  vonageCredentials?: {
8403
- mobileNumber: string;
8404
8687
  apiKey: string;
8688
+ mobileNumber: string;
8405
8689
  apiSecret: string;
8406
8690
  } | undefined;
8407
8691
  lineRichMenuId?: string | null | undefined;
@@ -8818,7 +9102,7 @@ export declare const messengerContract: {
8818
9102
  deletedAt: z.ZodNullable<z.ZodDate>;
8819
9103
  message: z.ZodString;
8820
9104
  direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
8821
- 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"]>;
9105
+ 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"]>;
8822
9106
  readAt: z.ZodDate;
8823
9107
  metadata: z.ZodAny;
8824
9108
  platformId: z.ZodString;
@@ -9476,7 +9760,7 @@ export declare const messengerContract: {
9476
9760
  };
9477
9761
  }>;
9478
9762
  }, "strip", z.ZodTypeAny, {
9479
- 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";
9763
+ 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";
9480
9764
  message: string;
9481
9765
  id: string;
9482
9766
  url: string;
@@ -9638,7 +9922,7 @@ export declare const messengerContract: {
9638
9922
  metadata?: any;
9639
9923
  template?: any;
9640
9924
  }, {
9641
- 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";
9925
+ 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";
9642
9926
  message: string;
9643
9927
  id: string;
9644
9928
  url: string;
@@ -10440,7 +10724,7 @@ export declare const messengerContract: {
10440
10724
  editedMessageid: z.ZodString;
10441
10725
  label: z.ZodOptional<z.ZodString>;
10442
10726
  }, "strip", z.ZodTypeAny, {
10443
- 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";
10727
+ 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";
10444
10728
  message: string;
10445
10729
  id: string;
10446
10730
  url: string;
@@ -10562,9 +10846,19 @@ export declare const messengerContract: {
10562
10846
  channelSecret?: string | undefined;
10563
10847
  additionalCredentials?: any;
10564
10848
  senderId?: string | undefined;
10849
+ whatsapp?: {
10850
+ email: string;
10851
+ wabaExternalId: string;
10852
+ phoneNumberId: string;
10853
+ wabaBusinessId?: string | undefined;
10854
+ clientId?: string | undefined;
10855
+ channelId?: string | undefined;
10856
+ status?: "active" | "pending" | undefined;
10857
+ apiKey?: string | undefined;
10858
+ } | undefined;
10565
10859
  vonageCredentials?: {
10566
- mobileNumber: string;
10567
10860
  apiKey: string;
10861
+ mobileNumber: string;
10568
10862
  apiSecret: string;
10569
10863
  } | undefined;
10570
10864
  lineRichMenuId?: string | null | undefined;
@@ -10956,7 +11250,7 @@ export declare const messengerContract: {
10956
11250
  previewUrl: string;
10957
11251
  imageSetId: string;
10958
11252
  repliedMessage: {
10959
- 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";
11253
+ 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";
10960
11254
  message: string;
10961
11255
  id: string;
10962
11256
  url: string;
@@ -11167,7 +11461,7 @@ export declare const messengerContract: {
11167
11461
  template?: any;
11168
11462
  label?: string | undefined;
11169
11463
  }, {
11170
- 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";
11464
+ 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";
11171
11465
  message: string;
11172
11466
  id: string;
11173
11467
  url: string;
@@ -11289,9 +11583,19 @@ export declare const messengerContract: {
11289
11583
  channelSecret?: string | undefined;
11290
11584
  additionalCredentials?: any;
11291
11585
  senderId?: string | undefined;
11586
+ whatsapp?: {
11587
+ email: string;
11588
+ wabaExternalId: string;
11589
+ phoneNumberId: string;
11590
+ wabaBusinessId?: string | undefined;
11591
+ clientId?: string | undefined;
11592
+ channelId?: string | undefined;
11593
+ status?: "active" | "pending" | undefined;
11594
+ apiKey?: string | undefined;
11595
+ } | undefined;
11292
11596
  vonageCredentials?: {
11293
- mobileNumber: string;
11294
11597
  apiKey: string;
11598
+ mobileNumber: string;
11295
11599
  apiSecret: string;
11296
11600
  } | undefined;
11297
11601
  lineRichMenuId?: string | null | undefined;
@@ -11683,7 +11987,7 @@ export declare const messengerContract: {
11683
11987
  previewUrl: string;
11684
11988
  imageSetId: string;
11685
11989
  repliedMessage: {
11686
- 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";
11990
+ 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";
11687
11991
  message: string;
11688
11992
  id: string;
11689
11993
  url: string;
@@ -11895,7 +12199,7 @@ export declare const messengerContract: {
11895
12199
  label?: string | undefined;
11896
12200
  }>>>;
11897
12201
  }, "strip", z.ZodTypeAny, {
11898
- 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";
12202
+ 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";
11899
12203
  message: string;
11900
12204
  id: string;
11901
12205
  url: string;
@@ -12017,9 +12321,19 @@ export declare const messengerContract: {
12017
12321
  channelSecret?: string | undefined;
12018
12322
  additionalCredentials?: any;
12019
12323
  senderId?: string | undefined;
12324
+ whatsapp?: {
12325
+ email: string;
12326
+ wabaExternalId: string;
12327
+ phoneNumberId: string;
12328
+ wabaBusinessId?: string | undefined;
12329
+ clientId?: string | undefined;
12330
+ channelId?: string | undefined;
12331
+ status?: "active" | "pending" | undefined;
12332
+ apiKey?: string | undefined;
12333
+ } | undefined;
12020
12334
  vonageCredentials?: {
12021
- mobileNumber: string;
12022
12335
  apiKey: string;
12336
+ mobileNumber: string;
12023
12337
  apiSecret: string;
12024
12338
  } | undefined;
12025
12339
  lineRichMenuId?: string | null | undefined;
@@ -12411,7 +12725,7 @@ export declare const messengerContract: {
12411
12725
  previewUrl: string;
12412
12726
  imageSetId: string;
12413
12727
  repliedMessage: {
12414
- 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";
12728
+ 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";
12415
12729
  message: string;
12416
12730
  id: string;
12417
12731
  url: string;
@@ -12622,7 +12936,7 @@ export declare const messengerContract: {
12622
12936
  template?: any;
12623
12937
  metadata?: any;
12624
12938
  fromMessage?: {
12625
- 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";
12939
+ 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";
12626
12940
  message: string;
12627
12941
  id: string;
12628
12942
  url: string;
@@ -12744,9 +13058,19 @@ export declare const messengerContract: {
12744
13058
  channelSecret?: string | undefined;
12745
13059
  additionalCredentials?: any;
12746
13060
  senderId?: string | undefined;
13061
+ whatsapp?: {
13062
+ email: string;
13063
+ wabaExternalId: string;
13064
+ phoneNumberId: string;
13065
+ wabaBusinessId?: string | undefined;
13066
+ clientId?: string | undefined;
13067
+ channelId?: string | undefined;
13068
+ status?: "active" | "pending" | undefined;
13069
+ apiKey?: string | undefined;
13070
+ } | undefined;
12747
13071
  vonageCredentials?: {
12748
- mobileNumber: string;
12749
13072
  apiKey: string;
13073
+ mobileNumber: string;
12750
13074
  apiSecret: string;
12751
13075
  } | undefined;
12752
13076
  lineRichMenuId?: string | null | undefined;
@@ -13138,7 +13462,7 @@ export declare const messengerContract: {
13138
13462
  previewUrl: string;
13139
13463
  imageSetId: string;
13140
13464
  repliedMessage: {
13141
- 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";
13465
+ 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";
13142
13466
  message: string;
13143
13467
  id: string;
13144
13468
  url: string;
@@ -13350,7 +13674,7 @@ export declare const messengerContract: {
13350
13674
  label?: string | undefined;
13351
13675
  } | null | undefined;
13352
13676
  }, {
13353
- 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";
13677
+ 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";
13354
13678
  message: string;
13355
13679
  id: string;
13356
13680
  url: string;
@@ -13472,9 +13796,19 @@ export declare const messengerContract: {
13472
13796
  channelSecret?: string | undefined;
13473
13797
  additionalCredentials?: any;
13474
13798
  senderId?: string | undefined;
13799
+ whatsapp?: {
13800
+ email: string;
13801
+ wabaExternalId: string;
13802
+ phoneNumberId: string;
13803
+ wabaBusinessId?: string | undefined;
13804
+ clientId?: string | undefined;
13805
+ channelId?: string | undefined;
13806
+ status?: "active" | "pending" | undefined;
13807
+ apiKey?: string | undefined;
13808
+ } | undefined;
13475
13809
  vonageCredentials?: {
13476
- mobileNumber: string;
13477
13810
  apiKey: string;
13811
+ mobileNumber: string;
13478
13812
  apiSecret: string;
13479
13813
  } | undefined;
13480
13814
  lineRichMenuId?: string | null | undefined;
@@ -13866,7 +14200,7 @@ export declare const messengerContract: {
13866
14200
  previewUrl: string;
13867
14201
  imageSetId: string;
13868
14202
  repliedMessage: {
13869
- 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";
13870
14204
  message: string;
13871
14205
  id: string;
13872
14206
  url: string;
@@ -14077,7 +14411,7 @@ export declare const messengerContract: {
14077
14411
  template?: any;
14078
14412
  metadata?: any;
14079
14413
  fromMessage?: {
14080
- 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";
14414
+ 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";
14081
14415
  message: string;
14082
14416
  id: string;
14083
14417
  url: string;
@@ -14199,9 +14533,19 @@ export declare const messengerContract: {
14199
14533
  channelSecret?: string | undefined;
14200
14534
  additionalCredentials?: any;
14201
14535
  senderId?: string | undefined;
14536
+ whatsapp?: {
14537
+ email: string;
14538
+ wabaExternalId: string;
14539
+ phoneNumberId: string;
14540
+ wabaBusinessId?: string | undefined;
14541
+ clientId?: string | undefined;
14542
+ channelId?: string | undefined;
14543
+ status?: "active" | "pending" | undefined;
14544
+ apiKey?: string | undefined;
14545
+ } | undefined;
14202
14546
  vonageCredentials?: {
14203
- mobileNumber: string;
14204
14547
  apiKey: string;
14548
+ mobileNumber: string;
14205
14549
  apiSecret: string;
14206
14550
  } | undefined;
14207
14551
  lineRichMenuId?: string | null | undefined;
@@ -14593,7 +14937,7 @@ export declare const messengerContract: {
14593
14937
  previewUrl: string;
14594
14938
  imageSetId: string;
14595
14939
  repliedMessage: {
14596
- 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";
14940
+ 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";
14597
14941
  message: string;
14598
14942
  id: string;
14599
14943
  url: string;
@@ -14807,7 +15151,7 @@ export declare const messengerContract: {
14807
15151
  }>;
14808
15152
  }, "strip", z.ZodTypeAny, {
14809
15153
  data: {
14810
- 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";
15154
+ 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";
14811
15155
  message: string;
14812
15156
  id: string;
14813
15157
  url: string;
@@ -14929,9 +15273,19 @@ export declare const messengerContract: {
14929
15273
  channelSecret?: string | undefined;
14930
15274
  additionalCredentials?: any;
14931
15275
  senderId?: string | undefined;
15276
+ whatsapp?: {
15277
+ email: string;
15278
+ wabaExternalId: string;
15279
+ phoneNumberId: string;
15280
+ wabaBusinessId?: string | undefined;
15281
+ clientId?: string | undefined;
15282
+ channelId?: string | undefined;
15283
+ status?: "active" | "pending" | undefined;
15284
+ apiKey?: string | undefined;
15285
+ } | undefined;
14932
15286
  vonageCredentials?: {
14933
- mobileNumber: string;
14934
15287
  apiKey: string;
15288
+ mobileNumber: string;
14935
15289
  apiSecret: string;
14936
15290
  } | undefined;
14937
15291
  lineRichMenuId?: string | null | undefined;
@@ -15323,7 +15677,7 @@ export declare const messengerContract: {
15323
15677
  previewUrl: string;
15324
15678
  imageSetId: string;
15325
15679
  repliedMessage: {
15326
- 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";
15680
+ 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";
15327
15681
  message: string;
15328
15682
  id: string;
15329
15683
  url: string;
@@ -15534,7 +15888,7 @@ export declare const messengerContract: {
15534
15888
  template?: any;
15535
15889
  metadata?: any;
15536
15890
  fromMessage?: {
15537
- 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";
15891
+ 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";
15538
15892
  message: string;
15539
15893
  id: string;
15540
15894
  url: string;
@@ -15656,9 +16010,19 @@ export declare const messengerContract: {
15656
16010
  channelSecret?: string | undefined;
15657
16011
  additionalCredentials?: any;
15658
16012
  senderId?: string | undefined;
16013
+ whatsapp?: {
16014
+ email: string;
16015
+ wabaExternalId: string;
16016
+ phoneNumberId: string;
16017
+ wabaBusinessId?: string | undefined;
16018
+ clientId?: string | undefined;
16019
+ channelId?: string | undefined;
16020
+ status?: "active" | "pending" | undefined;
16021
+ apiKey?: string | undefined;
16022
+ } | undefined;
15659
16023
  vonageCredentials?: {
15660
- mobileNumber: string;
15661
16024
  apiKey: string;
16025
+ mobileNumber: string;
15662
16026
  apiSecret: string;
15663
16027
  } | undefined;
15664
16028
  lineRichMenuId?: string | null | undefined;
@@ -16050,7 +16414,7 @@ export declare const messengerContract: {
16050
16414
  previewUrl: string;
16051
16415
  imageSetId: string;
16052
16416
  repliedMessage: {
16053
- 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";
16417
+ 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";
16054
16418
  message: string;
16055
16419
  id: string;
16056
16420
  url: string;
@@ -16265,7 +16629,7 @@ export declare const messengerContract: {
16265
16629
  requestId: string;
16266
16630
  }, {
16267
16631
  data: {
16268
- 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";
16632
+ 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";
16269
16633
  message: string;
16270
16634
  id: string;
16271
16635
  url: string;
@@ -16387,9 +16751,19 @@ export declare const messengerContract: {
16387
16751
  channelSecret?: string | undefined;
16388
16752
  additionalCredentials?: any;
16389
16753
  senderId?: string | undefined;
16754
+ whatsapp?: {
16755
+ email: string;
16756
+ wabaExternalId: string;
16757
+ phoneNumberId: string;
16758
+ wabaBusinessId?: string | undefined;
16759
+ clientId?: string | undefined;
16760
+ channelId?: string | undefined;
16761
+ status?: "active" | "pending" | undefined;
16762
+ apiKey?: string | undefined;
16763
+ } | undefined;
16390
16764
  vonageCredentials?: {
16391
- mobileNumber: string;
16392
16765
  apiKey: string;
16766
+ mobileNumber: string;
16393
16767
  apiSecret: string;
16394
16768
  } | undefined;
16395
16769
  lineRichMenuId?: string | null | undefined;
@@ -16781,7 +17155,7 @@ export declare const messengerContract: {
16781
17155
  previewUrl: string;
16782
17156
  imageSetId: string;
16783
17157
  repliedMessage: {
16784
- 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";
17158
+ 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";
16785
17159
  message: string;
16786
17160
  id: string;
16787
17161
  url: string;
@@ -16992,7 +17366,7 @@ export declare const messengerContract: {
16992
17366
  template?: any;
16993
17367
  metadata?: any;
16994
17368
  fromMessage?: {
16995
- 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";
17369
+ 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";
16996
17370
  message: string;
16997
17371
  id: string;
16998
17372
  url: string;
@@ -17114,9 +17488,19 @@ export declare const messengerContract: {
17114
17488
  channelSecret?: string | undefined;
17115
17489
  additionalCredentials?: any;
17116
17490
  senderId?: string | undefined;
17491
+ whatsapp?: {
17492
+ email: string;
17493
+ wabaExternalId: string;
17494
+ phoneNumberId: string;
17495
+ wabaBusinessId?: string | undefined;
17496
+ clientId?: string | undefined;
17497
+ channelId?: string | undefined;
17498
+ status?: "active" | "pending" | undefined;
17499
+ apiKey?: string | undefined;
17500
+ } | undefined;
17117
17501
  vonageCredentials?: {
17118
- mobileNumber: string;
17119
17502
  apiKey: string;
17503
+ mobileNumber: string;
17120
17504
  apiSecret: string;
17121
17505
  } | undefined;
17122
17506
  lineRichMenuId?: string | null | undefined;
@@ -17508,7 +17892,7 @@ export declare const messengerContract: {
17508
17892
  previewUrl: string;
17509
17893
  imageSetId: string;
17510
17894
  repliedMessage: {
17511
- 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";
17895
+ 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";
17512
17896
  message: string;
17513
17897
  id: string;
17514
17898
  url: string;
@@ -17757,17 +18141,45 @@ export declare const messengerContract: {
17757
18141
  channelSecret: z.ZodOptional<z.ZodString>;
17758
18142
  additionalCredentials: z.ZodOptional<z.ZodAny>;
17759
18143
  senderId: z.ZodOptional<z.ZodString>;
18144
+ whatsapp: z.ZodOptional<z.ZodObject<{
18145
+ wabaBusinessId: z.ZodOptional<z.ZodString>;
18146
+ wabaExternalId: z.ZodString;
18147
+ phoneNumberId: z.ZodString;
18148
+ email: z.ZodString;
18149
+ clientId: z.ZodOptional<z.ZodString>;
18150
+ channelId: z.ZodOptional<z.ZodString>;
18151
+ status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
18152
+ apiKey: z.ZodOptional<z.ZodString>;
18153
+ }, "strip", z.ZodTypeAny, {
18154
+ email: string;
18155
+ wabaExternalId: string;
18156
+ phoneNumberId: string;
18157
+ wabaBusinessId?: string | undefined;
18158
+ clientId?: string | undefined;
18159
+ channelId?: string | undefined;
18160
+ status?: "active" | "pending" | undefined;
18161
+ apiKey?: string | undefined;
18162
+ }, {
18163
+ email: string;
18164
+ wabaExternalId: string;
18165
+ phoneNumberId: string;
18166
+ wabaBusinessId?: string | undefined;
18167
+ clientId?: string | undefined;
18168
+ channelId?: string | undefined;
18169
+ status?: "active" | "pending" | undefined;
18170
+ apiKey?: string | undefined;
18171
+ }>>;
17760
18172
  vonageCredentials: z.ZodOptional<z.ZodObject<{
17761
18173
  mobileNumber: z.ZodString;
17762
18174
  apiKey: z.ZodString;
17763
18175
  apiSecret: z.ZodString;
17764
18176
  }, "strip", z.ZodTypeAny, {
17765
- mobileNumber: string;
17766
18177
  apiKey: string;
18178
+ mobileNumber: string;
17767
18179
  apiSecret: string;
17768
18180
  }, {
17769
- mobileNumber: string;
17770
18181
  apiKey: string;
18182
+ mobileNumber: string;
17771
18183
  apiSecret: string;
17772
18184
  }>>;
17773
18185
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -17779,9 +18191,19 @@ export declare const messengerContract: {
17779
18191
  channelSecret?: string | undefined;
17780
18192
  additionalCredentials?: any;
17781
18193
  senderId?: string | undefined;
18194
+ whatsapp?: {
18195
+ email: string;
18196
+ wabaExternalId: string;
18197
+ phoneNumberId: string;
18198
+ wabaBusinessId?: string | undefined;
18199
+ clientId?: string | undefined;
18200
+ channelId?: string | undefined;
18201
+ status?: "active" | "pending" | undefined;
18202
+ apiKey?: string | undefined;
18203
+ } | undefined;
17782
18204
  vonageCredentials?: {
17783
- mobileNumber: string;
17784
18205
  apiKey: string;
18206
+ mobileNumber: string;
17785
18207
  apiSecret: string;
17786
18208
  } | undefined;
17787
18209
  lineRichMenuId?: string | null | undefined;
@@ -17793,9 +18215,19 @@ export declare const messengerContract: {
17793
18215
  channelSecret?: string | undefined;
17794
18216
  additionalCredentials?: any;
17795
18217
  senderId?: string | undefined;
18218
+ whatsapp?: {
18219
+ email: string;
18220
+ wabaExternalId: string;
18221
+ phoneNumberId: string;
18222
+ wabaBusinessId?: string | undefined;
18223
+ clientId?: string | undefined;
18224
+ channelId?: string | undefined;
18225
+ status?: "active" | "pending" | undefined;
18226
+ apiKey?: string | undefined;
18227
+ } | undefined;
17796
18228
  vonageCredentials?: {
17797
- mobileNumber: string;
17798
18229
  apiKey: string;
18230
+ mobileNumber: string;
17799
18231
  apiSecret: string;
17800
18232
  } | undefined;
17801
18233
  lineRichMenuId?: string | null | undefined;
@@ -17837,9 +18269,19 @@ export declare const messengerContract: {
17837
18269
  channelSecret?: string | undefined;
17838
18270
  additionalCredentials?: any;
17839
18271
  senderId?: string | undefined;
18272
+ whatsapp?: {
18273
+ email: string;
18274
+ wabaExternalId: string;
18275
+ phoneNumberId: string;
18276
+ wabaBusinessId?: string | undefined;
18277
+ clientId?: string | undefined;
18278
+ channelId?: string | undefined;
18279
+ status?: "active" | "pending" | undefined;
18280
+ apiKey?: string | undefined;
18281
+ } | undefined;
17840
18282
  vonageCredentials?: {
17841
- mobileNumber: string;
17842
18283
  apiKey: string;
18284
+ mobileNumber: string;
17843
18285
  apiSecret: string;
17844
18286
  } | undefined;
17845
18287
  lineRichMenuId?: string | null | undefined;
@@ -17869,9 +18311,19 @@ export declare const messengerContract: {
17869
18311
  channelSecret?: string | undefined;
17870
18312
  additionalCredentials?: any;
17871
18313
  senderId?: string | undefined;
18314
+ whatsapp?: {
18315
+ email: string;
18316
+ wabaExternalId: string;
18317
+ phoneNumberId: string;
18318
+ wabaBusinessId?: string | undefined;
18319
+ clientId?: string | undefined;
18320
+ channelId?: string | undefined;
18321
+ status?: "active" | "pending" | undefined;
18322
+ apiKey?: string | undefined;
18323
+ } | undefined;
17872
18324
  vonageCredentials?: {
17873
- mobileNumber: string;
17874
18325
  apiKey: string;
18326
+ mobileNumber: string;
17875
18327
  apiSecret: string;
17876
18328
  } | undefined;
17877
18329
  lineRichMenuId?: string | null | undefined;
@@ -17906,17 +18358,45 @@ export declare const messengerContract: {
17906
18358
  channelSecret: z.ZodOptional<z.ZodString>;
17907
18359
  additionalCredentials: z.ZodOptional<z.ZodAny>;
17908
18360
  senderId: z.ZodOptional<z.ZodString>;
18361
+ whatsapp: z.ZodOptional<z.ZodObject<{
18362
+ wabaBusinessId: z.ZodOptional<z.ZodString>;
18363
+ wabaExternalId: z.ZodString;
18364
+ phoneNumberId: z.ZodString;
18365
+ email: z.ZodString;
18366
+ clientId: z.ZodOptional<z.ZodString>;
18367
+ channelId: z.ZodOptional<z.ZodString>;
18368
+ status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
18369
+ apiKey: z.ZodOptional<z.ZodString>;
18370
+ }, "strip", z.ZodTypeAny, {
18371
+ email: string;
18372
+ wabaExternalId: string;
18373
+ phoneNumberId: string;
18374
+ wabaBusinessId?: string | undefined;
18375
+ clientId?: string | undefined;
18376
+ channelId?: string | undefined;
18377
+ status?: "active" | "pending" | undefined;
18378
+ apiKey?: string | undefined;
18379
+ }, {
18380
+ email: string;
18381
+ wabaExternalId: string;
18382
+ phoneNumberId: string;
18383
+ wabaBusinessId?: string | undefined;
18384
+ clientId?: string | undefined;
18385
+ channelId?: string | undefined;
18386
+ status?: "active" | "pending" | undefined;
18387
+ apiKey?: string | undefined;
18388
+ }>>;
17909
18389
  vonageCredentials: z.ZodOptional<z.ZodObject<{
17910
18390
  mobileNumber: z.ZodString;
17911
18391
  apiKey: z.ZodString;
17912
18392
  apiSecret: z.ZodString;
17913
18393
  }, "strip", z.ZodTypeAny, {
17914
- mobileNumber: string;
17915
18394
  apiKey: string;
18395
+ mobileNumber: string;
17916
18396
  apiSecret: string;
17917
18397
  }, {
17918
- mobileNumber: string;
17919
18398
  apiKey: string;
18399
+ mobileNumber: string;
17920
18400
  apiSecret: string;
17921
18401
  }>>;
17922
18402
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -17928,9 +18408,19 @@ export declare const messengerContract: {
17928
18408
  channelSecret?: string | undefined;
17929
18409
  additionalCredentials?: any;
17930
18410
  senderId?: string | undefined;
18411
+ whatsapp?: {
18412
+ email: string;
18413
+ wabaExternalId: string;
18414
+ phoneNumberId: string;
18415
+ wabaBusinessId?: string | undefined;
18416
+ clientId?: string | undefined;
18417
+ channelId?: string | undefined;
18418
+ status?: "active" | "pending" | undefined;
18419
+ apiKey?: string | undefined;
18420
+ } | undefined;
17931
18421
  vonageCredentials?: {
17932
- mobileNumber: string;
17933
18422
  apiKey: string;
18423
+ mobileNumber: string;
17934
18424
  apiSecret: string;
17935
18425
  } | undefined;
17936
18426
  lineRichMenuId?: string | null | undefined;
@@ -17942,9 +18432,19 @@ export declare const messengerContract: {
17942
18432
  channelSecret?: string | undefined;
17943
18433
  additionalCredentials?: any;
17944
18434
  senderId?: string | undefined;
18435
+ whatsapp?: {
18436
+ email: string;
18437
+ wabaExternalId: string;
18438
+ phoneNumberId: string;
18439
+ wabaBusinessId?: string | undefined;
18440
+ clientId?: string | undefined;
18441
+ channelId?: string | undefined;
18442
+ status?: "active" | "pending" | undefined;
18443
+ apiKey?: string | undefined;
18444
+ } | undefined;
17945
18445
  vonageCredentials?: {
17946
- mobileNumber: string;
17947
18446
  apiKey: string;
18447
+ mobileNumber: string;
17948
18448
  apiSecret: string;
17949
18449
  } | undefined;
17950
18450
  lineRichMenuId?: string | null | undefined;
@@ -17986,9 +18486,19 @@ export declare const messengerContract: {
17986
18486
  channelSecret?: string | undefined;
17987
18487
  additionalCredentials?: any;
17988
18488
  senderId?: string | undefined;
18489
+ whatsapp?: {
18490
+ email: string;
18491
+ wabaExternalId: string;
18492
+ phoneNumberId: string;
18493
+ wabaBusinessId?: string | undefined;
18494
+ clientId?: string | undefined;
18495
+ channelId?: string | undefined;
18496
+ status?: "active" | "pending" | undefined;
18497
+ apiKey?: string | undefined;
18498
+ } | undefined;
17989
18499
  vonageCredentials?: {
17990
- mobileNumber: string;
17991
18500
  apiKey: string;
18501
+ mobileNumber: string;
17992
18502
  apiSecret: string;
17993
18503
  } | undefined;
17994
18504
  lineRichMenuId?: string | null | undefined;
@@ -18018,9 +18528,19 @@ export declare const messengerContract: {
18018
18528
  channelSecret?: string | undefined;
18019
18529
  additionalCredentials?: any;
18020
18530
  senderId?: string | undefined;
18531
+ whatsapp?: {
18532
+ email: string;
18533
+ wabaExternalId: string;
18534
+ phoneNumberId: string;
18535
+ wabaBusinessId?: string | undefined;
18536
+ clientId?: string | undefined;
18537
+ channelId?: string | undefined;
18538
+ status?: "active" | "pending" | undefined;
18539
+ apiKey?: string | undefined;
18540
+ } | undefined;
18021
18541
  vonageCredentials?: {
18022
- mobileNumber: string;
18023
18542
  apiKey: string;
18543
+ mobileNumber: string;
18024
18544
  apiSecret: string;
18025
18545
  } | undefined;
18026
18546
  lineRichMenuId?: string | null | undefined;
@@ -18052,9 +18572,19 @@ export declare const messengerContract: {
18052
18572
  channelSecret?: string | undefined;
18053
18573
  additionalCredentials?: any;
18054
18574
  senderId?: string | undefined;
18575
+ whatsapp?: {
18576
+ email: string;
18577
+ wabaExternalId: string;
18578
+ phoneNumberId: string;
18579
+ wabaBusinessId?: string | undefined;
18580
+ clientId?: string | undefined;
18581
+ channelId?: string | undefined;
18582
+ status?: "active" | "pending" | undefined;
18583
+ apiKey?: string | undefined;
18584
+ } | undefined;
18055
18585
  vonageCredentials?: {
18056
- mobileNumber: string;
18057
18586
  apiKey: string;
18587
+ mobileNumber: string;
18058
18588
  apiSecret: string;
18059
18589
  } | undefined;
18060
18590
  lineRichMenuId?: string | null | undefined;
@@ -18087,9 +18617,19 @@ export declare const messengerContract: {
18087
18617
  channelSecret?: string | undefined;
18088
18618
  additionalCredentials?: any;
18089
18619
  senderId?: string | undefined;
18620
+ whatsapp?: {
18621
+ email: string;
18622
+ wabaExternalId: string;
18623
+ phoneNumberId: string;
18624
+ wabaBusinessId?: string | undefined;
18625
+ clientId?: string | undefined;
18626
+ channelId?: string | undefined;
18627
+ status?: "active" | "pending" | undefined;
18628
+ apiKey?: string | undefined;
18629
+ } | undefined;
18090
18630
  vonageCredentials?: {
18091
- mobileNumber: string;
18092
18631
  apiKey: string;
18632
+ mobileNumber: string;
18093
18633
  apiSecret: string;
18094
18634
  } | undefined;
18095
18635
  lineRichMenuId?: string | null | undefined;
@@ -18146,17 +18686,45 @@ export declare const messengerContract: {
18146
18686
  channelSecret: z.ZodOptional<z.ZodString>;
18147
18687
  additionalCredentials: z.ZodOptional<z.ZodAny>;
18148
18688
  senderId: z.ZodOptional<z.ZodString>;
18689
+ whatsapp: z.ZodOptional<z.ZodObject<{
18690
+ wabaBusinessId: z.ZodOptional<z.ZodString>;
18691
+ wabaExternalId: z.ZodString;
18692
+ phoneNumberId: z.ZodString;
18693
+ email: z.ZodString;
18694
+ clientId: z.ZodOptional<z.ZodString>;
18695
+ channelId: z.ZodOptional<z.ZodString>;
18696
+ status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
18697
+ apiKey: z.ZodOptional<z.ZodString>;
18698
+ }, "strip", z.ZodTypeAny, {
18699
+ email: string;
18700
+ wabaExternalId: string;
18701
+ phoneNumberId: string;
18702
+ wabaBusinessId?: string | undefined;
18703
+ clientId?: string | undefined;
18704
+ channelId?: string | undefined;
18705
+ status?: "active" | "pending" | undefined;
18706
+ apiKey?: string | undefined;
18707
+ }, {
18708
+ email: string;
18709
+ wabaExternalId: string;
18710
+ phoneNumberId: string;
18711
+ wabaBusinessId?: string | undefined;
18712
+ clientId?: string | undefined;
18713
+ channelId?: string | undefined;
18714
+ status?: "active" | "pending" | undefined;
18715
+ apiKey?: string | undefined;
18716
+ }>>;
18149
18717
  vonageCredentials: z.ZodOptional<z.ZodObject<{
18150
18718
  mobileNumber: z.ZodString;
18151
18719
  apiKey: z.ZodString;
18152
18720
  apiSecret: z.ZodString;
18153
18721
  }, "strip", z.ZodTypeAny, {
18154
- mobileNumber: string;
18155
18722
  apiKey: string;
18723
+ mobileNumber: string;
18156
18724
  apiSecret: string;
18157
18725
  }, {
18158
- mobileNumber: string;
18159
18726
  apiKey: string;
18727
+ mobileNumber: string;
18160
18728
  apiSecret: string;
18161
18729
  }>>;
18162
18730
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -18168,9 +18736,19 @@ export declare const messengerContract: {
18168
18736
  channelSecret?: string | undefined;
18169
18737
  additionalCredentials?: any;
18170
18738
  senderId?: string | undefined;
18739
+ whatsapp?: {
18740
+ email: string;
18741
+ wabaExternalId: string;
18742
+ phoneNumberId: string;
18743
+ wabaBusinessId?: string | undefined;
18744
+ clientId?: string | undefined;
18745
+ channelId?: string | undefined;
18746
+ status?: "active" | "pending" | undefined;
18747
+ apiKey?: string | undefined;
18748
+ } | undefined;
18171
18749
  vonageCredentials?: {
18172
- mobileNumber: string;
18173
18750
  apiKey: string;
18751
+ mobileNumber: string;
18174
18752
  apiSecret: string;
18175
18753
  } | undefined;
18176
18754
  lineRichMenuId?: string | null | undefined;
@@ -18182,9 +18760,19 @@ export declare const messengerContract: {
18182
18760
  channelSecret?: string | undefined;
18183
18761
  additionalCredentials?: any;
18184
18762
  senderId?: string | undefined;
18763
+ whatsapp?: {
18764
+ email: string;
18765
+ wabaExternalId: string;
18766
+ phoneNumberId: string;
18767
+ wabaBusinessId?: string | undefined;
18768
+ clientId?: string | undefined;
18769
+ channelId?: string | undefined;
18770
+ status?: "active" | "pending" | undefined;
18771
+ apiKey?: string | undefined;
18772
+ } | undefined;
18185
18773
  vonageCredentials?: {
18186
- mobileNumber: string;
18187
18774
  apiKey: string;
18775
+ mobileNumber: string;
18188
18776
  apiSecret: string;
18189
18777
  } | undefined;
18190
18778
  lineRichMenuId?: string | null | undefined;
@@ -18226,9 +18814,19 @@ export declare const messengerContract: {
18226
18814
  channelSecret?: string | undefined;
18227
18815
  additionalCredentials?: any;
18228
18816
  senderId?: string | undefined;
18817
+ whatsapp?: {
18818
+ email: string;
18819
+ wabaExternalId: string;
18820
+ phoneNumberId: string;
18821
+ wabaBusinessId?: string | undefined;
18822
+ clientId?: string | undefined;
18823
+ channelId?: string | undefined;
18824
+ status?: "active" | "pending" | undefined;
18825
+ apiKey?: string | undefined;
18826
+ } | undefined;
18229
18827
  vonageCredentials?: {
18230
- mobileNumber: string;
18231
18828
  apiKey: string;
18829
+ mobileNumber: string;
18232
18830
  apiSecret: string;
18233
18831
  } | undefined;
18234
18832
  lineRichMenuId?: string | null | undefined;
@@ -18258,9 +18856,19 @@ export declare const messengerContract: {
18258
18856
  channelSecret?: string | undefined;
18259
18857
  additionalCredentials?: any;
18260
18858
  senderId?: string | undefined;
18859
+ whatsapp?: {
18860
+ email: string;
18861
+ wabaExternalId: string;
18862
+ phoneNumberId: string;
18863
+ wabaBusinessId?: string | undefined;
18864
+ clientId?: string | undefined;
18865
+ channelId?: string | undefined;
18866
+ status?: "active" | "pending" | undefined;
18867
+ apiKey?: string | undefined;
18868
+ } | undefined;
18261
18869
  vonageCredentials?: {
18262
- mobileNumber: string;
18263
18870
  apiKey: string;
18871
+ mobileNumber: string;
18264
18872
  apiSecret: string;
18265
18873
  } | undefined;
18266
18874
  lineRichMenuId?: string | null | undefined;
@@ -18295,17 +18903,45 @@ export declare const messengerContract: {
18295
18903
  channelSecret: z.ZodOptional<z.ZodString>;
18296
18904
  additionalCredentials: z.ZodOptional<z.ZodAny>;
18297
18905
  senderId: z.ZodOptional<z.ZodString>;
18906
+ whatsapp: z.ZodOptional<z.ZodObject<{
18907
+ wabaBusinessId: z.ZodOptional<z.ZodString>;
18908
+ wabaExternalId: z.ZodString;
18909
+ phoneNumberId: z.ZodString;
18910
+ email: z.ZodString;
18911
+ clientId: z.ZodOptional<z.ZodString>;
18912
+ channelId: z.ZodOptional<z.ZodString>;
18913
+ status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
18914
+ apiKey: z.ZodOptional<z.ZodString>;
18915
+ }, "strip", z.ZodTypeAny, {
18916
+ email: string;
18917
+ wabaExternalId: string;
18918
+ phoneNumberId: string;
18919
+ wabaBusinessId?: string | undefined;
18920
+ clientId?: string | undefined;
18921
+ channelId?: string | undefined;
18922
+ status?: "active" | "pending" | undefined;
18923
+ apiKey?: string | undefined;
18924
+ }, {
18925
+ email: string;
18926
+ wabaExternalId: string;
18927
+ phoneNumberId: string;
18928
+ wabaBusinessId?: string | undefined;
18929
+ clientId?: string | undefined;
18930
+ channelId?: string | undefined;
18931
+ status?: "active" | "pending" | undefined;
18932
+ apiKey?: string | undefined;
18933
+ }>>;
18298
18934
  vonageCredentials: z.ZodOptional<z.ZodObject<{
18299
18935
  mobileNumber: z.ZodString;
18300
18936
  apiKey: z.ZodString;
18301
18937
  apiSecret: z.ZodString;
18302
18938
  }, "strip", z.ZodTypeAny, {
18303
- mobileNumber: string;
18304
18939
  apiKey: string;
18940
+ mobileNumber: string;
18305
18941
  apiSecret: string;
18306
18942
  }, {
18307
- mobileNumber: string;
18308
18943
  apiKey: string;
18944
+ mobileNumber: string;
18309
18945
  apiSecret: string;
18310
18946
  }>>;
18311
18947
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -18317,9 +18953,19 @@ export declare const messengerContract: {
18317
18953
  channelSecret?: string | undefined;
18318
18954
  additionalCredentials?: any;
18319
18955
  senderId?: string | undefined;
18956
+ whatsapp?: {
18957
+ email: string;
18958
+ wabaExternalId: string;
18959
+ phoneNumberId: string;
18960
+ wabaBusinessId?: string | undefined;
18961
+ clientId?: string | undefined;
18962
+ channelId?: string | undefined;
18963
+ status?: "active" | "pending" | undefined;
18964
+ apiKey?: string | undefined;
18965
+ } | undefined;
18320
18966
  vonageCredentials?: {
18321
- mobileNumber: string;
18322
18967
  apiKey: string;
18968
+ mobileNumber: string;
18323
18969
  apiSecret: string;
18324
18970
  } | undefined;
18325
18971
  lineRichMenuId?: string | null | undefined;
@@ -18331,9 +18977,19 @@ export declare const messengerContract: {
18331
18977
  channelSecret?: string | undefined;
18332
18978
  additionalCredentials?: any;
18333
18979
  senderId?: string | undefined;
18980
+ whatsapp?: {
18981
+ email: string;
18982
+ wabaExternalId: string;
18983
+ phoneNumberId: string;
18984
+ wabaBusinessId?: string | undefined;
18985
+ clientId?: string | undefined;
18986
+ channelId?: string | undefined;
18987
+ status?: "active" | "pending" | undefined;
18988
+ apiKey?: string | undefined;
18989
+ } | undefined;
18334
18990
  vonageCredentials?: {
18335
- mobileNumber: string;
18336
18991
  apiKey: string;
18992
+ mobileNumber: string;
18337
18993
  apiSecret: string;
18338
18994
  } | undefined;
18339
18995
  lineRichMenuId?: string | null | undefined;
@@ -18375,9 +19031,19 @@ export declare const messengerContract: {
18375
19031
  channelSecret?: string | undefined;
18376
19032
  additionalCredentials?: any;
18377
19033
  senderId?: string | undefined;
19034
+ whatsapp?: {
19035
+ email: string;
19036
+ wabaExternalId: string;
19037
+ phoneNumberId: string;
19038
+ wabaBusinessId?: string | undefined;
19039
+ clientId?: string | undefined;
19040
+ channelId?: string | undefined;
19041
+ status?: "active" | "pending" | undefined;
19042
+ apiKey?: string | undefined;
19043
+ } | undefined;
18378
19044
  vonageCredentials?: {
18379
- mobileNumber: string;
18380
19045
  apiKey: string;
19046
+ mobileNumber: string;
18381
19047
  apiSecret: string;
18382
19048
  } | undefined;
18383
19049
  lineRichMenuId?: string | null | undefined;
@@ -18407,9 +19073,19 @@ export declare const messengerContract: {
18407
19073
  channelSecret?: string | undefined;
18408
19074
  additionalCredentials?: any;
18409
19075
  senderId?: string | undefined;
19076
+ whatsapp?: {
19077
+ email: string;
19078
+ wabaExternalId: string;
19079
+ phoneNumberId: string;
19080
+ wabaBusinessId?: string | undefined;
19081
+ clientId?: string | undefined;
19082
+ channelId?: string | undefined;
19083
+ status?: "active" | "pending" | undefined;
19084
+ apiKey?: string | undefined;
19085
+ } | undefined;
18410
19086
  vonageCredentials?: {
18411
- mobileNumber: string;
18412
19087
  apiKey: string;
19088
+ mobileNumber: string;
18413
19089
  apiSecret: string;
18414
19090
  } | undefined;
18415
19091
  lineRichMenuId?: string | null | undefined;
@@ -18441,9 +19117,19 @@ export declare const messengerContract: {
18441
19117
  channelSecret?: string | undefined;
18442
19118
  additionalCredentials?: any;
18443
19119
  senderId?: string | undefined;
19120
+ whatsapp?: {
19121
+ email: string;
19122
+ wabaExternalId: string;
19123
+ phoneNumberId: string;
19124
+ wabaBusinessId?: string | undefined;
19125
+ clientId?: string | undefined;
19126
+ channelId?: string | undefined;
19127
+ status?: "active" | "pending" | undefined;
19128
+ apiKey?: string | undefined;
19129
+ } | undefined;
18444
19130
  vonageCredentials?: {
18445
- mobileNumber: string;
18446
19131
  apiKey: string;
19132
+ mobileNumber: string;
18447
19133
  apiSecret: string;
18448
19134
  } | undefined;
18449
19135
  lineRichMenuId?: string | null | undefined;
@@ -18476,9 +19162,19 @@ export declare const messengerContract: {
18476
19162
  channelSecret?: string | undefined;
18477
19163
  additionalCredentials?: any;
18478
19164
  senderId?: string | undefined;
19165
+ whatsapp?: {
19166
+ email: string;
19167
+ wabaExternalId: string;
19168
+ phoneNumberId: string;
19169
+ wabaBusinessId?: string | undefined;
19170
+ clientId?: string | undefined;
19171
+ channelId?: string | undefined;
19172
+ status?: "active" | "pending" | undefined;
19173
+ apiKey?: string | undefined;
19174
+ } | undefined;
18479
19175
  vonageCredentials?: {
18480
- mobileNumber: string;
18481
19176
  apiKey: string;
19177
+ mobileNumber: string;
18482
19178
  apiSecret: string;
18483
19179
  } | undefined;
18484
19180
  lineRichMenuId?: string | null | undefined;
@@ -18547,17 +19243,45 @@ export declare const messengerContract: {
18547
19243
  channelSecret: z.ZodOptional<z.ZodString>;
18548
19244
  additionalCredentials: z.ZodOptional<z.ZodAny>;
18549
19245
  senderId: z.ZodOptional<z.ZodString>;
19246
+ whatsapp: z.ZodOptional<z.ZodObject<{
19247
+ wabaBusinessId: z.ZodOptional<z.ZodString>;
19248
+ wabaExternalId: z.ZodString;
19249
+ phoneNumberId: z.ZodString;
19250
+ email: z.ZodString;
19251
+ clientId: z.ZodOptional<z.ZodString>;
19252
+ channelId: z.ZodOptional<z.ZodString>;
19253
+ status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
19254
+ apiKey: z.ZodOptional<z.ZodString>;
19255
+ }, "strip", z.ZodTypeAny, {
19256
+ email: string;
19257
+ wabaExternalId: string;
19258
+ phoneNumberId: string;
19259
+ wabaBusinessId?: string | undefined;
19260
+ clientId?: string | undefined;
19261
+ channelId?: string | undefined;
19262
+ status?: "active" | "pending" | undefined;
19263
+ apiKey?: string | undefined;
19264
+ }, {
19265
+ email: string;
19266
+ wabaExternalId: string;
19267
+ phoneNumberId: string;
19268
+ wabaBusinessId?: string | undefined;
19269
+ clientId?: string | undefined;
19270
+ channelId?: string | undefined;
19271
+ status?: "active" | "pending" | undefined;
19272
+ apiKey?: string | undefined;
19273
+ }>>;
18550
19274
  vonageCredentials: z.ZodOptional<z.ZodObject<{
18551
19275
  mobileNumber: z.ZodString;
18552
19276
  apiKey: z.ZodString;
18553
19277
  apiSecret: z.ZodString;
18554
19278
  }, "strip", z.ZodTypeAny, {
18555
- mobileNumber: string;
18556
19279
  apiKey: string;
19280
+ mobileNumber: string;
18557
19281
  apiSecret: string;
18558
19282
  }, {
18559
- mobileNumber: string;
18560
19283
  apiKey: string;
19284
+ mobileNumber: string;
18561
19285
  apiSecret: string;
18562
19286
  }>>;
18563
19287
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -18569,9 +19293,19 @@ export declare const messengerContract: {
18569
19293
  channelSecret?: string | undefined;
18570
19294
  additionalCredentials?: any;
18571
19295
  senderId?: string | undefined;
19296
+ whatsapp?: {
19297
+ email: string;
19298
+ wabaExternalId: string;
19299
+ phoneNumberId: string;
19300
+ wabaBusinessId?: string | undefined;
19301
+ clientId?: string | undefined;
19302
+ channelId?: string | undefined;
19303
+ status?: "active" | "pending" | undefined;
19304
+ apiKey?: string | undefined;
19305
+ } | undefined;
18572
19306
  vonageCredentials?: {
18573
- mobileNumber: string;
18574
19307
  apiKey: string;
19308
+ mobileNumber: string;
18575
19309
  apiSecret: string;
18576
19310
  } | undefined;
18577
19311
  lineRichMenuId?: string | null | undefined;
@@ -18583,9 +19317,19 @@ export declare const messengerContract: {
18583
19317
  channelSecret?: string | undefined;
18584
19318
  additionalCredentials?: any;
18585
19319
  senderId?: string | undefined;
19320
+ whatsapp?: {
19321
+ email: string;
19322
+ wabaExternalId: string;
19323
+ phoneNumberId: string;
19324
+ wabaBusinessId?: string | undefined;
19325
+ clientId?: string | undefined;
19326
+ channelId?: string | undefined;
19327
+ status?: "active" | "pending" | undefined;
19328
+ apiKey?: string | undefined;
19329
+ } | undefined;
18586
19330
  vonageCredentials?: {
18587
- mobileNumber: string;
18588
19331
  apiKey: string;
19332
+ mobileNumber: string;
18589
19333
  apiSecret: string;
18590
19334
  } | undefined;
18591
19335
  lineRichMenuId?: string | null | undefined;
@@ -18627,9 +19371,19 @@ export declare const messengerContract: {
18627
19371
  channelSecret?: string | undefined;
18628
19372
  additionalCredentials?: any;
18629
19373
  senderId?: string | undefined;
19374
+ whatsapp?: {
19375
+ email: string;
19376
+ wabaExternalId: string;
19377
+ phoneNumberId: string;
19378
+ wabaBusinessId?: string | undefined;
19379
+ clientId?: string | undefined;
19380
+ channelId?: string | undefined;
19381
+ status?: "active" | "pending" | undefined;
19382
+ apiKey?: string | undefined;
19383
+ } | undefined;
18630
19384
  vonageCredentials?: {
18631
- mobileNumber: string;
18632
19385
  apiKey: string;
19386
+ mobileNumber: string;
18633
19387
  apiSecret: string;
18634
19388
  } | undefined;
18635
19389
  lineRichMenuId?: string | null | undefined;
@@ -18659,9 +19413,19 @@ export declare const messengerContract: {
18659
19413
  channelSecret?: string | undefined;
18660
19414
  additionalCredentials?: any;
18661
19415
  senderId?: string | undefined;
19416
+ whatsapp?: {
19417
+ email: string;
19418
+ wabaExternalId: string;
19419
+ phoneNumberId: string;
19420
+ wabaBusinessId?: string | undefined;
19421
+ clientId?: string | undefined;
19422
+ channelId?: string | undefined;
19423
+ status?: "active" | "pending" | undefined;
19424
+ apiKey?: string | undefined;
19425
+ } | undefined;
18662
19426
  vonageCredentials?: {
18663
- mobileNumber: string;
18664
19427
  apiKey: string;
19428
+ mobileNumber: string;
18665
19429
  apiSecret: string;
18666
19430
  } | undefined;
18667
19431
  lineRichMenuId?: string | null | undefined;
@@ -18693,9 +19457,19 @@ export declare const messengerContract: {
18693
19457
  channelSecret?: string | undefined;
18694
19458
  additionalCredentials?: any;
18695
19459
  senderId?: string | undefined;
19460
+ whatsapp?: {
19461
+ email: string;
19462
+ wabaExternalId: string;
19463
+ phoneNumberId: string;
19464
+ wabaBusinessId?: string | undefined;
19465
+ clientId?: string | undefined;
19466
+ channelId?: string | undefined;
19467
+ status?: "active" | "pending" | undefined;
19468
+ apiKey?: string | undefined;
19469
+ } | undefined;
18696
19470
  vonageCredentials?: {
18697
- mobileNumber: string;
18698
19471
  apiKey: string;
19472
+ mobileNumber: string;
18699
19473
  apiSecret: string;
18700
19474
  } | undefined;
18701
19475
  lineRichMenuId?: string | null | undefined;
@@ -18728,9 +19502,19 @@ export declare const messengerContract: {
18728
19502
  channelSecret?: string | undefined;
18729
19503
  additionalCredentials?: any;
18730
19504
  senderId?: string | undefined;
19505
+ whatsapp?: {
19506
+ email: string;
19507
+ wabaExternalId: string;
19508
+ phoneNumberId: string;
19509
+ wabaBusinessId?: string | undefined;
19510
+ clientId?: string | undefined;
19511
+ channelId?: string | undefined;
19512
+ status?: "active" | "pending" | undefined;
19513
+ apiKey?: string | undefined;
19514
+ } | undefined;
18731
19515
  vonageCredentials?: {
18732
- mobileNumber: string;
18733
19516
  apiKey: string;
19517
+ mobileNumber: string;
18734
19518
  apiSecret: string;
18735
19519
  } | undefined;
18736
19520
  lineRichMenuId?: string | null | undefined;
@@ -18799,17 +19583,45 @@ export declare const messengerContract: {
18799
19583
  channelSecret: z.ZodOptional<z.ZodString>;
18800
19584
  additionalCredentials: z.ZodOptional<z.ZodAny>;
18801
19585
  senderId: z.ZodOptional<z.ZodString>;
19586
+ whatsapp: z.ZodOptional<z.ZodObject<{
19587
+ wabaBusinessId: z.ZodOptional<z.ZodString>;
19588
+ wabaExternalId: z.ZodString;
19589
+ phoneNumberId: z.ZodString;
19590
+ email: z.ZodString;
19591
+ clientId: z.ZodOptional<z.ZodString>;
19592
+ channelId: z.ZodOptional<z.ZodString>;
19593
+ status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
19594
+ apiKey: z.ZodOptional<z.ZodString>;
19595
+ }, "strip", z.ZodTypeAny, {
19596
+ email: string;
19597
+ wabaExternalId: string;
19598
+ phoneNumberId: string;
19599
+ wabaBusinessId?: string | undefined;
19600
+ clientId?: string | undefined;
19601
+ channelId?: string | undefined;
19602
+ status?: "active" | "pending" | undefined;
19603
+ apiKey?: string | undefined;
19604
+ }, {
19605
+ email: string;
19606
+ wabaExternalId: string;
19607
+ phoneNumberId: string;
19608
+ wabaBusinessId?: string | undefined;
19609
+ clientId?: string | undefined;
19610
+ channelId?: string | undefined;
19611
+ status?: "active" | "pending" | undefined;
19612
+ apiKey?: string | undefined;
19613
+ }>>;
18802
19614
  vonageCredentials: z.ZodOptional<z.ZodObject<{
18803
19615
  mobileNumber: z.ZodString;
18804
19616
  apiKey: z.ZodString;
18805
19617
  apiSecret: z.ZodString;
18806
19618
  }, "strip", z.ZodTypeAny, {
18807
- mobileNumber: string;
18808
19619
  apiKey: string;
19620
+ mobileNumber: string;
18809
19621
  apiSecret: string;
18810
19622
  }, {
18811
- mobileNumber: string;
18812
19623
  apiKey: string;
19624
+ mobileNumber: string;
18813
19625
  apiSecret: string;
18814
19626
  }>>;
18815
19627
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -18821,9 +19633,19 @@ export declare const messengerContract: {
18821
19633
  channelSecret?: string | undefined;
18822
19634
  additionalCredentials?: any;
18823
19635
  senderId?: string | undefined;
19636
+ whatsapp?: {
19637
+ email: string;
19638
+ wabaExternalId: string;
19639
+ phoneNumberId: string;
19640
+ wabaBusinessId?: string | undefined;
19641
+ clientId?: string | undefined;
19642
+ channelId?: string | undefined;
19643
+ status?: "active" | "pending" | undefined;
19644
+ apiKey?: string | undefined;
19645
+ } | undefined;
18824
19646
  vonageCredentials?: {
18825
- mobileNumber: string;
18826
19647
  apiKey: string;
19648
+ mobileNumber: string;
18827
19649
  apiSecret: string;
18828
19650
  } | undefined;
18829
19651
  lineRichMenuId?: string | null | undefined;
@@ -18835,9 +19657,19 @@ export declare const messengerContract: {
18835
19657
  channelSecret?: string | undefined;
18836
19658
  additionalCredentials?: any;
18837
19659
  senderId?: string | undefined;
19660
+ whatsapp?: {
19661
+ email: string;
19662
+ wabaExternalId: string;
19663
+ phoneNumberId: string;
19664
+ wabaBusinessId?: string | undefined;
19665
+ clientId?: string | undefined;
19666
+ channelId?: string | undefined;
19667
+ status?: "active" | "pending" | undefined;
19668
+ apiKey?: string | undefined;
19669
+ } | undefined;
18838
19670
  vonageCredentials?: {
18839
- mobileNumber: string;
18840
19671
  apiKey: string;
19672
+ mobileNumber: string;
18841
19673
  apiSecret: string;
18842
19674
  } | undefined;
18843
19675
  lineRichMenuId?: string | null | undefined;
@@ -18879,9 +19711,19 @@ export declare const messengerContract: {
18879
19711
  channelSecret?: string | undefined;
18880
19712
  additionalCredentials?: any;
18881
19713
  senderId?: string | undefined;
19714
+ whatsapp?: {
19715
+ email: string;
19716
+ wabaExternalId: string;
19717
+ phoneNumberId: string;
19718
+ wabaBusinessId?: string | undefined;
19719
+ clientId?: string | undefined;
19720
+ channelId?: string | undefined;
19721
+ status?: "active" | "pending" | undefined;
19722
+ apiKey?: string | undefined;
19723
+ } | undefined;
18882
19724
  vonageCredentials?: {
18883
- mobileNumber: string;
18884
19725
  apiKey: string;
19726
+ mobileNumber: string;
18885
19727
  apiSecret: string;
18886
19728
  } | undefined;
18887
19729
  lineRichMenuId?: string | null | undefined;
@@ -18911,9 +19753,19 @@ export declare const messengerContract: {
18911
19753
  channelSecret?: string | undefined;
18912
19754
  additionalCredentials?: any;
18913
19755
  senderId?: string | undefined;
19756
+ whatsapp?: {
19757
+ email: string;
19758
+ wabaExternalId: string;
19759
+ phoneNumberId: string;
19760
+ wabaBusinessId?: string | undefined;
19761
+ clientId?: string | undefined;
19762
+ channelId?: string | undefined;
19763
+ status?: "active" | "pending" | undefined;
19764
+ apiKey?: string | undefined;
19765
+ } | undefined;
18914
19766
  vonageCredentials?: {
18915
- mobileNumber: string;
18916
19767
  apiKey: string;
19768
+ mobileNumber: string;
18917
19769
  apiSecret: string;
18918
19770
  } | undefined;
18919
19771
  lineRichMenuId?: string | null | undefined;
@@ -18945,9 +19797,19 @@ export declare const messengerContract: {
18945
19797
  channelSecret?: string | undefined;
18946
19798
  additionalCredentials?: any;
18947
19799
  senderId?: string | undefined;
19800
+ whatsapp?: {
19801
+ email: string;
19802
+ wabaExternalId: string;
19803
+ phoneNumberId: string;
19804
+ wabaBusinessId?: string | undefined;
19805
+ clientId?: string | undefined;
19806
+ channelId?: string | undefined;
19807
+ status?: "active" | "pending" | undefined;
19808
+ apiKey?: string | undefined;
19809
+ } | undefined;
18948
19810
  vonageCredentials?: {
18949
- mobileNumber: string;
18950
19811
  apiKey: string;
19812
+ mobileNumber: string;
18951
19813
  apiSecret: string;
18952
19814
  } | undefined;
18953
19815
  lineRichMenuId?: string | null | undefined;
@@ -18980,9 +19842,19 @@ export declare const messengerContract: {
18980
19842
  channelSecret?: string | undefined;
18981
19843
  additionalCredentials?: any;
18982
19844
  senderId?: string | undefined;
19845
+ whatsapp?: {
19846
+ email: string;
19847
+ wabaExternalId: string;
19848
+ phoneNumberId: string;
19849
+ wabaBusinessId?: string | undefined;
19850
+ clientId?: string | undefined;
19851
+ channelId?: string | undefined;
19852
+ status?: "active" | "pending" | undefined;
19853
+ apiKey?: string | undefined;
19854
+ } | undefined;
18983
19855
  vonageCredentials?: {
18984
- mobileNumber: string;
18985
19856
  apiKey: string;
19857
+ mobileNumber: string;
18986
19858
  apiSecret: string;
18987
19859
  } | undefined;
18988
19860
  lineRichMenuId?: string | null | undefined;
@@ -19038,17 +19910,45 @@ export declare const messengerContract: {
19038
19910
  channelSecret: z.ZodOptional<z.ZodString>;
19039
19911
  additionalCredentials: z.ZodOptional<z.ZodAny>;
19040
19912
  senderId: z.ZodOptional<z.ZodString>;
19913
+ whatsapp: z.ZodOptional<z.ZodObject<{
19914
+ wabaBusinessId: z.ZodOptional<z.ZodString>;
19915
+ wabaExternalId: z.ZodString;
19916
+ phoneNumberId: z.ZodString;
19917
+ email: z.ZodString;
19918
+ clientId: z.ZodOptional<z.ZodString>;
19919
+ channelId: z.ZodOptional<z.ZodString>;
19920
+ status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
19921
+ apiKey: z.ZodOptional<z.ZodString>;
19922
+ }, "strip", z.ZodTypeAny, {
19923
+ email: string;
19924
+ wabaExternalId: string;
19925
+ phoneNumberId: string;
19926
+ wabaBusinessId?: string | undefined;
19927
+ clientId?: string | undefined;
19928
+ channelId?: string | undefined;
19929
+ status?: "active" | "pending" | undefined;
19930
+ apiKey?: string | undefined;
19931
+ }, {
19932
+ email: string;
19933
+ wabaExternalId: string;
19934
+ phoneNumberId: string;
19935
+ wabaBusinessId?: string | undefined;
19936
+ clientId?: string | undefined;
19937
+ channelId?: string | undefined;
19938
+ status?: "active" | "pending" | undefined;
19939
+ apiKey?: string | undefined;
19940
+ }>>;
19041
19941
  vonageCredentials: z.ZodOptional<z.ZodObject<{
19042
19942
  mobileNumber: z.ZodString;
19043
19943
  apiKey: z.ZodString;
19044
19944
  apiSecret: z.ZodString;
19045
19945
  }, "strip", z.ZodTypeAny, {
19046
- mobileNumber: string;
19047
19946
  apiKey: string;
19947
+ mobileNumber: string;
19048
19948
  apiSecret: string;
19049
19949
  }, {
19050
- mobileNumber: string;
19051
19950
  apiKey: string;
19951
+ mobileNumber: string;
19052
19952
  apiSecret: string;
19053
19953
  }>>;
19054
19954
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -19060,9 +19960,19 @@ export declare const messengerContract: {
19060
19960
  channelSecret?: string | undefined;
19061
19961
  additionalCredentials?: any;
19062
19962
  senderId?: string | undefined;
19963
+ whatsapp?: {
19964
+ email: string;
19965
+ wabaExternalId: string;
19966
+ phoneNumberId: string;
19967
+ wabaBusinessId?: string | undefined;
19968
+ clientId?: string | undefined;
19969
+ channelId?: string | undefined;
19970
+ status?: "active" | "pending" | undefined;
19971
+ apiKey?: string | undefined;
19972
+ } | undefined;
19063
19973
  vonageCredentials?: {
19064
- mobileNumber: string;
19065
19974
  apiKey: string;
19975
+ mobileNumber: string;
19066
19976
  apiSecret: string;
19067
19977
  } | undefined;
19068
19978
  lineRichMenuId?: string | null | undefined;
@@ -19074,9 +19984,19 @@ export declare const messengerContract: {
19074
19984
  channelSecret?: string | undefined;
19075
19985
  additionalCredentials?: any;
19076
19986
  senderId?: string | undefined;
19987
+ whatsapp?: {
19988
+ email: string;
19989
+ wabaExternalId: string;
19990
+ phoneNumberId: string;
19991
+ wabaBusinessId?: string | undefined;
19992
+ clientId?: string | undefined;
19993
+ channelId?: string | undefined;
19994
+ status?: "active" | "pending" | undefined;
19995
+ apiKey?: string | undefined;
19996
+ } | undefined;
19077
19997
  vonageCredentials?: {
19078
- mobileNumber: string;
19079
19998
  apiKey: string;
19999
+ mobileNumber: string;
19080
20000
  apiSecret: string;
19081
20001
  } | undefined;
19082
20002
  lineRichMenuId?: string | null | undefined;
@@ -19123,9 +20043,19 @@ export declare const messengerContract: {
19123
20043
  channelSecret?: string | undefined;
19124
20044
  additionalCredentials?: any;
19125
20045
  senderId?: string | undefined;
20046
+ whatsapp?: {
20047
+ email: string;
20048
+ wabaExternalId: string;
20049
+ phoneNumberId: string;
20050
+ wabaBusinessId?: string | undefined;
20051
+ clientId?: string | undefined;
20052
+ channelId?: string | undefined;
20053
+ status?: "active" | "pending" | undefined;
20054
+ apiKey?: string | undefined;
20055
+ } | undefined;
19126
20056
  vonageCredentials?: {
19127
- mobileNumber: string;
19128
20057
  apiKey: string;
20058
+ mobileNumber: string;
19129
20059
  apiSecret: string;
19130
20060
  } | undefined;
19131
20061
  lineRichMenuId?: string | null | undefined;
@@ -19159,9 +20089,19 @@ export declare const messengerContract: {
19159
20089
  channelSecret?: string | undefined;
19160
20090
  additionalCredentials?: any;
19161
20091
  senderId?: string | undefined;
20092
+ whatsapp?: {
20093
+ email: string;
20094
+ wabaExternalId: string;
20095
+ phoneNumberId: string;
20096
+ wabaBusinessId?: string | undefined;
20097
+ clientId?: string | undefined;
20098
+ channelId?: string | undefined;
20099
+ status?: "active" | "pending" | undefined;
20100
+ apiKey?: string | undefined;
20101
+ } | undefined;
19162
20102
  vonageCredentials?: {
19163
- mobileNumber: string;
19164
20103
  apiKey: string;
20104
+ mobileNumber: string;
19165
20105
  apiSecret: string;
19166
20106
  } | undefined;
19167
20107
  lineRichMenuId?: string | null | undefined;
@@ -19200,17 +20140,45 @@ export declare const messengerContract: {
19200
20140
  channelSecret: z.ZodOptional<z.ZodString>;
19201
20141
  additionalCredentials: z.ZodOptional<z.ZodAny>;
19202
20142
  senderId: z.ZodOptional<z.ZodString>;
20143
+ whatsapp: z.ZodOptional<z.ZodObject<{
20144
+ wabaBusinessId: z.ZodOptional<z.ZodString>;
20145
+ wabaExternalId: z.ZodString;
20146
+ phoneNumberId: z.ZodString;
20147
+ email: z.ZodString;
20148
+ clientId: z.ZodOptional<z.ZodString>;
20149
+ channelId: z.ZodOptional<z.ZodString>;
20150
+ status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
20151
+ apiKey: z.ZodOptional<z.ZodString>;
20152
+ }, "strip", z.ZodTypeAny, {
20153
+ email: string;
20154
+ wabaExternalId: string;
20155
+ phoneNumberId: string;
20156
+ wabaBusinessId?: string | undefined;
20157
+ clientId?: string | undefined;
20158
+ channelId?: string | undefined;
20159
+ status?: "active" | "pending" | undefined;
20160
+ apiKey?: string | undefined;
20161
+ }, {
20162
+ email: string;
20163
+ wabaExternalId: string;
20164
+ phoneNumberId: string;
20165
+ wabaBusinessId?: string | undefined;
20166
+ clientId?: string | undefined;
20167
+ channelId?: string | undefined;
20168
+ status?: "active" | "pending" | undefined;
20169
+ apiKey?: string | undefined;
20170
+ }>>;
19203
20171
  vonageCredentials: z.ZodOptional<z.ZodObject<{
19204
20172
  mobileNumber: z.ZodString;
19205
20173
  apiKey: z.ZodString;
19206
20174
  apiSecret: z.ZodString;
19207
20175
  }, "strip", z.ZodTypeAny, {
19208
- mobileNumber: string;
19209
20176
  apiKey: string;
20177
+ mobileNumber: string;
19210
20178
  apiSecret: string;
19211
20179
  }, {
19212
- mobileNumber: string;
19213
20180
  apiKey: string;
20181
+ mobileNumber: string;
19214
20182
  apiSecret: string;
19215
20183
  }>>;
19216
20184
  lineRichMenuId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -19222,9 +20190,19 @@ export declare const messengerContract: {
19222
20190
  channelSecret?: string | undefined;
19223
20191
  additionalCredentials?: any;
19224
20192
  senderId?: string | undefined;
20193
+ whatsapp?: {
20194
+ email: string;
20195
+ wabaExternalId: string;
20196
+ phoneNumberId: string;
20197
+ wabaBusinessId?: string | undefined;
20198
+ clientId?: string | undefined;
20199
+ channelId?: string | undefined;
20200
+ status?: "active" | "pending" | undefined;
20201
+ apiKey?: string | undefined;
20202
+ } | undefined;
19225
20203
  vonageCredentials?: {
19226
- mobileNumber: string;
19227
20204
  apiKey: string;
20205
+ mobileNumber: string;
19228
20206
  apiSecret: string;
19229
20207
  } | undefined;
19230
20208
  lineRichMenuId?: string | null | undefined;
@@ -19236,9 +20214,19 @@ export declare const messengerContract: {
19236
20214
  channelSecret?: string | undefined;
19237
20215
  additionalCredentials?: any;
19238
20216
  senderId?: string | undefined;
20217
+ whatsapp?: {
20218
+ email: string;
20219
+ wabaExternalId: string;
20220
+ phoneNumberId: string;
20221
+ wabaBusinessId?: string | undefined;
20222
+ clientId?: string | undefined;
20223
+ channelId?: string | undefined;
20224
+ status?: "active" | "pending" | undefined;
20225
+ apiKey?: string | undefined;
20226
+ } | undefined;
19239
20227
  vonageCredentials?: {
19240
- mobileNumber: string;
19241
20228
  apiKey: string;
20229
+ mobileNumber: string;
19242
20230
  apiSecret: string;
19243
20231
  } | undefined;
19244
20232
  lineRichMenuId?: string | null | undefined;
@@ -19280,9 +20268,19 @@ export declare const messengerContract: {
19280
20268
  channelSecret?: string | undefined;
19281
20269
  additionalCredentials?: any;
19282
20270
  senderId?: string | undefined;
20271
+ whatsapp?: {
20272
+ email: string;
20273
+ wabaExternalId: string;
20274
+ phoneNumberId: string;
20275
+ wabaBusinessId?: string | undefined;
20276
+ clientId?: string | undefined;
20277
+ channelId?: string | undefined;
20278
+ status?: "active" | "pending" | undefined;
20279
+ apiKey?: string | undefined;
20280
+ } | undefined;
19283
20281
  vonageCredentials?: {
19284
- mobileNumber: string;
19285
20282
  apiKey: string;
20283
+ mobileNumber: string;
19286
20284
  apiSecret: string;
19287
20285
  } | undefined;
19288
20286
  lineRichMenuId?: string | null | undefined;
@@ -19312,9 +20310,19 @@ export declare const messengerContract: {
19312
20310
  channelSecret?: string | undefined;
19313
20311
  additionalCredentials?: any;
19314
20312
  senderId?: string | undefined;
20313
+ whatsapp?: {
20314
+ email: string;
20315
+ wabaExternalId: string;
20316
+ phoneNumberId: string;
20317
+ wabaBusinessId?: string | undefined;
20318
+ clientId?: string | undefined;
20319
+ channelId?: string | undefined;
20320
+ status?: "active" | "pending" | undefined;
20321
+ apiKey?: string | undefined;
20322
+ } | undefined;
19315
20323
  vonageCredentials?: {
19316
- mobileNumber: string;
19317
20324
  apiKey: string;
20325
+ mobileNumber: string;
19318
20326
  apiSecret: string;
19319
20327
  } | undefined;
19320
20328
  lineRichMenuId?: string | null | undefined;
@@ -19346,9 +20354,19 @@ export declare const messengerContract: {
19346
20354
  channelSecret?: string | undefined;
19347
20355
  additionalCredentials?: any;
19348
20356
  senderId?: string | undefined;
20357
+ whatsapp?: {
20358
+ email: string;
20359
+ wabaExternalId: string;
20360
+ phoneNumberId: string;
20361
+ wabaBusinessId?: string | undefined;
20362
+ clientId?: string | undefined;
20363
+ channelId?: string | undefined;
20364
+ status?: "active" | "pending" | undefined;
20365
+ apiKey?: string | undefined;
20366
+ } | undefined;
19349
20367
  vonageCredentials?: {
19350
- mobileNumber: string;
19351
20368
  apiKey: string;
20369
+ mobileNumber: string;
19352
20370
  apiSecret: string;
19353
20371
  } | undefined;
19354
20372
  lineRichMenuId?: string | null | undefined;
@@ -19381,9 +20399,19 @@ export declare const messengerContract: {
19381
20399
  channelSecret?: string | undefined;
19382
20400
  additionalCredentials?: any;
19383
20401
  senderId?: string | undefined;
20402
+ whatsapp?: {
20403
+ email: string;
20404
+ wabaExternalId: string;
20405
+ phoneNumberId: string;
20406
+ wabaBusinessId?: string | undefined;
20407
+ clientId?: string | undefined;
20408
+ channelId?: string | undefined;
20409
+ status?: "active" | "pending" | undefined;
20410
+ apiKey?: string | undefined;
20411
+ } | undefined;
19384
20412
  vonageCredentials?: {
19385
- mobileNumber: string;
19386
20413
  apiKey: string;
20414
+ mobileNumber: string;
19387
20415
  apiSecret: string;
19388
20416
  } | undefined;
19389
20417
  lineRichMenuId?: string | null | undefined;