@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
@@ -66,35 +66,38 @@ export declare const telegramContract: {
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 telegramContract: {
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 telegramContract: {
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 telegramContract: {
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 telegramContract: {
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 telegramContract: {
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 telegramContract: {
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;
@@ -807,35 +816,38 @@ export declare const telegramContract: {
807
816
  additionalCredentials: z.ZodOptional<z.ZodAny>;
808
817
  senderId: z.ZodOptional<z.ZodString>;
809
818
  whatsapp: z.ZodOptional<z.ZodObject<{
810
- wabaBusinessId: z.ZodOptional<z.ZodString>;
811
- wabaExternalId: z.ZodString;
812
- phoneNumberId: z.ZodString;
813
- email: z.ZodString;
814
- clientId: z.ZodOptional<z.ZodString>;
815
- channelId: z.ZodOptional<z.ZodString>;
819
+ wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
820
+ wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
821
+ phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
822
+ email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
823
+ clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
824
+ channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
816
825
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
817
826
  apiKey: z.ZodOptional<z.ZodString>;
818
827
  tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
828
+ integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
819
829
  }, "strip", z.ZodTypeAny, {
820
- email: string;
821
- wabaExternalId: string;
822
- phoneNumberId: string;
823
- wabaBusinessId?: string | undefined;
824
- clientId?: string | undefined;
825
- channelId?: string | undefined;
830
+ wabaBusinessId?: string | null | undefined;
831
+ wabaExternalId?: string | null | undefined;
832
+ phoneNumberId?: string | null | undefined;
833
+ email?: string | null | undefined;
834
+ clientId?: string | null | undefined;
835
+ channelId?: string | null | undefined;
826
836
  status?: "active" | "pending" | undefined;
827
837
  apiKey?: string | undefined;
828
838
  tier?: "basic" | "regular" | "premium" | undefined;
839
+ integrationType?: "meta" | "360dialog" | undefined;
829
840
  }, {
830
- email: string;
831
- wabaExternalId: string;
832
- phoneNumberId: string;
833
- wabaBusinessId?: string | undefined;
834
- clientId?: string | undefined;
835
- 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;
836
847
  status?: "active" | "pending" | undefined;
837
848
  apiKey?: string | undefined;
838
849
  tier?: "basic" | "regular" | "premium" | undefined;
850
+ integrationType?: "meta" | "360dialog" | undefined;
839
851
  }>>;
840
852
  vonageCredentials: z.ZodOptional<z.ZodObject<{
841
853
  mobileNumber: z.ZodString;
@@ -860,15 +872,16 @@ export declare const telegramContract: {
860
872
  additionalCredentials?: any;
861
873
  senderId?: string | undefined;
862
874
  whatsapp?: {
863
- email: string;
864
- wabaExternalId: string;
865
- phoneNumberId: string;
866
- wabaBusinessId?: string | undefined;
867
- clientId?: string | undefined;
868
- channelId?: string | undefined;
875
+ wabaBusinessId?: string | null | undefined;
876
+ wabaExternalId?: string | null | undefined;
877
+ phoneNumberId?: string | null | undefined;
878
+ email?: string | null | undefined;
879
+ clientId?: string | null | undefined;
880
+ channelId?: string | null | undefined;
869
881
  status?: "active" | "pending" | undefined;
870
882
  apiKey?: string | undefined;
871
883
  tier?: "basic" | "regular" | "premium" | undefined;
884
+ integrationType?: "meta" | "360dialog" | undefined;
872
885
  } | undefined;
873
886
  vonageCredentials?: {
874
887
  apiKey: string;
@@ -885,15 +898,16 @@ export declare const telegramContract: {
885
898
  additionalCredentials?: any;
886
899
  senderId?: string | undefined;
887
900
  whatsapp?: {
888
- email: string;
889
- wabaExternalId: string;
890
- phoneNumberId: string;
891
- wabaBusinessId?: string | undefined;
892
- clientId?: string | undefined;
893
- channelId?: string | undefined;
901
+ wabaBusinessId?: string | null | undefined;
902
+ wabaExternalId?: string | null | undefined;
903
+ phoneNumberId?: string | null | undefined;
904
+ email?: string | null | undefined;
905
+ clientId?: string | null | undefined;
906
+ channelId?: string | null | undefined;
894
907
  status?: "active" | "pending" | undefined;
895
908
  apiKey?: string | undefined;
896
909
  tier?: "basic" | "regular" | "premium" | undefined;
910
+ integrationType?: "meta" | "360dialog" | undefined;
897
911
  } | undefined;
898
912
  vonageCredentials?: {
899
913
  apiKey: string;
@@ -940,15 +954,16 @@ export declare const telegramContract: {
940
954
  additionalCredentials?: any;
941
955
  senderId?: string | undefined;
942
956
  whatsapp?: {
943
- email: string;
944
- wabaExternalId: string;
945
- phoneNumberId: string;
946
- wabaBusinessId?: string | undefined;
947
- clientId?: string | undefined;
948
- channelId?: string | undefined;
957
+ wabaBusinessId?: string | null | undefined;
958
+ wabaExternalId?: string | null | undefined;
959
+ phoneNumberId?: string | null | undefined;
960
+ email?: string | null | undefined;
961
+ clientId?: string | null | undefined;
962
+ channelId?: string | null | undefined;
949
963
  status?: "active" | "pending" | undefined;
950
964
  apiKey?: string | undefined;
951
965
  tier?: "basic" | "regular" | "premium" | undefined;
966
+ integrationType?: "meta" | "360dialog" | undefined;
952
967
  } | undefined;
953
968
  vonageCredentials?: {
954
969
  apiKey: string;
@@ -983,15 +998,16 @@ export declare const telegramContract: {
983
998
  additionalCredentials?: any;
984
999
  senderId?: string | undefined;
985
1000
  whatsapp?: {
986
- email: string;
987
- wabaExternalId: string;
988
- phoneNumberId: string;
989
- wabaBusinessId?: string | undefined;
990
- clientId?: string | undefined;
991
- channelId?: string | undefined;
1001
+ wabaBusinessId?: string | null | undefined;
1002
+ wabaExternalId?: string | null | undefined;
1003
+ phoneNumberId?: string | null | undefined;
1004
+ email?: string | null | undefined;
1005
+ clientId?: string | null | undefined;
1006
+ channelId?: string | null | undefined;
992
1007
  status?: "active" | "pending" | undefined;
993
1008
  apiKey?: string | undefined;
994
1009
  tier?: "basic" | "regular" | "premium" | undefined;
1010
+ integrationType?: "meta" | "360dialog" | undefined;
995
1011
  } | undefined;
996
1012
  vonageCredentials?: {
997
1013
  apiKey: string;
@@ -1028,15 +1044,16 @@ export declare const telegramContract: {
1028
1044
  additionalCredentials?: any;
1029
1045
  senderId?: string | undefined;
1030
1046
  whatsapp?: {
1031
- email: string;
1032
- wabaExternalId: string;
1033
- phoneNumberId: string;
1034
- wabaBusinessId?: string | undefined;
1035
- clientId?: string | undefined;
1036
- channelId?: string | undefined;
1047
+ wabaBusinessId?: string | null | undefined;
1048
+ wabaExternalId?: string | null | undefined;
1049
+ phoneNumberId?: string | null | undefined;
1050
+ email?: string | null | undefined;
1051
+ clientId?: string | null | undefined;
1052
+ channelId?: string | null | undefined;
1037
1053
  status?: "active" | "pending" | undefined;
1038
1054
  apiKey?: string | undefined;
1039
1055
  tier?: "basic" | "regular" | "premium" | undefined;
1056
+ integrationType?: "meta" | "360dialog" | undefined;
1040
1057
  } | undefined;
1041
1058
  vonageCredentials?: {
1042
1059
  apiKey: string;
@@ -1074,15 +1091,16 @@ export declare const telegramContract: {
1074
1091
  additionalCredentials?: any;
1075
1092
  senderId?: string | undefined;
1076
1093
  whatsapp?: {
1077
- email: string;
1078
- wabaExternalId: string;
1079
- phoneNumberId: string;
1080
- wabaBusinessId?: string | undefined;
1081
- clientId?: string | undefined;
1082
- channelId?: string | undefined;
1094
+ wabaBusinessId?: string | null | undefined;
1095
+ wabaExternalId?: string | null | undefined;
1096
+ phoneNumberId?: string | null | undefined;
1097
+ email?: string | null | undefined;
1098
+ clientId?: string | null | undefined;
1099
+ channelId?: string | null | undefined;
1083
1100
  status?: "active" | "pending" | undefined;
1084
1101
  apiKey?: string | undefined;
1085
1102
  tier?: "basic" | "regular" | "premium" | undefined;
1103
+ integrationType?: "meta" | "360dialog" | undefined;
1086
1104
  } | undefined;
1087
1105
  vonageCredentials?: {
1088
1106
  apiKey: string;
@@ -1269,35 +1287,38 @@ export declare const telegramContract: {
1269
1287
  additionalCredentials: z.ZodOptional<z.ZodAny>;
1270
1288
  senderId: z.ZodOptional<z.ZodString>;
1271
1289
  whatsapp: z.ZodOptional<z.ZodObject<{
1272
- wabaBusinessId: z.ZodOptional<z.ZodString>;
1273
- wabaExternalId: z.ZodString;
1274
- phoneNumberId: z.ZodString;
1275
- email: z.ZodString;
1276
- clientId: z.ZodOptional<z.ZodString>;
1277
- channelId: z.ZodOptional<z.ZodString>;
1290
+ wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1291
+ wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1292
+ phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1293
+ email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1294
+ clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1295
+ channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1278
1296
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
1279
1297
  apiKey: z.ZodOptional<z.ZodString>;
1280
1298
  tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
1299
+ integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
1281
1300
  }, "strip", z.ZodTypeAny, {
1282
- email: string;
1283
- wabaExternalId: string;
1284
- phoneNumberId: string;
1285
- wabaBusinessId?: string | undefined;
1286
- clientId?: string | undefined;
1287
- channelId?: string | undefined;
1301
+ wabaBusinessId?: string | null | undefined;
1302
+ wabaExternalId?: string | null | undefined;
1303
+ phoneNumberId?: string | null | undefined;
1304
+ email?: string | null | undefined;
1305
+ clientId?: string | null | undefined;
1306
+ channelId?: string | null | undefined;
1288
1307
  status?: "active" | "pending" | undefined;
1289
1308
  apiKey?: string | undefined;
1290
1309
  tier?: "basic" | "regular" | "premium" | undefined;
1310
+ integrationType?: "meta" | "360dialog" | undefined;
1291
1311
  }, {
1292
- email: string;
1293
- wabaExternalId: string;
1294
- phoneNumberId: string;
1295
- wabaBusinessId?: string | undefined;
1296
- clientId?: string | undefined;
1297
- channelId?: string | undefined;
1312
+ wabaBusinessId?: string | null | undefined;
1313
+ wabaExternalId?: string | null | undefined;
1314
+ phoneNumberId?: string | null | undefined;
1315
+ email?: string | null | undefined;
1316
+ clientId?: string | null | undefined;
1317
+ channelId?: string | null | undefined;
1298
1318
  status?: "active" | "pending" | undefined;
1299
1319
  apiKey?: string | undefined;
1300
1320
  tier?: "basic" | "regular" | "premium" | undefined;
1321
+ integrationType?: "meta" | "360dialog" | undefined;
1301
1322
  }>>;
1302
1323
  vonageCredentials: z.ZodOptional<z.ZodObject<{
1303
1324
  mobileNumber: z.ZodString;
@@ -1322,15 +1343,16 @@ export declare const telegramContract: {
1322
1343
  additionalCredentials?: any;
1323
1344
  senderId?: string | undefined;
1324
1345
  whatsapp?: {
1325
- email: string;
1326
- wabaExternalId: string;
1327
- phoneNumberId: string;
1328
- wabaBusinessId?: string | undefined;
1329
- clientId?: string | undefined;
1330
- channelId?: string | undefined;
1346
+ wabaBusinessId?: string | null | undefined;
1347
+ wabaExternalId?: string | null | undefined;
1348
+ phoneNumberId?: string | null | undefined;
1349
+ email?: string | null | undefined;
1350
+ clientId?: string | null | undefined;
1351
+ channelId?: string | null | undefined;
1331
1352
  status?: "active" | "pending" | undefined;
1332
1353
  apiKey?: string | undefined;
1333
1354
  tier?: "basic" | "regular" | "premium" | undefined;
1355
+ integrationType?: "meta" | "360dialog" | undefined;
1334
1356
  } | undefined;
1335
1357
  vonageCredentials?: {
1336
1358
  apiKey: string;
@@ -1347,15 +1369,16 @@ export declare const telegramContract: {
1347
1369
  additionalCredentials?: any;
1348
1370
  senderId?: string | undefined;
1349
1371
  whatsapp?: {
1350
- email: string;
1351
- wabaExternalId: string;
1352
- phoneNumberId: string;
1353
- wabaBusinessId?: string | undefined;
1354
- clientId?: string | undefined;
1355
- channelId?: string | undefined;
1372
+ wabaBusinessId?: string | null | undefined;
1373
+ wabaExternalId?: string | null | undefined;
1374
+ phoneNumberId?: string | null | undefined;
1375
+ email?: string | null | undefined;
1376
+ clientId?: string | null | undefined;
1377
+ channelId?: string | null | undefined;
1356
1378
  status?: "active" | "pending" | undefined;
1357
1379
  apiKey?: string | undefined;
1358
1380
  tier?: "basic" | "regular" | "premium" | undefined;
1381
+ integrationType?: "meta" | "360dialog" | undefined;
1359
1382
  } | undefined;
1360
1383
  vonageCredentials?: {
1361
1384
  apiKey: string;
@@ -1402,15 +1425,16 @@ export declare const telegramContract: {
1402
1425
  additionalCredentials?: any;
1403
1426
  senderId?: string | undefined;
1404
1427
  whatsapp?: {
1405
- email: string;
1406
- wabaExternalId: string;
1407
- phoneNumberId: string;
1408
- wabaBusinessId?: string | undefined;
1409
- clientId?: string | undefined;
1410
- channelId?: string | undefined;
1428
+ wabaBusinessId?: string | null | undefined;
1429
+ wabaExternalId?: string | null | undefined;
1430
+ phoneNumberId?: string | null | undefined;
1431
+ email?: string | null | undefined;
1432
+ clientId?: string | null | undefined;
1433
+ channelId?: string | null | undefined;
1411
1434
  status?: "active" | "pending" | undefined;
1412
1435
  apiKey?: string | undefined;
1413
1436
  tier?: "basic" | "regular" | "premium" | undefined;
1437
+ integrationType?: "meta" | "360dialog" | undefined;
1414
1438
  } | undefined;
1415
1439
  vonageCredentials?: {
1416
1440
  apiKey: string;
@@ -1445,15 +1469,16 @@ export declare const telegramContract: {
1445
1469
  additionalCredentials?: any;
1446
1470
  senderId?: string | undefined;
1447
1471
  whatsapp?: {
1448
- email: string;
1449
- wabaExternalId: string;
1450
- phoneNumberId: string;
1451
- wabaBusinessId?: string | undefined;
1452
- clientId?: string | undefined;
1453
- channelId?: string | undefined;
1472
+ wabaBusinessId?: string | null | undefined;
1473
+ wabaExternalId?: string | null | undefined;
1474
+ phoneNumberId?: string | null | undefined;
1475
+ email?: string | null | undefined;
1476
+ clientId?: string | null | undefined;
1477
+ channelId?: string | null | undefined;
1454
1478
  status?: "active" | "pending" | undefined;
1455
1479
  apiKey?: string | undefined;
1456
1480
  tier?: "basic" | "regular" | "premium" | undefined;
1481
+ integrationType?: "meta" | "360dialog" | undefined;
1457
1482
  } | undefined;
1458
1483
  vonageCredentials?: {
1459
1484
  apiKey: string;
@@ -1493,15 +1518,16 @@ export declare const telegramContract: {
1493
1518
  additionalCredentials?: any;
1494
1519
  senderId?: string | undefined;
1495
1520
  whatsapp?: {
1496
- email: string;
1497
- wabaExternalId: string;
1498
- phoneNumberId: string;
1499
- wabaBusinessId?: string | undefined;
1500
- clientId?: string | undefined;
1501
- channelId?: string | undefined;
1521
+ wabaBusinessId?: string | null | undefined;
1522
+ wabaExternalId?: string | null | undefined;
1523
+ phoneNumberId?: string | null | undefined;
1524
+ email?: string | null | undefined;
1525
+ clientId?: string | null | undefined;
1526
+ channelId?: string | null | undefined;
1502
1527
  status?: "active" | "pending" | undefined;
1503
1528
  apiKey?: string | undefined;
1504
1529
  tier?: "basic" | "regular" | "premium" | undefined;
1530
+ integrationType?: "meta" | "360dialog" | undefined;
1505
1531
  } | undefined;
1506
1532
  vonageCredentials?: {
1507
1533
  apiKey: string;
@@ -1580,15 +1606,16 @@ export declare const telegramContract: {
1580
1606
  additionalCredentials?: any;
1581
1607
  senderId?: string | undefined;
1582
1608
  whatsapp?: {
1583
- email: string;
1584
- wabaExternalId: string;
1585
- phoneNumberId: string;
1586
- wabaBusinessId?: string | undefined;
1587
- clientId?: string | undefined;
1588
- channelId?: string | undefined;
1609
+ wabaBusinessId?: string | null | undefined;
1610
+ wabaExternalId?: string | null | undefined;
1611
+ phoneNumberId?: string | null | undefined;
1612
+ email?: string | null | undefined;
1613
+ clientId?: string | null | undefined;
1614
+ channelId?: string | null | undefined;
1589
1615
  status?: "active" | "pending" | undefined;
1590
1616
  apiKey?: string | undefined;
1591
1617
  tier?: "basic" | "regular" | "premium" | undefined;
1618
+ integrationType?: "meta" | "360dialog" | undefined;
1592
1619
  } | undefined;
1593
1620
  vonageCredentials?: {
1594
1621
  apiKey: string;
@@ -1835,15 +1862,16 @@ export declare const telegramContract: {
1835
1862
  additionalCredentials?: any;
1836
1863
  senderId?: string | undefined;
1837
1864
  whatsapp?: {
1838
- email: string;
1839
- wabaExternalId: string;
1840
- phoneNumberId: string;
1841
- wabaBusinessId?: string | undefined;
1842
- clientId?: string | undefined;
1843
- channelId?: string | undefined;
1865
+ wabaBusinessId?: string | null | undefined;
1866
+ wabaExternalId?: string | null | undefined;
1867
+ phoneNumberId?: string | null | undefined;
1868
+ email?: string | null | undefined;
1869
+ clientId?: string | null | undefined;
1870
+ channelId?: string | null | undefined;
1844
1871
  status?: "active" | "pending" | undefined;
1845
1872
  apiKey?: string | undefined;
1846
1873
  tier?: "basic" | "regular" | "premium" | undefined;
1874
+ integrationType?: "meta" | "360dialog" | undefined;
1847
1875
  } | undefined;
1848
1876
  vonageCredentials?: {
1849
1877
  apiKey: string;
@@ -1961,15 +1989,16 @@ export declare const telegramContract: {
1961
1989
  additionalCredentials?: any;
1962
1990
  senderId?: string | undefined;
1963
1991
  whatsapp?: {
1964
- email: string;
1965
- wabaExternalId: string;
1966
- phoneNumberId: string;
1967
- wabaBusinessId?: string | undefined;
1968
- clientId?: string | undefined;
1969
- channelId?: string | undefined;
1992
+ wabaBusinessId?: string | null | undefined;
1993
+ wabaExternalId?: string | null | undefined;
1994
+ phoneNumberId?: string | null | undefined;
1995
+ email?: string | null | undefined;
1996
+ clientId?: string | null | undefined;
1997
+ channelId?: string | null | undefined;
1970
1998
  status?: "active" | "pending" | undefined;
1971
1999
  apiKey?: string | undefined;
1972
2000
  tier?: "basic" | "regular" | "premium" | undefined;
2001
+ integrationType?: "meta" | "360dialog" | undefined;
1973
2002
  } | undefined;
1974
2003
  vonageCredentials?: {
1975
2004
  apiKey: string;
@@ -3982,35 +4011,38 @@ export declare const telegramContract: {
3982
4011
  additionalCredentials: z.ZodOptional<z.ZodAny>;
3983
4012
  senderId: z.ZodOptional<z.ZodString>;
3984
4013
  whatsapp: z.ZodOptional<z.ZodObject<{
3985
- wabaBusinessId: z.ZodOptional<z.ZodString>;
3986
- wabaExternalId: z.ZodString;
3987
- phoneNumberId: z.ZodString;
3988
- email: z.ZodString;
3989
- clientId: z.ZodOptional<z.ZodString>;
3990
- channelId: z.ZodOptional<z.ZodString>;
4014
+ wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
4015
+ wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
4016
+ phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
4017
+ email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
4018
+ clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
4019
+ channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
3991
4020
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
3992
4021
  apiKey: z.ZodOptional<z.ZodString>;
3993
4022
  tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
4023
+ integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
3994
4024
  }, "strip", z.ZodTypeAny, {
3995
- email: string;
3996
- wabaExternalId: string;
3997
- phoneNumberId: string;
3998
- wabaBusinessId?: string | undefined;
3999
- clientId?: string | undefined;
4000
- channelId?: string | undefined;
4025
+ wabaBusinessId?: string | null | undefined;
4026
+ wabaExternalId?: string | null | undefined;
4027
+ phoneNumberId?: string | null | undefined;
4028
+ email?: string | null | undefined;
4029
+ clientId?: string | null | undefined;
4030
+ channelId?: string | null | undefined;
4001
4031
  status?: "active" | "pending" | undefined;
4002
4032
  apiKey?: string | undefined;
4003
4033
  tier?: "basic" | "regular" | "premium" | undefined;
4034
+ integrationType?: "meta" | "360dialog" | undefined;
4004
4035
  }, {
4005
- email: string;
4006
- wabaExternalId: string;
4007
- phoneNumberId: string;
4008
- wabaBusinessId?: string | undefined;
4009
- clientId?: string | undefined;
4010
- channelId?: string | undefined;
4036
+ wabaBusinessId?: string | null | undefined;
4037
+ wabaExternalId?: string | null | undefined;
4038
+ phoneNumberId?: string | null | undefined;
4039
+ email?: string | null | undefined;
4040
+ clientId?: string | null | undefined;
4041
+ channelId?: string | null | undefined;
4011
4042
  status?: "active" | "pending" | undefined;
4012
4043
  apiKey?: string | undefined;
4013
4044
  tier?: "basic" | "regular" | "premium" | undefined;
4045
+ integrationType?: "meta" | "360dialog" | undefined;
4014
4046
  }>>;
4015
4047
  vonageCredentials: z.ZodOptional<z.ZodObject<{
4016
4048
  mobileNumber: z.ZodString;
@@ -4035,15 +4067,16 @@ export declare const telegramContract: {
4035
4067
  additionalCredentials?: any;
4036
4068
  senderId?: string | undefined;
4037
4069
  whatsapp?: {
4038
- email: string;
4039
- wabaExternalId: string;
4040
- phoneNumberId: string;
4041
- wabaBusinessId?: string | undefined;
4042
- clientId?: string | undefined;
4043
- channelId?: string | undefined;
4070
+ wabaBusinessId?: string | null | undefined;
4071
+ wabaExternalId?: string | null | undefined;
4072
+ phoneNumberId?: string | null | undefined;
4073
+ email?: string | null | undefined;
4074
+ clientId?: string | null | undefined;
4075
+ channelId?: string | null | undefined;
4044
4076
  status?: "active" | "pending" | undefined;
4045
4077
  apiKey?: string | undefined;
4046
4078
  tier?: "basic" | "regular" | "premium" | undefined;
4079
+ integrationType?: "meta" | "360dialog" | undefined;
4047
4080
  } | undefined;
4048
4081
  vonageCredentials?: {
4049
4082
  apiKey: string;
@@ -4060,15 +4093,16 @@ export declare const telegramContract: {
4060
4093
  additionalCredentials?: any;
4061
4094
  senderId?: string | undefined;
4062
4095
  whatsapp?: {
4063
- email: string;
4064
- wabaExternalId: string;
4065
- phoneNumberId: string;
4066
- wabaBusinessId?: string | undefined;
4067
- clientId?: string | undefined;
4068
- channelId?: string | undefined;
4096
+ wabaBusinessId?: string | null | undefined;
4097
+ wabaExternalId?: string | null | undefined;
4098
+ phoneNumberId?: string | null | undefined;
4099
+ email?: string | null | undefined;
4100
+ clientId?: string | null | undefined;
4101
+ channelId?: string | null | undefined;
4069
4102
  status?: "active" | "pending" | undefined;
4070
4103
  apiKey?: string | undefined;
4071
4104
  tier?: "basic" | "regular" | "premium" | undefined;
4105
+ integrationType?: "meta" | "360dialog" | undefined;
4072
4106
  } | undefined;
4073
4107
  vonageCredentials?: {
4074
4108
  apiKey: string;
@@ -4319,15 +4353,16 @@ export declare const telegramContract: {
4319
4353
  additionalCredentials?: any;
4320
4354
  senderId?: string | undefined;
4321
4355
  whatsapp?: {
4322
- email: string;
4323
- wabaExternalId: string;
4324
- phoneNumberId: string;
4325
- wabaBusinessId?: string | undefined;
4326
- clientId?: string | undefined;
4327
- channelId?: string | undefined;
4356
+ wabaBusinessId?: string | null | undefined;
4357
+ wabaExternalId?: string | null | undefined;
4358
+ phoneNumberId?: string | null | undefined;
4359
+ email?: string | null | undefined;
4360
+ clientId?: string | null | undefined;
4361
+ channelId?: string | null | undefined;
4328
4362
  status?: "active" | "pending" | undefined;
4329
4363
  apiKey?: string | undefined;
4330
4364
  tier?: "basic" | "regular" | "premium" | undefined;
4365
+ integrationType?: "meta" | "360dialog" | undefined;
4331
4366
  } | undefined;
4332
4367
  vonageCredentials?: {
4333
4368
  apiKey: string;
@@ -4409,15 +4444,16 @@ export declare const telegramContract: {
4409
4444
  additionalCredentials?: any;
4410
4445
  senderId?: string | undefined;
4411
4446
  whatsapp?: {
4412
- email: string;
4413
- wabaExternalId: string;
4414
- phoneNumberId: string;
4415
- wabaBusinessId?: string | undefined;
4416
- clientId?: string | undefined;
4417
- channelId?: string | undefined;
4447
+ wabaBusinessId?: string | null | undefined;
4448
+ wabaExternalId?: string | null | undefined;
4449
+ phoneNumberId?: string | null | undefined;
4450
+ email?: string | null | undefined;
4451
+ clientId?: string | null | undefined;
4452
+ channelId?: string | null | undefined;
4418
4453
  status?: "active" | "pending" | undefined;
4419
4454
  apiKey?: string | undefined;
4420
4455
  tier?: "basic" | "regular" | "premium" | undefined;
4456
+ integrationType?: "meta" | "360dialog" | undefined;
4421
4457
  } | undefined;
4422
4458
  vonageCredentials?: {
4423
4459
  apiKey: string;
@@ -5063,15 +5099,16 @@ export declare const telegramContract: {
5063
5099
  additionalCredentials?: any;
5064
5100
  senderId?: string | undefined;
5065
5101
  whatsapp?: {
5066
- email: string;
5067
- wabaExternalId: string;
5068
- phoneNumberId: string;
5069
- wabaBusinessId?: string | undefined;
5070
- clientId?: string | undefined;
5071
- channelId?: string | undefined;
5102
+ wabaBusinessId?: string | null | undefined;
5103
+ wabaExternalId?: string | null | undefined;
5104
+ phoneNumberId?: string | null | undefined;
5105
+ email?: string | null | undefined;
5106
+ clientId?: string | null | undefined;
5107
+ channelId?: string | null | undefined;
5072
5108
  status?: "active" | "pending" | undefined;
5073
5109
  apiKey?: string | undefined;
5074
5110
  tier?: "basic" | "regular" | "premium" | undefined;
5111
+ integrationType?: "meta" | "360dialog" | undefined;
5075
5112
  } | undefined;
5076
5113
  vonageCredentials?: {
5077
5114
  apiKey: string;
@@ -5486,15 +5523,16 @@ export declare const telegramContract: {
5486
5523
  additionalCredentials?: any;
5487
5524
  senderId?: string | undefined;
5488
5525
  whatsapp?: {
5489
- email: string;
5490
- wabaExternalId: string;
5491
- phoneNumberId: string;
5492
- wabaBusinessId?: string | undefined;
5493
- clientId?: string | undefined;
5494
- channelId?: string | undefined;
5526
+ wabaBusinessId?: string | null | undefined;
5527
+ wabaExternalId?: string | null | undefined;
5528
+ phoneNumberId?: string | null | undefined;
5529
+ email?: string | null | undefined;
5530
+ clientId?: string | null | undefined;
5531
+ channelId?: string | null | undefined;
5495
5532
  status?: "active" | "pending" | undefined;
5496
5533
  apiKey?: string | undefined;
5497
5534
  tier?: "basic" | "regular" | "premium" | undefined;
5535
+ integrationType?: "meta" | "360dialog" | undefined;
5498
5536
  } | undefined;
5499
5537
  vonageCredentials?: {
5500
5538
  apiKey: string;
@@ -8625,35 +8663,38 @@ export declare const telegramContract: {
8625
8663
  additionalCredentials: z.ZodOptional<z.ZodAny>;
8626
8664
  senderId: z.ZodOptional<z.ZodString>;
8627
8665
  whatsapp: z.ZodOptional<z.ZodObject<{
8628
- wabaBusinessId: z.ZodOptional<z.ZodString>;
8629
- wabaExternalId: z.ZodString;
8630
- phoneNumberId: z.ZodString;
8631
- email: z.ZodString;
8632
- clientId: z.ZodOptional<z.ZodString>;
8633
- channelId: z.ZodOptional<z.ZodString>;
8666
+ wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
8667
+ wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
8668
+ phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
8669
+ email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
8670
+ clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
8671
+ channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
8634
8672
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
8635
8673
  apiKey: z.ZodOptional<z.ZodString>;
8636
8674
  tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
8675
+ integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
8637
8676
  }, "strip", z.ZodTypeAny, {
8638
- email: string;
8639
- wabaExternalId: string;
8640
- phoneNumberId: string;
8641
- wabaBusinessId?: string | undefined;
8642
- clientId?: string | undefined;
8643
- channelId?: string | undefined;
8677
+ wabaBusinessId?: string | null | undefined;
8678
+ wabaExternalId?: string | null | undefined;
8679
+ phoneNumberId?: string | null | undefined;
8680
+ email?: string | null | undefined;
8681
+ clientId?: string | null | undefined;
8682
+ channelId?: string | null | undefined;
8644
8683
  status?: "active" | "pending" | undefined;
8645
8684
  apiKey?: string | undefined;
8646
8685
  tier?: "basic" | "regular" | "premium" | undefined;
8686
+ integrationType?: "meta" | "360dialog" | undefined;
8647
8687
  }, {
8648
- email: string;
8649
- wabaExternalId: string;
8650
- phoneNumberId: string;
8651
- wabaBusinessId?: string | undefined;
8652
- clientId?: string | undefined;
8653
- channelId?: string | undefined;
8688
+ wabaBusinessId?: string | null | undefined;
8689
+ wabaExternalId?: string | null | undefined;
8690
+ phoneNumberId?: string | null | undefined;
8691
+ email?: string | null | undefined;
8692
+ clientId?: string | null | undefined;
8693
+ channelId?: string | null | undefined;
8654
8694
  status?: "active" | "pending" | undefined;
8655
8695
  apiKey?: string | undefined;
8656
8696
  tier?: "basic" | "regular" | "premium" | undefined;
8697
+ integrationType?: "meta" | "360dialog" | undefined;
8657
8698
  }>>;
8658
8699
  vonageCredentials: z.ZodOptional<z.ZodObject<{
8659
8700
  mobileNumber: z.ZodString;
@@ -8678,15 +8719,16 @@ export declare const telegramContract: {
8678
8719
  additionalCredentials?: any;
8679
8720
  senderId?: string | undefined;
8680
8721
  whatsapp?: {
8681
- email: string;
8682
- wabaExternalId: string;
8683
- phoneNumberId: string;
8684
- wabaBusinessId?: string | undefined;
8685
- clientId?: string | undefined;
8686
- channelId?: string | undefined;
8722
+ wabaBusinessId?: string | null | undefined;
8723
+ wabaExternalId?: string | null | undefined;
8724
+ phoneNumberId?: string | null | undefined;
8725
+ email?: string | null | undefined;
8726
+ clientId?: string | null | undefined;
8727
+ channelId?: string | null | undefined;
8687
8728
  status?: "active" | "pending" | undefined;
8688
8729
  apiKey?: string | undefined;
8689
8730
  tier?: "basic" | "regular" | "premium" | undefined;
8731
+ integrationType?: "meta" | "360dialog" | undefined;
8690
8732
  } | undefined;
8691
8733
  vonageCredentials?: {
8692
8734
  apiKey: string;
@@ -8703,15 +8745,16 @@ export declare const telegramContract: {
8703
8745
  additionalCredentials?: any;
8704
8746
  senderId?: string | undefined;
8705
8747
  whatsapp?: {
8706
- email: string;
8707
- wabaExternalId: string;
8708
- phoneNumberId: string;
8709
- wabaBusinessId?: string | undefined;
8710
- clientId?: string | undefined;
8711
- channelId?: string | undefined;
8748
+ wabaBusinessId?: string | null | undefined;
8749
+ wabaExternalId?: string | null | undefined;
8750
+ phoneNumberId?: string | null | undefined;
8751
+ email?: string | null | undefined;
8752
+ clientId?: string | null | undefined;
8753
+ channelId?: string | null | undefined;
8712
8754
  status?: "active" | "pending" | undefined;
8713
8755
  apiKey?: string | undefined;
8714
8756
  tier?: "basic" | "regular" | "premium" | undefined;
8757
+ integrationType?: "meta" | "360dialog" | undefined;
8715
8758
  } | undefined;
8716
8759
  vonageCredentials?: {
8717
8760
  apiKey: string;
@@ -8962,15 +9005,16 @@ export declare const telegramContract: {
8962
9005
  additionalCredentials?: any;
8963
9006
  senderId?: string | undefined;
8964
9007
  whatsapp?: {
8965
- email: string;
8966
- wabaExternalId: string;
8967
- phoneNumberId: string;
8968
- wabaBusinessId?: string | undefined;
8969
- clientId?: string | undefined;
8970
- channelId?: string | undefined;
9008
+ wabaBusinessId?: string | null | undefined;
9009
+ wabaExternalId?: string | null | undefined;
9010
+ phoneNumberId?: string | null | undefined;
9011
+ email?: string | null | undefined;
9012
+ clientId?: string | null | undefined;
9013
+ channelId?: string | null | undefined;
8971
9014
  status?: "active" | "pending" | undefined;
8972
9015
  apiKey?: string | undefined;
8973
9016
  tier?: "basic" | "regular" | "premium" | undefined;
9017
+ integrationType?: "meta" | "360dialog" | undefined;
8974
9018
  } | undefined;
8975
9019
  vonageCredentials?: {
8976
9020
  apiKey: string;
@@ -9052,15 +9096,16 @@ export declare const telegramContract: {
9052
9096
  additionalCredentials?: any;
9053
9097
  senderId?: string | undefined;
9054
9098
  whatsapp?: {
9055
- email: string;
9056
- wabaExternalId: string;
9057
- phoneNumberId: string;
9058
- wabaBusinessId?: string | undefined;
9059
- clientId?: string | undefined;
9060
- channelId?: string | undefined;
9099
+ wabaBusinessId?: string | null | undefined;
9100
+ wabaExternalId?: string | null | undefined;
9101
+ phoneNumberId?: string | null | undefined;
9102
+ email?: string | null | undefined;
9103
+ clientId?: string | null | undefined;
9104
+ channelId?: string | null | undefined;
9061
9105
  status?: "active" | "pending" | undefined;
9062
9106
  apiKey?: string | undefined;
9063
9107
  tier?: "basic" | "regular" | "premium" | undefined;
9108
+ integrationType?: "meta" | "360dialog" | undefined;
9064
9109
  } | undefined;
9065
9110
  vonageCredentials?: {
9066
9111
  apiKey: string;
@@ -9706,15 +9751,16 @@ export declare const telegramContract: {
9706
9751
  additionalCredentials?: any;
9707
9752
  senderId?: string | undefined;
9708
9753
  whatsapp?: {
9709
- email: string;
9710
- wabaExternalId: string;
9711
- phoneNumberId: string;
9712
- wabaBusinessId?: string | undefined;
9713
- clientId?: string | undefined;
9714
- channelId?: string | undefined;
9754
+ wabaBusinessId?: string | null | undefined;
9755
+ wabaExternalId?: string | null | undefined;
9756
+ phoneNumberId?: string | null | undefined;
9757
+ email?: string | null | undefined;
9758
+ clientId?: string | null | undefined;
9759
+ channelId?: string | null | undefined;
9715
9760
  status?: "active" | "pending" | undefined;
9716
9761
  apiKey?: string | undefined;
9717
9762
  tier?: "basic" | "regular" | "premium" | undefined;
9763
+ integrationType?: "meta" | "360dialog" | undefined;
9718
9764
  } | undefined;
9719
9765
  vonageCredentials?: {
9720
9766
  apiKey: string;
@@ -10129,15 +10175,16 @@ export declare const telegramContract: {
10129
10175
  additionalCredentials?: any;
10130
10176
  senderId?: string | undefined;
10131
10177
  whatsapp?: {
10132
- email: string;
10133
- wabaExternalId: string;
10134
- phoneNumberId: string;
10135
- wabaBusinessId?: string | undefined;
10136
- clientId?: string | undefined;
10137
- channelId?: string | undefined;
10178
+ wabaBusinessId?: string | null | undefined;
10179
+ wabaExternalId?: string | null | undefined;
10180
+ phoneNumberId?: string | null | undefined;
10181
+ email?: string | null | undefined;
10182
+ clientId?: string | null | undefined;
10183
+ channelId?: string | null | undefined;
10138
10184
  status?: "active" | "pending" | undefined;
10139
10185
  apiKey?: string | undefined;
10140
10186
  tier?: "basic" | "regular" | "premium" | undefined;
10187
+ integrationType?: "meta" | "360dialog" | undefined;
10141
10188
  } | undefined;
10142
10189
  vonageCredentials?: {
10143
10190
  apiKey: string;
@@ -12325,15 +12372,16 @@ export declare const telegramContract: {
12325
12372
  additionalCredentials?: any;
12326
12373
  senderId?: string | undefined;
12327
12374
  whatsapp?: {
12328
- email: string;
12329
- wabaExternalId: string;
12330
- phoneNumberId: string;
12331
- wabaBusinessId?: string | undefined;
12332
- clientId?: string | undefined;
12333
- channelId?: string | undefined;
12375
+ wabaBusinessId?: string | null | undefined;
12376
+ wabaExternalId?: string | null | undefined;
12377
+ phoneNumberId?: string | null | undefined;
12378
+ email?: string | null | undefined;
12379
+ clientId?: string | null | undefined;
12380
+ channelId?: string | null | undefined;
12334
12381
  status?: "active" | "pending" | undefined;
12335
12382
  apiKey?: string | undefined;
12336
12383
  tier?: "basic" | "regular" | "premium" | undefined;
12384
+ integrationType?: "meta" | "360dialog" | undefined;
12337
12385
  } | undefined;
12338
12386
  vonageCredentials?: {
12339
12387
  apiKey: string;
@@ -13085,15 +13133,16 @@ export declare const telegramContract: {
13085
13133
  additionalCredentials?: any;
13086
13134
  senderId?: string | undefined;
13087
13135
  whatsapp?: {
13088
- email: string;
13089
- wabaExternalId: string;
13090
- phoneNumberId: string;
13091
- wabaBusinessId?: string | undefined;
13092
- clientId?: string | undefined;
13093
- channelId?: string | undefined;
13136
+ wabaBusinessId?: string | null | undefined;
13137
+ wabaExternalId?: string | null | undefined;
13138
+ phoneNumberId?: string | null | undefined;
13139
+ email?: string | null | undefined;
13140
+ clientId?: string | null | undefined;
13141
+ channelId?: string | null | undefined;
13094
13142
  status?: "active" | "pending" | undefined;
13095
13143
  apiKey?: string | undefined;
13096
13144
  tier?: "basic" | "regular" | "premium" | undefined;
13145
+ integrationType?: "meta" | "360dialog" | undefined;
13097
13146
  } | undefined;
13098
13147
  vonageCredentials?: {
13099
13148
  apiKey: string;
@@ -13846,15 +13895,16 @@ export declare const telegramContract: {
13846
13895
  additionalCredentials?: any;
13847
13896
  senderId?: string | undefined;
13848
13897
  whatsapp?: {
13849
- email: string;
13850
- wabaExternalId: string;
13851
- phoneNumberId: string;
13852
- wabaBusinessId?: string | undefined;
13853
- clientId?: string | undefined;
13854
- channelId?: string | undefined;
13898
+ wabaBusinessId?: string | null | undefined;
13899
+ wabaExternalId?: string | null | undefined;
13900
+ phoneNumberId?: string | null | undefined;
13901
+ email?: string | null | undefined;
13902
+ clientId?: string | null | undefined;
13903
+ channelId?: string | null | undefined;
13855
13904
  status?: "active" | "pending" | undefined;
13856
13905
  apiKey?: string | undefined;
13857
13906
  tier?: "basic" | "regular" | "premium" | undefined;
13907
+ integrationType?: "meta" | "360dialog" | undefined;
13858
13908
  } | undefined;
13859
13909
  vonageCredentials?: {
13860
13910
  apiKey: string;
@@ -14606,15 +14656,16 @@ export declare const telegramContract: {
14606
14656
  additionalCredentials?: any;
14607
14657
  senderId?: string | undefined;
14608
14658
  whatsapp?: {
14609
- email: string;
14610
- wabaExternalId: string;
14611
- phoneNumberId: string;
14612
- wabaBusinessId?: string | undefined;
14613
- clientId?: string | undefined;
14614
- channelId?: string | undefined;
14659
+ wabaBusinessId?: string | null | undefined;
14660
+ wabaExternalId?: string | null | undefined;
14661
+ phoneNumberId?: string | null | undefined;
14662
+ email?: string | null | undefined;
14663
+ clientId?: string | null | undefined;
14664
+ channelId?: string | null | undefined;
14615
14665
  status?: "active" | "pending" | undefined;
14616
14666
  apiKey?: string | undefined;
14617
14667
  tier?: "basic" | "regular" | "premium" | undefined;
14668
+ integrationType?: "meta" | "360dialog" | undefined;
14618
14669
  } | undefined;
14619
14670
  vonageCredentials?: {
14620
14671
  apiKey: string;
@@ -15367,15 +15418,16 @@ export declare const telegramContract: {
15367
15418
  additionalCredentials?: any;
15368
15419
  senderId?: string | undefined;
15369
15420
  whatsapp?: {
15370
- email: string;
15371
- wabaExternalId: string;
15372
- phoneNumberId: string;
15373
- wabaBusinessId?: string | undefined;
15374
- clientId?: string | undefined;
15375
- channelId?: string | undefined;
15421
+ wabaBusinessId?: string | null | undefined;
15422
+ wabaExternalId?: string | null | undefined;
15423
+ phoneNumberId?: string | null | undefined;
15424
+ email?: string | null | undefined;
15425
+ clientId?: string | null | undefined;
15426
+ channelId?: string | null | undefined;
15376
15427
  status?: "active" | "pending" | undefined;
15377
15428
  apiKey?: string | undefined;
15378
15429
  tier?: "basic" | "regular" | "premium" | undefined;
15430
+ integrationType?: "meta" | "360dialog" | undefined;
15379
15431
  } | undefined;
15380
15432
  vonageCredentials?: {
15381
15433
  apiKey: string;
@@ -16127,15 +16179,16 @@ export declare const telegramContract: {
16127
16179
  additionalCredentials?: any;
16128
16180
  senderId?: string | undefined;
16129
16181
  whatsapp?: {
16130
- email: string;
16131
- wabaExternalId: string;
16132
- phoneNumberId: string;
16133
- wabaBusinessId?: string | undefined;
16134
- clientId?: string | undefined;
16135
- channelId?: string | undefined;
16182
+ wabaBusinessId?: string | null | undefined;
16183
+ wabaExternalId?: string | null | undefined;
16184
+ phoneNumberId?: string | null | undefined;
16185
+ email?: string | null | undefined;
16186
+ clientId?: string | null | undefined;
16187
+ channelId?: string | null | undefined;
16136
16188
  status?: "active" | "pending" | undefined;
16137
16189
  apiKey?: string | undefined;
16138
16190
  tier?: "basic" | "regular" | "premium" | undefined;
16191
+ integrationType?: "meta" | "360dialog" | undefined;
16139
16192
  } | undefined;
16140
16193
  vonageCredentials?: {
16141
16194
  apiKey: string;
@@ -16890,15 +16943,16 @@ export declare const telegramContract: {
16890
16943
  additionalCredentials?: any;
16891
16944
  senderId?: string | undefined;
16892
16945
  whatsapp?: {
16893
- email: string;
16894
- wabaExternalId: string;
16895
- phoneNumberId: string;
16896
- wabaBusinessId?: string | undefined;
16897
- clientId?: string | undefined;
16898
- channelId?: string | undefined;
16946
+ wabaBusinessId?: string | null | undefined;
16947
+ wabaExternalId?: string | null | undefined;
16948
+ phoneNumberId?: string | null | undefined;
16949
+ email?: string | null | undefined;
16950
+ clientId?: string | null | undefined;
16951
+ channelId?: string | null | undefined;
16899
16952
  status?: "active" | "pending" | undefined;
16900
16953
  apiKey?: string | undefined;
16901
16954
  tier?: "basic" | "regular" | "premium" | undefined;
16955
+ integrationType?: "meta" | "360dialog" | undefined;
16902
16956
  } | undefined;
16903
16957
  vonageCredentials?: {
16904
16958
  apiKey: string;
@@ -17650,15 +17704,16 @@ export declare const telegramContract: {
17650
17704
  additionalCredentials?: any;
17651
17705
  senderId?: string | undefined;
17652
17706
  whatsapp?: {
17653
- email: string;
17654
- wabaExternalId: string;
17655
- phoneNumberId: string;
17656
- wabaBusinessId?: string | undefined;
17657
- clientId?: string | undefined;
17658
- channelId?: string | undefined;
17707
+ wabaBusinessId?: string | null | undefined;
17708
+ wabaExternalId?: string | null | undefined;
17709
+ phoneNumberId?: string | null | undefined;
17710
+ email?: string | null | undefined;
17711
+ clientId?: string | null | undefined;
17712
+ channelId?: string | null | undefined;
17659
17713
  status?: "active" | "pending" | undefined;
17660
17714
  apiKey?: string | undefined;
17661
17715
  tier?: "basic" | "regular" | "premium" | undefined;
17716
+ integrationType?: "meta" | "360dialog" | undefined;
17662
17717
  } | undefined;
17663
17718
  vonageCredentials?: {
17664
17719
  apiKey: string;
@@ -18414,15 +18469,16 @@ export declare const telegramContract: {
18414
18469
  additionalCredentials?: any;
18415
18470
  senderId?: string | undefined;
18416
18471
  whatsapp?: {
18417
- email: string;
18418
- wabaExternalId: string;
18419
- phoneNumberId: string;
18420
- wabaBusinessId?: string | undefined;
18421
- clientId?: string | undefined;
18422
- channelId?: string | undefined;
18472
+ wabaBusinessId?: string | null | undefined;
18473
+ wabaExternalId?: string | null | undefined;
18474
+ phoneNumberId?: string | null | undefined;
18475
+ email?: string | null | undefined;
18476
+ clientId?: string | null | undefined;
18477
+ channelId?: string | null | undefined;
18423
18478
  status?: "active" | "pending" | undefined;
18424
18479
  apiKey?: string | undefined;
18425
18480
  tier?: "basic" | "regular" | "premium" | undefined;
18481
+ integrationType?: "meta" | "360dialog" | undefined;
18426
18482
  } | undefined;
18427
18483
  vonageCredentials?: {
18428
18484
  apiKey: string;
@@ -19174,15 +19230,16 @@ export declare const telegramContract: {
19174
19230
  additionalCredentials?: any;
19175
19231
  senderId?: string | undefined;
19176
19232
  whatsapp?: {
19177
- email: string;
19178
- wabaExternalId: string;
19179
- phoneNumberId: string;
19180
- wabaBusinessId?: string | undefined;
19181
- clientId?: string | undefined;
19182
- channelId?: string | undefined;
19233
+ wabaBusinessId?: string | null | undefined;
19234
+ wabaExternalId?: string | null | undefined;
19235
+ phoneNumberId?: string | null | undefined;
19236
+ email?: string | null | undefined;
19237
+ clientId?: string | null | undefined;
19238
+ channelId?: string | null | undefined;
19183
19239
  status?: "active" | "pending" | undefined;
19184
19240
  apiKey?: string | undefined;
19185
19241
  tier?: "basic" | "regular" | "premium" | undefined;
19242
+ integrationType?: "meta" | "360dialog" | undefined;
19186
19243
  } | undefined;
19187
19244
  vonageCredentials?: {
19188
19245
  apiKey: string;
@@ -19853,35 +19910,38 @@ export declare const telegramContract: {
19853
19910
  additionalCredentials: z.ZodOptional<z.ZodAny>;
19854
19911
  senderId: z.ZodOptional<z.ZodString>;
19855
19912
  whatsapp: z.ZodOptional<z.ZodObject<{
19856
- wabaBusinessId: z.ZodOptional<z.ZodString>;
19857
- wabaExternalId: z.ZodString;
19858
- phoneNumberId: z.ZodString;
19859
- email: z.ZodString;
19860
- clientId: z.ZodOptional<z.ZodString>;
19861
- channelId: z.ZodOptional<z.ZodString>;
19913
+ wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
19914
+ wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
19915
+ phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
19916
+ email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
19917
+ clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
19918
+ channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
19862
19919
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
19863
19920
  apiKey: z.ZodOptional<z.ZodString>;
19864
19921
  tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
19922
+ integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
19865
19923
  }, "strip", z.ZodTypeAny, {
19866
- email: string;
19867
- wabaExternalId: string;
19868
- phoneNumberId: string;
19869
- wabaBusinessId?: string | undefined;
19870
- clientId?: string | undefined;
19871
- channelId?: string | undefined;
19924
+ wabaBusinessId?: string | null | undefined;
19925
+ wabaExternalId?: string | null | undefined;
19926
+ phoneNumberId?: string | null | undefined;
19927
+ email?: string | null | undefined;
19928
+ clientId?: string | null | undefined;
19929
+ channelId?: string | null | undefined;
19872
19930
  status?: "active" | "pending" | undefined;
19873
19931
  apiKey?: string | undefined;
19874
19932
  tier?: "basic" | "regular" | "premium" | undefined;
19933
+ integrationType?: "meta" | "360dialog" | undefined;
19875
19934
  }, {
19876
- email: string;
19877
- wabaExternalId: string;
19878
- phoneNumberId: string;
19879
- wabaBusinessId?: string | undefined;
19880
- clientId?: string | undefined;
19881
- channelId?: string | undefined;
19935
+ wabaBusinessId?: string | null | undefined;
19936
+ wabaExternalId?: string | null | undefined;
19937
+ phoneNumberId?: string | null | undefined;
19938
+ email?: string | null | undefined;
19939
+ clientId?: string | null | undefined;
19940
+ channelId?: string | null | undefined;
19882
19941
  status?: "active" | "pending" | undefined;
19883
19942
  apiKey?: string | undefined;
19884
19943
  tier?: "basic" | "regular" | "premium" | undefined;
19944
+ integrationType?: "meta" | "360dialog" | undefined;
19885
19945
  }>>;
19886
19946
  vonageCredentials: z.ZodOptional<z.ZodObject<{
19887
19947
  mobileNumber: z.ZodString;
@@ -19906,15 +19966,16 @@ export declare const telegramContract: {
19906
19966
  additionalCredentials?: any;
19907
19967
  senderId?: string | undefined;
19908
19968
  whatsapp?: {
19909
- email: string;
19910
- wabaExternalId: string;
19911
- phoneNumberId: string;
19912
- wabaBusinessId?: string | undefined;
19913
- clientId?: string | undefined;
19914
- channelId?: string | undefined;
19969
+ wabaBusinessId?: string | null | undefined;
19970
+ wabaExternalId?: string | null | undefined;
19971
+ phoneNumberId?: string | null | undefined;
19972
+ email?: string | null | undefined;
19973
+ clientId?: string | null | undefined;
19974
+ channelId?: string | null | undefined;
19915
19975
  status?: "active" | "pending" | undefined;
19916
19976
  apiKey?: string | undefined;
19917
19977
  tier?: "basic" | "regular" | "premium" | undefined;
19978
+ integrationType?: "meta" | "360dialog" | undefined;
19918
19979
  } | undefined;
19919
19980
  vonageCredentials?: {
19920
19981
  apiKey: string;
@@ -19931,15 +19992,16 @@ export declare const telegramContract: {
19931
19992
  additionalCredentials?: any;
19932
19993
  senderId?: string | undefined;
19933
19994
  whatsapp?: {
19934
- email: string;
19935
- wabaExternalId: string;
19936
- phoneNumberId: string;
19937
- wabaBusinessId?: string | undefined;
19938
- clientId?: string | undefined;
19939
- channelId?: string | undefined;
19995
+ wabaBusinessId?: string | null | undefined;
19996
+ wabaExternalId?: string | null | undefined;
19997
+ phoneNumberId?: string | null | undefined;
19998
+ email?: string | null | undefined;
19999
+ clientId?: string | null | undefined;
20000
+ channelId?: string | null | undefined;
19940
20001
  status?: "active" | "pending" | undefined;
19941
20002
  apiKey?: string | undefined;
19942
20003
  tier?: "basic" | "regular" | "premium" | undefined;
20004
+ integrationType?: "meta" | "360dialog" | undefined;
19943
20005
  } | undefined;
19944
20006
  vonageCredentials?: {
19945
20007
  apiKey: string;
@@ -19986,15 +20048,16 @@ export declare const telegramContract: {
19986
20048
  additionalCredentials?: any;
19987
20049
  senderId?: string | undefined;
19988
20050
  whatsapp?: {
19989
- email: string;
19990
- wabaExternalId: string;
19991
- phoneNumberId: string;
19992
- wabaBusinessId?: string | undefined;
19993
- clientId?: string | undefined;
19994
- channelId?: string | undefined;
20051
+ wabaBusinessId?: string | null | undefined;
20052
+ wabaExternalId?: string | null | undefined;
20053
+ phoneNumberId?: string | null | undefined;
20054
+ email?: string | null | undefined;
20055
+ clientId?: string | null | undefined;
20056
+ channelId?: string | null | undefined;
19995
20057
  status?: "active" | "pending" | undefined;
19996
20058
  apiKey?: string | undefined;
19997
20059
  tier?: "basic" | "regular" | "premium" | undefined;
20060
+ integrationType?: "meta" | "360dialog" | undefined;
19998
20061
  } | undefined;
19999
20062
  vonageCredentials?: {
20000
20063
  apiKey: string;
@@ -20029,15 +20092,16 @@ export declare const telegramContract: {
20029
20092
  additionalCredentials?: any;
20030
20093
  senderId?: string | undefined;
20031
20094
  whatsapp?: {
20032
- email: string;
20033
- wabaExternalId: string;
20034
- phoneNumberId: string;
20035
- wabaBusinessId?: string | undefined;
20036
- clientId?: string | undefined;
20037
- channelId?: string | undefined;
20095
+ wabaBusinessId?: string | null | undefined;
20096
+ wabaExternalId?: string | null | undefined;
20097
+ phoneNumberId?: string | null | undefined;
20098
+ email?: string | null | undefined;
20099
+ clientId?: string | null | undefined;
20100
+ channelId?: string | null | undefined;
20038
20101
  status?: "active" | "pending" | undefined;
20039
20102
  apiKey?: string | undefined;
20040
20103
  tier?: "basic" | "regular" | "premium" | undefined;
20104
+ integrationType?: "meta" | "360dialog" | undefined;
20041
20105
  } | undefined;
20042
20106
  vonageCredentials?: {
20043
20107
  apiKey: string;
@@ -20074,15 +20138,16 @@ export declare const telegramContract: {
20074
20138
  additionalCredentials?: any;
20075
20139
  senderId?: string | undefined;
20076
20140
  whatsapp?: {
20077
- email: string;
20078
- wabaExternalId: string;
20079
- phoneNumberId: string;
20080
- wabaBusinessId?: string | undefined;
20081
- clientId?: string | undefined;
20082
- channelId?: string | undefined;
20141
+ wabaBusinessId?: string | null | undefined;
20142
+ wabaExternalId?: string | null | undefined;
20143
+ phoneNumberId?: string | null | undefined;
20144
+ email?: string | null | undefined;
20145
+ clientId?: string | null | undefined;
20146
+ channelId?: string | null | undefined;
20083
20147
  status?: "active" | "pending" | undefined;
20084
20148
  apiKey?: string | undefined;
20085
20149
  tier?: "basic" | "regular" | "premium" | undefined;
20150
+ integrationType?: "meta" | "360dialog" | undefined;
20086
20151
  } | undefined;
20087
20152
  vonageCredentials?: {
20088
20153
  apiKey: string;
@@ -20120,15 +20185,16 @@ export declare const telegramContract: {
20120
20185
  additionalCredentials?: any;
20121
20186
  senderId?: string | undefined;
20122
20187
  whatsapp?: {
20123
- email: string;
20124
- wabaExternalId: string;
20125
- phoneNumberId: string;
20126
- wabaBusinessId?: string | undefined;
20127
- clientId?: string | undefined;
20128
- channelId?: string | undefined;
20188
+ wabaBusinessId?: string | null | undefined;
20189
+ wabaExternalId?: string | null | undefined;
20190
+ phoneNumberId?: string | null | undefined;
20191
+ email?: string | null | undefined;
20192
+ clientId?: string | null | undefined;
20193
+ channelId?: string | null | undefined;
20129
20194
  status?: "active" | "pending" | undefined;
20130
20195
  apiKey?: string | undefined;
20131
20196
  tier?: "basic" | "regular" | "premium" | undefined;
20197
+ integrationType?: "meta" | "360dialog" | undefined;
20132
20198
  } | undefined;
20133
20199
  vonageCredentials?: {
20134
20200
  apiKey: string;
@@ -20203,35 +20269,38 @@ export declare const telegramContract: {
20203
20269
  additionalCredentials: z.ZodOptional<z.ZodAny>;
20204
20270
  senderId: z.ZodOptional<z.ZodString>;
20205
20271
  whatsapp: z.ZodOptional<z.ZodObject<{
20206
- wabaBusinessId: z.ZodOptional<z.ZodString>;
20207
- wabaExternalId: z.ZodString;
20208
- phoneNumberId: z.ZodString;
20209
- email: z.ZodString;
20210
- clientId: z.ZodOptional<z.ZodString>;
20211
- channelId: z.ZodOptional<z.ZodString>;
20272
+ wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
20273
+ wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
20274
+ phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
20275
+ email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
20276
+ clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
20277
+ channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
20212
20278
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
20213
20279
  apiKey: z.ZodOptional<z.ZodString>;
20214
20280
  tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
20281
+ integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
20215
20282
  }, "strip", z.ZodTypeAny, {
20216
- email: string;
20217
- wabaExternalId: string;
20218
- phoneNumberId: string;
20219
- wabaBusinessId?: string | undefined;
20220
- clientId?: string | undefined;
20221
- channelId?: string | undefined;
20283
+ wabaBusinessId?: string | null | undefined;
20284
+ wabaExternalId?: string | null | undefined;
20285
+ phoneNumberId?: string | null | undefined;
20286
+ email?: string | null | undefined;
20287
+ clientId?: string | null | undefined;
20288
+ channelId?: string | null | undefined;
20222
20289
  status?: "active" | "pending" | undefined;
20223
20290
  apiKey?: string | undefined;
20224
20291
  tier?: "basic" | "regular" | "premium" | undefined;
20292
+ integrationType?: "meta" | "360dialog" | undefined;
20225
20293
  }, {
20226
- email: string;
20227
- wabaExternalId: string;
20228
- phoneNumberId: string;
20229
- wabaBusinessId?: string | undefined;
20230
- clientId?: string | undefined;
20231
- channelId?: string | undefined;
20294
+ wabaBusinessId?: string | null | undefined;
20295
+ wabaExternalId?: string | null | undefined;
20296
+ phoneNumberId?: string | null | undefined;
20297
+ email?: string | null | undefined;
20298
+ clientId?: string | null | undefined;
20299
+ channelId?: string | null | undefined;
20232
20300
  status?: "active" | "pending" | undefined;
20233
20301
  apiKey?: string | undefined;
20234
20302
  tier?: "basic" | "regular" | "premium" | undefined;
20303
+ integrationType?: "meta" | "360dialog" | undefined;
20235
20304
  }>>;
20236
20305
  vonageCredentials: z.ZodOptional<z.ZodObject<{
20237
20306
  mobileNumber: z.ZodString;
@@ -20256,15 +20325,16 @@ export declare const telegramContract: {
20256
20325
  additionalCredentials?: any;
20257
20326
  senderId?: string | undefined;
20258
20327
  whatsapp?: {
20259
- email: string;
20260
- wabaExternalId: string;
20261
- phoneNumberId: string;
20262
- wabaBusinessId?: string | undefined;
20263
- clientId?: string | undefined;
20264
- channelId?: string | undefined;
20328
+ wabaBusinessId?: string | null | undefined;
20329
+ wabaExternalId?: string | null | undefined;
20330
+ phoneNumberId?: string | null | undefined;
20331
+ email?: string | null | undefined;
20332
+ clientId?: string | null | undefined;
20333
+ channelId?: string | null | undefined;
20265
20334
  status?: "active" | "pending" | undefined;
20266
20335
  apiKey?: string | undefined;
20267
20336
  tier?: "basic" | "regular" | "premium" | undefined;
20337
+ integrationType?: "meta" | "360dialog" | undefined;
20268
20338
  } | undefined;
20269
20339
  vonageCredentials?: {
20270
20340
  apiKey: string;
@@ -20281,15 +20351,16 @@ export declare const telegramContract: {
20281
20351
  additionalCredentials?: any;
20282
20352
  senderId?: string | undefined;
20283
20353
  whatsapp?: {
20284
- email: string;
20285
- wabaExternalId: string;
20286
- phoneNumberId: string;
20287
- wabaBusinessId?: string | undefined;
20288
- clientId?: string | undefined;
20289
- channelId?: string | undefined;
20354
+ wabaBusinessId?: string | null | undefined;
20355
+ wabaExternalId?: string | null | undefined;
20356
+ phoneNumberId?: string | null | undefined;
20357
+ email?: string | null | undefined;
20358
+ clientId?: string | null | undefined;
20359
+ channelId?: string | null | undefined;
20290
20360
  status?: "active" | "pending" | undefined;
20291
20361
  apiKey?: string | undefined;
20292
20362
  tier?: "basic" | "regular" | "premium" | undefined;
20363
+ integrationType?: "meta" | "360dialog" | undefined;
20293
20364
  } | undefined;
20294
20365
  vonageCredentials?: {
20295
20366
  apiKey: string;
@@ -20336,15 +20407,16 @@ export declare const telegramContract: {
20336
20407
  additionalCredentials?: any;
20337
20408
  senderId?: string | undefined;
20338
20409
  whatsapp?: {
20339
- email: string;
20340
- wabaExternalId: string;
20341
- phoneNumberId: string;
20342
- wabaBusinessId?: string | undefined;
20343
- clientId?: string | undefined;
20344
- channelId?: string | undefined;
20410
+ wabaBusinessId?: string | null | undefined;
20411
+ wabaExternalId?: string | null | undefined;
20412
+ phoneNumberId?: string | null | undefined;
20413
+ email?: string | null | undefined;
20414
+ clientId?: string | null | undefined;
20415
+ channelId?: string | null | undefined;
20345
20416
  status?: "active" | "pending" | undefined;
20346
20417
  apiKey?: string | undefined;
20347
20418
  tier?: "basic" | "regular" | "premium" | undefined;
20419
+ integrationType?: "meta" | "360dialog" | undefined;
20348
20420
  } | undefined;
20349
20421
  vonageCredentials?: {
20350
20422
  apiKey: string;
@@ -20379,15 +20451,16 @@ export declare const telegramContract: {
20379
20451
  additionalCredentials?: any;
20380
20452
  senderId?: string | undefined;
20381
20453
  whatsapp?: {
20382
- email: string;
20383
- wabaExternalId: string;
20384
- phoneNumberId: string;
20385
- wabaBusinessId?: string | undefined;
20386
- clientId?: string | undefined;
20387
- channelId?: string | undefined;
20454
+ wabaBusinessId?: string | null | undefined;
20455
+ wabaExternalId?: string | null | undefined;
20456
+ phoneNumberId?: string | null | undefined;
20457
+ email?: string | null | undefined;
20458
+ clientId?: string | null | undefined;
20459
+ channelId?: string | null | undefined;
20388
20460
  status?: "active" | "pending" | undefined;
20389
20461
  apiKey?: string | undefined;
20390
20462
  tier?: "basic" | "regular" | "premium" | undefined;
20463
+ integrationType?: "meta" | "360dialog" | undefined;
20391
20464
  } | undefined;
20392
20465
  vonageCredentials?: {
20393
20466
  apiKey: string;
@@ -20424,15 +20497,16 @@ export declare const telegramContract: {
20424
20497
  additionalCredentials?: any;
20425
20498
  senderId?: string | undefined;
20426
20499
  whatsapp?: {
20427
- email: string;
20428
- wabaExternalId: string;
20429
- phoneNumberId: string;
20430
- wabaBusinessId?: string | undefined;
20431
- clientId?: string | undefined;
20432
- channelId?: string | undefined;
20500
+ wabaBusinessId?: string | null | undefined;
20501
+ wabaExternalId?: string | null | undefined;
20502
+ phoneNumberId?: string | null | undefined;
20503
+ email?: string | null | undefined;
20504
+ clientId?: string | null | undefined;
20505
+ channelId?: string | null | undefined;
20433
20506
  status?: "active" | "pending" | undefined;
20434
20507
  apiKey?: string | undefined;
20435
20508
  tier?: "basic" | "regular" | "premium" | undefined;
20509
+ integrationType?: "meta" | "360dialog" | undefined;
20436
20510
  } | undefined;
20437
20511
  vonageCredentials?: {
20438
20512
  apiKey: string;
@@ -20470,15 +20544,16 @@ export declare const telegramContract: {
20470
20544
  additionalCredentials?: any;
20471
20545
  senderId?: string | undefined;
20472
20546
  whatsapp?: {
20473
- email: string;
20474
- wabaExternalId: string;
20475
- phoneNumberId: string;
20476
- wabaBusinessId?: string | undefined;
20477
- clientId?: string | undefined;
20478
- channelId?: string | undefined;
20547
+ wabaBusinessId?: string | null | undefined;
20548
+ wabaExternalId?: string | null | undefined;
20549
+ phoneNumberId?: string | null | undefined;
20550
+ email?: string | null | undefined;
20551
+ clientId?: string | null | undefined;
20552
+ channelId?: string | null | undefined;
20479
20553
  status?: "active" | "pending" | undefined;
20480
20554
  apiKey?: string | undefined;
20481
20555
  tier?: "basic" | "regular" | "premium" | undefined;
20556
+ integrationType?: "meta" | "360dialog" | undefined;
20482
20557
  } | undefined;
20483
20558
  vonageCredentials?: {
20484
20559
  apiKey: string;