@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
@@ -116,35 +116,38 @@ export declare const smsContract: {
|
|
116
116
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
117
117
|
senderId: z.ZodOptional<z.ZodString>;
|
118
118
|
whatsapp: z.ZodOptional<z.ZodObject<{
|
119
|
-
wabaBusinessId: z.ZodOptional<z.ZodString
|
120
|
-
wabaExternalId: z.ZodString
|
121
|
-
phoneNumberId: z.ZodString
|
122
|
-
email: z.ZodString
|
123
|
-
clientId: z.ZodOptional<z.ZodString
|
124
|
-
channelId: z.ZodOptional<z.ZodString
|
119
|
+
wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
120
|
+
wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
121
|
+
phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
122
|
+
email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
123
|
+
clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
124
|
+
channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
125
125
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
126
126
|
apiKey: z.ZodOptional<z.ZodString>;
|
127
127
|
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
128
|
+
integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
|
128
129
|
}, "strip", z.ZodTypeAny, {
|
129
|
-
|
130
|
-
wabaExternalId
|
131
|
-
phoneNumberId
|
132
|
-
|
133
|
-
clientId?: string | undefined;
|
134
|
-
channelId?: string | undefined;
|
130
|
+
wabaBusinessId?: string | null | undefined;
|
131
|
+
wabaExternalId?: string | null | undefined;
|
132
|
+
phoneNumberId?: string | null | undefined;
|
133
|
+
email?: string | null | undefined;
|
134
|
+
clientId?: string | null | undefined;
|
135
|
+
channelId?: string | null | undefined;
|
135
136
|
status?: "active" | "pending" | undefined;
|
136
137
|
apiKey?: string | undefined;
|
137
138
|
tier?: "basic" | "regular" | "premium" | undefined;
|
139
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
138
140
|
}, {
|
139
|
-
|
140
|
-
wabaExternalId
|
141
|
-
phoneNumberId
|
142
|
-
|
143
|
-
clientId?: string | undefined;
|
144
|
-
channelId?: string | undefined;
|
141
|
+
wabaBusinessId?: string | null | undefined;
|
142
|
+
wabaExternalId?: string | null | undefined;
|
143
|
+
phoneNumberId?: string | null | undefined;
|
144
|
+
email?: string | null | undefined;
|
145
|
+
clientId?: string | null | undefined;
|
146
|
+
channelId?: string | null | undefined;
|
145
147
|
status?: "active" | "pending" | undefined;
|
146
148
|
apiKey?: string | undefined;
|
147
149
|
tier?: "basic" | "regular" | "premium" | undefined;
|
150
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
148
151
|
}>>;
|
149
152
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
150
153
|
mobileNumber: z.ZodString;
|
@@ -169,15 +172,16 @@ export declare const smsContract: {
|
|
169
172
|
additionalCredentials?: any;
|
170
173
|
senderId?: string | undefined;
|
171
174
|
whatsapp?: {
|
172
|
-
|
173
|
-
wabaExternalId
|
174
|
-
phoneNumberId
|
175
|
-
|
176
|
-
clientId?: string | undefined;
|
177
|
-
channelId?: string | undefined;
|
175
|
+
wabaBusinessId?: string | null | undefined;
|
176
|
+
wabaExternalId?: string | null | undefined;
|
177
|
+
phoneNumberId?: string | null | undefined;
|
178
|
+
email?: string | null | undefined;
|
179
|
+
clientId?: string | null | undefined;
|
180
|
+
channelId?: string | null | undefined;
|
178
181
|
status?: "active" | "pending" | undefined;
|
179
182
|
apiKey?: string | undefined;
|
180
183
|
tier?: "basic" | "regular" | "premium" | undefined;
|
184
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
181
185
|
} | undefined;
|
182
186
|
vonageCredentials?: {
|
183
187
|
apiKey: string;
|
@@ -194,15 +198,16 @@ export declare const smsContract: {
|
|
194
198
|
additionalCredentials?: any;
|
195
199
|
senderId?: string | undefined;
|
196
200
|
whatsapp?: {
|
197
|
-
|
198
|
-
wabaExternalId
|
199
|
-
phoneNumberId
|
200
|
-
|
201
|
-
clientId?: string | undefined;
|
202
|
-
channelId?: string | undefined;
|
201
|
+
wabaBusinessId?: string | null | undefined;
|
202
|
+
wabaExternalId?: string | null | undefined;
|
203
|
+
phoneNumberId?: string | null | undefined;
|
204
|
+
email?: string | null | undefined;
|
205
|
+
clientId?: string | null | undefined;
|
206
|
+
channelId?: string | null | undefined;
|
203
207
|
status?: "active" | "pending" | undefined;
|
204
208
|
apiKey?: string | undefined;
|
205
209
|
tier?: "basic" | "regular" | "premium" | undefined;
|
210
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
206
211
|
} | undefined;
|
207
212
|
vonageCredentials?: {
|
208
213
|
apiKey: string;
|
@@ -453,15 +458,16 @@ export declare const smsContract: {
|
|
453
458
|
additionalCredentials?: any;
|
454
459
|
senderId?: string | undefined;
|
455
460
|
whatsapp?: {
|
456
|
-
|
457
|
-
wabaExternalId
|
458
|
-
phoneNumberId
|
459
|
-
|
460
|
-
clientId?: string | undefined;
|
461
|
-
channelId?: string | undefined;
|
461
|
+
wabaBusinessId?: string | null | undefined;
|
462
|
+
wabaExternalId?: string | null | undefined;
|
463
|
+
phoneNumberId?: string | null | undefined;
|
464
|
+
email?: string | null | undefined;
|
465
|
+
clientId?: string | null | undefined;
|
466
|
+
channelId?: string | null | undefined;
|
462
467
|
status?: "active" | "pending" | undefined;
|
463
468
|
apiKey?: string | undefined;
|
464
469
|
tier?: "basic" | "regular" | "premium" | undefined;
|
470
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
465
471
|
} | undefined;
|
466
472
|
vonageCredentials?: {
|
467
473
|
apiKey: string;
|
@@ -543,15 +549,16 @@ export declare const smsContract: {
|
|
543
549
|
additionalCredentials?: any;
|
544
550
|
senderId?: string | undefined;
|
545
551
|
whatsapp?: {
|
546
|
-
|
547
|
-
wabaExternalId
|
548
|
-
phoneNumberId
|
549
|
-
|
550
|
-
clientId?: string | undefined;
|
551
|
-
channelId?: string | undefined;
|
552
|
+
wabaBusinessId?: string | null | undefined;
|
553
|
+
wabaExternalId?: string | null | undefined;
|
554
|
+
phoneNumberId?: string | null | undefined;
|
555
|
+
email?: string | null | undefined;
|
556
|
+
clientId?: string | null | undefined;
|
557
|
+
channelId?: string | null | undefined;
|
552
558
|
status?: "active" | "pending" | undefined;
|
553
559
|
apiKey?: string | undefined;
|
554
560
|
tier?: "basic" | "regular" | "premium" | undefined;
|
561
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
555
562
|
} | undefined;
|
556
563
|
vonageCredentials?: {
|
557
564
|
apiKey: string;
|
@@ -635,15 +642,16 @@ export declare const smsContract: {
|
|
635
642
|
additionalCredentials?: any;
|
636
643
|
senderId?: string | undefined;
|
637
644
|
whatsapp?: {
|
638
|
-
|
639
|
-
wabaExternalId
|
640
|
-
phoneNumberId
|
641
|
-
|
642
|
-
clientId?: string | undefined;
|
643
|
-
channelId?: string | undefined;
|
645
|
+
wabaBusinessId?: string | null | undefined;
|
646
|
+
wabaExternalId?: string | null | undefined;
|
647
|
+
phoneNumberId?: string | null | undefined;
|
648
|
+
email?: string | null | undefined;
|
649
|
+
clientId?: string | null | undefined;
|
650
|
+
channelId?: string | null | undefined;
|
644
651
|
status?: "active" | "pending" | undefined;
|
645
652
|
apiKey?: string | undefined;
|
646
653
|
tier?: "basic" | "regular" | "premium" | undefined;
|
654
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
647
655
|
} | undefined;
|
648
656
|
vonageCredentials?: {
|
649
657
|
apiKey: string;
|
@@ -728,15 +736,16 @@ export declare const smsContract: {
|
|
728
736
|
additionalCredentials?: any;
|
729
737
|
senderId?: string | undefined;
|
730
738
|
whatsapp?: {
|
731
|
-
|
732
|
-
wabaExternalId
|
733
|
-
phoneNumberId
|
734
|
-
|
735
|
-
clientId?: string | undefined;
|
736
|
-
channelId?: string | undefined;
|
739
|
+
wabaBusinessId?: string | null | undefined;
|
740
|
+
wabaExternalId?: string | null | undefined;
|
741
|
+
phoneNumberId?: string | null | undefined;
|
742
|
+
email?: string | null | undefined;
|
743
|
+
clientId?: string | null | undefined;
|
744
|
+
channelId?: string | null | undefined;
|
737
745
|
status?: "active" | "pending" | undefined;
|
738
746
|
apiKey?: string | undefined;
|
739
747
|
tier?: "basic" | "regular" | "premium" | undefined;
|
748
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
740
749
|
} | undefined;
|
741
750
|
vonageCredentials?: {
|
742
751
|
apiKey: string;
|
@@ -970,35 +979,38 @@ export declare const smsContract: {
|
|
970
979
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
971
980
|
senderId: z.ZodOptional<z.ZodString>;
|
972
981
|
whatsapp: z.ZodOptional<z.ZodObject<{
|
973
|
-
wabaBusinessId: z.ZodOptional<z.ZodString
|
974
|
-
wabaExternalId: z.ZodString
|
975
|
-
phoneNumberId: z.ZodString
|
976
|
-
email: z.ZodString
|
977
|
-
clientId: z.ZodOptional<z.ZodString
|
978
|
-
channelId: z.ZodOptional<z.ZodString
|
982
|
+
wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
983
|
+
wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
984
|
+
phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
985
|
+
email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
986
|
+
clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
987
|
+
channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
979
988
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
980
989
|
apiKey: z.ZodOptional<z.ZodString>;
|
981
990
|
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
991
|
+
integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
|
982
992
|
}, "strip", z.ZodTypeAny, {
|
983
|
-
|
984
|
-
wabaExternalId
|
985
|
-
phoneNumberId
|
986
|
-
|
987
|
-
clientId?: string | undefined;
|
988
|
-
channelId?: string | undefined;
|
993
|
+
wabaBusinessId?: string | null | undefined;
|
994
|
+
wabaExternalId?: string | null | undefined;
|
995
|
+
phoneNumberId?: string | null | undefined;
|
996
|
+
email?: string | null | undefined;
|
997
|
+
clientId?: string | null | undefined;
|
998
|
+
channelId?: string | null | undefined;
|
989
999
|
status?: "active" | "pending" | undefined;
|
990
1000
|
apiKey?: string | undefined;
|
991
1001
|
tier?: "basic" | "regular" | "premium" | undefined;
|
1002
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
992
1003
|
}, {
|
993
|
-
|
994
|
-
wabaExternalId
|
995
|
-
phoneNumberId
|
996
|
-
|
997
|
-
clientId?: string | undefined;
|
998
|
-
channelId?: string | undefined;
|
1004
|
+
wabaBusinessId?: string | null | undefined;
|
1005
|
+
wabaExternalId?: string | null | undefined;
|
1006
|
+
phoneNumberId?: string | null | undefined;
|
1007
|
+
email?: string | null | undefined;
|
1008
|
+
clientId?: string | null | undefined;
|
1009
|
+
channelId?: string | null | undefined;
|
999
1010
|
status?: "active" | "pending" | undefined;
|
1000
1011
|
apiKey?: string | undefined;
|
1001
1012
|
tier?: "basic" | "regular" | "premium" | undefined;
|
1013
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
1002
1014
|
}>>;
|
1003
1015
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
1004
1016
|
mobileNumber: z.ZodString;
|
@@ -1023,15 +1035,16 @@ export declare const smsContract: {
|
|
1023
1035
|
additionalCredentials?: any;
|
1024
1036
|
senderId?: string | undefined;
|
1025
1037
|
whatsapp?: {
|
1026
|
-
|
1027
|
-
wabaExternalId
|
1028
|
-
phoneNumberId
|
1029
|
-
|
1030
|
-
clientId?: string | undefined;
|
1031
|
-
channelId?: string | undefined;
|
1038
|
+
wabaBusinessId?: string | null | undefined;
|
1039
|
+
wabaExternalId?: string | null | undefined;
|
1040
|
+
phoneNumberId?: string | null | undefined;
|
1041
|
+
email?: string | null | undefined;
|
1042
|
+
clientId?: string | null | undefined;
|
1043
|
+
channelId?: string | null | undefined;
|
1032
1044
|
status?: "active" | "pending" | undefined;
|
1033
1045
|
apiKey?: string | undefined;
|
1034
1046
|
tier?: "basic" | "regular" | "premium" | undefined;
|
1047
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
1035
1048
|
} | undefined;
|
1036
1049
|
vonageCredentials?: {
|
1037
1050
|
apiKey: string;
|
@@ -1048,15 +1061,16 @@ export declare const smsContract: {
|
|
1048
1061
|
additionalCredentials?: any;
|
1049
1062
|
senderId?: string | undefined;
|
1050
1063
|
whatsapp?: {
|
1051
|
-
|
1052
|
-
wabaExternalId
|
1053
|
-
phoneNumberId
|
1054
|
-
|
1055
|
-
clientId?: string | undefined;
|
1056
|
-
channelId?: string | undefined;
|
1064
|
+
wabaBusinessId?: string | null | undefined;
|
1065
|
+
wabaExternalId?: string | null | undefined;
|
1066
|
+
phoneNumberId?: string | null | undefined;
|
1067
|
+
email?: string | null | undefined;
|
1068
|
+
clientId?: string | null | undefined;
|
1069
|
+
channelId?: string | null | undefined;
|
1057
1070
|
status?: "active" | "pending" | undefined;
|
1058
1071
|
apiKey?: string | undefined;
|
1059
1072
|
tier?: "basic" | "regular" | "premium" | undefined;
|
1073
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
1060
1074
|
} | undefined;
|
1061
1075
|
vonageCredentials?: {
|
1062
1076
|
apiKey: string;
|
@@ -1103,15 +1117,16 @@ export declare const smsContract: {
|
|
1103
1117
|
additionalCredentials?: any;
|
1104
1118
|
senderId?: string | undefined;
|
1105
1119
|
whatsapp?: {
|
1106
|
-
|
1107
|
-
wabaExternalId
|
1108
|
-
phoneNumberId
|
1109
|
-
|
1110
|
-
clientId?: string | undefined;
|
1111
|
-
channelId?: string | undefined;
|
1120
|
+
wabaBusinessId?: string | null | undefined;
|
1121
|
+
wabaExternalId?: string | null | undefined;
|
1122
|
+
phoneNumberId?: string | null | undefined;
|
1123
|
+
email?: string | null | undefined;
|
1124
|
+
clientId?: string | null | undefined;
|
1125
|
+
channelId?: string | null | undefined;
|
1112
1126
|
status?: "active" | "pending" | undefined;
|
1113
1127
|
apiKey?: string | undefined;
|
1114
1128
|
tier?: "basic" | "regular" | "premium" | undefined;
|
1129
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
1115
1130
|
} | undefined;
|
1116
1131
|
vonageCredentials?: {
|
1117
1132
|
apiKey: string;
|
@@ -1146,15 +1161,16 @@ export declare const smsContract: {
|
|
1146
1161
|
additionalCredentials?: any;
|
1147
1162
|
senderId?: string | undefined;
|
1148
1163
|
whatsapp?: {
|
1149
|
-
|
1150
|
-
wabaExternalId
|
1151
|
-
phoneNumberId
|
1152
|
-
|
1153
|
-
clientId?: string | undefined;
|
1154
|
-
channelId?: string | undefined;
|
1164
|
+
wabaBusinessId?: string | null | undefined;
|
1165
|
+
wabaExternalId?: string | null | undefined;
|
1166
|
+
phoneNumberId?: string | null | undefined;
|
1167
|
+
email?: string | null | undefined;
|
1168
|
+
clientId?: string | null | undefined;
|
1169
|
+
channelId?: string | null | undefined;
|
1155
1170
|
status?: "active" | "pending" | undefined;
|
1156
1171
|
apiKey?: string | undefined;
|
1157
1172
|
tier?: "basic" | "regular" | "premium" | undefined;
|
1173
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
1158
1174
|
} | undefined;
|
1159
1175
|
vonageCredentials?: {
|
1160
1176
|
apiKey: string;
|
@@ -1194,15 +1210,16 @@ export declare const smsContract: {
|
|
1194
1210
|
additionalCredentials?: any;
|
1195
1211
|
senderId?: string | undefined;
|
1196
1212
|
whatsapp?: {
|
1197
|
-
|
1198
|
-
wabaExternalId
|
1199
|
-
phoneNumberId
|
1200
|
-
|
1201
|
-
clientId?: string | undefined;
|
1202
|
-
channelId?: string | undefined;
|
1213
|
+
wabaBusinessId?: string | null | undefined;
|
1214
|
+
wabaExternalId?: string | null | undefined;
|
1215
|
+
phoneNumberId?: string | null | undefined;
|
1216
|
+
email?: string | null | undefined;
|
1217
|
+
clientId?: string | null | undefined;
|
1218
|
+
channelId?: string | null | undefined;
|
1203
1219
|
status?: "active" | "pending" | undefined;
|
1204
1220
|
apiKey?: string | undefined;
|
1205
1221
|
tier?: "basic" | "regular" | "premium" | undefined;
|
1222
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
1206
1223
|
} | undefined;
|
1207
1224
|
vonageCredentials?: {
|
1208
1225
|
apiKey: string;
|
@@ -1281,15 +1298,16 @@ export declare const smsContract: {
|
|
1281
1298
|
additionalCredentials?: any;
|
1282
1299
|
senderId?: string | undefined;
|
1283
1300
|
whatsapp?: {
|
1284
|
-
|
1285
|
-
wabaExternalId
|
1286
|
-
phoneNumberId
|
1287
|
-
|
1288
|
-
clientId?: string | undefined;
|
1289
|
-
channelId?: string | undefined;
|
1301
|
+
wabaBusinessId?: string | null | undefined;
|
1302
|
+
wabaExternalId?: string | null | undefined;
|
1303
|
+
phoneNumberId?: string | null | undefined;
|
1304
|
+
email?: string | null | undefined;
|
1305
|
+
clientId?: string | null | undefined;
|
1306
|
+
channelId?: string | null | undefined;
|
1290
1307
|
status?: "active" | "pending" | undefined;
|
1291
1308
|
apiKey?: string | undefined;
|
1292
1309
|
tier?: "basic" | "regular" | "premium" | undefined;
|
1310
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
1293
1311
|
} | undefined;
|
1294
1312
|
vonageCredentials?: {
|
1295
1313
|
apiKey: string;
|
@@ -1536,15 +1554,16 @@ export declare const smsContract: {
|
|
1536
1554
|
additionalCredentials?: any;
|
1537
1555
|
senderId?: string | undefined;
|
1538
1556
|
whatsapp?: {
|
1539
|
-
|
1540
|
-
wabaExternalId
|
1541
|
-
phoneNumberId
|
1542
|
-
|
1543
|
-
clientId?: string | undefined;
|
1544
|
-
channelId?: string | undefined;
|
1557
|
+
wabaBusinessId?: string | null | undefined;
|
1558
|
+
wabaExternalId?: string | null | undefined;
|
1559
|
+
phoneNumberId?: string | null | undefined;
|
1560
|
+
email?: string | null | undefined;
|
1561
|
+
clientId?: string | null | undefined;
|
1562
|
+
channelId?: string | null | undefined;
|
1545
1563
|
status?: "active" | "pending" | undefined;
|
1546
1564
|
apiKey?: string | undefined;
|
1547
1565
|
tier?: "basic" | "regular" | "premium" | undefined;
|
1566
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
1548
1567
|
} | undefined;
|
1549
1568
|
vonageCredentials?: {
|
1550
1569
|
apiKey: string;
|
@@ -1662,15 +1681,16 @@ export declare const smsContract: {
|
|
1662
1681
|
additionalCredentials?: any;
|
1663
1682
|
senderId?: string | undefined;
|
1664
1683
|
whatsapp?: {
|
1665
|
-
|
1666
|
-
wabaExternalId
|
1667
|
-
phoneNumberId
|
1668
|
-
|
1669
|
-
clientId?: string | undefined;
|
1670
|
-
channelId?: string | undefined;
|
1684
|
+
wabaBusinessId?: string | null | undefined;
|
1685
|
+
wabaExternalId?: string | null | undefined;
|
1686
|
+
phoneNumberId?: string | null | undefined;
|
1687
|
+
email?: string | null | undefined;
|
1688
|
+
clientId?: string | null | undefined;
|
1689
|
+
channelId?: string | null | undefined;
|
1671
1690
|
status?: "active" | "pending" | undefined;
|
1672
1691
|
apiKey?: string | undefined;
|
1673
1692
|
tier?: "basic" | "regular" | "premium" | undefined;
|
1693
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
1674
1694
|
} | undefined;
|
1675
1695
|
vonageCredentials?: {
|
1676
1696
|
apiKey: string;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/sms/index.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,uBAAuB,EAAE,eAAe,EAAE,MAAM,UAAU,CAAC;AAEpE,OAAO,CAAC,MAAM,KAAK,CAAC;AAGpB,MAAM,MAAM,wBAAwB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC;AAC/E,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,eAAe,CAAC,CAAC;AAE9D,eAAO,MAAM,WAAW
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/sms/index.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,uBAAuB,EAAE,eAAe,EAAE,MAAM,UAAU,CAAC;AAEpE,OAAO,CAAC,MAAM,KAAK,CAAC;AAGpB,MAAM,MAAM,wBAAwB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC;AAC/E,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,eAAe,CAAC,CAAC;AAE9D,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAwBtB,CAAC;AAEH,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAW7B,CAAC"}
|