@kl1/contracts 1.2.39-uat → 1.2.40-uat

Sign up to get free protection for your applications and to get access to all the features.
Files changed (51) hide show
  1. package/dist/api-contracts/src/channel/index.d.ts +1253 -1074
  2. package/dist/api-contracts/src/channel/index.d.ts.map +1 -1
  3. package/dist/api-contracts/src/channel/schema.d.ts +84 -72
  4. package/dist/api-contracts/src/channel/schema.d.ts.map +1 -1
  5. package/dist/api-contracts/src/channel/validation.d.ts +98 -84
  6. package/dist/api-contracts/src/channel/validation.d.ts.map +1 -1
  7. package/dist/api-contracts/src/chat/index.d.ts +1918 -1644
  8. package/dist/api-contracts/src/chat/index.d.ts.map +1 -1
  9. package/dist/api-contracts/src/chat/schema.d.ts +462 -396
  10. package/dist/api-contracts/src/chat/schema.d.ts.map +1 -1
  11. package/dist/api-contracts/src/chat/validation.d.ts +679 -582
  12. package/dist/api-contracts/src/chat/validation.d.ts.map +1 -1
  13. package/dist/api-contracts/src/contract.d.ts +7294 -6252
  14. package/dist/api-contracts/src/contract.d.ts.map +1 -1
  15. package/dist/api-contracts/src/cx-log/index.d.ts +91 -78
  16. package/dist/api-contracts/src/cx-log/index.d.ts.map +1 -1
  17. package/dist/api-contracts/src/cx-log/schema.d.ts +77 -66
  18. package/dist/api-contracts/src/cx-log/schema.d.ts.map +1 -1
  19. package/dist/api-contracts/src/facebook-feed/index.d.ts +938 -804
  20. package/dist/api-contracts/src/facebook-feed/index.d.ts.map +1 -1
  21. package/dist/api-contracts/src/facebook-feed/schema.d.ts +63 -54
  22. package/dist/api-contracts/src/facebook-feed/schema.d.ts.map +1 -1
  23. package/dist/api-contracts/src/facebook-feed/validation.d.ts +49 -42
  24. package/dist/api-contracts/src/facebook-feed/validation.d.ts.map +1 -1
  25. package/dist/api-contracts/src/instagram/index.d.ts +735 -630
  26. package/dist/api-contracts/src/instagram/index.d.ts.map +1 -1
  27. package/dist/api-contracts/src/line/index.d.ts +651 -558
  28. package/dist/api-contracts/src/line/index.d.ts.map +1 -1
  29. package/dist/api-contracts/src/line/validation.d.ts +77 -66
  30. package/dist/api-contracts/src/line/validation.d.ts.map +1 -1
  31. package/dist/api-contracts/src/messenger/index.d.ts +735 -630
  32. package/dist/api-contracts/src/messenger/index.d.ts.map +1 -1
  33. package/dist/api-contracts/src/messenger/validation.d.ts +49 -42
  34. package/dist/api-contracts/src/messenger/validation.d.ts.map +1 -1
  35. package/dist/api-contracts/src/sms/index.d.ts +140 -120
  36. package/dist/api-contracts/src/sms/index.d.ts.map +1 -1
  37. package/dist/api-contracts/src/telegram/index.d.ts +525 -450
  38. package/dist/api-contracts/src/telegram/index.d.ts.map +1 -1
  39. package/dist/api-contracts/src/viber/index.d.ts +525 -450
  40. package/dist/api-contracts/src/viber/index.d.ts.map +1 -1
  41. package/dist/api-contracts/src/webchat/index.d.ts +525 -450
  42. package/dist/api-contracts/src/webchat/index.d.ts.map +1 -1
  43. package/dist/api-contracts/src/whatsapp/index.d.ts +623 -534
  44. package/dist/api-contracts/src/whatsapp/index.d.ts.map +1 -1
  45. package/dist/api-contracts/src/workflow-rule/index.d.ts +154 -132
  46. package/dist/api-contracts/src/workflow-rule/index.d.ts.map +1 -1
  47. package/dist/index.js +8 -7
  48. package/dist/index.js.map +1 -1
  49. package/dist/index.mjs +8 -7
  50. package/dist/index.mjs.map +1 -1
  51. package/package.json +1 -1
