@kl1/contracts 1.2.39-uat → 1.2.40-uat

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 (51) hide show
  1. package/dist/api-contracts/src/channel/index.d.ts +1253 -1074
  2. package/dist/api-contracts/src/channel/index.d.ts.map +1 -1
  3. package/dist/api-contracts/src/channel/schema.d.ts +84 -72
  4. package/dist/api-contracts/src/channel/schema.d.ts.map +1 -1
  5. package/dist/api-contracts/src/channel/validation.d.ts +98 -84
  6. package/dist/api-contracts/src/channel/validation.d.ts.map +1 -1
  7. package/dist/api-contracts/src/chat/index.d.ts +1918 -1644
  8. package/dist/api-contracts/src/chat/index.d.ts.map +1 -1
  9. package/dist/api-contracts/src/chat/schema.d.ts +462 -396
  10. package/dist/api-contracts/src/chat/schema.d.ts.map +1 -1
  11. package/dist/api-contracts/src/chat/validation.d.ts +679 -582
  12. package/dist/api-contracts/src/chat/validation.d.ts.map +1 -1
  13. package/dist/api-contracts/src/contract.d.ts +7294 -6252
  14. package/dist/api-contracts/src/contract.d.ts.map +1 -1
  15. package/dist/api-contracts/src/cx-log/index.d.ts +91 -78
  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 +77 -66
  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 +938 -804
  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 +63 -54
  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 +49 -42
  24. package/dist/api-contracts/src/facebook-feed/validation.d.ts.map +1 -1
  25. package/dist/api-contracts/src/instagram/index.d.ts +735 -630
  26. package/dist/api-contracts/src/instagram/index.d.ts.map +1 -1
  27. package/dist/api-contracts/src/line/index.d.ts +651 -558
  28. package/dist/api-contracts/src/line/index.d.ts.map +1 -1
  29. package/dist/api-contracts/src/line/validation.d.ts +77 -66
  30. package/dist/api-contracts/src/line/validation.d.ts.map +1 -1
  31. package/dist/api-contracts/src/messenger/index.d.ts +735 -630
  32. package/dist/api-contracts/src/messenger/index.d.ts.map +1 -1
  33. package/dist/api-contracts/src/messenger/validation.d.ts +49 -42
  34. package/dist/api-contracts/src/messenger/validation.d.ts.map +1 -1
  35. package/dist/api-contracts/src/sms/index.d.ts +140 -120
  36. package/dist/api-contracts/src/sms/index.d.ts.map +1 -1
  37. package/dist/api-contracts/src/telegram/index.d.ts +525 -450
  38. package/dist/api-contracts/src/telegram/index.d.ts.map +1 -1
  39. package/dist/api-contracts/src/viber/index.d.ts +525 -450
  40. package/dist/api-contracts/src/viber/index.d.ts.map +1 -1
  41. package/dist/api-contracts/src/webchat/index.d.ts +525 -450
  42. package/dist/api-contracts/src/webchat/index.d.ts.map +1 -1
  43. package/dist/api-contracts/src/whatsapp/index.d.ts +623 -534
  44. package/dist/api-contracts/src/whatsapp/index.d.ts.map +1 -1
  45. package/dist/api-contracts/src/workflow-rule/index.d.ts +154 -132
  46. package/dist/api-contracts/src/workflow-rule/index.d.ts.map +1 -1
  47. package/dist/index.js +8 -7
  48. package/dist/index.js.map +1 -1
  49. package/dist/index.mjs +8 -7
  50. package/dist/index.mjs.map +1 -1
  51. package/package.json +1 -1
