@kl1/contracts 1.2.39-uat → 1.2.40-uat

Sign up to get free protection for your applications and to get access to all the features.
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
@@ -66,35 +66,38 @@ export declare const viberContract: {
66
66
  additionalCredentials: z.ZodOptional<z.ZodAny>;
67
67
  senderId: z.ZodOptional<z.ZodString>;
68
68
  whatsapp: z.ZodOptional<z.ZodObject<{
69
- wabaBusinessId: z.ZodOptional<z.ZodString>;
70
- wabaExternalId: z.ZodString;
71
- phoneNumberId: z.ZodString;
72
- email: z.ZodString;
73
- clientId: z.ZodOptional<z.ZodString>;
74
- channelId: z.ZodOptional<z.ZodString>;
69
+ wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
70
+ wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
71
+ phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
72
+ email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
73
+ clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
74
+ channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
75
75
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
76
76
  apiKey: z.ZodOptional<z.ZodString>;
77
77
  tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
78
+ integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
78
79
  }, "strip", z.ZodTypeAny, {
79
- email: string;
80
- wabaExternalId: string;
81
- phoneNumberId: string;
82
- wabaBusinessId?: string | undefined;
83
- clientId?: string | undefined;
84
- channelId?: string | undefined;
80
+ wabaBusinessId?: string | null | undefined;
81
+ wabaExternalId?: string | null | undefined;
82
+ phoneNumberId?: string | null | undefined;
83
+ email?: string | null | undefined;
84
+ clientId?: string | null | undefined;
85
+ channelId?: string | null | undefined;
85
86
  status?: "active" | "pending" | undefined;
86
87
  apiKey?: string | undefined;
87
88
  tier?: "basic" | "regular" | "premium" | undefined;
89
+ integrationType?: "meta" | "360dialog" | undefined;
88
90
  }, {
89
- email: string;
90
- wabaExternalId: string;
91
- phoneNumberId: string;
92
- wabaBusinessId?: string | undefined;
93
- clientId?: string | undefined;
94
- channelId?: string | undefined;
91
+ wabaBusinessId?: string | null | undefined;
92
+ wabaExternalId?: string | null | undefined;
93
+ phoneNumberId?: string | null | undefined;
94
+ email?: string | null | undefined;
95
+ clientId?: string | null | undefined;
96
+ channelId?: string | null | undefined;
95
97
  status?: "active" | "pending" | undefined;
96
98
  apiKey?: string | undefined;
97
99
  tier?: "basic" | "regular" | "premium" | undefined;
100
+ integrationType?: "meta" | "360dialog" | undefined;
98
101
  }>>;
99
102
  vonageCredentials: z.ZodOptional<z.ZodObject<{
100
103
  mobileNumber: z.ZodString;
@@ -119,15 +122,16 @@ export declare const viberContract: {
119
122
  additionalCredentials?: any;
120
123
  senderId?: string | undefined;
121
124
  whatsapp?: {
122
- email: string;
123
- wabaExternalId: string;
124
- phoneNumberId: string;
125
- wabaBusinessId?: string | undefined;
126
- clientId?: string | undefined;
127
- channelId?: string | undefined;
125
+ wabaBusinessId?: string | null | undefined;
126
+ wabaExternalId?: string | null | undefined;
127
+ phoneNumberId?: string | null | undefined;
128
+ email?: string | null | undefined;
129
+ clientId?: string | null | undefined;
130
+ channelId?: string | null | undefined;
128
131
  status?: "active" | "pending" | undefined;
129
132
  apiKey?: string | undefined;
130
133
  tier?: "basic" | "regular" | "premium" | undefined;
134
+ integrationType?: "meta" | "360dialog" | undefined;
131
135
  } | undefined;
132
136
  vonageCredentials?: {
133
137
  apiKey: string;
@@ -144,15 +148,16 @@ export declare const viberContract: {
144
148
  additionalCredentials?: any;
145
149
  senderId?: string | undefined;
146
150
  whatsapp?: {
147
- email: string;
148
- wabaExternalId: string;
149
- phoneNumberId: string;
150
- wabaBusinessId?: string | undefined;
151
- clientId?: string | undefined;
152
- channelId?: string | undefined;
151
+ wabaBusinessId?: string | null | undefined;
152
+ wabaExternalId?: string | null | undefined;
153
+ phoneNumberId?: string | null | undefined;
154
+ email?: string | null | undefined;
155
+ clientId?: string | null | undefined;
156
+ channelId?: string | null | undefined;
153
157
  status?: "active" | "pending" | undefined;
154
158
  apiKey?: string | undefined;
155
159
  tier?: "basic" | "regular" | "premium" | undefined;
160
+ integrationType?: "meta" | "360dialog" | undefined;
156
161
  } | undefined;
157
162
  vonageCredentials?: {
158
163
  apiKey: string;
@@ -403,15 +408,16 @@ export declare const viberContract: {
403
408
  additionalCredentials?: any;
404
409
  senderId?: string | undefined;
405
410
  whatsapp?: {
406
- email: string;
407
- wabaExternalId: string;
408
- phoneNumberId: string;
409
- wabaBusinessId?: string | undefined;
410
- clientId?: string | undefined;
411
- channelId?: string | undefined;
411
+ wabaBusinessId?: string | null | undefined;
412
+ wabaExternalId?: string | null | undefined;
413
+ phoneNumberId?: string | null | undefined;
414
+ email?: string | null | undefined;
415
+ clientId?: string | null | undefined;
416
+ channelId?: string | null | undefined;
412
417
  status?: "active" | "pending" | undefined;
413
418
  apiKey?: string | undefined;
414
419
  tier?: "basic" | "regular" | "premium" | undefined;
420
+ integrationType?: "meta" | "360dialog" | undefined;
415
421
  } | undefined;
416
422
  vonageCredentials?: {
417
423
  apiKey: string;
@@ -493,15 +499,16 @@ export declare const viberContract: {
493
499
  additionalCredentials?: any;
494
500
  senderId?: string | undefined;
495
501
  whatsapp?: {
496
- email: string;
497
- wabaExternalId: string;
498
- phoneNumberId: string;
499
- wabaBusinessId?: string | undefined;
500
- clientId?: string | undefined;
501
- channelId?: string | undefined;
502
+ wabaBusinessId?: string | null | undefined;
503
+ wabaExternalId?: string | null | undefined;
504
+ phoneNumberId?: string | null | undefined;
505
+ email?: string | null | undefined;
506
+ clientId?: string | null | undefined;
507
+ channelId?: string | null | undefined;
502
508
  status?: "active" | "pending" | undefined;
503
509
  apiKey?: string | undefined;
504
510
  tier?: "basic" | "regular" | "premium" | undefined;
511
+ integrationType?: "meta" | "360dialog" | undefined;
505
512
  } | undefined;
506
513
  vonageCredentials?: {
507
514
  apiKey: string;
@@ -585,15 +592,16 @@ export declare const viberContract: {
585
592
  additionalCredentials?: any;
586
593
  senderId?: string | undefined;
587
594
  whatsapp?: {
588
- email: string;
589
- wabaExternalId: string;
590
- phoneNumberId: string;
591
- wabaBusinessId?: string | undefined;
592
- clientId?: string | undefined;
593
- channelId?: string | undefined;
595
+ wabaBusinessId?: string | null | undefined;
596
+ wabaExternalId?: string | null | undefined;
597
+ phoneNumberId?: string | null | undefined;
598
+ email?: string | null | undefined;
599
+ clientId?: string | null | undefined;
600
+ channelId?: string | null | undefined;
594
601
  status?: "active" | "pending" | undefined;
595
602
  apiKey?: string | undefined;
596
603
  tier?: "basic" | "regular" | "premium" | undefined;
604
+ integrationType?: "meta" | "360dialog" | undefined;
597
605
  } | undefined;
598
606
  vonageCredentials?: {
599
607
  apiKey: string;
@@ -678,15 +686,16 @@ export declare const viberContract: {
678
686
  additionalCredentials?: any;
679
687
  senderId?: string | undefined;
680
688
  whatsapp?: {
681
- email: string;
682
- wabaExternalId: string;
683
- phoneNumberId: string;
684
- wabaBusinessId?: string | undefined;
685
- clientId?: string | undefined;
686
- channelId?: string | undefined;
689
+ wabaBusinessId?: string | null | undefined;
690
+ wabaExternalId?: string | null | undefined;
691
+ phoneNumberId?: string | null | undefined;
692
+ email?: string | null | undefined;
693
+ clientId?: string | null | undefined;
694
+ channelId?: string | null | undefined;
687
695
  status?: "active" | "pending" | undefined;
688
696
  apiKey?: string | undefined;
689
697
  tier?: "basic" | "regular" | "premium" | undefined;
698
+ integrationType?: "meta" | "360dialog" | undefined;
690
699
  } | undefined;
691
700
  vonageCredentials?: {
692
701
  apiKey: string;
@@ -810,35 +819,38 @@ export declare const viberContract: {
810
819
  additionalCredentials: z.ZodOptional<z.ZodAny>;
811
820
  senderId: z.ZodOptional<z.ZodString>;
812
821
  whatsapp: z.ZodOptional<z.ZodObject<{
813
- wabaBusinessId: z.ZodOptional<z.ZodString>;
814
- wabaExternalId: z.ZodString;
815
- phoneNumberId: z.ZodString;
816
- email: z.ZodString;
817
- clientId: z.ZodOptional<z.ZodString>;
818
- channelId: z.ZodOptional<z.ZodString>;
822
+ wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
823
+ wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
824
+ phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
825
+ email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
826
+ clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
827
+ channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
819
828
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
820
829
  apiKey: z.ZodOptional<z.ZodString>;
821
830
  tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
831
+ integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
822
832
  }, "strip", z.ZodTypeAny, {
823
- email: string;
824
- wabaExternalId: string;
825
- phoneNumberId: string;
826
- wabaBusinessId?: string | undefined;
827
- clientId?: string | undefined;
828
- channelId?: string | undefined;
833
+ wabaBusinessId?: string | null | undefined;
834
+ wabaExternalId?: string | null | undefined;
835
+ phoneNumberId?: string | null | undefined;
836
+ email?: string | null | undefined;
837
+ clientId?: string | null | undefined;
838
+ channelId?: string | null | undefined;
829
839
  status?: "active" | "pending" | undefined;
830
840
  apiKey?: string | undefined;
831
841
  tier?: "basic" | "regular" | "premium" | undefined;
842
+ integrationType?: "meta" | "360dialog" | undefined;
832
843
  }, {
833
- email: string;
834
- wabaExternalId: string;
835
- phoneNumberId: string;
836
- wabaBusinessId?: string | undefined;
837
- clientId?: string | undefined;
838
- channelId?: string | undefined;
844
+ wabaBusinessId?: string | null | undefined;
845
+ wabaExternalId?: string | null | undefined;
846
+ phoneNumberId?: string | null | undefined;
847
+ email?: string | null | undefined;
848
+ clientId?: string | null | undefined;
849
+ channelId?: string | null | undefined;
839
850
  status?: "active" | "pending" | undefined;
840
851
  apiKey?: string | undefined;
841
852
  tier?: "basic" | "regular" | "premium" | undefined;
853
+ integrationType?: "meta" | "360dialog" | undefined;
842
854
  }>>;
843
855
  vonageCredentials: z.ZodOptional<z.ZodObject<{
844
856
  mobileNumber: z.ZodString;
@@ -863,15 +875,16 @@ export declare const viberContract: {
863
875
  additionalCredentials?: any;
864
876
  senderId?: string | undefined;
865
877
  whatsapp?: {
866
- email: string;
867
- wabaExternalId: string;
868
- phoneNumberId: string;
869
- wabaBusinessId?: string | undefined;
870
- clientId?: string | undefined;
871
- channelId?: string | undefined;
878
+ wabaBusinessId?: string | null | undefined;
879
+ wabaExternalId?: string | null | undefined;
880
+ phoneNumberId?: string | null | undefined;
881
+ email?: string | null | undefined;
882
+ clientId?: string | null | undefined;
883
+ channelId?: string | null | undefined;
872
884
  status?: "active" | "pending" | undefined;
873
885
  apiKey?: string | undefined;
874
886
  tier?: "basic" | "regular" | "premium" | undefined;
887
+ integrationType?: "meta" | "360dialog" | undefined;
875
888
  } | undefined;
876
889
  vonageCredentials?: {
877
890
  apiKey: string;
@@ -888,15 +901,16 @@ export declare const viberContract: {
888
901
  additionalCredentials?: any;
889
902
  senderId?: string | undefined;
890
903
  whatsapp?: {
891
- email: string;
892
- wabaExternalId: string;
893
- phoneNumberId: string;
894
- wabaBusinessId?: string | undefined;
895
- clientId?: string | undefined;
896
- channelId?: string | undefined;
904
+ wabaBusinessId?: string | null | undefined;
905
+ wabaExternalId?: string | null | undefined;
906
+ phoneNumberId?: string | null | undefined;
907
+ email?: string | null | undefined;
908
+ clientId?: string | null | undefined;
909
+ channelId?: string | null | undefined;
897
910
  status?: "active" | "pending" | undefined;
898
911
  apiKey?: string | undefined;
899
912
  tier?: "basic" | "regular" | "premium" | undefined;
913
+ integrationType?: "meta" | "360dialog" | undefined;
900
914
  } | undefined;
901
915
  vonageCredentials?: {
902
916
  apiKey: string;
@@ -1147,15 +1161,16 @@ export declare const viberContract: {
1147
1161
  additionalCredentials?: any;
1148
1162
  senderId?: string | undefined;
1149
1163
  whatsapp?: {
1150
- email: string;
1151
- wabaExternalId: string;
1152
- phoneNumberId: string;
1153
- wabaBusinessId?: string | undefined;
1154
- clientId?: string | undefined;
1155
- channelId?: string | undefined;
1164
+ wabaBusinessId?: string | null | undefined;
1165
+ wabaExternalId?: string | null | undefined;
1166
+ phoneNumberId?: string | null | undefined;
1167
+ email?: string | null | undefined;
1168
+ clientId?: string | null | undefined;
1169
+ channelId?: string | null | undefined;
1156
1170
  status?: "active" | "pending" | undefined;
1157
1171
  apiKey?: string | undefined;
1158
1172
  tier?: "basic" | "regular" | "premium" | undefined;
1173
+ integrationType?: "meta" | "360dialog" | undefined;
1159
1174
  } | undefined;
1160
1175
  vonageCredentials?: {
1161
1176
  apiKey: string;
@@ -1237,15 +1252,16 @@ export declare const viberContract: {
1237
1252
  additionalCredentials?: any;
1238
1253
  senderId?: string | undefined;
1239
1254
  whatsapp?: {
1240
- email: string;
1241
- wabaExternalId: string;
1242
- phoneNumberId: string;
1243
- wabaBusinessId?: string | undefined;
1244
- clientId?: string | undefined;
1245
- channelId?: string | undefined;
1255
+ wabaBusinessId?: string | null | undefined;
1256
+ wabaExternalId?: string | null | undefined;
1257
+ phoneNumberId?: string | null | undefined;
1258
+ email?: string | null | undefined;
1259
+ clientId?: string | null | undefined;
1260
+ channelId?: string | null | undefined;
1246
1261
  status?: "active" | "pending" | undefined;
1247
1262
  apiKey?: string | undefined;
1248
1263
  tier?: "basic" | "regular" | "premium" | undefined;
1264
+ integrationType?: "meta" | "360dialog" | undefined;
1249
1265
  } | undefined;
1250
1266
  vonageCredentials?: {
1251
1267
  apiKey: string;
@@ -1329,15 +1345,16 @@ export declare const viberContract: {
1329
1345
  additionalCredentials?: any;
1330
1346
  senderId?: string | undefined;
1331
1347
  whatsapp?: {
1332
- email: string;
1333
- wabaExternalId: string;
1334
- phoneNumberId: string;
1335
- wabaBusinessId?: string | undefined;
1336
- clientId?: string | undefined;
1337
- channelId?: string | undefined;
1348
+ wabaBusinessId?: string | null | undefined;
1349
+ wabaExternalId?: string | null | undefined;
1350
+ phoneNumberId?: string | null | undefined;
1351
+ email?: string | null | undefined;
1352
+ clientId?: string | null | undefined;
1353
+ channelId?: string | null | undefined;
1338
1354
  status?: "active" | "pending" | undefined;
1339
1355
  apiKey?: string | undefined;
1340
1356
  tier?: "basic" | "regular" | "premium" | undefined;
1357
+ integrationType?: "meta" | "360dialog" | undefined;
1341
1358
  } | undefined;
1342
1359
  vonageCredentials?: {
1343
1360
  apiKey: string;
@@ -1422,15 +1439,16 @@ export declare const viberContract: {
1422
1439
  additionalCredentials?: any;
1423
1440
  senderId?: string | undefined;
1424
1441
  whatsapp?: {
1425
- email: string;
1426
- wabaExternalId: string;
1427
- phoneNumberId: string;
1428
- wabaBusinessId?: string | undefined;
1429
- clientId?: string | undefined;
1430
- channelId?: string | undefined;
1442
+ wabaBusinessId?: string | null | undefined;
1443
+ wabaExternalId?: string | null | undefined;
1444
+ phoneNumberId?: string | null | undefined;
1445
+ email?: string | null | undefined;
1446
+ clientId?: string | null | undefined;
1447
+ channelId?: string | null | undefined;
1431
1448
  status?: "active" | "pending" | undefined;
1432
1449
  apiKey?: string | undefined;
1433
1450
  tier?: "basic" | "regular" | "premium" | undefined;
1451
+ integrationType?: "meta" | "360dialog" | undefined;
1434
1452
  } | undefined;
1435
1453
  vonageCredentials?: {
1436
1454
  apiKey: string;
@@ -1654,35 +1672,38 @@ export declare const viberContract: {
1654
1672
  additionalCredentials: z.ZodOptional<z.ZodAny>;
1655
1673
  senderId: z.ZodOptional<z.ZodString>;
1656
1674
  whatsapp: z.ZodOptional<z.ZodObject<{
1657
- wabaBusinessId: z.ZodOptional<z.ZodString>;
1658
- wabaExternalId: z.ZodString;
1659
- phoneNumberId: z.ZodString;
1660
- email: z.ZodString;
1661
- clientId: z.ZodOptional<z.ZodString>;
1662
- channelId: z.ZodOptional<z.ZodString>;
1675
+ wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1676
+ wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1677
+ phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1678
+ email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1679
+ clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1680
+ channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1663
1681
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
1664
1682
  apiKey: z.ZodOptional<z.ZodString>;
1665
1683
  tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
1684
+ integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
1666
1685
  }, "strip", z.ZodTypeAny, {
1667
- email: string;
1668
- wabaExternalId: string;
1669
- phoneNumberId: string;
1670
- wabaBusinessId?: string | undefined;
1671
- clientId?: string | undefined;
1672
- channelId?: string | undefined;
1686
+ wabaBusinessId?: string | null | undefined;
1687
+ wabaExternalId?: string | null | undefined;
1688
+ phoneNumberId?: string | null | undefined;
1689
+ email?: string | null | undefined;
1690
+ clientId?: string | null | undefined;
1691
+ channelId?: string | null | undefined;
1673
1692
  status?: "active" | "pending" | undefined;
1674
1693
  apiKey?: string | undefined;
1675
1694
  tier?: "basic" | "regular" | "premium" | undefined;
1695
+ integrationType?: "meta" | "360dialog" | undefined;
1676
1696
  }, {
1677
- email: string;
1678
- wabaExternalId: string;
1679
- phoneNumberId: string;
1680
- wabaBusinessId?: string | undefined;
1681
- clientId?: string | undefined;
1682
- channelId?: string | undefined;
1697
+ wabaBusinessId?: string | null | undefined;
1698
+ wabaExternalId?: string | null | undefined;
1699
+ phoneNumberId?: string | null | undefined;
1700
+ email?: string | null | undefined;
1701
+ clientId?: string | null | undefined;
1702
+ channelId?: string | null | undefined;
1683
1703
  status?: "active" | "pending" | undefined;
1684
1704
  apiKey?: string | undefined;
1685
1705
  tier?: "basic" | "regular" | "premium" | undefined;
1706
+ integrationType?: "meta" | "360dialog" | undefined;
1686
1707
  }>>;
1687
1708
  vonageCredentials: z.ZodOptional<z.ZodObject<{
1688
1709
  mobileNumber: z.ZodString;
@@ -1707,15 +1728,16 @@ export declare const viberContract: {
1707
1728
  additionalCredentials?: any;
1708
1729
  senderId?: string | undefined;
1709
1730
  whatsapp?: {
1710
- email: string;
1711
- wabaExternalId: string;
1712
- phoneNumberId: string;
1713
- wabaBusinessId?: string | undefined;
1714
- clientId?: string | undefined;
1715
- channelId?: string | undefined;
1731
+ wabaBusinessId?: string | null | undefined;
1732
+ wabaExternalId?: string | null | undefined;
1733
+ phoneNumberId?: string | null | undefined;
1734
+ email?: string | null | undefined;
1735
+ clientId?: string | null | undefined;
1736
+ channelId?: string | null | undefined;
1716
1737
  status?: "active" | "pending" | undefined;
1717
1738
  apiKey?: string | undefined;
1718
1739
  tier?: "basic" | "regular" | "premium" | undefined;
1740
+ integrationType?: "meta" | "360dialog" | undefined;
1719
1741
  } | undefined;
1720
1742
  vonageCredentials?: {
1721
1743
  apiKey: string;
@@ -1732,15 +1754,16 @@ export declare const viberContract: {
1732
1754
  additionalCredentials?: any;
1733
1755
  senderId?: string | undefined;
1734
1756
  whatsapp?: {
1735
- email: string;
1736
- wabaExternalId: string;
1737
- phoneNumberId: string;
1738
- wabaBusinessId?: string | undefined;
1739
- clientId?: string | undefined;
1740
- channelId?: string | undefined;
1757
+ wabaBusinessId?: string | null | undefined;
1758
+ wabaExternalId?: string | null | undefined;
1759
+ phoneNumberId?: string | null | undefined;
1760
+ email?: string | null | undefined;
1761
+ clientId?: string | null | undefined;
1762
+ channelId?: string | null | undefined;
1741
1763
  status?: "active" | "pending" | undefined;
1742
1764
  apiKey?: string | undefined;
1743
1765
  tier?: "basic" | "regular" | "premium" | undefined;
1766
+ integrationType?: "meta" | "360dialog" | undefined;
1744
1767
  } | undefined;
1745
1768
  vonageCredentials?: {
1746
1769
  apiKey: string;
@@ -1787,15 +1810,16 @@ export declare const viberContract: {
1787
1810
  additionalCredentials?: any;
1788
1811
  senderId?: string | undefined;
1789
1812
  whatsapp?: {
1790
- email: string;
1791
- wabaExternalId: string;
1792
- phoneNumberId: string;
1793
- wabaBusinessId?: string | undefined;
1794
- clientId?: string | undefined;
1795
- channelId?: string | undefined;
1813
+ wabaBusinessId?: string | null | undefined;
1814
+ wabaExternalId?: string | null | undefined;
1815
+ phoneNumberId?: string | null | undefined;
1816
+ email?: string | null | undefined;
1817
+ clientId?: string | null | undefined;
1818
+ channelId?: string | null | undefined;
1796
1819
  status?: "active" | "pending" | undefined;
1797
1820
  apiKey?: string | undefined;
1798
1821
  tier?: "basic" | "regular" | "premium" | undefined;
1822
+ integrationType?: "meta" | "360dialog" | undefined;
1799
1823
  } | undefined;
1800
1824
  vonageCredentials?: {
1801
1825
  apiKey: string;
@@ -1830,15 +1854,16 @@ export declare const viberContract: {
1830
1854
  additionalCredentials?: any;
1831
1855
  senderId?: string | undefined;
1832
1856
  whatsapp?: {
1833
- email: string;
1834
- wabaExternalId: string;
1835
- phoneNumberId: string;
1836
- wabaBusinessId?: string | undefined;
1837
- clientId?: string | undefined;
1838
- channelId?: string | undefined;
1857
+ wabaBusinessId?: string | null | undefined;
1858
+ wabaExternalId?: string | null | undefined;
1859
+ phoneNumberId?: string | null | undefined;
1860
+ email?: string | null | undefined;
1861
+ clientId?: string | null | undefined;
1862
+ channelId?: string | null | undefined;
1839
1863
  status?: "active" | "pending" | undefined;
1840
1864
  apiKey?: string | undefined;
1841
1865
  tier?: "basic" | "regular" | "premium" | undefined;
1866
+ integrationType?: "meta" | "360dialog" | undefined;
1842
1867
  } | undefined;
1843
1868
  vonageCredentials?: {
1844
1869
  apiKey: string;
@@ -1878,15 +1903,16 @@ export declare const viberContract: {
1878
1903
  additionalCredentials?: any;
1879
1904
  senderId?: string | undefined;
1880
1905
  whatsapp?: {
1881
- email: string;
1882
- wabaExternalId: string;
1883
- phoneNumberId: string;
1884
- wabaBusinessId?: string | undefined;
1885
- clientId?: string | undefined;
1886
- channelId?: string | undefined;
1906
+ wabaBusinessId?: string | null | undefined;
1907
+ wabaExternalId?: string | null | undefined;
1908
+ phoneNumberId?: string | null | undefined;
1909
+ email?: string | null | undefined;
1910
+ clientId?: string | null | undefined;
1911
+ channelId?: string | null | undefined;
1887
1912
  status?: "active" | "pending" | undefined;
1888
1913
  apiKey?: string | undefined;
1889
1914
  tier?: "basic" | "regular" | "premium" | undefined;
1915
+ integrationType?: "meta" | "360dialog" | undefined;
1890
1916
  } | undefined;
1891
1917
  vonageCredentials?: {
1892
1918
  apiKey: string;
@@ -1965,15 +1991,16 @@ export declare const viberContract: {
1965
1991
  additionalCredentials?: any;
1966
1992
  senderId?: string | undefined;
1967
1993
  whatsapp?: {
1968
- email: string;
1969
- wabaExternalId: string;
1970
- phoneNumberId: string;
1971
- wabaBusinessId?: string | undefined;
1972
- clientId?: string | undefined;
1973
- channelId?: string | undefined;
1994
+ wabaBusinessId?: string | null | undefined;
1995
+ wabaExternalId?: string | null | undefined;
1996
+ phoneNumberId?: string | null | undefined;
1997
+ email?: string | null | undefined;
1998
+ clientId?: string | null | undefined;
1999
+ channelId?: string | null | undefined;
1974
2000
  status?: "active" | "pending" | undefined;
1975
2001
  apiKey?: string | undefined;
1976
2002
  tier?: "basic" | "regular" | "premium" | undefined;
2003
+ integrationType?: "meta" | "360dialog" | undefined;
1977
2004
  } | undefined;
1978
2005
  vonageCredentials?: {
1979
2006
  apiKey: string;
@@ -2220,15 +2247,16 @@ export declare const viberContract: {
2220
2247
  additionalCredentials?: any;
2221
2248
  senderId?: string | undefined;
2222
2249
  whatsapp?: {
2223
- email: string;
2224
- wabaExternalId: string;
2225
- phoneNumberId: string;
2226
- wabaBusinessId?: string | undefined;
2227
- clientId?: string | undefined;
2228
- channelId?: string | undefined;
2250
+ wabaBusinessId?: string | null | undefined;
2251
+ wabaExternalId?: string | null | undefined;
2252
+ phoneNumberId?: string | null | undefined;
2253
+ email?: string | null | undefined;
2254
+ clientId?: string | null | undefined;
2255
+ channelId?: string | null | undefined;
2229
2256
  status?: "active" | "pending" | undefined;
2230
2257
  apiKey?: string | undefined;
2231
2258
  tier?: "basic" | "regular" | "premium" | undefined;
2259
+ integrationType?: "meta" | "360dialog" | undefined;
2232
2260
  } | undefined;
2233
2261
  vonageCredentials?: {
2234
2262
  apiKey: string;
@@ -2346,15 +2374,16 @@ export declare const viberContract: {
2346
2374
  additionalCredentials?: any;
2347
2375
  senderId?: string | undefined;
2348
2376
  whatsapp?: {
2349
- email: string;
2350
- wabaExternalId: string;
2351
- phoneNumberId: string;
2352
- wabaBusinessId?: string | undefined;
2353
- clientId?: string | undefined;
2354
- channelId?: string | undefined;
2377
+ wabaBusinessId?: string | null | undefined;
2378
+ wabaExternalId?: string | null | undefined;
2379
+ phoneNumberId?: string | null | undefined;
2380
+ email?: string | null | undefined;
2381
+ clientId?: string | null | undefined;
2382
+ channelId?: string | null | undefined;
2355
2383
  status?: "active" | "pending" | undefined;
2356
2384
  apiKey?: string | undefined;
2357
2385
  tier?: "basic" | "regular" | "premium" | undefined;
2386
+ integrationType?: "meta" | "360dialog" | undefined;
2358
2387
  } | undefined;
2359
2388
  vonageCredentials?: {
2360
2389
  apiKey: string;
@@ -4367,35 +4396,38 @@ export declare const viberContract: {
4367
4396
  additionalCredentials: z.ZodOptional<z.ZodAny>;
4368
4397
  senderId: z.ZodOptional<z.ZodString>;
4369
4398
  whatsapp: z.ZodOptional<z.ZodObject<{
4370
- wabaBusinessId: z.ZodOptional<z.ZodString>;
4371
- wabaExternalId: z.ZodString;
4372
- phoneNumberId: z.ZodString;
4373
- email: z.ZodString;
4374
- clientId: z.ZodOptional<z.ZodString>;
4375
- channelId: z.ZodOptional<z.ZodString>;
4399
+ wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
4400
+ wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
4401
+ phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
4402
+ email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
4403
+ clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
4404
+ channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
4376
4405
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
4377
4406
  apiKey: z.ZodOptional<z.ZodString>;
4378
4407
  tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
4408
+ integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
4379
4409
  }, "strip", z.ZodTypeAny, {
4380
- email: string;
4381
- wabaExternalId: string;
4382
- phoneNumberId: string;
4383
- wabaBusinessId?: string | undefined;
4384
- clientId?: string | undefined;
4385
- channelId?: string | undefined;
4410
+ wabaBusinessId?: string | null | undefined;
4411
+ wabaExternalId?: string | null | undefined;
4412
+ phoneNumberId?: string | null | undefined;
4413
+ email?: string | null | undefined;
4414
+ clientId?: string | null | undefined;
4415
+ channelId?: string | null | undefined;
4386
4416
  status?: "active" | "pending" | undefined;
4387
4417
  apiKey?: string | undefined;
4388
4418
  tier?: "basic" | "regular" | "premium" | undefined;
4419
+ integrationType?: "meta" | "360dialog" | undefined;
4389
4420
  }, {
4390
- email: string;
4391
- wabaExternalId: string;
4392
- phoneNumberId: string;
4393
- wabaBusinessId?: string | undefined;
4394
- clientId?: string | undefined;
4395
- channelId?: string | undefined;
4421
+ wabaBusinessId?: string | null | undefined;
4422
+ wabaExternalId?: string | null | undefined;
4423
+ phoneNumberId?: string | null | undefined;
4424
+ email?: string | null | undefined;
4425
+ clientId?: string | null | undefined;
4426
+ channelId?: string | null | undefined;
4396
4427
  status?: "active" | "pending" | undefined;
4397
4428
  apiKey?: string | undefined;
4398
4429
  tier?: "basic" | "regular" | "premium" | undefined;
4430
+ integrationType?: "meta" | "360dialog" | undefined;
4399
4431
  }>>;
4400
4432
  vonageCredentials: z.ZodOptional<z.ZodObject<{
4401
4433
  mobileNumber: z.ZodString;
@@ -4420,15 +4452,16 @@ export declare const viberContract: {
4420
4452
  additionalCredentials?: any;
4421
4453
  senderId?: string | undefined;
4422
4454
  whatsapp?: {
4423
- email: string;
4424
- wabaExternalId: string;
4425
- phoneNumberId: string;
4426
- wabaBusinessId?: string | undefined;
4427
- clientId?: string | undefined;
4428
- channelId?: string | undefined;
4455
+ wabaBusinessId?: string | null | undefined;
4456
+ wabaExternalId?: string | null | undefined;
4457
+ phoneNumberId?: string | null | undefined;
4458
+ email?: string | null | undefined;
4459
+ clientId?: string | null | undefined;
4460
+ channelId?: string | null | undefined;
4429
4461
  status?: "active" | "pending" | undefined;
4430
4462
  apiKey?: string | undefined;
4431
4463
  tier?: "basic" | "regular" | "premium" | undefined;
4464
+ integrationType?: "meta" | "360dialog" | undefined;
4432
4465
  } | undefined;
4433
4466
  vonageCredentials?: {
4434
4467
  apiKey: string;
@@ -4445,15 +4478,16 @@ export declare const viberContract: {
4445
4478
  additionalCredentials?: any;
4446
4479
  senderId?: string | undefined;
4447
4480
  whatsapp?: {
4448
- email: string;
4449
- wabaExternalId: string;
4450
- phoneNumberId: string;
4451
- wabaBusinessId?: string | undefined;
4452
- clientId?: string | undefined;
4453
- channelId?: string | undefined;
4481
+ wabaBusinessId?: string | null | undefined;
4482
+ wabaExternalId?: string | null | undefined;
4483
+ phoneNumberId?: string | null | undefined;
4484
+ email?: string | null | undefined;
4485
+ clientId?: string | null | undefined;
4486
+ channelId?: string | null | undefined;
4454
4487
  status?: "active" | "pending" | undefined;
4455
4488
  apiKey?: string | undefined;
4456
4489
  tier?: "basic" | "regular" | "premium" | undefined;
4490
+ integrationType?: "meta" | "360dialog" | undefined;
4457
4491
  } | undefined;
4458
4492
  vonageCredentials?: {
4459
4493
  apiKey: string;
@@ -4704,15 +4738,16 @@ export declare const viberContract: {
4704
4738
  additionalCredentials?: any;
4705
4739
  senderId?: string | undefined;
4706
4740
  whatsapp?: {
4707
- email: string;
4708
- wabaExternalId: string;
4709
- phoneNumberId: string;
4710
- wabaBusinessId?: string | undefined;
4711
- clientId?: string | undefined;
4712
- channelId?: string | undefined;
4741
+ wabaBusinessId?: string | null | undefined;
4742
+ wabaExternalId?: string | null | undefined;
4743
+ phoneNumberId?: string | null | undefined;
4744
+ email?: string | null | undefined;
4745
+ clientId?: string | null | undefined;
4746
+ channelId?: string | null | undefined;
4713
4747
  status?: "active" | "pending" | undefined;
4714
4748
  apiKey?: string | undefined;
4715
4749
  tier?: "basic" | "regular" | "premium" | undefined;
4750
+ integrationType?: "meta" | "360dialog" | undefined;
4716
4751
  } | undefined;
4717
4752
  vonageCredentials?: {
4718
4753
  apiKey: string;
@@ -4794,15 +4829,16 @@ export declare const viberContract: {
4794
4829
  additionalCredentials?: any;
4795
4830
  senderId?: string | undefined;
4796
4831
  whatsapp?: {
4797
- email: string;
4798
- wabaExternalId: string;
4799
- phoneNumberId: string;
4800
- wabaBusinessId?: string | undefined;
4801
- clientId?: string | undefined;
4802
- channelId?: string | undefined;
4832
+ wabaBusinessId?: string | null | undefined;
4833
+ wabaExternalId?: string | null | undefined;
4834
+ phoneNumberId?: string | null | undefined;
4835
+ email?: string | null | undefined;
4836
+ clientId?: string | null | undefined;
4837
+ channelId?: string | null | undefined;
4803
4838
  status?: "active" | "pending" | undefined;
4804
4839
  apiKey?: string | undefined;
4805
4840
  tier?: "basic" | "regular" | "premium" | undefined;
4841
+ integrationType?: "meta" | "360dialog" | undefined;
4806
4842
  } | undefined;
4807
4843
  vonageCredentials?: {
4808
4844
  apiKey: string;
@@ -5448,15 +5484,16 @@ export declare const viberContract: {
5448
5484
  additionalCredentials?: any;
5449
5485
  senderId?: string | undefined;
5450
5486
  whatsapp?: {
5451
- email: string;
5452
- wabaExternalId: string;
5453
- phoneNumberId: string;
5454
- wabaBusinessId?: string | undefined;
5455
- clientId?: string | undefined;
5456
- channelId?: string | undefined;
5487
+ wabaBusinessId?: string | null | undefined;
5488
+ wabaExternalId?: string | null | undefined;
5489
+ phoneNumberId?: string | null | undefined;
5490
+ email?: string | null | undefined;
5491
+ clientId?: string | null | undefined;
5492
+ channelId?: string | null | undefined;
5457
5493
  status?: "active" | "pending" | undefined;
5458
5494
  apiKey?: string | undefined;
5459
5495
  tier?: "basic" | "regular" | "premium" | undefined;
5496
+ integrationType?: "meta" | "360dialog" | undefined;
5460
5497
  } | undefined;
5461
5498
  vonageCredentials?: {
5462
5499
  apiKey: string;
@@ -5871,15 +5908,16 @@ export declare const viberContract: {
5871
5908
  additionalCredentials?: any;
5872
5909
  senderId?: string | undefined;
5873
5910
  whatsapp?: {
5874
- email: string;
5875
- wabaExternalId: string;
5876
- phoneNumberId: string;
5877
- wabaBusinessId?: string | undefined;
5878
- clientId?: string | undefined;
5879
- channelId?: string | undefined;
5911
+ wabaBusinessId?: string | null | undefined;
5912
+ wabaExternalId?: string | null | undefined;
5913
+ phoneNumberId?: string | null | undefined;
5914
+ email?: string | null | undefined;
5915
+ clientId?: string | null | undefined;
5916
+ channelId?: string | null | undefined;
5880
5917
  status?: "active" | "pending" | undefined;
5881
5918
  apiKey?: string | undefined;
5882
5919
  tier?: "basic" | "regular" | "premium" | undefined;
5920
+ integrationType?: "meta" | "360dialog" | undefined;
5883
5921
  } | undefined;
5884
5922
  vonageCredentials?: {
5885
5923
  apiKey: string;
@@ -9010,35 +9048,38 @@ export declare const viberContract: {
9010
9048
  additionalCredentials: z.ZodOptional<z.ZodAny>;
9011
9049
  senderId: z.ZodOptional<z.ZodString>;
9012
9050
  whatsapp: z.ZodOptional<z.ZodObject<{
9013
- wabaBusinessId: z.ZodOptional<z.ZodString>;
9014
- wabaExternalId: z.ZodString;
9015
- phoneNumberId: z.ZodString;
9016
- email: z.ZodString;
9017
- clientId: z.ZodOptional<z.ZodString>;
9018
- channelId: z.ZodOptional<z.ZodString>;
9051
+ wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
9052
+ wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
9053
+ phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
9054
+ email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
9055
+ clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
9056
+ channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
9019
9057
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
9020
9058
  apiKey: z.ZodOptional<z.ZodString>;
9021
9059
  tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
9060
+ integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
9022
9061
  }, "strip", z.ZodTypeAny, {
9023
- email: string;
9024
- wabaExternalId: string;
9025
- phoneNumberId: string;
9026
- wabaBusinessId?: string | undefined;
9027
- clientId?: string | undefined;
9028
- channelId?: string | undefined;
9062
+ wabaBusinessId?: string | null | undefined;
9063
+ wabaExternalId?: string | null | undefined;
9064
+ phoneNumberId?: string | null | undefined;
9065
+ email?: string | null | undefined;
9066
+ clientId?: string | null | undefined;
9067
+ channelId?: string | null | undefined;
9029
9068
  status?: "active" | "pending" | undefined;
9030
9069
  apiKey?: string | undefined;
9031
9070
  tier?: "basic" | "regular" | "premium" | undefined;
9071
+ integrationType?: "meta" | "360dialog" | undefined;
9032
9072
  }, {
9033
- email: string;
9034
- wabaExternalId: string;
9035
- phoneNumberId: string;
9036
- wabaBusinessId?: string | undefined;
9037
- clientId?: string | undefined;
9038
- channelId?: string | undefined;
9073
+ wabaBusinessId?: string | null | undefined;
9074
+ wabaExternalId?: string | null | undefined;
9075
+ phoneNumberId?: string | null | undefined;
9076
+ email?: string | null | undefined;
9077
+ clientId?: string | null | undefined;
9078
+ channelId?: string | null | undefined;
9039
9079
  status?: "active" | "pending" | undefined;
9040
9080
  apiKey?: string | undefined;
9041
9081
  tier?: "basic" | "regular" | "premium" | undefined;
9082
+ integrationType?: "meta" | "360dialog" | undefined;
9042
9083
  }>>;
9043
9084
  vonageCredentials: z.ZodOptional<z.ZodObject<{
9044
9085
  mobileNumber: z.ZodString;
@@ -9063,15 +9104,16 @@ export declare const viberContract: {
9063
9104
  additionalCredentials?: any;
9064
9105
  senderId?: string | undefined;
9065
9106
  whatsapp?: {
9066
- email: string;
9067
- wabaExternalId: string;
9068
- phoneNumberId: string;
9069
- wabaBusinessId?: string | undefined;
9070
- clientId?: string | undefined;
9071
- channelId?: string | undefined;
9107
+ wabaBusinessId?: string | null | undefined;
9108
+ wabaExternalId?: string | null | undefined;
9109
+ phoneNumberId?: string | null | undefined;
9110
+ email?: string | null | undefined;
9111
+ clientId?: string | null | undefined;
9112
+ channelId?: string | null | undefined;
9072
9113
  status?: "active" | "pending" | undefined;
9073
9114
  apiKey?: string | undefined;
9074
9115
  tier?: "basic" | "regular" | "premium" | undefined;
9116
+ integrationType?: "meta" | "360dialog" | undefined;
9075
9117
  } | undefined;
9076
9118
  vonageCredentials?: {
9077
9119
  apiKey: string;
@@ -9088,15 +9130,16 @@ export declare const viberContract: {
9088
9130
  additionalCredentials?: any;
9089
9131
  senderId?: string | undefined;
9090
9132
  whatsapp?: {
9091
- email: string;
9092
- wabaExternalId: string;
9093
- phoneNumberId: string;
9094
- wabaBusinessId?: string | undefined;
9095
- clientId?: string | undefined;
9096
- channelId?: string | undefined;
9133
+ wabaBusinessId?: string | null | undefined;
9134
+ wabaExternalId?: string | null | undefined;
9135
+ phoneNumberId?: string | null | undefined;
9136
+ email?: string | null | undefined;
9137
+ clientId?: string | null | undefined;
9138
+ channelId?: string | null | undefined;
9097
9139
  status?: "active" | "pending" | undefined;
9098
9140
  apiKey?: string | undefined;
9099
9141
  tier?: "basic" | "regular" | "premium" | undefined;
9142
+ integrationType?: "meta" | "360dialog" | undefined;
9100
9143
  } | undefined;
9101
9144
  vonageCredentials?: {
9102
9145
  apiKey: string;
@@ -9347,15 +9390,16 @@ export declare const viberContract: {
9347
9390
  additionalCredentials?: any;
9348
9391
  senderId?: string | undefined;
9349
9392
  whatsapp?: {
9350
- email: string;
9351
- wabaExternalId: string;
9352
- phoneNumberId: string;
9353
- wabaBusinessId?: string | undefined;
9354
- clientId?: string | undefined;
9355
- channelId?: string | undefined;
9393
+ wabaBusinessId?: string | null | undefined;
9394
+ wabaExternalId?: string | null | undefined;
9395
+ phoneNumberId?: string | null | undefined;
9396
+ email?: string | null | undefined;
9397
+ clientId?: string | null | undefined;
9398
+ channelId?: string | null | undefined;
9356
9399
  status?: "active" | "pending" | undefined;
9357
9400
  apiKey?: string | undefined;
9358
9401
  tier?: "basic" | "regular" | "premium" | undefined;
9402
+ integrationType?: "meta" | "360dialog" | undefined;
9359
9403
  } | undefined;
9360
9404
  vonageCredentials?: {
9361
9405
  apiKey: string;
@@ -9437,15 +9481,16 @@ export declare const viberContract: {
9437
9481
  additionalCredentials?: any;
9438
9482
  senderId?: string | undefined;
9439
9483
  whatsapp?: {
9440
- email: string;
9441
- wabaExternalId: string;
9442
- phoneNumberId: string;
9443
- wabaBusinessId?: string | undefined;
9444
- clientId?: string | undefined;
9445
- channelId?: string | undefined;
9484
+ wabaBusinessId?: string | null | undefined;
9485
+ wabaExternalId?: string | null | undefined;
9486
+ phoneNumberId?: string | null | undefined;
9487
+ email?: string | null | undefined;
9488
+ clientId?: string | null | undefined;
9489
+ channelId?: string | null | undefined;
9446
9490
  status?: "active" | "pending" | undefined;
9447
9491
  apiKey?: string | undefined;
9448
9492
  tier?: "basic" | "regular" | "premium" | undefined;
9493
+ integrationType?: "meta" | "360dialog" | undefined;
9449
9494
  } | undefined;
9450
9495
  vonageCredentials?: {
9451
9496
  apiKey: string;
@@ -10091,15 +10136,16 @@ export declare const viberContract: {
10091
10136
  additionalCredentials?: any;
10092
10137
  senderId?: string | undefined;
10093
10138
  whatsapp?: {
10094
- email: string;
10095
- wabaExternalId: string;
10096
- phoneNumberId: string;
10097
- wabaBusinessId?: string | undefined;
10098
- clientId?: string | undefined;
10099
- channelId?: string | undefined;
10139
+ wabaBusinessId?: string | null | undefined;
10140
+ wabaExternalId?: string | null | undefined;
10141
+ phoneNumberId?: string | null | undefined;
10142
+ email?: string | null | undefined;
10143
+ clientId?: string | null | undefined;
10144
+ channelId?: string | null | undefined;
10100
10145
  status?: "active" | "pending" | undefined;
10101
10146
  apiKey?: string | undefined;
10102
10147
  tier?: "basic" | "regular" | "premium" | undefined;
10148
+ integrationType?: "meta" | "360dialog" | undefined;
10103
10149
  } | undefined;
10104
10150
  vonageCredentials?: {
10105
10151
  apiKey: string;
@@ -10514,15 +10560,16 @@ export declare const viberContract: {
10514
10560
  additionalCredentials?: any;
10515
10561
  senderId?: string | undefined;
10516
10562
  whatsapp?: {
10517
- email: string;
10518
- wabaExternalId: string;
10519
- phoneNumberId: string;
10520
- wabaBusinessId?: string | undefined;
10521
- clientId?: string | undefined;
10522
- channelId?: string | undefined;
10563
+ wabaBusinessId?: string | null | undefined;
10564
+ wabaExternalId?: string | null | undefined;
10565
+ phoneNumberId?: string | null | undefined;
10566
+ email?: string | null | undefined;
10567
+ clientId?: string | null | undefined;
10568
+ channelId?: string | null | undefined;
10523
10569
  status?: "active" | "pending" | undefined;
10524
10570
  apiKey?: string | undefined;
10525
10571
  tier?: "basic" | "regular" | "premium" | undefined;
10572
+ integrationType?: "meta" | "360dialog" | undefined;
10526
10573
  } | undefined;
10527
10574
  vonageCredentials?: {
10528
10575
  apiKey: string;
@@ -12710,15 +12757,16 @@ export declare const viberContract: {
12710
12757
  additionalCredentials?: any;
12711
12758
  senderId?: string | undefined;
12712
12759
  whatsapp?: {
12713
- email: string;
12714
- wabaExternalId: string;
12715
- phoneNumberId: string;
12716
- wabaBusinessId?: string | undefined;
12717
- clientId?: string | undefined;
12718
- channelId?: string | undefined;
12760
+ wabaBusinessId?: string | null | undefined;
12761
+ wabaExternalId?: string | null | undefined;
12762
+ phoneNumberId?: string | null | undefined;
12763
+ email?: string | null | undefined;
12764
+ clientId?: string | null | undefined;
12765
+ channelId?: string | null | undefined;
12719
12766
  status?: "active" | "pending" | undefined;
12720
12767
  apiKey?: string | undefined;
12721
12768
  tier?: "basic" | "regular" | "premium" | undefined;
12769
+ integrationType?: "meta" | "360dialog" | undefined;
12722
12770
  } | undefined;
12723
12771
  vonageCredentials?: {
12724
12772
  apiKey: string;
@@ -13470,15 +13518,16 @@ export declare const viberContract: {
13470
13518
  additionalCredentials?: any;
13471
13519
  senderId?: string | undefined;
13472
13520
  whatsapp?: {
13473
- email: string;
13474
- wabaExternalId: string;
13475
- phoneNumberId: string;
13476
- wabaBusinessId?: string | undefined;
13477
- clientId?: string | undefined;
13478
- channelId?: string | undefined;
13521
+ wabaBusinessId?: string | null | undefined;
13522
+ wabaExternalId?: string | null | undefined;
13523
+ phoneNumberId?: string | null | undefined;
13524
+ email?: string | null | undefined;
13525
+ clientId?: string | null | undefined;
13526
+ channelId?: string | null | undefined;
13479
13527
  status?: "active" | "pending" | undefined;
13480
13528
  apiKey?: string | undefined;
13481
13529
  tier?: "basic" | "regular" | "premium" | undefined;
13530
+ integrationType?: "meta" | "360dialog" | undefined;
13482
13531
  } | undefined;
13483
13532
  vonageCredentials?: {
13484
13533
  apiKey: string;
@@ -14231,15 +14280,16 @@ export declare const viberContract: {
14231
14280
  additionalCredentials?: any;
14232
14281
  senderId?: string | undefined;
14233
14282
  whatsapp?: {
14234
- email: string;
14235
- wabaExternalId: string;
14236
- phoneNumberId: string;
14237
- wabaBusinessId?: string | undefined;
14238
- clientId?: string | undefined;
14239
- channelId?: string | undefined;
14283
+ wabaBusinessId?: string | null | undefined;
14284
+ wabaExternalId?: string | null | undefined;
14285
+ phoneNumberId?: string | null | undefined;
14286
+ email?: string | null | undefined;
14287
+ clientId?: string | null | undefined;
14288
+ channelId?: string | null | undefined;
14240
14289
  status?: "active" | "pending" | undefined;
14241
14290
  apiKey?: string | undefined;
14242
14291
  tier?: "basic" | "regular" | "premium" | undefined;
14292
+ integrationType?: "meta" | "360dialog" | undefined;
14243
14293
  } | undefined;
14244
14294
  vonageCredentials?: {
14245
14295
  apiKey: string;
@@ -14991,15 +15041,16 @@ export declare const viberContract: {
14991
15041
  additionalCredentials?: any;
14992
15042
  senderId?: string | undefined;
14993
15043
  whatsapp?: {
14994
- email: string;
14995
- wabaExternalId: string;
14996
- phoneNumberId: string;
14997
- wabaBusinessId?: string | undefined;
14998
- clientId?: string | undefined;
14999
- channelId?: string | undefined;
15044
+ wabaBusinessId?: string | null | undefined;
15045
+ wabaExternalId?: string | null | undefined;
15046
+ phoneNumberId?: string | null | undefined;
15047
+ email?: string | null | undefined;
15048
+ clientId?: string | null | undefined;
15049
+ channelId?: string | null | undefined;
15000
15050
  status?: "active" | "pending" | undefined;
15001
15051
  apiKey?: string | undefined;
15002
15052
  tier?: "basic" | "regular" | "premium" | undefined;
15053
+ integrationType?: "meta" | "360dialog" | undefined;
15003
15054
  } | undefined;
15004
15055
  vonageCredentials?: {
15005
15056
  apiKey: string;
@@ -15752,15 +15803,16 @@ export declare const viberContract: {
15752
15803
  additionalCredentials?: any;
15753
15804
  senderId?: string | undefined;
15754
15805
  whatsapp?: {
15755
- email: string;
15756
- wabaExternalId: string;
15757
- phoneNumberId: string;
15758
- wabaBusinessId?: string | undefined;
15759
- clientId?: string | undefined;
15760
- channelId?: string | undefined;
15806
+ wabaBusinessId?: string | null | undefined;
15807
+ wabaExternalId?: string | null | undefined;
15808
+ phoneNumberId?: string | null | undefined;
15809
+ email?: string | null | undefined;
15810
+ clientId?: string | null | undefined;
15811
+ channelId?: string | null | undefined;
15761
15812
  status?: "active" | "pending" | undefined;
15762
15813
  apiKey?: string | undefined;
15763
15814
  tier?: "basic" | "regular" | "premium" | undefined;
15815
+ integrationType?: "meta" | "360dialog" | undefined;
15764
15816
  } | undefined;
15765
15817
  vonageCredentials?: {
15766
15818
  apiKey: string;
@@ -16512,15 +16564,16 @@ export declare const viberContract: {
16512
16564
  additionalCredentials?: any;
16513
16565
  senderId?: string | undefined;
16514
16566
  whatsapp?: {
16515
- email: string;
16516
- wabaExternalId: string;
16517
- phoneNumberId: string;
16518
- wabaBusinessId?: string | undefined;
16519
- clientId?: string | undefined;
16520
- channelId?: string | undefined;
16567
+ wabaBusinessId?: string | null | undefined;
16568
+ wabaExternalId?: string | null | undefined;
16569
+ phoneNumberId?: string | null | undefined;
16570
+ email?: string | null | undefined;
16571
+ clientId?: string | null | undefined;
16572
+ channelId?: string | null | undefined;
16521
16573
  status?: "active" | "pending" | undefined;
16522
16574
  apiKey?: string | undefined;
16523
16575
  tier?: "basic" | "regular" | "premium" | undefined;
16576
+ integrationType?: "meta" | "360dialog" | undefined;
16524
16577
  } | undefined;
16525
16578
  vonageCredentials?: {
16526
16579
  apiKey: string;
@@ -17275,15 +17328,16 @@ export declare const viberContract: {
17275
17328
  additionalCredentials?: any;
17276
17329
  senderId?: string | undefined;
17277
17330
  whatsapp?: {
17278
- email: string;
17279
- wabaExternalId: string;
17280
- phoneNumberId: string;
17281
- wabaBusinessId?: string | undefined;
17282
- clientId?: string | undefined;
17283
- channelId?: string | undefined;
17331
+ wabaBusinessId?: string | null | undefined;
17332
+ wabaExternalId?: string | null | undefined;
17333
+ phoneNumberId?: string | null | undefined;
17334
+ email?: string | null | undefined;
17335
+ clientId?: string | null | undefined;
17336
+ channelId?: string | null | undefined;
17284
17337
  status?: "active" | "pending" | undefined;
17285
17338
  apiKey?: string | undefined;
17286
17339
  tier?: "basic" | "regular" | "premium" | undefined;
17340
+ integrationType?: "meta" | "360dialog" | undefined;
17287
17341
  } | undefined;
17288
17342
  vonageCredentials?: {
17289
17343
  apiKey: string;
@@ -18035,15 +18089,16 @@ export declare const viberContract: {
18035
18089
  additionalCredentials?: any;
18036
18090
  senderId?: string | undefined;
18037
18091
  whatsapp?: {
18038
- email: string;
18039
- wabaExternalId: string;
18040
- phoneNumberId: string;
18041
- wabaBusinessId?: string | undefined;
18042
- clientId?: string | undefined;
18043
- channelId?: string | undefined;
18092
+ wabaBusinessId?: string | null | undefined;
18093
+ wabaExternalId?: string | null | undefined;
18094
+ phoneNumberId?: string | null | undefined;
18095
+ email?: string | null | undefined;
18096
+ clientId?: string | null | undefined;
18097
+ channelId?: string | null | undefined;
18044
18098
  status?: "active" | "pending" | undefined;
18045
18099
  apiKey?: string | undefined;
18046
18100
  tier?: "basic" | "regular" | "premium" | undefined;
18101
+ integrationType?: "meta" | "360dialog" | undefined;
18047
18102
  } | undefined;
18048
18103
  vonageCredentials?: {
18049
18104
  apiKey: string;
@@ -18799,15 +18854,16 @@ export declare const viberContract: {
18799
18854
  additionalCredentials?: any;
18800
18855
  senderId?: string | undefined;
18801
18856
  whatsapp?: {
18802
- email: string;
18803
- wabaExternalId: string;
18804
- phoneNumberId: string;
18805
- wabaBusinessId?: string | undefined;
18806
- clientId?: string | undefined;
18807
- channelId?: string | undefined;
18857
+ wabaBusinessId?: string | null | undefined;
18858
+ wabaExternalId?: string | null | undefined;
18859
+ phoneNumberId?: string | null | undefined;
18860
+ email?: string | null | undefined;
18861
+ clientId?: string | null | undefined;
18862
+ channelId?: string | null | undefined;
18808
18863
  status?: "active" | "pending" | undefined;
18809
18864
  apiKey?: string | undefined;
18810
18865
  tier?: "basic" | "regular" | "premium" | undefined;
18866
+ integrationType?: "meta" | "360dialog" | undefined;
18811
18867
  } | undefined;
18812
18868
  vonageCredentials?: {
18813
18869
  apiKey: string;
@@ -19559,15 +19615,16 @@ export declare const viberContract: {
19559
19615
  additionalCredentials?: any;
19560
19616
  senderId?: string | undefined;
19561
19617
  whatsapp?: {
19562
- email: string;
19563
- wabaExternalId: string;
19564
- phoneNumberId: string;
19565
- wabaBusinessId?: string | undefined;
19566
- clientId?: string | undefined;
19567
- channelId?: string | undefined;
19618
+ wabaBusinessId?: string | null | undefined;
19619
+ wabaExternalId?: string | null | undefined;
19620
+ phoneNumberId?: string | null | undefined;
19621
+ email?: string | null | undefined;
19622
+ clientId?: string | null | undefined;
19623
+ channelId?: string | null | undefined;
19568
19624
  status?: "active" | "pending" | undefined;
19569
19625
  apiKey?: string | undefined;
19570
19626
  tier?: "basic" | "regular" | "premium" | undefined;
19627
+ integrationType?: "meta" | "360dialog" | undefined;
19571
19628
  } | undefined;
19572
19629
  vonageCredentials?: {
19573
19630
  apiKey: string;
@@ -20241,35 +20298,38 @@ export declare const viberContract: {
20241
20298
  additionalCredentials: z.ZodOptional<z.ZodAny>;
20242
20299
  senderId: z.ZodOptional<z.ZodString>;
20243
20300
  whatsapp: z.ZodOptional<z.ZodObject<{
20244
- wabaBusinessId: z.ZodOptional<z.ZodString>;
20245
- wabaExternalId: z.ZodString;
20246
- phoneNumberId: z.ZodString;
20247
- email: z.ZodString;
20248
- clientId: z.ZodOptional<z.ZodString>;
20249
- channelId: z.ZodOptional<z.ZodString>;
20301
+ wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
20302
+ wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
20303
+ phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
20304
+ email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
20305
+ clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
20306
+ channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
20250
20307
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
20251
20308
  apiKey: z.ZodOptional<z.ZodString>;
20252
20309
  tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
20310
+ integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
20253
20311
  }, "strip", z.ZodTypeAny, {
20254
- email: string;
20255
- wabaExternalId: string;
20256
- phoneNumberId: string;
20257
- wabaBusinessId?: string | undefined;
20258
- clientId?: string | undefined;
20259
- channelId?: string | undefined;
20312
+ wabaBusinessId?: string | null | undefined;
20313
+ wabaExternalId?: string | null | undefined;
20314
+ phoneNumberId?: string | null | undefined;
20315
+ email?: string | null | undefined;
20316
+ clientId?: string | null | undefined;
20317
+ channelId?: string | null | undefined;
20260
20318
  status?: "active" | "pending" | undefined;
20261
20319
  apiKey?: string | undefined;
20262
20320
  tier?: "basic" | "regular" | "premium" | undefined;
20321
+ integrationType?: "meta" | "360dialog" | undefined;
20263
20322
  }, {
20264
- email: string;
20265
- wabaExternalId: string;
20266
- phoneNumberId: string;
20267
- wabaBusinessId?: string | undefined;
20268
- clientId?: string | undefined;
20269
- channelId?: string | undefined;
20323
+ wabaBusinessId?: string | null | undefined;
20324
+ wabaExternalId?: string | null | undefined;
20325
+ phoneNumberId?: string | null | undefined;
20326
+ email?: string | null | undefined;
20327
+ clientId?: string | null | undefined;
20328
+ channelId?: string | null | undefined;
20270
20329
  status?: "active" | "pending" | undefined;
20271
20330
  apiKey?: string | undefined;
20272
20331
  tier?: "basic" | "regular" | "premium" | undefined;
20332
+ integrationType?: "meta" | "360dialog" | undefined;
20273
20333
  }>>;
20274
20334
  vonageCredentials: z.ZodOptional<z.ZodObject<{
20275
20335
  mobileNumber: z.ZodString;
@@ -20294,15 +20354,16 @@ export declare const viberContract: {
20294
20354
  additionalCredentials?: any;
20295
20355
  senderId?: string | undefined;
20296
20356
  whatsapp?: {
20297
- email: string;
20298
- wabaExternalId: string;
20299
- phoneNumberId: string;
20300
- wabaBusinessId?: string | undefined;
20301
- clientId?: string | undefined;
20302
- channelId?: string | undefined;
20357
+ wabaBusinessId?: string | null | undefined;
20358
+ wabaExternalId?: string | null | undefined;
20359
+ phoneNumberId?: string | null | undefined;
20360
+ email?: string | null | undefined;
20361
+ clientId?: string | null | undefined;
20362
+ channelId?: string | null | undefined;
20303
20363
  status?: "active" | "pending" | undefined;
20304
20364
  apiKey?: string | undefined;
20305
20365
  tier?: "basic" | "regular" | "premium" | undefined;
20366
+ integrationType?: "meta" | "360dialog" | undefined;
20306
20367
  } | undefined;
20307
20368
  vonageCredentials?: {
20308
20369
  apiKey: string;
@@ -20319,15 +20380,16 @@ export declare const viberContract: {
20319
20380
  additionalCredentials?: any;
20320
20381
  senderId?: string | undefined;
20321
20382
  whatsapp?: {
20322
- email: string;
20323
- wabaExternalId: string;
20324
- phoneNumberId: string;
20325
- wabaBusinessId?: string | undefined;
20326
- clientId?: string | undefined;
20327
- channelId?: string | undefined;
20383
+ wabaBusinessId?: string | null | undefined;
20384
+ wabaExternalId?: string | null | undefined;
20385
+ phoneNumberId?: string | null | undefined;
20386
+ email?: string | null | undefined;
20387
+ clientId?: string | null | undefined;
20388
+ channelId?: string | null | undefined;
20328
20389
  status?: "active" | "pending" | undefined;
20329
20390
  apiKey?: string | undefined;
20330
20391
  tier?: "basic" | "regular" | "premium" | undefined;
20392
+ integrationType?: "meta" | "360dialog" | undefined;
20331
20393
  } | undefined;
20332
20394
  vonageCredentials?: {
20333
20395
  apiKey: string;
@@ -20578,15 +20640,16 @@ export declare const viberContract: {
20578
20640
  additionalCredentials?: any;
20579
20641
  senderId?: string | undefined;
20580
20642
  whatsapp?: {
20581
- email: string;
20582
- wabaExternalId: string;
20583
- phoneNumberId: string;
20584
- wabaBusinessId?: string | undefined;
20585
- clientId?: string | undefined;
20586
- channelId?: string | undefined;
20643
+ wabaBusinessId?: string | null | undefined;
20644
+ wabaExternalId?: string | null | undefined;
20645
+ phoneNumberId?: string | null | undefined;
20646
+ email?: string | null | undefined;
20647
+ clientId?: string | null | undefined;
20648
+ channelId?: string | null | undefined;
20587
20649
  status?: "active" | "pending" | undefined;
20588
20650
  apiKey?: string | undefined;
20589
20651
  tier?: "basic" | "regular" | "premium" | undefined;
20652
+ integrationType?: "meta" | "360dialog" | undefined;
20590
20653
  } | undefined;
20591
20654
  vonageCredentials?: {
20592
20655
  apiKey: string;
@@ -20668,15 +20731,16 @@ export declare const viberContract: {
20668
20731
  additionalCredentials?: any;
20669
20732
  senderId?: string | undefined;
20670
20733
  whatsapp?: {
20671
- email: string;
20672
- wabaExternalId: string;
20673
- phoneNumberId: string;
20674
- wabaBusinessId?: string | undefined;
20675
- clientId?: string | undefined;
20676
- channelId?: string | undefined;
20734
+ wabaBusinessId?: string | null | undefined;
20735
+ wabaExternalId?: string | null | undefined;
20736
+ phoneNumberId?: string | null | undefined;
20737
+ email?: string | null | undefined;
20738
+ clientId?: string | null | undefined;
20739
+ channelId?: string | null | undefined;
20677
20740
  status?: "active" | "pending" | undefined;
20678
20741
  apiKey?: string | undefined;
20679
20742
  tier?: "basic" | "regular" | "premium" | undefined;
20743
+ integrationType?: "meta" | "360dialog" | undefined;
20680
20744
  } | undefined;
20681
20745
  vonageCredentials?: {
20682
20746
  apiKey: string;
@@ -20760,15 +20824,16 @@ export declare const viberContract: {
20760
20824
  additionalCredentials?: any;
20761
20825
  senderId?: string | undefined;
20762
20826
  whatsapp?: {
20763
- email: string;
20764
- wabaExternalId: string;
20765
- phoneNumberId: string;
20766
- wabaBusinessId?: string | undefined;
20767
- clientId?: string | undefined;
20768
- channelId?: string | undefined;
20827
+ wabaBusinessId?: string | null | undefined;
20828
+ wabaExternalId?: string | null | undefined;
20829
+ phoneNumberId?: string | null | undefined;
20830
+ email?: string | null | undefined;
20831
+ clientId?: string | null | undefined;
20832
+ channelId?: string | null | undefined;
20769
20833
  status?: "active" | "pending" | undefined;
20770
20834
  apiKey?: string | undefined;
20771
20835
  tier?: "basic" | "regular" | "premium" | undefined;
20836
+ integrationType?: "meta" | "360dialog" | undefined;
20772
20837
  } | undefined;
20773
20838
  vonageCredentials?: {
20774
20839
  apiKey: string;
@@ -20853,15 +20918,16 @@ export declare const viberContract: {
20853
20918
  additionalCredentials?: any;
20854
20919
  senderId?: string | undefined;
20855
20920
  whatsapp?: {
20856
- email: string;
20857
- wabaExternalId: string;
20858
- phoneNumberId: string;
20859
- wabaBusinessId?: string | undefined;
20860
- clientId?: string | undefined;
20861
- channelId?: string | undefined;
20921
+ wabaBusinessId?: string | null | undefined;
20922
+ wabaExternalId?: string | null | undefined;
20923
+ phoneNumberId?: string | null | undefined;
20924
+ email?: string | null | undefined;
20925
+ clientId?: string | null | undefined;
20926
+ channelId?: string | null | undefined;
20862
20927
  status?: "active" | "pending" | undefined;
20863
20928
  apiKey?: string | undefined;
20864
20929
  tier?: "basic" | "regular" | "premium" | undefined;
20930
+ integrationType?: "meta" | "360dialog" | undefined;
20865
20931
  } | undefined;
20866
20932
  vonageCredentials?: {
20867
20933
  apiKey: string;
@@ -20982,35 +21048,38 @@ export declare const viberContract: {
20982
21048
  additionalCredentials: z.ZodOptional<z.ZodAny>;
20983
21049
  senderId: z.ZodOptional<z.ZodString>;
20984
21050
  whatsapp: z.ZodOptional<z.ZodObject<{
20985
- wabaBusinessId: z.ZodOptional<z.ZodString>;
20986
- wabaExternalId: z.ZodString;
20987
- phoneNumberId: z.ZodString;
20988
- email: z.ZodString;
20989
- clientId: z.ZodOptional<z.ZodString>;
20990
- channelId: z.ZodOptional<z.ZodString>;
21051
+ wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
21052
+ wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
21053
+ phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
21054
+ email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
21055
+ clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
21056
+ channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
20991
21057
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
20992
21058
  apiKey: z.ZodOptional<z.ZodString>;
20993
21059
  tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
21060
+ integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
20994
21061
  }, "strip", z.ZodTypeAny, {
20995
- email: string;
20996
- wabaExternalId: string;
20997
- phoneNumberId: string;
20998
- wabaBusinessId?: string | undefined;
20999
- clientId?: string | undefined;
21000
- channelId?: string | undefined;
21062
+ wabaBusinessId?: string | null | undefined;
21063
+ wabaExternalId?: string | null | undefined;
21064
+ phoneNumberId?: string | null | undefined;
21065
+ email?: string | null | undefined;
21066
+ clientId?: string | null | undefined;
21067
+ channelId?: string | null | undefined;
21001
21068
  status?: "active" | "pending" | undefined;
21002
21069
  apiKey?: string | undefined;
21003
21070
  tier?: "basic" | "regular" | "premium" | undefined;
21071
+ integrationType?: "meta" | "360dialog" | undefined;
21004
21072
  }, {
21005
- email: string;
21006
- wabaExternalId: string;
21007
- phoneNumberId: string;
21008
- wabaBusinessId?: string | undefined;
21009
- clientId?: string | undefined;
21010
- channelId?: string | undefined;
21073
+ wabaBusinessId?: string | null | undefined;
21074
+ wabaExternalId?: string | null | undefined;
21075
+ phoneNumberId?: string | null | undefined;
21076
+ email?: string | null | undefined;
21077
+ clientId?: string | null | undefined;
21078
+ channelId?: string | null | undefined;
21011
21079
  status?: "active" | "pending" | undefined;
21012
21080
  apiKey?: string | undefined;
21013
21081
  tier?: "basic" | "regular" | "premium" | undefined;
21082
+ integrationType?: "meta" | "360dialog" | undefined;
21014
21083
  }>>;
21015
21084
  vonageCredentials: z.ZodOptional<z.ZodObject<{
21016
21085
  mobileNumber: z.ZodString;
@@ -21035,15 +21104,16 @@ export declare const viberContract: {
21035
21104
  additionalCredentials?: any;
21036
21105
  senderId?: string | undefined;
21037
21106
  whatsapp?: {
21038
- email: string;
21039
- wabaExternalId: string;
21040
- phoneNumberId: string;
21041
- wabaBusinessId?: string | undefined;
21042
- clientId?: string | undefined;
21043
- channelId?: string | undefined;
21107
+ wabaBusinessId?: string | null | undefined;
21108
+ wabaExternalId?: string | null | undefined;
21109
+ phoneNumberId?: string | null | undefined;
21110
+ email?: string | null | undefined;
21111
+ clientId?: string | null | undefined;
21112
+ channelId?: string | null | undefined;
21044
21113
  status?: "active" | "pending" | undefined;
21045
21114
  apiKey?: string | undefined;
21046
21115
  tier?: "basic" | "regular" | "premium" | undefined;
21116
+ integrationType?: "meta" | "360dialog" | undefined;
21047
21117
  } | undefined;
21048
21118
  vonageCredentials?: {
21049
21119
  apiKey: string;
@@ -21060,15 +21130,16 @@ export declare const viberContract: {
21060
21130
  additionalCredentials?: any;
21061
21131
  senderId?: string | undefined;
21062
21132
  whatsapp?: {
21063
- email: string;
21064
- wabaExternalId: string;
21065
- phoneNumberId: string;
21066
- wabaBusinessId?: string | undefined;
21067
- clientId?: string | undefined;
21068
- channelId?: string | undefined;
21133
+ wabaBusinessId?: string | null | undefined;
21134
+ wabaExternalId?: string | null | undefined;
21135
+ phoneNumberId?: string | null | undefined;
21136
+ email?: string | null | undefined;
21137
+ clientId?: string | null | undefined;
21138
+ channelId?: string | null | undefined;
21069
21139
  status?: "active" | "pending" | undefined;
21070
21140
  apiKey?: string | undefined;
21071
21141
  tier?: "basic" | "regular" | "premium" | undefined;
21142
+ integrationType?: "meta" | "360dialog" | undefined;
21072
21143
  } | undefined;
21073
21144
  vonageCredentials?: {
21074
21145
  apiKey: string;
@@ -21115,15 +21186,16 @@ export declare const viberContract: {
21115
21186
  additionalCredentials?: any;
21116
21187
  senderId?: string | undefined;
21117
21188
  whatsapp?: {
21118
- email: string;
21119
- wabaExternalId: string;
21120
- phoneNumberId: string;
21121
- wabaBusinessId?: string | undefined;
21122
- clientId?: string | undefined;
21123
- channelId?: string | undefined;
21189
+ wabaBusinessId?: string | null | undefined;
21190
+ wabaExternalId?: string | null | undefined;
21191
+ phoneNumberId?: string | null | undefined;
21192
+ email?: string | null | undefined;
21193
+ clientId?: string | null | undefined;
21194
+ channelId?: string | null | undefined;
21124
21195
  status?: "active" | "pending" | undefined;
21125
21196
  apiKey?: string | undefined;
21126
21197
  tier?: "basic" | "regular" | "premium" | undefined;
21198
+ integrationType?: "meta" | "360dialog" | undefined;
21127
21199
  } | undefined;
21128
21200
  vonageCredentials?: {
21129
21201
  apiKey: string;
@@ -21158,15 +21230,16 @@ export declare const viberContract: {
21158
21230
  additionalCredentials?: any;
21159
21231
  senderId?: string | undefined;
21160
21232
  whatsapp?: {
21161
- email: string;
21162
- wabaExternalId: string;
21163
- phoneNumberId: string;
21164
- wabaBusinessId?: string | undefined;
21165
- clientId?: string | undefined;
21166
- channelId?: string | undefined;
21233
+ wabaBusinessId?: string | null | undefined;
21234
+ wabaExternalId?: string | null | undefined;
21235
+ phoneNumberId?: string | null | undefined;
21236
+ email?: string | null | undefined;
21237
+ clientId?: string | null | undefined;
21238
+ channelId?: string | null | undefined;
21167
21239
  status?: "active" | "pending" | undefined;
21168
21240
  apiKey?: string | undefined;
21169
21241
  tier?: "basic" | "regular" | "premium" | undefined;
21242
+ integrationType?: "meta" | "360dialog" | undefined;
21170
21243
  } | undefined;
21171
21244
  vonageCredentials?: {
21172
21245
  apiKey: string;
@@ -21203,15 +21276,16 @@ export declare const viberContract: {
21203
21276
  additionalCredentials?: any;
21204
21277
  senderId?: string | undefined;
21205
21278
  whatsapp?: {
21206
- email: string;
21207
- wabaExternalId: string;
21208
- phoneNumberId: string;
21209
- wabaBusinessId?: string | undefined;
21210
- clientId?: string | undefined;
21211
- channelId?: string | undefined;
21279
+ wabaBusinessId?: string | null | undefined;
21280
+ wabaExternalId?: string | null | undefined;
21281
+ phoneNumberId?: string | null | undefined;
21282
+ email?: string | null | undefined;
21283
+ clientId?: string | null | undefined;
21284
+ channelId?: string | null | undefined;
21212
21285
  status?: "active" | "pending" | undefined;
21213
21286
  apiKey?: string | undefined;
21214
21287
  tier?: "basic" | "regular" | "premium" | undefined;
21288
+ integrationType?: "meta" | "360dialog" | undefined;
21215
21289
  } | undefined;
21216
21290
  vonageCredentials?: {
21217
21291
  apiKey: string;
@@ -21249,15 +21323,16 @@ export declare const viberContract: {
21249
21323
  additionalCredentials?: any;
21250
21324
  senderId?: string | undefined;
21251
21325
  whatsapp?: {
21252
- email: string;
21253
- wabaExternalId: string;
21254
- phoneNumberId: string;
21255
- wabaBusinessId?: string | undefined;
21256
- clientId?: string | undefined;
21257
- channelId?: string | undefined;
21326
+ wabaBusinessId?: string | null | undefined;
21327
+ wabaExternalId?: string | null | undefined;
21328
+ phoneNumberId?: string | null | undefined;
21329
+ email?: string | null | undefined;
21330
+ clientId?: string | null | undefined;
21331
+ channelId?: string | null | undefined;
21258
21332
  status?: "active" | "pending" | undefined;
21259
21333
  apiKey?: string | undefined;
21260
21334
  tier?: "basic" | "regular" | "premium" | undefined;
21335
+ integrationType?: "meta" | "360dialog" | undefined;
21261
21336
  } | undefined;
21262
21337
  vonageCredentials?: {
21263
21338
  apiKey: string;