@@ -138,35 +138,38 @@ export declare const platformWebchatContract: {
138
138
  additionalCredentials: z.ZodOptional<z.ZodAny>;
139
139
  senderId: z.ZodOptional<z.ZodString>;
140
140
  whatsapp: z.ZodOptional<z.ZodObject<{
141
- wabaBusinessId: z.ZodOptional<z.ZodString>;
142
- wabaExternalId: z.ZodString;
143
- phoneNumberId: z.ZodString;
144
- email: z.ZodString;
145
- clientId: z.ZodOptional<z.ZodString>;
146
- channelId: z.ZodOptional<z.ZodString>;
141
+ wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
142
+ wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
143
+ phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
144
+ email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
145
+ clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
146
+ channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
147
147
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
148
148
  apiKey: z.ZodOptional<z.ZodString>;
149
149
  tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
150
+ integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
150
151
  }, "strip", z.ZodTypeAny, {
151
- email: string;
152
- wabaExternalId: string;
153
- phoneNumberId: string;
154
- wabaBusinessId?: string | undefined;
155
- clientId?: string | undefined;
156
- channelId?: string | undefined;
152
+ wabaBusinessId?: string | null | undefined;
153
+ wabaExternalId?: string | null | undefined;
154
+ phoneNumberId?: string | null | undefined;
155
+ email?: string | null | undefined;
156
+ clientId?: string | null | undefined;
157
+ channelId?: string | null | undefined;
157
158
  status?: "active" | "pending" | undefined;
158
159
  apiKey?: string | undefined;
159
160
  tier?: "basic" | "regular" | "premium" | undefined;
161
+ integrationType?: "meta" | "360dialog" | undefined;
160
162
  }, {
161
- email: string;
162
- wabaExternalId: string;
163
- phoneNumberId: string;
164
- wabaBusinessId?: string | undefined;
165
- clientId?: string | undefined;
166
- channelId?: string | undefined;
163
+ wabaBusinessId?: string | null | undefined;
164
+ wabaExternalId?: string | null | undefined;
165
+ phoneNumberId?: string | null | undefined;
166
+ email?: string | null | undefined;
167
+ clientId?: string | null | undefined;
168
+ channelId?: string | null | undefined;
167
169
  status?: "active" | "pending" | undefined;
168
170
  apiKey?: string | undefined;
169
171
  tier?: "basic" | "regular" | "premium" | undefined;
172
+ integrationType?: "meta" | "360dialog" | undefined;
170
173
  }>>;
171
174
  vonageCredentials: z.ZodOptional<z.ZodObject<{
172
175
  mobileNumber: z.ZodString;
@@ -191,15 +194,16 @@ export declare const platformWebchatContract: {
191
194
  additionalCredentials?: any;
192
195
  senderId?: string | undefined;
193
196
  whatsapp?: {
194
- email: string;
195
- wabaExternalId: string;
196
- phoneNumberId: string;
197
- wabaBusinessId?: string | undefined;
198
- clientId?: string | undefined;
199
- channelId?: string | undefined;
197
+ wabaBusinessId?: string | null | undefined;
198
+ wabaExternalId?: string | null | undefined;
199
+ phoneNumberId?: string | null | undefined;
200
+ email?: string | null | undefined;
201
+ clientId?: string | null | undefined;
202
+ channelId?: string | null | undefined;
200
203
  status?: "active" | "pending" | undefined;
201
204
  apiKey?: string | undefined;
202
205
  tier?: "basic" | "regular" | "premium" | undefined;
206
+ integrationType?: "meta" | "360dialog" | undefined;
203
207
  } | undefined;
204
208
  vonageCredentials?: {
205
209
  apiKey: string;
@@ -216,15 +220,16 @@ export declare const platformWebchatContract: {
216
220
  additionalCredentials?: any;
217
221
  senderId?: string | undefined;
218
222
  whatsapp?: {
219
- email: string;
220
- wabaExternalId: string;
221
- phoneNumberId: string;
222
- wabaBusinessId?: string | undefined;
223
- clientId?: string | undefined;
224
- channelId?: string | undefined;
223
+ wabaBusinessId?: string | null | undefined;
224
+ wabaExternalId?: string | null | undefined;
225
+ phoneNumberId?: string | null | undefined;
226
+ email?: string | null | undefined;
227
+ clientId?: string | null | undefined;
228
+ channelId?: string | null | undefined;
225
229
  status?: "active" | "pending" | undefined;
226
230
  apiKey?: string | undefined;
227
231
  tier?: "basic" | "regular" | "premium" | undefined;
232
+ integrationType?: "meta" | "360dialog" | undefined;
228
233
  } | undefined;
229
234
  vonageCredentials?: {
230
235
  apiKey: string;
@@ -271,15 +276,16 @@ export declare const platformWebchatContract: {
271
276
  additionalCredentials?: any;
272
277
  senderId?: string | undefined;
273
278
  whatsapp?: {
274
- email: string;
275
- wabaExternalId: string;
276
- phoneNumberId: string;
277
- wabaBusinessId?: string | undefined;
278
- clientId?: string | undefined;
279
- channelId?: string | undefined;
279
+ wabaBusinessId?: string | null | undefined;
280
+ wabaExternalId?: string | null | undefined;
281
+ phoneNumberId?: string | null | undefined;
282
+ email?: string | null | undefined;
283
+ clientId?: string | null | undefined;
284
+ channelId?: string | null | undefined;
280
285
  status?: "active" | "pending" | undefined;
281
286
  apiKey?: string | undefined;
282
287
  tier?: "basic" | "regular" | "premium" | undefined;
288
+ integrationType?: "meta" | "360dialog" | undefined;
283
289
  } | undefined;
284
290
  vonageCredentials?: {
285
291
  apiKey: string;
@@ -314,15 +320,16 @@ export declare const platformWebchatContract: {
314
320
  additionalCredentials?: any;
315
321
  senderId?: string | undefined;
316
322
  whatsapp?: {
317
- email: string;
318
- wabaExternalId: string;
319
- phoneNumberId: string;
320
- wabaBusinessId?: string | undefined;
321
- clientId?: string | undefined;
322
- channelId?: string | undefined;
323
+ wabaBusinessId?: string | null | undefined;
324
+ wabaExternalId?: string | null | undefined;
325
+ phoneNumberId?: string | null | undefined;
326
+ email?: string | null | undefined;
327
+ clientId?: string | null | undefined;
328
+ channelId?: string | null | undefined;
323
329
  status?: "active" | "pending" | undefined;
324
330
  apiKey?: string | undefined;
325
331
  tier?: "basic" | "regular" | "premium" | undefined;
332
+ integrationType?: "meta" | "360dialog" | undefined;
326
333
  } | undefined;
327
334
  vonageCredentials?: {
328
335
  apiKey: string;
@@ -362,15 +369,16 @@ export declare const platformWebchatContract: {
362
369
  additionalCredentials?: any;
363
370
  senderId?: string | undefined;
364
371
  whatsapp?: {
365
- email: string;
366
- wabaExternalId: string;
367
- phoneNumberId: string;
368
- wabaBusinessId?: string | undefined;
369
- clientId?: string | undefined;
370
- channelId?: string | undefined;
372
+ wabaBusinessId?: string | null | undefined;
373
+ wabaExternalId?: string | null | undefined;
374
+ phoneNumberId?: string | null | undefined;
375
+ email?: string | null | undefined;
376
+ clientId?: string | null | undefined;
377
+ channelId?: string | null | undefined;
371
378
  status?: "active" | "pending" | undefined;
372
379
  apiKey?: string | undefined;
373
380
  tier?: "basic" | "regular" | "premium" | undefined;
381
+ integrationType?: "meta" | "360dialog" | undefined;
374
382
  } | undefined;
375
383
  vonageCredentials?: {
376
384
  apiKey: string;
@@ -449,15 +457,16 @@ export declare const platformWebchatContract: {
449
457
  additionalCredentials?: any;
450
458
  senderId?: string | undefined;
451
459
  whatsapp?: {
452
- email: string;
453
- wabaExternalId: string;
454
- phoneNumberId: string;
455
- wabaBusinessId?: string | undefined;
456
- clientId?: string | undefined;
457
- channelId?: string | undefined;
460
+ wabaBusinessId?: string | null | undefined;
461
+ wabaExternalId?: string | null | undefined;
462
+ phoneNumberId?: string | null | undefined;
463
+ email?: string | null | undefined;
464
+ clientId?: string | null | undefined;
465
+ channelId?: string | null | undefined;
458
466
  status?: "active" | "pending" | undefined;
459
467
  apiKey?: string | undefined;
460
468
  tier?: "basic" | "regular" | "premium" | undefined;
469
+ integrationType?: "meta" | "360dialog" | undefined;
461
470
  } | undefined;
462
471
  vonageCredentials?: {
463
472
  apiKey: string;
@@ -704,15 +713,16 @@ export declare const platformWebchatContract: {
704
713
  additionalCredentials?: any;
705
714
  senderId?: string | undefined;
706
715
  whatsapp?: {
707
- email: string;
708
- wabaExternalId: string;
709
- phoneNumberId: string;
710
- wabaBusinessId?: string | undefined;
711
- clientId?: string | undefined;
712
- channelId?: string | undefined;
716
+ wabaBusinessId?: string | null | undefined;
717
+ wabaExternalId?: string | null | undefined;
718
+ phoneNumberId?: string | null | undefined;
719
+ email?: string | null | undefined;
720
+ clientId?: string | null | undefined;
721
+ channelId?: string | null | undefined;
713
722
  status?: "active" | "pending" | undefined;
714
723
  apiKey?: string | undefined;
715
724
  tier?: "basic" | "regular" | "premium" | undefined;
725
+ integrationType?: "meta" | "360dialog" | undefined;
716
726
  } | undefined;
717
727
  vonageCredentials?: {
718
728
  apiKey: string;
@@ -830,15 +840,16 @@ export declare const platformWebchatContract: {
830
840
  additionalCredentials?: any;
831
841
  senderId?: string | undefined;
832
842
  whatsapp?: {
833
- email: string;
834
- wabaExternalId: string;
835
- phoneNumberId: string;
836
- wabaBusinessId?: string | undefined;
837
- clientId?: string | undefined;
838
- channelId?: string | undefined;
843
+ wabaBusinessId?: string | null | undefined;
844
+ wabaExternalId?: string | null | undefined;
845
+ phoneNumberId?: string | null | undefined;
846
+ email?: string | null | undefined;
847
+ clientId?: string | null | undefined;
848
+ channelId?: string | null | undefined;
839
849
  status?: "active" | "pending" | undefined;
840
850
  apiKey?: string | undefined;
841
851
  tier?: "basic" | "regular" | "premium" | undefined;
852
+ integrationType?: "meta" | "360dialog" | undefined;
842
853
  } | undefined;
843
854
  vonageCredentials?: {
844
855
  apiKey: string;
@@ -2851,35 +2862,38 @@ export declare const platformWebchatContract: {
2851
2862
  additionalCredentials: z.ZodOptional<z.ZodAny>;
2852
2863
  senderId: z.ZodOptional<z.ZodString>;
2853
2864
  whatsapp: z.ZodOptional<z.ZodObject<{
2854
- wabaBusinessId: z.ZodOptional<z.ZodString>;
2855
- wabaExternalId: z.ZodString;
2856
- phoneNumberId: z.ZodString;
2857
- email: z.ZodString;
2858
- clientId: z.ZodOptional<z.ZodString>;
2859
- channelId: z.ZodOptional<z.ZodString>;
2865
+ wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2866
+ wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2867
+ phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2868
+ email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2869
+ clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2870
+ channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2860
2871
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
2861
2872
  apiKey: z.ZodOptional<z.ZodString>;
2862
2873
  tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
2874
+ integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
2863
2875
  }, "strip", z.ZodTypeAny, {
2864
- email: string;
2865
- wabaExternalId: string;
2866
- phoneNumberId: string;
2867
- wabaBusinessId?: string | undefined;
2868
- clientId?: string | undefined;
2869
- channelId?: string | undefined;
2876
+ wabaBusinessId?: string | null | undefined;
2877
+ wabaExternalId?: string | null | undefined;
2878
+ phoneNumberId?: string | null | undefined;
2879
+ email?: string | null | undefined;
2880
+ clientId?: string | null | undefined;
2881
+ channelId?: string | null | undefined;
2870
2882
  status?: "active" | "pending" | undefined;
2871
2883
  apiKey?: string | undefined;
2872
2884
  tier?: "basic" | "regular" | "premium" | undefined;
2885
+ integrationType?: "meta" | "360dialog" | undefined;
2873
2886
  }, {
2874
- email: string;
2875
- wabaExternalId: string;
2876
- phoneNumberId: string;
2877
- wabaBusinessId?: string | undefined;
2878
- clientId?: string | undefined;
2879
- channelId?: string | undefined;
2887
+ wabaBusinessId?: string | null | undefined;
2888
+ wabaExternalId?: string | null | undefined;
2889
+ phoneNumberId?: string | null | undefined;
2890
+ email?: string | null | undefined;
2891
+ clientId?: string | null | undefined;
2892
+ channelId?: string | null | undefined;
2880
2893
  status?: "active" | "pending" | undefined;
2881
2894
  apiKey?: string | undefined;
2882
2895
  tier?: "basic" | "regular" | "premium" | undefined;
2896
+ integrationType?: "meta" | "360dialog" | undefined;
2883
2897
  }>>;
2884
2898
  vonageCredentials: z.ZodOptional<z.ZodObject<{
2885
2899
  mobileNumber: z.ZodString;
@@ -2904,15 +2918,16 @@ export declare const platformWebchatContract: {
2904
2918
  additionalCredentials?: any;
2905
2919
  senderId?: string | undefined;
2906
2920
  whatsapp?: {
2907
- email: string;
2908
- wabaExternalId: string;
2909
- phoneNumberId: string;
2910
- wabaBusinessId?: string | undefined;
2911
- clientId?: string | undefined;
2912
- channelId?: string | undefined;
2921
+ wabaBusinessId?: string | null | undefined;
2922
+ wabaExternalId?: string | null | undefined;
2923
+ phoneNumberId?: string | null | undefined;
2924
+ email?: string | null | undefined;
2925
+ clientId?: string | null | undefined;
2926
+ channelId?: string | null | undefined;
2913
2927
  status?: "active" | "pending" | undefined;
2914
2928
  apiKey?: string | undefined;
2915
2929
  tier?: "basic" | "regular" | "premium" | undefined;
2930
+ integrationType?: "meta" | "360dialog" | undefined;
2916
2931
  } | undefined;
2917
2932
  vonageCredentials?: {
2918
2933
  apiKey: string;
@@ -2929,15 +2944,16 @@ export declare const platformWebchatContract: {
2929
2944
  additionalCredentials?: any;
2930
2945
  senderId?: string | undefined;
2931
2946
  whatsapp?: {
2932
- email: string;
2933
- wabaExternalId: string;
2934
- phoneNumberId: string;
2935
- wabaBusinessId?: string | undefined;
2936
- clientId?: string | undefined;
2937
- channelId?: string | undefined;
2947
+ wabaBusinessId?: string | null | undefined;
2948
+ wabaExternalId?: string | null | undefined;
2949
+ phoneNumberId?: string | null | undefined;
2950
+ email?: string | null | undefined;
2951
+ clientId?: string | null | undefined;
2952
+ channelId?: string | null | undefined;
2938
2953
  status?: "active" | "pending" | undefined;
2939
2954
  apiKey?: string | undefined;
2940
2955
  tier?: "basic" | "regular" | "premium" | undefined;
2956
+ integrationType?: "meta" | "360dialog" | undefined;
2941
2957
  } | undefined;
2942
2958
  vonageCredentials?: {
2943
2959
  apiKey: string;
@@ -3188,15 +3204,16 @@ export declare const platformWebchatContract: {
3188
3204
  additionalCredentials?: any;
3189
3205
  senderId?: string | undefined;
3190
3206
  whatsapp?: {
3191
- email: string;
3192
- wabaExternalId: string;
3193
- phoneNumberId: string;
3194
- wabaBusinessId?: string | undefined;
3195
- clientId?: string | undefined;
3196
- channelId?: string | undefined;
3207
+ wabaBusinessId?: string | null | undefined;
3208
+ wabaExternalId?: string | null | undefined;
3209
+ phoneNumberId?: string | null | undefined;
3210
+ email?: string | null | undefined;
3211
+ clientId?: string | null | undefined;
3212
+ channelId?: string | null | undefined;
3197
3213
  status?: "active" | "pending" | undefined;
3198
3214
  apiKey?: string | undefined;
3199
3215
  tier?: "basic" | "regular" | "premium" | undefined;
3216
+ integrationType?: "meta" | "360dialog" | undefined;
3200
3217
  } | undefined;
3201
3218
  vonageCredentials?: {
3202
3219
  apiKey: string;
@@ -3278,15 +3295,16 @@ export declare const platformWebchatContract: {
3278
3295
  additionalCredentials?: any;
3279
3296
  senderId?: string | undefined;
3280
3297
  whatsapp?: {
3281
- email: string;
3282
- wabaExternalId: string;
3283
- phoneNumberId: string;
3284
- wabaBusinessId?: string | undefined;
3285
- clientId?: string | undefined;
3286
- channelId?: string | undefined;
3298
+ wabaBusinessId?: string | null | undefined;
3299
+ wabaExternalId?: string | null | undefined;
3300
+ phoneNumberId?: string | null | undefined;
3301
+ email?: string | null | undefined;
3302
+ clientId?: string | null | undefined;
3303
+ channelId?: string | null | undefined;
3287
3304
  status?: "active" | "pending" | undefined;
3288
3305
  apiKey?: string | undefined;
3289
3306
  tier?: "basic" | "regular" | "premium" | undefined;
3307
+ integrationType?: "meta" | "360dialog" | undefined;
3290
3308
  } | undefined;
3291
3309
  vonageCredentials?: {
3292
3310
  apiKey: string;
@@ -3932,15 +3950,16 @@ export declare const platformWebchatContract: {
3932
3950
  additionalCredentials?: any;
3933
3951
  senderId?: string | undefined;
3934
3952
  whatsapp?: {
3935
- email: string;
3936
- wabaExternalId: string;
3937
- phoneNumberId: string;
3938
- wabaBusinessId?: string | undefined;
3939
- clientId?: string | undefined;
3940
- channelId?: string | undefined;
3953
+ wabaBusinessId?: string | null | undefined;
3954
+ wabaExternalId?: string | null | undefined;
3955
+ phoneNumberId?: string | null | undefined;
3956
+ email?: string | null | undefined;
3957
+ clientId?: string | null | undefined;
3958
+ channelId?: string | null | undefined;
3941
3959
  status?: "active" | "pending" | undefined;
3942
3960
  apiKey?: string | undefined;
3943
3961
  tier?: "basic" | "regular" | "premium" | undefined;
3962
+ integrationType?: "meta" | "360dialog" | undefined;
3944
3963
  } | undefined;
3945
3964
  vonageCredentials?: {
3946
3965
  apiKey: string;
@@ -4355,15 +4374,16 @@ export declare const platformWebchatContract: {
4355
4374
  additionalCredentials?: any;
4356
4375
  senderId?: string | undefined;
4357
4376
  whatsapp?: {
4358
- email: string;
4359
- wabaExternalId: string;
4360
- phoneNumberId: string;
4361
- wabaBusinessId?: string | undefined;
4362
- clientId?: string | undefined;
4363
- channelId?: string | undefined;
4377
+ wabaBusinessId?: string | null | undefined;
4378
+ wabaExternalId?: string | null | undefined;
4379
+ phoneNumberId?: string | null | undefined;
4380
+ email?: string | null | undefined;
4381
+ clientId?: string | null | undefined;
4382
+ channelId?: string | null | undefined;
4364
4383
  status?: "active" | "pending" | undefined;
4365
4384
  apiKey?: string | undefined;
4366
4385
  tier?: "basic" | "regular" | "premium" | undefined;
4386
+ integrationType?: "meta" | "360dialog" | undefined;
4367
4387
  } | undefined;
4368
4388
  vonageCredentials?: {
4369
4389
  apiKey: string;
@@ -7494,35 +7514,38 @@ export declare const platformWebchatContract: {
7494
7514
  additionalCredentials: z.ZodOptional<z.ZodAny>;
7495
7515
  senderId: z.ZodOptional<z.ZodString>;
7496
7516
  whatsapp: z.ZodOptional<z.ZodObject<{
7497
- wabaBusinessId: z.ZodOptional<z.ZodString>;
7498
- wabaExternalId: z.ZodString;
7499
- phoneNumberId: z.ZodString;
7500
- email: z.ZodString;
7501
- clientId: z.ZodOptional<z.ZodString>;
7502
- channelId: z.ZodOptional<z.ZodString>;
7517
+ wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
7518
+ wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
7519
+ phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
7520
+ email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
7521
+ clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
7522
+ channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
7503
7523
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
7504
7524
  apiKey: z.ZodOptional<z.ZodString>;
7505
7525
  tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
7526
+ integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
7506
7527
  }, "strip", z.ZodTypeAny, {
7507
- email: string;
7508
- wabaExternalId: string;
7509
- phoneNumberId: string;
7510
- wabaBusinessId?: string | undefined;
7511
- clientId?: string | undefined;
7512
- channelId?: string | undefined;
7528
+ wabaBusinessId?: string | null | undefined;
7529
+ wabaExternalId?: string | null | undefined;
7530
+ phoneNumberId?: string | null | undefined;
7531
+ email?: string | null | undefined;
7532
+ clientId?: string | null | undefined;
7533
+ channelId?: string | null | undefined;
7513
7534
  status?: "active" | "pending" | undefined;
7514
7535
  apiKey?: string | undefined;
7515
7536
  tier?: "basic" | "regular" | "premium" | undefined;
7537
+ integrationType?: "meta" | "360dialog" | undefined;
7516
7538
  }, {
7517
- email: string;
7518
- wabaExternalId: string;
7519
- phoneNumberId: string;
7520
- wabaBusinessId?: string | undefined;
7521
- clientId?: string | undefined;
7522
- channelId?: string | undefined;
7539
+ wabaBusinessId?: string | null | undefined;
7540
+ wabaExternalId?: string | null | undefined;
7541
+ phoneNumberId?: string | null | undefined;
7542
+ email?: string | null | undefined;
7543
+ clientId?: string | null | undefined;
7544
+ channelId?: string | null | undefined;
7523
7545
  status?: "active" | "pending" | undefined;
7524
7546
  apiKey?: string | undefined;
7525
7547
  tier?: "basic" | "regular" | "premium" | undefined;
7548
+ integrationType?: "meta" | "360dialog" | undefined;
7526
7549
  }>>;
7527
7550
  vonageCredentials: z.ZodOptional<z.ZodObject<{
7528
7551
  mobileNumber: z.ZodString;
@@ -7547,15 +7570,16 @@ export declare const platformWebchatContract: {
7547
7570
  additionalCredentials?: any;
7548
7571
  senderId?: string | undefined;
7549
7572
  whatsapp?: {
7550
- email: string;
7551
- wabaExternalId: string;
7552
- phoneNumberId: string;
7553
- wabaBusinessId?: string | undefined;
7554
- clientId?: string | undefined;
7555
- channelId?: string | undefined;
7573
+ wabaBusinessId?: string | null | undefined;
7574
+ wabaExternalId?: string | null | undefined;
7575
+ phoneNumberId?: string | null | undefined;
7576
+ email?: string | null | undefined;
7577
+ clientId?: string | null | undefined;
7578
+ channelId?: string | null | undefined;
7556
7579
  status?: "active" | "pending" | undefined;
7557
7580
  apiKey?: string | undefined;
7558
7581
  tier?: "basic" | "regular" | "premium" | undefined;
7582
+ integrationType?: "meta" | "360dialog" | undefined;
7559
7583
  } | undefined;
7560
7584
  vonageCredentials?: {
7561
7585
  apiKey: string;
@@ -7572,15 +7596,16 @@ export declare const platformWebchatContract: {
7572
7596
  additionalCredentials?: any;
7573
7597
  senderId?: string | undefined;
7574
7598
  whatsapp?: {
7575
- email: string;
7576
- wabaExternalId: string;
7577
- phoneNumberId: string;
7578
- wabaBusinessId?: string | undefined;
7579
- clientId?: string | undefined;
7580
- channelId?: string | undefined;
7599
+ wabaBusinessId?: string | null | undefined;
7600
+ wabaExternalId?: string | null | undefined;
7601
+ phoneNumberId?: string | null | undefined;
7602
+ email?: string | null | undefined;
7603
+ clientId?: string | null | undefined;
7604
+ channelId?: string | null | undefined;
7581
7605
  status?: "active" | "pending" | undefined;
7582
7606
  apiKey?: string | undefined;
7583
7607
  tier?: "basic" | "regular" | "premium" | undefined;
7608
+ integrationType?: "meta" | "360dialog" | undefined;
7584
7609
  } | undefined;
7585
7610
  vonageCredentials?: {
7586
7611
  apiKey: string;
@@ -7831,15 +7856,16 @@ export declare const platformWebchatContract: {
7831
7856
  additionalCredentials?: any;
7832
7857
  senderId?: string | undefined;
7833
7858
  whatsapp?: {
7834
- email: string;
7835
- wabaExternalId: string;
7836
- phoneNumberId: string;
7837
- wabaBusinessId?: string | undefined;
7838
- clientId?: string | undefined;
7839
- channelId?: string | undefined;
7859
+ wabaBusinessId?: string | null | undefined;
7860
+ wabaExternalId?: string | null | undefined;
7861
+ phoneNumberId?: string | null | undefined;
7862
+ email?: string | null | undefined;
7863
+ clientId?: string | null | undefined;
7864
+ channelId?: string | null | undefined;
7840
7865
  status?: "active" | "pending" | undefined;
7841
7866
  apiKey?: string | undefined;
7842
7867
  tier?: "basic" | "regular" | "premium" | undefined;
7868
+ integrationType?: "meta" | "360dialog" | undefined;
7843
7869
  } | undefined;
7844
7870
  vonageCredentials?: {
7845
7871
  apiKey: string;
@@ -7921,15 +7947,16 @@ export declare const platformWebchatContract: {
7921
7947
  additionalCredentials?: any;
7922
7948
  senderId?: string | undefined;
7923
7949
  whatsapp?: {
7924
- email: string;
7925
- wabaExternalId: string;
7926
- phoneNumberId: string;
7927
- wabaBusinessId?: string | undefined;
7928
- clientId?: string | undefined;
7929
- channelId?: string | undefined;
7950
+ wabaBusinessId?: string | null | undefined;
7951
+ wabaExternalId?: string | null | undefined;
7952
+ phoneNumberId?: string | null | undefined;
7953
+ email?: string | null | undefined;
7954
+ clientId?: string | null | undefined;
7955
+ channelId?: string | null | undefined;
7930
7956
  status?: "active" | "pending" | undefined;
7931
7957
  apiKey?: string | undefined;
7932
7958
  tier?: "basic" | "regular" | "premium" | undefined;
7959
+ integrationType?: "meta" | "360dialog" | undefined;
7933
7960
  } | undefined;
7934
7961
  vonageCredentials?: {
7935
7962
  apiKey: string;
@@ -8575,15 +8602,16 @@ export declare const platformWebchatContract: {
8575
8602
  additionalCredentials?: any;
8576
8603
  senderId?: string | undefined;
8577
8604
  whatsapp?: {
8578
- email: string;
8579
- wabaExternalId: string;
8580
- phoneNumberId: string;
8581
- wabaBusinessId?: string | undefined;
8582
- clientId?: string | undefined;
8583
- channelId?: string | undefined;
8605
+ wabaBusinessId?: string | null | undefined;
8606
+ wabaExternalId?: string | null | undefined;
8607
+ phoneNumberId?: string | null | undefined;
8608
+ email?: string | null | undefined;
8609
+ clientId?: string | null | undefined;
8610
+ channelId?: string | null | undefined;
8584
8611
  status?: "active" | "pending" | undefined;
8585
8612
  apiKey?: string | undefined;
8586
8613
  tier?: "basic" | "regular" | "premium" | undefined;
8614
+ integrationType?: "meta" | "360dialog" | undefined;
8587
8615
  } | undefined;
8588
8616
  vonageCredentials?: {
8589
8617
  apiKey: string;
@@ -8998,15 +9026,16 @@ export declare const platformWebchatContract: {
8998
9026
  additionalCredentials?: any;
8999
9027
  senderId?: string | undefined;
9000
9028
  whatsapp?: {
9001
- email: string;
9002
- wabaExternalId: string;
9003
- phoneNumberId: string;
9004
- wabaBusinessId?: string | undefined;
9005
- clientId?: string | undefined;
9006
- channelId?: string | undefined;
9029
+ wabaBusinessId?: string | null | undefined;
9030
+ wabaExternalId?: string | null | undefined;
9031
+ phoneNumberId?: string | null | undefined;
9032
+ email?: string | null | undefined;
9033
+ clientId?: string | null | undefined;
9034
+ channelId?: string | null | undefined;
9007
9035
  status?: "active" | "pending" | undefined;
9008
9036
  apiKey?: string | undefined;
9009
9037
  tier?: "basic" | "regular" | "premium" | undefined;
9038
+ integrationType?: "meta" | "360dialog" | undefined;
9010
9039
  } | undefined;
9011
9040
  vonageCredentials?: {
9012
9041
  apiKey: string;
@@ -11194,15 +11223,16 @@ export declare const platformWebchatContract: {
11194
11223
  additionalCredentials?: any;
11195
11224
  senderId?: string | undefined;
11196
11225
  whatsapp?: {
11197
- email: string;
11198
- wabaExternalId: string;
11199
- phoneNumberId: string;
11200
- wabaBusinessId?: string | undefined;
11201
- clientId?: string | undefined;
11202
- channelId?: string | undefined;
11226
+ wabaBusinessId?: string | null | undefined;
11227
+ wabaExternalId?: string | null | undefined;
11228
+ phoneNumberId?: string | null | undefined;
11229
+ email?: string | null | undefined;
11230
+ clientId?: string | null | undefined;
11231
+ channelId?: string | null | undefined;
11203
11232
  status?: "active" | "pending" | undefined;
11204
11233
  apiKey?: string | undefined;
11205
11234
  tier?: "basic" | "regular" | "premium" | undefined;
11235
+ integrationType?: "meta" | "360dialog" | undefined;
11206
11236
  } | undefined;
11207
11237
  vonageCredentials?: {
11208
11238
  apiKey: string;
@@ -11954,15 +11984,16 @@ export declare const platformWebchatContract: {
11954
11984
  additionalCredentials?: any;
11955
11985
  senderId?: string | undefined;
11956
11986
  whatsapp?: {
11957
- email: string;
11958
- wabaExternalId: string;
11959
- phoneNumberId: string;
11960
- wabaBusinessId?: string | undefined;
11961
- clientId?: string | undefined;
11962
- channelId?: string | undefined;
11987
+ wabaBusinessId?: string | null | undefined;
11988
+ wabaExternalId?: string | null | undefined;
11989
+ phoneNumberId?: string | null | undefined;
11990
+ email?: string | null | undefined;
11991
+ clientId?: string | null | undefined;
11992
+ channelId?: string | null | undefined;
11963
11993
  status?: "active" | "pending" | undefined;
11964
11994
  apiKey?: string | undefined;
11965
11995
  tier?: "basic" | "regular" | "premium" | undefined;
11996
+ integrationType?: "meta" | "360dialog" | undefined;
11966
11997
  } | undefined;
11967
11998
  vonageCredentials?: {
11968
11999
  apiKey: string;
@@ -12715,15 +12746,16 @@ export declare const platformWebchatContract: {
12715
12746
  additionalCredentials?: any;
12716
12747
  senderId?: string | undefined;
12717
12748
  whatsapp?: {
12718
- email: string;
12719
- wabaExternalId: string;
12720
- phoneNumberId: string;
12721
- wabaBusinessId?: string | undefined;
12722
- clientId?: string | undefined;
12723
- channelId?: string | undefined;
12749
+ wabaBusinessId?: string | null | undefined;
12750
+ wabaExternalId?: string | null | undefined;
12751
+ phoneNumberId?: string | null | undefined;
12752
+ email?: string | null | undefined;
12753
+ clientId?: string | null | undefined;
12754
+ channelId?: string | null | undefined;
12724
12755
  status?: "active" | "pending" | undefined;
12725
12756
  apiKey?: string | undefined;
12726
12757
  tier?: "basic" | "regular" | "premium" | undefined;
12758
+ integrationType?: "meta" | "360dialog" | undefined;
12727
12759
  } | undefined;
12728
12760
  vonageCredentials?: {
12729
12761
  apiKey: string;
@@ -13475,15 +13507,16 @@ export declare const platformWebchatContract: {
13475
13507
  additionalCredentials?: any;
13476
13508
  senderId?: string | undefined;
13477
13509
  whatsapp?: {
13478
- email: string;
13479
- wabaExternalId: string;
13480
- phoneNumberId: string;
13481
- wabaBusinessId?: string | undefined;
13482
- clientId?: string | undefined;
13483
- channelId?: string | undefined;
13510
+ wabaBusinessId?: string | null | undefined;
13511
+ wabaExternalId?: string | null | undefined;
13512
+ phoneNumberId?: string | null | undefined;
13513
+ email?: string | null | undefined;
13514
+ clientId?: string | null | undefined;
13515
+ channelId?: string | null | undefined;
13484
13516
  status?: "active" | "pending" | undefined;
13485
13517
  apiKey?: string | undefined;
13486
13518
  tier?: "basic" | "regular" | "premium" | undefined;
13519
+ integrationType?: "meta" | "360dialog" | undefined;
13487
13520
  } | undefined;
13488
13521
  vonageCredentials?: {
13489
13522
  apiKey: string;
@@ -14236,15 +14269,16 @@ export declare const platformWebchatContract: {
14236
14269
  additionalCredentials?: any;
14237
14270
  senderId?: string | undefined;
14238
14271
  whatsapp?: {
14239
- email: string;
14240
- wabaExternalId: string;
14241
- phoneNumberId: string;
14242
- wabaBusinessId?: string | undefined;
14243
- clientId?: string | undefined;
14244
- channelId?: string | undefined;
14272
+ wabaBusinessId?: string | null | undefined;
14273
+ wabaExternalId?: string | null | undefined;
14274
+ phoneNumberId?: string | null | undefined;
14275
+ email?: string | null | undefined;
14276
+ clientId?: string | null | undefined;
14277
+ channelId?: string | null | undefined;
14245
14278
  status?: "active" | "pending" | undefined;
14246
14279
  apiKey?: string | undefined;
14247
14280
  tier?: "basic" | "regular" | "premium" | undefined;
14281
+ integrationType?: "meta" | "360dialog" | undefined;
14248
14282
  } | undefined;
14249
14283
  vonageCredentials?: {
14250
14284
  apiKey: string;
@@ -14996,15 +15030,16 @@ export declare const platformWebchatContract: {
14996
15030
  additionalCredentials?: any;
14997
15031
  senderId?: string | undefined;
14998
15032
  whatsapp?: {
14999
- email: string;
15000
- wabaExternalId: string;
15001
- phoneNumberId: string;
15002
- wabaBusinessId?: string | undefined;
15003
- clientId?: string | undefined;
15004
- channelId?: string | undefined;
15033
+ wabaBusinessId?: string | null | undefined;
15034
+ wabaExternalId?: string | null | undefined;
15035
+ phoneNumberId?: string | null | undefined;
15036
+ email?: string | null | undefined;
15037
+ clientId?: string | null | undefined;
15038
+ channelId?: string | null | undefined;
15005
15039
  status?: "active" | "pending" | undefined;
15006
15040
  apiKey?: string | undefined;
15007
15041
  tier?: "basic" | "regular" | "premium" | undefined;
15042
+ integrationType?: "meta" | "360dialog" | undefined;
15008
15043
  } | undefined;
15009
15044
  vonageCredentials?: {
15010
15045
  apiKey: string;
@@ -15759,15 +15794,16 @@ export declare const platformWebchatContract: {
15759
15794
  additionalCredentials?: any;
15760
15795
  senderId?: string | undefined;
15761
15796
  whatsapp?: {
15762
- email: string;
15763
- wabaExternalId: string;
15764
- phoneNumberId: string;
15765
- wabaBusinessId?: string | undefined;
15766
- clientId?: string | undefined;
15767
- channelId?: string | undefined;
15797
+ wabaBusinessId?: string | null | undefined;
15798
+ wabaExternalId?: string | null | undefined;
15799
+ phoneNumberId?: string | null | undefined;
15800
+ email?: string | null | undefined;
15801
+ clientId?: string | null | undefined;
15802
+ channelId?: string | null | undefined;
15768
15803
  status?: "active" | "pending" | undefined;
15769
15804
  apiKey?: string | undefined;
15770
15805
  tier?: "basic" | "regular" | "premium" | undefined;
15806
+ integrationType?: "meta" | "360dialog" | undefined;
15771
15807
  } | undefined;
15772
15808
  vonageCredentials?: {
15773
15809
  apiKey: string;
@@ -16519,15 +16555,16 @@ export declare const platformWebchatContract: {
16519
16555
  additionalCredentials?: any;
16520
16556
  senderId?: string | undefined;
16521
16557
  whatsapp?: {
16522
- email: string;
16523
- wabaExternalId: string;
16524
- phoneNumberId: string;
16525
- wabaBusinessId?: string | undefined;
16526
- clientId?: string | undefined;
16527
- channelId?: string | undefined;
16558
+ wabaBusinessId?: string | null | undefined;
16559
+ wabaExternalId?: string | null | undefined;
16560
+ phoneNumberId?: string | null | undefined;
16561
+ email?: string | null | undefined;
16562
+ clientId?: string | null | undefined;
16563
+ channelId?: string | null | undefined;
16528
16564
  status?: "active" | "pending" | undefined;
16529
16565
  apiKey?: string | undefined;
16530
16566
  tier?: "basic" | "regular" | "premium" | undefined;
16567
+ integrationType?: "meta" | "360dialog" | undefined;
16531
16568
  } | undefined;
16532
16569
  vonageCredentials?: {
16533
16570
  apiKey: string;
@@ -17283,15 +17320,16 @@ export declare const platformWebchatContract: {
17283
17320
  additionalCredentials?: any;
17284
17321
  senderId?: string | undefined;
17285
17322
  whatsapp?: {
17286
- email: string;
17287
- wabaExternalId: string;
17288
- phoneNumberId: string;
17289
- wabaBusinessId?: string | undefined;
17290
- clientId?: string | undefined;
17291
- channelId?: string | undefined;
17323
+ wabaBusinessId?: string | null | undefined;
17324
+ wabaExternalId?: string | null | undefined;
17325
+ phoneNumberId?: string | null | undefined;
17326
+ email?: string | null | undefined;
17327
+ clientId?: string | null | undefined;
17328
+ channelId?: string | null | undefined;
17292
17329
  status?: "active" | "pending" | undefined;
17293
17330
  apiKey?: string | undefined;
17294
17331
  tier?: "basic" | "regular" | "premium" | undefined;
17332
+ integrationType?: "meta" | "360dialog" | undefined;
17295
17333
  } | undefined;
17296
17334
  vonageCredentials?: {
17297
17335
  apiKey: string;
@@ -18043,15 +18081,16 @@ export declare const platformWebchatContract: {
18043
18081
  additionalCredentials?: any;
18044
18082
  senderId?: string | undefined;
18045
18083
  whatsapp?: {
18046
- email: string;
18047
- wabaExternalId: string;
18048
- phoneNumberId: string;
18049
- wabaBusinessId?: string | undefined;
18050
- clientId?: string | undefined;
18051
- channelId?: string | undefined;
18084
+ wabaBusinessId?: string | null | undefined;
18085
+ wabaExternalId?: string | null | undefined;
18086
+ phoneNumberId?: string | null | undefined;
18087
+ email?: string | null | undefined;
18088
+ clientId?: string | null | undefined;
18089
+ channelId?: string | null | undefined;
18052
18090
  status?: "active" | "pending" | undefined;
18053
18091
  apiKey?: string | undefined;
18054
18092
  tier?: "basic" | "regular" | "premium" | undefined;
18093
+ integrationType?: "meta" | "360dialog" | undefined;
18055
18094
  } | undefined;
18056
18095
  vonageCredentials?: {
18057
18096
  apiKey: string;
@@ -18820,35 +18859,38 @@ export declare const platformWebchatContract: {
18820
18859
  additionalCredentials: z.ZodOptional<z.ZodAny>;
18821
18860
  senderId: z.ZodOptional<z.ZodString>;
18822
18861
  whatsapp: z.ZodOptional<z.ZodObject<{
18823
- wabaBusinessId: z.ZodOptional<z.ZodString>;
18824
- wabaExternalId: z.ZodString;
18825
- phoneNumberId: z.ZodString;
18826
- email: z.ZodString;
18827
- clientId: z.ZodOptional<z.ZodString>;
18828
- channelId: z.ZodOptional<z.ZodString>;
18862
+ wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
18863
+ wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
18864
+ phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
18865
+ email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
18866
+ clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
18867
+ channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
18829
18868
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
18830
18869
  apiKey: z.ZodOptional<z.ZodString>;
18831
18870
  tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
18871
+ integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
18832
18872
  }, "strip", z.ZodTypeAny, {
18833
- email: string;
18834
- wabaExternalId: string;
18835
- phoneNumberId: string;
18836
- wabaBusinessId?: string | undefined;
18837
- clientId?: string | undefined;
18838
- channelId?: string | undefined;
18873
+ wabaBusinessId?: string | null | undefined;
18874
+ wabaExternalId?: string | null | undefined;
18875
+ phoneNumberId?: string | null | undefined;
18876
+ email?: string | null | undefined;
18877
+ clientId?: string | null | undefined;
18878
+ channelId?: string | null | undefined;
18839
18879
  status?: "active" | "pending" | undefined;
18840
18880
  apiKey?: string | undefined;
18841
18881
  tier?: "basic" | "regular" | "premium" | undefined;
18882
+ integrationType?: "meta" | "360dialog" | undefined;
18842
18883
  }, {
18843
- email: string;
18844
- wabaExternalId: string;
18845
- phoneNumberId: string;
18846
- wabaBusinessId?: string | undefined;
18847
- clientId?: string | undefined;
18848
- channelId?: string | undefined;
18884
+ wabaBusinessId?: string | null | undefined;
18885
+ wabaExternalId?: string | null | undefined;
18886
+ phoneNumberId?: string | null | undefined;
18887
+ email?: string | null | undefined;
18888
+ clientId?: string | null | undefined;
18889
+ channelId?: string | null | undefined;
18849
18890
  status?: "active" | "pending" | undefined;
18850
18891
  apiKey?: string | undefined;
18851
18892
  tier?: "basic" | "regular" | "premium" | undefined;
18893
+ integrationType?: "meta" | "360dialog" | undefined;
18852
18894
  }>>;
18853
18895
  vonageCredentials: z.ZodOptional<z.ZodObject<{
18854
18896
  mobileNumber: z.ZodString;
@@ -18873,15 +18915,16 @@ export declare const platformWebchatContract: {
18873
18915
  additionalCredentials?: any;
18874
18916
  senderId?: string | undefined;
18875
18917
  whatsapp?: {
18876
- email: string;
18877
- wabaExternalId: string;
18878
- phoneNumberId: string;
18879
- wabaBusinessId?: string | undefined;
18880
- clientId?: string | undefined;
18881
- channelId?: string | undefined;
18918
+ wabaBusinessId?: string | null | undefined;
18919
+ wabaExternalId?: string | null | undefined;
18920
+ phoneNumberId?: string | null | undefined;
18921
+ email?: string | null | undefined;
18922
+ clientId?: string | null | undefined;
18923
+ channelId?: string | null | undefined;
18882
18924
  status?: "active" | "pending" | undefined;
18883
18925
  apiKey?: string | undefined;
18884
18926
  tier?: "basic" | "regular" | "premium" | undefined;
18927
+ integrationType?: "meta" | "360dialog" | undefined;
18885
18928
  } | undefined;
18886
18929
  vonageCredentials?: {
18887
18930
  apiKey: string;
@@ -18898,15 +18941,16 @@ export declare const platformWebchatContract: {
18898
18941
  additionalCredentials?: any;
18899
18942
  senderId?: string | undefined;
18900
18943
  whatsapp?: {
18901
- email: string;
18902
- wabaExternalId: string;
18903
- phoneNumberId: string;
18904
- wabaBusinessId?: string | undefined;
18905
- clientId?: string | undefined;
18906
- channelId?: string | undefined;
18944
+ wabaBusinessId?: string | null | undefined;
18945
+ wabaExternalId?: string | null | undefined;
18946
+ phoneNumberId?: string | null | undefined;
18947
+ email?: string | null | undefined;
18948
+ clientId?: string | null | undefined;
18949
+ channelId?: string | null | undefined;
18907
18950
  status?: "active" | "pending" | undefined;
18908
18951
  apiKey?: string | undefined;
18909
18952
  tier?: "basic" | "regular" | "premium" | undefined;
18953
+ integrationType?: "meta" | "360dialog" | undefined;
18910
18954
  } | undefined;
18911
18955
  vonageCredentials?: {
18912
18956
  apiKey: string;
@@ -19157,15 +19201,16 @@ export declare const platformWebchatContract: {
19157
19201
  additionalCredentials?: any;
19158
19202
  senderId?: string | undefined;
19159
19203
  whatsapp?: {
19160
- email: string;
19161
- wabaExternalId: string;
19162
- phoneNumberId: string;
19163
- wabaBusinessId?: string | undefined;
19164
- clientId?: string | undefined;
19165
- channelId?: string | undefined;
19204
+ wabaBusinessId?: string | null | undefined;
19205
+ wabaExternalId?: string | null | undefined;
19206
+ phoneNumberId?: string | null | undefined;
19207
+ email?: string | null | undefined;
19208
+ clientId?: string | null | undefined;
19209
+ channelId?: string | null | undefined;
19166
19210
  status?: "active" | "pending" | undefined;
19167
19211
  apiKey?: string | undefined;
19168
19212
  tier?: "basic" | "regular" | "premium" | undefined;
19213
+ integrationType?: "meta" | "360dialog" | undefined;
19169
19214
  } | undefined;
19170
19215
  vonageCredentials?: {
19171
19216
  apiKey: string;
@@ -19247,15 +19292,16 @@ export declare const platformWebchatContract: {
19247
19292
  additionalCredentials?: any;
19248
19293
  senderId?: string | undefined;
19249
19294
  whatsapp?: {
19250
- email: string;
19251
- wabaExternalId: string;
19252
- phoneNumberId: string;
19253
- wabaBusinessId?: string | undefined;
19254
- clientId?: string | undefined;
19255
- channelId?: string | undefined;
19295
+ wabaBusinessId?: string | null | undefined;
19296
+ wabaExternalId?: string | null | undefined;
19297
+ phoneNumberId?: string | null | undefined;
19298
+ email?: string | null | undefined;
19299
+ clientId?: string | null | undefined;
19300
+ channelId?: string | null | undefined;
19256
19301
  status?: "active" | "pending" | undefined;
19257
19302
  apiKey?: string | undefined;
19258
19303
  tier?: "basic" | "regular" | "premium" | undefined;
19304
+ integrationType?: "meta" | "360dialog" | undefined;
19259
19305
  } | undefined;
19260
19306
  vonageCredentials?: {
19261
19307
  apiKey: string;
@@ -19339,15 +19385,16 @@ export declare const platformWebchatContract: {
19339
19385
  additionalCredentials?: any;
19340
19386
  senderId?: string | undefined;
19341
19387
  whatsapp?: {
19342
- email: string;
19343
- wabaExternalId: string;
19344
- phoneNumberId: string;
19345
- wabaBusinessId?: string | undefined;
19346
- clientId?: string | undefined;
19347
- channelId?: string | undefined;
19388
+ wabaBusinessId?: string | null | undefined;
19389
+ wabaExternalId?: string | null | undefined;
19390
+ phoneNumberId?: string | null | undefined;
19391
+ email?: string | null | undefined;
19392
+ clientId?: string | null | undefined;
19393
+ channelId?: string | null | undefined;
19348
19394
  status?: "active" | "pending" | undefined;
19349
19395
  apiKey?: string | undefined;
19350
19396
  tier?: "basic" | "regular" | "premium" | undefined;
19397
+ integrationType?: "meta" | "360dialog" | undefined;
19351
19398
  } | undefined;
19352
19399
  vonageCredentials?: {
19353
19400
  apiKey: string;
@@ -19432,15 +19479,16 @@ export declare const platformWebchatContract: {
19432
19479
  additionalCredentials?: any;
19433
19480
  senderId?: string | undefined;
19434
19481
  whatsapp?: {
19435
- email: string;
19436
- wabaExternalId: string;
19437
- phoneNumberId: string;
19438
- wabaBusinessId?: string | undefined;
19439
- clientId?: string | undefined;
19440
- channelId?: string | undefined;
19482
+ wabaBusinessId?: string | null | undefined;
19483
+ wabaExternalId?: string | null | undefined;
19484
+ phoneNumberId?: string | null | undefined;
19485
+ email?: string | null | undefined;
19486
+ clientId?: string | null | undefined;
19487
+ channelId?: string | null | undefined;
19441
19488
  status?: "active" | "pending" | undefined;
19442
19489
  apiKey?: string | undefined;
19443
19490
  tier?: "basic" | "regular" | "premium" | undefined;
19491
+ integrationType?: "meta" | "360dialog" | undefined;
19444
19492
  } | undefined;
19445
19493
  vonageCredentials?: {
19446
19494
  apiKey: string;
@@ -19560,35 +19608,38 @@ export declare const platformWebchatContract: {
19560
19608
  additionalCredentials: z.ZodOptional<z.ZodAny>;
19561
19609
  senderId: z.ZodOptional<z.ZodString>;
19562
19610
  whatsapp: z.ZodOptional<z.ZodObject<{
19563
- wabaBusinessId: z.ZodOptional<z.ZodString>;
19564
- wabaExternalId: z.ZodString;
19565
- phoneNumberId: z.ZodString;
19566
- email: z.ZodString;
19567
- clientId: z.ZodOptional<z.ZodString>;
19568
- channelId: z.ZodOptional<z.ZodString>;
19611
+ wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
19612
+ wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
19613
+ phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
19614
+ email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
19615
+ clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
19616
+ channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
19569
19617
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
19570
19618
  apiKey: z.ZodOptional<z.ZodString>;
19571
19619
  tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
19620
+ integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
19572
19621
  }, "strip", z.ZodTypeAny, {
19573
- email: string;
19574
- wabaExternalId: string;
19575
- phoneNumberId: string;
19576
- wabaBusinessId?: string | undefined;
19577
- clientId?: string | undefined;
19578
- channelId?: string | undefined;
19622
+ wabaBusinessId?: string | null | undefined;
19623
+ wabaExternalId?: string | null | undefined;
19624
+ phoneNumberId?: string | null | undefined;
19625
+ email?: string | null | undefined;
19626
+ clientId?: string | null | undefined;
19627
+ channelId?: string | null | undefined;
19579
19628
  status?: "active" | "pending" | undefined;
19580
19629
  apiKey?: string | undefined;
19581
19630
  tier?: "basic" | "regular" | "premium" | undefined;
19631
+ integrationType?: "meta" | "360dialog" | undefined;
19582
19632
  }, {
19583
- email: string;
19584
- wabaExternalId: string;
19585
- phoneNumberId: string;
19586
- wabaBusinessId?: string | undefined;
19587
- clientId?: string | undefined;
19588
- channelId?: string | undefined;
19633
+ wabaBusinessId?: string | null | undefined;
19634
+ wabaExternalId?: string | null | undefined;
19635
+ phoneNumberId?: string | null | undefined;
19636
+ email?: string | null | undefined;
19637
+ clientId?: string | null | undefined;
19638
+ channelId?: string | null | undefined;
19589
19639
  status?: "active" | "pending" | undefined;
19590
19640
  apiKey?: string | undefined;
19591
19641
  tier?: "basic" | "regular" | "premium" | undefined;
19642
+ integrationType?: "meta" | "360dialog" | undefined;
19592
19643
  }>>;
19593
19644
  vonageCredentials: z.ZodOptional<z.ZodObject<{
19594
19645
  mobileNumber: z.ZodString;
@@ -19613,15 +19664,16 @@ export declare const platformWebchatContract: {
19613
19664
  additionalCredentials?: any;
19614
19665
  senderId?: string | undefined;
19615
19666
  whatsapp?: {
19616
- email: string;
19617
- wabaExternalId: string;
19618
- phoneNumberId: string;
19619
- wabaBusinessId?: string | undefined;
19620
- clientId?: string | undefined;
19621
- channelId?: string | undefined;
19667
+ wabaBusinessId?: string | null | undefined;
19668
+ wabaExternalId?: string | null | undefined;
19669
+ phoneNumberId?: string | null | undefined;
19670
+ email?: string | null | undefined;
19671
+ clientId?: string | null | undefined;
19672
+ channelId?: string | null | undefined;
19622
19673
  status?: "active" | "pending" | undefined;
19623
19674
  apiKey?: string | undefined;
19624
19675
  tier?: "basic" | "regular" | "premium" | undefined;
19676
+ integrationType?: "meta" | "360dialog" | undefined;
19625
19677
  } | undefined;
19626
19678
  vonageCredentials?: {
19627
19679
  apiKey: string;
@@ -19638,15 +19690,16 @@ export declare const platformWebchatContract: {
19638
19690
  additionalCredentials?: any;
19639
19691
  senderId?: string | undefined;
19640
19692
  whatsapp?: {
19641
- email: string;
19642
- wabaExternalId: string;
19643
- phoneNumberId: string;
19644
- wabaBusinessId?: string | undefined;
19645
- clientId?: string | undefined;
19646
- channelId?: string | undefined;
19693
+ wabaBusinessId?: string | null | undefined;
19694
+ wabaExternalId?: string | null | undefined;
19695
+ phoneNumberId?: string | null | undefined;
19696
+ email?: string | null | undefined;
19697
+ clientId?: string | null | undefined;
19698
+ channelId?: string | null | undefined;
19647
19699
  status?: "active" | "pending" | undefined;
19648
19700
  apiKey?: string | undefined;
19649
19701
  tier?: "basic" | "regular" | "premium" | undefined;
19702
+ integrationType?: "meta" | "360dialog" | undefined;
19650
19703
  } | undefined;
19651
19704
  vonageCredentials?: {
19652
19705
  apiKey: string;
@@ -19693,15 +19746,16 @@ export declare const platformWebchatContract: {
19693
19746
  additionalCredentials?: any;
19694
19747
  senderId?: string | undefined;
19695
19748
  whatsapp?: {
19696
- email: string;
19697
- wabaExternalId: string;
19698
- phoneNumberId: string;
19699
- wabaBusinessId?: string | undefined;
19700
- clientId?: string | undefined;
19701
- channelId?: string | undefined;
19749
+ wabaBusinessId?: string | null | undefined;
19750
+ wabaExternalId?: string | null | undefined;
19751
+ phoneNumberId?: string | null | undefined;
19752
+ email?: string | null | undefined;
19753
+ clientId?: string | null | undefined;
19754
+ channelId?: string | null | undefined;
19702
19755
  status?: "active" | "pending" | undefined;
19703
19756
  apiKey?: string | undefined;
19704
19757
  tier?: "basic" | "regular" | "premium" | undefined;
19758
+ integrationType?: "meta" | "360dialog" | undefined;
19705
19759
  } | undefined;
19706
19760
  vonageCredentials?: {
19707
19761
  apiKey: string;
@@ -19736,15 +19790,16 @@ export declare const platformWebchatContract: {
19736
19790
  additionalCredentials?: any;
19737
19791
  senderId?: string | undefined;
19738
19792
  whatsapp?: {
19739
- email: string;
19740
- wabaExternalId: string;
19741
- phoneNumberId: string;
19742
- wabaBusinessId?: string | undefined;
19743
- clientId?: string | undefined;
19744
- channelId?: string | undefined;
19793
+ wabaBusinessId?: string | null | undefined;
19794
+ wabaExternalId?: string | null | undefined;
19795
+ phoneNumberId?: string | null | undefined;
19796
+ email?: string | null | undefined;
19797
+ clientId?: string | null | undefined;
19798
+ channelId?: string | null | undefined;
19745
19799
  status?: "active" | "pending" | undefined;
19746
19800
  apiKey?: string | undefined;
19747
19801
  tier?: "basic" | "regular" | "premium" | undefined;
19802
+ integrationType?: "meta" | "360dialog" | undefined;
19748
19803
  } | undefined;
19749
19804
  vonageCredentials?: {
19750
19805
  apiKey: string;
@@ -19781,15 +19836,16 @@ export declare const platformWebchatContract: {
19781
19836
  additionalCredentials?: any;
19782
19837
  senderId?: string | undefined;
19783
19838
  whatsapp?: {
19784
- email: string;
19785
- wabaExternalId: string;
19786
- phoneNumberId: string;
19787
- wabaBusinessId?: string | undefined;
19788
- clientId?: string | undefined;
19789
- channelId?: string | undefined;
19839
+ wabaBusinessId?: string | null | undefined;
19840
+ wabaExternalId?: string | null | undefined;
19841
+ phoneNumberId?: string | null | undefined;
19842
+ email?: string | null | undefined;
19843
+ clientId?: string | null | undefined;
19844
+ channelId?: string | null | undefined;
19790
19845
  status?: "active" | "pending" | undefined;
19791
19846
  apiKey?: string | undefined;
19792
19847
  tier?: "basic" | "regular" | "premium" | undefined;
19848
+ integrationType?: "meta" | "360dialog" | undefined;
19793
19849
  } | undefined;
19794
19850
  vonageCredentials?: {
19795
19851
  apiKey: string;
@@ -19827,15 +19883,16 @@ export declare const platformWebchatContract: {
19827
19883
  additionalCredentials?: any;
19828
19884
  senderId?: string | undefined;
19829
19885
  whatsapp?: {
19830
- email: string;
19831
- wabaExternalId: string;
19832
- phoneNumberId: string;
19833
- wabaBusinessId?: string | undefined;
19834
- clientId?: string | undefined;
19835
- channelId?: string | undefined;
19886
+ wabaBusinessId?: string | null | undefined;
19887
+ wabaExternalId?: string | null | undefined;
19888
+ phoneNumberId?: string | null | undefined;
19889
+ email?: string | null | undefined;
19890
+ clientId?: string | null | undefined;
19891
+ channelId?: string | null | undefined;
19836
19892
  status?: "active" | "pending" | undefined;
19837
19893
  apiKey?: string | undefined;
19838
19894
  tier?: "basic" | "regular" | "premium" | undefined;
19895
+ integrationType?: "meta" | "360dialog" | undefined;
19839
19896
  } | undefined;
19840
19897
  vonageCredentials?: {
19841
19898
  apiKey: string;
@@ -19909,35 +19966,38 @@ export declare const platformWebchatContract: {
19909
19966
  additionalCredentials: z.ZodOptional<z.ZodAny>;
19910
19967
  senderId: z.ZodOptional<z.ZodString>;
19911
19968
  whatsapp: z.ZodOptional<z.ZodObject<{
19912
- wabaBusinessId: z.ZodOptional<z.ZodString>;
19913
- wabaExternalId: z.ZodString;
19914
- phoneNumberId: z.ZodString;
19915
- email: z.ZodString;
19916
- clientId: z.ZodOptional<z.ZodString>;
19917
- channelId: z.ZodOptional<z.ZodString>;
19969
+ wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
19970
+ wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
19971
+ phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
19972
+ email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
19973
+ clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
19974
+ channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
19918
19975
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
19919
19976
  apiKey: z.ZodOptional<z.ZodString>;
19920
19977
  tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
19978
+ integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
19921
19979
  }, "strip", z.ZodTypeAny, {
19922
- email: string;
19923
- wabaExternalId: string;
19924
- phoneNumberId: string;
19925
- wabaBusinessId?: string | undefined;
19926
- clientId?: string | undefined;
19927
- channelId?: string | undefined;
19980
+ wabaBusinessId?: string | null | undefined;
19981
+ wabaExternalId?: string | null | undefined;
19982
+ phoneNumberId?: string | null | undefined;
19983
+ email?: string | null | undefined;
19984
+ clientId?: string | null | undefined;
19985
+ channelId?: string | null | undefined;
19928
19986
  status?: "active" | "pending" | undefined;
19929
19987
  apiKey?: string | undefined;
19930
19988
  tier?: "basic" | "regular" | "premium" | undefined;
19989
+ integrationType?: "meta" | "360dialog" | undefined;
19931
19990
  }, {
19932
- email: string;
19933
- wabaExternalId: string;
19934
- phoneNumberId: string;
19935
- wabaBusinessId?: string | undefined;
19936
- clientId?: string | undefined;
19937
- channelId?: string | undefined;
19991
+ wabaBusinessId?: string | null | undefined;
19992
+ wabaExternalId?: string | null | undefined;
19993
+ phoneNumberId?: string | null | undefined;
19994
+ email?: string | null | undefined;
19995
+ clientId?: string | null | undefined;
19996
+ channelId?: string | null | undefined;
19938
19997
  status?: "active" | "pending" | undefined;
19939
19998
  apiKey?: string | undefined;
19940
19999
  tier?: "basic" | "regular" | "premium" | undefined;
20000
+ integrationType?: "meta" | "360dialog" | undefined;
19941
20001
  }>>;
19942
20002
  vonageCredentials: z.ZodOptional<z.ZodObject<{
19943
20003
  mobileNumber: z.ZodString;
@@ -19962,15 +20022,16 @@ export declare const platformWebchatContract: {
19962
20022
  additionalCredentials?: any;
19963
20023
  senderId?: string | undefined;
19964
20024
  whatsapp?: {
19965
- email: string;
19966
- wabaExternalId: string;
19967
- phoneNumberId: string;
19968
- wabaBusinessId?: string | undefined;
19969
- clientId?: string | undefined;
19970
- channelId?: string | undefined;
20025
+ wabaBusinessId?: string | null | undefined;
20026
+ wabaExternalId?: string | null | undefined;
20027
+ phoneNumberId?: string | null | undefined;
20028
+ email?: string | null | undefined;
20029
+ clientId?: string | null | undefined;
20030
+ channelId?: string | null | undefined;
19971
20031
  status?: "active" | "pending" | undefined;
19972
20032
  apiKey?: string | undefined;
19973
20033
  tier?: "basic" | "regular" | "premium" | undefined;
20034
+ integrationType?: "meta" | "360dialog" | undefined;
19974
20035
  } | undefined;
19975
20036
  vonageCredentials?: {
19976
20037
  apiKey: string;
@@ -19987,15 +20048,16 @@ export declare const platformWebchatContract: {
19987
20048
  additionalCredentials?: any;
19988
20049
  senderId?: string | undefined;
19989
20050
  whatsapp?: {
19990
- email: string;
19991
- wabaExternalId: string;
19992
- phoneNumberId: string;
19993
- wabaBusinessId?: string | undefined;
19994
- clientId?: string | undefined;
19995
- channelId?: string | undefined;
20051
+ wabaBusinessId?: string | null | undefined;
20052
+ wabaExternalId?: string | null | undefined;
20053
+ phoneNumberId?: string | null | undefined;
20054
+ email?: string | null | undefined;
20055
+ clientId?: string | null | undefined;
20056
+ channelId?: string | null | undefined;
19996
20057
  status?: "active" | "pending" | undefined;
19997
20058
  apiKey?: string | undefined;
19998
20059
  tier?: "basic" | "regular" | "premium" | undefined;
20060
+ integrationType?: "meta" | "360dialog" | undefined;
19999
20061
  } | undefined;
20000
20062
  vonageCredentials?: {
20001
20063
  apiKey: string;
@@ -20042,15 +20104,16 @@ export declare const platformWebchatContract: {
20042
20104
  additionalCredentials?: any;
20043
20105
  senderId?: string | undefined;
20044
20106
  whatsapp?: {
20045
- email: string;
20046
- wabaExternalId: string;
20047
- phoneNumberId: string;
20048
- wabaBusinessId?: string | undefined;
20049
- clientId?: string | undefined;
20050
- channelId?: string | undefined;
20107
+ wabaBusinessId?: string | null | undefined;
20108
+ wabaExternalId?: string | null | undefined;
20109
+ phoneNumberId?: string | null | undefined;
20110
+ email?: string | null | undefined;
20111
+ clientId?: string | null | undefined;
20112
+ channelId?: string | null | undefined;
20051
20113
  status?: "active" | "pending" | undefined;
20052
20114
  apiKey?: string | undefined;
20053
20115
  tier?: "basic" | "regular" | "premium" | undefined;
20116
+ integrationType?: "meta" | "360dialog" | undefined;
20054
20117
  } | undefined;
20055
20118
  vonageCredentials?: {
20056
20119
  apiKey: string;
@@ -20085,15 +20148,16 @@ export declare const platformWebchatContract: {
20085
20148
  additionalCredentials?: any;
20086
20149
  senderId?: string | undefined;
20087
20150
  whatsapp?: {
20088
- email: string;
20089
- wabaExternalId: string;
20090
- phoneNumberId: string;
20091
- wabaBusinessId?: string | undefined;
20092
- clientId?: string | undefined;
20093
- channelId?: string | undefined;
20151
+ wabaBusinessId?: string | null | undefined;
20152
+ wabaExternalId?: string | null | undefined;
20153
+ phoneNumberId?: string | null | undefined;
20154
+ email?: string | null | undefined;
20155
+ clientId?: string | null | undefined;
20156
+ channelId?: string | null | undefined;
20094
20157
  status?: "active" | "pending" | undefined;
20095
20158
  apiKey?: string | undefined;
20096
20159
  tier?: "basic" | "regular" | "premium" | undefined;
20160
+ integrationType?: "meta" | "360dialog" | undefined;
20097
20161
  } | undefined;
20098
20162
  vonageCredentials?: {
20099
20163
  apiKey: string;
@@ -20130,15 +20194,16 @@ export declare const platformWebchatContract: {
20130
20194
  additionalCredentials?: any;
20131
20195
  senderId?: string | undefined;
20132
20196
  whatsapp?: {
20133
- email: string;
20134
- wabaExternalId: string;
20135
- phoneNumberId: string;
20136
- wabaBusinessId?: string | undefined;
20137
- clientId?: string | undefined;
20138
- channelId?: string | undefined;
20197
+ wabaBusinessId?: string | null | undefined;
20198
+ wabaExternalId?: string | null | undefined;
20199
+ phoneNumberId?: string | null | undefined;
20200
+ email?: string | null | undefined;
20201
+ clientId?: string | null | undefined;
20202
+ channelId?: string | null | undefined;
20139
20203
  status?: "active" | "pending" | undefined;
20140
20204
  apiKey?: string | undefined;
20141
20205
  tier?: "basic" | "regular" | "premium" | undefined;
20206
+ integrationType?: "meta" | "360dialog" | undefined;
20142
20207
  } | undefined;
20143
20208
  vonageCredentials?: {
20144
20209
  apiKey: string;
@@ -20176,15 +20241,16 @@ export declare const platformWebchatContract: {
20176
20241
  additionalCredentials?: any;
20177
20242
  senderId?: string | undefined;
20178
20243
  whatsapp?: {
20179
- email: string;
20180
- wabaExternalId: string;
20181
- phoneNumberId: string;
20182
- wabaBusinessId?: string | undefined;
20183
- clientId?: string | undefined;
20184
- channelId?: string | undefined;
20244
+ wabaBusinessId?: string | null | undefined;
20245
+ wabaExternalId?: string | null | undefined;
20246
+ phoneNumberId?: string | null | undefined;
20247
+ email?: string | null | undefined;
20248
+ clientId?: string | null | undefined;
20249
+ channelId?: string | null | undefined;
20185
20250
  status?: "active" | "pending" | undefined;
20186
20251
  apiKey?: string | undefined;
20187
20252
  tier?: "basic" | "regular" | "premium" | undefined;
20253
+ integrationType?: "meta" | "360dialog" | undefined;
20188
20254
  } | undefined;
20189
20255
  vonageCredentials?: {
20190
20256
  apiKey: string;
@@ -20258,35 +20324,38 @@ export declare const platformWebchatContract: {
20258
20324
  additionalCredentials: z.ZodOptional<z.ZodAny>;
20259
20325
  senderId: z.ZodOptional<z.ZodString>;
20260
20326
  whatsapp: z.ZodOptional<z.ZodObject<{
20261
- wabaBusinessId: z.ZodOptional<z.ZodString>;
20262
- wabaExternalId: z.ZodString;
20263
- phoneNumberId: z.ZodString;
20264
- email: z.ZodString;
20265
- clientId: z.ZodOptional<z.ZodString>;
20266
- channelId: z.ZodOptional<z.ZodString>;
20327
+ wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
20328
+ wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
20329
+ phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
20330
+ email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
20331
+ clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
20332
+ channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
20267
20333
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
20268
20334
  apiKey: z.ZodOptional<z.ZodString>;
20269
20335
  tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
20336
+ integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
20270
20337
  }, "strip", z.ZodTypeAny, {
20271
- email: string;
20272
- wabaExternalId: string;
20273
- phoneNumberId: string;
20274
- wabaBusinessId?: string | undefined;
20275
- clientId?: string | undefined;
20276
- channelId?: string | undefined;
20338
+ wabaBusinessId?: string | null | undefined;
20339
+ wabaExternalId?: string | null | undefined;
20340
+ phoneNumberId?: string | null | undefined;
20341
+ email?: string | null | undefined;
20342
+ clientId?: string | null | undefined;
20343
+ channelId?: string | null | undefined;
20277
20344
  status?: "active" | "pending" | undefined;
20278
20345
  apiKey?: string | undefined;
20279
20346
  tier?: "basic" | "regular" | "premium" | undefined;
20347
+ integrationType?: "meta" | "360dialog" | undefined;
20280
20348
  }, {
20281
- email: string;
20282
- wabaExternalId: string;
20283
- phoneNumberId: string;
20284
- wabaBusinessId?: string | undefined;
20285
- clientId?: string | undefined;
20286
- channelId?: string | undefined;
20349
+ wabaBusinessId?: string | null | undefined;
20350
+ wabaExternalId?: string | null | undefined;
20351
+ phoneNumberId?: string | null | undefined;
20352
+ email?: string | null | undefined;
20353
+ clientId?: string | null | undefined;
20354
+ channelId?: string | null | undefined;
20287
20355
  status?: "active" | "pending" | undefined;
20288
20356
  apiKey?: string | undefined;
20289
20357
  tier?: "basic" | "regular" | "premium" | undefined;
20358
+ integrationType?: "meta" | "360dialog" | undefined;
20290
20359
  }>>;
20291
20360
  vonageCredentials: z.ZodOptional<z.ZodObject<{
20292
20361
  mobileNumber: z.ZodString;
@@ -20311,15 +20380,16 @@ export declare const platformWebchatContract: {
20311
20380
  additionalCredentials?: any;
20312
20381
  senderId?: string | undefined;
20313
20382
  whatsapp?: {
20314
- email: string;
20315
- wabaExternalId: string;
20316
- phoneNumberId: string;
20317
- wabaBusinessId?: string | undefined;
20318
- clientId?: string | undefined;
20319
- channelId?: string | undefined;
20383
+ wabaBusinessId?: string | null | undefined;
20384
+ wabaExternalId?: string | null | undefined;
20385
+ phoneNumberId?: string | null | undefined;
20386
+ email?: string | null | undefined;
20387
+ clientId?: string | null | undefined;
20388
+ channelId?: string | null | undefined;
20320
20389
  status?: "active" | "pending" | undefined;
20321
20390
  apiKey?: string | undefined;
20322
20391
  tier?: "basic" | "regular" | "premium" | undefined;
20392
+ integrationType?: "meta" | "360dialog" | undefined;
20323
20393
  } | undefined;
20324
20394
  vonageCredentials?: {
20325
20395
  apiKey: string;
@@ -20336,15 +20406,16 @@ export declare const platformWebchatContract: {
20336
20406
  additionalCredentials?: any;
20337
20407
  senderId?: string | undefined;
20338
20408
  whatsapp?: {
20339
- email: string;
20340
- wabaExternalId: string;
20341
- phoneNumberId: string;
20342
- wabaBusinessId?: string | undefined;
20343
- clientId?: string | undefined;
20344
- channelId?: string | undefined;
20409
+ wabaBusinessId?: string | null | undefined;
20410
+ wabaExternalId?: string | null | undefined;
20411
+ phoneNumberId?: string | null | undefined;
20412
+ email?: string | null | undefined;
20413
+ clientId?: string | null | undefined;
20414
+ channelId?: string | null | undefined;
20345
20415
  status?: "active" | "pending" | undefined;
20346
20416
  apiKey?: string | undefined;
20347
20417
  tier?: "basic" | "regular" | "premium" | undefined;
20418
+ integrationType?: "meta" | "360dialog" | undefined;
20348
20419
  } | undefined;
20349
20420
  vonageCredentials?: {
20350
20421
  apiKey: string;
@@ -20391,15 +20462,16 @@ export declare const platformWebchatContract: {
20391
20462
  additionalCredentials?: any;
20392
20463
  senderId?: string | undefined;
20393
20464
  whatsapp?: {
20394
- email: string;
20395
- wabaExternalId: string;
20396
- phoneNumberId: string;
20397
- wabaBusinessId?: string | undefined;
20398
- clientId?: string | undefined;
20399
- channelId?: string | undefined;
20465
+ wabaBusinessId?: string | null | undefined;
20466
+ wabaExternalId?: string | null | undefined;
20467
+ phoneNumberId?: string | null | undefined;
20468
+ email?: string | null | undefined;
20469
+ clientId?: string | null | undefined;
20470
+ channelId?: string | null | undefined;
20400
20471
  status?: "active" | "pending" | undefined;
20401
20472
  apiKey?: string | undefined;
20402
20473
  tier?: "basic" | "regular" | "premium" | undefined;
20474
+ integrationType?: "meta" | "360dialog" | undefined;
20403
20475
  } | undefined;
20404
20476
  vonageCredentials?: {
20405
20477
  apiKey: string;
@@ -20434,15 +20506,16 @@ export declare const platformWebchatContract: {
20434
20506
  additionalCredentials?: any;
20435
20507
  senderId?: string | undefined;
20436
20508
  whatsapp?: {
20437
- email: string;
20438
- wabaExternalId: string;
20439
- phoneNumberId: string;
20440
- wabaBusinessId?: string | undefined;
20441
- clientId?: string | undefined;
20442
- channelId?: string | undefined;
20509
+ wabaBusinessId?: string | null | undefined;
20510
+ wabaExternalId?: string | null | undefined;
20511
+ phoneNumberId?: string | null | undefined;
20512
+ email?: string | null | undefined;
20513
+ clientId?: string | null | undefined;
20514
+ channelId?: string | null | undefined;
20443
20515
  status?: "active" | "pending" | undefined;
20444
20516
  apiKey?: string | undefined;
20445
20517
  tier?: "basic" | "regular" | "premium" | undefined;
20518
+ integrationType?: "meta" | "360dialog" | undefined;
20446
20519
  } | undefined;
20447
20520
  vonageCredentials?: {
20448
20521
  apiKey: string;
@@ -20479,15 +20552,16 @@ export declare const platformWebchatContract: {
20479
20552
  additionalCredentials?: any;
20480
20553
  senderId?: string | undefined;
20481
20554
  whatsapp?: {
20482
- email: string;
20483
- wabaExternalId: string;
20484
- phoneNumberId: string;
20485
- wabaBusinessId?: string | undefined;
20486
- clientId?: string | undefined;
20487
- channelId?: string | undefined;
20555
+ wabaBusinessId?: string | null | undefined;
20556
+ wabaExternalId?: string | null | undefined;
20557
+ phoneNumberId?: string | null | undefined;
20558
+ email?: string | null | undefined;
20559
+ clientId?: string | null | undefined;
20560
+ channelId?: string | null | undefined;
20488
20561
  status?: "active" | "pending" | undefined;
20489
20562
  apiKey?: string | undefined;
20490
20563
  tier?: "basic" | "regular" | "premium" | undefined;
20564
+ integrationType?: "meta" | "360dialog" | undefined;
20491
20565
  } | undefined;
20492
20566
  vonageCredentials?: {
20493
20567
  apiKey: string;
@@ -20525,15 +20599,16 @@ export declare const platformWebchatContract: {
20525
20599
  additionalCredentials?: any;
20526
20600
  senderId?: string | undefined;
20527
20601
  whatsapp?: {
20528
- email: string;
20529
- wabaExternalId: string;
20530
- phoneNumberId: string;
20531
- wabaBusinessId?: string | undefined;
20532
- clientId?: string | undefined;
20533
- channelId?: string | undefined;
20602
+ wabaBusinessId?: string | null | undefined;
20603
+ wabaExternalId?: string | null | undefined;
20604
+ phoneNumberId?: string | null | undefined;
20605
+ email?: string | null | undefined;
20606
+ clientId?: string | null | undefined;
20607
+ channelId?: string | null | undefined;
20534
20608
  status?: "active" | "pending" | undefined;
20535
20609
  apiKey?: string | undefined;
20536
20610
  tier?: "basic" | "regular" | "premium" | undefined;
20611
+ integrationType?: "meta" | "360dialog" | undefined;
20537
20612
  } | undefined;
20538
20613
  vonageCredentials?: {
20539
20614
  apiKey: string;