@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.
- package/dist/api-contracts/src/channel/index.d.ts +1253 -1074
- package/dist/api-contracts/src/channel/index.d.ts.map +1 -1
- package/dist/api-contracts/src/channel/schema.d.ts +84 -72
- package/dist/api-contracts/src/channel/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/channel/validation.d.ts +98 -84
- package/dist/api-contracts/src/channel/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/index.d.ts +1918 -1644
- package/dist/api-contracts/src/chat/index.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/schema.d.ts +462 -396
- package/dist/api-contracts/src/chat/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/validation.d.ts +679 -582
- package/dist/api-contracts/src/chat/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/contract.d.ts +7294 -6252
- package/dist/api-contracts/src/contract.d.ts.map +1 -1
- package/dist/api-contracts/src/cx-log/index.d.ts +91 -78
- package/dist/api-contracts/src/cx-log/index.d.ts.map +1 -1
- package/dist/api-contracts/src/cx-log/schema.d.ts +77 -66
- package/dist/api-contracts/src/cx-log/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/facebook-feed/index.d.ts +938 -804
- package/dist/api-contracts/src/facebook-feed/index.d.ts.map +1 -1
- package/dist/api-contracts/src/facebook-feed/schema.d.ts +63 -54
- package/dist/api-contracts/src/facebook-feed/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/facebook-feed/validation.d.ts +49 -42
- package/dist/api-contracts/src/facebook-feed/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/instagram/index.d.ts +735 -630
- package/dist/api-contracts/src/instagram/index.d.ts.map +1 -1
- package/dist/api-contracts/src/line/index.d.ts +651 -558
- package/dist/api-contracts/src/line/index.d.ts.map +1 -1
- package/dist/api-contracts/src/line/validation.d.ts +77 -66
- package/dist/api-contracts/src/line/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/messenger/index.d.ts +735 -630
- package/dist/api-contracts/src/messenger/index.d.ts.map +1 -1
- package/dist/api-contracts/src/messenger/validation.d.ts +49 -42
- package/dist/api-contracts/src/messenger/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/sms/index.d.ts +140 -120
- package/dist/api-contracts/src/sms/index.d.ts.map +1 -1
- package/dist/api-contracts/src/telegram/index.d.ts +525 -450
- package/dist/api-contracts/src/telegram/index.d.ts.map +1 -1
- package/dist/api-contracts/src/viber/index.d.ts +525 -450
- package/dist/api-contracts/src/viber/index.d.ts.map +1 -1
- package/dist/api-contracts/src/webchat/index.d.ts +525 -450
- package/dist/api-contracts/src/webchat/index.d.ts.map +1 -1
- package/dist/api-contracts/src/whatsapp/index.d.ts +623 -534
- package/dist/api-contracts/src/whatsapp/index.d.ts.map +1 -1
- package/dist/api-contracts/src/workflow-rule/index.d.ts +154 -132
- package/dist/api-contracts/src/workflow-rule/index.d.ts.map +1 -1
- package/dist/index.js +8 -7
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +8 -7
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
@@ -39,35 +39,38 @@ export declare const channelContract: {
|
|
39
39
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
40
40
|
senderId: z.ZodOptional<z.ZodString>;
|
41
41
|
whatsapp: z.ZodOptional<z.ZodObject<{
|
42
|
-
wabaBusinessId: z.ZodOptional<z.ZodString
|
43
|
-
wabaExternalId: z.ZodString
|
44
|
-
phoneNumberId: z.ZodString
|
45
|
-
email: z.ZodString
|
46
|
-
clientId: z.ZodOptional<z.ZodString
|
47
|
-
channelId: z.ZodOptional<z.ZodString
|
42
|
+
wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
43
|
+
wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
44
|
+
phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
45
|
+
email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
46
|
+
clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
47
|
+
channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
48
48
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
49
49
|
apiKey: z.ZodOptional<z.ZodString>;
|
50
50
|
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
51
|
+
integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
|
51
52
|
}, "strip", z.ZodTypeAny, {
|
52
|
-
|
53
|
-
wabaExternalId
|
54
|
-
phoneNumberId
|
55
|
-
|
56
|
-
clientId?: string | undefined;
|
57
|
-
channelId?: string | undefined;
|
53
|
+
wabaBusinessId?: string | null | undefined;
|
54
|
+
wabaExternalId?: string | null | undefined;
|
55
|
+
phoneNumberId?: string | null | undefined;
|
56
|
+
email?: string | null | undefined;
|
57
|
+
clientId?: string | null | undefined;
|
58
|
+
channelId?: string | null | undefined;
|
58
59
|
status?: "active" | "pending" | undefined;
|
59
60
|
apiKey?: string | undefined;
|
60
61
|
tier?: "basic" | "regular" | "premium" | undefined;
|
62
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
61
63
|
}, {
|
62
|
-
|
63
|
-
wabaExternalId
|
64
|
-
phoneNumberId
|
65
|
-
|
66
|
-
clientId?: string | undefined;
|
67
|
-
channelId?: string | undefined;
|
64
|
+
wabaBusinessId?: string | null | undefined;
|
65
|
+
wabaExternalId?: string | null | undefined;
|
66
|
+
phoneNumberId?: string | null | undefined;
|
67
|
+
email?: string | null | undefined;
|
68
|
+
clientId?: string | null | undefined;
|
69
|
+
channelId?: string | null | undefined;
|
68
70
|
status?: "active" | "pending" | undefined;
|
69
71
|
apiKey?: string | undefined;
|
70
72
|
tier?: "basic" | "regular" | "premium" | undefined;
|
73
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
71
74
|
}>>;
|
72
75
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
73
76
|
mobileNumber: z.ZodString;
|
@@ -92,15 +95,16 @@ export declare const channelContract: {
|
|
92
95
|
additionalCredentials?: any;
|
93
96
|
senderId?: string | undefined;
|
94
97
|
whatsapp?: {
|
95
|
-
|
96
|
-
wabaExternalId
|
97
|
-
phoneNumberId
|
98
|
-
|
99
|
-
clientId?: string | undefined;
|
100
|
-
channelId?: string | undefined;
|
98
|
+
wabaBusinessId?: string | null | undefined;
|
99
|
+
wabaExternalId?: string | null | undefined;
|
100
|
+
phoneNumberId?: string | null | undefined;
|
101
|
+
email?: string | null | undefined;
|
102
|
+
clientId?: string | null | undefined;
|
103
|
+
channelId?: string | null | undefined;
|
101
104
|
status?: "active" | "pending" | undefined;
|
102
105
|
apiKey?: string | undefined;
|
103
106
|
tier?: "basic" | "regular" | "premium" | undefined;
|
107
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
104
108
|
} | undefined;
|
105
109
|
vonageCredentials?: {
|
106
110
|
apiKey: string;
|
@@ -117,15 +121,16 @@ export declare const channelContract: {
|
|
117
121
|
additionalCredentials?: any;
|
118
122
|
senderId?: string | undefined;
|
119
123
|
whatsapp?: {
|
120
|
-
|
121
|
-
wabaExternalId
|
122
|
-
phoneNumberId
|
123
|
-
|
124
|
-
clientId?: string | undefined;
|
125
|
-
channelId?: string | undefined;
|
124
|
+
wabaBusinessId?: string | null | undefined;
|
125
|
+
wabaExternalId?: string | null | undefined;
|
126
|
+
phoneNumberId?: string | null | undefined;
|
127
|
+
email?: string | null | undefined;
|
128
|
+
clientId?: string | null | undefined;
|
129
|
+
channelId?: string | null | undefined;
|
126
130
|
status?: "active" | "pending" | undefined;
|
127
131
|
apiKey?: string | undefined;
|
128
132
|
tier?: "basic" | "regular" | "premium" | undefined;
|
133
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
129
134
|
} | undefined;
|
130
135
|
vonageCredentials?: {
|
131
136
|
apiKey: string;
|
@@ -376,15 +381,16 @@ export declare const channelContract: {
|
|
376
381
|
additionalCredentials?: any;
|
377
382
|
senderId?: string | undefined;
|
378
383
|
whatsapp?: {
|
379
|
-
|
380
|
-
wabaExternalId
|
381
|
-
phoneNumberId
|
382
|
-
|
383
|
-
clientId?: string | undefined;
|
384
|
-
channelId?: string | undefined;
|
384
|
+
wabaBusinessId?: string | null | undefined;
|
385
|
+
wabaExternalId?: string | null | undefined;
|
386
|
+
phoneNumberId?: string | null | undefined;
|
387
|
+
email?: string | null | undefined;
|
388
|
+
clientId?: string | null | undefined;
|
389
|
+
channelId?: string | null | undefined;
|
385
390
|
status?: "active" | "pending" | undefined;
|
386
391
|
apiKey?: string | undefined;
|
387
392
|
tier?: "basic" | "regular" | "premium" | undefined;
|
393
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
388
394
|
} | undefined;
|
389
395
|
vonageCredentials?: {
|
390
396
|
apiKey: string;
|
@@ -466,15 +472,16 @@ export declare const channelContract: {
|
|
466
472
|
additionalCredentials?: any;
|
467
473
|
senderId?: string | undefined;
|
468
474
|
whatsapp?: {
|
469
|
-
|
470
|
-
wabaExternalId
|
471
|
-
phoneNumberId
|
472
|
-
|
473
|
-
clientId?: string | undefined;
|
474
|
-
channelId?: string | undefined;
|
475
|
+
wabaBusinessId?: string | null | undefined;
|
476
|
+
wabaExternalId?: string | null | undefined;
|
477
|
+
phoneNumberId?: string | null | undefined;
|
478
|
+
email?: string | null | undefined;
|
479
|
+
clientId?: string | null | undefined;
|
480
|
+
channelId?: string | null | undefined;
|
475
481
|
status?: "active" | "pending" | undefined;
|
476
482
|
apiKey?: string | undefined;
|
477
483
|
tier?: "basic" | "regular" | "premium" | undefined;
|
484
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
478
485
|
} | undefined;
|
479
486
|
vonageCredentials?: {
|
480
487
|
apiKey: string;
|
@@ -558,15 +565,16 @@ export declare const channelContract: {
|
|
558
565
|
additionalCredentials?: any;
|
559
566
|
senderId?: string | undefined;
|
560
567
|
whatsapp?: {
|
561
|
-
|
562
|
-
wabaExternalId
|
563
|
-
phoneNumberId
|
564
|
-
|
565
|
-
clientId?: string | undefined;
|
566
|
-
channelId?: string | undefined;
|
568
|
+
wabaBusinessId?: string | null | undefined;
|
569
|
+
wabaExternalId?: string | null | undefined;
|
570
|
+
phoneNumberId?: string | null | undefined;
|
571
|
+
email?: string | null | undefined;
|
572
|
+
clientId?: string | null | undefined;
|
573
|
+
channelId?: string | null | undefined;
|
567
574
|
status?: "active" | "pending" | undefined;
|
568
575
|
apiKey?: string | undefined;
|
569
576
|
tier?: "basic" | "regular" | "premium" | undefined;
|
577
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
570
578
|
} | undefined;
|
571
579
|
vonageCredentials?: {
|
572
580
|
apiKey: string;
|
@@ -651,15 +659,16 @@ export declare const channelContract: {
|
|
651
659
|
additionalCredentials?: any;
|
652
660
|
senderId?: string | undefined;
|
653
661
|
whatsapp?: {
|
654
|
-
|
655
|
-
wabaExternalId
|
656
|
-
phoneNumberId
|
657
|
-
|
658
|
-
clientId?: string | undefined;
|
659
|
-
channelId?: string | undefined;
|
662
|
+
wabaBusinessId?: string | null | undefined;
|
663
|
+
wabaExternalId?: string | null | undefined;
|
664
|
+
phoneNumberId?: string | null | undefined;
|
665
|
+
email?: string | null | undefined;
|
666
|
+
clientId?: string | null | undefined;
|
667
|
+
channelId?: string | null | undefined;
|
660
668
|
status?: "active" | "pending" | undefined;
|
661
669
|
apiKey?: string | undefined;
|
662
670
|
tier?: "basic" | "regular" | "premium" | undefined;
|
671
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
663
672
|
} | undefined;
|
664
673
|
vonageCredentials?: {
|
665
674
|
apiKey: string;
|
@@ -776,35 +785,38 @@ export declare const channelContract: {
|
|
776
785
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
777
786
|
senderId: z.ZodOptional<z.ZodString>;
|
778
787
|
whatsapp: z.ZodOptional<z.ZodObject<{
|
779
|
-
wabaBusinessId: z.ZodOptional<z.ZodString
|
780
|
-
wabaExternalId: z.ZodString
|
781
|
-
phoneNumberId: z.ZodString
|
782
|
-
email: z.ZodString
|
783
|
-
clientId: z.ZodOptional<z.ZodString
|
784
|
-
channelId: z.ZodOptional<z.ZodString
|
788
|
+
wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
789
|
+
wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
790
|
+
phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
791
|
+
email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
792
|
+
clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
793
|
+
channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
785
794
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
786
795
|
apiKey: z.ZodOptional<z.ZodString>;
|
787
796
|
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
797
|
+
integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
|
788
798
|
}, "strip", z.ZodTypeAny, {
|
789
|
-
|
790
|
-
wabaExternalId
|
791
|
-
phoneNumberId
|
792
|
-
|
793
|
-
clientId?: string | undefined;
|
794
|
-
channelId?: string | undefined;
|
799
|
+
wabaBusinessId?: string | null | undefined;
|
800
|
+
wabaExternalId?: string | null | undefined;
|
801
|
+
phoneNumberId?: string | null | undefined;
|
802
|
+
email?: string | null | undefined;
|
803
|
+
clientId?: string | null | undefined;
|
804
|
+
channelId?: string | null | undefined;
|
795
805
|
status?: "active" | "pending" | undefined;
|
796
806
|
apiKey?: string | undefined;
|
797
807
|
tier?: "basic" | "regular" | "premium" | undefined;
|
808
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
798
809
|
}, {
|
799
|
-
|
800
|
-
wabaExternalId
|
801
|
-
phoneNumberId
|
802
|
-
|
803
|
-
clientId?: string | undefined;
|
804
|
-
channelId?: string | undefined;
|
810
|
+
wabaBusinessId?: string | null | undefined;
|
811
|
+
wabaExternalId?: string | null | undefined;
|
812
|
+
phoneNumberId?: string | null | undefined;
|
813
|
+
email?: string | null | undefined;
|
814
|
+
clientId?: string | null | undefined;
|
815
|
+
channelId?: string | null | undefined;
|
805
816
|
status?: "active" | "pending" | undefined;
|
806
817
|
apiKey?: string | undefined;
|
807
818
|
tier?: "basic" | "regular" | "premium" | undefined;
|
819
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
808
820
|
}>>;
|
809
821
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
810
822
|
mobileNumber: z.ZodString;
|
@@ -829,15 +841,16 @@ export declare const channelContract: {
|
|
829
841
|
additionalCredentials?: any;
|
830
842
|
senderId?: string | undefined;
|
831
843
|
whatsapp?: {
|
832
|
-
|
833
|
-
wabaExternalId
|
834
|
-
phoneNumberId
|
835
|
-
|
836
|
-
clientId?: string | undefined;
|
837
|
-
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;
|
838
850
|
status?: "active" | "pending" | undefined;
|
839
851
|
apiKey?: string | undefined;
|
840
852
|
tier?: "basic" | "regular" | "premium" | undefined;
|
853
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
841
854
|
} | undefined;
|
842
855
|
vonageCredentials?: {
|
843
856
|
apiKey: string;
|
@@ -854,15 +867,16 @@ export declare const channelContract: {
|
|
854
867
|
additionalCredentials?: any;
|
855
868
|
senderId?: string | undefined;
|
856
869
|
whatsapp?: {
|
857
|
-
|
858
|
-
wabaExternalId
|
859
|
-
phoneNumberId
|
860
|
-
|
861
|
-
clientId?: string | undefined;
|
862
|
-
channelId?: string | undefined;
|
870
|
+
wabaBusinessId?: string | null | undefined;
|
871
|
+
wabaExternalId?: string | null | undefined;
|
872
|
+
phoneNumberId?: string | null | undefined;
|
873
|
+
email?: string | null | undefined;
|
874
|
+
clientId?: string | null | undefined;
|
875
|
+
channelId?: string | null | undefined;
|
863
876
|
status?: "active" | "pending" | undefined;
|
864
877
|
apiKey?: string | undefined;
|
865
878
|
tier?: "basic" | "regular" | "premium" | undefined;
|
879
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
866
880
|
} | undefined;
|
867
881
|
vonageCredentials?: {
|
868
882
|
apiKey: string;
|
@@ -914,15 +928,16 @@ export declare const channelContract: {
|
|
914
928
|
additionalCredentials?: any;
|
915
929
|
senderId?: string | undefined;
|
916
930
|
whatsapp?: {
|
917
|
-
|
918
|
-
wabaExternalId
|
919
|
-
phoneNumberId
|
920
|
-
|
921
|
-
clientId?: string | undefined;
|
922
|
-
channelId?: string | undefined;
|
931
|
+
wabaBusinessId?: string | null | undefined;
|
932
|
+
wabaExternalId?: string | null | undefined;
|
933
|
+
phoneNumberId?: string | null | undefined;
|
934
|
+
email?: string | null | undefined;
|
935
|
+
clientId?: string | null | undefined;
|
936
|
+
channelId?: string | null | undefined;
|
923
937
|
status?: "active" | "pending" | undefined;
|
924
938
|
apiKey?: string | undefined;
|
925
939
|
tier?: "basic" | "regular" | "premium" | undefined;
|
940
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
926
941
|
} | undefined;
|
927
942
|
vonageCredentials?: {
|
928
943
|
apiKey: string;
|
@@ -961,15 +976,16 @@ export declare const channelContract: {
|
|
961
976
|
additionalCredentials?: any;
|
962
977
|
senderId?: string | undefined;
|
963
978
|
whatsapp?: {
|
964
|
-
|
965
|
-
wabaExternalId
|
966
|
-
phoneNumberId
|
967
|
-
|
968
|
-
clientId?: string | undefined;
|
969
|
-
channelId?: string | undefined;
|
979
|
+
wabaBusinessId?: string | null | undefined;
|
980
|
+
wabaExternalId?: string | null | undefined;
|
981
|
+
phoneNumberId?: string | null | undefined;
|
982
|
+
email?: string | null | undefined;
|
983
|
+
clientId?: string | null | undefined;
|
984
|
+
channelId?: string | null | undefined;
|
970
985
|
status?: "active" | "pending" | undefined;
|
971
986
|
apiKey?: string | undefined;
|
972
987
|
tier?: "basic" | "regular" | "premium" | undefined;
|
988
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
973
989
|
} | undefined;
|
974
990
|
vonageCredentials?: {
|
975
991
|
apiKey: string;
|
@@ -1010,15 +1026,16 @@ export declare const channelContract: {
|
|
1010
1026
|
additionalCredentials?: any;
|
1011
1027
|
senderId?: string | undefined;
|
1012
1028
|
whatsapp?: {
|
1013
|
-
|
1014
|
-
wabaExternalId
|
1015
|
-
phoneNumberId
|
1016
|
-
|
1017
|
-
clientId?: string | undefined;
|
1018
|
-
channelId?: string | undefined;
|
1029
|
+
wabaBusinessId?: string | null | undefined;
|
1030
|
+
wabaExternalId?: string | null | undefined;
|
1031
|
+
phoneNumberId?: string | null | undefined;
|
1032
|
+
email?: string | null | undefined;
|
1033
|
+
clientId?: string | null | undefined;
|
1034
|
+
channelId?: string | null | undefined;
|
1019
1035
|
status?: "active" | "pending" | undefined;
|
1020
1036
|
apiKey?: string | undefined;
|
1021
1037
|
tier?: "basic" | "regular" | "premium" | undefined;
|
1038
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
1022
1039
|
} | undefined;
|
1023
1040
|
vonageCredentials?: {
|
1024
1041
|
apiKey: string;
|
@@ -1060,15 +1077,16 @@ export declare const channelContract: {
|
|
1060
1077
|
additionalCredentials?: any;
|
1061
1078
|
senderId?: string | undefined;
|
1062
1079
|
whatsapp?: {
|
1063
|
-
|
1064
|
-
wabaExternalId
|
1065
|
-
phoneNumberId
|
1066
|
-
|
1067
|
-
clientId?: string | undefined;
|
1068
|
-
channelId?: string | undefined;
|
1080
|
+
wabaBusinessId?: string | null | undefined;
|
1081
|
+
wabaExternalId?: string | null | undefined;
|
1082
|
+
phoneNumberId?: string | null | undefined;
|
1083
|
+
email?: string | null | undefined;
|
1084
|
+
clientId?: string | null | undefined;
|
1085
|
+
channelId?: string | null | undefined;
|
1069
1086
|
status?: "active" | "pending" | undefined;
|
1070
1087
|
apiKey?: string | undefined;
|
1071
1088
|
tier?: "basic" | "regular" | "premium" | undefined;
|
1089
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
1072
1090
|
} | undefined;
|
1073
1091
|
vonageCredentials?: {
|
1074
1092
|
apiKey: string;
|
@@ -1156,35 +1174,38 @@ export declare const channelContract: {
|
|
1156
1174
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
1157
1175
|
senderId: z.ZodOptional<z.ZodString>;
|
1158
1176
|
whatsapp: z.ZodOptional<z.ZodObject<{
|
1159
|
-
wabaBusinessId: z.ZodOptional<z.ZodString
|
1160
|
-
wabaExternalId: z.ZodString
|
1161
|
-
phoneNumberId: z.ZodString
|
1162
|
-
email: z.ZodString
|
1163
|
-
clientId: z.ZodOptional<z.ZodString
|
1164
|
-
channelId: z.ZodOptional<z.ZodString
|
1177
|
+
wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
1178
|
+
wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
1179
|
+
phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
1180
|
+
email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
1181
|
+
clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
1182
|
+
channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
1165
1183
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
1166
1184
|
apiKey: z.ZodOptional<z.ZodString>;
|
1167
1185
|
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
1186
|
+
integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
|
1168
1187
|
}, "strip", z.ZodTypeAny, {
|
1169
|
-
|
1170
|
-
wabaExternalId
|
1171
|
-
phoneNumberId
|
1172
|
-
|
1173
|
-
clientId?: string | undefined;
|
1174
|
-
channelId?: string | undefined;
|
1188
|
+
wabaBusinessId?: string | null | undefined;
|
1189
|
+
wabaExternalId?: string | null | undefined;
|
1190
|
+
phoneNumberId?: string | null | undefined;
|
1191
|
+
email?: string | null | undefined;
|
1192
|
+
clientId?: string | null | undefined;
|
1193
|
+
channelId?: string | null | undefined;
|
1175
1194
|
status?: "active" | "pending" | undefined;
|
1176
1195
|
apiKey?: string | undefined;
|
1177
1196
|
tier?: "basic" | "regular" | "premium" | undefined;
|
1197
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
1178
1198
|
}, {
|
1179
|
-
|
1180
|
-
wabaExternalId
|
1181
|
-
phoneNumberId
|
1182
|
-
|
1183
|
-
clientId?: string | undefined;
|
1184
|
-
channelId?: string | undefined;
|
1199
|
+
wabaBusinessId?: string | null | undefined;
|
1200
|
+
wabaExternalId?: string | null | undefined;
|
1201
|
+
phoneNumberId?: string | null | undefined;
|
1202
|
+
email?: string | null | undefined;
|
1203
|
+
clientId?: string | null | undefined;
|
1204
|
+
channelId?: string | null | undefined;
|
1185
1205
|
status?: "active" | "pending" | undefined;
|
1186
1206
|
apiKey?: string | undefined;
|
1187
1207
|
tier?: "basic" | "regular" | "premium" | undefined;
|
1208
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
1188
1209
|
}>>;
|
1189
1210
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
1190
1211
|
mobileNumber: z.ZodString;
|
@@ -1209,15 +1230,16 @@ export declare const channelContract: {
|
|
1209
1230
|
additionalCredentials?: any;
|
1210
1231
|
senderId?: string | undefined;
|
1211
1232
|
whatsapp?: {
|
1212
|
-
|
1213
|
-
wabaExternalId
|
1214
|
-
phoneNumberId
|
1215
|
-
|
1216
|
-
clientId?: string | undefined;
|
1217
|
-
channelId?: string | undefined;
|
1233
|
+
wabaBusinessId?: string | null | undefined;
|
1234
|
+
wabaExternalId?: string | null | undefined;
|
1235
|
+
phoneNumberId?: string | null | undefined;
|
1236
|
+
email?: string | null | undefined;
|
1237
|
+
clientId?: string | null | undefined;
|
1238
|
+
channelId?: string | null | undefined;
|
1218
1239
|
status?: "active" | "pending" | undefined;
|
1219
1240
|
apiKey?: string | undefined;
|
1220
1241
|
tier?: "basic" | "regular" | "premium" | undefined;
|
1242
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
1221
1243
|
} | undefined;
|
1222
1244
|
vonageCredentials?: {
|
1223
1245
|
apiKey: string;
|
@@ -1234,15 +1256,16 @@ export declare const channelContract: {
|
|
1234
1256
|
additionalCredentials?: any;
|
1235
1257
|
senderId?: string | undefined;
|
1236
1258
|
whatsapp?: {
|
1237
|
-
|
1238
|
-
wabaExternalId
|
1239
|
-
phoneNumberId
|
1240
|
-
|
1241
|
-
clientId?: string | undefined;
|
1242
|
-
channelId?: string | undefined;
|
1259
|
+
wabaBusinessId?: string | null | undefined;
|
1260
|
+
wabaExternalId?: string | null | undefined;
|
1261
|
+
phoneNumberId?: string | null | undefined;
|
1262
|
+
email?: string | null | undefined;
|
1263
|
+
clientId?: string | null | undefined;
|
1264
|
+
channelId?: string | null | undefined;
|
1243
1265
|
status?: "active" | "pending" | undefined;
|
1244
1266
|
apiKey?: string | undefined;
|
1245
1267
|
tier?: "basic" | "regular" | "premium" | undefined;
|
1268
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
1246
1269
|
} | undefined;
|
1247
1270
|
vonageCredentials?: {
|
1248
1271
|
apiKey: string;
|
@@ -1493,15 +1516,16 @@ export declare const channelContract: {
|
|
1493
1516
|
additionalCredentials?: any;
|
1494
1517
|
senderId?: string | undefined;
|
1495
1518
|
whatsapp?: {
|
1496
|
-
|
1497
|
-
wabaExternalId
|
1498
|
-
phoneNumberId
|
1499
|
-
|
1500
|
-
clientId?: string | undefined;
|
1501
|
-
channelId?: string | undefined;
|
1519
|
+
wabaBusinessId?: string | null | undefined;
|
1520
|
+
wabaExternalId?: string | null | undefined;
|
1521
|
+
phoneNumberId?: string | null | undefined;
|
1522
|
+
email?: string | null | undefined;
|
1523
|
+
clientId?: string | null | undefined;
|
1524
|
+
channelId?: string | null | undefined;
|
1502
1525
|
status?: "active" | "pending" | undefined;
|
1503
1526
|
apiKey?: string | undefined;
|
1504
1527
|
tier?: "basic" | "regular" | "premium" | undefined;
|
1528
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
1505
1529
|
} | undefined;
|
1506
1530
|
vonageCredentials?: {
|
1507
1531
|
apiKey: string;
|
@@ -1583,15 +1607,16 @@ export declare const channelContract: {
|
|
1583
1607
|
additionalCredentials?: any;
|
1584
1608
|
senderId?: string | undefined;
|
1585
1609
|
whatsapp?: {
|
1586
|
-
|
1587
|
-
wabaExternalId
|
1588
|
-
phoneNumberId
|
1589
|
-
|
1590
|
-
clientId?: string | undefined;
|
1591
|
-
channelId?: string | undefined;
|
1610
|
+
wabaBusinessId?: string | null | undefined;
|
1611
|
+
wabaExternalId?: string | null | undefined;
|
1612
|
+
phoneNumberId?: string | null | undefined;
|
1613
|
+
email?: string | null | undefined;
|
1614
|
+
clientId?: string | null | undefined;
|
1615
|
+
channelId?: string | null | undefined;
|
1592
1616
|
status?: "active" | "pending" | undefined;
|
1593
1617
|
apiKey?: string | undefined;
|
1594
1618
|
tier?: "basic" | "regular" | "premium" | undefined;
|
1619
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
1595
1620
|
} | undefined;
|
1596
1621
|
vonageCredentials?: {
|
1597
1622
|
apiKey: string;
|
@@ -1675,15 +1700,16 @@ export declare const channelContract: {
|
|
1675
1700
|
additionalCredentials?: any;
|
1676
1701
|
senderId?: string | undefined;
|
1677
1702
|
whatsapp?: {
|
1678
|
-
|
1679
|
-
wabaExternalId
|
1680
|
-
phoneNumberId
|
1681
|
-
|
1682
|
-
clientId?: string | undefined;
|
1683
|
-
channelId?: string | undefined;
|
1703
|
+
wabaBusinessId?: string | null | undefined;
|
1704
|
+
wabaExternalId?: string | null | undefined;
|
1705
|
+
phoneNumberId?: string | null | undefined;
|
1706
|
+
email?: string | null | undefined;
|
1707
|
+
clientId?: string | null | undefined;
|
1708
|
+
channelId?: string | null | undefined;
|
1684
1709
|
status?: "active" | "pending" | undefined;
|
1685
1710
|
apiKey?: string | undefined;
|
1686
1711
|
tier?: "basic" | "regular" | "premium" | undefined;
|
1712
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
1687
1713
|
} | undefined;
|
1688
1714
|
vonageCredentials?: {
|
1689
1715
|
apiKey: string;
|
@@ -1768,15 +1794,16 @@ export declare const channelContract: {
|
|
1768
1794
|
additionalCredentials?: any;
|
1769
1795
|
senderId?: string | undefined;
|
1770
1796
|
whatsapp?: {
|
1771
|
-
|
1772
|
-
wabaExternalId
|
1773
|
-
phoneNumberId
|
1774
|
-
|
1775
|
-
clientId?: string | undefined;
|
1776
|
-
channelId?: string | undefined;
|
1797
|
+
wabaBusinessId?: string | null | undefined;
|
1798
|
+
wabaExternalId?: string | null | undefined;
|
1799
|
+
phoneNumberId?: string | null | undefined;
|
1800
|
+
email?: string | null | undefined;
|
1801
|
+
clientId?: string | null | undefined;
|
1802
|
+
channelId?: string | null | undefined;
|
1777
1803
|
status?: "active" | "pending" | undefined;
|
1778
1804
|
apiKey?: string | undefined;
|
1779
1805
|
tier?: "basic" | "regular" | "premium" | undefined;
|
1806
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
1780
1807
|
} | undefined;
|
1781
1808
|
vonageCredentials?: {
|
1782
1809
|
apiKey: string;
|
@@ -1913,35 +1940,38 @@ export declare const channelContract: {
|
|
1913
1940
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
1914
1941
|
senderId: z.ZodOptional<z.ZodString>;
|
1915
1942
|
whatsapp: z.ZodOptional<z.ZodObject<{
|
1916
|
-
wabaBusinessId: z.ZodOptional<z.ZodString
|
1917
|
-
wabaExternalId: z.ZodString
|
1918
|
-
phoneNumberId: z.ZodString
|
1919
|
-
email: z.ZodString
|
1920
|
-
clientId: z.ZodOptional<z.ZodString
|
1921
|
-
channelId: z.ZodOptional<z.ZodString
|
1943
|
+
wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
1944
|
+
wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
1945
|
+
phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
1946
|
+
email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
1947
|
+
clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
1948
|
+
channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
1922
1949
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
1923
1950
|
apiKey: z.ZodOptional<z.ZodString>;
|
1924
1951
|
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
1952
|
+
integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
|
1925
1953
|
}, "strip", z.ZodTypeAny, {
|
1926
|
-
|
1927
|
-
wabaExternalId
|
1928
|
-
phoneNumberId
|
1929
|
-
|
1930
|
-
clientId?: string | undefined;
|
1931
|
-
channelId?: string | undefined;
|
1954
|
+
wabaBusinessId?: string | null | undefined;
|
1955
|
+
wabaExternalId?: string | null | undefined;
|
1956
|
+
phoneNumberId?: string | null | undefined;
|
1957
|
+
email?: string | null | undefined;
|
1958
|
+
clientId?: string | null | undefined;
|
1959
|
+
channelId?: string | null | undefined;
|
1932
1960
|
status?: "active" | "pending" | undefined;
|
1933
1961
|
apiKey?: string | undefined;
|
1934
1962
|
tier?: "basic" | "regular" | "premium" | undefined;
|
1963
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
1935
1964
|
}, {
|
1936
|
-
|
1937
|
-
wabaExternalId
|
1938
|
-
phoneNumberId
|
1939
|
-
|
1940
|
-
clientId?: string | undefined;
|
1941
|
-
channelId?: string | undefined;
|
1965
|
+
wabaBusinessId?: string | null | undefined;
|
1966
|
+
wabaExternalId?: string | null | undefined;
|
1967
|
+
phoneNumberId?: string | null | undefined;
|
1968
|
+
email?: string | null | undefined;
|
1969
|
+
clientId?: string | null | undefined;
|
1970
|
+
channelId?: string | null | undefined;
|
1942
1971
|
status?: "active" | "pending" | undefined;
|
1943
1972
|
apiKey?: string | undefined;
|
1944
1973
|
tier?: "basic" | "regular" | "premium" | undefined;
|
1974
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
1945
1975
|
}>>;
|
1946
1976
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
1947
1977
|
mobileNumber: z.ZodString;
|
@@ -1966,15 +1996,16 @@ export declare const channelContract: {
|
|
1966
1996
|
additionalCredentials?: any;
|
1967
1997
|
senderId?: string | undefined;
|
1968
1998
|
whatsapp?: {
|
1969
|
-
|
1970
|
-
wabaExternalId
|
1971
|
-
phoneNumberId
|
1972
|
-
|
1973
|
-
clientId?: string | undefined;
|
1974
|
-
channelId?: string | undefined;
|
1999
|
+
wabaBusinessId?: string | null | undefined;
|
2000
|
+
wabaExternalId?: string | null | undefined;
|
2001
|
+
phoneNumberId?: string | null | undefined;
|
2002
|
+
email?: string | null | undefined;
|
2003
|
+
clientId?: string | null | undefined;
|
2004
|
+
channelId?: string | null | undefined;
|
1975
2005
|
status?: "active" | "pending" | undefined;
|
1976
2006
|
apiKey?: string | undefined;
|
1977
2007
|
tier?: "basic" | "regular" | "premium" | undefined;
|
2008
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
1978
2009
|
} | undefined;
|
1979
2010
|
vonageCredentials?: {
|
1980
2011
|
apiKey: string;
|
@@ -1991,15 +2022,16 @@ export declare const channelContract: {
|
|
1991
2022
|
additionalCredentials?: any;
|
1992
2023
|
senderId?: string | undefined;
|
1993
2024
|
whatsapp?: {
|
1994
|
-
|
1995
|
-
wabaExternalId
|
1996
|
-
phoneNumberId
|
1997
|
-
|
1998
|
-
clientId?: string | undefined;
|
1999
|
-
channelId?: string | undefined;
|
2025
|
+
wabaBusinessId?: string | null | undefined;
|
2026
|
+
wabaExternalId?: string | null | undefined;
|
2027
|
+
phoneNumberId?: string | null | undefined;
|
2028
|
+
email?: string | null | undefined;
|
2029
|
+
clientId?: string | null | undefined;
|
2030
|
+
channelId?: string | null | undefined;
|
2000
2031
|
status?: "active" | "pending" | undefined;
|
2001
2032
|
apiKey?: string | undefined;
|
2002
2033
|
tier?: "basic" | "regular" | "premium" | undefined;
|
2034
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
2003
2035
|
} | undefined;
|
2004
2036
|
vonageCredentials?: {
|
2005
2037
|
apiKey: string;
|
@@ -2250,15 +2282,16 @@ export declare const channelContract: {
|
|
2250
2282
|
additionalCredentials?: any;
|
2251
2283
|
senderId?: string | undefined;
|
2252
2284
|
whatsapp?: {
|
2253
|
-
|
2254
|
-
wabaExternalId
|
2255
|
-
phoneNumberId
|
2256
|
-
|
2257
|
-
clientId?: string | undefined;
|
2258
|
-
channelId?: string | undefined;
|
2285
|
+
wabaBusinessId?: string | null | undefined;
|
2286
|
+
wabaExternalId?: string | null | undefined;
|
2287
|
+
phoneNumberId?: string | null | undefined;
|
2288
|
+
email?: string | null | undefined;
|
2289
|
+
clientId?: string | null | undefined;
|
2290
|
+
channelId?: string | null | undefined;
|
2259
2291
|
status?: "active" | "pending" | undefined;
|
2260
2292
|
apiKey?: string | undefined;
|
2261
2293
|
tier?: "basic" | "regular" | "premium" | undefined;
|
2294
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
2262
2295
|
} | undefined;
|
2263
2296
|
vonageCredentials?: {
|
2264
2297
|
apiKey: string;
|
@@ -2340,15 +2373,16 @@ export declare const channelContract: {
|
|
2340
2373
|
additionalCredentials?: any;
|
2341
2374
|
senderId?: string | undefined;
|
2342
2375
|
whatsapp?: {
|
2343
|
-
|
2344
|
-
wabaExternalId
|
2345
|
-
phoneNumberId
|
2346
|
-
|
2347
|
-
clientId?: string | undefined;
|
2348
|
-
channelId?: string | undefined;
|
2376
|
+
wabaBusinessId?: string | null | undefined;
|
2377
|
+
wabaExternalId?: string | null | undefined;
|
2378
|
+
phoneNumberId?: string | null | undefined;
|
2379
|
+
email?: string | null | undefined;
|
2380
|
+
clientId?: string | null | undefined;
|
2381
|
+
channelId?: string | null | undefined;
|
2349
2382
|
status?: "active" | "pending" | undefined;
|
2350
2383
|
apiKey?: string | undefined;
|
2351
2384
|
tier?: "basic" | "regular" | "premium" | undefined;
|
2385
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
2352
2386
|
} | undefined;
|
2353
2387
|
vonageCredentials?: {
|
2354
2388
|
apiKey: string;
|
@@ -2432,15 +2466,16 @@ export declare const channelContract: {
|
|
2432
2466
|
additionalCredentials?: any;
|
2433
2467
|
senderId?: string | undefined;
|
2434
2468
|
whatsapp?: {
|
2435
|
-
|
2436
|
-
wabaExternalId
|
2437
|
-
phoneNumberId
|
2438
|
-
|
2439
|
-
clientId?: string | undefined;
|
2440
|
-
channelId?: string | undefined;
|
2469
|
+
wabaBusinessId?: string | null | undefined;
|
2470
|
+
wabaExternalId?: string | null | undefined;
|
2471
|
+
phoneNumberId?: string | null | undefined;
|
2472
|
+
email?: string | null | undefined;
|
2473
|
+
clientId?: string | null | undefined;
|
2474
|
+
channelId?: string | null | undefined;
|
2441
2475
|
status?: "active" | "pending" | undefined;
|
2442
2476
|
apiKey?: string | undefined;
|
2443
2477
|
tier?: "basic" | "regular" | "premium" | undefined;
|
2478
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
2444
2479
|
} | undefined;
|
2445
2480
|
vonageCredentials?: {
|
2446
2481
|
apiKey: string;
|
@@ -2525,15 +2560,16 @@ export declare const channelContract: {
|
|
2525
2560
|
additionalCredentials?: any;
|
2526
2561
|
senderId?: string | undefined;
|
2527
2562
|
whatsapp?: {
|
2528
|
-
|
2529
|
-
wabaExternalId
|
2530
|
-
phoneNumberId
|
2531
|
-
|
2532
|
-
clientId?: string | undefined;
|
2533
|
-
channelId?: string | undefined;
|
2563
|
+
wabaBusinessId?: string | null | undefined;
|
2564
|
+
wabaExternalId?: string | null | undefined;
|
2565
|
+
phoneNumberId?: string | null | undefined;
|
2566
|
+
email?: string | null | undefined;
|
2567
|
+
clientId?: string | null | undefined;
|
2568
|
+
channelId?: string | null | undefined;
|
2534
2569
|
status?: "active" | "pending" | undefined;
|
2535
2570
|
apiKey?: string | undefined;
|
2536
2571
|
tier?: "basic" | "regular" | "premium" | undefined;
|
2572
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
2537
2573
|
} | undefined;
|
2538
2574
|
vonageCredentials?: {
|
2539
2575
|
apiKey: string;
|
@@ -2664,35 +2700,38 @@ export declare const channelContract: {
|
|
2664
2700
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
2665
2701
|
senderId: z.ZodOptional<z.ZodString>;
|
2666
2702
|
whatsapp: z.ZodOptional<z.ZodObject<{
|
2667
|
-
wabaBusinessId: z.ZodOptional<z.ZodString
|
2668
|
-
wabaExternalId: z.ZodString
|
2669
|
-
phoneNumberId: z.ZodString
|
2670
|
-
email: z.ZodString
|
2671
|
-
clientId: z.ZodOptional<z.ZodString
|
2672
|
-
channelId: z.ZodOptional<z.ZodString
|
2703
|
+
wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
2704
|
+
wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
2705
|
+
phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
2706
|
+
email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
2707
|
+
clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
2708
|
+
channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
2673
2709
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
2674
2710
|
apiKey: z.ZodOptional<z.ZodString>;
|
2675
2711
|
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
2712
|
+
integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
|
2676
2713
|
}, "strip", z.ZodTypeAny, {
|
2677
|
-
|
2678
|
-
wabaExternalId
|
2679
|
-
phoneNumberId
|
2680
|
-
|
2681
|
-
clientId?: string | undefined;
|
2682
|
-
channelId?: string | undefined;
|
2714
|
+
wabaBusinessId?: string | null | undefined;
|
2715
|
+
wabaExternalId?: string | null | undefined;
|
2716
|
+
phoneNumberId?: string | null | undefined;
|
2717
|
+
email?: string | null | undefined;
|
2718
|
+
clientId?: string | null | undefined;
|
2719
|
+
channelId?: string | null | undefined;
|
2683
2720
|
status?: "active" | "pending" | undefined;
|
2684
2721
|
apiKey?: string | undefined;
|
2685
2722
|
tier?: "basic" | "regular" | "premium" | undefined;
|
2723
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
2686
2724
|
}, {
|
2687
|
-
|
2688
|
-
wabaExternalId
|
2689
|
-
phoneNumberId
|
2690
|
-
|
2691
|
-
clientId?: string | undefined;
|
2692
|
-
channelId?: string | undefined;
|
2725
|
+
wabaBusinessId?: string | null | undefined;
|
2726
|
+
wabaExternalId?: string | null | undefined;
|
2727
|
+
phoneNumberId?: string | null | undefined;
|
2728
|
+
email?: string | null | undefined;
|
2729
|
+
clientId?: string | null | undefined;
|
2730
|
+
channelId?: string | null | undefined;
|
2693
2731
|
status?: "active" | "pending" | undefined;
|
2694
2732
|
apiKey?: string | undefined;
|
2695
2733
|
tier?: "basic" | "regular" | "premium" | undefined;
|
2734
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
2696
2735
|
}>>;
|
2697
2736
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
2698
2737
|
mobileNumber: z.ZodString;
|
@@ -2717,15 +2756,16 @@ export declare const channelContract: {
|
|
2717
2756
|
additionalCredentials?: any;
|
2718
2757
|
senderId?: string | undefined;
|
2719
2758
|
whatsapp?: {
|
2720
|
-
|
2721
|
-
wabaExternalId
|
2722
|
-
phoneNumberId
|
2723
|
-
|
2724
|
-
clientId?: string | undefined;
|
2725
|
-
channelId?: string | undefined;
|
2759
|
+
wabaBusinessId?: string | null | undefined;
|
2760
|
+
wabaExternalId?: string | null | undefined;
|
2761
|
+
phoneNumberId?: string | null | undefined;
|
2762
|
+
email?: string | null | undefined;
|
2763
|
+
clientId?: string | null | undefined;
|
2764
|
+
channelId?: string | null | undefined;
|
2726
2765
|
status?: "active" | "pending" | undefined;
|
2727
2766
|
apiKey?: string | undefined;
|
2728
2767
|
tier?: "basic" | "regular" | "premium" | undefined;
|
2768
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
2729
2769
|
} | undefined;
|
2730
2770
|
vonageCredentials?: {
|
2731
2771
|
apiKey: string;
|
@@ -2742,15 +2782,16 @@ export declare const channelContract: {
|
|
2742
2782
|
additionalCredentials?: any;
|
2743
2783
|
senderId?: string | undefined;
|
2744
2784
|
whatsapp?: {
|
2745
|
-
|
2746
|
-
wabaExternalId
|
2747
|
-
phoneNumberId
|
2748
|
-
|
2749
|
-
clientId?: string | undefined;
|
2750
|
-
channelId?: string | undefined;
|
2785
|
+
wabaBusinessId?: string | null | undefined;
|
2786
|
+
wabaExternalId?: string | null | undefined;
|
2787
|
+
phoneNumberId?: string | null | undefined;
|
2788
|
+
email?: string | null | undefined;
|
2789
|
+
clientId?: string | null | undefined;
|
2790
|
+
channelId?: string | null | undefined;
|
2751
2791
|
status?: "active" | "pending" | undefined;
|
2752
2792
|
apiKey?: string | undefined;
|
2753
2793
|
tier?: "basic" | "regular" | "premium" | undefined;
|
2794
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
2754
2795
|
} | undefined;
|
2755
2796
|
vonageCredentials?: {
|
2756
2797
|
apiKey: string;
|
@@ -3001,15 +3042,16 @@ export declare const channelContract: {
|
|
3001
3042
|
additionalCredentials?: any;
|
3002
3043
|
senderId?: string | undefined;
|
3003
3044
|
whatsapp?: {
|
3004
|
-
|
3005
|
-
wabaExternalId
|
3006
|
-
phoneNumberId
|
3007
|
-
|
3008
|
-
clientId?: string | undefined;
|
3009
|
-
channelId?: string | undefined;
|
3045
|
+
wabaBusinessId?: string | null | undefined;
|
3046
|
+
wabaExternalId?: string | null | undefined;
|
3047
|
+
phoneNumberId?: string | null | undefined;
|
3048
|
+
email?: string | null | undefined;
|
3049
|
+
clientId?: string | null | undefined;
|
3050
|
+
channelId?: string | null | undefined;
|
3010
3051
|
status?: "active" | "pending" | undefined;
|
3011
3052
|
apiKey?: string | undefined;
|
3012
3053
|
tier?: "basic" | "regular" | "premium" | undefined;
|
3054
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
3013
3055
|
} | undefined;
|
3014
3056
|
vonageCredentials?: {
|
3015
3057
|
apiKey: string;
|
@@ -3091,15 +3133,16 @@ export declare const channelContract: {
|
|
3091
3133
|
additionalCredentials?: any;
|
3092
3134
|
senderId?: string | undefined;
|
3093
3135
|
whatsapp?: {
|
3094
|
-
|
3095
|
-
wabaExternalId
|
3096
|
-
phoneNumberId
|
3097
|
-
|
3098
|
-
clientId?: string | undefined;
|
3099
|
-
channelId?: string | undefined;
|
3136
|
+
wabaBusinessId?: string | null | undefined;
|
3137
|
+
wabaExternalId?: string | null | undefined;
|
3138
|
+
phoneNumberId?: string | null | undefined;
|
3139
|
+
email?: string | null | undefined;
|
3140
|
+
clientId?: string | null | undefined;
|
3141
|
+
channelId?: string | null | undefined;
|
3100
3142
|
status?: "active" | "pending" | undefined;
|
3101
3143
|
apiKey?: string | undefined;
|
3102
3144
|
tier?: "basic" | "regular" | "premium" | undefined;
|
3145
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
3103
3146
|
} | undefined;
|
3104
3147
|
vonageCredentials?: {
|
3105
3148
|
apiKey: string;
|
@@ -3183,15 +3226,16 @@ export declare const channelContract: {
|
|
3183
3226
|
additionalCredentials?: any;
|
3184
3227
|
senderId?: string | undefined;
|
3185
3228
|
whatsapp?: {
|
3186
|
-
|
3187
|
-
wabaExternalId
|
3188
|
-
phoneNumberId
|
3189
|
-
|
3190
|
-
clientId?: string | undefined;
|
3191
|
-
channelId?: string | undefined;
|
3229
|
+
wabaBusinessId?: string | null | undefined;
|
3230
|
+
wabaExternalId?: string | null | undefined;
|
3231
|
+
phoneNumberId?: string | null | undefined;
|
3232
|
+
email?: string | null | undefined;
|
3233
|
+
clientId?: string | null | undefined;
|
3234
|
+
channelId?: string | null | undefined;
|
3192
3235
|
status?: "active" | "pending" | undefined;
|
3193
3236
|
apiKey?: string | undefined;
|
3194
3237
|
tier?: "basic" | "regular" | "premium" | undefined;
|
3238
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
3195
3239
|
} | undefined;
|
3196
3240
|
vonageCredentials?: {
|
3197
3241
|
apiKey: string;
|
@@ -3276,15 +3320,16 @@ export declare const channelContract: {
|
|
3276
3320
|
additionalCredentials?: any;
|
3277
3321
|
senderId?: string | undefined;
|
3278
3322
|
whatsapp?: {
|
3279
|
-
|
3280
|
-
wabaExternalId
|
3281
|
-
phoneNumberId
|
3282
|
-
|
3283
|
-
clientId?: string | undefined;
|
3284
|
-
channelId?: string | undefined;
|
3323
|
+
wabaBusinessId?: string | null | undefined;
|
3324
|
+
wabaExternalId?: string | null | undefined;
|
3325
|
+
phoneNumberId?: string | null | undefined;
|
3326
|
+
email?: string | null | undefined;
|
3327
|
+
clientId?: string | null | undefined;
|
3328
|
+
channelId?: string | null | undefined;
|
3285
3329
|
status?: "active" | "pending" | undefined;
|
3286
3330
|
apiKey?: string | undefined;
|
3287
3331
|
tier?: "basic" | "regular" | "premium" | undefined;
|
3332
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
3288
3333
|
} | undefined;
|
3289
3334
|
vonageCredentials?: {
|
3290
3335
|
apiKey: string;
|
@@ -3398,35 +3443,38 @@ export declare const channelContract: {
|
|
3398
3443
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
3399
3444
|
senderId: z.ZodOptional<z.ZodString>;
|
3400
3445
|
whatsapp: z.ZodOptional<z.ZodObject<{
|
3401
|
-
wabaBusinessId: z.ZodOptional<z.ZodString
|
3402
|
-
wabaExternalId: z.ZodString
|
3403
|
-
phoneNumberId: z.ZodString
|
3404
|
-
email: z.ZodString
|
3405
|
-
clientId: z.ZodOptional<z.ZodString
|
3406
|
-
channelId: z.ZodOptional<z.ZodString
|
3446
|
+
wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
3447
|
+
wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
3448
|
+
phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
3449
|
+
email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
3450
|
+
clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
3451
|
+
channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
3407
3452
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
3408
3453
|
apiKey: z.ZodOptional<z.ZodString>;
|
3409
3454
|
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
3455
|
+
integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
|
3410
3456
|
}, "strip", z.ZodTypeAny, {
|
3411
|
-
|
3412
|
-
wabaExternalId
|
3413
|
-
phoneNumberId
|
3414
|
-
|
3415
|
-
clientId?: string | undefined;
|
3416
|
-
channelId?: string | undefined;
|
3457
|
+
wabaBusinessId?: string | null | undefined;
|
3458
|
+
wabaExternalId?: string | null | undefined;
|
3459
|
+
phoneNumberId?: string | null | undefined;
|
3460
|
+
email?: string | null | undefined;
|
3461
|
+
clientId?: string | null | undefined;
|
3462
|
+
channelId?: string | null | undefined;
|
3417
3463
|
status?: "active" | "pending" | undefined;
|
3418
3464
|
apiKey?: string | undefined;
|
3419
3465
|
tier?: "basic" | "regular" | "premium" | undefined;
|
3466
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
3420
3467
|
}, {
|
3421
|
-
|
3422
|
-
wabaExternalId
|
3423
|
-
phoneNumberId
|
3424
|
-
|
3425
|
-
clientId?: string | undefined;
|
3426
|
-
channelId?: string | undefined;
|
3468
|
+
wabaBusinessId?: string | null | undefined;
|
3469
|
+
wabaExternalId?: string | null | undefined;
|
3470
|
+
phoneNumberId?: string | null | undefined;
|
3471
|
+
email?: string | null | undefined;
|
3472
|
+
clientId?: string | null | undefined;
|
3473
|
+
channelId?: string | null | undefined;
|
3427
3474
|
status?: "active" | "pending" | undefined;
|
3428
3475
|
apiKey?: string | undefined;
|
3429
3476
|
tier?: "basic" | "regular" | "premium" | undefined;
|
3477
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
3430
3478
|
}>>;
|
3431
3479
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
3432
3480
|
mobileNumber: z.ZodString;
|
@@ -3451,15 +3499,16 @@ export declare const channelContract: {
|
|
3451
3499
|
additionalCredentials?: any;
|
3452
3500
|
senderId?: string | undefined;
|
3453
3501
|
whatsapp?: {
|
3454
|
-
|
3455
|
-
wabaExternalId
|
3456
|
-
phoneNumberId
|
3457
|
-
|
3458
|
-
clientId?: string | undefined;
|
3459
|
-
channelId?: string | undefined;
|
3502
|
+
wabaBusinessId?: string | null | undefined;
|
3503
|
+
wabaExternalId?: string | null | undefined;
|
3504
|
+
phoneNumberId?: string | null | undefined;
|
3505
|
+
email?: string | null | undefined;
|
3506
|
+
clientId?: string | null | undefined;
|
3507
|
+
channelId?: string | null | undefined;
|
3460
3508
|
status?: "active" | "pending" | undefined;
|
3461
3509
|
apiKey?: string | undefined;
|
3462
3510
|
tier?: "basic" | "regular" | "premium" | undefined;
|
3511
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
3463
3512
|
} | undefined;
|
3464
3513
|
vonageCredentials?: {
|
3465
3514
|
apiKey: string;
|
@@ -3476,15 +3525,16 @@ export declare const channelContract: {
|
|
3476
3525
|
additionalCredentials?: any;
|
3477
3526
|
senderId?: string | undefined;
|
3478
3527
|
whatsapp?: {
|
3479
|
-
|
3480
|
-
wabaExternalId
|
3481
|
-
phoneNumberId
|
3482
|
-
|
3483
|
-
clientId?: string | undefined;
|
3484
|
-
channelId?: string | undefined;
|
3528
|
+
wabaBusinessId?: string | null | undefined;
|
3529
|
+
wabaExternalId?: string | null | undefined;
|
3530
|
+
phoneNumberId?: string | null | undefined;
|
3531
|
+
email?: string | null | undefined;
|
3532
|
+
clientId?: string | null | undefined;
|
3533
|
+
channelId?: string | null | undefined;
|
3485
3534
|
status?: "active" | "pending" | undefined;
|
3486
3535
|
apiKey?: string | undefined;
|
3487
3536
|
tier?: "basic" | "regular" | "premium" | undefined;
|
3537
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
3488
3538
|
} | undefined;
|
3489
3539
|
vonageCredentials?: {
|
3490
3540
|
apiKey: string;
|
@@ -3508,15 +3558,16 @@ export declare const channelContract: {
|
|
3508
3558
|
additionalCredentials?: any;
|
3509
3559
|
senderId?: string | undefined;
|
3510
3560
|
whatsapp?: {
|
3511
|
-
|
3512
|
-
wabaExternalId
|
3513
|
-
phoneNumberId
|
3514
|
-
|
3515
|
-
clientId?: string | undefined;
|
3516
|
-
channelId?: string | undefined;
|
3561
|
+
wabaBusinessId?: string | null | undefined;
|
3562
|
+
wabaExternalId?: string | null | undefined;
|
3563
|
+
phoneNumberId?: string | null | undefined;
|
3564
|
+
email?: string | null | undefined;
|
3565
|
+
clientId?: string | null | undefined;
|
3566
|
+
channelId?: string | null | undefined;
|
3517
3567
|
status?: "active" | "pending" | undefined;
|
3518
3568
|
apiKey?: string | undefined;
|
3519
3569
|
tier?: "basic" | "regular" | "premium" | undefined;
|
3570
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
3520
3571
|
} | undefined;
|
3521
3572
|
vonageCredentials?: {
|
3522
3573
|
apiKey: string;
|
@@ -3540,15 +3591,16 @@ export declare const channelContract: {
|
|
3540
3591
|
additionalCredentials?: any;
|
3541
3592
|
senderId?: string | undefined;
|
3542
3593
|
whatsapp?: {
|
3543
|
-
|
3544
|
-
wabaExternalId
|
3545
|
-
phoneNumberId
|
3546
|
-
|
3547
|
-
clientId?: string | undefined;
|
3548
|
-
channelId?: string | undefined;
|
3594
|
+
wabaBusinessId?: string | null | undefined;
|
3595
|
+
wabaExternalId?: string | null | undefined;
|
3596
|
+
phoneNumberId?: string | null | undefined;
|
3597
|
+
email?: string | null | undefined;
|
3598
|
+
clientId?: string | null | undefined;
|
3599
|
+
channelId?: string | null | undefined;
|
3549
3600
|
status?: "active" | "pending" | undefined;
|
3550
3601
|
apiKey?: string | undefined;
|
3551
3602
|
tier?: "basic" | "regular" | "premium" | undefined;
|
3603
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
3552
3604
|
} | undefined;
|
3553
3605
|
vonageCredentials?: {
|
3554
3606
|
apiKey: string;
|
@@ -3582,35 +3634,38 @@ export declare const channelContract: {
|
|
3582
3634
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
3583
3635
|
senderId: z.ZodOptional<z.ZodString>;
|
3584
3636
|
whatsapp: z.ZodOptional<z.ZodObject<{
|
3585
|
-
wabaBusinessId: z.ZodOptional<z.ZodString
|
3586
|
-
wabaExternalId: z.ZodString
|
3587
|
-
phoneNumberId: z.ZodString
|
3588
|
-
email: z.ZodString
|
3589
|
-
clientId: z.ZodOptional<z.ZodString
|
3590
|
-
channelId: z.ZodOptional<z.ZodString
|
3637
|
+
wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
3638
|
+
wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
3639
|
+
phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
3640
|
+
email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
3641
|
+
clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
3642
|
+
channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
3591
3643
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
3592
3644
|
apiKey: z.ZodOptional<z.ZodString>;
|
3593
3645
|
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
3646
|
+
integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
|
3594
3647
|
}, "strip", z.ZodTypeAny, {
|
3595
|
-
|
3596
|
-
wabaExternalId
|
3597
|
-
phoneNumberId
|
3598
|
-
|
3599
|
-
clientId?: string | undefined;
|
3600
|
-
channelId?: string | undefined;
|
3648
|
+
wabaBusinessId?: string | null | undefined;
|
3649
|
+
wabaExternalId?: string | null | undefined;
|
3650
|
+
phoneNumberId?: string | null | undefined;
|
3651
|
+
email?: string | null | undefined;
|
3652
|
+
clientId?: string | null | undefined;
|
3653
|
+
channelId?: string | null | undefined;
|
3601
3654
|
status?: "active" | "pending" | undefined;
|
3602
3655
|
apiKey?: string | undefined;
|
3603
3656
|
tier?: "basic" | "regular" | "premium" | undefined;
|
3657
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
3604
3658
|
}, {
|
3605
|
-
|
3606
|
-
wabaExternalId
|
3607
|
-
phoneNumberId
|
3608
|
-
|
3609
|
-
clientId?: string | undefined;
|
3610
|
-
channelId?: string | undefined;
|
3659
|
+
wabaBusinessId?: string | null | undefined;
|
3660
|
+
wabaExternalId?: string | null | undefined;
|
3661
|
+
phoneNumberId?: string | null | undefined;
|
3662
|
+
email?: string | null | undefined;
|
3663
|
+
clientId?: string | null | undefined;
|
3664
|
+
channelId?: string | null | undefined;
|
3611
3665
|
status?: "active" | "pending" | undefined;
|
3612
3666
|
apiKey?: string | undefined;
|
3613
3667
|
tier?: "basic" | "regular" | "premium" | undefined;
|
3668
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
3614
3669
|
}>>;
|
3615
3670
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
3616
3671
|
mobileNumber: z.ZodString;
|
@@ -3635,15 +3690,16 @@ export declare const channelContract: {
|
|
3635
3690
|
additionalCredentials?: any;
|
3636
3691
|
senderId?: string | undefined;
|
3637
3692
|
whatsapp?: {
|
3638
|
-
|
3639
|
-
wabaExternalId
|
3640
|
-
phoneNumberId
|
3641
|
-
|
3642
|
-
clientId?: string | undefined;
|
3643
|
-
channelId?: string | undefined;
|
3693
|
+
wabaBusinessId?: string | null | undefined;
|
3694
|
+
wabaExternalId?: string | null | undefined;
|
3695
|
+
phoneNumberId?: string | null | undefined;
|
3696
|
+
email?: string | null | undefined;
|
3697
|
+
clientId?: string | null | undefined;
|
3698
|
+
channelId?: string | null | undefined;
|
3644
3699
|
status?: "active" | "pending" | undefined;
|
3645
3700
|
apiKey?: string | undefined;
|
3646
3701
|
tier?: "basic" | "regular" | "premium" | undefined;
|
3702
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
3647
3703
|
} | undefined;
|
3648
3704
|
vonageCredentials?: {
|
3649
3705
|
apiKey: string;
|
@@ -3660,15 +3716,16 @@ export declare const channelContract: {
|
|
3660
3716
|
additionalCredentials?: any;
|
3661
3717
|
senderId?: string | undefined;
|
3662
3718
|
whatsapp?: {
|
3663
|
-
|
3664
|
-
wabaExternalId
|
3665
|
-
phoneNumberId
|
3666
|
-
|
3667
|
-
clientId?: string | undefined;
|
3668
|
-
channelId?: string | undefined;
|
3719
|
+
wabaBusinessId?: string | null | undefined;
|
3720
|
+
wabaExternalId?: string | null | undefined;
|
3721
|
+
phoneNumberId?: string | null | undefined;
|
3722
|
+
email?: string | null | undefined;
|
3723
|
+
clientId?: string | null | undefined;
|
3724
|
+
channelId?: string | null | undefined;
|
3669
3725
|
status?: "active" | "pending" | undefined;
|
3670
3726
|
apiKey?: string | undefined;
|
3671
3727
|
tier?: "basic" | "regular" | "premium" | undefined;
|
3728
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
3672
3729
|
} | undefined;
|
3673
3730
|
vonageCredentials?: {
|
3674
3731
|
apiKey: string;
|
@@ -3919,15 +3976,16 @@ export declare const channelContract: {
|
|
3919
3976
|
additionalCredentials?: any;
|
3920
3977
|
senderId?: string | undefined;
|
3921
3978
|
whatsapp?: {
|
3922
|
-
|
3923
|
-
wabaExternalId
|
3924
|
-
phoneNumberId
|
3925
|
-
|
3926
|
-
clientId?: string | undefined;
|
3927
|
-
channelId?: string | undefined;
|
3979
|
+
wabaBusinessId?: string | null | undefined;
|
3980
|
+
wabaExternalId?: string | null | undefined;
|
3981
|
+
phoneNumberId?: string | null | undefined;
|
3982
|
+
email?: string | null | undefined;
|
3983
|
+
clientId?: string | null | undefined;
|
3984
|
+
channelId?: string | null | undefined;
|
3928
3985
|
status?: "active" | "pending" | undefined;
|
3929
3986
|
apiKey?: string | undefined;
|
3930
3987
|
tier?: "basic" | "regular" | "premium" | undefined;
|
3988
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
3931
3989
|
} | undefined;
|
3932
3990
|
vonageCredentials?: {
|
3933
3991
|
apiKey: string;
|
@@ -4009,15 +4067,16 @@ export declare const channelContract: {
|
|
4009
4067
|
additionalCredentials?: any;
|
4010
4068
|
senderId?: string | undefined;
|
4011
4069
|
whatsapp?: {
|
4012
|
-
|
4013
|
-
wabaExternalId
|
4014
|
-
phoneNumberId
|
4015
|
-
|
4016
|
-
clientId?: string | undefined;
|
4017
|
-
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;
|
4018
4076
|
status?: "active" | "pending" | undefined;
|
4019
4077
|
apiKey?: string | undefined;
|
4020
4078
|
tier?: "basic" | "regular" | "premium" | undefined;
|
4079
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
4021
4080
|
} | undefined;
|
4022
4081
|
vonageCredentials?: {
|
4023
4082
|
apiKey: string;
|
@@ -4101,15 +4160,16 @@ export declare const channelContract: {
|
|
4101
4160
|
additionalCredentials?: any;
|
4102
4161
|
senderId?: string | undefined;
|
4103
4162
|
whatsapp?: {
|
4104
|
-
|
4105
|
-
wabaExternalId
|
4106
|
-
phoneNumberId
|
4107
|
-
|
4108
|
-
clientId?: string | undefined;
|
4109
|
-
channelId?: string | undefined;
|
4163
|
+
wabaBusinessId?: string | null | undefined;
|
4164
|
+
wabaExternalId?: string | null | undefined;
|
4165
|
+
phoneNumberId?: string | null | undefined;
|
4166
|
+
email?: string | null | undefined;
|
4167
|
+
clientId?: string | null | undefined;
|
4168
|
+
channelId?: string | null | undefined;
|
4110
4169
|
status?: "active" | "pending" | undefined;
|
4111
4170
|
apiKey?: string | undefined;
|
4112
4171
|
tier?: "basic" | "regular" | "premium" | undefined;
|
4172
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
4113
4173
|
} | undefined;
|
4114
4174
|
vonageCredentials?: {
|
4115
4175
|
apiKey: string;
|
@@ -4194,15 +4254,16 @@ export declare const channelContract: {
|
|
4194
4254
|
additionalCredentials?: any;
|
4195
4255
|
senderId?: string | undefined;
|
4196
4256
|
whatsapp?: {
|
4197
|
-
|
4198
|
-
wabaExternalId
|
4199
|
-
phoneNumberId
|
4200
|
-
|
4201
|
-
clientId?: string | undefined;
|
4202
|
-
channelId?: string | undefined;
|
4257
|
+
wabaBusinessId?: string | null | undefined;
|
4258
|
+
wabaExternalId?: string | null | undefined;
|
4259
|
+
phoneNumberId?: string | null | undefined;
|
4260
|
+
email?: string | null | undefined;
|
4261
|
+
clientId?: string | null | undefined;
|
4262
|
+
channelId?: string | null | undefined;
|
4203
4263
|
status?: "active" | "pending" | undefined;
|
4204
4264
|
apiKey?: string | undefined;
|
4205
4265
|
tier?: "basic" | "regular" | "premium" | undefined;
|
4266
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
4206
4267
|
} | undefined;
|
4207
4268
|
vonageCredentials?: {
|
4208
4269
|
apiKey: string;
|
@@ -5208,35 +5269,38 @@ export declare const channelContract: {
|
|
5208
5269
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
5209
5270
|
senderId: z.ZodOptional<z.ZodString>;
|
5210
5271
|
whatsapp: z.ZodOptional<z.ZodObject<{
|
5211
|
-
wabaBusinessId: z.ZodOptional<z.ZodString
|
5212
|
-
wabaExternalId: z.ZodString
|
5213
|
-
phoneNumberId: z.ZodString
|
5214
|
-
email: z.ZodString
|
5215
|
-
clientId: z.ZodOptional<z.ZodString
|
5216
|
-
channelId: z.ZodOptional<z.ZodString
|
5272
|
+
wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
5273
|
+
wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
5274
|
+
phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
5275
|
+
email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
5276
|
+
clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
5277
|
+
channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
5217
5278
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
5218
5279
|
apiKey: z.ZodOptional<z.ZodString>;
|
5219
5280
|
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
5281
|
+
integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
|
5220
5282
|
}, "strip", z.ZodTypeAny, {
|
5221
|
-
|
5222
|
-
wabaExternalId
|
5223
|
-
phoneNumberId
|
5224
|
-
|
5225
|
-
clientId?: string | undefined;
|
5226
|
-
channelId?: string | undefined;
|
5283
|
+
wabaBusinessId?: string | null | undefined;
|
5284
|
+
wabaExternalId?: string | null | undefined;
|
5285
|
+
phoneNumberId?: string | null | undefined;
|
5286
|
+
email?: string | null | undefined;
|
5287
|
+
clientId?: string | null | undefined;
|
5288
|
+
channelId?: string | null | undefined;
|
5227
5289
|
status?: "active" | "pending" | undefined;
|
5228
5290
|
apiKey?: string | undefined;
|
5229
5291
|
tier?: "basic" | "regular" | "premium" | undefined;
|
5292
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
5230
5293
|
}, {
|
5231
|
-
|
5232
|
-
wabaExternalId
|
5233
|
-
phoneNumberId
|
5234
|
-
|
5235
|
-
clientId?: string | undefined;
|
5236
|
-
channelId?: string | undefined;
|
5294
|
+
wabaBusinessId?: string | null | undefined;
|
5295
|
+
wabaExternalId?: string | null | undefined;
|
5296
|
+
phoneNumberId?: string | null | undefined;
|
5297
|
+
email?: string | null | undefined;
|
5298
|
+
clientId?: string | null | undefined;
|
5299
|
+
channelId?: string | null | undefined;
|
5237
5300
|
status?: "active" | "pending" | undefined;
|
5238
5301
|
apiKey?: string | undefined;
|
5239
5302
|
tier?: "basic" | "regular" | "premium" | undefined;
|
5303
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
5240
5304
|
}>>;
|
5241
5305
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
5242
5306
|
mobileNumber: z.ZodString;
|
@@ -5261,15 +5325,16 @@ export declare const channelContract: {
|
|
5261
5325
|
additionalCredentials?: any;
|
5262
5326
|
senderId?: string | undefined;
|
5263
5327
|
whatsapp?: {
|
5264
|
-
|
5265
|
-
wabaExternalId
|
5266
|
-
phoneNumberId
|
5267
|
-
|
5268
|
-
clientId?: string | undefined;
|
5269
|
-
channelId?: string | undefined;
|
5328
|
+
wabaBusinessId?: string | null | undefined;
|
5329
|
+
wabaExternalId?: string | null | undefined;
|
5330
|
+
phoneNumberId?: string | null | undefined;
|
5331
|
+
email?: string | null | undefined;
|
5332
|
+
clientId?: string | null | undefined;
|
5333
|
+
channelId?: string | null | undefined;
|
5270
5334
|
status?: "active" | "pending" | undefined;
|
5271
5335
|
apiKey?: string | undefined;
|
5272
5336
|
tier?: "basic" | "regular" | "premium" | undefined;
|
5337
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
5273
5338
|
} | undefined;
|
5274
5339
|
vonageCredentials?: {
|
5275
5340
|
apiKey: string;
|
@@ -5286,15 +5351,16 @@ export declare const channelContract: {
|
|
5286
5351
|
additionalCredentials?: any;
|
5287
5352
|
senderId?: string | undefined;
|
5288
5353
|
whatsapp?: {
|
5289
|
-
|
5290
|
-
wabaExternalId
|
5291
|
-
phoneNumberId
|
5292
|
-
|
5293
|
-
clientId?: string | undefined;
|
5294
|
-
channelId?: string | undefined;
|
5354
|
+
wabaBusinessId?: string | null | undefined;
|
5355
|
+
wabaExternalId?: string | null | undefined;
|
5356
|
+
phoneNumberId?: string | null | undefined;
|
5357
|
+
email?: string | null | undefined;
|
5358
|
+
clientId?: string | null | undefined;
|
5359
|
+
channelId?: string | null | undefined;
|
5295
5360
|
status?: "active" | "pending" | undefined;
|
5296
5361
|
apiKey?: string | undefined;
|
5297
5362
|
tier?: "basic" | "regular" | "premium" | undefined;
|
5363
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
5298
5364
|
} | undefined;
|
5299
5365
|
vonageCredentials?: {
|
5300
5366
|
apiKey: string;
|
@@ -5318,15 +5384,16 @@ export declare const channelContract: {
|
|
5318
5384
|
additionalCredentials?: any;
|
5319
5385
|
senderId?: string | undefined;
|
5320
5386
|
whatsapp?: {
|
5321
|
-
|
5322
|
-
wabaExternalId
|
5323
|
-
phoneNumberId
|
5324
|
-
|
5325
|
-
clientId?: string | undefined;
|
5326
|
-
channelId?: string | undefined;
|
5387
|
+
wabaBusinessId?: string | null | undefined;
|
5388
|
+
wabaExternalId?: string | null | undefined;
|
5389
|
+
phoneNumberId?: string | null | undefined;
|
5390
|
+
email?: string | null | undefined;
|
5391
|
+
clientId?: string | null | undefined;
|
5392
|
+
channelId?: string | null | undefined;
|
5327
5393
|
status?: "active" | "pending" | undefined;
|
5328
5394
|
apiKey?: string | undefined;
|
5329
5395
|
tier?: "basic" | "regular" | "premium" | undefined;
|
5396
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
5330
5397
|
} | undefined;
|
5331
5398
|
vonageCredentials?: {
|
5332
5399
|
apiKey: string;
|
@@ -5350,15 +5417,16 @@ export declare const channelContract: {
|
|
5350
5417
|
additionalCredentials?: any;
|
5351
5418
|
senderId?: string | undefined;
|
5352
5419
|
whatsapp?: {
|
5353
|
-
|
5354
|
-
wabaExternalId
|
5355
|
-
phoneNumberId
|
5356
|
-
|
5357
|
-
clientId?: string | undefined;
|
5358
|
-
channelId?: string | undefined;
|
5420
|
+
wabaBusinessId?: string | null | undefined;
|
5421
|
+
wabaExternalId?: string | null | undefined;
|
5422
|
+
phoneNumberId?: string | null | undefined;
|
5423
|
+
email?: string | null | undefined;
|
5424
|
+
clientId?: string | null | undefined;
|
5425
|
+
channelId?: string | null | undefined;
|
5359
5426
|
status?: "active" | "pending" | undefined;
|
5360
5427
|
apiKey?: string | undefined;
|
5361
5428
|
tier?: "basic" | "regular" | "premium" | undefined;
|
5429
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
5362
5430
|
} | undefined;
|
5363
5431
|
vonageCredentials?: {
|
5364
5432
|
apiKey: string;
|
@@ -5392,35 +5460,38 @@ export declare const channelContract: {
|
|
5392
5460
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
5393
5461
|
senderId: z.ZodOptional<z.ZodString>;
|
5394
5462
|
whatsapp: z.ZodOptional<z.ZodObject<{
|
5395
|
-
wabaBusinessId: z.ZodOptional<z.ZodString
|
5396
|
-
wabaExternalId: z.ZodString
|
5397
|
-
phoneNumberId: z.ZodString
|
5398
|
-
email: z.ZodString
|
5399
|
-
clientId: z.ZodOptional<z.ZodString
|
5400
|
-
channelId: z.ZodOptional<z.ZodString
|
5463
|
+
wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
5464
|
+
wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
5465
|
+
phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
5466
|
+
email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
5467
|
+
clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
5468
|
+
channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
5401
5469
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
5402
5470
|
apiKey: z.ZodOptional<z.ZodString>;
|
5403
5471
|
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
5472
|
+
integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
|
5404
5473
|
}, "strip", z.ZodTypeAny, {
|
5405
|
-
|
5406
|
-
wabaExternalId
|
5407
|
-
phoneNumberId
|
5408
|
-
|
5409
|
-
clientId?: string | undefined;
|
5410
|
-
channelId?: string | undefined;
|
5474
|
+
wabaBusinessId?: string | null | undefined;
|
5475
|
+
wabaExternalId?: string | null | undefined;
|
5476
|
+
phoneNumberId?: string | null | undefined;
|
5477
|
+
email?: string | null | undefined;
|
5478
|
+
clientId?: string | null | undefined;
|
5479
|
+
channelId?: string | null | undefined;
|
5411
5480
|
status?: "active" | "pending" | undefined;
|
5412
5481
|
apiKey?: string | undefined;
|
5413
5482
|
tier?: "basic" | "regular" | "premium" | undefined;
|
5483
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
5414
5484
|
}, {
|
5415
|
-
|
5416
|
-
wabaExternalId
|
5417
|
-
phoneNumberId
|
5418
|
-
|
5419
|
-
clientId?: string | undefined;
|
5420
|
-
channelId?: string | undefined;
|
5485
|
+
wabaBusinessId?: string | null | undefined;
|
5486
|
+
wabaExternalId?: string | null | undefined;
|
5487
|
+
phoneNumberId?: string | null | undefined;
|
5488
|
+
email?: string | null | undefined;
|
5489
|
+
clientId?: string | null | undefined;
|
5490
|
+
channelId?: string | null | undefined;
|
5421
5491
|
status?: "active" | "pending" | undefined;
|
5422
5492
|
apiKey?: string | undefined;
|
5423
5493
|
tier?: "basic" | "regular" | "premium" | undefined;
|
5494
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
5424
5495
|
}>>;
|
5425
5496
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
5426
5497
|
mobileNumber: z.ZodString;
|
@@ -5445,15 +5516,16 @@ export declare const channelContract: {
|
|
5445
5516
|
additionalCredentials?: any;
|
5446
5517
|
senderId?: string | undefined;
|
5447
5518
|
whatsapp?: {
|
5448
|
-
|
5449
|
-
wabaExternalId
|
5450
|
-
phoneNumberId
|
5451
|
-
|
5452
|
-
clientId?: string | undefined;
|
5453
|
-
channelId?: string | undefined;
|
5519
|
+
wabaBusinessId?: string | null | undefined;
|
5520
|
+
wabaExternalId?: string | null | undefined;
|
5521
|
+
phoneNumberId?: string | null | undefined;
|
5522
|
+
email?: string | null | undefined;
|
5523
|
+
clientId?: string | null | undefined;
|
5524
|
+
channelId?: string | null | undefined;
|
5454
5525
|
status?: "active" | "pending" | undefined;
|
5455
5526
|
apiKey?: string | undefined;
|
5456
5527
|
tier?: "basic" | "regular" | "premium" | undefined;
|
5528
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
5457
5529
|
} | undefined;
|
5458
5530
|
vonageCredentials?: {
|
5459
5531
|
apiKey: string;
|
@@ -5470,15 +5542,16 @@ export declare const channelContract: {
|
|
5470
5542
|
additionalCredentials?: any;
|
5471
5543
|
senderId?: string | undefined;
|
5472
5544
|
whatsapp?: {
|
5473
|
-
|
5474
|
-
wabaExternalId
|
5475
|
-
phoneNumberId
|
5476
|
-
|
5477
|
-
clientId?: string | undefined;
|
5478
|
-
channelId?: string | undefined;
|
5545
|
+
wabaBusinessId?: string | null | undefined;
|
5546
|
+
wabaExternalId?: string | null | undefined;
|
5547
|
+
phoneNumberId?: string | null | undefined;
|
5548
|
+
email?: string | null | undefined;
|
5549
|
+
clientId?: string | null | undefined;
|
5550
|
+
channelId?: string | null | undefined;
|
5479
5551
|
status?: "active" | "pending" | undefined;
|
5480
5552
|
apiKey?: string | undefined;
|
5481
5553
|
tier?: "basic" | "regular" | "premium" | undefined;
|
5554
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
5482
5555
|
} | undefined;
|
5483
5556
|
vonageCredentials?: {
|
5484
5557
|
apiKey: string;
|
@@ -5729,15 +5802,16 @@ export declare const channelContract: {
|
|
5729
5802
|
additionalCredentials?: any;
|
5730
5803
|
senderId?: string | undefined;
|
5731
5804
|
whatsapp?: {
|
5732
|
-
|
5733
|
-
wabaExternalId
|
5734
|
-
phoneNumberId
|
5735
|
-
|
5736
|
-
clientId?: string | undefined;
|
5737
|
-
channelId?: string | undefined;
|
5805
|
+
wabaBusinessId?: string | null | undefined;
|
5806
|
+
wabaExternalId?: string | null | undefined;
|
5807
|
+
phoneNumberId?: string | null | undefined;
|
5808
|
+
email?: string | null | undefined;
|
5809
|
+
clientId?: string | null | undefined;
|
5810
|
+
channelId?: string | null | undefined;
|
5738
5811
|
status?: "active" | "pending" | undefined;
|
5739
5812
|
apiKey?: string | undefined;
|
5740
5813
|
tier?: "basic" | "regular" | "premium" | undefined;
|
5814
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
5741
5815
|
} | undefined;
|
5742
5816
|
vonageCredentials?: {
|
5743
5817
|
apiKey: string;
|
@@ -5819,15 +5893,16 @@ export declare const channelContract: {
|
|
5819
5893
|
additionalCredentials?: any;
|
5820
5894
|
senderId?: string | undefined;
|
5821
5895
|
whatsapp?: {
|
5822
|
-
|
5823
|
-
wabaExternalId
|
5824
|
-
phoneNumberId
|
5825
|
-
|
5826
|
-
clientId?: string | undefined;
|
5827
|
-
channelId?: string | undefined;
|
5896
|
+
wabaBusinessId?: string | null | undefined;
|
5897
|
+
wabaExternalId?: string | null | undefined;
|
5898
|
+
phoneNumberId?: string | null | undefined;
|
5899
|
+
email?: string | null | undefined;
|
5900
|
+
clientId?: string | null | undefined;
|
5901
|
+
channelId?: string | null | undefined;
|
5828
5902
|
status?: "active" | "pending" | undefined;
|
5829
5903
|
apiKey?: string | undefined;
|
5830
5904
|
tier?: "basic" | "regular" | "premium" | undefined;
|
5905
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
5831
5906
|
} | undefined;
|
5832
5907
|
vonageCredentials?: {
|
5833
5908
|
apiKey: string;
|
@@ -5911,15 +5986,16 @@ export declare const channelContract: {
|
|
5911
5986
|
additionalCredentials?: any;
|
5912
5987
|
senderId?: string | undefined;
|
5913
5988
|
whatsapp?: {
|
5914
|
-
|
5915
|
-
wabaExternalId
|
5916
|
-
phoneNumberId
|
5917
|
-
|
5918
|
-
clientId?: string | undefined;
|
5919
|
-
channelId?: string | undefined;
|
5989
|
+
wabaBusinessId?: string | null | undefined;
|
5990
|
+
wabaExternalId?: string | null | undefined;
|
5991
|
+
phoneNumberId?: string | null | undefined;
|
5992
|
+
email?: string | null | undefined;
|
5993
|
+
clientId?: string | null | undefined;
|
5994
|
+
channelId?: string | null | undefined;
|
5920
5995
|
status?: "active" | "pending" | undefined;
|
5921
5996
|
apiKey?: string | undefined;
|
5922
5997
|
tier?: "basic" | "regular" | "premium" | undefined;
|
5998
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
5923
5999
|
} | undefined;
|
5924
6000
|
vonageCredentials?: {
|
5925
6001
|
apiKey: string;
|
@@ -6004,15 +6080,16 @@ export declare const channelContract: {
|
|
6004
6080
|
additionalCredentials?: any;
|
6005
6081
|
senderId?: string | undefined;
|
6006
6082
|
whatsapp?: {
|
6007
|
-
|
6008
|
-
wabaExternalId
|
6009
|
-
phoneNumberId
|
6010
|
-
|
6011
|
-
clientId?: string | undefined;
|
6012
|
-
channelId?: string | undefined;
|
6083
|
+
wabaBusinessId?: string | null | undefined;
|
6084
|
+
wabaExternalId?: string | null | undefined;
|
6085
|
+
phoneNumberId?: string | null | undefined;
|
6086
|
+
email?: string | null | undefined;
|
6087
|
+
clientId?: string | null | undefined;
|
6088
|
+
channelId?: string | null | undefined;
|
6013
6089
|
status?: "active" | "pending" | undefined;
|
6014
6090
|
apiKey?: string | undefined;
|
6015
6091
|
tier?: "basic" | "regular" | "premium" | undefined;
|
6092
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
6016
6093
|
} | undefined;
|
6017
6094
|
vonageCredentials?: {
|
6018
6095
|
apiKey: string;
|
@@ -6377,35 +6454,38 @@ export declare const channelContract: {
|
|
6377
6454
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
6378
6455
|
senderId: z.ZodOptional<z.ZodString>;
|
6379
6456
|
whatsapp: z.ZodOptional<z.ZodObject<{
|
6380
|
-
wabaBusinessId: z.ZodOptional<z.ZodString
|
6381
|
-
wabaExternalId: z.ZodString
|
6382
|
-
phoneNumberId: z.ZodString
|
6383
|
-
email: z.ZodString
|
6384
|
-
clientId: z.ZodOptional<z.ZodString
|
6385
|
-
channelId: z.ZodOptional<z.ZodString
|
6457
|
+
wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
6458
|
+
wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
6459
|
+
phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
6460
|
+
email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
6461
|
+
clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
6462
|
+
channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
6386
6463
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
6387
6464
|
apiKey: z.ZodOptional<z.ZodString>;
|
6388
6465
|
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
6466
|
+
integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
|
6389
6467
|
}, "strip", z.ZodTypeAny, {
|
6390
|
-
|
6391
|
-
wabaExternalId
|
6392
|
-
phoneNumberId
|
6393
|
-
|
6394
|
-
clientId?: string | undefined;
|
6395
|
-
channelId?: string | undefined;
|
6468
|
+
wabaBusinessId?: string | null | undefined;
|
6469
|
+
wabaExternalId?: string | null | undefined;
|
6470
|
+
phoneNumberId?: string | null | undefined;
|
6471
|
+
email?: string | null | undefined;
|
6472
|
+
clientId?: string | null | undefined;
|
6473
|
+
channelId?: string | null | undefined;
|
6396
6474
|
status?: "active" | "pending" | undefined;
|
6397
6475
|
apiKey?: string | undefined;
|
6398
6476
|
tier?: "basic" | "regular" | "premium" | undefined;
|
6477
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
6399
6478
|
}, {
|
6400
|
-
|
6401
|
-
wabaExternalId
|
6402
|
-
phoneNumberId
|
6403
|
-
|
6404
|
-
clientId?: string | undefined;
|
6405
|
-
channelId?: string | undefined;
|
6479
|
+
wabaBusinessId?: string | null | undefined;
|
6480
|
+
wabaExternalId?: string | null | undefined;
|
6481
|
+
phoneNumberId?: string | null | undefined;
|
6482
|
+
email?: string | null | undefined;
|
6483
|
+
clientId?: string | null | undefined;
|
6484
|
+
channelId?: string | null | undefined;
|
6406
6485
|
status?: "active" | "pending" | undefined;
|
6407
6486
|
apiKey?: string | undefined;
|
6408
6487
|
tier?: "basic" | "regular" | "premium" | undefined;
|
6488
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
6409
6489
|
}>>;
|
6410
6490
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
6411
6491
|
mobileNumber: z.ZodString;
|
@@ -6430,15 +6510,16 @@ export declare const channelContract: {
|
|
6430
6510
|
additionalCredentials?: any;
|
6431
6511
|
senderId?: string | undefined;
|
6432
6512
|
whatsapp?: {
|
6433
|
-
|
6434
|
-
wabaExternalId
|
6435
|
-
phoneNumberId
|
6436
|
-
|
6437
|
-
clientId?: string | undefined;
|
6438
|
-
channelId?: string | undefined;
|
6513
|
+
wabaBusinessId?: string | null | undefined;
|
6514
|
+
wabaExternalId?: string | null | undefined;
|
6515
|
+
phoneNumberId?: string | null | undefined;
|
6516
|
+
email?: string | null | undefined;
|
6517
|
+
clientId?: string | null | undefined;
|
6518
|
+
channelId?: string | null | undefined;
|
6439
6519
|
status?: "active" | "pending" | undefined;
|
6440
6520
|
apiKey?: string | undefined;
|
6441
6521
|
tier?: "basic" | "regular" | "premium" | undefined;
|
6522
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
6442
6523
|
} | undefined;
|
6443
6524
|
vonageCredentials?: {
|
6444
6525
|
apiKey: string;
|
@@ -6455,15 +6536,16 @@ export declare const channelContract: {
|
|
6455
6536
|
additionalCredentials?: any;
|
6456
6537
|
senderId?: string | undefined;
|
6457
6538
|
whatsapp?: {
|
6458
|
-
|
6459
|
-
wabaExternalId
|
6460
|
-
phoneNumberId
|
6461
|
-
|
6462
|
-
clientId?: string | undefined;
|
6463
|
-
channelId?: string | undefined;
|
6539
|
+
wabaBusinessId?: string | null | undefined;
|
6540
|
+
wabaExternalId?: string | null | undefined;
|
6541
|
+
phoneNumberId?: string | null | undefined;
|
6542
|
+
email?: string | null | undefined;
|
6543
|
+
clientId?: string | null | undefined;
|
6544
|
+
channelId?: string | null | undefined;
|
6464
6545
|
status?: "active" | "pending" | undefined;
|
6465
6546
|
apiKey?: string | undefined;
|
6466
6547
|
tier?: "basic" | "regular" | "premium" | undefined;
|
6548
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
6467
6549
|
} | undefined;
|
6468
6550
|
vonageCredentials?: {
|
6469
6551
|
apiKey: string;
|
@@ -6487,15 +6569,16 @@ export declare const channelContract: {
|
|
6487
6569
|
additionalCredentials?: any;
|
6488
6570
|
senderId?: string | undefined;
|
6489
6571
|
whatsapp?: {
|
6490
|
-
|
6491
|
-
wabaExternalId
|
6492
|
-
phoneNumberId
|
6493
|
-
|
6494
|
-
clientId?: string | undefined;
|
6495
|
-
channelId?: string | undefined;
|
6572
|
+
wabaBusinessId?: string | null | undefined;
|
6573
|
+
wabaExternalId?: string | null | undefined;
|
6574
|
+
phoneNumberId?: string | null | undefined;
|
6575
|
+
email?: string | null | undefined;
|
6576
|
+
clientId?: string | null | undefined;
|
6577
|
+
channelId?: string | null | undefined;
|
6496
6578
|
status?: "active" | "pending" | undefined;
|
6497
6579
|
apiKey?: string | undefined;
|
6498
6580
|
tier?: "basic" | "regular" | "premium" | undefined;
|
6581
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
6499
6582
|
} | undefined;
|
6500
6583
|
vonageCredentials?: {
|
6501
6584
|
apiKey: string;
|
@@ -6519,15 +6602,16 @@ export declare const channelContract: {
|
|
6519
6602
|
additionalCredentials?: any;
|
6520
6603
|
senderId?: string | undefined;
|
6521
6604
|
whatsapp?: {
|
6522
|
-
|
6523
|
-
wabaExternalId
|
6524
|
-
phoneNumberId
|
6525
|
-
|
6526
|
-
clientId?: string | undefined;
|
6527
|
-
channelId?: string | undefined;
|
6605
|
+
wabaBusinessId?: string | null | undefined;
|
6606
|
+
wabaExternalId?: string | null | undefined;
|
6607
|
+
phoneNumberId?: string | null | undefined;
|
6608
|
+
email?: string | null | undefined;
|
6609
|
+
clientId?: string | null | undefined;
|
6610
|
+
channelId?: string | null | undefined;
|
6528
6611
|
status?: "active" | "pending" | undefined;
|
6529
6612
|
apiKey?: string | undefined;
|
6530
6613
|
tier?: "basic" | "regular" | "premium" | undefined;
|
6614
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
6531
6615
|
} | undefined;
|
6532
6616
|
vonageCredentials?: {
|
6533
6617
|
apiKey: string;
|
@@ -6561,35 +6645,38 @@ export declare const channelContract: {
|
|
6561
6645
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
6562
6646
|
senderId: z.ZodOptional<z.ZodString>;
|
6563
6647
|
whatsapp: z.ZodOptional<z.ZodObject<{
|
6564
|
-
wabaBusinessId: z.ZodOptional<z.ZodString
|
6565
|
-
wabaExternalId: z.ZodString
|
6566
|
-
phoneNumberId: z.ZodString
|
6567
|
-
email: z.ZodString
|
6568
|
-
clientId: z.ZodOptional<z.ZodString
|
6569
|
-
channelId: z.ZodOptional<z.ZodString
|
6648
|
+
wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
6649
|
+
wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
6650
|
+
phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
6651
|
+
email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
6652
|
+
clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
6653
|
+
channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
6570
6654
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
6571
6655
|
apiKey: z.ZodOptional<z.ZodString>;
|
6572
6656
|
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
6657
|
+
integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
|
6573
6658
|
}, "strip", z.ZodTypeAny, {
|
6574
|
-
|
6575
|
-
wabaExternalId
|
6576
|
-
phoneNumberId
|
6577
|
-
|
6578
|
-
clientId?: string | undefined;
|
6579
|
-
channelId?: string | undefined;
|
6659
|
+
wabaBusinessId?: string | null | undefined;
|
6660
|
+
wabaExternalId?: string | null | undefined;
|
6661
|
+
phoneNumberId?: string | null | undefined;
|
6662
|
+
email?: string | null | undefined;
|
6663
|
+
clientId?: string | null | undefined;
|
6664
|
+
channelId?: string | null | undefined;
|
6580
6665
|
status?: "active" | "pending" | undefined;
|
6581
6666
|
apiKey?: string | undefined;
|
6582
6667
|
tier?: "basic" | "regular" | "premium" | undefined;
|
6668
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
6583
6669
|
}, {
|
6584
|
-
|
6585
|
-
wabaExternalId
|
6586
|
-
phoneNumberId
|
6587
|
-
|
6588
|
-
clientId?: string | undefined;
|
6589
|
-
channelId?: string | undefined;
|
6670
|
+
wabaBusinessId?: string | null | undefined;
|
6671
|
+
wabaExternalId?: string | null | undefined;
|
6672
|
+
phoneNumberId?: string | null | undefined;
|
6673
|
+
email?: string | null | undefined;
|
6674
|
+
clientId?: string | null | undefined;
|
6675
|
+
channelId?: string | null | undefined;
|
6590
6676
|
status?: "active" | "pending" | undefined;
|
6591
6677
|
apiKey?: string | undefined;
|
6592
6678
|
tier?: "basic" | "regular" | "premium" | undefined;
|
6679
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
6593
6680
|
}>>;
|
6594
6681
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
6595
6682
|
mobileNumber: z.ZodString;
|
@@ -6614,15 +6701,16 @@ export declare const channelContract: {
|
|
6614
6701
|
additionalCredentials?: any;
|
6615
6702
|
senderId?: string | undefined;
|
6616
6703
|
whatsapp?: {
|
6617
|
-
|
6618
|
-
wabaExternalId
|
6619
|
-
phoneNumberId
|
6620
|
-
|
6621
|
-
clientId?: string | undefined;
|
6622
|
-
channelId?: string | undefined;
|
6704
|
+
wabaBusinessId?: string | null | undefined;
|
6705
|
+
wabaExternalId?: string | null | undefined;
|
6706
|
+
phoneNumberId?: string | null | undefined;
|
6707
|
+
email?: string | null | undefined;
|
6708
|
+
clientId?: string | null | undefined;
|
6709
|
+
channelId?: string | null | undefined;
|
6623
6710
|
status?: "active" | "pending" | undefined;
|
6624
6711
|
apiKey?: string | undefined;
|
6625
6712
|
tier?: "basic" | "regular" | "premium" | undefined;
|
6713
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
6626
6714
|
} | undefined;
|
6627
6715
|
vonageCredentials?: {
|
6628
6716
|
apiKey: string;
|
@@ -6639,15 +6727,16 @@ export declare const channelContract: {
|
|
6639
6727
|
additionalCredentials?: any;
|
6640
6728
|
senderId?: string | undefined;
|
6641
6729
|
whatsapp?: {
|
6642
|
-
|
6643
|
-
wabaExternalId
|
6644
|
-
phoneNumberId
|
6645
|
-
|
6646
|
-
clientId?: string | undefined;
|
6647
|
-
channelId?: string | undefined;
|
6730
|
+
wabaBusinessId?: string | null | undefined;
|
6731
|
+
wabaExternalId?: string | null | undefined;
|
6732
|
+
phoneNumberId?: string | null | undefined;
|
6733
|
+
email?: string | null | undefined;
|
6734
|
+
clientId?: string | null | undefined;
|
6735
|
+
channelId?: string | null | undefined;
|
6648
6736
|
status?: "active" | "pending" | undefined;
|
6649
6737
|
apiKey?: string | undefined;
|
6650
6738
|
tier?: "basic" | "regular" | "premium" | undefined;
|
6739
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
6651
6740
|
} | undefined;
|
6652
6741
|
vonageCredentials?: {
|
6653
6742
|
apiKey: string;
|
@@ -6898,15 +6987,16 @@ export declare const channelContract: {
|
|
6898
6987
|
additionalCredentials?: any;
|
6899
6988
|
senderId?: string | undefined;
|
6900
6989
|
whatsapp?: {
|
6901
|
-
|
6902
|
-
wabaExternalId
|
6903
|
-
phoneNumberId
|
6904
|
-
|
6905
|
-
clientId?: string | undefined;
|
6906
|
-
channelId?: string | undefined;
|
6990
|
+
wabaBusinessId?: string | null | undefined;
|
6991
|
+
wabaExternalId?: string | null | undefined;
|
6992
|
+
phoneNumberId?: string | null | undefined;
|
6993
|
+
email?: string | null | undefined;
|
6994
|
+
clientId?: string | null | undefined;
|
6995
|
+
channelId?: string | null | undefined;
|
6907
6996
|
status?: "active" | "pending" | undefined;
|
6908
6997
|
apiKey?: string | undefined;
|
6909
6998
|
tier?: "basic" | "regular" | "premium" | undefined;
|
6999
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
6910
7000
|
} | undefined;
|
6911
7001
|
vonageCredentials?: {
|
6912
7002
|
apiKey: string;
|
@@ -6988,15 +7078,16 @@ export declare const channelContract: {
|
|
6988
7078
|
additionalCredentials?: any;
|
6989
7079
|
senderId?: string | undefined;
|
6990
7080
|
whatsapp?: {
|
6991
|
-
|
6992
|
-
wabaExternalId
|
6993
|
-
phoneNumberId
|
6994
|
-
|
6995
|
-
clientId?: string | undefined;
|
6996
|
-
channelId?: string | undefined;
|
7081
|
+
wabaBusinessId?: string | null | undefined;
|
7082
|
+
wabaExternalId?: string | null | undefined;
|
7083
|
+
phoneNumberId?: string | null | undefined;
|
7084
|
+
email?: string | null | undefined;
|
7085
|
+
clientId?: string | null | undefined;
|
7086
|
+
channelId?: string | null | undefined;
|
6997
7087
|
status?: "active" | "pending" | undefined;
|
6998
7088
|
apiKey?: string | undefined;
|
6999
7089
|
tier?: "basic" | "regular" | "premium" | undefined;
|
7090
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
7000
7091
|
} | undefined;
|
7001
7092
|
vonageCredentials?: {
|
7002
7093
|
apiKey: string;
|
@@ -7080,15 +7171,16 @@ export declare const channelContract: {
|
|
7080
7171
|
additionalCredentials?: any;
|
7081
7172
|
senderId?: string | undefined;
|
7082
7173
|
whatsapp?: {
|
7083
|
-
|
7084
|
-
wabaExternalId
|
7085
|
-
phoneNumberId
|
7086
|
-
|
7087
|
-
clientId?: string | undefined;
|
7088
|
-
channelId?: string | undefined;
|
7174
|
+
wabaBusinessId?: string | null | undefined;
|
7175
|
+
wabaExternalId?: string | null | undefined;
|
7176
|
+
phoneNumberId?: string | null | undefined;
|
7177
|
+
email?: string | null | undefined;
|
7178
|
+
clientId?: string | null | undefined;
|
7179
|
+
channelId?: string | null | undefined;
|
7089
7180
|
status?: "active" | "pending" | undefined;
|
7090
7181
|
apiKey?: string | undefined;
|
7091
7182
|
tier?: "basic" | "regular" | "premium" | undefined;
|
7183
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
7092
7184
|
} | undefined;
|
7093
7185
|
vonageCredentials?: {
|
7094
7186
|
apiKey: string;
|
@@ -7173,15 +7265,16 @@ export declare const channelContract: {
|
|
7173
7265
|
additionalCredentials?: any;
|
7174
7266
|
senderId?: string | undefined;
|
7175
7267
|
whatsapp?: {
|
7176
|
-
|
7177
|
-
wabaExternalId
|
7178
|
-
phoneNumberId
|
7179
|
-
|
7180
|
-
clientId?: string | undefined;
|
7181
|
-
channelId?: string | undefined;
|
7268
|
+
wabaBusinessId?: string | null | undefined;
|
7269
|
+
wabaExternalId?: string | null | undefined;
|
7270
|
+
phoneNumberId?: string | null | undefined;
|
7271
|
+
email?: string | null | undefined;
|
7272
|
+
clientId?: string | null | undefined;
|
7273
|
+
channelId?: string | null | undefined;
|
7182
7274
|
status?: "active" | "pending" | undefined;
|
7183
7275
|
apiKey?: string | undefined;
|
7184
7276
|
tier?: "basic" | "regular" | "premium" | undefined;
|
7277
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
7185
7278
|
} | undefined;
|
7186
7279
|
vonageCredentials?: {
|
7187
7280
|
apiKey: string;
|
@@ -7316,35 +7409,38 @@ export declare const channelContract: {
|
|
7316
7409
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
7317
7410
|
senderId: z.ZodOptional<z.ZodString>;
|
7318
7411
|
whatsapp: z.ZodOptional<z.ZodObject<{
|
7319
|
-
wabaBusinessId: z.ZodOptional<z.ZodString
|
7320
|
-
wabaExternalId: z.ZodString
|
7321
|
-
phoneNumberId: z.ZodString
|
7322
|
-
email: z.ZodString
|
7323
|
-
clientId: z.ZodOptional<z.ZodString
|
7324
|
-
channelId: z.ZodOptional<z.ZodString
|
7412
|
+
wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
7413
|
+
wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
7414
|
+
phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
7415
|
+
email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
7416
|
+
clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
7417
|
+
channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
7325
7418
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
7326
7419
|
apiKey: z.ZodOptional<z.ZodString>;
|
7327
7420
|
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
7421
|
+
integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
|
7328
7422
|
}, "strip", z.ZodTypeAny, {
|
7329
|
-
|
7330
|
-
wabaExternalId
|
7331
|
-
phoneNumberId
|
7332
|
-
|
7333
|
-
clientId?: string | undefined;
|
7334
|
-
channelId?: string | undefined;
|
7423
|
+
wabaBusinessId?: string | null | undefined;
|
7424
|
+
wabaExternalId?: string | null | undefined;
|
7425
|
+
phoneNumberId?: string | null | undefined;
|
7426
|
+
email?: string | null | undefined;
|
7427
|
+
clientId?: string | null | undefined;
|
7428
|
+
channelId?: string | null | undefined;
|
7335
7429
|
status?: "active" | "pending" | undefined;
|
7336
7430
|
apiKey?: string | undefined;
|
7337
7431
|
tier?: "basic" | "regular" | "premium" | undefined;
|
7432
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
7338
7433
|
}, {
|
7339
|
-
|
7340
|
-
wabaExternalId
|
7341
|
-
phoneNumberId
|
7342
|
-
|
7343
|
-
clientId?: string | undefined;
|
7344
|
-
channelId?: string | undefined;
|
7434
|
+
wabaBusinessId?: string | null | undefined;
|
7435
|
+
wabaExternalId?: string | null | undefined;
|
7436
|
+
phoneNumberId?: string | null | undefined;
|
7437
|
+
email?: string | null | undefined;
|
7438
|
+
clientId?: string | null | undefined;
|
7439
|
+
channelId?: string | null | undefined;
|
7345
7440
|
status?: "active" | "pending" | undefined;
|
7346
7441
|
apiKey?: string | undefined;
|
7347
7442
|
tier?: "basic" | "regular" | "premium" | undefined;
|
7443
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
7348
7444
|
}>>;
|
7349
7445
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
7350
7446
|
mobileNumber: z.ZodString;
|
@@ -7369,15 +7465,16 @@ export declare const channelContract: {
|
|
7369
7465
|
additionalCredentials?: any;
|
7370
7466
|
senderId?: string | undefined;
|
7371
7467
|
whatsapp?: {
|
7372
|
-
|
7373
|
-
wabaExternalId
|
7374
|
-
phoneNumberId
|
7375
|
-
|
7376
|
-
clientId?: string | undefined;
|
7377
|
-
channelId?: string | undefined;
|
7468
|
+
wabaBusinessId?: string | null | undefined;
|
7469
|
+
wabaExternalId?: string | null | undefined;
|
7470
|
+
phoneNumberId?: string | null | undefined;
|
7471
|
+
email?: string | null | undefined;
|
7472
|
+
clientId?: string | null | undefined;
|
7473
|
+
channelId?: string | null | undefined;
|
7378
7474
|
status?: "active" | "pending" | undefined;
|
7379
7475
|
apiKey?: string | undefined;
|
7380
7476
|
tier?: "basic" | "regular" | "premium" | undefined;
|
7477
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
7381
7478
|
} | undefined;
|
7382
7479
|
vonageCredentials?: {
|
7383
7480
|
apiKey: string;
|
@@ -7394,15 +7491,16 @@ export declare const channelContract: {
|
|
7394
7491
|
additionalCredentials?: any;
|
7395
7492
|
senderId?: string | undefined;
|
7396
7493
|
whatsapp?: {
|
7397
|
-
|
7398
|
-
wabaExternalId
|
7399
|
-
phoneNumberId
|
7400
|
-
|
7401
|
-
clientId?: string | undefined;
|
7402
|
-
channelId?: string | undefined;
|
7494
|
+
wabaBusinessId?: string | null | undefined;
|
7495
|
+
wabaExternalId?: string | null | undefined;
|
7496
|
+
phoneNumberId?: string | null | undefined;
|
7497
|
+
email?: string | null | undefined;
|
7498
|
+
clientId?: string | null | undefined;
|
7499
|
+
channelId?: string | null | undefined;
|
7403
7500
|
status?: "active" | "pending" | undefined;
|
7404
7501
|
apiKey?: string | undefined;
|
7405
7502
|
tier?: "basic" | "regular" | "premium" | undefined;
|
7503
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
7406
7504
|
} | undefined;
|
7407
7505
|
vonageCredentials?: {
|
7408
7506
|
apiKey: string;
|
@@ -7653,15 +7751,16 @@ export declare const channelContract: {
|
|
7653
7751
|
additionalCredentials?: any;
|
7654
7752
|
senderId?: string | undefined;
|
7655
7753
|
whatsapp?: {
|
7656
|
-
|
7657
|
-
wabaExternalId
|
7658
|
-
phoneNumberId
|
7659
|
-
|
7660
|
-
clientId?: string | undefined;
|
7661
|
-
channelId?: string | undefined;
|
7754
|
+
wabaBusinessId?: string | null | undefined;
|
7755
|
+
wabaExternalId?: string | null | undefined;
|
7756
|
+
phoneNumberId?: string | null | undefined;
|
7757
|
+
email?: string | null | undefined;
|
7758
|
+
clientId?: string | null | undefined;
|
7759
|
+
channelId?: string | null | undefined;
|
7662
7760
|
status?: "active" | "pending" | undefined;
|
7663
7761
|
apiKey?: string | undefined;
|
7664
7762
|
tier?: "basic" | "regular" | "premium" | undefined;
|
7763
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
7665
7764
|
} | undefined;
|
7666
7765
|
vonageCredentials?: {
|
7667
7766
|
apiKey: string;
|
@@ -7743,15 +7842,16 @@ export declare const channelContract: {
|
|
7743
7842
|
additionalCredentials?: any;
|
7744
7843
|
senderId?: string | undefined;
|
7745
7844
|
whatsapp?: {
|
7746
|
-
|
7747
|
-
wabaExternalId
|
7748
|
-
phoneNumberId
|
7749
|
-
|
7750
|
-
clientId?: string | undefined;
|
7751
|
-
channelId?: string | undefined;
|
7845
|
+
wabaBusinessId?: string | null | undefined;
|
7846
|
+
wabaExternalId?: string | null | undefined;
|
7847
|
+
phoneNumberId?: string | null | undefined;
|
7848
|
+
email?: string | null | undefined;
|
7849
|
+
clientId?: string | null | undefined;
|
7850
|
+
channelId?: string | null | undefined;
|
7752
7851
|
status?: "active" | "pending" | undefined;
|
7753
7852
|
apiKey?: string | undefined;
|
7754
7853
|
tier?: "basic" | "regular" | "premium" | undefined;
|
7854
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
7755
7855
|
} | undefined;
|
7756
7856
|
vonageCredentials?: {
|
7757
7857
|
apiKey: string;
|
@@ -7835,15 +7935,16 @@ export declare const channelContract: {
|
|
7835
7935
|
additionalCredentials?: any;
|
7836
7936
|
senderId?: string | undefined;
|
7837
7937
|
whatsapp?: {
|
7838
|
-
|
7839
|
-
wabaExternalId
|
7840
|
-
phoneNumberId
|
7841
|
-
|
7842
|
-
clientId?: string | undefined;
|
7843
|
-
channelId?: string | undefined;
|
7938
|
+
wabaBusinessId?: string | null | undefined;
|
7939
|
+
wabaExternalId?: string | null | undefined;
|
7940
|
+
phoneNumberId?: string | null | undefined;
|
7941
|
+
email?: string | null | undefined;
|
7942
|
+
clientId?: string | null | undefined;
|
7943
|
+
channelId?: string | null | undefined;
|
7844
7944
|
status?: "active" | "pending" | undefined;
|
7845
7945
|
apiKey?: string | undefined;
|
7846
7946
|
tier?: "basic" | "regular" | "premium" | undefined;
|
7947
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
7847
7948
|
} | undefined;
|
7848
7949
|
vonageCredentials?: {
|
7849
7950
|
apiKey: string;
|
@@ -7928,15 +8029,16 @@ export declare const channelContract: {
|
|
7928
8029
|
additionalCredentials?: any;
|
7929
8030
|
senderId?: string | undefined;
|
7930
8031
|
whatsapp?: {
|
7931
|
-
|
7932
|
-
wabaExternalId
|
7933
|
-
phoneNumberId
|
7934
|
-
|
7935
|
-
clientId?: string | undefined;
|
7936
|
-
channelId?: string | undefined;
|
8032
|
+
wabaBusinessId?: string | null | undefined;
|
8033
|
+
wabaExternalId?: string | null | undefined;
|
8034
|
+
phoneNumberId?: string | null | undefined;
|
8035
|
+
email?: string | null | undefined;
|
8036
|
+
clientId?: string | null | undefined;
|
8037
|
+
channelId?: string | null | undefined;
|
7937
8038
|
status?: "active" | "pending" | undefined;
|
7938
8039
|
apiKey?: string | undefined;
|
7939
8040
|
tier?: "basic" | "regular" | "premium" | undefined;
|
8041
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
7940
8042
|
} | undefined;
|
7941
8043
|
vonageCredentials?: {
|
7942
8044
|
apiKey: string;
|
@@ -8081,35 +8183,38 @@ export declare const channelContract: {
|
|
8081
8183
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
8082
8184
|
senderId: z.ZodOptional<z.ZodString>;
|
8083
8185
|
whatsapp: z.ZodOptional<z.ZodObject<{
|
8084
|
-
wabaBusinessId: z.ZodOptional<z.ZodString
|
8085
|
-
wabaExternalId: z.ZodString
|
8086
|
-
phoneNumberId: z.ZodString
|
8087
|
-
email: z.ZodString
|
8088
|
-
clientId: z.ZodOptional<z.ZodString
|
8089
|
-
channelId: z.ZodOptional<z.ZodString
|
8186
|
+
wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
8187
|
+
wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
8188
|
+
phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
8189
|
+
email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
8190
|
+
clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
8191
|
+
channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
8090
8192
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
8091
8193
|
apiKey: z.ZodOptional<z.ZodString>;
|
8092
8194
|
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
8195
|
+
integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
|
8093
8196
|
}, "strip", z.ZodTypeAny, {
|
8094
|
-
|
8095
|
-
wabaExternalId
|
8096
|
-
phoneNumberId
|
8097
|
-
|
8098
|
-
clientId?: string | undefined;
|
8099
|
-
channelId?: string | undefined;
|
8197
|
+
wabaBusinessId?: string | null | undefined;
|
8198
|
+
wabaExternalId?: string | null | undefined;
|
8199
|
+
phoneNumberId?: string | null | undefined;
|
8200
|
+
email?: string | null | undefined;
|
8201
|
+
clientId?: string | null | undefined;
|
8202
|
+
channelId?: string | null | undefined;
|
8100
8203
|
status?: "active" | "pending" | undefined;
|
8101
8204
|
apiKey?: string | undefined;
|
8102
8205
|
tier?: "basic" | "regular" | "premium" | undefined;
|
8206
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
8103
8207
|
}, {
|
8104
|
-
|
8105
|
-
wabaExternalId
|
8106
|
-
phoneNumberId
|
8107
|
-
|
8108
|
-
clientId?: string | undefined;
|
8109
|
-
channelId?: string | undefined;
|
8208
|
+
wabaBusinessId?: string | null | undefined;
|
8209
|
+
wabaExternalId?: string | null | undefined;
|
8210
|
+
phoneNumberId?: string | null | undefined;
|
8211
|
+
email?: string | null | undefined;
|
8212
|
+
clientId?: string | null | undefined;
|
8213
|
+
channelId?: string | null | undefined;
|
8110
8214
|
status?: "active" | "pending" | undefined;
|
8111
8215
|
apiKey?: string | undefined;
|
8112
8216
|
tier?: "basic" | "regular" | "premium" | undefined;
|
8217
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
8113
8218
|
}>>;
|
8114
8219
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
8115
8220
|
mobileNumber: z.ZodString;
|
@@ -8134,15 +8239,16 @@ export declare const channelContract: {
|
|
8134
8239
|
additionalCredentials?: any;
|
8135
8240
|
senderId?: string | undefined;
|
8136
8241
|
whatsapp?: {
|
8137
|
-
|
8138
|
-
wabaExternalId
|
8139
|
-
phoneNumberId
|
8140
|
-
|
8141
|
-
clientId?: string | undefined;
|
8142
|
-
channelId?: string | undefined;
|
8242
|
+
wabaBusinessId?: string | null | undefined;
|
8243
|
+
wabaExternalId?: string | null | undefined;
|
8244
|
+
phoneNumberId?: string | null | undefined;
|
8245
|
+
email?: string | null | undefined;
|
8246
|
+
clientId?: string | null | undefined;
|
8247
|
+
channelId?: string | null | undefined;
|
8143
8248
|
status?: "active" | "pending" | undefined;
|
8144
8249
|
apiKey?: string | undefined;
|
8145
8250
|
tier?: "basic" | "regular" | "premium" | undefined;
|
8251
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
8146
8252
|
} | undefined;
|
8147
8253
|
vonageCredentials?: {
|
8148
8254
|
apiKey: string;
|
@@ -8159,15 +8265,16 @@ export declare const channelContract: {
|
|
8159
8265
|
additionalCredentials?: any;
|
8160
8266
|
senderId?: string | undefined;
|
8161
8267
|
whatsapp?: {
|
8162
|
-
|
8163
|
-
wabaExternalId
|
8164
|
-
phoneNumberId
|
8165
|
-
|
8166
|
-
clientId?: string | undefined;
|
8167
|
-
channelId?: string | undefined;
|
8268
|
+
wabaBusinessId?: string | null | undefined;
|
8269
|
+
wabaExternalId?: string | null | undefined;
|
8270
|
+
phoneNumberId?: string | null | undefined;
|
8271
|
+
email?: string | null | undefined;
|
8272
|
+
clientId?: string | null | undefined;
|
8273
|
+
channelId?: string | null | undefined;
|
8168
8274
|
status?: "active" | "pending" | undefined;
|
8169
8275
|
apiKey?: string | undefined;
|
8170
8276
|
tier?: "basic" | "regular" | "premium" | undefined;
|
8277
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
8171
8278
|
} | undefined;
|
8172
8279
|
vonageCredentials?: {
|
8173
8280
|
apiKey: string;
|
@@ -8418,15 +8525,16 @@ export declare const channelContract: {
|
|
8418
8525
|
additionalCredentials?: any;
|
8419
8526
|
senderId?: string | undefined;
|
8420
8527
|
whatsapp?: {
|
8421
|
-
|
8422
|
-
wabaExternalId
|
8423
|
-
phoneNumberId
|
8424
|
-
|
8425
|
-
clientId?: string | undefined;
|
8426
|
-
channelId?: string | undefined;
|
8528
|
+
wabaBusinessId?: string | null | undefined;
|
8529
|
+
wabaExternalId?: string | null | undefined;
|
8530
|
+
phoneNumberId?: string | null | undefined;
|
8531
|
+
email?: string | null | undefined;
|
8532
|
+
clientId?: string | null | undefined;
|
8533
|
+
channelId?: string | null | undefined;
|
8427
8534
|
status?: "active" | "pending" | undefined;
|
8428
8535
|
apiKey?: string | undefined;
|
8429
8536
|
tier?: "basic" | "regular" | "premium" | undefined;
|
8537
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
8430
8538
|
} | undefined;
|
8431
8539
|
vonageCredentials?: {
|
8432
8540
|
apiKey: string;
|
@@ -8508,15 +8616,16 @@ export declare const channelContract: {
|
|
8508
8616
|
additionalCredentials?: any;
|
8509
8617
|
senderId?: string | undefined;
|
8510
8618
|
whatsapp?: {
|
8511
|
-
|
8512
|
-
wabaExternalId
|
8513
|
-
phoneNumberId
|
8514
|
-
|
8515
|
-
clientId?: string | undefined;
|
8516
|
-
channelId?: string | undefined;
|
8619
|
+
wabaBusinessId?: string | null | undefined;
|
8620
|
+
wabaExternalId?: string | null | undefined;
|
8621
|
+
phoneNumberId?: string | null | undefined;
|
8622
|
+
email?: string | null | undefined;
|
8623
|
+
clientId?: string | null | undefined;
|
8624
|
+
channelId?: string | null | undefined;
|
8517
8625
|
status?: "active" | "pending" | undefined;
|
8518
8626
|
apiKey?: string | undefined;
|
8519
8627
|
tier?: "basic" | "regular" | "premium" | undefined;
|
8628
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
8520
8629
|
} | undefined;
|
8521
8630
|
vonageCredentials?: {
|
8522
8631
|
apiKey: string;
|
@@ -8600,15 +8709,16 @@ export declare const channelContract: {
|
|
8600
8709
|
additionalCredentials?: any;
|
8601
8710
|
senderId?: string | undefined;
|
8602
8711
|
whatsapp?: {
|
8603
|
-
|
8604
|
-
wabaExternalId
|
8605
|
-
phoneNumberId
|
8606
|
-
|
8607
|
-
clientId?: string | undefined;
|
8608
|
-
channelId?: string | undefined;
|
8712
|
+
wabaBusinessId?: string | null | undefined;
|
8713
|
+
wabaExternalId?: string | null | undefined;
|
8714
|
+
phoneNumberId?: string | null | undefined;
|
8715
|
+
email?: string | null | undefined;
|
8716
|
+
clientId?: string | null | undefined;
|
8717
|
+
channelId?: string | null | undefined;
|
8609
8718
|
status?: "active" | "pending" | undefined;
|
8610
8719
|
apiKey?: string | undefined;
|
8611
8720
|
tier?: "basic" | "regular" | "premium" | undefined;
|
8721
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
8612
8722
|
} | undefined;
|
8613
8723
|
vonageCredentials?: {
|
8614
8724
|
apiKey: string;
|
@@ -8693,15 +8803,16 @@ export declare const channelContract: {
|
|
8693
8803
|
additionalCredentials?: any;
|
8694
8804
|
senderId?: string | undefined;
|
8695
8805
|
whatsapp?: {
|
8696
|
-
|
8697
|
-
wabaExternalId
|
8698
|
-
phoneNumberId
|
8699
|
-
|
8700
|
-
clientId?: string | undefined;
|
8701
|
-
channelId?: string | undefined;
|
8806
|
+
wabaBusinessId?: string | null | undefined;
|
8807
|
+
wabaExternalId?: string | null | undefined;
|
8808
|
+
phoneNumberId?: string | null | undefined;
|
8809
|
+
email?: string | null | undefined;
|
8810
|
+
clientId?: string | null | undefined;
|
8811
|
+
channelId?: string | null | undefined;
|
8702
8812
|
status?: "active" | "pending" | undefined;
|
8703
8813
|
apiKey?: string | undefined;
|
8704
8814
|
tier?: "basic" | "regular" | "premium" | undefined;
|
8815
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
8705
8816
|
} | undefined;
|
8706
8817
|
vonageCredentials?: {
|
8707
8818
|
apiKey: string;
|
@@ -8896,35 +9007,38 @@ export declare const channelContract: {
|
|
8896
9007
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
8897
9008
|
senderId: z.ZodOptional<z.ZodString>;
|
8898
9009
|
whatsapp: z.ZodOptional<z.ZodObject<{
|
8899
|
-
wabaBusinessId: z.ZodOptional<z.ZodString
|
8900
|
-
wabaExternalId: z.ZodString
|
8901
|
-
phoneNumberId: z.ZodString
|
8902
|
-
email: z.ZodString
|
8903
|
-
clientId: z.ZodOptional<z.ZodString
|
8904
|
-
channelId: z.ZodOptional<z.ZodString
|
9010
|
+
wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
9011
|
+
wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
9012
|
+
phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
9013
|
+
email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
9014
|
+
clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
9015
|
+
channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
8905
9016
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
8906
9017
|
apiKey: z.ZodOptional<z.ZodString>;
|
8907
9018
|
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
9019
|
+
integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
|
8908
9020
|
}, "strip", z.ZodTypeAny, {
|
8909
|
-
|
8910
|
-
wabaExternalId
|
8911
|
-
phoneNumberId
|
8912
|
-
|
8913
|
-
clientId?: string | undefined;
|
8914
|
-
channelId?: string | undefined;
|
9021
|
+
wabaBusinessId?: string | null | undefined;
|
9022
|
+
wabaExternalId?: string | null | undefined;
|
9023
|
+
phoneNumberId?: string | null | undefined;
|
9024
|
+
email?: string | null | undefined;
|
9025
|
+
clientId?: string | null | undefined;
|
9026
|
+
channelId?: string | null | undefined;
|
8915
9027
|
status?: "active" | "pending" | undefined;
|
8916
9028
|
apiKey?: string | undefined;
|
8917
9029
|
tier?: "basic" | "regular" | "premium" | undefined;
|
9030
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
8918
9031
|
}, {
|
8919
|
-
|
8920
|
-
wabaExternalId
|
8921
|
-
phoneNumberId
|
8922
|
-
|
8923
|
-
clientId?: string | undefined;
|
8924
|
-
channelId?: string | undefined;
|
9032
|
+
wabaBusinessId?: string | null | undefined;
|
9033
|
+
wabaExternalId?: string | null | undefined;
|
9034
|
+
phoneNumberId?: string | null | undefined;
|
9035
|
+
email?: string | null | undefined;
|
9036
|
+
clientId?: string | null | undefined;
|
9037
|
+
channelId?: string | null | undefined;
|
8925
9038
|
status?: "active" | "pending" | undefined;
|
8926
9039
|
apiKey?: string | undefined;
|
8927
9040
|
tier?: "basic" | "regular" | "premium" | undefined;
|
9041
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
8928
9042
|
}>>;
|
8929
9043
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
8930
9044
|
mobileNumber: z.ZodString;
|
@@ -8949,15 +9063,16 @@ export declare const channelContract: {
|
|
8949
9063
|
additionalCredentials?: any;
|
8950
9064
|
senderId?: string | undefined;
|
8951
9065
|
whatsapp?: {
|
8952
|
-
|
8953
|
-
wabaExternalId
|
8954
|
-
phoneNumberId
|
8955
|
-
|
8956
|
-
clientId?: string | undefined;
|
8957
|
-
channelId?: string | undefined;
|
9066
|
+
wabaBusinessId?: string | null | undefined;
|
9067
|
+
wabaExternalId?: string | null | undefined;
|
9068
|
+
phoneNumberId?: string | null | undefined;
|
9069
|
+
email?: string | null | undefined;
|
9070
|
+
clientId?: string | null | undefined;
|
9071
|
+
channelId?: string | null | undefined;
|
8958
9072
|
status?: "active" | "pending" | undefined;
|
8959
9073
|
apiKey?: string | undefined;
|
8960
9074
|
tier?: "basic" | "regular" | "premium" | undefined;
|
9075
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
8961
9076
|
} | undefined;
|
8962
9077
|
vonageCredentials?: {
|
8963
9078
|
apiKey: string;
|
@@ -8974,15 +9089,16 @@ export declare const channelContract: {
|
|
8974
9089
|
additionalCredentials?: any;
|
8975
9090
|
senderId?: string | undefined;
|
8976
9091
|
whatsapp?: {
|
8977
|
-
|
8978
|
-
wabaExternalId
|
8979
|
-
phoneNumberId
|
8980
|
-
|
8981
|
-
clientId?: string | undefined;
|
8982
|
-
channelId?: string | undefined;
|
9092
|
+
wabaBusinessId?: string | null | undefined;
|
9093
|
+
wabaExternalId?: string | null | undefined;
|
9094
|
+
phoneNumberId?: string | null | undefined;
|
9095
|
+
email?: string | null | undefined;
|
9096
|
+
clientId?: string | null | undefined;
|
9097
|
+
channelId?: string | null | undefined;
|
8983
9098
|
status?: "active" | "pending" | undefined;
|
8984
9099
|
apiKey?: string | undefined;
|
8985
9100
|
tier?: "basic" | "regular" | "premium" | undefined;
|
9101
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
8986
9102
|
} | undefined;
|
8987
9103
|
vonageCredentials?: {
|
8988
9104
|
apiKey: string;
|
@@ -9233,15 +9349,16 @@ export declare const channelContract: {
|
|
9233
9349
|
additionalCredentials?: any;
|
9234
9350
|
senderId?: string | undefined;
|
9235
9351
|
whatsapp?: {
|
9236
|
-
|
9237
|
-
wabaExternalId
|
9238
|
-
phoneNumberId
|
9239
|
-
|
9240
|
-
clientId?: string | undefined;
|
9241
|
-
channelId?: string | undefined;
|
9352
|
+
wabaBusinessId?: string | null | undefined;
|
9353
|
+
wabaExternalId?: string | null | undefined;
|
9354
|
+
phoneNumberId?: string | null | undefined;
|
9355
|
+
email?: string | null | undefined;
|
9356
|
+
clientId?: string | null | undefined;
|
9357
|
+
channelId?: string | null | undefined;
|
9242
9358
|
status?: "active" | "pending" | undefined;
|
9243
9359
|
apiKey?: string | undefined;
|
9244
9360
|
tier?: "basic" | "regular" | "premium" | undefined;
|
9361
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
9245
9362
|
} | undefined;
|
9246
9363
|
vonageCredentials?: {
|
9247
9364
|
apiKey: string;
|
@@ -9323,15 +9440,16 @@ export declare const channelContract: {
|
|
9323
9440
|
additionalCredentials?: any;
|
9324
9441
|
senderId?: string | undefined;
|
9325
9442
|
whatsapp?: {
|
9326
|
-
|
9327
|
-
wabaExternalId
|
9328
|
-
phoneNumberId
|
9329
|
-
|
9330
|
-
clientId?: string | undefined;
|
9331
|
-
channelId?: string | undefined;
|
9443
|
+
wabaBusinessId?: string | null | undefined;
|
9444
|
+
wabaExternalId?: string | null | undefined;
|
9445
|
+
phoneNumberId?: string | null | undefined;
|
9446
|
+
email?: string | null | undefined;
|
9447
|
+
clientId?: string | null | undefined;
|
9448
|
+
channelId?: string | null | undefined;
|
9332
9449
|
status?: "active" | "pending" | undefined;
|
9333
9450
|
apiKey?: string | undefined;
|
9334
9451
|
tier?: "basic" | "regular" | "premium" | undefined;
|
9452
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
9335
9453
|
} | undefined;
|
9336
9454
|
vonageCredentials?: {
|
9337
9455
|
apiKey: string;
|
@@ -9415,15 +9533,16 @@ export declare const channelContract: {
|
|
9415
9533
|
additionalCredentials?: any;
|
9416
9534
|
senderId?: string | undefined;
|
9417
9535
|
whatsapp?: {
|
9418
|
-
|
9419
|
-
wabaExternalId
|
9420
|
-
phoneNumberId
|
9421
|
-
|
9422
|
-
clientId?: string | undefined;
|
9423
|
-
channelId?: string | undefined;
|
9536
|
+
wabaBusinessId?: string | null | undefined;
|
9537
|
+
wabaExternalId?: string | null | undefined;
|
9538
|
+
phoneNumberId?: string | null | undefined;
|
9539
|
+
email?: string | null | undefined;
|
9540
|
+
clientId?: string | null | undefined;
|
9541
|
+
channelId?: string | null | undefined;
|
9424
9542
|
status?: "active" | "pending" | undefined;
|
9425
9543
|
apiKey?: string | undefined;
|
9426
9544
|
tier?: "basic" | "regular" | "premium" | undefined;
|
9545
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
9427
9546
|
} | undefined;
|
9428
9547
|
vonageCredentials?: {
|
9429
9548
|
apiKey: string;
|
@@ -9508,15 +9627,16 @@ export declare const channelContract: {
|
|
9508
9627
|
additionalCredentials?: any;
|
9509
9628
|
senderId?: string | undefined;
|
9510
9629
|
whatsapp?: {
|
9511
|
-
|
9512
|
-
wabaExternalId
|
9513
|
-
phoneNumberId
|
9514
|
-
|
9515
|
-
clientId?: string | undefined;
|
9516
|
-
channelId?: string | undefined;
|
9630
|
+
wabaBusinessId?: string | null | undefined;
|
9631
|
+
wabaExternalId?: string | null | undefined;
|
9632
|
+
phoneNumberId?: string | null | undefined;
|
9633
|
+
email?: string | null | undefined;
|
9634
|
+
clientId?: string | null | undefined;
|
9635
|
+
channelId?: string | null | undefined;
|
9517
9636
|
status?: "active" | "pending" | undefined;
|
9518
9637
|
apiKey?: string | undefined;
|
9519
9638
|
tier?: "basic" | "regular" | "premium" | undefined;
|
9639
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
9520
9640
|
} | undefined;
|
9521
9641
|
vonageCredentials?: {
|
9522
9642
|
apiKey: string;
|
@@ -9642,35 +9762,38 @@ export declare const channelContract: {
|
|
9642
9762
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
9643
9763
|
senderId: z.ZodOptional<z.ZodString>;
|
9644
9764
|
whatsapp: z.ZodOptional<z.ZodObject<{
|
9645
|
-
wabaBusinessId: z.ZodOptional<z.ZodString
|
9646
|
-
wabaExternalId: z.ZodString
|
9647
|
-
phoneNumberId: z.ZodString
|
9648
|
-
email: z.ZodString
|
9649
|
-
clientId: z.ZodOptional<z.ZodString
|
9650
|
-
channelId: z.ZodOptional<z.ZodString
|
9765
|
+
wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
9766
|
+
wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
9767
|
+
phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
9768
|
+
email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
9769
|
+
clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
9770
|
+
channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
9651
9771
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
9652
9772
|
apiKey: z.ZodOptional<z.ZodString>;
|
9653
9773
|
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
9774
|
+
integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
|
9654
9775
|
}, "strip", z.ZodTypeAny, {
|
9655
|
-
|
9656
|
-
wabaExternalId
|
9657
|
-
phoneNumberId
|
9658
|
-
|
9659
|
-
clientId?: string | undefined;
|
9660
|
-
channelId?: string | undefined;
|
9776
|
+
wabaBusinessId?: string | null | undefined;
|
9777
|
+
wabaExternalId?: string | null | undefined;
|
9778
|
+
phoneNumberId?: string | null | undefined;
|
9779
|
+
email?: string | null | undefined;
|
9780
|
+
clientId?: string | null | undefined;
|
9781
|
+
channelId?: string | null | undefined;
|
9661
9782
|
status?: "active" | "pending" | undefined;
|
9662
9783
|
apiKey?: string | undefined;
|
9663
9784
|
tier?: "basic" | "regular" | "premium" | undefined;
|
9785
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
9664
9786
|
}, {
|
9665
|
-
|
9666
|
-
wabaExternalId
|
9667
|
-
phoneNumberId
|
9668
|
-
|
9669
|
-
clientId?: string | undefined;
|
9670
|
-
channelId?: string | undefined;
|
9787
|
+
wabaBusinessId?: string | null | undefined;
|
9788
|
+
wabaExternalId?: string | null | undefined;
|
9789
|
+
phoneNumberId?: string | null | undefined;
|
9790
|
+
email?: string | null | undefined;
|
9791
|
+
clientId?: string | null | undefined;
|
9792
|
+
channelId?: string | null | undefined;
|
9671
9793
|
status?: "active" | "pending" | undefined;
|
9672
9794
|
apiKey?: string | undefined;
|
9673
9795
|
tier?: "basic" | "regular" | "premium" | undefined;
|
9796
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
9674
9797
|
}>>;
|
9675
9798
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
9676
9799
|
mobileNumber: z.ZodString;
|
@@ -9695,15 +9818,16 @@ export declare const channelContract: {
|
|
9695
9818
|
additionalCredentials?: any;
|
9696
9819
|
senderId?: string | undefined;
|
9697
9820
|
whatsapp?: {
|
9698
|
-
|
9699
|
-
wabaExternalId
|
9700
|
-
phoneNumberId
|
9701
|
-
|
9702
|
-
clientId?: string | undefined;
|
9703
|
-
channelId?: string | undefined;
|
9821
|
+
wabaBusinessId?: string | null | undefined;
|
9822
|
+
wabaExternalId?: string | null | undefined;
|
9823
|
+
phoneNumberId?: string | null | undefined;
|
9824
|
+
email?: string | null | undefined;
|
9825
|
+
clientId?: string | null | undefined;
|
9826
|
+
channelId?: string | null | undefined;
|
9704
9827
|
status?: "active" | "pending" | undefined;
|
9705
9828
|
apiKey?: string | undefined;
|
9706
9829
|
tier?: "basic" | "regular" | "premium" | undefined;
|
9830
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
9707
9831
|
} | undefined;
|
9708
9832
|
vonageCredentials?: {
|
9709
9833
|
apiKey: string;
|
@@ -9720,15 +9844,16 @@ export declare const channelContract: {
|
|
9720
9844
|
additionalCredentials?: any;
|
9721
9845
|
senderId?: string | undefined;
|
9722
9846
|
whatsapp?: {
|
9723
|
-
|
9724
|
-
wabaExternalId
|
9725
|
-
phoneNumberId
|
9726
|
-
|
9727
|
-
clientId?: string | undefined;
|
9728
|
-
channelId?: string | undefined;
|
9847
|
+
wabaBusinessId?: string | null | undefined;
|
9848
|
+
wabaExternalId?: string | null | undefined;
|
9849
|
+
phoneNumberId?: string | null | undefined;
|
9850
|
+
email?: string | null | undefined;
|
9851
|
+
clientId?: string | null | undefined;
|
9852
|
+
channelId?: string | null | undefined;
|
9729
9853
|
status?: "active" | "pending" | undefined;
|
9730
9854
|
apiKey?: string | undefined;
|
9731
9855
|
tier?: "basic" | "regular" | "premium" | undefined;
|
9856
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
9732
9857
|
} | undefined;
|
9733
9858
|
vonageCredentials?: {
|
9734
9859
|
apiKey: string;
|
@@ -9750,15 +9875,16 @@ export declare const channelContract: {
|
|
9750
9875
|
additionalCredentials?: any;
|
9751
9876
|
senderId?: string | undefined;
|
9752
9877
|
whatsapp?: {
|
9753
|
-
|
9754
|
-
wabaExternalId
|
9755
|
-
phoneNumberId
|
9756
|
-
|
9757
|
-
clientId?: string | undefined;
|
9758
|
-
channelId?: string | undefined;
|
9878
|
+
wabaBusinessId?: string | null | undefined;
|
9879
|
+
wabaExternalId?: string | null | undefined;
|
9880
|
+
phoneNumberId?: string | null | undefined;
|
9881
|
+
email?: string | null | undefined;
|
9882
|
+
clientId?: string | null | undefined;
|
9883
|
+
channelId?: string | null | undefined;
|
9759
9884
|
status?: "active" | "pending" | undefined;
|
9760
9885
|
apiKey?: string | undefined;
|
9761
9886
|
tier?: "basic" | "regular" | "premium" | undefined;
|
9887
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
9762
9888
|
} | undefined;
|
9763
9889
|
vonageCredentials?: {
|
9764
9890
|
apiKey: string;
|
@@ -9780,15 +9906,16 @@ export declare const channelContract: {
|
|
9780
9906
|
additionalCredentials?: any;
|
9781
9907
|
senderId?: string | undefined;
|
9782
9908
|
whatsapp?: {
|
9783
|
-
|
9784
|
-
wabaExternalId
|
9785
|
-
phoneNumberId
|
9786
|
-
|
9787
|
-
clientId?: string | undefined;
|
9788
|
-
channelId?: string | undefined;
|
9909
|
+
wabaBusinessId?: string | null | undefined;
|
9910
|
+
wabaExternalId?: string | null | undefined;
|
9911
|
+
phoneNumberId?: string | null | undefined;
|
9912
|
+
email?: string | null | undefined;
|
9913
|
+
clientId?: string | null | undefined;
|
9914
|
+
channelId?: string | null | undefined;
|
9789
9915
|
status?: "active" | "pending" | undefined;
|
9790
9916
|
apiKey?: string | undefined;
|
9791
9917
|
tier?: "basic" | "regular" | "premium" | undefined;
|
9918
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
9792
9919
|
} | undefined;
|
9793
9920
|
vonageCredentials?: {
|
9794
9921
|
apiKey: string;
|
@@ -9820,35 +9947,38 @@ export declare const channelContract: {
|
|
9820
9947
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
9821
9948
|
senderId: z.ZodOptional<z.ZodString>;
|
9822
9949
|
whatsapp: z.ZodOptional<z.ZodObject<{
|
9823
|
-
wabaBusinessId: z.ZodOptional<z.ZodString
|
9824
|
-
wabaExternalId: z.ZodString
|
9825
|
-
phoneNumberId: z.ZodString
|
9826
|
-
email: z.ZodString
|
9827
|
-
clientId: z.ZodOptional<z.ZodString
|
9828
|
-
channelId: z.ZodOptional<z.ZodString
|
9950
|
+
wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
9951
|
+
wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
9952
|
+
phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
9953
|
+
email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
9954
|
+
clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
9955
|
+
channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
9829
9956
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
9830
9957
|
apiKey: z.ZodOptional<z.ZodString>;
|
9831
9958
|
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
9959
|
+
integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
|
9832
9960
|
}, "strip", z.ZodTypeAny, {
|
9833
|
-
|
9834
|
-
wabaExternalId
|
9835
|
-
phoneNumberId
|
9836
|
-
|
9837
|
-
clientId?: string | undefined;
|
9838
|
-
channelId?: string | undefined;
|
9961
|
+
wabaBusinessId?: string | null | undefined;
|
9962
|
+
wabaExternalId?: string | null | undefined;
|
9963
|
+
phoneNumberId?: string | null | undefined;
|
9964
|
+
email?: string | null | undefined;
|
9965
|
+
clientId?: string | null | undefined;
|
9966
|
+
channelId?: string | null | undefined;
|
9839
9967
|
status?: "active" | "pending" | undefined;
|
9840
9968
|
apiKey?: string | undefined;
|
9841
9969
|
tier?: "basic" | "regular" | "premium" | undefined;
|
9970
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
9842
9971
|
}, {
|
9843
|
-
|
9844
|
-
wabaExternalId
|
9845
|
-
phoneNumberId
|
9846
|
-
|
9847
|
-
clientId?: string | undefined;
|
9848
|
-
channelId?: string | undefined;
|
9972
|
+
wabaBusinessId?: string | null | undefined;
|
9973
|
+
wabaExternalId?: string | null | undefined;
|
9974
|
+
phoneNumberId?: string | null | undefined;
|
9975
|
+
email?: string | null | undefined;
|
9976
|
+
clientId?: string | null | undefined;
|
9977
|
+
channelId?: string | null | undefined;
|
9849
9978
|
status?: "active" | "pending" | undefined;
|
9850
9979
|
apiKey?: string | undefined;
|
9851
9980
|
tier?: "basic" | "regular" | "premium" | undefined;
|
9981
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
9852
9982
|
}>>;
|
9853
9983
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
9854
9984
|
mobileNumber: z.ZodString;
|
@@ -9873,15 +10003,16 @@ export declare const channelContract: {
|
|
9873
10003
|
additionalCredentials?: any;
|
9874
10004
|
senderId?: string | undefined;
|
9875
10005
|
whatsapp?: {
|
9876
|
-
|
9877
|
-
wabaExternalId
|
9878
|
-
phoneNumberId
|
9879
|
-
|
9880
|
-
clientId?: string | undefined;
|
9881
|
-
channelId?: string | undefined;
|
10006
|
+
wabaBusinessId?: string | null | undefined;
|
10007
|
+
wabaExternalId?: string | null | undefined;
|
10008
|
+
phoneNumberId?: string | null | undefined;
|
10009
|
+
email?: string | null | undefined;
|
10010
|
+
clientId?: string | null | undefined;
|
10011
|
+
channelId?: string | null | undefined;
|
9882
10012
|
status?: "active" | "pending" | undefined;
|
9883
10013
|
apiKey?: string | undefined;
|
9884
10014
|
tier?: "basic" | "regular" | "premium" | undefined;
|
10015
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
9885
10016
|
} | undefined;
|
9886
10017
|
vonageCredentials?: {
|
9887
10018
|
apiKey: string;
|
@@ -9898,15 +10029,16 @@ export declare const channelContract: {
|
|
9898
10029
|
additionalCredentials?: any;
|
9899
10030
|
senderId?: string | undefined;
|
9900
10031
|
whatsapp?: {
|
9901
|
-
|
9902
|
-
wabaExternalId
|
9903
|
-
phoneNumberId
|
9904
|
-
|
9905
|
-
clientId?: string | undefined;
|
9906
|
-
channelId?: string | undefined;
|
10032
|
+
wabaBusinessId?: string | null | undefined;
|
10033
|
+
wabaExternalId?: string | null | undefined;
|
10034
|
+
phoneNumberId?: string | null | undefined;
|
10035
|
+
email?: string | null | undefined;
|
10036
|
+
clientId?: string | null | undefined;
|
10037
|
+
channelId?: string | null | undefined;
|
9907
10038
|
status?: "active" | "pending" | undefined;
|
9908
10039
|
apiKey?: string | undefined;
|
9909
10040
|
tier?: "basic" | "regular" | "premium" | undefined;
|
10041
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
9910
10042
|
} | undefined;
|
9911
10043
|
vonageCredentials?: {
|
9912
10044
|
apiKey: string;
|
@@ -10157,15 +10289,16 @@ export declare const channelContract: {
|
|
10157
10289
|
additionalCredentials?: any;
|
10158
10290
|
senderId?: string | undefined;
|
10159
10291
|
whatsapp?: {
|
10160
|
-
|
10161
|
-
wabaExternalId
|
10162
|
-
phoneNumberId
|
10163
|
-
|
10164
|
-
clientId?: string | undefined;
|
10165
|
-
channelId?: string | undefined;
|
10292
|
+
wabaBusinessId?: string | null | undefined;
|
10293
|
+
wabaExternalId?: string | null | undefined;
|
10294
|
+
phoneNumberId?: string | null | undefined;
|
10295
|
+
email?: string | null | undefined;
|
10296
|
+
clientId?: string | null | undefined;
|
10297
|
+
channelId?: string | null | undefined;
|
10166
10298
|
status?: "active" | "pending" | undefined;
|
10167
10299
|
apiKey?: string | undefined;
|
10168
10300
|
tier?: "basic" | "regular" | "premium" | undefined;
|
10301
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
10169
10302
|
} | undefined;
|
10170
10303
|
vonageCredentials?: {
|
10171
10304
|
apiKey: string;
|
@@ -10247,15 +10380,16 @@ export declare const channelContract: {
|
|
10247
10380
|
additionalCredentials?: any;
|
10248
10381
|
senderId?: string | undefined;
|
10249
10382
|
whatsapp?: {
|
10250
|
-
|
10251
|
-
wabaExternalId
|
10252
|
-
phoneNumberId
|
10253
|
-
|
10254
|
-
clientId?: string | undefined;
|
10255
|
-
channelId?: string | undefined;
|
10383
|
+
wabaBusinessId?: string | null | undefined;
|
10384
|
+
wabaExternalId?: string | null | undefined;
|
10385
|
+
phoneNumberId?: string | null | undefined;
|
10386
|
+
email?: string | null | undefined;
|
10387
|
+
clientId?: string | null | undefined;
|
10388
|
+
channelId?: string | null | undefined;
|
10256
10389
|
status?: "active" | "pending" | undefined;
|
10257
10390
|
apiKey?: string | undefined;
|
10258
10391
|
tier?: "basic" | "regular" | "premium" | undefined;
|
10392
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
10259
10393
|
} | undefined;
|
10260
10394
|
vonageCredentials?: {
|
10261
10395
|
apiKey: string;
|
@@ -10339,15 +10473,16 @@ export declare const channelContract: {
|
|
10339
10473
|
additionalCredentials?: any;
|
10340
10474
|
senderId?: string | undefined;
|
10341
10475
|
whatsapp?: {
|
10342
|
-
|
10343
|
-
wabaExternalId
|
10344
|
-
phoneNumberId
|
10345
|
-
|
10346
|
-
clientId?: string | undefined;
|
10347
|
-
channelId?: string | undefined;
|
10476
|
+
wabaBusinessId?: string | null | undefined;
|
10477
|
+
wabaExternalId?: string | null | undefined;
|
10478
|
+
phoneNumberId?: string | null | undefined;
|
10479
|
+
email?: string | null | undefined;
|
10480
|
+
clientId?: string | null | undefined;
|
10481
|
+
channelId?: string | null | undefined;
|
10348
10482
|
status?: "active" | "pending" | undefined;
|
10349
10483
|
apiKey?: string | undefined;
|
10350
10484
|
tier?: "basic" | "regular" | "premium" | undefined;
|
10485
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
10351
10486
|
} | undefined;
|
10352
10487
|
vonageCredentials?: {
|
10353
10488
|
apiKey: string;
|
@@ -10432,15 +10567,16 @@ export declare const channelContract: {
|
|
10432
10567
|
additionalCredentials?: any;
|
10433
10568
|
senderId?: string | undefined;
|
10434
10569
|
whatsapp?: {
|
10435
|
-
|
10436
|
-
wabaExternalId
|
10437
|
-
phoneNumberId
|
10438
|
-
|
10439
|
-
clientId?: string | undefined;
|
10440
|
-
channelId?: string | undefined;
|
10570
|
+
wabaBusinessId?: string | null | undefined;
|
10571
|
+
wabaExternalId?: string | null | undefined;
|
10572
|
+
phoneNumberId?: string | null | undefined;
|
10573
|
+
email?: string | null | undefined;
|
10574
|
+
clientId?: string | null | undefined;
|
10575
|
+
channelId?: string | null | undefined;
|
10441
10576
|
status?: "active" | "pending" | undefined;
|
10442
10577
|
apiKey?: string | undefined;
|
10443
10578
|
tier?: "basic" | "regular" | "premium" | undefined;
|
10579
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
10444
10580
|
} | undefined;
|
10445
10581
|
vonageCredentials?: {
|
10446
10582
|
apiKey: string;
|
@@ -10856,35 +10992,38 @@ export declare const channelFacebookFeedContract: {
|
|
10856
10992
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
10857
10993
|
senderId: z.ZodOptional<z.ZodString>;
|
10858
10994
|
whatsapp: z.ZodOptional<z.ZodObject<{
|
10859
|
-
wabaBusinessId: z.ZodOptional<z.ZodString
|
10860
|
-
wabaExternalId: z.ZodString
|
10861
|
-
phoneNumberId: z.ZodString
|
10862
|
-
email: z.ZodString
|
10863
|
-
clientId: z.ZodOptional<z.ZodString
|
10864
|
-
channelId: z.ZodOptional<z.ZodString
|
10995
|
+
wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
10996
|
+
wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
10997
|
+
phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
10998
|
+
email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
10999
|
+
clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
11000
|
+
channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
10865
11001
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
10866
11002
|
apiKey: z.ZodOptional<z.ZodString>;
|
10867
11003
|
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
11004
|
+
integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
|
10868
11005
|
}, "strip", z.ZodTypeAny, {
|
10869
|
-
|
10870
|
-
wabaExternalId
|
10871
|
-
phoneNumberId
|
10872
|
-
|
10873
|
-
clientId?: string | undefined;
|
10874
|
-
channelId?: string | undefined;
|
11006
|
+
wabaBusinessId?: string | null | undefined;
|
11007
|
+
wabaExternalId?: string | null | undefined;
|
11008
|
+
phoneNumberId?: string | null | undefined;
|
11009
|
+
email?: string | null | undefined;
|
11010
|
+
clientId?: string | null | undefined;
|
11011
|
+
channelId?: string | null | undefined;
|
10875
11012
|
status?: "active" | "pending" | undefined;
|
10876
11013
|
apiKey?: string | undefined;
|
10877
11014
|
tier?: "basic" | "regular" | "premium" | undefined;
|
11015
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
10878
11016
|
}, {
|
10879
|
-
|
10880
|
-
wabaExternalId
|
10881
|
-
phoneNumberId
|
10882
|
-
|
10883
|
-
clientId?: string | undefined;
|
10884
|
-
channelId?: string | undefined;
|
11017
|
+
wabaBusinessId?: string | null | undefined;
|
11018
|
+
wabaExternalId?: string | null | undefined;
|
11019
|
+
phoneNumberId?: string | null | undefined;
|
11020
|
+
email?: string | null | undefined;
|
11021
|
+
clientId?: string | null | undefined;
|
11022
|
+
channelId?: string | null | undefined;
|
10885
11023
|
status?: "active" | "pending" | undefined;
|
10886
11024
|
apiKey?: string | undefined;
|
10887
11025
|
tier?: "basic" | "regular" | "premium" | undefined;
|
11026
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
10888
11027
|
}>>;
|
10889
11028
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
10890
11029
|
mobileNumber: z.ZodString;
|
@@ -10909,15 +11048,16 @@ export declare const channelFacebookFeedContract: {
|
|
10909
11048
|
additionalCredentials?: any;
|
10910
11049
|
senderId?: string | undefined;
|
10911
11050
|
whatsapp?: {
|
10912
|
-
|
10913
|
-
wabaExternalId
|
10914
|
-
phoneNumberId
|
10915
|
-
|
10916
|
-
clientId?: string | undefined;
|
10917
|
-
channelId?: string | undefined;
|
11051
|
+
wabaBusinessId?: string | null | undefined;
|
11052
|
+
wabaExternalId?: string | null | undefined;
|
11053
|
+
phoneNumberId?: string | null | undefined;
|
11054
|
+
email?: string | null | undefined;
|
11055
|
+
clientId?: string | null | undefined;
|
11056
|
+
channelId?: string | null | undefined;
|
10918
11057
|
status?: "active" | "pending" | undefined;
|
10919
11058
|
apiKey?: string | undefined;
|
10920
11059
|
tier?: "basic" | "regular" | "premium" | undefined;
|
11060
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
10921
11061
|
} | undefined;
|
10922
11062
|
vonageCredentials?: {
|
10923
11063
|
apiKey: string;
|
@@ -10934,15 +11074,16 @@ export declare const channelFacebookFeedContract: {
|
|
10934
11074
|
additionalCredentials?: any;
|
10935
11075
|
senderId?: string | undefined;
|
10936
11076
|
whatsapp?: {
|
10937
|
-
|
10938
|
-
wabaExternalId
|
10939
|
-
phoneNumberId
|
10940
|
-
|
10941
|
-
clientId?: string | undefined;
|
10942
|
-
channelId?: string | undefined;
|
11077
|
+
wabaBusinessId?: string | null | undefined;
|
11078
|
+
wabaExternalId?: string | null | undefined;
|
11079
|
+
phoneNumberId?: string | null | undefined;
|
11080
|
+
email?: string | null | undefined;
|
11081
|
+
clientId?: string | null | undefined;
|
11082
|
+
channelId?: string | null | undefined;
|
10943
11083
|
status?: "active" | "pending" | undefined;
|
10944
11084
|
apiKey?: string | undefined;
|
10945
11085
|
tier?: "basic" | "regular" | "premium" | undefined;
|
11086
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
10946
11087
|
} | undefined;
|
10947
11088
|
vonageCredentials?: {
|
10948
11089
|
apiKey: string;
|
@@ -10966,15 +11107,16 @@ export declare const channelFacebookFeedContract: {
|
|
10966
11107
|
additionalCredentials?: any;
|
10967
11108
|
senderId?: string | undefined;
|
10968
11109
|
whatsapp?: {
|
10969
|
-
|
10970
|
-
wabaExternalId
|
10971
|
-
phoneNumberId
|
10972
|
-
|
10973
|
-
clientId?: string | undefined;
|
10974
|
-
channelId?: string | undefined;
|
11110
|
+
wabaBusinessId?: string | null | undefined;
|
11111
|
+
wabaExternalId?: string | null | undefined;
|
11112
|
+
phoneNumberId?: string | null | undefined;
|
11113
|
+
email?: string | null | undefined;
|
11114
|
+
clientId?: string | null | undefined;
|
11115
|
+
channelId?: string | null | undefined;
|
10975
11116
|
status?: "active" | "pending" | undefined;
|
10976
11117
|
apiKey?: string | undefined;
|
10977
11118
|
tier?: "basic" | "regular" | "premium" | undefined;
|
11119
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
10978
11120
|
} | undefined;
|
10979
11121
|
vonageCredentials?: {
|
10980
11122
|
apiKey: string;
|
@@ -10998,15 +11140,16 @@ export declare const channelFacebookFeedContract: {
|
|
10998
11140
|
additionalCredentials?: any;
|
10999
11141
|
senderId?: string | undefined;
|
11000
11142
|
whatsapp?: {
|
11001
|
-
|
11002
|
-
wabaExternalId
|
11003
|
-
phoneNumberId
|
11004
|
-
|
11005
|
-
clientId?: string | undefined;
|
11006
|
-
channelId?: string | undefined;
|
11143
|
+
wabaBusinessId?: string | null | undefined;
|
11144
|
+
wabaExternalId?: string | null | undefined;
|
11145
|
+
phoneNumberId?: string | null | undefined;
|
11146
|
+
email?: string | null | undefined;
|
11147
|
+
clientId?: string | null | undefined;
|
11148
|
+
channelId?: string | null | undefined;
|
11007
11149
|
status?: "active" | "pending" | undefined;
|
11008
11150
|
apiKey?: string | undefined;
|
11009
11151
|
tier?: "basic" | "regular" | "premium" | undefined;
|
11152
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
11010
11153
|
} | undefined;
|
11011
11154
|
vonageCredentials?: {
|
11012
11155
|
apiKey: string;
|
@@ -11040,35 +11183,38 @@ export declare const channelFacebookFeedContract: {
|
|
11040
11183
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
11041
11184
|
senderId: z.ZodOptional<z.ZodString>;
|
11042
11185
|
whatsapp: z.ZodOptional<z.ZodObject<{
|
11043
|
-
wabaBusinessId: z.ZodOptional<z.ZodString
|
11044
|
-
wabaExternalId: z.ZodString
|
11045
|
-
phoneNumberId: z.ZodString
|
11046
|
-
email: z.ZodString
|
11047
|
-
clientId: z.ZodOptional<z.ZodString
|
11048
|
-
channelId: z.ZodOptional<z.ZodString
|
11186
|
+
wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
11187
|
+
wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
11188
|
+
phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
11189
|
+
email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
11190
|
+
clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
11191
|
+
channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
11049
11192
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
11050
11193
|
apiKey: z.ZodOptional<z.ZodString>;
|
11051
11194
|
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
11195
|
+
integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
|
11052
11196
|
}, "strip", z.ZodTypeAny, {
|
11053
|
-
|
11054
|
-
wabaExternalId
|
11055
|
-
phoneNumberId
|
11056
|
-
|
11057
|
-
clientId?: string | undefined;
|
11058
|
-
channelId?: string | undefined;
|
11197
|
+
wabaBusinessId?: string | null | undefined;
|
11198
|
+
wabaExternalId?: string | null | undefined;
|
11199
|
+
phoneNumberId?: string | null | undefined;
|
11200
|
+
email?: string | null | undefined;
|
11201
|
+
clientId?: string | null | undefined;
|
11202
|
+
channelId?: string | null | undefined;
|
11059
11203
|
status?: "active" | "pending" | undefined;
|
11060
11204
|
apiKey?: string | undefined;
|
11061
11205
|
tier?: "basic" | "regular" | "premium" | undefined;
|
11206
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
11062
11207
|
}, {
|
11063
|
-
|
11064
|
-
wabaExternalId
|
11065
|
-
phoneNumberId
|
11066
|
-
|
11067
|
-
clientId?: string | undefined;
|
11068
|
-
channelId?: string | undefined;
|
11208
|
+
wabaBusinessId?: string | null | undefined;
|
11209
|
+
wabaExternalId?: string | null | undefined;
|
11210
|
+
phoneNumberId?: string | null | undefined;
|
11211
|
+
email?: string | null | undefined;
|
11212
|
+
clientId?: string | null | undefined;
|
11213
|
+
channelId?: string | null | undefined;
|
11069
11214
|
status?: "active" | "pending" | undefined;
|
11070
11215
|
apiKey?: string | undefined;
|
11071
11216
|
tier?: "basic" | "regular" | "premium" | undefined;
|
11217
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
11072
11218
|
}>>;
|
11073
11219
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
11074
11220
|
mobileNumber: z.ZodString;
|
@@ -11093,15 +11239,16 @@ export declare const channelFacebookFeedContract: {
|
|
11093
11239
|
additionalCredentials?: any;
|
11094
11240
|
senderId?: string | undefined;
|
11095
11241
|
whatsapp?: {
|
11096
|
-
|
11097
|
-
wabaExternalId
|
11098
|
-
phoneNumberId
|
11099
|
-
|
11100
|
-
clientId?: string | undefined;
|
11101
|
-
channelId?: string | undefined;
|
11242
|
+
wabaBusinessId?: string | null | undefined;
|
11243
|
+
wabaExternalId?: string | null | undefined;
|
11244
|
+
phoneNumberId?: string | null | undefined;
|
11245
|
+
email?: string | null | undefined;
|
11246
|
+
clientId?: string | null | undefined;
|
11247
|
+
channelId?: string | null | undefined;
|
11102
11248
|
status?: "active" | "pending" | undefined;
|
11103
11249
|
apiKey?: string | undefined;
|
11104
11250
|
tier?: "basic" | "regular" | "premium" | undefined;
|
11251
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
11105
11252
|
} | undefined;
|
11106
11253
|
vonageCredentials?: {
|
11107
11254
|
apiKey: string;
|
@@ -11118,15 +11265,16 @@ export declare const channelFacebookFeedContract: {
|
|
11118
11265
|
additionalCredentials?: any;
|
11119
11266
|
senderId?: string | undefined;
|
11120
11267
|
whatsapp?: {
|
11121
|
-
|
11122
|
-
wabaExternalId
|
11123
|
-
phoneNumberId
|
11124
|
-
|
11125
|
-
clientId?: string | undefined;
|
11126
|
-
channelId?: string | undefined;
|
11268
|
+
wabaBusinessId?: string | null | undefined;
|
11269
|
+
wabaExternalId?: string | null | undefined;
|
11270
|
+
phoneNumberId?: string | null | undefined;
|
11271
|
+
email?: string | null | undefined;
|
11272
|
+
clientId?: string | null | undefined;
|
11273
|
+
channelId?: string | null | undefined;
|
11127
11274
|
status?: "active" | "pending" | undefined;
|
11128
11275
|
apiKey?: string | undefined;
|
11129
11276
|
tier?: "basic" | "regular" | "premium" | undefined;
|
11277
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
11130
11278
|
} | undefined;
|
11131
11279
|
vonageCredentials?: {
|
11132
11280
|
apiKey: string;
|
@@ -11377,15 +11525,16 @@ export declare const channelFacebookFeedContract: {
|
|
11377
11525
|
additionalCredentials?: any;
|
11378
11526
|
senderId?: string | undefined;
|
11379
11527
|
whatsapp?: {
|
11380
|
-
|
11381
|
-
wabaExternalId
|
11382
|
-
phoneNumberId
|
11383
|
-
|
11384
|
-
clientId?: string | undefined;
|
11385
|
-
channelId?: string | undefined;
|
11528
|
+
wabaBusinessId?: string | null | undefined;
|
11529
|
+
wabaExternalId?: string | null | undefined;
|
11530
|
+
phoneNumberId?: string | null | undefined;
|
11531
|
+
email?: string | null | undefined;
|
11532
|
+
clientId?: string | null | undefined;
|
11533
|
+
channelId?: string | null | undefined;
|
11386
11534
|
status?: "active" | "pending" | undefined;
|
11387
11535
|
apiKey?: string | undefined;
|
11388
11536
|
tier?: "basic" | "regular" | "premium" | undefined;
|
11537
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
11389
11538
|
} | undefined;
|
11390
11539
|
vonageCredentials?: {
|
11391
11540
|
apiKey: string;
|
@@ -11467,15 +11616,16 @@ export declare const channelFacebookFeedContract: {
|
|
11467
11616
|
additionalCredentials?: any;
|
11468
11617
|
senderId?: string | undefined;
|
11469
11618
|
whatsapp?: {
|
11470
|
-
|
11471
|
-
wabaExternalId
|
11472
|
-
phoneNumberId
|
11473
|
-
|
11474
|
-
clientId?: string | undefined;
|
11475
|
-
channelId?: string | undefined;
|
11619
|
+
wabaBusinessId?: string | null | undefined;
|
11620
|
+
wabaExternalId?: string | null | undefined;
|
11621
|
+
phoneNumberId?: string | null | undefined;
|
11622
|
+
email?: string | null | undefined;
|
11623
|
+
clientId?: string | null | undefined;
|
11624
|
+
channelId?: string | null | undefined;
|
11476
11625
|
status?: "active" | "pending" | undefined;
|
11477
11626
|
apiKey?: string | undefined;
|
11478
11627
|
tier?: "basic" | "regular" | "premium" | undefined;
|
11628
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
11479
11629
|
} | undefined;
|
11480
11630
|
vonageCredentials?: {
|
11481
11631
|
apiKey: string;
|
@@ -11559,15 +11709,16 @@ export declare const channelFacebookFeedContract: {
|
|
11559
11709
|
additionalCredentials?: any;
|
11560
11710
|
senderId?: string | undefined;
|
11561
11711
|
whatsapp?: {
|
11562
|
-
|
11563
|
-
wabaExternalId
|
11564
|
-
phoneNumberId
|
11565
|
-
|
11566
|
-
clientId?: string | undefined;
|
11567
|
-
channelId?: string | undefined;
|
11712
|
+
wabaBusinessId?: string | null | undefined;
|
11713
|
+
wabaExternalId?: string | null | undefined;
|
11714
|
+
phoneNumberId?: string | null | undefined;
|
11715
|
+
email?: string | null | undefined;
|
11716
|
+
clientId?: string | null | undefined;
|
11717
|
+
channelId?: string | null | undefined;
|
11568
11718
|
status?: "active" | "pending" | undefined;
|
11569
11719
|
apiKey?: string | undefined;
|
11570
11720
|
tier?: "basic" | "regular" | "premium" | undefined;
|
11721
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
11571
11722
|
} | undefined;
|
11572
11723
|
vonageCredentials?: {
|
11573
11724
|
apiKey: string;
|
@@ -11652,15 +11803,16 @@ export declare const channelFacebookFeedContract: {
|
|
11652
11803
|
additionalCredentials?: any;
|
11653
11804
|
senderId?: string | undefined;
|
11654
11805
|
whatsapp?: {
|
11655
|
-
|
11656
|
-
wabaExternalId
|
11657
|
-
phoneNumberId
|
11658
|
-
|
11659
|
-
clientId?: string | undefined;
|
11660
|
-
channelId?: string | undefined;
|
11806
|
+
wabaBusinessId?: string | null | undefined;
|
11807
|
+
wabaExternalId?: string | null | undefined;
|
11808
|
+
phoneNumberId?: string | null | undefined;
|
11809
|
+
email?: string | null | undefined;
|
11810
|
+
clientId?: string | null | undefined;
|
11811
|
+
channelId?: string | null | undefined;
|
11661
11812
|
status?: "active" | "pending" | undefined;
|
11662
11813
|
apiKey?: string | undefined;
|
11663
11814
|
tier?: "basic" | "regular" | "premium" | undefined;
|
11815
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
11664
11816
|
} | undefined;
|
11665
11817
|
vonageCredentials?: {
|
11666
11818
|
apiKey: string;
|
@@ -11775,35 +11927,38 @@ export declare const channelBotContract: {
|
|
11775
11927
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
11776
11928
|
senderId: z.ZodOptional<z.ZodString>;
|
11777
11929
|
whatsapp: z.ZodOptional<z.ZodObject<{
|
11778
|
-
wabaBusinessId: z.ZodOptional<z.ZodString
|
11779
|
-
wabaExternalId: z.ZodString
|
11780
|
-
phoneNumberId: z.ZodString
|
11781
|
-
email: z.ZodString
|
11782
|
-
clientId: z.ZodOptional<z.ZodString
|
11783
|
-
channelId: z.ZodOptional<z.ZodString
|
11930
|
+
wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
11931
|
+
wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
11932
|
+
phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
11933
|
+
email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
11934
|
+
clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
11935
|
+
channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
11784
11936
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
11785
11937
|
apiKey: z.ZodOptional<z.ZodString>;
|
11786
11938
|
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
11939
|
+
integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
|
11787
11940
|
}, "strip", z.ZodTypeAny, {
|
11788
|
-
|
11789
|
-
wabaExternalId
|
11790
|
-
phoneNumberId
|
11791
|
-
|
11792
|
-
clientId?: string | undefined;
|
11793
|
-
channelId?: string | undefined;
|
11941
|
+
wabaBusinessId?: string | null | undefined;
|
11942
|
+
wabaExternalId?: string | null | undefined;
|
11943
|
+
phoneNumberId?: string | null | undefined;
|
11944
|
+
email?: string | null | undefined;
|
11945
|
+
clientId?: string | null | undefined;
|
11946
|
+
channelId?: string | null | undefined;
|
11794
11947
|
status?: "active" | "pending" | undefined;
|
11795
11948
|
apiKey?: string | undefined;
|
11796
11949
|
tier?: "basic" | "regular" | "premium" | undefined;
|
11950
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
11797
11951
|
}, {
|
11798
|
-
|
11799
|
-
wabaExternalId
|
11800
|
-
phoneNumberId
|
11801
|
-
|
11802
|
-
clientId?: string | undefined;
|
11803
|
-
channelId?: string | undefined;
|
11952
|
+
wabaBusinessId?: string | null | undefined;
|
11953
|
+
wabaExternalId?: string | null | undefined;
|
11954
|
+
phoneNumberId?: string | null | undefined;
|
11955
|
+
email?: string | null | undefined;
|
11956
|
+
clientId?: string | null | undefined;
|
11957
|
+
channelId?: string | null | undefined;
|
11804
11958
|
status?: "active" | "pending" | undefined;
|
11805
11959
|
apiKey?: string | undefined;
|
11806
11960
|
tier?: "basic" | "regular" | "premium" | undefined;
|
11961
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
11807
11962
|
}>>;
|
11808
11963
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
11809
11964
|
mobileNumber: z.ZodString;
|
@@ -11828,15 +11983,16 @@ export declare const channelBotContract: {
|
|
11828
11983
|
additionalCredentials?: any;
|
11829
11984
|
senderId?: string | undefined;
|
11830
11985
|
whatsapp?: {
|
11831
|
-
|
11832
|
-
wabaExternalId
|
11833
|
-
phoneNumberId
|
11834
|
-
|
11835
|
-
clientId?: string | undefined;
|
11836
|
-
channelId?: string | undefined;
|
11986
|
+
wabaBusinessId?: string | null | undefined;
|
11987
|
+
wabaExternalId?: string | null | undefined;
|
11988
|
+
phoneNumberId?: string | null | undefined;
|
11989
|
+
email?: string | null | undefined;
|
11990
|
+
clientId?: string | null | undefined;
|
11991
|
+
channelId?: string | null | undefined;
|
11837
11992
|
status?: "active" | "pending" | undefined;
|
11838
11993
|
apiKey?: string | undefined;
|
11839
11994
|
tier?: "basic" | "regular" | "premium" | undefined;
|
11995
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
11840
11996
|
} | undefined;
|
11841
11997
|
vonageCredentials?: {
|
11842
11998
|
apiKey: string;
|
@@ -11853,15 +12009,16 @@ export declare const channelBotContract: {
|
|
11853
12009
|
additionalCredentials?: any;
|
11854
12010
|
senderId?: string | undefined;
|
11855
12011
|
whatsapp?: {
|
11856
|
-
|
11857
|
-
wabaExternalId
|
11858
|
-
phoneNumberId
|
11859
|
-
|
11860
|
-
clientId?: string | undefined;
|
11861
|
-
channelId?: string | undefined;
|
12012
|
+
wabaBusinessId?: string | null | undefined;
|
12013
|
+
wabaExternalId?: string | null | undefined;
|
12014
|
+
phoneNumberId?: string | null | undefined;
|
12015
|
+
email?: string | null | undefined;
|
12016
|
+
clientId?: string | null | undefined;
|
12017
|
+
channelId?: string | null | undefined;
|
11862
12018
|
status?: "active" | "pending" | undefined;
|
11863
12019
|
apiKey?: string | undefined;
|
11864
12020
|
tier?: "basic" | "regular" | "premium" | undefined;
|
12021
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
11865
12022
|
} | undefined;
|
11866
12023
|
vonageCredentials?: {
|
11867
12024
|
apiKey: string;
|
@@ -12112,15 +12269,16 @@ export declare const channelBotContract: {
|
|
12112
12269
|
additionalCredentials?: any;
|
12113
12270
|
senderId?: string | undefined;
|
12114
12271
|
whatsapp?: {
|
12115
|
-
|
12116
|
-
wabaExternalId
|
12117
|
-
phoneNumberId
|
12118
|
-
|
12119
|
-
clientId?: string | undefined;
|
12120
|
-
channelId?: string | undefined;
|
12272
|
+
wabaBusinessId?: string | null | undefined;
|
12273
|
+
wabaExternalId?: string | null | undefined;
|
12274
|
+
phoneNumberId?: string | null | undefined;
|
12275
|
+
email?: string | null | undefined;
|
12276
|
+
clientId?: string | null | undefined;
|
12277
|
+
channelId?: string | null | undefined;
|
12121
12278
|
status?: "active" | "pending" | undefined;
|
12122
12279
|
apiKey?: string | undefined;
|
12123
12280
|
tier?: "basic" | "regular" | "premium" | undefined;
|
12281
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
12124
12282
|
} | undefined;
|
12125
12283
|
vonageCredentials?: {
|
12126
12284
|
apiKey: string;
|
@@ -12202,15 +12360,16 @@ export declare const channelBotContract: {
|
|
12202
12360
|
additionalCredentials?: any;
|
12203
12361
|
senderId?: string | undefined;
|
12204
12362
|
whatsapp?: {
|
12205
|
-
|
12206
|
-
wabaExternalId
|
12207
|
-
phoneNumberId
|
12208
|
-
|
12209
|
-
clientId?: string | undefined;
|
12210
|
-
channelId?: string | undefined;
|
12363
|
+
wabaBusinessId?: string | null | undefined;
|
12364
|
+
wabaExternalId?: string | null | undefined;
|
12365
|
+
phoneNumberId?: string | null | undefined;
|
12366
|
+
email?: string | null | undefined;
|
12367
|
+
clientId?: string | null | undefined;
|
12368
|
+
channelId?: string | null | undefined;
|
12211
12369
|
status?: "active" | "pending" | undefined;
|
12212
12370
|
apiKey?: string | undefined;
|
12213
12371
|
tier?: "basic" | "regular" | "premium" | undefined;
|
12372
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
12214
12373
|
} | undefined;
|
12215
12374
|
vonageCredentials?: {
|
12216
12375
|
apiKey: string;
|
@@ -12294,15 +12453,16 @@ export declare const channelBotContract: {
|
|
12294
12453
|
additionalCredentials?: any;
|
12295
12454
|
senderId?: string | undefined;
|
12296
12455
|
whatsapp?: {
|
12297
|
-
|
12298
|
-
wabaExternalId
|
12299
|
-
phoneNumberId
|
12300
|
-
|
12301
|
-
clientId?: string | undefined;
|
12302
|
-
channelId?: string | undefined;
|
12456
|
+
wabaBusinessId?: string | null | undefined;
|
12457
|
+
wabaExternalId?: string | null | undefined;
|
12458
|
+
phoneNumberId?: string | null | undefined;
|
12459
|
+
email?: string | null | undefined;
|
12460
|
+
clientId?: string | null | undefined;
|
12461
|
+
channelId?: string | null | undefined;
|
12303
12462
|
status?: "active" | "pending" | undefined;
|
12304
12463
|
apiKey?: string | undefined;
|
12305
12464
|
tier?: "basic" | "regular" | "premium" | undefined;
|
12465
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
12306
12466
|
} | undefined;
|
12307
12467
|
vonageCredentials?: {
|
12308
12468
|
apiKey: string;
|
@@ -12387,15 +12547,16 @@ export declare const channelBotContract: {
|
|
12387
12547
|
additionalCredentials?: any;
|
12388
12548
|
senderId?: string | undefined;
|
12389
12549
|
whatsapp?: {
|
12390
|
-
|
12391
|
-
wabaExternalId
|
12392
|
-
phoneNumberId
|
12393
|
-
|
12394
|
-
clientId?: string | undefined;
|
12395
|
-
channelId?: string | undefined;
|
12550
|
+
wabaBusinessId?: string | null | undefined;
|
12551
|
+
wabaExternalId?: string | null | undefined;
|
12552
|
+
phoneNumberId?: string | null | undefined;
|
12553
|
+
email?: string | null | undefined;
|
12554
|
+
clientId?: string | null | undefined;
|
12555
|
+
channelId?: string | null | undefined;
|
12396
12556
|
status?: "active" | "pending" | undefined;
|
12397
12557
|
apiKey?: string | undefined;
|
12398
12558
|
tier?: "basic" | "regular" | "premium" | undefined;
|
12559
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
12399
12560
|
} | undefined;
|
12400
12561
|
vonageCredentials?: {
|
12401
12562
|
apiKey: string;
|
@@ -12512,35 +12673,38 @@ export declare const channelBotContract: {
|
|
12512
12673
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
12513
12674
|
senderId: z.ZodOptional<z.ZodString>;
|
12514
12675
|
whatsapp: z.ZodOptional<z.ZodObject<{
|
12515
|
-
wabaBusinessId: z.ZodOptional<z.ZodString
|
12516
|
-
wabaExternalId: z.ZodString
|
12517
|
-
phoneNumberId: z.ZodString
|
12518
|
-
email: z.ZodString
|
12519
|
-
clientId: z.ZodOptional<z.ZodString
|
12520
|
-
channelId: z.ZodOptional<z.ZodString
|
12676
|
+
wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
12677
|
+
wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
12678
|
+
phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
12679
|
+
email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
12680
|
+
clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
12681
|
+
channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
12521
12682
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
12522
12683
|
apiKey: z.ZodOptional<z.ZodString>;
|
12523
12684
|
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
12685
|
+
integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
|
12524
12686
|
}, "strip", z.ZodTypeAny, {
|
12525
|
-
|
12526
|
-
wabaExternalId
|
12527
|
-
phoneNumberId
|
12528
|
-
|
12529
|
-
clientId?: string | undefined;
|
12530
|
-
channelId?: string | undefined;
|
12687
|
+
wabaBusinessId?: string | null | undefined;
|
12688
|
+
wabaExternalId?: string | null | undefined;
|
12689
|
+
phoneNumberId?: string | null | undefined;
|
12690
|
+
email?: string | null | undefined;
|
12691
|
+
clientId?: string | null | undefined;
|
12692
|
+
channelId?: string | null | undefined;
|
12531
12693
|
status?: "active" | "pending" | undefined;
|
12532
12694
|
apiKey?: string | undefined;
|
12533
12695
|
tier?: "basic" | "regular" | "premium" | undefined;
|
12696
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
12534
12697
|
}, {
|
12535
|
-
|
12536
|
-
wabaExternalId
|
12537
|
-
phoneNumberId
|
12538
|
-
|
12539
|
-
clientId?: string | undefined;
|
12540
|
-
channelId?: string | undefined;
|
12698
|
+
wabaBusinessId?: string | null | undefined;
|
12699
|
+
wabaExternalId?: string | null | undefined;
|
12700
|
+
phoneNumberId?: string | null | undefined;
|
12701
|
+
email?: string | null | undefined;
|
12702
|
+
clientId?: string | null | undefined;
|
12703
|
+
channelId?: string | null | undefined;
|
12541
12704
|
status?: "active" | "pending" | undefined;
|
12542
12705
|
apiKey?: string | undefined;
|
12543
12706
|
tier?: "basic" | "regular" | "premium" | undefined;
|
12707
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
12544
12708
|
}>>;
|
12545
12709
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
12546
12710
|
mobileNumber: z.ZodString;
|
@@ -12565,15 +12729,16 @@ export declare const channelBotContract: {
|
|
12565
12729
|
additionalCredentials?: any;
|
12566
12730
|
senderId?: string | undefined;
|
12567
12731
|
whatsapp?: {
|
12568
|
-
|
12569
|
-
wabaExternalId
|
12570
|
-
phoneNumberId
|
12571
|
-
|
12572
|
-
clientId?: string | undefined;
|
12573
|
-
channelId?: string | undefined;
|
12732
|
+
wabaBusinessId?: string | null | undefined;
|
12733
|
+
wabaExternalId?: string | null | undefined;
|
12734
|
+
phoneNumberId?: string | null | undefined;
|
12735
|
+
email?: string | null | undefined;
|
12736
|
+
clientId?: string | null | undefined;
|
12737
|
+
channelId?: string | null | undefined;
|
12574
12738
|
status?: "active" | "pending" | undefined;
|
12575
12739
|
apiKey?: string | undefined;
|
12576
12740
|
tier?: "basic" | "regular" | "premium" | undefined;
|
12741
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
12577
12742
|
} | undefined;
|
12578
12743
|
vonageCredentials?: {
|
12579
12744
|
apiKey: string;
|
@@ -12590,15 +12755,16 @@ export declare const channelBotContract: {
|
|
12590
12755
|
additionalCredentials?: any;
|
12591
12756
|
senderId?: string | undefined;
|
12592
12757
|
whatsapp?: {
|
12593
|
-
|
12594
|
-
wabaExternalId
|
12595
|
-
phoneNumberId
|
12596
|
-
|
12597
|
-
clientId?: string | undefined;
|
12598
|
-
channelId?: string | undefined;
|
12758
|
+
wabaBusinessId?: string | null | undefined;
|
12759
|
+
wabaExternalId?: string | null | undefined;
|
12760
|
+
phoneNumberId?: string | null | undefined;
|
12761
|
+
email?: string | null | undefined;
|
12762
|
+
clientId?: string | null | undefined;
|
12763
|
+
channelId?: string | null | undefined;
|
12599
12764
|
status?: "active" | "pending" | undefined;
|
12600
12765
|
apiKey?: string | undefined;
|
12601
12766
|
tier?: "basic" | "regular" | "premium" | undefined;
|
12767
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
12602
12768
|
} | undefined;
|
12603
12769
|
vonageCredentials?: {
|
12604
12770
|
apiKey: string;
|
@@ -12849,15 +13015,16 @@ export declare const channelBotContract: {
|
|
12849
13015
|
additionalCredentials?: any;
|
12850
13016
|
senderId?: string | undefined;
|
12851
13017
|
whatsapp?: {
|
12852
|
-
|
12853
|
-
wabaExternalId
|
12854
|
-
phoneNumberId
|
12855
|
-
|
12856
|
-
clientId?: string | undefined;
|
12857
|
-
channelId?: string | undefined;
|
13018
|
+
wabaBusinessId?: string | null | undefined;
|
13019
|
+
wabaExternalId?: string | null | undefined;
|
13020
|
+
phoneNumberId?: string | null | undefined;
|
13021
|
+
email?: string | null | undefined;
|
13022
|
+
clientId?: string | null | undefined;
|
13023
|
+
channelId?: string | null | undefined;
|
12858
13024
|
status?: "active" | "pending" | undefined;
|
12859
13025
|
apiKey?: string | undefined;
|
12860
13026
|
tier?: "basic" | "regular" | "premium" | undefined;
|
13027
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
12861
13028
|
} | undefined;
|
12862
13029
|
vonageCredentials?: {
|
12863
13030
|
apiKey: string;
|
@@ -12939,15 +13106,16 @@ export declare const channelBotContract: {
|
|
12939
13106
|
additionalCredentials?: any;
|
12940
13107
|
senderId?: string | undefined;
|
12941
13108
|
whatsapp?: {
|
12942
|
-
|
12943
|
-
wabaExternalId
|
12944
|
-
phoneNumberId
|
12945
|
-
|
12946
|
-
clientId?: string | undefined;
|
12947
|
-
channelId?: string | undefined;
|
13109
|
+
wabaBusinessId?: string | null | undefined;
|
13110
|
+
wabaExternalId?: string | null | undefined;
|
13111
|
+
phoneNumberId?: string | null | undefined;
|
13112
|
+
email?: string | null | undefined;
|
13113
|
+
clientId?: string | null | undefined;
|
13114
|
+
channelId?: string | null | undefined;
|
12948
13115
|
status?: "active" | "pending" | undefined;
|
12949
13116
|
apiKey?: string | undefined;
|
12950
13117
|
tier?: "basic" | "regular" | "premium" | undefined;
|
13118
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
12951
13119
|
} | undefined;
|
12952
13120
|
vonageCredentials?: {
|
12953
13121
|
apiKey: string;
|
@@ -13031,15 +13199,16 @@ export declare const channelBotContract: {
|
|
13031
13199
|
additionalCredentials?: any;
|
13032
13200
|
senderId?: string | undefined;
|
13033
13201
|
whatsapp?: {
|
13034
|
-
|
13035
|
-
wabaExternalId
|
13036
|
-
phoneNumberId
|
13037
|
-
|
13038
|
-
clientId?: string | undefined;
|
13039
|
-
channelId?: string | undefined;
|
13202
|
+
wabaBusinessId?: string | null | undefined;
|
13203
|
+
wabaExternalId?: string | null | undefined;
|
13204
|
+
phoneNumberId?: string | null | undefined;
|
13205
|
+
email?: string | null | undefined;
|
13206
|
+
clientId?: string | null | undefined;
|
13207
|
+
channelId?: string | null | undefined;
|
13040
13208
|
status?: "active" | "pending" | undefined;
|
13041
13209
|
apiKey?: string | undefined;
|
13042
13210
|
tier?: "basic" | "regular" | "premium" | undefined;
|
13211
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
13043
13212
|
} | undefined;
|
13044
13213
|
vonageCredentials?: {
|
13045
13214
|
apiKey: string;
|
@@ -13124,15 +13293,16 @@ export declare const channelBotContract: {
|
|
13124
13293
|
additionalCredentials?: any;
|
13125
13294
|
senderId?: string | undefined;
|
13126
13295
|
whatsapp?: {
|
13127
|
-
|
13128
|
-
wabaExternalId
|
13129
|
-
phoneNumberId
|
13130
|
-
|
13131
|
-
clientId?: string | undefined;
|
13132
|
-
channelId?: string | undefined;
|
13296
|
+
wabaBusinessId?: string | null | undefined;
|
13297
|
+
wabaExternalId?: string | null | undefined;
|
13298
|
+
phoneNumberId?: string | null | undefined;
|
13299
|
+
email?: string | null | undefined;
|
13300
|
+
clientId?: string | null | undefined;
|
13301
|
+
channelId?: string | null | undefined;
|
13133
13302
|
status?: "active" | "pending" | undefined;
|
13134
13303
|
apiKey?: string | undefined;
|
13135
13304
|
tier?: "basic" | "regular" | "premium" | undefined;
|
13305
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
13136
13306
|
} | undefined;
|
13137
13307
|
vonageCredentials?: {
|
13138
13308
|
apiKey: string;
|
@@ -13287,35 +13457,38 @@ export declare const channelSMSContract: {
|
|
13287
13457
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
13288
13458
|
senderId: z.ZodOptional<z.ZodString>;
|
13289
13459
|
whatsapp: z.ZodOptional<z.ZodObject<{
|
13290
|
-
wabaBusinessId: z.ZodOptional<z.ZodString
|
13291
|
-
wabaExternalId: z.ZodString
|
13292
|
-
phoneNumberId: z.ZodString
|
13293
|
-
email: z.ZodString
|
13294
|
-
clientId: z.ZodOptional<z.ZodString
|
13295
|
-
channelId: z.ZodOptional<z.ZodString
|
13460
|
+
wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
13461
|
+
wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
13462
|
+
phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
13463
|
+
email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
13464
|
+
clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
13465
|
+
channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
13296
13466
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
13297
13467
|
apiKey: z.ZodOptional<z.ZodString>;
|
13298
13468
|
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
13469
|
+
integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
|
13299
13470
|
}, "strip", z.ZodTypeAny, {
|
13300
|
-
|
13301
|
-
wabaExternalId
|
13302
|
-
phoneNumberId
|
13303
|
-
|
13304
|
-
clientId?: string | undefined;
|
13305
|
-
channelId?: string | undefined;
|
13471
|
+
wabaBusinessId?: string | null | undefined;
|
13472
|
+
wabaExternalId?: string | null | undefined;
|
13473
|
+
phoneNumberId?: string | null | undefined;
|
13474
|
+
email?: string | null | undefined;
|
13475
|
+
clientId?: string | null | undefined;
|
13476
|
+
channelId?: string | null | undefined;
|
13306
13477
|
status?: "active" | "pending" | undefined;
|
13307
13478
|
apiKey?: string | undefined;
|
13308
13479
|
tier?: "basic" | "regular" | "premium" | undefined;
|
13480
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
13309
13481
|
}, {
|
13310
|
-
|
13311
|
-
wabaExternalId
|
13312
|
-
phoneNumberId
|
13313
|
-
|
13314
|
-
clientId?: string | undefined;
|
13315
|
-
channelId?: string | undefined;
|
13482
|
+
wabaBusinessId?: string | null | undefined;
|
13483
|
+
wabaExternalId?: string | null | undefined;
|
13484
|
+
phoneNumberId?: string | null | undefined;
|
13485
|
+
email?: string | null | undefined;
|
13486
|
+
clientId?: string | null | undefined;
|
13487
|
+
channelId?: string | null | undefined;
|
13316
13488
|
status?: "active" | "pending" | undefined;
|
13317
13489
|
apiKey?: string | undefined;
|
13318
13490
|
tier?: "basic" | "regular" | "premium" | undefined;
|
13491
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
13319
13492
|
}>>;
|
13320
13493
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
13321
13494
|
mobileNumber: z.ZodString;
|
@@ -13340,15 +13513,16 @@ export declare const channelSMSContract: {
|
|
13340
13513
|
additionalCredentials?: any;
|
13341
13514
|
senderId?: string | undefined;
|
13342
13515
|
whatsapp?: {
|
13343
|
-
|
13344
|
-
wabaExternalId
|
13345
|
-
phoneNumberId
|
13346
|
-
|
13347
|
-
clientId?: string | undefined;
|
13348
|
-
channelId?: string | undefined;
|
13516
|
+
wabaBusinessId?: string | null | undefined;
|
13517
|
+
wabaExternalId?: string | null | undefined;
|
13518
|
+
phoneNumberId?: string | null | undefined;
|
13519
|
+
email?: string | null | undefined;
|
13520
|
+
clientId?: string | null | undefined;
|
13521
|
+
channelId?: string | null | undefined;
|
13349
13522
|
status?: "active" | "pending" | undefined;
|
13350
13523
|
apiKey?: string | undefined;
|
13351
13524
|
tier?: "basic" | "regular" | "premium" | undefined;
|
13525
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
13352
13526
|
} | undefined;
|
13353
13527
|
vonageCredentials?: {
|
13354
13528
|
apiKey: string;
|
@@ -13365,15 +13539,16 @@ export declare const channelSMSContract: {
|
|
13365
13539
|
additionalCredentials?: any;
|
13366
13540
|
senderId?: string | undefined;
|
13367
13541
|
whatsapp?: {
|
13368
|
-
|
13369
|
-
wabaExternalId
|
13370
|
-
phoneNumberId
|
13371
|
-
|
13372
|
-
clientId?: string | undefined;
|
13373
|
-
channelId?: string | undefined;
|
13542
|
+
wabaBusinessId?: string | null | undefined;
|
13543
|
+
wabaExternalId?: string | null | undefined;
|
13544
|
+
phoneNumberId?: string | null | undefined;
|
13545
|
+
email?: string | null | undefined;
|
13546
|
+
clientId?: string | null | undefined;
|
13547
|
+
channelId?: string | null | undefined;
|
13374
13548
|
status?: "active" | "pending" | undefined;
|
13375
13549
|
apiKey?: string | undefined;
|
13376
13550
|
tier?: "basic" | "regular" | "premium" | undefined;
|
13551
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
13377
13552
|
} | undefined;
|
13378
13553
|
vonageCredentials?: {
|
13379
13554
|
apiKey: string;
|
@@ -13624,15 +13799,16 @@ export declare const channelSMSContract: {
|
|
13624
13799
|
additionalCredentials?: any;
|
13625
13800
|
senderId?: string | undefined;
|
13626
13801
|
whatsapp?: {
|
13627
|
-
|
13628
|
-
wabaExternalId
|
13629
|
-
phoneNumberId
|
13630
|
-
|
13631
|
-
clientId?: string | undefined;
|
13632
|
-
channelId?: string | undefined;
|
13802
|
+
wabaBusinessId?: string | null | undefined;
|
13803
|
+
wabaExternalId?: string | null | undefined;
|
13804
|
+
phoneNumberId?: string | null | undefined;
|
13805
|
+
email?: string | null | undefined;
|
13806
|
+
clientId?: string | null | undefined;
|
13807
|
+
channelId?: string | null | undefined;
|
13633
13808
|
status?: "active" | "pending" | undefined;
|
13634
13809
|
apiKey?: string | undefined;
|
13635
13810
|
tier?: "basic" | "regular" | "premium" | undefined;
|
13811
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
13636
13812
|
} | undefined;
|
13637
13813
|
vonageCredentials?: {
|
13638
13814
|
apiKey: string;
|
@@ -13714,15 +13890,16 @@ export declare const channelSMSContract: {
|
|
13714
13890
|
additionalCredentials?: any;
|
13715
13891
|
senderId?: string | undefined;
|
13716
13892
|
whatsapp?: {
|
13717
|
-
|
13718
|
-
wabaExternalId
|
13719
|
-
phoneNumberId
|
13720
|
-
|
13721
|
-
clientId?: string | undefined;
|
13722
|
-
channelId?: string | undefined;
|
13893
|
+
wabaBusinessId?: string | null | undefined;
|
13894
|
+
wabaExternalId?: string | null | undefined;
|
13895
|
+
phoneNumberId?: string | null | undefined;
|
13896
|
+
email?: string | null | undefined;
|
13897
|
+
clientId?: string | null | undefined;
|
13898
|
+
channelId?: string | null | undefined;
|
13723
13899
|
status?: "active" | "pending" | undefined;
|
13724
13900
|
apiKey?: string | undefined;
|
13725
13901
|
tier?: "basic" | "regular" | "premium" | undefined;
|
13902
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
13726
13903
|
} | undefined;
|
13727
13904
|
vonageCredentials?: {
|
13728
13905
|
apiKey: string;
|
@@ -13806,15 +13983,16 @@ export declare const channelSMSContract: {
|
|
13806
13983
|
additionalCredentials?: any;
|
13807
13984
|
senderId?: string | undefined;
|
13808
13985
|
whatsapp?: {
|
13809
|
-
|
13810
|
-
wabaExternalId
|
13811
|
-
phoneNumberId
|
13812
|
-
|
13813
|
-
clientId?: string | undefined;
|
13814
|
-
channelId?: string | undefined;
|
13986
|
+
wabaBusinessId?: string | null | undefined;
|
13987
|
+
wabaExternalId?: string | null | undefined;
|
13988
|
+
phoneNumberId?: string | null | undefined;
|
13989
|
+
email?: string | null | undefined;
|
13990
|
+
clientId?: string | null | undefined;
|
13991
|
+
channelId?: string | null | undefined;
|
13815
13992
|
status?: "active" | "pending" | undefined;
|
13816
13993
|
apiKey?: string | undefined;
|
13817
13994
|
tier?: "basic" | "regular" | "premium" | undefined;
|
13995
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
13818
13996
|
} | undefined;
|
13819
13997
|
vonageCredentials?: {
|
13820
13998
|
apiKey: string;
|
@@ -13899,15 +14077,16 @@ export declare const channelSMSContract: {
|
|
13899
14077
|
additionalCredentials?: any;
|
13900
14078
|
senderId?: string | undefined;
|
13901
14079
|
whatsapp?: {
|
13902
|
-
|
13903
|
-
wabaExternalId
|
13904
|
-
phoneNumberId
|
13905
|
-
|
13906
|
-
clientId?: string | undefined;
|
13907
|
-
channelId?: string | undefined;
|
14080
|
+
wabaBusinessId?: string | null | undefined;
|
14081
|
+
wabaExternalId?: string | null | undefined;
|
14082
|
+
phoneNumberId?: string | null | undefined;
|
14083
|
+
email?: string | null | undefined;
|
14084
|
+
clientId?: string | null | undefined;
|
14085
|
+
channelId?: string | null | undefined;
|
13908
14086
|
status?: "active" | "pending" | undefined;
|
13909
14087
|
apiKey?: string | undefined;
|
13910
14088
|
tier?: "basic" | "regular" | "premium" | undefined;
|
14089
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
13911
14090
|
} | undefined;
|
13912
14091
|
vonageCredentials?: {
|
13913
14092
|
apiKey: string;
|