@kl1/contracts 1.2.39-uat → 1.2.40-uat
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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
|
@@ -142,35 +142,38 @@ export declare const whatsappContract: {
|
|
|
142
142
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
|
143
143
|
senderId: z.ZodOptional<z.ZodString>;
|
|
144
144
|
whatsapp: z.ZodOptional<z.ZodObject<{
|
|
145
|
-
wabaBusinessId: z.ZodOptional<z.ZodString
|
|
146
|
-
wabaExternalId: z.ZodString
|
|
147
|
-
phoneNumberId: z.ZodString
|
|
148
|
-
email: z.ZodString
|
|
149
|
-
clientId: z.ZodOptional<z.ZodString
|
|
150
|
-
channelId: z.ZodOptional<z.ZodString
|
|
145
|
+
wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
146
|
+
wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
147
|
+
phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
148
|
+
email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
149
|
+
clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
150
|
+
channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
151
151
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
|
152
152
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
153
153
|
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
|
154
|
+
integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
|
|
154
155
|
}, "strip", z.ZodTypeAny, {
|
|
155
|
-
|
|
156
|
-
wabaExternalId
|
|
157
|
-
phoneNumberId
|
|
158
|
-
|
|
159
|
-
clientId?: string | undefined;
|
|
160
|
-
channelId?: string | undefined;
|
|
156
|
+
wabaBusinessId?: string | null | undefined;
|
|
157
|
+
wabaExternalId?: string | null | undefined;
|
|
158
|
+
phoneNumberId?: string | null | undefined;
|
|
159
|
+
email?: string | null | undefined;
|
|
160
|
+
clientId?: string | null | undefined;
|
|
161
|
+
channelId?: string | null | undefined;
|
|
161
162
|
status?: "active" | "pending" | undefined;
|
|
162
163
|
apiKey?: string | undefined;
|
|
163
164
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
165
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
164
166
|
}, {
|
|
165
|
-
|
|
166
|
-
wabaExternalId
|
|
167
|
-
phoneNumberId
|
|
168
|
-
|
|
169
|
-
clientId?: string | undefined;
|
|
170
|
-
channelId?: string | undefined;
|
|
167
|
+
wabaBusinessId?: string | null | undefined;
|
|
168
|
+
wabaExternalId?: string | null | undefined;
|
|
169
|
+
phoneNumberId?: string | null | undefined;
|
|
170
|
+
email?: string | null | undefined;
|
|
171
|
+
clientId?: string | null | undefined;
|
|
172
|
+
channelId?: string | null | undefined;
|
|
171
173
|
status?: "active" | "pending" | undefined;
|
|
172
174
|
apiKey?: string | undefined;
|
|
173
175
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
176
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
174
177
|
}>>;
|
|
175
178
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
|
176
179
|
mobileNumber: z.ZodString;
|
|
@@ -195,15 +198,16 @@ export declare const whatsappContract: {
|
|
|
195
198
|
additionalCredentials?: any;
|
|
196
199
|
senderId?: string | undefined;
|
|
197
200
|
whatsapp?: {
|
|
198
|
-
|
|
199
|
-
wabaExternalId
|
|
200
|
-
phoneNumberId
|
|
201
|
-
|
|
202
|
-
clientId?: string | undefined;
|
|
203
|
-
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;
|
|
204
207
|
status?: "active" | "pending" | undefined;
|
|
205
208
|
apiKey?: string | undefined;
|
|
206
209
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
210
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
207
211
|
} | undefined;
|
|
208
212
|
vonageCredentials?: {
|
|
209
213
|
apiKey: string;
|
|
@@ -220,15 +224,16 @@ export declare const whatsappContract: {
|
|
|
220
224
|
additionalCredentials?: any;
|
|
221
225
|
senderId?: string | undefined;
|
|
222
226
|
whatsapp?: {
|
|
223
|
-
|
|
224
|
-
wabaExternalId
|
|
225
|
-
phoneNumberId
|
|
226
|
-
|
|
227
|
-
clientId?: string | undefined;
|
|
228
|
-
channelId?: string | undefined;
|
|
227
|
+
wabaBusinessId?: string | null | undefined;
|
|
228
|
+
wabaExternalId?: string | null | undefined;
|
|
229
|
+
phoneNumberId?: string | null | undefined;
|
|
230
|
+
email?: string | null | undefined;
|
|
231
|
+
clientId?: string | null | undefined;
|
|
232
|
+
channelId?: string | null | undefined;
|
|
229
233
|
status?: "active" | "pending" | undefined;
|
|
230
234
|
apiKey?: string | undefined;
|
|
231
235
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
236
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
232
237
|
} | undefined;
|
|
233
238
|
vonageCredentials?: {
|
|
234
239
|
apiKey: string;
|
|
@@ -275,15 +280,16 @@ export declare const whatsappContract: {
|
|
|
275
280
|
additionalCredentials?: any;
|
|
276
281
|
senderId?: string | undefined;
|
|
277
282
|
whatsapp?: {
|
|
278
|
-
|
|
279
|
-
wabaExternalId
|
|
280
|
-
phoneNumberId
|
|
281
|
-
|
|
282
|
-
clientId?: string | undefined;
|
|
283
|
-
channelId?: string | undefined;
|
|
283
|
+
wabaBusinessId?: string | null | undefined;
|
|
284
|
+
wabaExternalId?: string | null | undefined;
|
|
285
|
+
phoneNumberId?: string | null | undefined;
|
|
286
|
+
email?: string | null | undefined;
|
|
287
|
+
clientId?: string | null | undefined;
|
|
288
|
+
channelId?: string | null | undefined;
|
|
284
289
|
status?: "active" | "pending" | undefined;
|
|
285
290
|
apiKey?: string | undefined;
|
|
286
291
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
292
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
287
293
|
} | undefined;
|
|
288
294
|
vonageCredentials?: {
|
|
289
295
|
apiKey: string;
|
|
@@ -318,15 +324,16 @@ export declare const whatsappContract: {
|
|
|
318
324
|
additionalCredentials?: any;
|
|
319
325
|
senderId?: string | undefined;
|
|
320
326
|
whatsapp?: {
|
|
321
|
-
|
|
322
|
-
wabaExternalId
|
|
323
|
-
phoneNumberId
|
|
324
|
-
|
|
325
|
-
clientId?: string | undefined;
|
|
326
|
-
channelId?: string | undefined;
|
|
327
|
+
wabaBusinessId?: string | null | undefined;
|
|
328
|
+
wabaExternalId?: string | null | undefined;
|
|
329
|
+
phoneNumberId?: string | null | undefined;
|
|
330
|
+
email?: string | null | undefined;
|
|
331
|
+
clientId?: string | null | undefined;
|
|
332
|
+
channelId?: string | null | undefined;
|
|
327
333
|
status?: "active" | "pending" | undefined;
|
|
328
334
|
apiKey?: string | undefined;
|
|
329
335
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
336
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
330
337
|
} | undefined;
|
|
331
338
|
vonageCredentials?: {
|
|
332
339
|
apiKey: string;
|
|
@@ -366,15 +373,16 @@ export declare const whatsappContract: {
|
|
|
366
373
|
additionalCredentials?: any;
|
|
367
374
|
senderId?: string | undefined;
|
|
368
375
|
whatsapp?: {
|
|
369
|
-
|
|
370
|
-
wabaExternalId
|
|
371
|
-
phoneNumberId
|
|
372
|
-
|
|
373
|
-
clientId?: string | undefined;
|
|
374
|
-
channelId?: string | undefined;
|
|
376
|
+
wabaBusinessId?: string | null | undefined;
|
|
377
|
+
wabaExternalId?: string | null | undefined;
|
|
378
|
+
phoneNumberId?: string | null | undefined;
|
|
379
|
+
email?: string | null | undefined;
|
|
380
|
+
clientId?: string | null | undefined;
|
|
381
|
+
channelId?: string | null | undefined;
|
|
375
382
|
status?: "active" | "pending" | undefined;
|
|
376
383
|
apiKey?: string | undefined;
|
|
377
384
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
385
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
378
386
|
} | undefined;
|
|
379
387
|
vonageCredentials?: {
|
|
380
388
|
apiKey: string;
|
|
@@ -453,15 +461,16 @@ export declare const whatsappContract: {
|
|
|
453
461
|
additionalCredentials?: any;
|
|
454
462
|
senderId?: string | undefined;
|
|
455
463
|
whatsapp?: {
|
|
456
|
-
|
|
457
|
-
wabaExternalId
|
|
458
|
-
phoneNumberId
|
|
459
|
-
|
|
460
|
-
clientId?: string | undefined;
|
|
461
|
-
channelId?: string | undefined;
|
|
464
|
+
wabaBusinessId?: string | null | undefined;
|
|
465
|
+
wabaExternalId?: string | null | undefined;
|
|
466
|
+
phoneNumberId?: string | null | undefined;
|
|
467
|
+
email?: string | null | undefined;
|
|
468
|
+
clientId?: string | null | undefined;
|
|
469
|
+
channelId?: string | null | undefined;
|
|
462
470
|
status?: "active" | "pending" | undefined;
|
|
463
471
|
apiKey?: string | undefined;
|
|
464
472
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
473
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
465
474
|
} | undefined;
|
|
466
475
|
vonageCredentials?: {
|
|
467
476
|
apiKey: string;
|
|
@@ -708,15 +717,16 @@ export declare const whatsappContract: {
|
|
|
708
717
|
additionalCredentials?: any;
|
|
709
718
|
senderId?: string | undefined;
|
|
710
719
|
whatsapp?: {
|
|
711
|
-
|
|
712
|
-
wabaExternalId
|
|
713
|
-
phoneNumberId
|
|
714
|
-
|
|
715
|
-
clientId?: string | undefined;
|
|
716
|
-
channelId?: string | undefined;
|
|
720
|
+
wabaBusinessId?: string | null | undefined;
|
|
721
|
+
wabaExternalId?: string | null | undefined;
|
|
722
|
+
phoneNumberId?: string | null | undefined;
|
|
723
|
+
email?: string | null | undefined;
|
|
724
|
+
clientId?: string | null | undefined;
|
|
725
|
+
channelId?: string | null | undefined;
|
|
717
726
|
status?: "active" | "pending" | undefined;
|
|
718
727
|
apiKey?: string | undefined;
|
|
719
728
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
729
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
720
730
|
} | undefined;
|
|
721
731
|
vonageCredentials?: {
|
|
722
732
|
apiKey: string;
|
|
@@ -834,15 +844,16 @@ export declare const whatsappContract: {
|
|
|
834
844
|
additionalCredentials?: any;
|
|
835
845
|
senderId?: string | undefined;
|
|
836
846
|
whatsapp?: {
|
|
837
|
-
|
|
838
|
-
wabaExternalId
|
|
839
|
-
phoneNumberId
|
|
840
|
-
|
|
841
|
-
clientId?: string | undefined;
|
|
842
|
-
channelId?: string | undefined;
|
|
847
|
+
wabaBusinessId?: string | null | undefined;
|
|
848
|
+
wabaExternalId?: string | null | undefined;
|
|
849
|
+
phoneNumberId?: string | null | undefined;
|
|
850
|
+
email?: string | null | undefined;
|
|
851
|
+
clientId?: string | null | undefined;
|
|
852
|
+
channelId?: string | null | undefined;
|
|
843
853
|
status?: "active" | "pending" | undefined;
|
|
844
854
|
apiKey?: string | undefined;
|
|
845
855
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
856
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
846
857
|
} | undefined;
|
|
847
858
|
vonageCredentials?: {
|
|
848
859
|
apiKey: string;
|
|
@@ -2855,35 +2866,38 @@ export declare const whatsappContract: {
|
|
|
2855
2866
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
|
2856
2867
|
senderId: z.ZodOptional<z.ZodString>;
|
|
2857
2868
|
whatsapp: z.ZodOptional<z.ZodObject<{
|
|
2858
|
-
wabaBusinessId: z.ZodOptional<z.ZodString
|
|
2859
|
-
wabaExternalId: z.ZodString
|
|
2860
|
-
phoneNumberId: z.ZodString
|
|
2861
|
-
email: z.ZodString
|
|
2862
|
-
clientId: z.ZodOptional<z.ZodString
|
|
2863
|
-
channelId: z.ZodOptional<z.ZodString
|
|
2869
|
+
wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2870
|
+
wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2871
|
+
phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2872
|
+
email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2873
|
+
clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2874
|
+
channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2864
2875
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
|
2865
2876
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
2866
2877
|
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
|
2878
|
+
integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
|
|
2867
2879
|
}, "strip", z.ZodTypeAny, {
|
|
2868
|
-
|
|
2869
|
-
wabaExternalId
|
|
2870
|
-
phoneNumberId
|
|
2871
|
-
|
|
2872
|
-
clientId?: string | undefined;
|
|
2873
|
-
channelId?: string | undefined;
|
|
2880
|
+
wabaBusinessId?: string | null | undefined;
|
|
2881
|
+
wabaExternalId?: string | null | undefined;
|
|
2882
|
+
phoneNumberId?: string | null | undefined;
|
|
2883
|
+
email?: string | null | undefined;
|
|
2884
|
+
clientId?: string | null | undefined;
|
|
2885
|
+
channelId?: string | null | undefined;
|
|
2874
2886
|
status?: "active" | "pending" | undefined;
|
|
2875
2887
|
apiKey?: string | undefined;
|
|
2876
2888
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
2889
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
2877
2890
|
}, {
|
|
2878
|
-
|
|
2879
|
-
wabaExternalId
|
|
2880
|
-
phoneNumberId
|
|
2881
|
-
|
|
2882
|
-
clientId?: string | undefined;
|
|
2883
|
-
channelId?: string | undefined;
|
|
2891
|
+
wabaBusinessId?: string | null | undefined;
|
|
2892
|
+
wabaExternalId?: string | null | undefined;
|
|
2893
|
+
phoneNumberId?: string | null | undefined;
|
|
2894
|
+
email?: string | null | undefined;
|
|
2895
|
+
clientId?: string | null | undefined;
|
|
2896
|
+
channelId?: string | null | undefined;
|
|
2884
2897
|
status?: "active" | "pending" | undefined;
|
|
2885
2898
|
apiKey?: string | undefined;
|
|
2886
2899
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
2900
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
2887
2901
|
}>>;
|
|
2888
2902
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
|
2889
2903
|
mobileNumber: z.ZodString;
|
|
@@ -2908,15 +2922,16 @@ export declare const whatsappContract: {
|
|
|
2908
2922
|
additionalCredentials?: any;
|
|
2909
2923
|
senderId?: string | undefined;
|
|
2910
2924
|
whatsapp?: {
|
|
2911
|
-
|
|
2912
|
-
wabaExternalId
|
|
2913
|
-
phoneNumberId
|
|
2914
|
-
|
|
2915
|
-
clientId?: string | undefined;
|
|
2916
|
-
channelId?: string | undefined;
|
|
2925
|
+
wabaBusinessId?: string | null | undefined;
|
|
2926
|
+
wabaExternalId?: string | null | undefined;
|
|
2927
|
+
phoneNumberId?: string | null | undefined;
|
|
2928
|
+
email?: string | null | undefined;
|
|
2929
|
+
clientId?: string | null | undefined;
|
|
2930
|
+
channelId?: string | null | undefined;
|
|
2917
2931
|
status?: "active" | "pending" | undefined;
|
|
2918
2932
|
apiKey?: string | undefined;
|
|
2919
2933
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
2934
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
2920
2935
|
} | undefined;
|
|
2921
2936
|
vonageCredentials?: {
|
|
2922
2937
|
apiKey: string;
|
|
@@ -2933,15 +2948,16 @@ export declare const whatsappContract: {
|
|
|
2933
2948
|
additionalCredentials?: any;
|
|
2934
2949
|
senderId?: string | undefined;
|
|
2935
2950
|
whatsapp?: {
|
|
2936
|
-
|
|
2937
|
-
wabaExternalId
|
|
2938
|
-
phoneNumberId
|
|
2939
|
-
|
|
2940
|
-
clientId?: string | undefined;
|
|
2941
|
-
channelId?: string | undefined;
|
|
2951
|
+
wabaBusinessId?: string | null | undefined;
|
|
2952
|
+
wabaExternalId?: string | null | undefined;
|
|
2953
|
+
phoneNumberId?: string | null | undefined;
|
|
2954
|
+
email?: string | null | undefined;
|
|
2955
|
+
clientId?: string | null | undefined;
|
|
2956
|
+
channelId?: string | null | undefined;
|
|
2942
2957
|
status?: "active" | "pending" | undefined;
|
|
2943
2958
|
apiKey?: string | undefined;
|
|
2944
2959
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
2960
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
2945
2961
|
} | undefined;
|
|
2946
2962
|
vonageCredentials?: {
|
|
2947
2963
|
apiKey: string;
|
|
@@ -3192,15 +3208,16 @@ export declare const whatsappContract: {
|
|
|
3192
3208
|
additionalCredentials?: any;
|
|
3193
3209
|
senderId?: string | undefined;
|
|
3194
3210
|
whatsapp?: {
|
|
3195
|
-
|
|
3196
|
-
wabaExternalId
|
|
3197
|
-
phoneNumberId
|
|
3198
|
-
|
|
3199
|
-
clientId?: string | undefined;
|
|
3200
|
-
channelId?: string | undefined;
|
|
3211
|
+
wabaBusinessId?: string | null | undefined;
|
|
3212
|
+
wabaExternalId?: string | null | undefined;
|
|
3213
|
+
phoneNumberId?: string | null | undefined;
|
|
3214
|
+
email?: string | null | undefined;
|
|
3215
|
+
clientId?: string | null | undefined;
|
|
3216
|
+
channelId?: string | null | undefined;
|
|
3201
3217
|
status?: "active" | "pending" | undefined;
|
|
3202
3218
|
apiKey?: string | undefined;
|
|
3203
3219
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
3220
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
3204
3221
|
} | undefined;
|
|
3205
3222
|
vonageCredentials?: {
|
|
3206
3223
|
apiKey: string;
|
|
@@ -3282,15 +3299,16 @@ export declare const whatsappContract: {
|
|
|
3282
3299
|
additionalCredentials?: any;
|
|
3283
3300
|
senderId?: string | undefined;
|
|
3284
3301
|
whatsapp?: {
|
|
3285
|
-
|
|
3286
|
-
wabaExternalId
|
|
3287
|
-
phoneNumberId
|
|
3288
|
-
|
|
3289
|
-
clientId?: string | undefined;
|
|
3290
|
-
channelId?: string | undefined;
|
|
3302
|
+
wabaBusinessId?: string | null | undefined;
|
|
3303
|
+
wabaExternalId?: string | null | undefined;
|
|
3304
|
+
phoneNumberId?: string | null | undefined;
|
|
3305
|
+
email?: string | null | undefined;
|
|
3306
|
+
clientId?: string | null | undefined;
|
|
3307
|
+
channelId?: string | null | undefined;
|
|
3291
3308
|
status?: "active" | "pending" | undefined;
|
|
3292
3309
|
apiKey?: string | undefined;
|
|
3293
3310
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
3311
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
3294
3312
|
} | undefined;
|
|
3295
3313
|
vonageCredentials?: {
|
|
3296
3314
|
apiKey: string;
|
|
@@ -3936,15 +3954,16 @@ export declare const whatsappContract: {
|
|
|
3936
3954
|
additionalCredentials?: any;
|
|
3937
3955
|
senderId?: string | undefined;
|
|
3938
3956
|
whatsapp?: {
|
|
3939
|
-
|
|
3940
|
-
wabaExternalId
|
|
3941
|
-
phoneNumberId
|
|
3942
|
-
|
|
3943
|
-
clientId?: string | undefined;
|
|
3944
|
-
channelId?: string | undefined;
|
|
3957
|
+
wabaBusinessId?: string | null | undefined;
|
|
3958
|
+
wabaExternalId?: string | null | undefined;
|
|
3959
|
+
phoneNumberId?: string | null | undefined;
|
|
3960
|
+
email?: string | null | undefined;
|
|
3961
|
+
clientId?: string | null | undefined;
|
|
3962
|
+
channelId?: string | null | undefined;
|
|
3945
3963
|
status?: "active" | "pending" | undefined;
|
|
3946
3964
|
apiKey?: string | undefined;
|
|
3947
3965
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
3966
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
3948
3967
|
} | undefined;
|
|
3949
3968
|
vonageCredentials?: {
|
|
3950
3969
|
apiKey: string;
|
|
@@ -4359,15 +4378,16 @@ export declare const whatsappContract: {
|
|
|
4359
4378
|
additionalCredentials?: any;
|
|
4360
4379
|
senderId?: string | undefined;
|
|
4361
4380
|
whatsapp?: {
|
|
4362
|
-
|
|
4363
|
-
wabaExternalId
|
|
4364
|
-
phoneNumberId
|
|
4365
|
-
|
|
4366
|
-
clientId?: string | undefined;
|
|
4367
|
-
channelId?: string | undefined;
|
|
4381
|
+
wabaBusinessId?: string | null | undefined;
|
|
4382
|
+
wabaExternalId?: string | null | undefined;
|
|
4383
|
+
phoneNumberId?: string | null | undefined;
|
|
4384
|
+
email?: string | null | undefined;
|
|
4385
|
+
clientId?: string | null | undefined;
|
|
4386
|
+
channelId?: string | null | undefined;
|
|
4368
4387
|
status?: "active" | "pending" | undefined;
|
|
4369
4388
|
apiKey?: string | undefined;
|
|
4370
4389
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
4390
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
4371
4391
|
} | undefined;
|
|
4372
4392
|
vonageCredentials?: {
|
|
4373
4393
|
apiKey: string;
|
|
@@ -7498,35 +7518,38 @@ export declare const whatsappContract: {
|
|
|
7498
7518
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
|
7499
7519
|
senderId: z.ZodOptional<z.ZodString>;
|
|
7500
7520
|
whatsapp: z.ZodOptional<z.ZodObject<{
|
|
7501
|
-
wabaBusinessId: z.ZodOptional<z.ZodString
|
|
7502
|
-
wabaExternalId: z.ZodString
|
|
7503
|
-
phoneNumberId: z.ZodString
|
|
7504
|
-
email: z.ZodString
|
|
7505
|
-
clientId: z.ZodOptional<z.ZodString
|
|
7506
|
-
channelId: z.ZodOptional<z.ZodString
|
|
7521
|
+
wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
7522
|
+
wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
7523
|
+
phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
7524
|
+
email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
7525
|
+
clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
7526
|
+
channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
7507
7527
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
|
7508
7528
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
7509
7529
|
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
|
7530
|
+
integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
|
|
7510
7531
|
}, "strip", z.ZodTypeAny, {
|
|
7511
|
-
|
|
7512
|
-
wabaExternalId
|
|
7513
|
-
phoneNumberId
|
|
7514
|
-
|
|
7515
|
-
clientId?: string | undefined;
|
|
7516
|
-
channelId?: string | undefined;
|
|
7532
|
+
wabaBusinessId?: string | null | undefined;
|
|
7533
|
+
wabaExternalId?: string | null | undefined;
|
|
7534
|
+
phoneNumberId?: string | null | undefined;
|
|
7535
|
+
email?: string | null | undefined;
|
|
7536
|
+
clientId?: string | null | undefined;
|
|
7537
|
+
channelId?: string | null | undefined;
|
|
7517
7538
|
status?: "active" | "pending" | undefined;
|
|
7518
7539
|
apiKey?: string | undefined;
|
|
7519
7540
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
7541
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
7520
7542
|
}, {
|
|
7521
|
-
|
|
7522
|
-
wabaExternalId
|
|
7523
|
-
phoneNumberId
|
|
7524
|
-
|
|
7525
|
-
clientId?: string | undefined;
|
|
7526
|
-
channelId?: string | undefined;
|
|
7543
|
+
wabaBusinessId?: string | null | undefined;
|
|
7544
|
+
wabaExternalId?: string | null | undefined;
|
|
7545
|
+
phoneNumberId?: string | null | undefined;
|
|
7546
|
+
email?: string | null | undefined;
|
|
7547
|
+
clientId?: string | null | undefined;
|
|
7548
|
+
channelId?: string | null | undefined;
|
|
7527
7549
|
status?: "active" | "pending" | undefined;
|
|
7528
7550
|
apiKey?: string | undefined;
|
|
7529
7551
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
7552
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
7530
7553
|
}>>;
|
|
7531
7554
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
|
7532
7555
|
mobileNumber: z.ZodString;
|
|
@@ -7551,15 +7574,16 @@ export declare const whatsappContract: {
|
|
|
7551
7574
|
additionalCredentials?: any;
|
|
7552
7575
|
senderId?: string | undefined;
|
|
7553
7576
|
whatsapp?: {
|
|
7554
|
-
|
|
7555
|
-
wabaExternalId
|
|
7556
|
-
phoneNumberId
|
|
7557
|
-
|
|
7558
|
-
clientId?: string | undefined;
|
|
7559
|
-
channelId?: string | undefined;
|
|
7577
|
+
wabaBusinessId?: string | null | undefined;
|
|
7578
|
+
wabaExternalId?: string | null | undefined;
|
|
7579
|
+
phoneNumberId?: string | null | undefined;
|
|
7580
|
+
email?: string | null | undefined;
|
|
7581
|
+
clientId?: string | null | undefined;
|
|
7582
|
+
channelId?: string | null | undefined;
|
|
7560
7583
|
status?: "active" | "pending" | undefined;
|
|
7561
7584
|
apiKey?: string | undefined;
|
|
7562
7585
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
7586
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
7563
7587
|
} | undefined;
|
|
7564
7588
|
vonageCredentials?: {
|
|
7565
7589
|
apiKey: string;
|
|
@@ -7576,15 +7600,16 @@ export declare const whatsappContract: {
|
|
|
7576
7600
|
additionalCredentials?: any;
|
|
7577
7601
|
senderId?: string | undefined;
|
|
7578
7602
|
whatsapp?: {
|
|
7579
|
-
|
|
7580
|
-
wabaExternalId
|
|
7581
|
-
phoneNumberId
|
|
7582
|
-
|
|
7583
|
-
clientId?: string | undefined;
|
|
7584
|
-
channelId?: string | undefined;
|
|
7603
|
+
wabaBusinessId?: string | null | undefined;
|
|
7604
|
+
wabaExternalId?: string | null | undefined;
|
|
7605
|
+
phoneNumberId?: string | null | undefined;
|
|
7606
|
+
email?: string | null | undefined;
|
|
7607
|
+
clientId?: string | null | undefined;
|
|
7608
|
+
channelId?: string | null | undefined;
|
|
7585
7609
|
status?: "active" | "pending" | undefined;
|
|
7586
7610
|
apiKey?: string | undefined;
|
|
7587
7611
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
7612
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
7588
7613
|
} | undefined;
|
|
7589
7614
|
vonageCredentials?: {
|
|
7590
7615
|
apiKey: string;
|
|
@@ -7835,15 +7860,16 @@ export declare const whatsappContract: {
|
|
|
7835
7860
|
additionalCredentials?: any;
|
|
7836
7861
|
senderId?: string | undefined;
|
|
7837
7862
|
whatsapp?: {
|
|
7838
|
-
|
|
7839
|
-
wabaExternalId
|
|
7840
|
-
phoneNumberId
|
|
7841
|
-
|
|
7842
|
-
clientId?: string | undefined;
|
|
7843
|
-
channelId?: string | undefined;
|
|
7863
|
+
wabaBusinessId?: string | null | undefined;
|
|
7864
|
+
wabaExternalId?: string | null | undefined;
|
|
7865
|
+
phoneNumberId?: string | null | undefined;
|
|
7866
|
+
email?: string | null | undefined;
|
|
7867
|
+
clientId?: string | null | undefined;
|
|
7868
|
+
channelId?: string | null | undefined;
|
|
7844
7869
|
status?: "active" | "pending" | undefined;
|
|
7845
7870
|
apiKey?: string | undefined;
|
|
7846
7871
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
7872
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
7847
7873
|
} | undefined;
|
|
7848
7874
|
vonageCredentials?: {
|
|
7849
7875
|
apiKey: string;
|
|
@@ -7925,15 +7951,16 @@ export declare const whatsappContract: {
|
|
|
7925
7951
|
additionalCredentials?: any;
|
|
7926
7952
|
senderId?: string | undefined;
|
|
7927
7953
|
whatsapp?: {
|
|
7928
|
-
|
|
7929
|
-
wabaExternalId
|
|
7930
|
-
phoneNumberId
|
|
7931
|
-
|
|
7932
|
-
clientId?: string | undefined;
|
|
7933
|
-
channelId?: string | undefined;
|
|
7954
|
+
wabaBusinessId?: string | null | undefined;
|
|
7955
|
+
wabaExternalId?: string | null | undefined;
|
|
7956
|
+
phoneNumberId?: string | null | undefined;
|
|
7957
|
+
email?: string | null | undefined;
|
|
7958
|
+
clientId?: string | null | undefined;
|
|
7959
|
+
channelId?: string | null | undefined;
|
|
7934
7960
|
status?: "active" | "pending" | undefined;
|
|
7935
7961
|
apiKey?: string | undefined;
|
|
7936
7962
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
7963
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
7937
7964
|
} | undefined;
|
|
7938
7965
|
vonageCredentials?: {
|
|
7939
7966
|
apiKey: string;
|
|
@@ -8579,15 +8606,16 @@ export declare const whatsappContract: {
|
|
|
8579
8606
|
additionalCredentials?: any;
|
|
8580
8607
|
senderId?: string | undefined;
|
|
8581
8608
|
whatsapp?: {
|
|
8582
|
-
|
|
8583
|
-
wabaExternalId
|
|
8584
|
-
phoneNumberId
|
|
8585
|
-
|
|
8586
|
-
clientId?: string | undefined;
|
|
8587
|
-
channelId?: string | undefined;
|
|
8609
|
+
wabaBusinessId?: string | null | undefined;
|
|
8610
|
+
wabaExternalId?: string | null | undefined;
|
|
8611
|
+
phoneNumberId?: string | null | undefined;
|
|
8612
|
+
email?: string | null | undefined;
|
|
8613
|
+
clientId?: string | null | undefined;
|
|
8614
|
+
channelId?: string | null | undefined;
|
|
8588
8615
|
status?: "active" | "pending" | undefined;
|
|
8589
8616
|
apiKey?: string | undefined;
|
|
8590
8617
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
8618
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
8591
8619
|
} | undefined;
|
|
8592
8620
|
vonageCredentials?: {
|
|
8593
8621
|
apiKey: string;
|
|
@@ -9002,15 +9030,16 @@ export declare const whatsappContract: {
|
|
|
9002
9030
|
additionalCredentials?: any;
|
|
9003
9031
|
senderId?: string | undefined;
|
|
9004
9032
|
whatsapp?: {
|
|
9005
|
-
|
|
9006
|
-
wabaExternalId
|
|
9007
|
-
phoneNumberId
|
|
9008
|
-
|
|
9009
|
-
clientId?: string | undefined;
|
|
9010
|
-
channelId?: string | undefined;
|
|
9033
|
+
wabaBusinessId?: string | null | undefined;
|
|
9034
|
+
wabaExternalId?: string | null | undefined;
|
|
9035
|
+
phoneNumberId?: string | null | undefined;
|
|
9036
|
+
email?: string | null | undefined;
|
|
9037
|
+
clientId?: string | null | undefined;
|
|
9038
|
+
channelId?: string | null | undefined;
|
|
9011
9039
|
status?: "active" | "pending" | undefined;
|
|
9012
9040
|
apiKey?: string | undefined;
|
|
9013
9041
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
9042
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
9014
9043
|
} | undefined;
|
|
9015
9044
|
vonageCredentials?: {
|
|
9016
9045
|
apiKey: string;
|
|
@@ -11198,15 +11227,16 @@ export declare const whatsappContract: {
|
|
|
11198
11227
|
additionalCredentials?: any;
|
|
11199
11228
|
senderId?: string | undefined;
|
|
11200
11229
|
whatsapp?: {
|
|
11201
|
-
|
|
11202
|
-
wabaExternalId
|
|
11203
|
-
phoneNumberId
|
|
11204
|
-
|
|
11205
|
-
clientId?: string | undefined;
|
|
11206
|
-
channelId?: string | undefined;
|
|
11230
|
+
wabaBusinessId?: string | null | undefined;
|
|
11231
|
+
wabaExternalId?: string | null | undefined;
|
|
11232
|
+
phoneNumberId?: string | null | undefined;
|
|
11233
|
+
email?: string | null | undefined;
|
|
11234
|
+
clientId?: string | null | undefined;
|
|
11235
|
+
channelId?: string | null | undefined;
|
|
11207
11236
|
status?: "active" | "pending" | undefined;
|
|
11208
11237
|
apiKey?: string | undefined;
|
|
11209
11238
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
11239
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
11210
11240
|
} | undefined;
|
|
11211
11241
|
vonageCredentials?: {
|
|
11212
11242
|
apiKey: string;
|
|
@@ -11958,15 +11988,16 @@ export declare const whatsappContract: {
|
|
|
11958
11988
|
additionalCredentials?: any;
|
|
11959
11989
|
senderId?: string | undefined;
|
|
11960
11990
|
whatsapp?: {
|
|
11961
|
-
|
|
11962
|
-
wabaExternalId
|
|
11963
|
-
phoneNumberId
|
|
11964
|
-
|
|
11965
|
-
clientId?: string | undefined;
|
|
11966
|
-
channelId?: string | undefined;
|
|
11991
|
+
wabaBusinessId?: string | null | undefined;
|
|
11992
|
+
wabaExternalId?: string | null | undefined;
|
|
11993
|
+
phoneNumberId?: string | null | undefined;
|
|
11994
|
+
email?: string | null | undefined;
|
|
11995
|
+
clientId?: string | null | undefined;
|
|
11996
|
+
channelId?: string | null | undefined;
|
|
11967
11997
|
status?: "active" | "pending" | undefined;
|
|
11968
11998
|
apiKey?: string | undefined;
|
|
11969
11999
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
12000
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
11970
12001
|
} | undefined;
|
|
11971
12002
|
vonageCredentials?: {
|
|
11972
12003
|
apiKey: string;
|
|
@@ -12719,15 +12750,16 @@ export declare const whatsappContract: {
|
|
|
12719
12750
|
additionalCredentials?: any;
|
|
12720
12751
|
senderId?: string | undefined;
|
|
12721
12752
|
whatsapp?: {
|
|
12722
|
-
|
|
12723
|
-
wabaExternalId
|
|
12724
|
-
phoneNumberId
|
|
12725
|
-
|
|
12726
|
-
clientId?: string | undefined;
|
|
12727
|
-
channelId?: string | undefined;
|
|
12753
|
+
wabaBusinessId?: string | null | undefined;
|
|
12754
|
+
wabaExternalId?: string | null | undefined;
|
|
12755
|
+
phoneNumberId?: string | null | undefined;
|
|
12756
|
+
email?: string | null | undefined;
|
|
12757
|
+
clientId?: string | null | undefined;
|
|
12758
|
+
channelId?: string | null | undefined;
|
|
12728
12759
|
status?: "active" | "pending" | undefined;
|
|
12729
12760
|
apiKey?: string | undefined;
|
|
12730
12761
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
12762
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
12731
12763
|
} | undefined;
|
|
12732
12764
|
vonageCredentials?: {
|
|
12733
12765
|
apiKey: string;
|
|
@@ -13479,15 +13511,16 @@ export declare const whatsappContract: {
|
|
|
13479
13511
|
additionalCredentials?: any;
|
|
13480
13512
|
senderId?: string | undefined;
|
|
13481
13513
|
whatsapp?: {
|
|
13482
|
-
|
|
13483
|
-
wabaExternalId
|
|
13484
|
-
phoneNumberId
|
|
13485
|
-
|
|
13486
|
-
clientId?: string | undefined;
|
|
13487
|
-
channelId?: string | undefined;
|
|
13514
|
+
wabaBusinessId?: string | null | undefined;
|
|
13515
|
+
wabaExternalId?: string | null | undefined;
|
|
13516
|
+
phoneNumberId?: string | null | undefined;
|
|
13517
|
+
email?: string | null | undefined;
|
|
13518
|
+
clientId?: string | null | undefined;
|
|
13519
|
+
channelId?: string | null | undefined;
|
|
13488
13520
|
status?: "active" | "pending" | undefined;
|
|
13489
13521
|
apiKey?: string | undefined;
|
|
13490
13522
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
13523
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
13491
13524
|
} | undefined;
|
|
13492
13525
|
vonageCredentials?: {
|
|
13493
13526
|
apiKey: string;
|
|
@@ -14240,15 +14273,16 @@ export declare const whatsappContract: {
|
|
|
14240
14273
|
additionalCredentials?: any;
|
|
14241
14274
|
senderId?: string | undefined;
|
|
14242
14275
|
whatsapp?: {
|
|
14243
|
-
|
|
14244
|
-
wabaExternalId
|
|
14245
|
-
phoneNumberId
|
|
14246
|
-
|
|
14247
|
-
clientId?: string | undefined;
|
|
14248
|
-
channelId?: string | undefined;
|
|
14276
|
+
wabaBusinessId?: string | null | undefined;
|
|
14277
|
+
wabaExternalId?: string | null | undefined;
|
|
14278
|
+
phoneNumberId?: string | null | undefined;
|
|
14279
|
+
email?: string | null | undefined;
|
|
14280
|
+
clientId?: string | null | undefined;
|
|
14281
|
+
channelId?: string | null | undefined;
|
|
14249
14282
|
status?: "active" | "pending" | undefined;
|
|
14250
14283
|
apiKey?: string | undefined;
|
|
14251
14284
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
14285
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
14252
14286
|
} | undefined;
|
|
14253
14287
|
vonageCredentials?: {
|
|
14254
14288
|
apiKey: string;
|
|
@@ -15000,15 +15034,16 @@ export declare const whatsappContract: {
|
|
|
15000
15034
|
additionalCredentials?: any;
|
|
15001
15035
|
senderId?: string | undefined;
|
|
15002
15036
|
whatsapp?: {
|
|
15003
|
-
|
|
15004
|
-
wabaExternalId
|
|
15005
|
-
phoneNumberId
|
|
15006
|
-
|
|
15007
|
-
clientId?: string | undefined;
|
|
15008
|
-
channelId?: string | undefined;
|
|
15037
|
+
wabaBusinessId?: string | null | undefined;
|
|
15038
|
+
wabaExternalId?: string | null | undefined;
|
|
15039
|
+
phoneNumberId?: string | null | undefined;
|
|
15040
|
+
email?: string | null | undefined;
|
|
15041
|
+
clientId?: string | null | undefined;
|
|
15042
|
+
channelId?: string | null | undefined;
|
|
15009
15043
|
status?: "active" | "pending" | undefined;
|
|
15010
15044
|
apiKey?: string | undefined;
|
|
15011
15045
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
15046
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
15012
15047
|
} | undefined;
|
|
15013
15048
|
vonageCredentials?: {
|
|
15014
15049
|
apiKey: string;
|
|
@@ -15763,15 +15798,16 @@ export declare const whatsappContract: {
|
|
|
15763
15798
|
additionalCredentials?: any;
|
|
15764
15799
|
senderId?: string | undefined;
|
|
15765
15800
|
whatsapp?: {
|
|
15766
|
-
|
|
15767
|
-
wabaExternalId
|
|
15768
|
-
phoneNumberId
|
|
15769
|
-
|
|
15770
|
-
clientId?: string | undefined;
|
|
15771
|
-
channelId?: string | undefined;
|
|
15801
|
+
wabaBusinessId?: string | null | undefined;
|
|
15802
|
+
wabaExternalId?: string | null | undefined;
|
|
15803
|
+
phoneNumberId?: string | null | undefined;
|
|
15804
|
+
email?: string | null | undefined;
|
|
15805
|
+
clientId?: string | null | undefined;
|
|
15806
|
+
channelId?: string | null | undefined;
|
|
15772
15807
|
status?: "active" | "pending" | undefined;
|
|
15773
15808
|
apiKey?: string | undefined;
|
|
15774
15809
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
15810
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
15775
15811
|
} | undefined;
|
|
15776
15812
|
vonageCredentials?: {
|
|
15777
15813
|
apiKey: string;
|
|
@@ -16523,15 +16559,16 @@ export declare const whatsappContract: {
|
|
|
16523
16559
|
additionalCredentials?: any;
|
|
16524
16560
|
senderId?: string | undefined;
|
|
16525
16561
|
whatsapp?: {
|
|
16526
|
-
|
|
16527
|
-
wabaExternalId
|
|
16528
|
-
phoneNumberId
|
|
16529
|
-
|
|
16530
|
-
clientId?: string | undefined;
|
|
16531
|
-
channelId?: string | undefined;
|
|
16562
|
+
wabaBusinessId?: string | null | undefined;
|
|
16563
|
+
wabaExternalId?: string | null | undefined;
|
|
16564
|
+
phoneNumberId?: string | null | undefined;
|
|
16565
|
+
email?: string | null | undefined;
|
|
16566
|
+
clientId?: string | null | undefined;
|
|
16567
|
+
channelId?: string | null | undefined;
|
|
16532
16568
|
status?: "active" | "pending" | undefined;
|
|
16533
16569
|
apiKey?: string | undefined;
|
|
16534
16570
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
16571
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
16535
16572
|
} | undefined;
|
|
16536
16573
|
vonageCredentials?: {
|
|
16537
16574
|
apiKey: string;
|
|
@@ -17287,15 +17324,16 @@ export declare const whatsappContract: {
|
|
|
17287
17324
|
additionalCredentials?: any;
|
|
17288
17325
|
senderId?: string | undefined;
|
|
17289
17326
|
whatsapp?: {
|
|
17290
|
-
|
|
17291
|
-
wabaExternalId
|
|
17292
|
-
phoneNumberId
|
|
17293
|
-
|
|
17294
|
-
clientId?: string | undefined;
|
|
17295
|
-
channelId?: string | undefined;
|
|
17327
|
+
wabaBusinessId?: string | null | undefined;
|
|
17328
|
+
wabaExternalId?: string | null | undefined;
|
|
17329
|
+
phoneNumberId?: string | null | undefined;
|
|
17330
|
+
email?: string | null | undefined;
|
|
17331
|
+
clientId?: string | null | undefined;
|
|
17332
|
+
channelId?: string | null | undefined;
|
|
17296
17333
|
status?: "active" | "pending" | undefined;
|
|
17297
17334
|
apiKey?: string | undefined;
|
|
17298
17335
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
17336
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
17299
17337
|
} | undefined;
|
|
17300
17338
|
vonageCredentials?: {
|
|
17301
17339
|
apiKey: string;
|
|
@@ -18047,15 +18085,16 @@ export declare const whatsappContract: {
|
|
|
18047
18085
|
additionalCredentials?: any;
|
|
18048
18086
|
senderId?: string | undefined;
|
|
18049
18087
|
whatsapp?: {
|
|
18050
|
-
|
|
18051
|
-
wabaExternalId
|
|
18052
|
-
phoneNumberId
|
|
18053
|
-
|
|
18054
|
-
clientId?: string | undefined;
|
|
18055
|
-
channelId?: string | undefined;
|
|
18088
|
+
wabaBusinessId?: string | null | undefined;
|
|
18089
|
+
wabaExternalId?: string | null | undefined;
|
|
18090
|
+
phoneNumberId?: string | null | undefined;
|
|
18091
|
+
email?: string | null | undefined;
|
|
18092
|
+
clientId?: string | null | undefined;
|
|
18093
|
+
channelId?: string | null | undefined;
|
|
18056
18094
|
status?: "active" | "pending" | undefined;
|
|
18057
18095
|
apiKey?: string | undefined;
|
|
18058
18096
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
18097
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
18059
18098
|
} | undefined;
|
|
18060
18099
|
vonageCredentials?: {
|
|
18061
18100
|
apiKey: string;
|
|
@@ -18723,35 +18762,38 @@ export declare const whatsappContract: {
|
|
|
18723
18762
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
|
18724
18763
|
senderId: z.ZodOptional<z.ZodString>;
|
|
18725
18764
|
whatsapp: z.ZodOptional<z.ZodObject<{
|
|
18726
|
-
wabaBusinessId: z.ZodOptional<z.ZodString
|
|
18727
|
-
wabaExternalId: z.ZodString
|
|
18728
|
-
phoneNumberId: z.ZodString
|
|
18729
|
-
email: z.ZodString
|
|
18730
|
-
clientId: z.ZodOptional<z.ZodString
|
|
18731
|
-
channelId: z.ZodOptional<z.ZodString
|
|
18765
|
+
wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
18766
|
+
wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
18767
|
+
phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
18768
|
+
email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
18769
|
+
clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
18770
|
+
channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
18732
18771
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
|
18733
18772
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
18734
18773
|
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
|
18774
|
+
integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
|
|
18735
18775
|
}, "strip", z.ZodTypeAny, {
|
|
18736
|
-
|
|
18737
|
-
wabaExternalId
|
|
18738
|
-
phoneNumberId
|
|
18739
|
-
|
|
18740
|
-
clientId?: string | undefined;
|
|
18741
|
-
channelId?: string | undefined;
|
|
18776
|
+
wabaBusinessId?: string | null | undefined;
|
|
18777
|
+
wabaExternalId?: string | null | undefined;
|
|
18778
|
+
phoneNumberId?: string | null | undefined;
|
|
18779
|
+
email?: string | null | undefined;
|
|
18780
|
+
clientId?: string | null | undefined;
|
|
18781
|
+
channelId?: string | null | undefined;
|
|
18742
18782
|
status?: "active" | "pending" | undefined;
|
|
18743
18783
|
apiKey?: string | undefined;
|
|
18744
18784
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
18785
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
18745
18786
|
}, {
|
|
18746
|
-
|
|
18747
|
-
wabaExternalId
|
|
18748
|
-
phoneNumberId
|
|
18749
|
-
|
|
18750
|
-
clientId?: string | undefined;
|
|
18751
|
-
channelId?: string | undefined;
|
|
18787
|
+
wabaBusinessId?: string | null | undefined;
|
|
18788
|
+
wabaExternalId?: string | null | undefined;
|
|
18789
|
+
phoneNumberId?: string | null | undefined;
|
|
18790
|
+
email?: string | null | undefined;
|
|
18791
|
+
clientId?: string | null | undefined;
|
|
18792
|
+
channelId?: string | null | undefined;
|
|
18752
18793
|
status?: "active" | "pending" | undefined;
|
|
18753
18794
|
apiKey?: string | undefined;
|
|
18754
18795
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
18796
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
18755
18797
|
}>>;
|
|
18756
18798
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
|
18757
18799
|
mobileNumber: z.ZodString;
|
|
@@ -18776,15 +18818,16 @@ export declare const whatsappContract: {
|
|
|
18776
18818
|
additionalCredentials?: any;
|
|
18777
18819
|
senderId?: string | undefined;
|
|
18778
18820
|
whatsapp?: {
|
|
18779
|
-
|
|
18780
|
-
wabaExternalId
|
|
18781
|
-
phoneNumberId
|
|
18782
|
-
|
|
18783
|
-
clientId?: string | undefined;
|
|
18784
|
-
channelId?: string | undefined;
|
|
18821
|
+
wabaBusinessId?: string | null | undefined;
|
|
18822
|
+
wabaExternalId?: string | null | undefined;
|
|
18823
|
+
phoneNumberId?: string | null | undefined;
|
|
18824
|
+
email?: string | null | undefined;
|
|
18825
|
+
clientId?: string | null | undefined;
|
|
18826
|
+
channelId?: string | null | undefined;
|
|
18785
18827
|
status?: "active" | "pending" | undefined;
|
|
18786
18828
|
apiKey?: string | undefined;
|
|
18787
18829
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
18830
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
18788
18831
|
} | undefined;
|
|
18789
18832
|
vonageCredentials?: {
|
|
18790
18833
|
apiKey: string;
|
|
@@ -18801,15 +18844,16 @@ export declare const whatsappContract: {
|
|
|
18801
18844
|
additionalCredentials?: any;
|
|
18802
18845
|
senderId?: string | undefined;
|
|
18803
18846
|
whatsapp?: {
|
|
18804
|
-
|
|
18805
|
-
wabaExternalId
|
|
18806
|
-
phoneNumberId
|
|
18807
|
-
|
|
18808
|
-
clientId?: string | undefined;
|
|
18809
|
-
channelId?: string | undefined;
|
|
18847
|
+
wabaBusinessId?: string | null | undefined;
|
|
18848
|
+
wabaExternalId?: string | null | undefined;
|
|
18849
|
+
phoneNumberId?: string | null | undefined;
|
|
18850
|
+
email?: string | null | undefined;
|
|
18851
|
+
clientId?: string | null | undefined;
|
|
18852
|
+
channelId?: string | null | undefined;
|
|
18810
18853
|
status?: "active" | "pending" | undefined;
|
|
18811
18854
|
apiKey?: string | undefined;
|
|
18812
18855
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
18856
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
18813
18857
|
} | undefined;
|
|
18814
18858
|
vonageCredentials?: {
|
|
18815
18859
|
apiKey: string;
|
|
@@ -18856,15 +18900,16 @@ export declare const whatsappContract: {
|
|
|
18856
18900
|
additionalCredentials?: any;
|
|
18857
18901
|
senderId?: string | undefined;
|
|
18858
18902
|
whatsapp?: {
|
|
18859
|
-
|
|
18860
|
-
wabaExternalId
|
|
18861
|
-
phoneNumberId
|
|
18862
|
-
|
|
18863
|
-
clientId?: string | undefined;
|
|
18864
|
-
channelId?: string | undefined;
|
|
18903
|
+
wabaBusinessId?: string | null | undefined;
|
|
18904
|
+
wabaExternalId?: string | null | undefined;
|
|
18905
|
+
phoneNumberId?: string | null | undefined;
|
|
18906
|
+
email?: string | null | undefined;
|
|
18907
|
+
clientId?: string | null | undefined;
|
|
18908
|
+
channelId?: string | null | undefined;
|
|
18865
18909
|
status?: "active" | "pending" | undefined;
|
|
18866
18910
|
apiKey?: string | undefined;
|
|
18867
18911
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
18912
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
18868
18913
|
} | undefined;
|
|
18869
18914
|
vonageCredentials?: {
|
|
18870
18915
|
apiKey: string;
|
|
@@ -18899,15 +18944,16 @@ export declare const whatsappContract: {
|
|
|
18899
18944
|
additionalCredentials?: any;
|
|
18900
18945
|
senderId?: string | undefined;
|
|
18901
18946
|
whatsapp?: {
|
|
18902
|
-
|
|
18903
|
-
wabaExternalId
|
|
18904
|
-
phoneNumberId
|
|
18905
|
-
|
|
18906
|
-
clientId?: string | undefined;
|
|
18907
|
-
channelId?: string | undefined;
|
|
18947
|
+
wabaBusinessId?: string | null | undefined;
|
|
18948
|
+
wabaExternalId?: string | null | undefined;
|
|
18949
|
+
phoneNumberId?: string | null | undefined;
|
|
18950
|
+
email?: string | null | undefined;
|
|
18951
|
+
clientId?: string | null | undefined;
|
|
18952
|
+
channelId?: string | null | undefined;
|
|
18908
18953
|
status?: "active" | "pending" | undefined;
|
|
18909
18954
|
apiKey?: string | undefined;
|
|
18910
18955
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
18956
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
18911
18957
|
} | undefined;
|
|
18912
18958
|
vonageCredentials?: {
|
|
18913
18959
|
apiKey: string;
|
|
@@ -18947,35 +18993,38 @@ export declare const whatsappContract: {
|
|
|
18947
18993
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
|
18948
18994
|
senderId: z.ZodOptional<z.ZodString>;
|
|
18949
18995
|
whatsapp: z.ZodOptional<z.ZodObject<{
|
|
18950
|
-
wabaBusinessId: z.ZodOptional<z.ZodString
|
|
18951
|
-
wabaExternalId: z.ZodString
|
|
18952
|
-
phoneNumberId: z.ZodString
|
|
18953
|
-
email: z.ZodString
|
|
18954
|
-
clientId: z.ZodOptional<z.ZodString
|
|
18955
|
-
channelId: z.ZodOptional<z.ZodString
|
|
18996
|
+
wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
18997
|
+
wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
18998
|
+
phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
18999
|
+
email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
19000
|
+
clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
19001
|
+
channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
18956
19002
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
|
18957
19003
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
18958
19004
|
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
|
19005
|
+
integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
|
|
18959
19006
|
}, "strip", z.ZodTypeAny, {
|
|
18960
|
-
|
|
18961
|
-
wabaExternalId
|
|
18962
|
-
phoneNumberId
|
|
18963
|
-
|
|
18964
|
-
clientId?: string | undefined;
|
|
18965
|
-
channelId?: string | undefined;
|
|
19007
|
+
wabaBusinessId?: string | null | undefined;
|
|
19008
|
+
wabaExternalId?: string | null | undefined;
|
|
19009
|
+
phoneNumberId?: string | null | undefined;
|
|
19010
|
+
email?: string | null | undefined;
|
|
19011
|
+
clientId?: string | null | undefined;
|
|
19012
|
+
channelId?: string | null | undefined;
|
|
18966
19013
|
status?: "active" | "pending" | undefined;
|
|
18967
19014
|
apiKey?: string | undefined;
|
|
18968
19015
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
19016
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
18969
19017
|
}, {
|
|
18970
|
-
|
|
18971
|
-
wabaExternalId
|
|
18972
|
-
phoneNumberId
|
|
18973
|
-
|
|
18974
|
-
clientId?: string | undefined;
|
|
18975
|
-
channelId?: string | undefined;
|
|
19018
|
+
wabaBusinessId?: string | null | undefined;
|
|
19019
|
+
wabaExternalId?: string | null | undefined;
|
|
19020
|
+
phoneNumberId?: string | null | undefined;
|
|
19021
|
+
email?: string | null | undefined;
|
|
19022
|
+
clientId?: string | null | undefined;
|
|
19023
|
+
channelId?: string | null | undefined;
|
|
18976
19024
|
status?: "active" | "pending" | undefined;
|
|
18977
19025
|
apiKey?: string | undefined;
|
|
18978
19026
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
19027
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
18979
19028
|
}>>;
|
|
18980
19029
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
|
18981
19030
|
mobileNumber: z.ZodString;
|
|
@@ -19000,15 +19049,16 @@ export declare const whatsappContract: {
|
|
|
19000
19049
|
additionalCredentials?: any;
|
|
19001
19050
|
senderId?: string | undefined;
|
|
19002
19051
|
whatsapp?: {
|
|
19003
|
-
|
|
19004
|
-
wabaExternalId
|
|
19005
|
-
phoneNumberId
|
|
19006
|
-
|
|
19007
|
-
clientId?: string | undefined;
|
|
19008
|
-
channelId?: string | undefined;
|
|
19052
|
+
wabaBusinessId?: string | null | undefined;
|
|
19053
|
+
wabaExternalId?: string | null | undefined;
|
|
19054
|
+
phoneNumberId?: string | null | undefined;
|
|
19055
|
+
email?: string | null | undefined;
|
|
19056
|
+
clientId?: string | null | undefined;
|
|
19057
|
+
channelId?: string | null | undefined;
|
|
19009
19058
|
status?: "active" | "pending" | undefined;
|
|
19010
19059
|
apiKey?: string | undefined;
|
|
19011
19060
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
19061
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
19012
19062
|
} | undefined;
|
|
19013
19063
|
vonageCredentials?: {
|
|
19014
19064
|
apiKey: string;
|
|
@@ -19025,15 +19075,16 @@ export declare const whatsappContract: {
|
|
|
19025
19075
|
additionalCredentials?: any;
|
|
19026
19076
|
senderId?: string | undefined;
|
|
19027
19077
|
whatsapp?: {
|
|
19028
|
-
|
|
19029
|
-
wabaExternalId
|
|
19030
|
-
phoneNumberId
|
|
19031
|
-
|
|
19032
|
-
clientId?: string | undefined;
|
|
19033
|
-
channelId?: string | undefined;
|
|
19078
|
+
wabaBusinessId?: string | null | undefined;
|
|
19079
|
+
wabaExternalId?: string | null | undefined;
|
|
19080
|
+
phoneNumberId?: string | null | undefined;
|
|
19081
|
+
email?: string | null | undefined;
|
|
19082
|
+
clientId?: string | null | undefined;
|
|
19083
|
+
channelId?: string | null | undefined;
|
|
19034
19084
|
status?: "active" | "pending" | undefined;
|
|
19035
19085
|
apiKey?: string | undefined;
|
|
19036
19086
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
19087
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
19037
19088
|
} | undefined;
|
|
19038
19089
|
vonageCredentials?: {
|
|
19039
19090
|
apiKey: string;
|
|
@@ -19080,15 +19131,16 @@ export declare const whatsappContract: {
|
|
|
19080
19131
|
additionalCredentials?: any;
|
|
19081
19132
|
senderId?: string | undefined;
|
|
19082
19133
|
whatsapp?: {
|
|
19083
|
-
|
|
19084
|
-
wabaExternalId
|
|
19085
|
-
phoneNumberId
|
|
19086
|
-
|
|
19087
|
-
clientId?: string | undefined;
|
|
19088
|
-
channelId?: string | undefined;
|
|
19134
|
+
wabaBusinessId?: string | null | undefined;
|
|
19135
|
+
wabaExternalId?: string | null | undefined;
|
|
19136
|
+
phoneNumberId?: string | null | undefined;
|
|
19137
|
+
email?: string | null | undefined;
|
|
19138
|
+
clientId?: string | null | undefined;
|
|
19139
|
+
channelId?: string | null | undefined;
|
|
19089
19140
|
status?: "active" | "pending" | undefined;
|
|
19090
19141
|
apiKey?: string | undefined;
|
|
19091
19142
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
19143
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
19092
19144
|
} | undefined;
|
|
19093
19145
|
vonageCredentials?: {
|
|
19094
19146
|
apiKey: string;
|
|
@@ -19123,15 +19175,16 @@ export declare const whatsappContract: {
|
|
|
19123
19175
|
additionalCredentials?: any;
|
|
19124
19176
|
senderId?: string | undefined;
|
|
19125
19177
|
whatsapp?: {
|
|
19126
|
-
|
|
19127
|
-
wabaExternalId
|
|
19128
|
-
phoneNumberId
|
|
19129
|
-
|
|
19130
|
-
clientId?: string | undefined;
|
|
19131
|
-
channelId?: string | undefined;
|
|
19178
|
+
wabaBusinessId?: string | null | undefined;
|
|
19179
|
+
wabaExternalId?: string | null | undefined;
|
|
19180
|
+
phoneNumberId?: string | null | undefined;
|
|
19181
|
+
email?: string | null | undefined;
|
|
19182
|
+
clientId?: string | null | undefined;
|
|
19183
|
+
channelId?: string | null | undefined;
|
|
19132
19184
|
status?: "active" | "pending" | undefined;
|
|
19133
19185
|
apiKey?: string | undefined;
|
|
19134
19186
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
19187
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
19135
19188
|
} | undefined;
|
|
19136
19189
|
vonageCredentials?: {
|
|
19137
19190
|
apiKey: string;
|
|
@@ -19168,15 +19221,16 @@ export declare const whatsappContract: {
|
|
|
19168
19221
|
additionalCredentials?: any;
|
|
19169
19222
|
senderId?: string | undefined;
|
|
19170
19223
|
whatsapp?: {
|
|
19171
|
-
|
|
19172
|
-
wabaExternalId
|
|
19173
|
-
phoneNumberId
|
|
19174
|
-
|
|
19175
|
-
clientId?: string | undefined;
|
|
19176
|
-
channelId?: string | undefined;
|
|
19224
|
+
wabaBusinessId?: string | null | undefined;
|
|
19225
|
+
wabaExternalId?: string | null | undefined;
|
|
19226
|
+
phoneNumberId?: string | null | undefined;
|
|
19227
|
+
email?: string | null | undefined;
|
|
19228
|
+
clientId?: string | null | undefined;
|
|
19229
|
+
channelId?: string | null | undefined;
|
|
19177
19230
|
status?: "active" | "pending" | undefined;
|
|
19178
19231
|
apiKey?: string | undefined;
|
|
19179
19232
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
19233
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
19180
19234
|
} | undefined;
|
|
19181
19235
|
vonageCredentials?: {
|
|
19182
19236
|
apiKey: string;
|
|
@@ -19214,15 +19268,16 @@ export declare const whatsappContract: {
|
|
|
19214
19268
|
additionalCredentials?: any;
|
|
19215
19269
|
senderId?: string | undefined;
|
|
19216
19270
|
whatsapp?: {
|
|
19217
|
-
|
|
19218
|
-
wabaExternalId
|
|
19219
|
-
phoneNumberId
|
|
19220
|
-
|
|
19221
|
-
clientId?: string | undefined;
|
|
19222
|
-
channelId?: string | undefined;
|
|
19271
|
+
wabaBusinessId?: string | null | undefined;
|
|
19272
|
+
wabaExternalId?: string | null | undefined;
|
|
19273
|
+
phoneNumberId?: string | null | undefined;
|
|
19274
|
+
email?: string | null | undefined;
|
|
19275
|
+
clientId?: string | null | undefined;
|
|
19276
|
+
channelId?: string | null | undefined;
|
|
19223
19277
|
status?: "active" | "pending" | undefined;
|
|
19224
19278
|
apiKey?: string | undefined;
|
|
19225
19279
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
19280
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
19226
19281
|
} | undefined;
|
|
19227
19282
|
vonageCredentials?: {
|
|
19228
19283
|
apiKey: string;
|
|
@@ -19284,35 +19339,38 @@ export declare const whatsappContract: {
|
|
|
19284
19339
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
|
19285
19340
|
senderId: z.ZodOptional<z.ZodString>;
|
|
19286
19341
|
whatsapp: z.ZodOptional<z.ZodObject<{
|
|
19287
|
-
wabaBusinessId: z.ZodOptional<z.ZodString
|
|
19288
|
-
wabaExternalId: z.ZodString
|
|
19289
|
-
phoneNumberId: z.ZodString
|
|
19290
|
-
email: z.ZodString
|
|
19291
|
-
clientId: z.ZodOptional<z.ZodString
|
|
19292
|
-
channelId: z.ZodOptional<z.ZodString
|
|
19342
|
+
wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
19343
|
+
wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
19344
|
+
phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
19345
|
+
email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
19346
|
+
clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
19347
|
+
channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
19293
19348
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
|
19294
19349
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
19295
19350
|
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
|
19351
|
+
integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
|
|
19296
19352
|
}, "strip", z.ZodTypeAny, {
|
|
19297
|
-
|
|
19298
|
-
wabaExternalId
|
|
19299
|
-
phoneNumberId
|
|
19300
|
-
|
|
19301
|
-
clientId?: string | undefined;
|
|
19302
|
-
channelId?: string | undefined;
|
|
19353
|
+
wabaBusinessId?: string | null | undefined;
|
|
19354
|
+
wabaExternalId?: string | null | undefined;
|
|
19355
|
+
phoneNumberId?: string | null | undefined;
|
|
19356
|
+
email?: string | null | undefined;
|
|
19357
|
+
clientId?: string | null | undefined;
|
|
19358
|
+
channelId?: string | null | undefined;
|
|
19303
19359
|
status?: "active" | "pending" | undefined;
|
|
19304
19360
|
apiKey?: string | undefined;
|
|
19305
19361
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
19362
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
19306
19363
|
}, {
|
|
19307
|
-
|
|
19308
|
-
wabaExternalId
|
|
19309
|
-
phoneNumberId
|
|
19310
|
-
|
|
19311
|
-
clientId?: string | undefined;
|
|
19312
|
-
channelId?: string | undefined;
|
|
19364
|
+
wabaBusinessId?: string | null | undefined;
|
|
19365
|
+
wabaExternalId?: string | null | undefined;
|
|
19366
|
+
phoneNumberId?: string | null | undefined;
|
|
19367
|
+
email?: string | null | undefined;
|
|
19368
|
+
clientId?: string | null | undefined;
|
|
19369
|
+
channelId?: string | null | undefined;
|
|
19313
19370
|
status?: "active" | "pending" | undefined;
|
|
19314
19371
|
apiKey?: string | undefined;
|
|
19315
19372
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
19373
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
19316
19374
|
}>>;
|
|
19317
19375
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
|
19318
19376
|
mobileNumber: z.ZodString;
|
|
@@ -19337,15 +19395,16 @@ export declare const whatsappContract: {
|
|
|
19337
19395
|
additionalCredentials?: any;
|
|
19338
19396
|
senderId?: string | undefined;
|
|
19339
19397
|
whatsapp?: {
|
|
19340
|
-
|
|
19341
|
-
wabaExternalId
|
|
19342
|
-
phoneNumberId
|
|
19343
|
-
|
|
19344
|
-
clientId?: string | undefined;
|
|
19345
|
-
channelId?: string | undefined;
|
|
19398
|
+
wabaBusinessId?: string | null | undefined;
|
|
19399
|
+
wabaExternalId?: string | null | undefined;
|
|
19400
|
+
phoneNumberId?: string | null | undefined;
|
|
19401
|
+
email?: string | null | undefined;
|
|
19402
|
+
clientId?: string | null | undefined;
|
|
19403
|
+
channelId?: string | null | undefined;
|
|
19346
19404
|
status?: "active" | "pending" | undefined;
|
|
19347
19405
|
apiKey?: string | undefined;
|
|
19348
19406
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
19407
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
19349
19408
|
} | undefined;
|
|
19350
19409
|
vonageCredentials?: {
|
|
19351
19410
|
apiKey: string;
|
|
@@ -19362,15 +19421,16 @@ export declare const whatsappContract: {
|
|
|
19362
19421
|
additionalCredentials?: any;
|
|
19363
19422
|
senderId?: string | undefined;
|
|
19364
19423
|
whatsapp?: {
|
|
19365
|
-
|
|
19366
|
-
wabaExternalId
|
|
19367
|
-
phoneNumberId
|
|
19368
|
-
|
|
19369
|
-
clientId?: string | undefined;
|
|
19370
|
-
channelId?: string | undefined;
|
|
19424
|
+
wabaBusinessId?: string | null | undefined;
|
|
19425
|
+
wabaExternalId?: string | null | undefined;
|
|
19426
|
+
phoneNumberId?: string | null | undefined;
|
|
19427
|
+
email?: string | null | undefined;
|
|
19428
|
+
clientId?: string | null | undefined;
|
|
19429
|
+
channelId?: string | null | undefined;
|
|
19371
19430
|
status?: "active" | "pending" | undefined;
|
|
19372
19431
|
apiKey?: string | undefined;
|
|
19373
19432
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
19433
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
19374
19434
|
} | undefined;
|
|
19375
19435
|
vonageCredentials?: {
|
|
19376
19436
|
apiKey: string;
|
|
@@ -19417,15 +19477,16 @@ export declare const whatsappContract: {
|
|
|
19417
19477
|
additionalCredentials?: any;
|
|
19418
19478
|
senderId?: string | undefined;
|
|
19419
19479
|
whatsapp?: {
|
|
19420
|
-
|
|
19421
|
-
wabaExternalId
|
|
19422
|
-
phoneNumberId
|
|
19423
|
-
|
|
19424
|
-
clientId?: string | undefined;
|
|
19425
|
-
channelId?: string | undefined;
|
|
19480
|
+
wabaBusinessId?: string | null | undefined;
|
|
19481
|
+
wabaExternalId?: string | null | undefined;
|
|
19482
|
+
phoneNumberId?: string | null | undefined;
|
|
19483
|
+
email?: string | null | undefined;
|
|
19484
|
+
clientId?: string | null | undefined;
|
|
19485
|
+
channelId?: string | null | undefined;
|
|
19426
19486
|
status?: "active" | "pending" | undefined;
|
|
19427
19487
|
apiKey?: string | undefined;
|
|
19428
19488
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
19489
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
19429
19490
|
} | undefined;
|
|
19430
19491
|
vonageCredentials?: {
|
|
19431
19492
|
apiKey: string;
|
|
@@ -19460,15 +19521,16 @@ export declare const whatsappContract: {
|
|
|
19460
19521
|
additionalCredentials?: any;
|
|
19461
19522
|
senderId?: string | undefined;
|
|
19462
19523
|
whatsapp?: {
|
|
19463
|
-
|
|
19464
|
-
wabaExternalId
|
|
19465
|
-
phoneNumberId
|
|
19466
|
-
|
|
19467
|
-
clientId?: string | undefined;
|
|
19468
|
-
channelId?: string | undefined;
|
|
19524
|
+
wabaBusinessId?: string | null | undefined;
|
|
19525
|
+
wabaExternalId?: string | null | undefined;
|
|
19526
|
+
phoneNumberId?: string | null | undefined;
|
|
19527
|
+
email?: string | null | undefined;
|
|
19528
|
+
clientId?: string | null | undefined;
|
|
19529
|
+
channelId?: string | null | undefined;
|
|
19469
19530
|
status?: "active" | "pending" | undefined;
|
|
19470
19531
|
apiKey?: string | undefined;
|
|
19471
19532
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
19533
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
19472
19534
|
} | undefined;
|
|
19473
19535
|
vonageCredentials?: {
|
|
19474
19536
|
apiKey: string;
|
|
@@ -19508,35 +19570,38 @@ export declare const whatsappContract: {
|
|
|
19508
19570
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
|
19509
19571
|
senderId: z.ZodOptional<z.ZodString>;
|
|
19510
19572
|
whatsapp: z.ZodOptional<z.ZodObject<{
|
|
19511
|
-
wabaBusinessId: z.ZodOptional<z.ZodString
|
|
19512
|
-
wabaExternalId: z.ZodString
|
|
19513
|
-
phoneNumberId: z.ZodString
|
|
19514
|
-
email: z.ZodString
|
|
19515
|
-
clientId: z.ZodOptional<z.ZodString
|
|
19516
|
-
channelId: z.ZodOptional<z.ZodString
|
|
19573
|
+
wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
19574
|
+
wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
19575
|
+
phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
19576
|
+
email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
19577
|
+
clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
19578
|
+
channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
19517
19579
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
|
19518
19580
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
19519
19581
|
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
|
19582
|
+
integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
|
|
19520
19583
|
}, "strip", z.ZodTypeAny, {
|
|
19521
|
-
|
|
19522
|
-
wabaExternalId
|
|
19523
|
-
phoneNumberId
|
|
19524
|
-
|
|
19525
|
-
clientId?: string | undefined;
|
|
19526
|
-
channelId?: string | undefined;
|
|
19584
|
+
wabaBusinessId?: string | null | undefined;
|
|
19585
|
+
wabaExternalId?: string | null | undefined;
|
|
19586
|
+
phoneNumberId?: string | null | undefined;
|
|
19587
|
+
email?: string | null | undefined;
|
|
19588
|
+
clientId?: string | null | undefined;
|
|
19589
|
+
channelId?: string | null | undefined;
|
|
19527
19590
|
status?: "active" | "pending" | undefined;
|
|
19528
19591
|
apiKey?: string | undefined;
|
|
19529
19592
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
19593
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
19530
19594
|
}, {
|
|
19531
|
-
|
|
19532
|
-
wabaExternalId
|
|
19533
|
-
phoneNumberId
|
|
19534
|
-
|
|
19535
|
-
clientId?: string | undefined;
|
|
19536
|
-
channelId?: string | undefined;
|
|
19595
|
+
wabaBusinessId?: string | null | undefined;
|
|
19596
|
+
wabaExternalId?: string | null | undefined;
|
|
19597
|
+
phoneNumberId?: string | null | undefined;
|
|
19598
|
+
email?: string | null | undefined;
|
|
19599
|
+
clientId?: string | null | undefined;
|
|
19600
|
+
channelId?: string | null | undefined;
|
|
19537
19601
|
status?: "active" | "pending" | undefined;
|
|
19538
19602
|
apiKey?: string | undefined;
|
|
19539
19603
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
19604
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
19540
19605
|
}>>;
|
|
19541
19606
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
|
19542
19607
|
mobileNumber: z.ZodString;
|
|
@@ -19561,15 +19626,16 @@ export declare const whatsappContract: {
|
|
|
19561
19626
|
additionalCredentials?: any;
|
|
19562
19627
|
senderId?: string | undefined;
|
|
19563
19628
|
whatsapp?: {
|
|
19564
|
-
|
|
19565
|
-
wabaExternalId
|
|
19566
|
-
phoneNumberId
|
|
19567
|
-
|
|
19568
|
-
clientId?: string | undefined;
|
|
19569
|
-
channelId?: string | undefined;
|
|
19629
|
+
wabaBusinessId?: string | null | undefined;
|
|
19630
|
+
wabaExternalId?: string | null | undefined;
|
|
19631
|
+
phoneNumberId?: string | null | undefined;
|
|
19632
|
+
email?: string | null | undefined;
|
|
19633
|
+
clientId?: string | null | undefined;
|
|
19634
|
+
channelId?: string | null | undefined;
|
|
19570
19635
|
status?: "active" | "pending" | undefined;
|
|
19571
19636
|
apiKey?: string | undefined;
|
|
19572
19637
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
19638
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
19573
19639
|
} | undefined;
|
|
19574
19640
|
vonageCredentials?: {
|
|
19575
19641
|
apiKey: string;
|
|
@@ -19586,15 +19652,16 @@ export declare const whatsappContract: {
|
|
|
19586
19652
|
additionalCredentials?: any;
|
|
19587
19653
|
senderId?: string | undefined;
|
|
19588
19654
|
whatsapp?: {
|
|
19589
|
-
|
|
19590
|
-
wabaExternalId
|
|
19591
|
-
phoneNumberId
|
|
19592
|
-
|
|
19593
|
-
clientId?: string | undefined;
|
|
19594
|
-
channelId?: string | undefined;
|
|
19655
|
+
wabaBusinessId?: string | null | undefined;
|
|
19656
|
+
wabaExternalId?: string | null | undefined;
|
|
19657
|
+
phoneNumberId?: string | null | undefined;
|
|
19658
|
+
email?: string | null | undefined;
|
|
19659
|
+
clientId?: string | null | undefined;
|
|
19660
|
+
channelId?: string | null | undefined;
|
|
19595
19661
|
status?: "active" | "pending" | undefined;
|
|
19596
19662
|
apiKey?: string | undefined;
|
|
19597
19663
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
19664
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
19598
19665
|
} | undefined;
|
|
19599
19666
|
vonageCredentials?: {
|
|
19600
19667
|
apiKey: string;
|
|
@@ -19641,15 +19708,16 @@ export declare const whatsappContract: {
|
|
|
19641
19708
|
additionalCredentials?: any;
|
|
19642
19709
|
senderId?: string | undefined;
|
|
19643
19710
|
whatsapp?: {
|
|
19644
|
-
|
|
19645
|
-
wabaExternalId
|
|
19646
|
-
phoneNumberId
|
|
19647
|
-
|
|
19648
|
-
clientId?: string | undefined;
|
|
19649
|
-
channelId?: string | undefined;
|
|
19711
|
+
wabaBusinessId?: string | null | undefined;
|
|
19712
|
+
wabaExternalId?: string | null | undefined;
|
|
19713
|
+
phoneNumberId?: string | null | undefined;
|
|
19714
|
+
email?: string | null | undefined;
|
|
19715
|
+
clientId?: string | null | undefined;
|
|
19716
|
+
channelId?: string | null | undefined;
|
|
19650
19717
|
status?: "active" | "pending" | undefined;
|
|
19651
19718
|
apiKey?: string | undefined;
|
|
19652
19719
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
19720
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
19653
19721
|
} | undefined;
|
|
19654
19722
|
vonageCredentials?: {
|
|
19655
19723
|
apiKey: string;
|
|
@@ -19684,15 +19752,16 @@ export declare const whatsappContract: {
|
|
|
19684
19752
|
additionalCredentials?: any;
|
|
19685
19753
|
senderId?: string | undefined;
|
|
19686
19754
|
whatsapp?: {
|
|
19687
|
-
|
|
19688
|
-
wabaExternalId
|
|
19689
|
-
phoneNumberId
|
|
19690
|
-
|
|
19691
|
-
clientId?: string | undefined;
|
|
19692
|
-
channelId?: string | undefined;
|
|
19755
|
+
wabaBusinessId?: string | null | undefined;
|
|
19756
|
+
wabaExternalId?: string | null | undefined;
|
|
19757
|
+
phoneNumberId?: string | null | undefined;
|
|
19758
|
+
email?: string | null | undefined;
|
|
19759
|
+
clientId?: string | null | undefined;
|
|
19760
|
+
channelId?: string | null | undefined;
|
|
19693
19761
|
status?: "active" | "pending" | undefined;
|
|
19694
19762
|
apiKey?: string | undefined;
|
|
19695
19763
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
19764
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
19696
19765
|
} | undefined;
|
|
19697
19766
|
vonageCredentials?: {
|
|
19698
19767
|
apiKey: string;
|
|
@@ -19729,15 +19798,16 @@ export declare const whatsappContract: {
|
|
|
19729
19798
|
additionalCredentials?: any;
|
|
19730
19799
|
senderId?: string | undefined;
|
|
19731
19800
|
whatsapp?: {
|
|
19732
|
-
|
|
19733
|
-
wabaExternalId
|
|
19734
|
-
phoneNumberId
|
|
19735
|
-
|
|
19736
|
-
clientId?: string | undefined;
|
|
19737
|
-
channelId?: string | undefined;
|
|
19801
|
+
wabaBusinessId?: string | null | undefined;
|
|
19802
|
+
wabaExternalId?: string | null | undefined;
|
|
19803
|
+
phoneNumberId?: string | null | undefined;
|
|
19804
|
+
email?: string | null | undefined;
|
|
19805
|
+
clientId?: string | null | undefined;
|
|
19806
|
+
channelId?: string | null | undefined;
|
|
19738
19807
|
status?: "active" | "pending" | undefined;
|
|
19739
19808
|
apiKey?: string | undefined;
|
|
19740
19809
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
19810
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
19741
19811
|
} | undefined;
|
|
19742
19812
|
vonageCredentials?: {
|
|
19743
19813
|
apiKey: string;
|
|
@@ -19775,15 +19845,16 @@ export declare const whatsappContract: {
|
|
|
19775
19845
|
additionalCredentials?: any;
|
|
19776
19846
|
senderId?: string | undefined;
|
|
19777
19847
|
whatsapp?: {
|
|
19778
|
-
|
|
19779
|
-
wabaExternalId
|
|
19780
|
-
phoneNumberId
|
|
19781
|
-
|
|
19782
|
-
clientId?: string | undefined;
|
|
19783
|
-
channelId?: string | undefined;
|
|
19848
|
+
wabaBusinessId?: string | null | undefined;
|
|
19849
|
+
wabaExternalId?: string | null | undefined;
|
|
19850
|
+
phoneNumberId?: string | null | undefined;
|
|
19851
|
+
email?: string | null | undefined;
|
|
19852
|
+
clientId?: string | null | undefined;
|
|
19853
|
+
channelId?: string | null | undefined;
|
|
19784
19854
|
status?: "active" | "pending" | undefined;
|
|
19785
19855
|
apiKey?: string | undefined;
|
|
19786
19856
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
19857
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
19787
19858
|
} | undefined;
|
|
19788
19859
|
vonageCredentials?: {
|
|
19789
19860
|
apiKey: string;
|
|
@@ -19857,35 +19928,38 @@ export declare const whatsappContract: {
|
|
|
19857
19928
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
|
19858
19929
|
senderId: z.ZodOptional<z.ZodString>;
|
|
19859
19930
|
whatsapp: z.ZodOptional<z.ZodObject<{
|
|
19860
|
-
wabaBusinessId: z.ZodOptional<z.ZodString
|
|
19861
|
-
wabaExternalId: z.ZodString
|
|
19862
|
-
phoneNumberId: z.ZodString
|
|
19863
|
-
email: z.ZodString
|
|
19864
|
-
clientId: z.ZodOptional<z.ZodString
|
|
19865
|
-
channelId: z.ZodOptional<z.ZodString
|
|
19931
|
+
wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
19932
|
+
wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
19933
|
+
phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
19934
|
+
email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
19935
|
+
clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
19936
|
+
channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
19866
19937
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
|
19867
19938
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
19868
19939
|
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
|
19940
|
+
integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
|
|
19869
19941
|
}, "strip", z.ZodTypeAny, {
|
|
19870
|
-
|
|
19871
|
-
wabaExternalId
|
|
19872
|
-
phoneNumberId
|
|
19873
|
-
|
|
19874
|
-
clientId?: string | undefined;
|
|
19875
|
-
channelId?: string | undefined;
|
|
19942
|
+
wabaBusinessId?: string | null | undefined;
|
|
19943
|
+
wabaExternalId?: string | null | undefined;
|
|
19944
|
+
phoneNumberId?: string | null | undefined;
|
|
19945
|
+
email?: string | null | undefined;
|
|
19946
|
+
clientId?: string | null | undefined;
|
|
19947
|
+
channelId?: string | null | undefined;
|
|
19876
19948
|
status?: "active" | "pending" | undefined;
|
|
19877
19949
|
apiKey?: string | undefined;
|
|
19878
19950
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
19951
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
19879
19952
|
}, {
|
|
19880
|
-
|
|
19881
|
-
wabaExternalId
|
|
19882
|
-
phoneNumberId
|
|
19883
|
-
|
|
19884
|
-
clientId?: string | undefined;
|
|
19885
|
-
channelId?: string | undefined;
|
|
19953
|
+
wabaBusinessId?: string | null | undefined;
|
|
19954
|
+
wabaExternalId?: string | null | undefined;
|
|
19955
|
+
phoneNumberId?: string | null | undefined;
|
|
19956
|
+
email?: string | null | undefined;
|
|
19957
|
+
clientId?: string | null | undefined;
|
|
19958
|
+
channelId?: string | null | undefined;
|
|
19886
19959
|
status?: "active" | "pending" | undefined;
|
|
19887
19960
|
apiKey?: string | undefined;
|
|
19888
19961
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
19962
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
19889
19963
|
}>>;
|
|
19890
19964
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
|
19891
19965
|
mobileNumber: z.ZodString;
|
|
@@ -19910,15 +19984,16 @@ export declare const whatsappContract: {
|
|
|
19910
19984
|
additionalCredentials?: any;
|
|
19911
19985
|
senderId?: string | undefined;
|
|
19912
19986
|
whatsapp?: {
|
|
19913
|
-
|
|
19914
|
-
wabaExternalId
|
|
19915
|
-
phoneNumberId
|
|
19916
|
-
|
|
19917
|
-
clientId?: string | undefined;
|
|
19918
|
-
channelId?: string | undefined;
|
|
19987
|
+
wabaBusinessId?: string | null | undefined;
|
|
19988
|
+
wabaExternalId?: string | null | undefined;
|
|
19989
|
+
phoneNumberId?: string | null | undefined;
|
|
19990
|
+
email?: string | null | undefined;
|
|
19991
|
+
clientId?: string | null | undefined;
|
|
19992
|
+
channelId?: string | null | undefined;
|
|
19919
19993
|
status?: "active" | "pending" | undefined;
|
|
19920
19994
|
apiKey?: string | undefined;
|
|
19921
19995
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
19996
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
19922
19997
|
} | undefined;
|
|
19923
19998
|
vonageCredentials?: {
|
|
19924
19999
|
apiKey: string;
|
|
@@ -19935,15 +20010,16 @@ export declare const whatsappContract: {
|
|
|
19935
20010
|
additionalCredentials?: any;
|
|
19936
20011
|
senderId?: string | undefined;
|
|
19937
20012
|
whatsapp?: {
|
|
19938
|
-
|
|
19939
|
-
wabaExternalId
|
|
19940
|
-
phoneNumberId
|
|
19941
|
-
|
|
19942
|
-
clientId?: string | undefined;
|
|
19943
|
-
channelId?: string | undefined;
|
|
20013
|
+
wabaBusinessId?: string | null | undefined;
|
|
20014
|
+
wabaExternalId?: string | null | undefined;
|
|
20015
|
+
phoneNumberId?: string | null | undefined;
|
|
20016
|
+
email?: string | null | undefined;
|
|
20017
|
+
clientId?: string | null | undefined;
|
|
20018
|
+
channelId?: string | null | undefined;
|
|
19944
20019
|
status?: "active" | "pending" | undefined;
|
|
19945
20020
|
apiKey?: string | undefined;
|
|
19946
20021
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
20022
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
19947
20023
|
} | undefined;
|
|
19948
20024
|
vonageCredentials?: {
|
|
19949
20025
|
apiKey: string;
|
|
@@ -19990,15 +20066,16 @@ export declare const whatsappContract: {
|
|
|
19990
20066
|
additionalCredentials?: any;
|
|
19991
20067
|
senderId?: string | undefined;
|
|
19992
20068
|
whatsapp?: {
|
|
19993
|
-
|
|
19994
|
-
wabaExternalId
|
|
19995
|
-
phoneNumberId
|
|
19996
|
-
|
|
19997
|
-
clientId?: string | undefined;
|
|
19998
|
-
channelId?: string | undefined;
|
|
20069
|
+
wabaBusinessId?: string | null | undefined;
|
|
20070
|
+
wabaExternalId?: string | null | undefined;
|
|
20071
|
+
phoneNumberId?: string | null | undefined;
|
|
20072
|
+
email?: string | null | undefined;
|
|
20073
|
+
clientId?: string | null | undefined;
|
|
20074
|
+
channelId?: string | null | undefined;
|
|
19999
20075
|
status?: "active" | "pending" | undefined;
|
|
20000
20076
|
apiKey?: string | undefined;
|
|
20001
20077
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
20078
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
20002
20079
|
} | undefined;
|
|
20003
20080
|
vonageCredentials?: {
|
|
20004
20081
|
apiKey: string;
|
|
@@ -20033,15 +20110,16 @@ export declare const whatsappContract: {
|
|
|
20033
20110
|
additionalCredentials?: any;
|
|
20034
20111
|
senderId?: string | undefined;
|
|
20035
20112
|
whatsapp?: {
|
|
20036
|
-
|
|
20037
|
-
wabaExternalId
|
|
20038
|
-
phoneNumberId
|
|
20039
|
-
|
|
20040
|
-
clientId?: string | undefined;
|
|
20041
|
-
channelId?: string | undefined;
|
|
20113
|
+
wabaBusinessId?: string | null | undefined;
|
|
20114
|
+
wabaExternalId?: string | null | undefined;
|
|
20115
|
+
phoneNumberId?: string | null | undefined;
|
|
20116
|
+
email?: string | null | undefined;
|
|
20117
|
+
clientId?: string | null | undefined;
|
|
20118
|
+
channelId?: string | null | undefined;
|
|
20042
20119
|
status?: "active" | "pending" | undefined;
|
|
20043
20120
|
apiKey?: string | undefined;
|
|
20044
20121
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
20122
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
20045
20123
|
} | undefined;
|
|
20046
20124
|
vonageCredentials?: {
|
|
20047
20125
|
apiKey: string;
|
|
@@ -20078,15 +20156,16 @@ export declare const whatsappContract: {
|
|
|
20078
20156
|
additionalCredentials?: any;
|
|
20079
20157
|
senderId?: string | undefined;
|
|
20080
20158
|
whatsapp?: {
|
|
20081
|
-
|
|
20082
|
-
wabaExternalId
|
|
20083
|
-
phoneNumberId
|
|
20084
|
-
|
|
20085
|
-
clientId?: string | undefined;
|
|
20086
|
-
channelId?: string | undefined;
|
|
20159
|
+
wabaBusinessId?: string | null | undefined;
|
|
20160
|
+
wabaExternalId?: string | null | undefined;
|
|
20161
|
+
phoneNumberId?: string | null | undefined;
|
|
20162
|
+
email?: string | null | undefined;
|
|
20163
|
+
clientId?: string | null | undefined;
|
|
20164
|
+
channelId?: string | null | undefined;
|
|
20087
20165
|
status?: "active" | "pending" | undefined;
|
|
20088
20166
|
apiKey?: string | undefined;
|
|
20089
20167
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
20168
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
20090
20169
|
} | undefined;
|
|
20091
20170
|
vonageCredentials?: {
|
|
20092
20171
|
apiKey: string;
|
|
@@ -20124,15 +20203,16 @@ export declare const whatsappContract: {
|
|
|
20124
20203
|
additionalCredentials?: any;
|
|
20125
20204
|
senderId?: string | undefined;
|
|
20126
20205
|
whatsapp?: {
|
|
20127
|
-
|
|
20128
|
-
wabaExternalId
|
|
20129
|
-
phoneNumberId
|
|
20130
|
-
|
|
20131
|
-
clientId?: string | undefined;
|
|
20132
|
-
channelId?: string | undefined;
|
|
20206
|
+
wabaBusinessId?: string | null | undefined;
|
|
20207
|
+
wabaExternalId?: string | null | undefined;
|
|
20208
|
+
phoneNumberId?: string | null | undefined;
|
|
20209
|
+
email?: string | null | undefined;
|
|
20210
|
+
clientId?: string | null | undefined;
|
|
20211
|
+
channelId?: string | null | undefined;
|
|
20133
20212
|
status?: "active" | "pending" | undefined;
|
|
20134
20213
|
apiKey?: string | undefined;
|
|
20135
20214
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
20215
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
20136
20216
|
} | undefined;
|
|
20137
20217
|
vonageCredentials?: {
|
|
20138
20218
|
apiKey: string;
|
|
@@ -20206,35 +20286,38 @@ export declare const whatsappContract: {
|
|
|
20206
20286
|
additionalCredentials: z.ZodOptional<z.ZodAny>;
|
|
20207
20287
|
senderId: z.ZodOptional<z.ZodString>;
|
|
20208
20288
|
whatsapp: z.ZodOptional<z.ZodObject<{
|
|
20209
|
-
wabaBusinessId: z.ZodOptional<z.ZodString
|
|
20210
|
-
wabaExternalId: z.ZodString
|
|
20211
|
-
phoneNumberId: z.ZodString
|
|
20212
|
-
email: z.ZodString
|
|
20213
|
-
clientId: z.ZodOptional<z.ZodString
|
|
20214
|
-
channelId: z.ZodOptional<z.ZodString
|
|
20289
|
+
wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
20290
|
+
wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
20291
|
+
phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
20292
|
+
email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
20293
|
+
clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
20294
|
+
channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
20215
20295
|
status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
|
|
20216
20296
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
20217
20297
|
tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
|
|
20298
|
+
integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
|
|
20218
20299
|
}, "strip", z.ZodTypeAny, {
|
|
20219
|
-
|
|
20220
|
-
wabaExternalId
|
|
20221
|
-
phoneNumberId
|
|
20222
|
-
|
|
20223
|
-
clientId?: string | undefined;
|
|
20224
|
-
channelId?: string | undefined;
|
|
20300
|
+
wabaBusinessId?: string | null | undefined;
|
|
20301
|
+
wabaExternalId?: string | null | undefined;
|
|
20302
|
+
phoneNumberId?: string | null | undefined;
|
|
20303
|
+
email?: string | null | undefined;
|
|
20304
|
+
clientId?: string | null | undefined;
|
|
20305
|
+
channelId?: string | null | undefined;
|
|
20225
20306
|
status?: "active" | "pending" | undefined;
|
|
20226
20307
|
apiKey?: string | undefined;
|
|
20227
20308
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
20309
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
20228
20310
|
}, {
|
|
20229
|
-
|
|
20230
|
-
wabaExternalId
|
|
20231
|
-
phoneNumberId
|
|
20232
|
-
|
|
20233
|
-
clientId?: string | undefined;
|
|
20234
|
-
channelId?: string | undefined;
|
|
20311
|
+
wabaBusinessId?: string | null | undefined;
|
|
20312
|
+
wabaExternalId?: string | null | undefined;
|
|
20313
|
+
phoneNumberId?: string | null | undefined;
|
|
20314
|
+
email?: string | null | undefined;
|
|
20315
|
+
clientId?: string | null | undefined;
|
|
20316
|
+
channelId?: string | null | undefined;
|
|
20235
20317
|
status?: "active" | "pending" | undefined;
|
|
20236
20318
|
apiKey?: string | undefined;
|
|
20237
20319
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
20320
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
20238
20321
|
}>>;
|
|
20239
20322
|
vonageCredentials: z.ZodOptional<z.ZodObject<{
|
|
20240
20323
|
mobileNumber: z.ZodString;
|
|
@@ -20259,15 +20342,16 @@ export declare const whatsappContract: {
|
|
|
20259
20342
|
additionalCredentials?: any;
|
|
20260
20343
|
senderId?: string | undefined;
|
|
20261
20344
|
whatsapp?: {
|
|
20262
|
-
|
|
20263
|
-
wabaExternalId
|
|
20264
|
-
phoneNumberId
|
|
20265
|
-
|
|
20266
|
-
clientId?: string | undefined;
|
|
20267
|
-
channelId?: string | undefined;
|
|
20345
|
+
wabaBusinessId?: string | null | undefined;
|
|
20346
|
+
wabaExternalId?: string | null | undefined;
|
|
20347
|
+
phoneNumberId?: string | null | undefined;
|
|
20348
|
+
email?: string | null | undefined;
|
|
20349
|
+
clientId?: string | null | undefined;
|
|
20350
|
+
channelId?: string | null | undefined;
|
|
20268
20351
|
status?: "active" | "pending" | undefined;
|
|
20269
20352
|
apiKey?: string | undefined;
|
|
20270
20353
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
20354
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
20271
20355
|
} | undefined;
|
|
20272
20356
|
vonageCredentials?: {
|
|
20273
20357
|
apiKey: string;
|
|
@@ -20284,15 +20368,16 @@ export declare const whatsappContract: {
|
|
|
20284
20368
|
additionalCredentials?: any;
|
|
20285
20369
|
senderId?: string | undefined;
|
|
20286
20370
|
whatsapp?: {
|
|
20287
|
-
|
|
20288
|
-
wabaExternalId
|
|
20289
|
-
phoneNumberId
|
|
20290
|
-
|
|
20291
|
-
clientId?: string | undefined;
|
|
20292
|
-
channelId?: string | undefined;
|
|
20371
|
+
wabaBusinessId?: string | null | undefined;
|
|
20372
|
+
wabaExternalId?: string | null | undefined;
|
|
20373
|
+
phoneNumberId?: string | null | undefined;
|
|
20374
|
+
email?: string | null | undefined;
|
|
20375
|
+
clientId?: string | null | undefined;
|
|
20376
|
+
channelId?: string | null | undefined;
|
|
20293
20377
|
status?: "active" | "pending" | undefined;
|
|
20294
20378
|
apiKey?: string | undefined;
|
|
20295
20379
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
20380
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
20296
20381
|
} | undefined;
|
|
20297
20382
|
vonageCredentials?: {
|
|
20298
20383
|
apiKey: string;
|
|
@@ -20339,15 +20424,16 @@ export declare const whatsappContract: {
|
|
|
20339
20424
|
additionalCredentials?: any;
|
|
20340
20425
|
senderId?: string | undefined;
|
|
20341
20426
|
whatsapp?: {
|
|
20342
|
-
|
|
20343
|
-
wabaExternalId
|
|
20344
|
-
phoneNumberId
|
|
20345
|
-
|
|
20346
|
-
clientId?: string | undefined;
|
|
20347
|
-
channelId?: string | undefined;
|
|
20427
|
+
wabaBusinessId?: string | null | undefined;
|
|
20428
|
+
wabaExternalId?: string | null | undefined;
|
|
20429
|
+
phoneNumberId?: string | null | undefined;
|
|
20430
|
+
email?: string | null | undefined;
|
|
20431
|
+
clientId?: string | null | undefined;
|
|
20432
|
+
channelId?: string | null | undefined;
|
|
20348
20433
|
status?: "active" | "pending" | undefined;
|
|
20349
20434
|
apiKey?: string | undefined;
|
|
20350
20435
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
20436
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
20351
20437
|
} | undefined;
|
|
20352
20438
|
vonageCredentials?: {
|
|
20353
20439
|
apiKey: string;
|
|
@@ -20382,15 +20468,16 @@ export declare const whatsappContract: {
|
|
|
20382
20468
|
additionalCredentials?: any;
|
|
20383
20469
|
senderId?: string | undefined;
|
|
20384
20470
|
whatsapp?: {
|
|
20385
|
-
|
|
20386
|
-
wabaExternalId
|
|
20387
|
-
phoneNumberId
|
|
20388
|
-
|
|
20389
|
-
clientId?: string | undefined;
|
|
20390
|
-
channelId?: string | undefined;
|
|
20471
|
+
wabaBusinessId?: string | null | undefined;
|
|
20472
|
+
wabaExternalId?: string | null | undefined;
|
|
20473
|
+
phoneNumberId?: string | null | undefined;
|
|
20474
|
+
email?: string | null | undefined;
|
|
20475
|
+
clientId?: string | null | undefined;
|
|
20476
|
+
channelId?: string | null | undefined;
|
|
20391
20477
|
status?: "active" | "pending" | undefined;
|
|
20392
20478
|
apiKey?: string | undefined;
|
|
20393
20479
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
20480
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
20394
20481
|
} | undefined;
|
|
20395
20482
|
vonageCredentials?: {
|
|
20396
20483
|
apiKey: string;
|
|
@@ -20427,15 +20514,16 @@ export declare const whatsappContract: {
|
|
|
20427
20514
|
additionalCredentials?: any;
|
|
20428
20515
|
senderId?: string | undefined;
|
|
20429
20516
|
whatsapp?: {
|
|
20430
|
-
|
|
20431
|
-
wabaExternalId
|
|
20432
|
-
phoneNumberId
|
|
20433
|
-
|
|
20434
|
-
clientId?: string | undefined;
|
|
20435
|
-
channelId?: string | undefined;
|
|
20517
|
+
wabaBusinessId?: string | null | undefined;
|
|
20518
|
+
wabaExternalId?: string | null | undefined;
|
|
20519
|
+
phoneNumberId?: string | null | undefined;
|
|
20520
|
+
email?: string | null | undefined;
|
|
20521
|
+
clientId?: string | null | undefined;
|
|
20522
|
+
channelId?: string | null | undefined;
|
|
20436
20523
|
status?: "active" | "pending" | undefined;
|
|
20437
20524
|
apiKey?: string | undefined;
|
|
20438
20525
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
20526
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
20439
20527
|
} | undefined;
|
|
20440
20528
|
vonageCredentials?: {
|
|
20441
20529
|
apiKey: string;
|
|
@@ -20473,15 +20561,16 @@ export declare const whatsappContract: {
|
|
|
20473
20561
|
additionalCredentials?: any;
|
|
20474
20562
|
senderId?: string | undefined;
|
|
20475
20563
|
whatsapp?: {
|
|
20476
|
-
|
|
20477
|
-
wabaExternalId
|
|
20478
|
-
phoneNumberId
|
|
20479
|
-
|
|
20480
|
-
clientId?: string | undefined;
|
|
20481
|
-
channelId?: string | undefined;
|
|
20564
|
+
wabaBusinessId?: string | null | undefined;
|
|
20565
|
+
wabaExternalId?: string | null | undefined;
|
|
20566
|
+
phoneNumberId?: string | null | undefined;
|
|
20567
|
+
email?: string | null | undefined;
|
|
20568
|
+
clientId?: string | null | undefined;
|
|
20569
|
+
channelId?: string | null | undefined;
|
|
20482
20570
|
status?: "active" | "pending" | undefined;
|
|
20483
20571
|
apiKey?: string | undefined;
|
|
20484
20572
|
tier?: "basic" | "regular" | "premium" | undefined;
|
|
20573
|
+
integrationType?: "meta" | "360dialog" | undefined;
|
|
20485
20574
|
} | undefined;
|
|
20486
20575
|
vonageCredentials?: {
|
|
20487
20576
|
apiKey: string;
|