@@ -19,35 +19,38 @@ export declare const facebookFeedContract: {
19
19
  additionalCredentials: z.ZodOptional<z.ZodAny>;
20
20
  senderId: z.ZodOptional<z.ZodString>;
21
21
  whatsapp: z.ZodOptional<z.ZodObject<{
22
- wabaBusinessId: z.ZodOptional<z.ZodString>;
23
- wabaExternalId: z.ZodString;
24
- phoneNumberId: z.ZodString;
25
- email: z.ZodString;
26
- clientId: z.ZodOptional<z.ZodString>;
27
- channelId: z.ZodOptional<z.ZodString>;
22
+ wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
23
+ wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
24
+ phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
25
+ email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
26
+ clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
27
+ channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
28
28
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
29
29
  apiKey: z.ZodOptional<z.ZodString>;
30
30
  tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
31
+ integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
31
32
  }, "strip", z.ZodTypeAny, {
32
- email: string;
33
- wabaExternalId: string;
34
- phoneNumberId: string;
35
- wabaBusinessId?: string | undefined;
36
- clientId?: string | undefined;
37
- channelId?: string | undefined;
33
+ wabaBusinessId?: string | null | undefined;
34
+ wabaExternalId?: string | null | undefined;
35
+ phoneNumberId?: string | null | undefined;
36
+ email?: string | null | undefined;
37
+ clientId?: string | null | undefined;
38
+ channelId?: string | null | undefined;
38
39
  status?: "active" | "pending" | undefined;
39
40
  apiKey?: string | undefined;
40
41
  tier?: "basic" | "regular" | "premium" | undefined;
42
+ integrationType?: "meta" | "360dialog" | undefined;
41
43
  }, {
42
- email: string;
43
- wabaExternalId: string;
44
- phoneNumberId: string;
45
- wabaBusinessId?: string | undefined;
46
- clientId?: string | undefined;
47
- channelId?: string | undefined;
44
+ wabaBusinessId?: string | null | undefined;
45
+ wabaExternalId?: string | null | undefined;
46
+ phoneNumberId?: string | null | undefined;
47
+ email?: string | null | undefined;
48
+ clientId?: string | null | undefined;
49
+ channelId?: string | null | undefined;
48
50
  status?: "active" | "pending" | undefined;
49
51
  apiKey?: string | undefined;
50
52
  tier?: "basic" | "regular" | "premium" | undefined;
53
+ integrationType?: "meta" | "360dialog" | undefined;
51
54
  }>>;
52
55
  vonageCredentials: z.ZodOptional<z.ZodObject<{
53
56
  mobileNumber: z.ZodString;
@@ -72,15 +75,16 @@ export declare const facebookFeedContract: {
72
75
  additionalCredentials?: any;
73
76
  senderId?: string | undefined;
74
77
  whatsapp?: {
75
- email: string;
76
- wabaExternalId: string;
77
- phoneNumberId: string;
78
- wabaBusinessId?: string | undefined;
79
- clientId?: string | undefined;
80
- channelId?: string | undefined;
78
+ wabaBusinessId?: string | null | undefined;
79
+ wabaExternalId?: string | null | undefined;
80
+ phoneNumberId?: string | null | undefined;
81
+ email?: string | null | undefined;
82
+ clientId?: string | null | undefined;
83
+ channelId?: string | null | undefined;
81
84
  status?: "active" | "pending" | undefined;
82
85
  apiKey?: string | undefined;
83
86
  tier?: "basic" | "regular" | "premium" | undefined;
87
+ integrationType?: "meta" | "360dialog" | undefined;
84
88
  } | undefined;
85
89
  vonageCredentials?: {
86
90
  apiKey: string;
@@ -97,15 +101,16 @@ export declare const facebookFeedContract: {
97
101
  additionalCredentials?: any;
98
102
  senderId?: string | undefined;
99
103
  whatsapp?: {
100
- email: string;
101
- wabaExternalId: string;
102
- phoneNumberId: string;
103
- wabaBusinessId?: string | undefined;
104
- clientId?: string | undefined;
105
- channelId?: string | undefined;
104
+ wabaBusinessId?: string | null | undefined;
105
+ wabaExternalId?: string | null | undefined;
106
+ phoneNumberId?: string | null | undefined;
107
+ email?: string | null | undefined;
108
+ clientId?: string | null | undefined;
109
+ channelId?: string | null | undefined;
106
110
  status?: "active" | "pending" | undefined;
107
111
  apiKey?: string | undefined;
108
112
  tier?: "basic" | "regular" | "premium" | undefined;
113
+ integrationType?: "meta" | "360dialog" | undefined;
109
114
  } | undefined;
110
115
  vonageCredentials?: {
111
116
  apiKey: string;
@@ -152,15 +157,16 @@ export declare const facebookFeedContract: {
152
157
  additionalCredentials?: any;
153
158
  senderId?: string | undefined;
154
159
  whatsapp?: {
155
- email: string;
156
- wabaExternalId: string;
157
- phoneNumberId: string;
158
- wabaBusinessId?: string | undefined;
159
- clientId?: string | undefined;
160
- channelId?: string | undefined;
160
+ wabaBusinessId?: string | null | undefined;
161
+ wabaExternalId?: string | null | undefined;
162
+ phoneNumberId?: string | null | undefined;
163
+ email?: string | null | undefined;
164
+ clientId?: string | null | undefined;
165
+ channelId?: string | null | undefined;
161
166
  status?: "active" | "pending" | undefined;
162
167
  apiKey?: string | undefined;
163
168
  tier?: "basic" | "regular" | "premium" | undefined;
169
+ integrationType?: "meta" | "360dialog" | undefined;
164
170
  } | undefined;
165
171
  vonageCredentials?: {
166
172
  apiKey: string;
@@ -195,15 +201,16 @@ export declare const facebookFeedContract: {
195
201
  additionalCredentials?: any;
196
202
  senderId?: string | undefined;
197
203
  whatsapp?: {
198
- email: string;
199
- wabaExternalId: string;
200
- phoneNumberId: string;
201
- wabaBusinessId?: string | undefined;
202
- clientId?: string | undefined;
203
- channelId?: string | undefined;
204
+ wabaBusinessId?: string | null | undefined;
205
+ wabaExternalId?: string | null | undefined;
206
+ phoneNumberId?: string | null | undefined;
207
+ email?: string | null | undefined;
208
+ clientId?: string | null | undefined;
209
+ channelId?: string | null | undefined;
204
210
  status?: "active" | "pending" | undefined;
205
211
  apiKey?: string | undefined;
206
212
  tier?: "basic" | "regular" | "premium" | undefined;
213
+ integrationType?: "meta" | "360dialog" | undefined;
207
214
  } | undefined;
208
215
  vonageCredentials?: {
209
216
  apiKey: string;
@@ -243,35 +250,38 @@ export declare const facebookFeedContract: {
243
250
  additionalCredentials: z.ZodOptional<z.ZodAny>;
244
251
  senderId: z.ZodOptional<z.ZodString>;
245
252
  whatsapp: z.ZodOptional<z.ZodObject<{
246
- wabaBusinessId: z.ZodOptional<z.ZodString>;
247
- wabaExternalId: z.ZodString;
248
- phoneNumberId: z.ZodString;
249
- email: z.ZodString;
250
- clientId: z.ZodOptional<z.ZodString>;
251
- channelId: z.ZodOptional<z.ZodString>;
253
+ wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
254
+ wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
255
+ phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
256
+ email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
257
+ clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
258
+ channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
252
259
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
253
260
  apiKey: z.ZodOptional<z.ZodString>;
254
261
  tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
262
+ integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
255
263
  }, "strip", z.ZodTypeAny, {
256
- email: string;
257
- wabaExternalId: string;
258
- phoneNumberId: string;
259
- wabaBusinessId?: string | undefined;
260
- clientId?: string | undefined;
261
- channelId?: string | undefined;
264
+ wabaBusinessId?: string | null | undefined;
265
+ wabaExternalId?: string | null | undefined;
266
+ phoneNumberId?: string | null | undefined;
267
+ email?: string | null | undefined;
268
+ clientId?: string | null | undefined;
269
+ channelId?: string | null | undefined;
262
270
  status?: "active" | "pending" | undefined;
263
271
  apiKey?: string | undefined;
264
272
  tier?: "basic" | "regular" | "premium" | undefined;
273
+ integrationType?: "meta" | "360dialog" | undefined;
265
274
  }, {
266
- email: string;
267
- wabaExternalId: string;
268
- phoneNumberId: string;
269
- wabaBusinessId?: string | undefined;
270
- clientId?: string | undefined;
271
- channelId?: string | undefined;
275
+ wabaBusinessId?: string | null | undefined;
276
+ wabaExternalId?: string | null | undefined;
277
+ phoneNumberId?: string | null | undefined;
278
+ email?: string | null | undefined;
279
+ clientId?: string | null | undefined;
280
+ channelId?: string | null | undefined;
272
281
  status?: "active" | "pending" | undefined;
273
282
  apiKey?: string | undefined;
274
283
  tier?: "basic" | "regular" | "premium" | undefined;
284
+ integrationType?: "meta" | "360dialog" | undefined;
275
285
  }>>;
276
286
  vonageCredentials: z.ZodOptional<z.ZodObject<{
277
287
  mobileNumber: z.ZodString;
@@ -296,15 +306,16 @@ export declare const facebookFeedContract: {
296
306
  additionalCredentials?: any;
297
307
  senderId?: string | undefined;
298
308
  whatsapp?: {
299
- email: string;
300
- wabaExternalId: string;
301
- phoneNumberId: string;
302
- wabaBusinessId?: string | undefined;
303
- clientId?: string | undefined;
304
- channelId?: string | undefined;
309
+ wabaBusinessId?: string | null | undefined;
310
+ wabaExternalId?: string | null | undefined;
311
+ phoneNumberId?: string | null | undefined;
312
+ email?: string | null | undefined;
313
+ clientId?: string | null | undefined;
314
+ channelId?: string | null | undefined;
305
315
  status?: "active" | "pending" | undefined;
306
316
  apiKey?: string | undefined;
307
317
  tier?: "basic" | "regular" | "premium" | undefined;
318
+ integrationType?: "meta" | "360dialog" | undefined;
308
319
  } | undefined;
309
320
  vonageCredentials?: {
310
321
  apiKey: string;
@@ -321,15 +332,16 @@ export declare const facebookFeedContract: {
321
332
  additionalCredentials?: any;
322
333
  senderId?: string | undefined;
323
334
  whatsapp?: {
324
- email: string;
325
- wabaExternalId: string;
326
- phoneNumberId: string;
327
- wabaBusinessId?: string | undefined;
328
- clientId?: string | undefined;
329
- channelId?: string | undefined;
335
+ wabaBusinessId?: string | null | undefined;
336
+ wabaExternalId?: string | null | undefined;
337
+ phoneNumberId?: string | null | undefined;
338
+ email?: string | null | undefined;
339
+ clientId?: string | null | undefined;
340
+ channelId?: string | null | undefined;
330
341
  status?: "active" | "pending" | undefined;
331
342
  apiKey?: string | undefined;
332
343
  tier?: "basic" | "regular" | "premium" | undefined;
344
+ integrationType?: "meta" | "360dialog" | undefined;
333
345
  } | undefined;
334
346
  vonageCredentials?: {
335
347
  apiKey: string;
@@ -376,15 +388,16 @@ export declare const facebookFeedContract: {
376
388
  additionalCredentials?: any;
377
389
  senderId?: string | undefined;
378
390
  whatsapp?: {
379
- email: string;
380
- wabaExternalId: string;
381
- phoneNumberId: string;
382
- wabaBusinessId?: string | undefined;
383
- clientId?: string | undefined;
384
- channelId?: string | undefined;
391
+ wabaBusinessId?: string | null | undefined;
392
+ wabaExternalId?: string | null | undefined;
393
+ phoneNumberId?: string | null | undefined;
394
+ email?: string | null | undefined;
395
+ clientId?: string | null | undefined;
396
+ channelId?: string | null | undefined;
385
397
  status?: "active" | "pending" | undefined;
386
398
  apiKey?: string | undefined;
387
399
  tier?: "basic" | "regular" | "premium" | undefined;
400
+ integrationType?: "meta" | "360dialog" | undefined;
388
401
  } | undefined;
389
402
  vonageCredentials?: {
390
403
  apiKey: string;
@@ -419,15 +432,16 @@ export declare const facebookFeedContract: {
419
432
  additionalCredentials?: any;
420
433
  senderId?: string | undefined;
421
434
  whatsapp?: {
422
- email: string;
423
- wabaExternalId: string;
424
- phoneNumberId: string;
425
- wabaBusinessId?: string | undefined;
426
- clientId?: string | undefined;
427
- channelId?: string | undefined;
435
+ wabaBusinessId?: string | null | undefined;
436
+ wabaExternalId?: string | null | undefined;
437
+ phoneNumberId?: string | null | undefined;
438
+ email?: string | null | undefined;
439
+ clientId?: string | null | undefined;
440
+ channelId?: string | null | undefined;
428
441
  status?: "active" | "pending" | undefined;
429
442
  apiKey?: string | undefined;
430
443
  tier?: "basic" | "regular" | "premium" | undefined;
444
+ integrationType?: "meta" | "360dialog" | undefined;
431
445
  } | undefined;
432
446
  vonageCredentials?: {
433
447
  apiKey: string;
@@ -464,15 +478,16 @@ export declare const facebookFeedContract: {
464
478
  additionalCredentials?: any;
465
479
  senderId?: string | undefined;
466
480
  whatsapp?: {
467
- email: string;
468
- wabaExternalId: string;
469
- phoneNumberId: string;
470
- wabaBusinessId?: string | undefined;
471
- clientId?: string | undefined;
472
- channelId?: string | undefined;
481
+ wabaBusinessId?: string | null | undefined;
482
+ wabaExternalId?: string | null | undefined;
483
+ phoneNumberId?: string | null | undefined;
484
+ email?: string | null | undefined;
485
+ clientId?: string | null | undefined;
486
+ channelId?: string | null | undefined;
473
487
  status?: "active" | "pending" | undefined;
474
488
  apiKey?: string | undefined;
475
489
  tier?: "basic" | "regular" | "premium" | undefined;
490
+ integrationType?: "meta" | "360dialog" | undefined;
476
491
  } | undefined;
477
492
  vonageCredentials?: {
478
493
  apiKey: string;
@@ -510,15 +525,16 @@ export declare const facebookFeedContract: {
510
525
  additionalCredentials?: any;
511
526
  senderId?: string | undefined;
512
527
  whatsapp?: {
513
- email: string;
514
- wabaExternalId: string;
515
- phoneNumberId: string;
516
- wabaBusinessId?: string | undefined;
517
- clientId?: string | undefined;
518
- channelId?: string | undefined;
528
+ wabaBusinessId?: string | null | undefined;
529
+ wabaExternalId?: string | null | undefined;
530
+ phoneNumberId?: string | null | undefined;
531
+ email?: string | null | undefined;
532
+ clientId?: string | null | undefined;
533
+ channelId?: string | null | undefined;
519
534
  status?: "active" | "pending" | undefined;
520
535
  apiKey?: string | undefined;
521
536
  tier?: "basic" | "regular" | "premium" | undefined;
537
+ integrationType?: "meta" | "360dialog" | undefined;
522
538
  } | undefined;
523
539
  vonageCredentials?: {
524
540
  apiKey: string;
@@ -580,35 +596,38 @@ export declare const facebookFeedContract: {
580
596
  additionalCredentials: z.ZodOptional<z.ZodAny>;
581
597
  senderId: z.ZodOptional<z.ZodString>;
582
598
  whatsapp: z.ZodOptional<z.ZodObject<{
583
- wabaBusinessId: z.ZodOptional<z.ZodString>;
584
- wabaExternalId: z.ZodString;
585
- phoneNumberId: z.ZodString;
586
- email: z.ZodString;
587
- clientId: z.ZodOptional<z.ZodString>;
588
- channelId: z.ZodOptional<z.ZodString>;
599
+ wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
600
+ wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
601
+ phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
602
+ email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
603
+ clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
604
+ channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
589
605
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
590
606
  apiKey: z.ZodOptional<z.ZodString>;
591
607
  tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
608
+ integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
592
609
  }, "strip", z.ZodTypeAny, {
593
- email: string;
594
- wabaExternalId: string;
595
- phoneNumberId: string;
596
- wabaBusinessId?: string | undefined;
597
- clientId?: string | undefined;
598
- channelId?: string | undefined;
610
+ wabaBusinessId?: string | null | undefined;
611
+ wabaExternalId?: string | null | undefined;
612
+ phoneNumberId?: string | null | undefined;
613
+ email?: string | null | undefined;
614
+ clientId?: string | null | undefined;
615
+ channelId?: string | null | undefined;
599
616
  status?: "active" | "pending" | undefined;
600
617
  apiKey?: string | undefined;
601
618
  tier?: "basic" | "regular" | "premium" | undefined;
619
+ integrationType?: "meta" | "360dialog" | undefined;
602
620
  }, {
603
- email: string;
604
- wabaExternalId: string;
605
- phoneNumberId: string;
606
- wabaBusinessId?: string | undefined;
607
- clientId?: string | undefined;
608
- channelId?: string | undefined;
621
+ wabaBusinessId?: string | null | undefined;
622
+ wabaExternalId?: string | null | undefined;
623
+ phoneNumberId?: string | null | undefined;
624
+ email?: string | null | undefined;
625
+ clientId?: string | null | undefined;
626
+ channelId?: string | null | undefined;
609
627
  status?: "active" | "pending" | undefined;
610
628
  apiKey?: string | undefined;
611
629
  tier?: "basic" | "regular" | "premium" | undefined;
630
+ integrationType?: "meta" | "360dialog" | undefined;
612
631
  }>>;
613
632
  vonageCredentials: z.ZodOptional<z.ZodObject<{
614
633
  mobileNumber: z.ZodString;
@@ -633,15 +652,16 @@ export declare const facebookFeedContract: {
633
652
  additionalCredentials?: any;
634
653
  senderId?: string | undefined;
635
654
  whatsapp?: {
636
- email: string;
637
- wabaExternalId: string;
638
- phoneNumberId: string;
639
- wabaBusinessId?: string | undefined;
640
- clientId?: string | undefined;
641
- channelId?: string | undefined;
655
+ wabaBusinessId?: string | null | undefined;
656
+ wabaExternalId?: string | null | undefined;
657
+ phoneNumberId?: string | null | undefined;
658
+ email?: string | null | undefined;
659
+ clientId?: string | null | undefined;
660
+ channelId?: string | null | undefined;
642
661
  status?: "active" | "pending" | undefined;
643
662
  apiKey?: string | undefined;
644
663
  tier?: "basic" | "regular" | "premium" | undefined;
664
+ integrationType?: "meta" | "360dialog" | undefined;
645
665
  } | undefined;
646
666
  vonageCredentials?: {
647
667
  apiKey: string;
@@ -658,15 +678,16 @@ export declare const facebookFeedContract: {
658
678
  additionalCredentials?: any;
659
679
  senderId?: string | undefined;
660
680
  whatsapp?: {
661
- email: string;
662
- wabaExternalId: string;
663
- phoneNumberId: string;
664
- wabaBusinessId?: string | undefined;
665
- clientId?: string | undefined;
666
- channelId?: string | undefined;
681
+ wabaBusinessId?: string | null | undefined;
682
+ wabaExternalId?: string | null | undefined;
683
+ phoneNumberId?: string | null | undefined;
684
+ email?: string | null | undefined;
685
+ clientId?: string | null | undefined;
686
+ channelId?: string | null | undefined;
667
687
  status?: "active" | "pending" | undefined;
668
688
  apiKey?: string | undefined;
669
689
  tier?: "basic" | "regular" | "premium" | undefined;
690
+ integrationType?: "meta" | "360dialog" | undefined;
670
691
  } | undefined;
671
692
  vonageCredentials?: {
672
693
  apiKey: string;
@@ -713,15 +734,16 @@ export declare const facebookFeedContract: {
713
734
  additionalCredentials?: any;
714
735
  senderId?: string | undefined;
715
736
  whatsapp?: {
716
- email: string;
717
- wabaExternalId: string;
718
- phoneNumberId: string;
719
- wabaBusinessId?: string | undefined;
720
- clientId?: string | undefined;
721
- channelId?: string | undefined;
737
+ wabaBusinessId?: string | null | undefined;
738
+ wabaExternalId?: string | null | undefined;
739
+ phoneNumberId?: string | null | undefined;
740
+ email?: string | null | undefined;
741
+ clientId?: string | null | undefined;
742
+ channelId?: string | null | undefined;
722
743
  status?: "active" | "pending" | undefined;
723
744
  apiKey?: string | undefined;
724
745
  tier?: "basic" | "regular" | "premium" | undefined;
746
+ integrationType?: "meta" | "360dialog" | undefined;
725
747
  } | undefined;
726
748
  vonageCredentials?: {
727
749
  apiKey: string;
@@ -756,15 +778,16 @@ export declare const facebookFeedContract: {
756
778
  additionalCredentials?: any;
757
779
  senderId?: string | undefined;
758
780
  whatsapp?: {
759
- email: string;
760
- wabaExternalId: string;
761
- phoneNumberId: string;
762
- wabaBusinessId?: string | undefined;
763
- clientId?: string | undefined;
764
- channelId?: string | undefined;
781
+ wabaBusinessId?: string | null | undefined;
782
+ wabaExternalId?: string | null | undefined;
783
+ phoneNumberId?: string | null | undefined;
784
+ email?: string | null | undefined;
785
+ clientId?: string | null | undefined;
786
+ channelId?: string | null | undefined;
765
787
  status?: "active" | "pending" | undefined;
766
788
  apiKey?: string | undefined;
767
789
  tier?: "basic" | "regular" | "premium" | undefined;
790
+ integrationType?: "meta" | "360dialog" | undefined;
768
791
  } | undefined;
769
792
  vonageCredentials?: {
770
793
  apiKey: string;
@@ -804,35 +827,38 @@ export declare const facebookFeedContract: {
804
827
  additionalCredentials: z.ZodOptional<z.ZodAny>;
805
828
  senderId: z.ZodOptional<z.ZodString>;
806
829
  whatsapp: z.ZodOptional<z.ZodObject<{
807
- wabaBusinessId: z.ZodOptional<z.ZodString>;
808
- wabaExternalId: z.ZodString;
809
- phoneNumberId: z.ZodString;
810
- email: z.ZodString;
811
- clientId: z.ZodOptional<z.ZodString>;
812
- channelId: z.ZodOptional<z.ZodString>;
830
+ wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
831
+ wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
832
+ phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
833
+ email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
834
+ clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
835
+ channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
813
836
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
814
837
  apiKey: z.ZodOptional<z.ZodString>;
815
838
  tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
839
+ integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
816
840
  }, "strip", z.ZodTypeAny, {
817
- email: string;
818
- wabaExternalId: string;
819
- phoneNumberId: string;
820
- wabaBusinessId?: string | undefined;
821
- clientId?: string | undefined;
822
- channelId?: string | undefined;
841
+ wabaBusinessId?: string | null | undefined;
842
+ wabaExternalId?: string | null | undefined;
843
+ phoneNumberId?: string | null | undefined;
844
+ email?: string | null | undefined;
845
+ clientId?: string | null | undefined;
846
+ channelId?: string | null | undefined;
823
847
  status?: "active" | "pending" | undefined;
824
848
  apiKey?: string | undefined;
825
849
  tier?: "basic" | "regular" | "premium" | undefined;
850
+ integrationType?: "meta" | "360dialog" | undefined;
826
851
  }, {
827
- email: string;
828
- wabaExternalId: string;
829
- phoneNumberId: string;
830
- wabaBusinessId?: string | undefined;
831
- clientId?: string | undefined;
832
- channelId?: string | undefined;
852
+ wabaBusinessId?: string | null | undefined;
853
+ wabaExternalId?: string | null | undefined;
854
+ phoneNumberId?: string | null | undefined;
855
+ email?: string | null | undefined;
856
+ clientId?: string | null | undefined;
857
+ channelId?: string | null | undefined;
833
858
  status?: "active" | "pending" | undefined;
834
859
  apiKey?: string | undefined;
835
860
  tier?: "basic" | "regular" | "premium" | undefined;
861
+ integrationType?: "meta" | "360dialog" | undefined;
836
862
  }>>;
837
863
  vonageCredentials: z.ZodOptional<z.ZodObject<{
838
864
  mobileNumber: z.ZodString;
@@ -857,15 +883,16 @@ export declare const facebookFeedContract: {
857
883
  additionalCredentials?: any;
858
884
  senderId?: string | undefined;
859
885
  whatsapp?: {
860
- email: string;
861
- wabaExternalId: string;
862
- phoneNumberId: string;
863
- wabaBusinessId?: string | undefined;
864
- clientId?: string | undefined;
865
- channelId?: string | undefined;
886
+ wabaBusinessId?: string | null | undefined;
887
+ wabaExternalId?: string | null | undefined;
888
+ phoneNumberId?: string | null | undefined;
889
+ email?: string | null | undefined;
890
+ clientId?: string | null | undefined;
891
+ channelId?: string | null | undefined;
866
892
  status?: "active" | "pending" | undefined;
867
893
  apiKey?: string | undefined;
868
894
  tier?: "basic" | "regular" | "premium" | undefined;
895
+ integrationType?: "meta" | "360dialog" | undefined;
869
896
  } | undefined;
870
897
  vonageCredentials?: {
871
898
  apiKey: string;
@@ -882,15 +909,16 @@ export declare const facebookFeedContract: {
882
909
  additionalCredentials?: any;
883
910
  senderId?: string | undefined;
884
911
  whatsapp?: {
885
- email: string;
886
- wabaExternalId: string;
887
- phoneNumberId: string;
888
- wabaBusinessId?: string | undefined;
889
- clientId?: string | undefined;
890
- channelId?: string | undefined;
912
+ wabaBusinessId?: string | null | undefined;
913
+ wabaExternalId?: string | null | undefined;
914
+ phoneNumberId?: string | null | undefined;
915
+ email?: string | null | undefined;
916
+ clientId?: string | null | undefined;
917
+ channelId?: string | null | undefined;
891
918
  status?: "active" | "pending" | undefined;
892
919
  apiKey?: string | undefined;
893
920
  tier?: "basic" | "regular" | "premium" | undefined;
921
+ integrationType?: "meta" | "360dialog" | undefined;
894
922
  } | undefined;
895
923
  vonageCredentials?: {
896
924
  apiKey: string;
@@ -937,15 +965,16 @@ export declare const facebookFeedContract: {
937
965
  additionalCredentials?: any;
938
966
  senderId?: string | undefined;
939
967
  whatsapp?: {
940
- email: string;
941
- wabaExternalId: string;
942
- phoneNumberId: string;
943
- wabaBusinessId?: string | undefined;
944
- clientId?: string | undefined;
945
- channelId?: string | undefined;
968
+ wabaBusinessId?: string | null | undefined;
969
+ wabaExternalId?: string | null | undefined;
970
+ phoneNumberId?: string | null | undefined;
971
+ email?: string | null | undefined;
972
+ clientId?: string | null | undefined;
973
+ channelId?: string | null | undefined;
946
974
  status?: "active" | "pending" | undefined;
947
975
  apiKey?: string | undefined;
948
976
  tier?: "basic" | "regular" | "premium" | undefined;
977
+ integrationType?: "meta" | "360dialog" | undefined;
949
978
  } | undefined;
950
979
  vonageCredentials?: {
951
980
  apiKey: string;
@@ -980,15 +1009,16 @@ export declare const facebookFeedContract: {
980
1009
  additionalCredentials?: any;
981
1010
  senderId?: string | undefined;
982
1011
  whatsapp?: {
983
- email: string;
984
- wabaExternalId: string;
985
- phoneNumberId: string;
986
- wabaBusinessId?: string | undefined;
987
- clientId?: string | undefined;
988
- channelId?: string | undefined;
1012
+ wabaBusinessId?: string | null | undefined;
1013
+ wabaExternalId?: string | null | undefined;
1014
+ phoneNumberId?: string | null | undefined;
1015
+ email?: string | null | undefined;
1016
+ clientId?: string | null | undefined;
1017
+ channelId?: string | null | undefined;
989
1018
  status?: "active" | "pending" | undefined;
990
1019
  apiKey?: string | undefined;
991
1020
  tier?: "basic" | "regular" | "premium" | undefined;
1021
+ integrationType?: "meta" | "360dialog" | undefined;
992
1022
  } | undefined;
993
1023
  vonageCredentials?: {
994
1024
  apiKey: string;
@@ -1025,15 +1055,16 @@ export declare const facebookFeedContract: {
1025
1055
  additionalCredentials?: any;
1026
1056
  senderId?: string | undefined;
1027
1057
  whatsapp?: {
1028
- email: string;
1029
- wabaExternalId: string;
1030
- phoneNumberId: string;
1031
- wabaBusinessId?: string | undefined;
1032
- clientId?: string | undefined;
1033
- channelId?: string | undefined;
1058
+ wabaBusinessId?: string | null | undefined;
1059
+ wabaExternalId?: string | null | undefined;
1060
+ phoneNumberId?: string | null | undefined;
1061
+ email?: string | null | undefined;
1062
+ clientId?: string | null | undefined;
1063
+ channelId?: string | null | undefined;
1034
1064
  status?: "active" | "pending" | undefined;
1035
1065
  apiKey?: string | undefined;
1036
1066
  tier?: "basic" | "regular" | "premium" | undefined;
1067
+ integrationType?: "meta" | "360dialog" | undefined;
1037
1068
  } | undefined;
1038
1069
  vonageCredentials?: {
1039
1070
  apiKey: string;
@@ -1071,15 +1102,16 @@ export declare const facebookFeedContract: {
1071
1102
  additionalCredentials?: any;
1072
1103
  senderId?: string | undefined;
1073
1104
  whatsapp?: {
1074
- email: string;
1075
- wabaExternalId: string;
1076
- phoneNumberId: string;
1077
- wabaBusinessId?: string | undefined;
1078
- clientId?: string | undefined;
1079
- channelId?: string | undefined;
1105
+ wabaBusinessId?: string | null | undefined;
1106
+ wabaExternalId?: string | null | undefined;
1107
+ phoneNumberId?: string | null | undefined;
1108
+ email?: string | null | undefined;
1109
+ clientId?: string | null | undefined;
1110
+ channelId?: string | null | undefined;
1080
1111
  status?: "active" | "pending" | undefined;
1081
1112
  apiKey?: string | undefined;
1082
1113
  tier?: "basic" | "regular" | "premium" | undefined;
1114
+ integrationType?: "meta" | "360dialog" | undefined;
1083
1115
  } | undefined;
1084
1116
  vonageCredentials?: {
1085
1117
  apiKey: string;
@@ -1153,35 +1185,38 @@ export declare const facebookFeedContract: {
1153
1185
  additionalCredentials: z.ZodOptional<z.ZodAny>;
1154
1186
  senderId: z.ZodOptional<z.ZodString>;
1155
1187
  whatsapp: z.ZodOptional<z.ZodObject<{
1156
- wabaBusinessId: z.ZodOptional<z.ZodString>;
1157
- wabaExternalId: z.ZodString;
1158
- phoneNumberId: z.ZodString;
1159
- email: z.ZodString;
1160
- clientId: z.ZodOptional<z.ZodString>;
1161
- channelId: z.ZodOptional<z.ZodString>;
1188
+ wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1189
+ wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1190
+ phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1191
+ email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1192
+ clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1193
+ channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1162
1194
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
1163
1195
  apiKey: z.ZodOptional<z.ZodString>;
1164
1196
  tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
1197
+ integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
1165
1198
  }, "strip", z.ZodTypeAny, {
1166
- email: string;
1167
- wabaExternalId: string;
1168
- phoneNumberId: string;
1169
- wabaBusinessId?: string | undefined;
1170
- clientId?: string | undefined;
1171
- channelId?: string | undefined;
1199
+ wabaBusinessId?: string | null | undefined;
1200
+ wabaExternalId?: string | null | undefined;
1201
+ phoneNumberId?: string | null | undefined;
1202
+ email?: string | null | undefined;
1203
+ clientId?: string | null | undefined;
1204
+ channelId?: string | null | undefined;
1172
1205
  status?: "active" | "pending" | undefined;
1173
1206
  apiKey?: string | undefined;
1174
1207
  tier?: "basic" | "regular" | "premium" | undefined;
1208
+ integrationType?: "meta" | "360dialog" | undefined;
1175
1209
  }, {
1176
- email: string;
1177
- wabaExternalId: string;
1178
- phoneNumberId: string;
1179
- wabaBusinessId?: string | undefined;
1180
- clientId?: string | undefined;
1181
- channelId?: string | undefined;
1210
+ wabaBusinessId?: string | null | undefined;
1211
+ wabaExternalId?: string | null | undefined;
1212
+ phoneNumberId?: string | null | undefined;
1213
+ email?: string | null | undefined;
1214
+ clientId?: string | null | undefined;
1215
+ channelId?: string | null | undefined;
1182
1216
  status?: "active" | "pending" | undefined;
1183
1217
  apiKey?: string | undefined;
1184
1218
  tier?: "basic" | "regular" | "premium" | undefined;
1219
+ integrationType?: "meta" | "360dialog" | undefined;
1185
1220
  }>>;
1186
1221
  vonageCredentials: z.ZodOptional<z.ZodObject<{
1187
1222
  mobileNumber: z.ZodString;
@@ -1206,15 +1241,16 @@ export declare const facebookFeedContract: {
1206
1241
  additionalCredentials?: any;
1207
1242
  senderId?: string | undefined;
1208
1243
  whatsapp?: {
1209
- email: string;
1210
- wabaExternalId: string;
1211
- phoneNumberId: string;
1212
- wabaBusinessId?: string | undefined;
1213
- clientId?: string | undefined;
1214
- channelId?: string | undefined;
1244
+ wabaBusinessId?: string | null | undefined;
1245
+ wabaExternalId?: string | null | undefined;
1246
+ phoneNumberId?: string | null | undefined;
1247
+ email?: string | null | undefined;
1248
+ clientId?: string | null | undefined;
1249
+ channelId?: string | null | undefined;
1215
1250
  status?: "active" | "pending" | undefined;
1216
1251
  apiKey?: string | undefined;
1217
1252
  tier?: "basic" | "regular" | "premium" | undefined;
1253
+ integrationType?: "meta" | "360dialog" | undefined;
1218
1254
  } | undefined;
1219
1255
  vonageCredentials?: {
1220
1256
  apiKey: string;
@@ -1231,15 +1267,16 @@ export declare const facebookFeedContract: {
1231
1267
  additionalCredentials?: any;
1232
1268
  senderId?: string | undefined;
1233
1269
  whatsapp?: {
1234
- email: string;
1235
- wabaExternalId: string;
1236
- phoneNumberId: string;
1237
- wabaBusinessId?: string | undefined;
1238
- clientId?: string | undefined;
1239
- channelId?: string | undefined;
1270
+ wabaBusinessId?: string | null | undefined;
1271
+ wabaExternalId?: string | null | undefined;
1272
+ phoneNumberId?: string | null | undefined;
1273
+ email?: string | null | undefined;
1274
+ clientId?: string | null | undefined;
1275
+ channelId?: string | null | undefined;
1240
1276
  status?: "active" | "pending" | undefined;
1241
1277
  apiKey?: string | undefined;
1242
1278
  tier?: "basic" | "regular" | "premium" | undefined;
1279
+ integrationType?: "meta" | "360dialog" | undefined;
1243
1280
  } | undefined;
1244
1281
  vonageCredentials?: {
1245
1282
  apiKey: string;
@@ -1286,15 +1323,16 @@ export declare const facebookFeedContract: {
1286
1323
  additionalCredentials?: any;
1287
1324
  senderId?: string | undefined;
1288
1325
  whatsapp?: {
1289
- email: string;
1290
- wabaExternalId: string;
1291
- phoneNumberId: string;
1292
- wabaBusinessId?: string | undefined;
1293
- clientId?: string | undefined;
1294
- channelId?: string | undefined;
1326
+ wabaBusinessId?: string | null | undefined;
1327
+ wabaExternalId?: string | null | undefined;
1328
+ phoneNumberId?: string | null | undefined;
1329
+ email?: string | null | undefined;
1330
+ clientId?: string | null | undefined;
1331
+ channelId?: string | null | undefined;
1295
1332
  status?: "active" | "pending" | undefined;
1296
1333
  apiKey?: string | undefined;
1297
1334
  tier?: "basic" | "regular" | "premium" | undefined;
1335
+ integrationType?: "meta" | "360dialog" | undefined;
1298
1336
  } | undefined;
1299
1337
  vonageCredentials?: {
1300
1338
  apiKey: string;
@@ -1329,15 +1367,16 @@ export declare const facebookFeedContract: {
1329
1367
  additionalCredentials?: any;
1330
1368
  senderId?: string | undefined;
1331
1369
  whatsapp?: {
1332
- email: string;
1333
- wabaExternalId: string;
1334
- phoneNumberId: string;
1335
- wabaBusinessId?: string | undefined;
1336
- clientId?: string | undefined;
1337
- channelId?: string | undefined;
1370
+ wabaBusinessId?: string | null | undefined;
1371
+ wabaExternalId?: string | null | undefined;
1372
+ phoneNumberId?: string | null | undefined;
1373
+ email?: string | null | undefined;
1374
+ clientId?: string | null | undefined;
1375
+ channelId?: string | null | undefined;
1338
1376
  status?: "active" | "pending" | undefined;
1339
1377
  apiKey?: string | undefined;
1340
1378
  tier?: "basic" | "regular" | "premium" | undefined;
1379
+ integrationType?: "meta" | "360dialog" | undefined;
1341
1380
  } | undefined;
1342
1381
  vonageCredentials?: {
1343
1382
  apiKey: string;
@@ -1374,15 +1413,16 @@ export declare const facebookFeedContract: {
1374
1413
  additionalCredentials?: any;
1375
1414
  senderId?: string | undefined;
1376
1415
  whatsapp?: {
1377
- email: string;
1378
- wabaExternalId: string;
1379
- phoneNumberId: string;
1380
- wabaBusinessId?: string | undefined;
1381
- clientId?: string | undefined;
1382
- channelId?: string | undefined;
1416
+ wabaBusinessId?: string | null | undefined;
1417
+ wabaExternalId?: string | null | undefined;
1418
+ phoneNumberId?: string | null | undefined;
1419
+ email?: string | null | undefined;
1420
+ clientId?: string | null | undefined;
1421
+ channelId?: string | null | undefined;
1383
1422
  status?: "active" | "pending" | undefined;
1384
1423
  apiKey?: string | undefined;
1385
1424
  tier?: "basic" | "regular" | "premium" | undefined;
1425
+ integrationType?: "meta" | "360dialog" | undefined;
1386
1426
  } | undefined;
1387
1427
  vonageCredentials?: {
1388
1428
  apiKey: string;
@@ -1420,15 +1460,16 @@ export declare const facebookFeedContract: {
1420
1460
  additionalCredentials?: any;
1421
1461
  senderId?: string | undefined;
1422
1462
  whatsapp?: {
1423
- email: string;
1424
- wabaExternalId: string;
1425
- phoneNumberId: string;
1426
- wabaBusinessId?: string | undefined;
1427
- clientId?: string | undefined;
1428
- channelId?: string | undefined;
1463
+ wabaBusinessId?: string | null | undefined;
1464
+ wabaExternalId?: string | null | undefined;
1465
+ phoneNumberId?: string | null | undefined;
1466
+ email?: string | null | undefined;
1467
+ clientId?: string | null | undefined;
1468
+ channelId?: string | null | undefined;
1429
1469
  status?: "active" | "pending" | undefined;
1430
1470
  apiKey?: string | undefined;
1431
1471
  tier?: "basic" | "regular" | "premium" | undefined;
1472
+ integrationType?: "meta" | "360dialog" | undefined;
1432
1473
  } | undefined;
1433
1474
  vonageCredentials?: {
1434
1475
  apiKey: string;
@@ -1502,35 +1543,38 @@ export declare const facebookFeedContract: {
1502
1543
  additionalCredentials: z.ZodOptional<z.ZodAny>;
1503
1544
  senderId: z.ZodOptional<z.ZodString>;
1504
1545
  whatsapp: z.ZodOptional<z.ZodObject<{
1505
- wabaBusinessId: z.ZodOptional<z.ZodString>;
1506
- wabaExternalId: z.ZodString;
1507
- phoneNumberId: z.ZodString;
1508
- email: z.ZodString;
1509
- clientId: z.ZodOptional<z.ZodString>;
1510
- channelId: z.ZodOptional<z.ZodString>;
1546
+ wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1547
+ wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1548
+ phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1549
+ email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1550
+ clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1551
+ channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1511
1552
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
1512
1553
  apiKey: z.ZodOptional<z.ZodString>;
1513
1554
  tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
1555
+ integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
1514
1556
  }, "strip", z.ZodTypeAny, {
1515
- email: string;
1516
- wabaExternalId: string;
1517
- phoneNumberId: string;
1518
- wabaBusinessId?: string | undefined;
1519
- clientId?: string | undefined;
1520
- channelId?: string | undefined;
1557
+ wabaBusinessId?: string | null | undefined;
1558
+ wabaExternalId?: string | null | undefined;
1559
+ phoneNumberId?: string | null | undefined;
1560
+ email?: string | null | undefined;
1561
+ clientId?: string | null | undefined;
1562
+ channelId?: string | null | undefined;
1521
1563
  status?: "active" | "pending" | undefined;
1522
1564
  apiKey?: string | undefined;
1523
1565
  tier?: "basic" | "regular" | "premium" | undefined;
1566
+ integrationType?: "meta" | "360dialog" | undefined;
1524
1567
  }, {
1525
- email: string;
1526
- wabaExternalId: string;
1527
- phoneNumberId: string;
1528
- wabaBusinessId?: string | undefined;
1529
- clientId?: string | undefined;
1530
- channelId?: string | undefined;
1568
+ wabaBusinessId?: string | null | undefined;
1569
+ wabaExternalId?: string | null | undefined;
1570
+ phoneNumberId?: string | null | undefined;
1571
+ email?: string | null | undefined;
1572
+ clientId?: string | null | undefined;
1573
+ channelId?: string | null | undefined;
1531
1574
  status?: "active" | "pending" | undefined;
1532
1575
  apiKey?: string | undefined;
1533
1576
  tier?: "basic" | "regular" | "premium" | undefined;
1577
+ integrationType?: "meta" | "360dialog" | undefined;
1534
1578
  }>>;
1535
1579
  vonageCredentials: z.ZodOptional<z.ZodObject<{
1536
1580
  mobileNumber: z.ZodString;
@@ -1555,15 +1599,16 @@ export declare const facebookFeedContract: {
1555
1599
  additionalCredentials?: any;
1556
1600
  senderId?: string | undefined;
1557
1601
  whatsapp?: {
1558
- email: string;
1559
- wabaExternalId: string;
1560
- phoneNumberId: string;
1561
- wabaBusinessId?: string | undefined;
1562
- clientId?: string | undefined;
1563
- channelId?: string | undefined;
1602
+ wabaBusinessId?: string | null | undefined;
1603
+ wabaExternalId?: string | null | undefined;
1604
+ phoneNumberId?: string | null | undefined;
1605
+ email?: string | null | undefined;
1606
+ clientId?: string | null | undefined;
1607
+ channelId?: string | null | undefined;
1564
1608
  status?: "active" | "pending" | undefined;
1565
1609
  apiKey?: string | undefined;
1566
1610
  tier?: "basic" | "regular" | "premium" | undefined;
1611
+ integrationType?: "meta" | "360dialog" | undefined;
1567
1612
  } | undefined;
1568
1613
  vonageCredentials?: {
1569
1614
  apiKey: string;
@@ -1580,15 +1625,16 @@ export declare const facebookFeedContract: {
1580
1625
  additionalCredentials?: any;
1581
1626
  senderId?: string | undefined;
1582
1627
  whatsapp?: {
1583
- email: string;
1584
- wabaExternalId: string;
1585
- phoneNumberId: string;
1586
- wabaBusinessId?: string | undefined;
1587
- clientId?: string | undefined;
1588
- channelId?: string | undefined;
1628
+ wabaBusinessId?: string | null | undefined;
1629
+ wabaExternalId?: string | null | undefined;
1630
+ phoneNumberId?: string | null | undefined;
1631
+ email?: string | null | undefined;
1632
+ clientId?: string | null | undefined;
1633
+ channelId?: string | null | undefined;
1589
1634
  status?: "active" | "pending" | undefined;
1590
1635
  apiKey?: string | undefined;
1591
1636
  tier?: "basic" | "regular" | "premium" | undefined;
1637
+ integrationType?: "meta" | "360dialog" | undefined;
1592
1638
  } | undefined;
1593
1639
  vonageCredentials?: {
1594
1640
  apiKey: string;
@@ -1635,15 +1681,16 @@ export declare const facebookFeedContract: {
1635
1681
  additionalCredentials?: any;
1636
1682
  senderId?: string | undefined;
1637
1683
  whatsapp?: {
1638
- email: string;
1639
- wabaExternalId: string;
1640
- phoneNumberId: string;
1641
- wabaBusinessId?: string | undefined;
1642
- clientId?: string | undefined;
1643
- channelId?: string | undefined;
1684
+ wabaBusinessId?: string | null | undefined;
1685
+ wabaExternalId?: string | null | undefined;
1686
+ phoneNumberId?: string | null | undefined;
1687
+ email?: string | null | undefined;
1688
+ clientId?: string | null | undefined;
1689
+ channelId?: string | null | undefined;
1644
1690
  status?: "active" | "pending" | undefined;
1645
1691
  apiKey?: string | undefined;
1646
1692
  tier?: "basic" | "regular" | "premium" | undefined;
1693
+ integrationType?: "meta" | "360dialog" | undefined;
1647
1694
  } | undefined;
1648
1695
  vonageCredentials?: {
1649
1696
  apiKey: string;
@@ -1678,15 +1725,16 @@ export declare const facebookFeedContract: {
1678
1725
  additionalCredentials?: any;
1679
1726
  senderId?: string | undefined;
1680
1727
  whatsapp?: {
1681
- email: string;
1682
- wabaExternalId: string;
1683
- phoneNumberId: string;
1684
- wabaBusinessId?: string | undefined;
1685
- clientId?: string | undefined;
1686
- channelId?: string | undefined;
1728
+ wabaBusinessId?: string | null | undefined;
1729
+ wabaExternalId?: string | null | undefined;
1730
+ phoneNumberId?: string | null | undefined;
1731
+ email?: string | null | undefined;
1732
+ clientId?: string | null | undefined;
1733
+ channelId?: string | null | undefined;
1687
1734
  status?: "active" | "pending" | undefined;
1688
1735
  apiKey?: string | undefined;
1689
1736
  tier?: "basic" | "regular" | "premium" | undefined;
1737
+ integrationType?: "meta" | "360dialog" | undefined;
1690
1738
  } | undefined;
1691
1739
  vonageCredentials?: {
1692
1740
  apiKey: string;
@@ -1723,15 +1771,16 @@ export declare const facebookFeedContract: {
1723
1771
  additionalCredentials?: any;
1724
1772
  senderId?: string | undefined;
1725
1773
  whatsapp?: {
1726
- email: string;
1727
- wabaExternalId: string;
1728
- phoneNumberId: string;
1729
- wabaBusinessId?: string | undefined;
1730
- clientId?: string | undefined;
1731
- channelId?: string | undefined;
1774
+ wabaBusinessId?: string | null | undefined;
1775
+ wabaExternalId?: string | null | undefined;
1776
+ phoneNumberId?: string | null | undefined;
1777
+ email?: string | null | undefined;
1778
+ clientId?: string | null | undefined;
1779
+ channelId?: string | null | undefined;
1732
1780
  status?: "active" | "pending" | undefined;
1733
1781
  apiKey?: string | undefined;
1734
1782
  tier?: "basic" | "regular" | "premium" | undefined;
1783
+ integrationType?: "meta" | "360dialog" | undefined;
1735
1784
  } | undefined;
1736
1785
  vonageCredentials?: {
1737
1786
  apiKey: string;
@@ -1769,15 +1818,16 @@ export declare const facebookFeedContract: {
1769
1818
  additionalCredentials?: any;
1770
1819
  senderId?: string | undefined;
1771
1820
  whatsapp?: {
1772
- email: string;
1773
- wabaExternalId: string;
1774
- phoneNumberId: string;
1775
- wabaBusinessId?: string | undefined;
1776
- clientId?: string | undefined;
1777
- channelId?: string | undefined;
1821
+ wabaBusinessId?: string | null | undefined;
1822
+ wabaExternalId?: string | null | undefined;
1823
+ phoneNumberId?: string | null | undefined;
1824
+ email?: string | null | undefined;
1825
+ clientId?: string | null | undefined;
1826
+ channelId?: string | null | undefined;
1778
1827
  status?: "active" | "pending" | undefined;
1779
1828
  apiKey?: string | undefined;
1780
1829
  tier?: "basic" | "regular" | "premium" | undefined;
1830
+ integrationType?: "meta" | "360dialog" | undefined;
1781
1831
  } | undefined;
1782
1832
  vonageCredentials?: {
1783
1833
  apiKey: string;
@@ -1838,35 +1888,38 @@ export declare const facebookFeedContract: {
1838
1888
  additionalCredentials: z.ZodOptional<z.ZodAny>;
1839
1889
  senderId: z.ZodOptional<z.ZodString>;
1840
1890
  whatsapp: z.ZodOptional<z.ZodObject<{
1841
- wabaBusinessId: z.ZodOptional<z.ZodString>;
1842
- wabaExternalId: z.ZodString;
1843
- phoneNumberId: z.ZodString;
1844
- email: z.ZodString;
1845
- clientId: z.ZodOptional<z.ZodString>;
1846
- channelId: z.ZodOptional<z.ZodString>;
1891
+ wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1892
+ wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1893
+ phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1894
+ email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1895
+ clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1896
+ channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1847
1897
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
1848
1898
  apiKey: z.ZodOptional<z.ZodString>;
1849
1899
  tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
1900
+ integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
1850
1901
  }, "strip", z.ZodTypeAny, {
1851
- email: string;
1852
- wabaExternalId: string;
1853
- phoneNumberId: string;
1854
- wabaBusinessId?: string | undefined;
1855
- clientId?: string | undefined;
1856
- channelId?: string | undefined;
1902
+ wabaBusinessId?: string | null | undefined;
1903
+ wabaExternalId?: string | null | undefined;
1904
+ phoneNumberId?: string | null | undefined;
1905
+ email?: string | null | undefined;
1906
+ clientId?: string | null | undefined;
1907
+ channelId?: string | null | undefined;
1857
1908
  status?: "active" | "pending" | undefined;
1858
1909
  apiKey?: string | undefined;
1859
1910
  tier?: "basic" | "regular" | "premium" | undefined;
1911
+ integrationType?: "meta" | "360dialog" | undefined;
1860
1912
  }, {
1861
- email: string;
1862
- wabaExternalId: string;
1863
- phoneNumberId: string;
1864
- wabaBusinessId?: string | undefined;
1865
- clientId?: string | undefined;
1866
- channelId?: string | undefined;
1913
+ wabaBusinessId?: string | null | undefined;
1914
+ wabaExternalId?: string | null | undefined;
1915
+ phoneNumberId?: string | null | undefined;
1916
+ email?: string | null | undefined;
1917
+ clientId?: string | null | undefined;
1918
+ channelId?: string | null | undefined;
1867
1919
  status?: "active" | "pending" | undefined;
1868
1920
  apiKey?: string | undefined;
1869
1921
  tier?: "basic" | "regular" | "premium" | undefined;
1922
+ integrationType?: "meta" | "360dialog" | undefined;
1870
1923
  }>>;
1871
1924
  vonageCredentials: z.ZodOptional<z.ZodObject<{
1872
1925
  mobileNumber: z.ZodString;
@@ -1891,15 +1944,16 @@ export declare const facebookFeedContract: {
1891
1944
  additionalCredentials?: any;
1892
1945
  senderId?: string | undefined;
1893
1946
  whatsapp?: {
1894
- email: string;
1895
- wabaExternalId: string;
1896
- phoneNumberId: string;
1897
- wabaBusinessId?: string | undefined;
1898
- clientId?: string | undefined;
1899
- channelId?: string | undefined;
1947
+ wabaBusinessId?: string | null | undefined;
1948
+ wabaExternalId?: string | null | undefined;
1949
+ phoneNumberId?: string | null | undefined;
1950
+ email?: string | null | undefined;
1951
+ clientId?: string | null | undefined;
1952
+ channelId?: string | null | undefined;
1900
1953
  status?: "active" | "pending" | undefined;
1901
1954
  apiKey?: string | undefined;
1902
1955
  tier?: "basic" | "regular" | "premium" | undefined;
1956
+ integrationType?: "meta" | "360dialog" | undefined;
1903
1957
  } | undefined;
1904
1958
  vonageCredentials?: {
1905
1959
  apiKey: string;
@@ -1916,15 +1970,16 @@ export declare const facebookFeedContract: {
1916
1970
  additionalCredentials?: any;
1917
1971
  senderId?: string | undefined;
1918
1972
  whatsapp?: {
1919
- email: string;
1920
- wabaExternalId: string;
1921
- phoneNumberId: string;
1922
- wabaBusinessId?: string | undefined;
1923
- clientId?: string | undefined;
1924
- channelId?: string | undefined;
1973
+ wabaBusinessId?: string | null | undefined;
1974
+ wabaExternalId?: string | null | undefined;
1975
+ phoneNumberId?: string | null | undefined;
1976
+ email?: string | null | undefined;
1977
+ clientId?: string | null | undefined;
1978
+ channelId?: string | null | undefined;
1925
1979
  status?: "active" | "pending" | undefined;
1926
1980
  apiKey?: string | undefined;
1927
1981
  tier?: "basic" | "regular" | "premium" | undefined;
1982
+ integrationType?: "meta" | "360dialog" | undefined;
1928
1983
  } | undefined;
1929
1984
  vonageCredentials?: {
1930
1985
  apiKey: string;
@@ -1976,15 +2031,16 @@ export declare const facebookFeedContract: {
1976
2031
  additionalCredentials?: any;
1977
2032
  senderId?: string | undefined;
1978
2033
  whatsapp?: {
1979
- email: string;
1980
- wabaExternalId: string;
1981
- phoneNumberId: string;
1982
- wabaBusinessId?: string | undefined;
1983
- clientId?: string | undefined;
1984
- channelId?: string | undefined;
2034
+ wabaBusinessId?: string | null | undefined;
2035
+ wabaExternalId?: string | null | undefined;
2036
+ phoneNumberId?: string | null | undefined;
2037
+ email?: string | null | undefined;
2038
+ clientId?: string | null | undefined;
2039
+ channelId?: string | null | undefined;
1985
2040
  status?: "active" | "pending" | undefined;
1986
2041
  apiKey?: string | undefined;
1987
2042
  tier?: "basic" | "regular" | "premium" | undefined;
2043
+ integrationType?: "meta" | "360dialog" | undefined;
1988
2044
  } | undefined;
1989
2045
  vonageCredentials?: {
1990
2046
  apiKey: string;
@@ -2023,15 +2079,16 @@ export declare const facebookFeedContract: {
2023
2079
  additionalCredentials?: any;
2024
2080
  senderId?: string | undefined;
2025
2081
  whatsapp?: {
2026
- email: string;
2027
- wabaExternalId: string;
2028
- phoneNumberId: string;
2029
- wabaBusinessId?: string | undefined;
2030
- clientId?: string | undefined;
2031
- channelId?: string | undefined;
2082
+ wabaBusinessId?: string | null | undefined;
2083
+ wabaExternalId?: string | null | undefined;
2084
+ phoneNumberId?: string | null | undefined;
2085
+ email?: string | null | undefined;
2086
+ clientId?: string | null | undefined;
2087
+ channelId?: string | null | undefined;
2032
2088
  status?: "active" | "pending" | undefined;
2033
2089
  apiKey?: string | undefined;
2034
2090
  tier?: "basic" | "regular" | "premium" | undefined;
2091
+ integrationType?: "meta" | "360dialog" | undefined;
2035
2092
  } | undefined;
2036
2093
  vonageCredentials?: {
2037
2094
  apiKey: string;
@@ -2075,35 +2132,38 @@ export declare const facebookFeedContract: {
2075
2132
  additionalCredentials: z.ZodOptional<z.ZodAny>;
2076
2133
  senderId: z.ZodOptional<z.ZodString>;
2077
2134
  whatsapp: z.ZodOptional<z.ZodObject<{
2078
- wabaBusinessId: z.ZodOptional<z.ZodString>;
2079
- wabaExternalId: z.ZodString;
2080
- phoneNumberId: z.ZodString;
2081
- email: z.ZodString;
2082
- clientId: z.ZodOptional<z.ZodString>;
2083
- channelId: z.ZodOptional<z.ZodString>;
2135
+ wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2136
+ wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2137
+ phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2138
+ email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2139
+ clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2140
+ channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2084
2141
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
2085
2142
  apiKey: z.ZodOptional<z.ZodString>;
2086
2143
  tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
2144
+ integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
2087
2145
  }, "strip", z.ZodTypeAny, {
2088
- email: string;
2089
- wabaExternalId: string;
2090
- phoneNumberId: string;
2091
- wabaBusinessId?: string | undefined;
2092
- clientId?: string | undefined;
2093
- channelId?: string | undefined;
2146
+ wabaBusinessId?: string | null | undefined;
2147
+ wabaExternalId?: string | null | undefined;
2148
+ phoneNumberId?: string | null | undefined;
2149
+ email?: string | null | undefined;
2150
+ clientId?: string | null | undefined;
2151
+ channelId?: string | null | undefined;
2094
2152
  status?: "active" | "pending" | undefined;
2095
2153
  apiKey?: string | undefined;
2096
2154
  tier?: "basic" | "regular" | "premium" | undefined;
2155
+ integrationType?: "meta" | "360dialog" | undefined;
2097
2156
  }, {
2098
- email: string;
2099
- wabaExternalId: string;
2100
- phoneNumberId: string;
2101
- wabaBusinessId?: string | undefined;
2102
- clientId?: string | undefined;
2103
- channelId?: string | undefined;
2157
+ wabaBusinessId?: string | null | undefined;
2158
+ wabaExternalId?: string | null | undefined;
2159
+ phoneNumberId?: string | null | undefined;
2160
+ email?: string | null | undefined;
2161
+ clientId?: string | null | undefined;
2162
+ channelId?: string | null | undefined;
2104
2163
  status?: "active" | "pending" | undefined;
2105
2164
  apiKey?: string | undefined;
2106
2165
  tier?: "basic" | "regular" | "premium" | undefined;
2166
+ integrationType?: "meta" | "360dialog" | undefined;
2107
2167
  }>>;
2108
2168
  vonageCredentials: z.ZodOptional<z.ZodObject<{
2109
2169
  mobileNumber: z.ZodString;
@@ -2128,15 +2188,16 @@ export declare const facebookFeedContract: {
2128
2188
  additionalCredentials?: any;
2129
2189
  senderId?: string | undefined;
2130
2190
  whatsapp?: {
2131
- email: string;
2132
- wabaExternalId: string;
2133
- phoneNumberId: string;
2134
- wabaBusinessId?: string | undefined;
2135
- clientId?: string | undefined;
2136
- channelId?: string | undefined;
2191
+ wabaBusinessId?: string | null | undefined;
2192
+ wabaExternalId?: string | null | undefined;
2193
+ phoneNumberId?: string | null | undefined;
2194
+ email?: string | null | undefined;
2195
+ clientId?: string | null | undefined;
2196
+ channelId?: string | null | undefined;
2137
2197
  status?: "active" | "pending" | undefined;
2138
2198
  apiKey?: string | undefined;
2139
2199
  tier?: "basic" | "regular" | "premium" | undefined;
2200
+ integrationType?: "meta" | "360dialog" | undefined;
2140
2201
  } | undefined;
2141
2202
  vonageCredentials?: {
2142
2203
  apiKey: string;
@@ -2153,15 +2214,16 @@ export declare const facebookFeedContract: {
2153
2214
  additionalCredentials?: any;
2154
2215
  senderId?: string | undefined;
2155
2216
  whatsapp?: {
2156
- email: string;
2157
- wabaExternalId: string;
2158
- phoneNumberId: string;
2159
- wabaBusinessId?: string | undefined;
2160
- clientId?: string | undefined;
2161
- channelId?: string | undefined;
2217
+ wabaBusinessId?: string | null | undefined;
2218
+ wabaExternalId?: string | null | undefined;
2219
+ phoneNumberId?: string | null | undefined;
2220
+ email?: string | null | undefined;
2221
+ clientId?: string | null | undefined;
2222
+ channelId?: string | null | undefined;
2162
2223
  status?: "active" | "pending" | undefined;
2163
2224
  apiKey?: string | undefined;
2164
2225
  tier?: "basic" | "regular" | "premium" | undefined;
2226
+ integrationType?: "meta" | "360dialog" | undefined;
2165
2227
  } | undefined;
2166
2228
  vonageCredentials?: {
2167
2229
  apiKey: string;
@@ -2208,15 +2270,16 @@ export declare const facebookFeedContract: {
2208
2270
  additionalCredentials?: any;
2209
2271
  senderId?: string | undefined;
2210
2272
  whatsapp?: {
2211
- email: string;
2212
- wabaExternalId: string;
2213
- phoneNumberId: string;
2214
- wabaBusinessId?: string | undefined;
2215
- clientId?: string | undefined;
2216
- channelId?: string | undefined;
2273
+ wabaBusinessId?: string | null | undefined;
2274
+ wabaExternalId?: string | null | undefined;
2275
+ phoneNumberId?: string | null | undefined;
2276
+ email?: string | null | undefined;
2277
+ clientId?: string | null | undefined;
2278
+ channelId?: string | null | undefined;
2217
2279
  status?: "active" | "pending" | undefined;
2218
2280
  apiKey?: string | undefined;
2219
2281
  tier?: "basic" | "regular" | "premium" | undefined;
2282
+ integrationType?: "meta" | "360dialog" | undefined;
2220
2283
  } | undefined;
2221
2284
  vonageCredentials?: {
2222
2285
  apiKey: string;
@@ -2251,15 +2314,16 @@ export declare const facebookFeedContract: {
2251
2314
  additionalCredentials?: any;
2252
2315
  senderId?: string | undefined;
2253
2316
  whatsapp?: {
2254
- email: string;
2255
- wabaExternalId: string;
2256
- phoneNumberId: string;
2257
- wabaBusinessId?: string | undefined;
2258
- clientId?: string | undefined;
2259
- channelId?: string | undefined;
2317
+ wabaBusinessId?: string | null | undefined;
2318
+ wabaExternalId?: string | null | undefined;
2319
+ phoneNumberId?: string | null | undefined;
2320
+ email?: string | null | undefined;
2321
+ clientId?: string | null | undefined;
2322
+ channelId?: string | null | undefined;
2260
2323
  status?: "active" | "pending" | undefined;
2261
2324
  apiKey?: string | undefined;
2262
2325
  tier?: "basic" | "regular" | "premium" | undefined;
2326
+ integrationType?: "meta" | "360dialog" | undefined;
2263
2327
  } | undefined;
2264
2328
  vonageCredentials?: {
2265
2329
  apiKey: string;
@@ -2296,15 +2360,16 @@ export declare const facebookFeedContract: {
2296
2360
  additionalCredentials?: any;
2297
2361
  senderId?: string | undefined;
2298
2362
  whatsapp?: {
2299
- email: string;
2300
- wabaExternalId: string;
2301
- phoneNumberId: string;
2302
- wabaBusinessId?: string | undefined;
2303
- clientId?: string | undefined;
2304
- channelId?: string | undefined;
2363
+ wabaBusinessId?: string | null | undefined;
2364
+ wabaExternalId?: string | null | undefined;
2365
+ phoneNumberId?: string | null | undefined;
2366
+ email?: string | null | undefined;
2367
+ clientId?: string | null | undefined;
2368
+ channelId?: string | null | undefined;
2305
2369
  status?: "active" | "pending" | undefined;
2306
2370
  apiKey?: string | undefined;
2307
2371
  tier?: "basic" | "regular" | "premium" | undefined;
2372
+ integrationType?: "meta" | "360dialog" | undefined;
2308
2373
  } | undefined;
2309
2374
  vonageCredentials?: {
2310
2375
  apiKey: string;
@@ -2342,15 +2407,16 @@ export declare const facebookFeedContract: {
2342
2407
  additionalCredentials?: any;
2343
2408
  senderId?: string | undefined;
2344
2409
  whatsapp?: {
2345
- email: string;
2346
- wabaExternalId: string;
2347
- phoneNumberId: string;
2348
- wabaBusinessId?: string | undefined;
2349
- clientId?: string | undefined;
2350
- channelId?: string | undefined;
2410
+ wabaBusinessId?: string | null | undefined;
2411
+ wabaExternalId?: string | null | undefined;
2412
+ phoneNumberId?: string | null | undefined;
2413
+ email?: string | null | undefined;
2414
+ clientId?: string | null | undefined;
2415
+ channelId?: string | null | undefined;
2351
2416
  status?: "active" | "pending" | undefined;
2352
2417
  apiKey?: string | undefined;
2353
2418
  tier?: "basic" | "regular" | "premium" | undefined;
2419
+ integrationType?: "meta" | "360dialog" | undefined;
2354
2420
  } | undefined;
2355
2421
  vonageCredentials?: {
2356
2422
  apiKey: string;
@@ -2424,35 +2490,38 @@ export declare const facebookFeedContract: {
2424
2490
  additionalCredentials: z.ZodOptional<z.ZodAny>;
2425
2491
  senderId: z.ZodOptional<z.ZodString>;
2426
2492
  whatsapp: z.ZodOptional<z.ZodObject<{
2427
- wabaBusinessId: z.ZodOptional<z.ZodString>;
2428
- wabaExternalId: z.ZodString;
2429
- phoneNumberId: z.ZodString;
2430
- email: z.ZodString;
2431
- clientId: z.ZodOptional<z.ZodString>;
2432
- channelId: z.ZodOptional<z.ZodString>;
2493
+ wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2494
+ wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2495
+ phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2496
+ email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2497
+ clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2498
+ channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2433
2499
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
2434
2500
  apiKey: z.ZodOptional<z.ZodString>;
2435
2501
  tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
2502
+ integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
2436
2503
  }, "strip", z.ZodTypeAny, {
2437
- email: string;
2438
- wabaExternalId: string;
2439
- phoneNumberId: string;
2440
- wabaBusinessId?: string | undefined;
2441
- clientId?: string | undefined;
2442
- channelId?: string | undefined;
2504
+ wabaBusinessId?: string | null | undefined;
2505
+ wabaExternalId?: string | null | undefined;
2506
+ phoneNumberId?: string | null | undefined;
2507
+ email?: string | null | undefined;
2508
+ clientId?: string | null | undefined;
2509
+ channelId?: string | null | undefined;
2443
2510
  status?: "active" | "pending" | undefined;
2444
2511
  apiKey?: string | undefined;
2445
2512
  tier?: "basic" | "regular" | "premium" | undefined;
2513
+ integrationType?: "meta" | "360dialog" | undefined;
2446
2514
  }, {
2447
- email: string;
2448
- wabaExternalId: string;
2449
- phoneNumberId: string;
2450
- wabaBusinessId?: string | undefined;
2451
- clientId?: string | undefined;
2452
- channelId?: string | undefined;
2515
+ wabaBusinessId?: string | null | undefined;
2516
+ wabaExternalId?: string | null | undefined;
2517
+ phoneNumberId?: string | null | undefined;
2518
+ email?: string | null | undefined;
2519
+ clientId?: string | null | undefined;
2520
+ channelId?: string | null | undefined;
2453
2521
  status?: "active" | "pending" | undefined;
2454
2522
  apiKey?: string | undefined;
2455
2523
  tier?: "basic" | "regular" | "premium" | undefined;
2524
+ integrationType?: "meta" | "360dialog" | undefined;
2456
2525
  }>>;
2457
2526
  vonageCredentials: z.ZodOptional<z.ZodObject<{
2458
2527
  mobileNumber: z.ZodString;
@@ -2477,15 +2546,16 @@ export declare const facebookFeedContract: {
2477
2546
  additionalCredentials?: any;
2478
2547
  senderId?: string | undefined;
2479
2548
  whatsapp?: {
2480
- email: string;
2481
- wabaExternalId: string;
2482
- phoneNumberId: string;
2483
- wabaBusinessId?: string | undefined;
2484
- clientId?: string | undefined;
2485
- channelId?: string | undefined;
2549
+ wabaBusinessId?: string | null | undefined;
2550
+ wabaExternalId?: string | null | undefined;
2551
+ phoneNumberId?: string | null | undefined;
2552
+ email?: string | null | undefined;
2553
+ clientId?: string | null | undefined;
2554
+ channelId?: string | null | undefined;
2486
2555
  status?: "active" | "pending" | undefined;
2487
2556
  apiKey?: string | undefined;
2488
2557
  tier?: "basic" | "regular" | "premium" | undefined;
2558
+ integrationType?: "meta" | "360dialog" | undefined;
2489
2559
  } | undefined;
2490
2560
  vonageCredentials?: {
2491
2561
  apiKey: string;
@@ -2502,15 +2572,16 @@ export declare const facebookFeedContract: {
2502
2572
  additionalCredentials?: any;
2503
2573
  senderId?: string | undefined;
2504
2574
  whatsapp?: {
2505
- email: string;
2506
- wabaExternalId: string;
2507
- phoneNumberId: string;
2508
- wabaBusinessId?: string | undefined;
2509
- clientId?: string | undefined;
2510
- channelId?: string | undefined;
2575
+ wabaBusinessId?: string | null | undefined;
2576
+ wabaExternalId?: string | null | undefined;
2577
+ phoneNumberId?: string | null | undefined;
2578
+ email?: string | null | undefined;
2579
+ clientId?: string | null | undefined;
2580
+ channelId?: string | null | undefined;
2511
2581
  status?: "active" | "pending" | undefined;
2512
2582
  apiKey?: string | undefined;
2513
2583
  tier?: "basic" | "regular" | "premium" | undefined;
2584
+ integrationType?: "meta" | "360dialog" | undefined;
2514
2585
  } | undefined;
2515
2586
  vonageCredentials?: {
2516
2587
  apiKey: string;
@@ -3881,15 +3952,16 @@ export declare const facebookFeedContract: {
3881
3952
  additionalCredentials?: any;
3882
3953
  senderId?: string | undefined;
3883
3954
  whatsapp?: {
3884
- email: string;
3885
- wabaExternalId: string;
3886
- phoneNumberId: string;
3887
- wabaBusinessId?: string | undefined;
3888
- clientId?: string | undefined;
3889
- channelId?: string | undefined;
3955
+ wabaBusinessId?: string | null | undefined;
3956
+ wabaExternalId?: string | null | undefined;
3957
+ phoneNumberId?: string | null | undefined;
3958
+ email?: string | null | undefined;
3959
+ clientId?: string | null | undefined;
3960
+ channelId?: string | null | undefined;
3890
3961
  status?: "active" | "pending" | undefined;
3891
3962
  apiKey?: string | undefined;
3892
3963
  tier?: "basic" | "regular" | "premium" | undefined;
3964
+ integrationType?: "meta" | "360dialog" | undefined;
3893
3965
  } | undefined;
3894
3966
  vonageCredentials?: {
3895
3967
  apiKey: string;
@@ -4115,15 +4187,16 @@ export declare const facebookFeedContract: {
4115
4187
  additionalCredentials?: any;
4116
4188
  senderId?: string | undefined;
4117
4189
  whatsapp?: {
4118
- email: string;
4119
- wabaExternalId: string;
4120
- phoneNumberId: string;
4121
- wabaBusinessId?: string | undefined;
4122
- clientId?: string | undefined;
4123
- channelId?: string | undefined;
4190
+ wabaBusinessId?: string | null | undefined;
4191
+ wabaExternalId?: string | null | undefined;
4192
+ phoneNumberId?: string | null | undefined;
4193
+ email?: string | null | undefined;
4194
+ clientId?: string | null | undefined;
4195
+ channelId?: string | null | undefined;
4124
4196
  status?: "active" | "pending" | undefined;
4125
4197
  apiKey?: string | undefined;
4126
4198
  tier?: "basic" | "regular" | "premium" | undefined;
4199
+ integrationType?: "meta" | "360dialog" | undefined;
4127
4200
  } | undefined;
4128
4201
  vonageCredentials?: {
4129
4202
  apiKey: string;
@@ -4607,35 +4680,38 @@ export declare const facebookFeedContract: {
4607
4680
  additionalCredentials: z.ZodOptional<z.ZodAny>;
4608
4681
  senderId: z.ZodOptional<z.ZodString>;
4609
4682
  whatsapp: z.ZodOptional<z.ZodObject<{
4610
- wabaBusinessId: z.ZodOptional<z.ZodString>;
4611
- wabaExternalId: z.ZodString;
4612
- phoneNumberId: z.ZodString;
4613
- email: z.ZodString;
4614
- clientId: z.ZodOptional<z.ZodString>;
4615
- channelId: z.ZodOptional<z.ZodString>;
4683
+ wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
4684
+ wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
4685
+ phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
4686
+ email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
4687
+ clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
4688
+ channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
4616
4689
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
4617
4690
  apiKey: z.ZodOptional<z.ZodString>;
4618
4691
  tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
4692
+ integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
4619
4693
  }, "strip", z.ZodTypeAny, {
4620
- email: string;
4621
- wabaExternalId: string;
4622
- phoneNumberId: string;
4623
- wabaBusinessId?: string | undefined;
4624
- clientId?: string | undefined;
4625
- channelId?: string | undefined;
4694
+ wabaBusinessId?: string | null | undefined;
4695
+ wabaExternalId?: string | null | undefined;
4696
+ phoneNumberId?: string | null | undefined;
4697
+ email?: string | null | undefined;
4698
+ clientId?: string | null | undefined;
4699
+ channelId?: string | null | undefined;
4626
4700
  status?: "active" | "pending" | undefined;
4627
4701
  apiKey?: string | undefined;
4628
4702
  tier?: "basic" | "regular" | "premium" | undefined;
4703
+ integrationType?: "meta" | "360dialog" | undefined;
4629
4704
  }, {
4630
- email: string;
4631
- wabaExternalId: string;
4632
- phoneNumberId: string;
4633
- wabaBusinessId?: string | undefined;
4634
- clientId?: string | undefined;
4635
- channelId?: string | undefined;
4705
+ wabaBusinessId?: string | null | undefined;
4706
+ wabaExternalId?: string | null | undefined;
4707
+ phoneNumberId?: string | null | undefined;
4708
+ email?: string | null | undefined;
4709
+ clientId?: string | null | undefined;
4710
+ channelId?: string | null | undefined;
4636
4711
  status?: "active" | "pending" | undefined;
4637
4712
  apiKey?: string | undefined;
4638
4713
  tier?: "basic" | "regular" | "premium" | undefined;
4714
+ integrationType?: "meta" | "360dialog" | undefined;
4639
4715
  }>>;
4640
4716
  vonageCredentials: z.ZodOptional<z.ZodObject<{
4641
4717
  mobileNumber: z.ZodString;
@@ -4660,15 +4736,16 @@ export declare const facebookFeedContract: {
4660
4736
  additionalCredentials?: any;
4661
4737
  senderId?: string | undefined;
4662
4738
  whatsapp?: {
4663
- email: string;
4664
- wabaExternalId: string;
4665
- phoneNumberId: string;
4666
- wabaBusinessId?: string | undefined;
4667
- clientId?: string | undefined;
4668
- channelId?: string | undefined;
4739
+ wabaBusinessId?: string | null | undefined;
4740
+ wabaExternalId?: string | null | undefined;
4741
+ phoneNumberId?: string | null | undefined;
4742
+ email?: string | null | undefined;
4743
+ clientId?: string | null | undefined;
4744
+ channelId?: string | null | undefined;
4669
4745
  status?: "active" | "pending" | undefined;
4670
4746
  apiKey?: string | undefined;
4671
4747
  tier?: "basic" | "regular" | "premium" | undefined;
4748
+ integrationType?: "meta" | "360dialog" | undefined;
4672
4749
  } | undefined;
4673
4750
  vonageCredentials?: {
4674
4751
  apiKey: string;
@@ -4685,15 +4762,16 @@ export declare const facebookFeedContract: {
4685
4762
  additionalCredentials?: any;
4686
4763
  senderId?: string | undefined;
4687
4764
  whatsapp?: {
4688
- email: string;
4689
- wabaExternalId: string;
4690
- phoneNumberId: string;
4691
- wabaBusinessId?: string | undefined;
4692
- clientId?: string | undefined;
4693
- channelId?: string | undefined;
4765
+ wabaBusinessId?: string | null | undefined;
4766
+ wabaExternalId?: string | null | undefined;
4767
+ phoneNumberId?: string | null | undefined;
4768
+ email?: string | null | undefined;
4769
+ clientId?: string | null | undefined;
4770
+ channelId?: string | null | undefined;
4694
4771
  status?: "active" | "pending" | undefined;
4695
4772
  apiKey?: string | undefined;
4696
4773
  tier?: "basic" | "regular" | "premium" | undefined;
4774
+ integrationType?: "meta" | "360dialog" | undefined;
4697
4775
  } | undefined;
4698
4776
  vonageCredentials?: {
4699
4777
  apiKey: string;
@@ -4740,15 +4818,16 @@ export declare const facebookFeedContract: {
4740
4818
  additionalCredentials?: any;
4741
4819
  senderId?: string | undefined;
4742
4820
  whatsapp?: {
4743
- email: string;
4744
- wabaExternalId: string;
4745
- phoneNumberId: string;
4746
- wabaBusinessId?: string | undefined;
4747
- clientId?: string | undefined;
4748
- channelId?: string | undefined;
4821
+ wabaBusinessId?: string | null | undefined;
4822
+ wabaExternalId?: string | null | undefined;
4823
+ phoneNumberId?: string | null | undefined;
4824
+ email?: string | null | undefined;
4825
+ clientId?: string | null | undefined;
4826
+ channelId?: string | null | undefined;
4749
4827
  status?: "active" | "pending" | undefined;
4750
4828
  apiKey?: string | undefined;
4751
4829
  tier?: "basic" | "regular" | "premium" | undefined;
4830
+ integrationType?: "meta" | "360dialog" | undefined;
4752
4831
  } | undefined;
4753
4832
  vonageCredentials?: {
4754
4833
  apiKey: string;
@@ -4783,15 +4862,16 @@ export declare const facebookFeedContract: {
4783
4862
  additionalCredentials?: any;
4784
4863
  senderId?: string | undefined;
4785
4864
  whatsapp?: {
4786
- email: string;
4787
- wabaExternalId: string;
4788
- phoneNumberId: string;
4789
- wabaBusinessId?: string | undefined;
4790
- clientId?: string | undefined;
4791
- channelId?: string | undefined;
4865
+ wabaBusinessId?: string | null | undefined;
4866
+ wabaExternalId?: string | null | undefined;
4867
+ phoneNumberId?: string | null | undefined;
4868
+ email?: string | null | undefined;
4869
+ clientId?: string | null | undefined;
4870
+ channelId?: string | null | undefined;
4792
4871
  status?: "active" | "pending" | undefined;
4793
4872
  apiKey?: string | undefined;
4794
4873
  tier?: "basic" | "regular" | "premium" | undefined;
4874
+ integrationType?: "meta" | "360dialog" | undefined;
4795
4875
  } | undefined;
4796
4876
  vonageCredentials?: {
4797
4877
  apiKey: string;
@@ -4831,15 +4911,16 @@ export declare const facebookFeedContract: {
4831
4911
  additionalCredentials?: any;
4832
4912
  senderId?: string | undefined;
4833
4913
  whatsapp?: {
4834
- email: string;
4835
- wabaExternalId: string;
4836
- phoneNumberId: string;
4837
- wabaBusinessId?: string | undefined;
4838
- clientId?: string | undefined;
4839
- channelId?: string | undefined;
4914
+ wabaBusinessId?: string | null | undefined;
4915
+ wabaExternalId?: string | null | undefined;
4916
+ phoneNumberId?: string | null | undefined;
4917
+ email?: string | null | undefined;
4918
+ clientId?: string | null | undefined;
4919
+ channelId?: string | null | undefined;
4840
4920
  status?: "active" | "pending" | undefined;
4841
4921
  apiKey?: string | undefined;
4842
4922
  tier?: "basic" | "regular" | "premium" | undefined;
4923
+ integrationType?: "meta" | "360dialog" | undefined;
4843
4924
  } | undefined;
4844
4925
  vonageCredentials?: {
4845
4926
  apiKey: string;
@@ -4918,15 +4999,16 @@ export declare const facebookFeedContract: {
4918
4999
  additionalCredentials?: any;
4919
5000
  senderId?: string | undefined;
4920
5001
  whatsapp?: {
4921
- email: string;
4922
- wabaExternalId: string;
4923
- phoneNumberId: string;
4924
- wabaBusinessId?: string | undefined;
4925
- clientId?: string | undefined;
4926
- channelId?: string | undefined;
5002
+ wabaBusinessId?: string | null | undefined;
5003
+ wabaExternalId?: string | null | undefined;
5004
+ phoneNumberId?: string | null | undefined;
5005
+ email?: string | null | undefined;
5006
+ clientId?: string | null | undefined;
5007
+ channelId?: string | null | undefined;
4927
5008
  status?: "active" | "pending" | undefined;
4928
5009
  apiKey?: string | undefined;
4929
5010
  tier?: "basic" | "regular" | "premium" | undefined;
5011
+ integrationType?: "meta" | "360dialog" | undefined;
4930
5012
  } | undefined;
4931
5013
  vonageCredentials?: {
4932
5014
  apiKey: string;
@@ -5054,15 +5136,16 @@ export declare const facebookFeedContract: {
5054
5136
  additionalCredentials?: any;
5055
5137
  senderId?: string | undefined;
5056
5138
  whatsapp?: {
5057
- email: string;
5058
- wabaExternalId: string;
5059
- phoneNumberId: string;
5060
- wabaBusinessId?: string | undefined;
5061
- clientId?: string | undefined;
5062
- channelId?: string | undefined;
5139
+ wabaBusinessId?: string | null | undefined;
5140
+ wabaExternalId?: string | null | undefined;
5141
+ phoneNumberId?: string | null | undefined;
5142
+ email?: string | null | undefined;
5143
+ clientId?: string | null | undefined;
5144
+ channelId?: string | null | undefined;
5063
5145
  status?: "active" | "pending" | undefined;
5064
5146
  apiKey?: string | undefined;
5065
5147
  tier?: "basic" | "regular" | "premium" | undefined;
5148
+ integrationType?: "meta" | "360dialog" | undefined;
5066
5149
  } | undefined;
5067
5150
  vonageCredentials?: {
5068
5151
  apiKey: string;
@@ -5184,15 +5267,16 @@ export declare const facebookFeedContract: {
5184
5267
  additionalCredentials?: any;
5185
5268
  senderId?: string | undefined;
5186
5269
  whatsapp?: {
5187
- email: string;
5188
- wabaExternalId: string;
5189
- phoneNumberId: string;
5190
- wabaBusinessId?: string | undefined;
5191
- clientId?: string | undefined;
5192
- channelId?: string | undefined;
5270
+ wabaBusinessId?: string | null | undefined;
5271
+ wabaExternalId?: string | null | undefined;
5272
+ phoneNumberId?: string | null | undefined;
5273
+ email?: string | null | undefined;
5274
+ clientId?: string | null | undefined;
5275
+ channelId?: string | null | undefined;
5193
5276
  status?: "active" | "pending" | undefined;
5194
5277
  apiKey?: string | undefined;
5195
5278
  tier?: "basic" | "regular" | "premium" | undefined;
5279
+ integrationType?: "meta" | "360dialog" | undefined;
5196
5280
  } | undefined;
5197
5281
  vonageCredentials?: {
5198
5282
  apiKey: string;
@@ -7209,35 +7293,38 @@ export declare const facebookFeedContract: {
7209
7293
  additionalCredentials: z.ZodOptional<z.ZodAny>;
7210
7294
  senderId: z.ZodOptional<z.ZodString>;
7211
7295
  whatsapp: z.ZodOptional<z.ZodObject<{
7212
- wabaBusinessId: z.ZodOptional<z.ZodString>;
7213
- wabaExternalId: z.ZodString;
7214
- phoneNumberId: z.ZodString;
7215
- email: z.ZodString;
7216
- clientId: z.ZodOptional<z.ZodString>;
7217
- channelId: z.ZodOptional<z.ZodString>;
7296
+ wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
7297
+ wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
7298
+ phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
7299
+ email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
7300
+ clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
7301
+ channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
7218
7302
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
7219
7303
  apiKey: z.ZodOptional<z.ZodString>;
7220
7304
  tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
7305
+ integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
7221
7306
  }, "strip", z.ZodTypeAny, {
7222
- email: string;
7223
- wabaExternalId: string;
7224
- phoneNumberId: string;
7225
- wabaBusinessId?: string | undefined;
7226
- clientId?: string | undefined;
7227
- channelId?: string | undefined;
7307
+ wabaBusinessId?: string | null | undefined;
7308
+ wabaExternalId?: string | null | undefined;
7309
+ phoneNumberId?: string | null | undefined;
7310
+ email?: string | null | undefined;
7311
+ clientId?: string | null | undefined;
7312
+ channelId?: string | null | undefined;
7228
7313
  status?: "active" | "pending" | undefined;
7229
7314
  apiKey?: string | undefined;
7230
7315
  tier?: "basic" | "regular" | "premium" | undefined;
7316
+ integrationType?: "meta" | "360dialog" | undefined;
7231
7317
  }, {
7232
- email: string;
7233
- wabaExternalId: string;
7234
- phoneNumberId: string;
7235
- wabaBusinessId?: string | undefined;
7236
- clientId?: string | undefined;
7237
- channelId?: string | undefined;
7318
+ wabaBusinessId?: string | null | undefined;
7319
+ wabaExternalId?: string | null | undefined;
7320
+ phoneNumberId?: string | null | undefined;
7321
+ email?: string | null | undefined;
7322
+ clientId?: string | null | undefined;
7323
+ channelId?: string | null | undefined;
7238
7324
  status?: "active" | "pending" | undefined;
7239
7325
  apiKey?: string | undefined;
7240
7326
  tier?: "basic" | "regular" | "premium" | undefined;
7327
+ integrationType?: "meta" | "360dialog" | undefined;
7241
7328
  }>>;
7242
7329
  vonageCredentials: z.ZodOptional<z.ZodObject<{
7243
7330
  mobileNumber: z.ZodString;
@@ -7262,15 +7349,16 @@ export declare const facebookFeedContract: {
7262
7349
  additionalCredentials?: any;
7263
7350
  senderId?: string | undefined;
7264
7351
  whatsapp?: {
7265
- email: string;
7266
- wabaExternalId: string;
7267
- phoneNumberId: string;
7268
- wabaBusinessId?: string | undefined;
7269
- clientId?: string | undefined;
7270
- channelId?: string | undefined;
7352
+ wabaBusinessId?: string | null | undefined;
7353
+ wabaExternalId?: string | null | undefined;
7354
+ phoneNumberId?: string | null | undefined;
7355
+ email?: string | null | undefined;
7356
+ clientId?: string | null | undefined;
7357
+ channelId?: string | null | undefined;
7271
7358
  status?: "active" | "pending" | undefined;
7272
7359
  apiKey?: string | undefined;
7273
7360
  tier?: "basic" | "regular" | "premium" | undefined;
7361
+ integrationType?: "meta" | "360dialog" | undefined;
7274
7362
  } | undefined;
7275
7363
  vonageCredentials?: {
7276
7364
  apiKey: string;
@@ -7287,15 +7375,16 @@ export declare const facebookFeedContract: {
7287
7375
  additionalCredentials?: any;
7288
7376
  senderId?: string | undefined;
7289
7377
  whatsapp?: {
7290
- email: string;
7291
- wabaExternalId: string;
7292
- phoneNumberId: string;
7293
- wabaBusinessId?: string | undefined;
7294
- clientId?: string | undefined;
7295
- channelId?: string | undefined;
7378
+ wabaBusinessId?: string | null | undefined;
7379
+ wabaExternalId?: string | null | undefined;
7380
+ phoneNumberId?: string | null | undefined;
7381
+ email?: string | null | undefined;
7382
+ clientId?: string | null | undefined;
7383
+ channelId?: string | null | undefined;
7296
7384
  status?: "active" | "pending" | undefined;
7297
7385
  apiKey?: string | undefined;
7298
7386
  tier?: "basic" | "regular" | "premium" | undefined;
7387
+ integrationType?: "meta" | "360dialog" | undefined;
7299
7388
  } | undefined;
7300
7389
  vonageCredentials?: {
7301
7390
  apiKey: string;
@@ -7546,15 +7635,16 @@ export declare const facebookFeedContract: {
7546
7635
  additionalCredentials?: any;
7547
7636
  senderId?: string | undefined;
7548
7637
  whatsapp?: {
7549
- email: string;
7550
- wabaExternalId: string;
7551
- phoneNumberId: string;
7552
- wabaBusinessId?: string | undefined;
7553
- clientId?: string | undefined;
7554
- channelId?: string | undefined;
7638
+ wabaBusinessId?: string | null | undefined;
7639
+ wabaExternalId?: string | null | undefined;
7640
+ phoneNumberId?: string | null | undefined;
7641
+ email?: string | null | undefined;
7642
+ clientId?: string | null | undefined;
7643
+ channelId?: string | null | undefined;
7555
7644
  status?: "active" | "pending" | undefined;
7556
7645
  apiKey?: string | undefined;
7557
7646
  tier?: "basic" | "regular" | "premium" | undefined;
7647
+ integrationType?: "meta" | "360dialog" | undefined;
7558
7648
  } | undefined;
7559
7649
  vonageCredentials?: {
7560
7650
  apiKey: string;
@@ -7636,15 +7726,16 @@ export declare const facebookFeedContract: {
7636
7726
  additionalCredentials?: any;
7637
7727
  senderId?: string | undefined;
7638
7728
  whatsapp?: {
7639
- email: string;
7640
- wabaExternalId: string;
7641
- phoneNumberId: string;
7642
- wabaBusinessId?: string | undefined;
7643
- clientId?: string | undefined;
7644
- channelId?: string | undefined;
7729
+ wabaBusinessId?: string | null | undefined;
7730
+ wabaExternalId?: string | null | undefined;
7731
+ phoneNumberId?: string | null | undefined;
7732
+ email?: string | null | undefined;
7733
+ clientId?: string | null | undefined;
7734
+ channelId?: string | null | undefined;
7645
7735
  status?: "active" | "pending" | undefined;
7646
7736
  apiKey?: string | undefined;
7647
7737
  tier?: "basic" | "regular" | "premium" | undefined;
7738
+ integrationType?: "meta" | "360dialog" | undefined;
7648
7739
  } | undefined;
7649
7740
  vonageCredentials?: {
7650
7741
  apiKey: string;
@@ -8290,15 +8381,16 @@ export declare const facebookFeedContract: {
8290
8381
  additionalCredentials?: any;
8291
8382
  senderId?: string | undefined;
8292
8383
  whatsapp?: {
8293
- email: string;
8294
- wabaExternalId: string;
8295
- phoneNumberId: string;
8296
- wabaBusinessId?: string | undefined;
8297
- clientId?: string | undefined;
8298
- channelId?: string | undefined;
8384
+ wabaBusinessId?: string | null | undefined;
8385
+ wabaExternalId?: string | null | undefined;
8386
+ phoneNumberId?: string | null | undefined;
8387
+ email?: string | null | undefined;
8388
+ clientId?: string | null | undefined;
8389
+ channelId?: string | null | undefined;
8299
8390
  status?: "active" | "pending" | undefined;
8300
8391
  apiKey?: string | undefined;
8301
8392
  tier?: "basic" | "regular" | "premium" | undefined;
8393
+ integrationType?: "meta" | "360dialog" | undefined;
8302
8394
  } | undefined;
8303
8395
  vonageCredentials?: {
8304
8396
  apiKey: string;
@@ -8713,15 +8805,16 @@ export declare const facebookFeedContract: {
8713
8805
  additionalCredentials?: any;
8714
8806
  senderId?: string | undefined;
8715
8807
  whatsapp?: {
8716
- email: string;
8717
- wabaExternalId: string;
8718
- phoneNumberId: string;
8719
- wabaBusinessId?: string | undefined;
8720
- clientId?: string | undefined;
8721
- channelId?: string | undefined;
8808
+ wabaBusinessId?: string | null | undefined;
8809
+ wabaExternalId?: string | null | undefined;
8810
+ phoneNumberId?: string | null | undefined;
8811
+ email?: string | null | undefined;
8812
+ clientId?: string | null | undefined;
8813
+ channelId?: string | null | undefined;
8722
8814
  status?: "active" | "pending" | undefined;
8723
8815
  apiKey?: string | undefined;
8724
8816
  tier?: "basic" | "regular" | "premium" | undefined;
8817
+ integrationType?: "meta" | "360dialog" | undefined;
8725
8818
  } | undefined;
8726
8819
  vonageCredentials?: {
8727
8820
  apiKey: string;
@@ -11852,35 +11945,38 @@ export declare const facebookFeedContract: {
11852
11945
  additionalCredentials: z.ZodOptional<z.ZodAny>;
11853
11946
  senderId: z.ZodOptional<z.ZodString>;
11854
11947
  whatsapp: z.ZodOptional<z.ZodObject<{
11855
- wabaBusinessId: z.ZodOptional<z.ZodString>;
11856
- wabaExternalId: z.ZodString;
11857
- phoneNumberId: z.ZodString;
11858
- email: z.ZodString;
11859
- clientId: z.ZodOptional<z.ZodString>;
11860
- channelId: z.ZodOptional<z.ZodString>;
11948
+ wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
11949
+ wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
11950
+ phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
11951
+ email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
11952
+ clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
11953
+ channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
11861
11954
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
11862
11955
  apiKey: z.ZodOptional<z.ZodString>;
11863
11956
  tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
11957
+ integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
11864
11958
  }, "strip", z.ZodTypeAny, {
11865
- email: string;
11866
- wabaExternalId: string;
11867
- phoneNumberId: string;
11868
- wabaBusinessId?: string | undefined;
11869
- clientId?: string | undefined;
11870
- channelId?: string | undefined;
11959
+ wabaBusinessId?: string | null | undefined;
11960
+ wabaExternalId?: string | null | undefined;
11961
+ phoneNumberId?: string | null | undefined;
11962
+ email?: string | null | undefined;
11963
+ clientId?: string | null | undefined;
11964
+ channelId?: string | null | undefined;
11871
11965
  status?: "active" | "pending" | undefined;
11872
11966
  apiKey?: string | undefined;
11873
11967
  tier?: "basic" | "regular" | "premium" | undefined;
11968
+ integrationType?: "meta" | "360dialog" | undefined;
11874
11969
  }, {
11875
- email: string;
11876
- wabaExternalId: string;
11877
- phoneNumberId: string;
11878
- wabaBusinessId?: string | undefined;
11879
- clientId?: string | undefined;
11880
- channelId?: string | undefined;
11970
+ wabaBusinessId?: string | null | undefined;
11971
+ wabaExternalId?: string | null | undefined;
11972
+ phoneNumberId?: string | null | undefined;
11973
+ email?: string | null | undefined;
11974
+ clientId?: string | null | undefined;
11975
+ channelId?: string | null | undefined;
11881
11976
  status?: "active" | "pending" | undefined;
11882
11977
  apiKey?: string | undefined;
11883
11978
  tier?: "basic" | "regular" | "premium" | undefined;
11979
+ integrationType?: "meta" | "360dialog" | undefined;
11884
11980
  }>>;
11885
11981
  vonageCredentials: z.ZodOptional<z.ZodObject<{
11886
11982
  mobileNumber: z.ZodString;
@@ -11905,15 +12001,16 @@ export declare const facebookFeedContract: {
11905
12001
  additionalCredentials?: any;
11906
12002
  senderId?: string | undefined;
11907
12003
  whatsapp?: {
11908
- email: string;
11909
- wabaExternalId: string;
11910
- phoneNumberId: string;
11911
- wabaBusinessId?: string | undefined;
11912
- clientId?: string | undefined;
11913
- channelId?: string | undefined;
12004
+ wabaBusinessId?: string | null | undefined;
12005
+ wabaExternalId?: string | null | undefined;
12006
+ phoneNumberId?: string | null | undefined;
12007
+ email?: string | null | undefined;
12008
+ clientId?: string | null | undefined;
12009
+ channelId?: string | null | undefined;
11914
12010
  status?: "active" | "pending" | undefined;
11915
12011
  apiKey?: string | undefined;
11916
12012
  tier?: "basic" | "regular" | "premium" | undefined;
12013
+ integrationType?: "meta" | "360dialog" | undefined;
11917
12014
  } | undefined;
11918
12015
  vonageCredentials?: {
11919
12016
  apiKey: string;
@@ -11930,15 +12027,16 @@ export declare const facebookFeedContract: {
11930
12027
  additionalCredentials?: any;
11931
12028
  senderId?: string | undefined;
11932
12029
  whatsapp?: {
11933
- email: string;
11934
- wabaExternalId: string;
11935
- phoneNumberId: string;
11936
- wabaBusinessId?: string | undefined;
11937
- clientId?: string | undefined;
11938
- channelId?: string | undefined;
12030
+ wabaBusinessId?: string | null | undefined;
12031
+ wabaExternalId?: string | null | undefined;
12032
+ phoneNumberId?: string | null | undefined;
12033
+ email?: string | null | undefined;
12034
+ clientId?: string | null | undefined;
12035
+ channelId?: string | null | undefined;
11939
12036
  status?: "active" | "pending" | undefined;
11940
12037
  apiKey?: string | undefined;
11941
12038
  tier?: "basic" | "regular" | "premium" | undefined;
12039
+ integrationType?: "meta" | "360dialog" | undefined;
11942
12040
  } | undefined;
11943
12041
  vonageCredentials?: {
11944
12042
  apiKey: string;
@@ -12189,15 +12287,16 @@ export declare const facebookFeedContract: {
12189
12287
  additionalCredentials?: any;
12190
12288
  senderId?: string | undefined;
12191
12289
  whatsapp?: {
12192
- email: string;
12193
- wabaExternalId: string;
12194
- phoneNumberId: string;
12195
- wabaBusinessId?: string | undefined;
12196
- clientId?: string | undefined;
12197
- channelId?: string | undefined;
12290
+ wabaBusinessId?: string | null | undefined;
12291
+ wabaExternalId?: string | null | undefined;
12292
+ phoneNumberId?: string | null | undefined;
12293
+ email?: string | null | undefined;
12294
+ clientId?: string | null | undefined;
12295
+ channelId?: string | null | undefined;
12198
12296
  status?: "active" | "pending" | undefined;
12199
12297
  apiKey?: string | undefined;
12200
12298
  tier?: "basic" | "regular" | "premium" | undefined;
12299
+ integrationType?: "meta" | "360dialog" | undefined;
12201
12300
  } | undefined;
12202
12301
  vonageCredentials?: {
12203
12302
  apiKey: string;
@@ -12279,15 +12378,16 @@ export declare const facebookFeedContract: {
12279
12378
  additionalCredentials?: any;
12280
12379
  senderId?: string | undefined;
12281
12380
  whatsapp?: {
12282
- email: string;
12283
- wabaExternalId: string;
12284
- phoneNumberId: string;
12285
- wabaBusinessId?: string | undefined;
12286
- clientId?: string | undefined;
12287
- channelId?: string | undefined;
12381
+ wabaBusinessId?: string | null | undefined;
12382
+ wabaExternalId?: string | null | undefined;
12383
+ phoneNumberId?: string | null | undefined;
12384
+ email?: string | null | undefined;
12385
+ clientId?: string | null | undefined;
12386
+ channelId?: string | null | undefined;
12288
12387
  status?: "active" | "pending" | undefined;
12289
12388
  apiKey?: string | undefined;
12290
12389
  tier?: "basic" | "regular" | "premium" | undefined;
12390
+ integrationType?: "meta" | "360dialog" | undefined;
12291
12391
  } | undefined;
12292
12392
  vonageCredentials?: {
12293
12393
  apiKey: string;
@@ -12933,15 +13033,16 @@ export declare const facebookFeedContract: {
12933
13033
  additionalCredentials?: any;
12934
13034
  senderId?: string | undefined;
12935
13035
  whatsapp?: {
12936
- email: string;
12937
- wabaExternalId: string;
12938
- phoneNumberId: string;
12939
- wabaBusinessId?: string | undefined;
12940
- clientId?: string | undefined;
12941
- channelId?: string | undefined;
13036
+ wabaBusinessId?: string | null | undefined;
13037
+ wabaExternalId?: string | null | undefined;
13038
+ phoneNumberId?: string | null | undefined;
13039
+ email?: string | null | undefined;
13040
+ clientId?: string | null | undefined;
13041
+ channelId?: string | null | undefined;
12942
13042
  status?: "active" | "pending" | undefined;
12943
13043
  apiKey?: string | undefined;
12944
13044
  tier?: "basic" | "regular" | "premium" | undefined;
13045
+ integrationType?: "meta" | "360dialog" | undefined;
12945
13046
  } | undefined;
12946
13047
  vonageCredentials?: {
12947
13048
  apiKey: string;
@@ -13356,15 +13457,16 @@ export declare const facebookFeedContract: {
13356
13457
  additionalCredentials?: any;
13357
13458
  senderId?: string | undefined;
13358
13459
  whatsapp?: {
13359
- email: string;
13360
- wabaExternalId: string;
13361
- phoneNumberId: string;
13362
- wabaBusinessId?: string | undefined;
13363
- clientId?: string | undefined;
13364
- channelId?: string | undefined;
13460
+ wabaBusinessId?: string | null | undefined;
13461
+ wabaExternalId?: string | null | undefined;
13462
+ phoneNumberId?: string | null | undefined;
13463
+ email?: string | null | undefined;
13464
+ clientId?: string | null | undefined;
13465
+ channelId?: string | null | undefined;
13365
13466
  status?: "active" | "pending" | undefined;
13366
13467
  apiKey?: string | undefined;
13367
13468
  tier?: "basic" | "regular" | "premium" | undefined;
13469
+ integrationType?: "meta" | "360dialog" | undefined;
13368
13470
  } | undefined;
13369
13471
  vonageCredentials?: {
13370
13472
  apiKey: string;
@@ -15552,15 +15654,16 @@ export declare const facebookFeedContract: {
15552
15654
  additionalCredentials?: any;
15553
15655
  senderId?: string | undefined;
15554
15656
  whatsapp?: {
15555
- email: string;
15556
- wabaExternalId: string;
15557
- phoneNumberId: string;
15558
- wabaBusinessId?: string | undefined;
15559
- clientId?: string | undefined;
15560
- channelId?: string | undefined;
15657
+ wabaBusinessId?: string | null | undefined;
15658
+ wabaExternalId?: string | null | undefined;
15659
+ phoneNumberId?: string | null | undefined;
15660
+ email?: string | null | undefined;
15661
+ clientId?: string | null | undefined;
15662
+ channelId?: string | null | undefined;
15561
15663
  status?: "active" | "pending" | undefined;
15562
15664
  apiKey?: string | undefined;
15563
15665
  tier?: "basic" | "regular" | "premium" | undefined;
15666
+ integrationType?: "meta" | "360dialog" | undefined;
15564
15667
  } | undefined;
15565
15668
  vonageCredentials?: {
15566
15669
  apiKey: string;
@@ -16312,15 +16415,16 @@ export declare const facebookFeedContract: {
16312
16415
  additionalCredentials?: any;
16313
16416
  senderId?: string | undefined;
16314
16417
  whatsapp?: {
16315
- email: string;
16316
- wabaExternalId: string;
16317
- phoneNumberId: string;
16318
- wabaBusinessId?: string | undefined;
16319
- clientId?: string | undefined;
16320
- channelId?: string | undefined;
16418
+ wabaBusinessId?: string | null | undefined;
16419
+ wabaExternalId?: string | null | undefined;
16420
+ phoneNumberId?: string | null | undefined;
16421
+ email?: string | null | undefined;
16422
+ clientId?: string | null | undefined;
16423
+ channelId?: string | null | undefined;
16321
16424
  status?: "active" | "pending" | undefined;
16322
16425
  apiKey?: string | undefined;
16323
16426
  tier?: "basic" | "regular" | "premium" | undefined;
16427
+ integrationType?: "meta" | "360dialog" | undefined;
16324
16428
  } | undefined;
16325
16429
  vonageCredentials?: {
16326
16430
  apiKey: string;
@@ -17073,15 +17177,16 @@ export declare const facebookFeedContract: {
17073
17177
  additionalCredentials?: any;
17074
17178
  senderId?: string | undefined;
17075
17179
  whatsapp?: {
17076
- email: string;
17077
- wabaExternalId: string;
17078
- phoneNumberId: string;
17079
- wabaBusinessId?: string | undefined;
17080
- clientId?: string | undefined;
17081
- channelId?: string | undefined;
17180
+ wabaBusinessId?: string | null | undefined;
17181
+ wabaExternalId?: string | null | undefined;
17182
+ phoneNumberId?: string | null | undefined;
17183
+ email?: string | null | undefined;
17184
+ clientId?: string | null | undefined;
17185
+ channelId?: string | null | undefined;
17082
17186
  status?: "active" | "pending" | undefined;
17083
17187
  apiKey?: string | undefined;
17084
17188
  tier?: "basic" | "regular" | "premium" | undefined;
17189
+ integrationType?: "meta" | "360dialog" | undefined;
17085
17190
  } | undefined;
17086
17191
  vonageCredentials?: {
17087
17192
  apiKey: string;
@@ -17833,15 +17938,16 @@ export declare const facebookFeedContract: {
17833
17938
  additionalCredentials?: any;
17834
17939
  senderId?: string | undefined;
17835
17940
  whatsapp?: {
17836
- email: string;
17837
- wabaExternalId: string;
17838
- phoneNumberId: string;
17839
- wabaBusinessId?: string | undefined;
17840
- clientId?: string | undefined;
17841
- channelId?: string | undefined;
17941
+ wabaBusinessId?: string | null | undefined;
17942
+ wabaExternalId?: string | null | undefined;
17943
+ phoneNumberId?: string | null | undefined;
17944
+ email?: string | null | undefined;
17945
+ clientId?: string | null | undefined;
17946
+ channelId?: string | null | undefined;
17842
17947
  status?: "active" | "pending" | undefined;
17843
17948
  apiKey?: string | undefined;
17844
17949
  tier?: "basic" | "regular" | "premium" | undefined;
17950
+ integrationType?: "meta" | "360dialog" | undefined;
17845
17951
  } | undefined;
17846
17952
  vonageCredentials?: {
17847
17953
  apiKey: string;
@@ -18594,15 +18700,16 @@ export declare const facebookFeedContract: {
18594
18700
  additionalCredentials?: any;
18595
18701
  senderId?: string | undefined;
18596
18702
  whatsapp?: {
18597
- email: string;
18598
- wabaExternalId: string;
18599
- phoneNumberId: string;
18600
- wabaBusinessId?: string | undefined;
18601
- clientId?: string | undefined;
18602
- channelId?: string | undefined;
18703
+ wabaBusinessId?: string | null | undefined;
18704
+ wabaExternalId?: string | null | undefined;
18705
+ phoneNumberId?: string | null | undefined;
18706
+ email?: string | null | undefined;
18707
+ clientId?: string | null | undefined;
18708
+ channelId?: string | null | undefined;
18603
18709
  status?: "active" | "pending" | undefined;
18604
18710
  apiKey?: string | undefined;
18605
18711
  tier?: "basic" | "regular" | "premium" | undefined;
18712
+ integrationType?: "meta" | "360dialog" | undefined;
18606
18713
  } | undefined;
18607
18714
  vonageCredentials?: {
18608
18715
  apiKey: string;
@@ -19354,15 +19461,16 @@ export declare const facebookFeedContract: {
19354
19461
  additionalCredentials?: any;
19355
19462
  senderId?: string | undefined;
19356
19463
  whatsapp?: {
19357
- email: string;
19358
- wabaExternalId: string;
19359
- phoneNumberId: string;
19360
- wabaBusinessId?: string | undefined;
19361
- clientId?: string | undefined;
19362
- channelId?: string | undefined;
19464
+ wabaBusinessId?: string | null | undefined;
19465
+ wabaExternalId?: string | null | undefined;
19466
+ phoneNumberId?: string | null | undefined;
19467
+ email?: string | null | undefined;
19468
+ clientId?: string | null | undefined;
19469
+ channelId?: string | null | undefined;
19363
19470
  status?: "active" | "pending" | undefined;
19364
19471
  apiKey?: string | undefined;
19365
19472
  tier?: "basic" | "regular" | "premium" | undefined;
19473
+ integrationType?: "meta" | "360dialog" | undefined;
19366
19474
  } | undefined;
19367
19475
  vonageCredentials?: {
19368
19476
  apiKey: string;
@@ -20117,15 +20225,16 @@ export declare const facebookFeedContract: {
20117
20225
  additionalCredentials?: any;
20118
20226
  senderId?: string | undefined;
20119
20227
  whatsapp?: {
20120
- email: string;
20121
- wabaExternalId: string;
20122
- phoneNumberId: string;
20123
- wabaBusinessId?: string | undefined;
20124
- clientId?: string | undefined;
20125
- channelId?: string | undefined;
20228
+ wabaBusinessId?: string | null | undefined;
20229
+ wabaExternalId?: string | null | undefined;
20230
+ phoneNumberId?: string | null | undefined;
20231
+ email?: string | null | undefined;
20232
+ clientId?: string | null | undefined;
20233
+ channelId?: string | null | undefined;
20126
20234
  status?: "active" | "pending" | undefined;
20127
20235
  apiKey?: string | undefined;
20128
20236
  tier?: "basic" | "regular" | "premium" | undefined;
20237
+ integrationType?: "meta" | "360dialog" | undefined;
20129
20238
  } | undefined;
20130
20239
  vonageCredentials?: {
20131
20240
  apiKey: string;
@@ -20877,15 +20986,16 @@ export declare const facebookFeedContract: {
20877
20986
  additionalCredentials?: any;
20878
20987
  senderId?: string | undefined;
20879
20988
  whatsapp?: {
20880
- email: string;
20881
- wabaExternalId: string;
20882
- phoneNumberId: string;
20883
- wabaBusinessId?: string | undefined;
20884
- clientId?: string | undefined;
20885
- channelId?: string | undefined;
20989
+ wabaBusinessId?: string | null | undefined;
20990
+ wabaExternalId?: string | null | undefined;
20991
+ phoneNumberId?: string | null | undefined;
20992
+ email?: string | null | undefined;
20993
+ clientId?: string | null | undefined;
20994
+ channelId?: string | null | undefined;
20886
20995
  status?: "active" | "pending" | undefined;
20887
20996
  apiKey?: string | undefined;
20888
20997
  tier?: "basic" | "regular" | "premium" | undefined;
20998
+ integrationType?: "meta" | "360dialog" | undefined;
20889
20999
  } | undefined;
20890
21000
  vonageCredentials?: {
20891
21001
  apiKey: string;
@@ -21641,15 +21751,16 @@ export declare const facebookFeedContract: {
21641
21751
  additionalCredentials?: any;
21642
21752
  senderId?: string | undefined;
21643
21753
  whatsapp?: {
21644
- email: string;
21645
- wabaExternalId: string;
21646
- phoneNumberId: string;
21647
- wabaBusinessId?: string | undefined;
21648
- clientId?: string | undefined;
21649
- channelId?: string | undefined;
21754
+ wabaBusinessId?: string | null | undefined;
21755
+ wabaExternalId?: string | null | undefined;
21756
+ phoneNumberId?: string | null | undefined;
21757
+ email?: string | null | undefined;
21758
+ clientId?: string | null | undefined;
21759
+ channelId?: string | null | undefined;
21650
21760
  status?: "active" | "pending" | undefined;
21651
21761
  apiKey?: string | undefined;
21652
21762
  tier?: "basic" | "regular" | "premium" | undefined;
21763
+ integrationType?: "meta" | "360dialog" | undefined;
21653
21764
  } | undefined;
21654
21765
  vonageCredentials?: {
21655
21766
  apiKey: string;
@@ -22401,15 +22512,16 @@ export declare const facebookFeedContract: {
22401
22512
  additionalCredentials?: any;
22402
22513
  senderId?: string | undefined;
22403
22514
  whatsapp?: {
22404
- email: string;
22405
- wabaExternalId: string;
22406
- phoneNumberId: string;
22407
- wabaBusinessId?: string | undefined;
22408
- clientId?: string | undefined;
22409
- channelId?: string | undefined;
22515
+ wabaBusinessId?: string | null | undefined;
22516
+ wabaExternalId?: string | null | undefined;
22517
+ phoneNumberId?: string | null | undefined;
22518
+ email?: string | null | undefined;
22519
+ clientId?: string | null | undefined;
22520
+ channelId?: string | null | undefined;
22410
22521
  status?: "active" | "pending" | undefined;
22411
22522
  apiKey?: string | undefined;
22412
22523
  tier?: "basic" | "regular" | "premium" | undefined;
22524
+ integrationType?: "meta" | "360dialog" | undefined;
22413
22525
  } | undefined;
22414
22526
  vonageCredentials?: {
22415
22527
  apiKey: string;
@@ -23080,35 +23192,38 @@ export declare const facebookFeedContract: {
23080
23192
  additionalCredentials: z.ZodOptional<z.ZodAny>;
23081
23193
  senderId: z.ZodOptional<z.ZodString>;
23082
23194
  whatsapp: z.ZodOptional<z.ZodObject<{
23083
- wabaBusinessId: z.ZodOptional<z.ZodString>;
23084
- wabaExternalId: z.ZodString;
23085
- phoneNumberId: z.ZodString;
23086
- email: z.ZodString;
23087
- clientId: z.ZodOptional<z.ZodString>;
23088
- channelId: z.ZodOptional<z.ZodString>;
23195
+ wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
23196
+ wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
23197
+ phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
23198
+ email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
23199
+ clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
23200
+ channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
23089
23201
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
23090
23202
  apiKey: z.ZodOptional<z.ZodString>;
23091
23203
  tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
23204
+ integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
23092
23205
  }, "strip", z.ZodTypeAny, {
23093
- email: string;
23094
- wabaExternalId: string;
23095
- phoneNumberId: string;
23096
- wabaBusinessId?: string | undefined;
23097
- clientId?: string | undefined;
23098
- channelId?: string | undefined;
23206
+ wabaBusinessId?: string | null | undefined;
23207
+ wabaExternalId?: string | null | undefined;
23208
+ phoneNumberId?: string | null | undefined;
23209
+ email?: string | null | undefined;
23210
+ clientId?: string | null | undefined;
23211
+ channelId?: string | null | undefined;
23099
23212
  status?: "active" | "pending" | undefined;
23100
23213
  apiKey?: string | undefined;
23101
23214
  tier?: "basic" | "regular" | "premium" | undefined;
23215
+ integrationType?: "meta" | "360dialog" | undefined;
23102
23216
  }, {
23103
- email: string;
23104
- wabaExternalId: string;
23105
- phoneNumberId: string;
23106
- wabaBusinessId?: string | undefined;
23107
- clientId?: string | undefined;
23108
- channelId?: string | undefined;
23217
+ wabaBusinessId?: string | null | undefined;
23218
+ wabaExternalId?: string | null | undefined;
23219
+ phoneNumberId?: string | null | undefined;
23220
+ email?: string | null | undefined;
23221
+ clientId?: string | null | undefined;
23222
+ channelId?: string | null | undefined;
23109
23223
  status?: "active" | "pending" | undefined;
23110
23224
  apiKey?: string | undefined;
23111
23225
  tier?: "basic" | "regular" | "premium" | undefined;
23226
+ integrationType?: "meta" | "360dialog" | undefined;
23112
23227
  }>>;
23113
23228
  vonageCredentials: z.ZodOptional<z.ZodObject<{
23114
23229
  mobileNumber: z.ZodString;
@@ -23133,15 +23248,16 @@ export declare const facebookFeedContract: {
23133
23248
  additionalCredentials?: any;
23134
23249
  senderId?: string | undefined;
23135
23250
  whatsapp?: {
23136
- email: string;
23137
- wabaExternalId: string;
23138
- phoneNumberId: string;
23139
- wabaBusinessId?: string | undefined;
23140
- clientId?: string | undefined;
23141
- channelId?: string | undefined;
23251
+ wabaBusinessId?: string | null | undefined;
23252
+ wabaExternalId?: string | null | undefined;
23253
+ phoneNumberId?: string | null | undefined;
23254
+ email?: string | null | undefined;
23255
+ clientId?: string | null | undefined;
23256
+ channelId?: string | null | undefined;
23142
23257
  status?: "active" | "pending" | undefined;
23143
23258
  apiKey?: string | undefined;
23144
23259
  tier?: "basic" | "regular" | "premium" | undefined;
23260
+ integrationType?: "meta" | "360dialog" | undefined;
23145
23261
  } | undefined;
23146
23262
  vonageCredentials?: {
23147
23263
  apiKey: string;
@@ -23158,15 +23274,16 @@ export declare const facebookFeedContract: {
23158
23274
  additionalCredentials?: any;
23159
23275
  senderId?: string | undefined;
23160
23276
  whatsapp?: {
23161
- email: string;
23162
- wabaExternalId: string;
23163
- phoneNumberId: string;
23164
- wabaBusinessId?: string | undefined;
23165
- clientId?: string | undefined;
23166
- channelId?: string | undefined;
23277
+ wabaBusinessId?: string | null | undefined;
23278
+ wabaExternalId?: string | null | undefined;
23279
+ phoneNumberId?: string | null | undefined;
23280
+ email?: string | null | undefined;
23281
+ clientId?: string | null | undefined;
23282
+ channelId?: string | null | undefined;
23167
23283
  status?: "active" | "pending" | undefined;
23168
23284
  apiKey?: string | undefined;
23169
23285
  tier?: "basic" | "regular" | "premium" | undefined;
23286
+ integrationType?: "meta" | "360dialog" | undefined;
23170
23287
  } | undefined;
23171
23288
  vonageCredentials?: {
23172
23289
  apiKey: string;
@@ -23213,15 +23330,16 @@ export declare const facebookFeedContract: {
23213
23330
  additionalCredentials?: any;
23214
23331
  senderId?: string | undefined;
23215
23332
  whatsapp?: {
23216
- email: string;
23217
- wabaExternalId: string;
23218
- phoneNumberId: string;
23219
- wabaBusinessId?: string | undefined;
23220
- clientId?: string | undefined;
23221
- channelId?: string | undefined;
23333
+ wabaBusinessId?: string | null | undefined;
23334
+ wabaExternalId?: string | null | undefined;
23335
+ phoneNumberId?: string | null | undefined;
23336
+ email?: string | null | undefined;
23337
+ clientId?: string | null | undefined;
23338
+ channelId?: string | null | undefined;
23222
23339
  status?: "active" | "pending" | undefined;
23223
23340
  apiKey?: string | undefined;
23224
23341
  tier?: "basic" | "regular" | "premium" | undefined;
23342
+ integrationType?: "meta" | "360dialog" | undefined;
23225
23343
  } | undefined;
23226
23344
  vonageCredentials?: {
23227
23345
  apiKey: string;
@@ -23256,15 +23374,16 @@ export declare const facebookFeedContract: {
23256
23374
  additionalCredentials?: any;
23257
23375
  senderId?: string | undefined;
23258
23376
  whatsapp?: {
23259
- email: string;
23260
- wabaExternalId: string;
23261
- phoneNumberId: string;
23262
- wabaBusinessId?: string | undefined;
23263
- clientId?: string | undefined;
23264
- channelId?: string | undefined;
23377
+ wabaBusinessId?: string | null | undefined;
23378
+ wabaExternalId?: string | null | undefined;
23379
+ phoneNumberId?: string | null | undefined;
23380
+ email?: string | null | undefined;
23381
+ clientId?: string | null | undefined;
23382
+ channelId?: string | null | undefined;
23265
23383
  status?: "active" | "pending" | undefined;
23266
23384
  apiKey?: string | undefined;
23267
23385
  tier?: "basic" | "regular" | "premium" | undefined;
23386
+ integrationType?: "meta" | "360dialog" | undefined;
23268
23387
  } | undefined;
23269
23388
  vonageCredentials?: {
23270
23389
  apiKey: string;
@@ -23302,15 +23421,16 @@ export declare const facebookFeedContract: {
23302
23421
  additionalCredentials?: any;
23303
23422
  senderId?: string | undefined;
23304
23423
  whatsapp?: {
23305
- email: string;
23306
- wabaExternalId: string;
23307
- phoneNumberId: string;
23308
- wabaBusinessId?: string | undefined;
23309
- clientId?: string | undefined;
23310
- channelId?: string | undefined;
23424
+ wabaBusinessId?: string | null | undefined;
23425
+ wabaExternalId?: string | null | undefined;
23426
+ phoneNumberId?: string | null | undefined;
23427
+ email?: string | null | undefined;
23428
+ clientId?: string | null | undefined;
23429
+ channelId?: string | null | undefined;
23311
23430
  status?: "active" | "pending" | undefined;
23312
23431
  apiKey?: string | undefined;
23313
23432
  tier?: "basic" | "regular" | "premium" | undefined;
23433
+ integrationType?: "meta" | "360dialog" | undefined;
23314
23434
  } | undefined;
23315
23435
  vonageCredentials?: {
23316
23436
  apiKey: string;
@@ -23348,15 +23468,16 @@ export declare const facebookFeedContract: {
23348
23468
  additionalCredentials?: any;
23349
23469
  senderId?: string | undefined;
23350
23470
  whatsapp?: {
23351
- email: string;
23352
- wabaExternalId: string;
23353
- phoneNumberId: string;
23354
- wabaBusinessId?: string | undefined;
23355
- clientId?: string | undefined;
23356
- channelId?: string | undefined;
23471
+ wabaBusinessId?: string | null | undefined;
23472
+ wabaExternalId?: string | null | undefined;
23473
+ phoneNumberId?: string | null | undefined;
23474
+ email?: string | null | undefined;
23475
+ clientId?: string | null | undefined;
23476
+ channelId?: string | null | undefined;
23357
23477
  status?: "active" | "pending" | undefined;
23358
23478
  apiKey?: string | undefined;
23359
23479
  tier?: "basic" | "regular" | "premium" | undefined;
23480
+ integrationType?: "meta" | "360dialog" | undefined;
23360
23481
  } | undefined;
23361
23482
  vonageCredentials?: {
23362
23483
  apiKey: string;
@@ -23546,15 +23667,16 @@ export declare const facebookFeedContract: {
23546
23667
  additionalCredentials?: any;
23547
23668
  senderId?: string | undefined;
23548
23669
  whatsapp?: {
23549
- email: string;
23550
- wabaExternalId: string;
23551
- phoneNumberId: string;
23552
- wabaBusinessId?: string | undefined;
23553
- clientId?: string | undefined;
23554
- channelId?: string | undefined;
23670
+ wabaBusinessId?: string | null | undefined;
23671
+ wabaExternalId?: string | null | undefined;
23672
+ phoneNumberId?: string | null | undefined;
23673
+ email?: string | null | undefined;
23674
+ clientId?: string | null | undefined;
23675
+ channelId?: string | null | undefined;
23555
23676
  status?: "active" | "pending" | undefined;
23556
23677
  apiKey?: string | undefined;
23557
23678
  tier?: "basic" | "regular" | "premium" | undefined;
23679
+ integrationType?: "meta" | "360dialog" | undefined;
23558
23680
  } | undefined;
23559
23681
  vonageCredentials?: {
23560
23682
  apiKey: string;
@@ -23626,15 +23748,16 @@ export declare const facebookFeedContract: {
23626
23748
  additionalCredentials?: any;
23627
23749
  senderId?: string | undefined;
23628
23750
  whatsapp?: {
23629
- email: string;
23630
- wabaExternalId: string;
23631
- phoneNumberId: string;
23632
- wabaBusinessId?: string | undefined;
23633
- clientId?: string | undefined;
23634
- channelId?: string | undefined;
23751
+ wabaBusinessId?: string | null | undefined;
23752
+ wabaExternalId?: string | null | undefined;
23753
+ phoneNumberId?: string | null | undefined;
23754
+ email?: string | null | undefined;
23755
+ clientId?: string | null | undefined;
23756
+ channelId?: string | null | undefined;
23635
23757
  status?: "active" | "pending" | undefined;
23636
23758
  apiKey?: string | undefined;
23637
23759
  tier?: "basic" | "regular" | "premium" | undefined;
23760
+ integrationType?: "meta" | "360dialog" | undefined;
23638
23761
  } | undefined;
23639
23762
  vonageCredentials?: {
23640
23763
  apiKey: string;
@@ -23677,35 +23800,38 @@ export declare const facebookFeedContract: {
23677
23800
  additionalCredentials: z.ZodOptional<z.ZodAny>;
23678
23801
  senderId: z.ZodOptional<z.ZodString>;
23679
23802
  whatsapp: z.ZodOptional<z.ZodObject<{
23680
- wabaBusinessId: z.ZodOptional<z.ZodString>;
23681
- wabaExternalId: z.ZodString;
23682
- phoneNumberId: z.ZodString;
23683
- email: z.ZodString;
23684
- clientId: z.ZodOptional<z.ZodString>;
23685
- channelId: z.ZodOptional<z.ZodString>;
23803
+ wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
23804
+ wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
23805
+ phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
23806
+ email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
23807
+ clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
23808
+ channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
23686
23809
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
23687
23810
  apiKey: z.ZodOptional<z.ZodString>;
23688
23811
  tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
23812
+ integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
23689
23813
  }, "strip", z.ZodTypeAny, {
23690
- email: string;
23691
- wabaExternalId: string;
23692
- phoneNumberId: string;
23693
- wabaBusinessId?: string | undefined;
23694
- clientId?: string | undefined;
23695
- channelId?: string | undefined;
23814
+ wabaBusinessId?: string | null | undefined;
23815
+ wabaExternalId?: string | null | undefined;
23816
+ phoneNumberId?: string | null | undefined;
23817
+ email?: string | null | undefined;
23818
+ clientId?: string | null | undefined;
23819
+ channelId?: string | null | undefined;
23696
23820
  status?: "active" | "pending" | undefined;
23697
23821
  apiKey?: string | undefined;
23698
23822
  tier?: "basic" | "regular" | "premium" | undefined;
23823
+ integrationType?: "meta" | "360dialog" | undefined;
23699
23824
  }, {
23700
- email: string;
23701
- wabaExternalId: string;
23702
- phoneNumberId: string;
23703
- wabaBusinessId?: string | undefined;
23704
- clientId?: string | undefined;
23705
- channelId?: string | undefined;
23825
+ wabaBusinessId?: string | null | undefined;
23826
+ wabaExternalId?: string | null | undefined;
23827
+ phoneNumberId?: string | null | undefined;
23828
+ email?: string | null | undefined;
23829
+ clientId?: string | null | undefined;
23830
+ channelId?: string | null | undefined;
23706
23831
  status?: "active" | "pending" | undefined;
23707
23832
  apiKey?: string | undefined;
23708
23833
  tier?: "basic" | "regular" | "premium" | undefined;
23834
+ integrationType?: "meta" | "360dialog" | undefined;
23709
23835
  }>>;
23710
23836
  vonageCredentials: z.ZodOptional<z.ZodObject<{
23711
23837
  mobileNumber: z.ZodString;
@@ -23730,15 +23856,16 @@ export declare const facebookFeedContract: {
23730
23856
  additionalCredentials?: any;
23731
23857
  senderId?: string | undefined;
23732
23858
  whatsapp?: {
23733
- email: string;
23734
- wabaExternalId: string;
23735
- phoneNumberId: string;
23736
- wabaBusinessId?: string | undefined;
23737
- clientId?: string | undefined;
23738
- channelId?: string | undefined;
23859
+ wabaBusinessId?: string | null | undefined;
23860
+ wabaExternalId?: string | null | undefined;
23861
+ phoneNumberId?: string | null | undefined;
23862
+ email?: string | null | undefined;
23863
+ clientId?: string | null | undefined;
23864
+ channelId?: string | null | undefined;
23739
23865
  status?: "active" | "pending" | undefined;
23740
23866
  apiKey?: string | undefined;
23741
23867
  tier?: "basic" | "regular" | "premium" | undefined;
23868
+ integrationType?: "meta" | "360dialog" | undefined;
23742
23869
  } | undefined;
23743
23870
  vonageCredentials?: {
23744
23871
  apiKey: string;
@@ -23755,15 +23882,16 @@ export declare const facebookFeedContract: {
23755
23882
  additionalCredentials?: any;
23756
23883
  senderId?: string | undefined;
23757
23884
  whatsapp?: {
23758
- email: string;
23759
- wabaExternalId: string;
23760
- phoneNumberId: string;
23761
- wabaBusinessId?: string | undefined;
23762
- clientId?: string | undefined;
23763
- channelId?: string | undefined;
23885
+ wabaBusinessId?: string | null | undefined;
23886
+ wabaExternalId?: string | null | undefined;
23887
+ phoneNumberId?: string | null | undefined;
23888
+ email?: string | null | undefined;
23889
+ clientId?: string | null | undefined;
23890
+ channelId?: string | null | undefined;
23764
23891
  status?: "active" | "pending" | undefined;
23765
23892
  apiKey?: string | undefined;
23766
23893
  tier?: "basic" | "regular" | "premium" | undefined;
23894
+ integrationType?: "meta" | "360dialog" | undefined;
23767
23895
  } | undefined;
23768
23896
  vonageCredentials?: {
23769
23897
  apiKey: string;
@@ -23810,15 +23938,16 @@ export declare const facebookFeedContract: {
23810
23938
  additionalCredentials?: any;
23811
23939
  senderId?: string | undefined;
23812
23940
  whatsapp?: {
23813
- email: string;
23814
- wabaExternalId: string;
23815
- phoneNumberId: string;
23816
- wabaBusinessId?: string | undefined;
23817
- clientId?: string | undefined;
23818
- channelId?: string | undefined;
23941
+ wabaBusinessId?: string | null | undefined;
23942
+ wabaExternalId?: string | null | undefined;
23943
+ phoneNumberId?: string | null | undefined;
23944
+ email?: string | null | undefined;
23945
+ clientId?: string | null | undefined;
23946
+ channelId?: string | null | undefined;
23819
23947
  status?: "active" | "pending" | undefined;
23820
23948
  apiKey?: string | undefined;
23821
23949
  tier?: "basic" | "regular" | "premium" | undefined;
23950
+ integrationType?: "meta" | "360dialog" | undefined;
23822
23951
  } | undefined;
23823
23952
  vonageCredentials?: {
23824
23953
  apiKey: string;
@@ -23853,15 +23982,16 @@ export declare const facebookFeedContract: {
23853
23982
  additionalCredentials?: any;
23854
23983
  senderId?: string | undefined;
23855
23984
  whatsapp?: {
23856
- email: string;
23857
- wabaExternalId: string;
23858
- phoneNumberId: string;
23859
- wabaBusinessId?: string | undefined;
23860
- clientId?: string | undefined;
23861
- channelId?: string | undefined;
23985
+ wabaBusinessId?: string | null | undefined;
23986
+ wabaExternalId?: string | null | undefined;
23987
+ phoneNumberId?: string | null | undefined;
23988
+ email?: string | null | undefined;
23989
+ clientId?: string | null | undefined;
23990
+ channelId?: string | null | undefined;
23862
23991
  status?: "active" | "pending" | undefined;
23863
23992
  apiKey?: string | undefined;
23864
23993
  tier?: "basic" | "regular" | "premium" | undefined;
23994
+ integrationType?: "meta" | "360dialog" | undefined;
23865
23995
  } | undefined;
23866
23996
  vonageCredentials?: {
23867
23997
  apiKey: string;
@@ -23899,15 +24029,16 @@ export declare const facebookFeedContract: {
23899
24029
  additionalCredentials?: any;
23900
24030
  senderId?: string | undefined;
23901
24031
  whatsapp?: {
23902
- email: string;
23903
- wabaExternalId: string;
23904
- phoneNumberId: string;
23905
- wabaBusinessId?: string | undefined;
23906
- clientId?: string | undefined;
23907
- channelId?: string | undefined;
24032
+ wabaBusinessId?: string | null | undefined;
24033
+ wabaExternalId?: string | null | undefined;
24034
+ phoneNumberId?: string | null | undefined;
24035
+ email?: string | null | undefined;
24036
+ clientId?: string | null | undefined;
24037
+ channelId?: string | null | undefined;
23908
24038
  status?: "active" | "pending" | undefined;
23909
24039
  apiKey?: string | undefined;
23910
24040
  tier?: "basic" | "regular" | "premium" | undefined;
24041
+ integrationType?: "meta" | "360dialog" | undefined;
23911
24042
  } | undefined;
23912
24043
  vonageCredentials?: {
23913
24044
  apiKey: string;
@@ -23945,15 +24076,16 @@ export declare const facebookFeedContract: {
23945
24076
  additionalCredentials?: any;
23946
24077
  senderId?: string | undefined;
23947
24078
  whatsapp?: {
23948
- email: string;
23949
- wabaExternalId: string;
23950
- phoneNumberId: string;
23951
- wabaBusinessId?: string | undefined;
23952
- clientId?: string | undefined;
23953
- channelId?: string | undefined;
24079
+ wabaBusinessId?: string | null | undefined;
24080
+ wabaExternalId?: string | null | undefined;
24081
+ phoneNumberId?: string | null | undefined;
24082
+ email?: string | null | undefined;
24083
+ clientId?: string | null | undefined;
24084
+ channelId?: string | null | undefined;
23954
24085
  status?: "active" | "pending" | undefined;
23955
24086
  apiKey?: string | undefined;
23956
24087
  tier?: "basic" | "regular" | "premium" | undefined;
24088
+ integrationType?: "meta" | "360dialog" | undefined;
23957
24089
  } | undefined;
23958
24090
  vonageCredentials?: {
23959
24091
  apiKey: string;
@@ -24143,15 +24275,16 @@ export declare const facebookFeedContract: {
24143
24275
  additionalCredentials?: any;
24144
24276
  senderId?: string | undefined;
24145
24277
  whatsapp?: {
24146
- email: string;
24147
- wabaExternalId: string;
24148
- phoneNumberId: string;
24149
- wabaBusinessId?: string | undefined;
24150
- clientId?: string | undefined;
24151
- channelId?: string | undefined;
24278
+ wabaBusinessId?: string | null | undefined;
24279
+ wabaExternalId?: string | null | undefined;
24280
+ phoneNumberId?: string | null | undefined;
24281
+ email?: string | null | undefined;
24282
+ clientId?: string | null | undefined;
24283
+ channelId?: string | null | undefined;
24152
24284
  status?: "active" | "pending" | undefined;
24153
24285
  apiKey?: string | undefined;
24154
24286
  tier?: "basic" | "regular" | "premium" | undefined;
24287
+ integrationType?: "meta" | "360dialog" | undefined;
24155
24288
  } | undefined;
24156
24289
  vonageCredentials?: {
24157
24290
  apiKey: string;
@@ -24223,15 +24356,16 @@ export declare const facebookFeedContract: {
24223
24356
  additionalCredentials?: any;
24224
24357
  senderId?: string | undefined;
24225
24358
  whatsapp?: {
24226
- email: string;
24227
- wabaExternalId: string;
24228
- phoneNumberId: string;
24229
- wabaBusinessId?: string | undefined;
24230
- clientId?: string | undefined;
24231
- channelId?: string | undefined;
24359
+ wabaBusinessId?: string | null | undefined;
24360
+ wabaExternalId?: string | null | undefined;
24361
+ phoneNumberId?: string | null | undefined;
24362
+ email?: string | null | undefined;
24363
+ clientId?: string | null | undefined;
24364
+ channelId?: string | null | undefined;
24232
24365
  status?: "active" | "pending" | undefined;
24233
24366
  apiKey?: string | undefined;
24234
24367
  tier?: "basic" | "regular" | "premium" | undefined;
24368
+ integrationType?: "meta" | "360dialog" | undefined;
24235
24369
  } | undefined;
24236
24370
  vonageCredentials?: {
24237
24371
  apiKey: string;