@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
@@ -141,35 +141,38 @@ export declare const instagramContract: {
141
141
  additionalCredentials: z.ZodOptional<z.ZodAny>;
142
142
  senderId: z.ZodOptional<z.ZodString>;
143
143
  whatsapp: z.ZodOptional<z.ZodObject<{
144
- wabaBusinessId: z.ZodOptional<z.ZodString>;
145
- wabaExternalId: z.ZodString;
146
- phoneNumberId: z.ZodString;
147
- email: z.ZodString;
148
- clientId: z.ZodOptional<z.ZodString>;
149
- channelId: z.ZodOptional<z.ZodString>;
144
+ wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
145
+ wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
146
+ phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
147
+ email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
148
+ clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
149
+ channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
150
150
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
151
151
  apiKey: z.ZodOptional<z.ZodString>;
152
152
  tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
153
+ integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
153
154
  }, "strip", z.ZodTypeAny, {
154
- email: string;
155
- wabaExternalId: string;
156
- phoneNumberId: string;
157
- wabaBusinessId?: string | undefined;
158
- clientId?: string | undefined;
159
- channelId?: string | undefined;
155
+ wabaBusinessId?: string | null | undefined;
156
+ wabaExternalId?: string | null | undefined;
157
+ phoneNumberId?: string | null | undefined;
158
+ email?: string | null | undefined;
159
+ clientId?: string | null | undefined;
160
+ channelId?: string | null | undefined;
160
161
  status?: "active" | "pending" | undefined;
161
162
  apiKey?: string | undefined;
162
163
  tier?: "basic" | "regular" | "premium" | undefined;
164
+ integrationType?: "meta" | "360dialog" | undefined;
163
165
  }, {
164
- email: string;
165
- wabaExternalId: string;
166
- phoneNumberId: string;
167
- wabaBusinessId?: string | undefined;
168
- clientId?: string | undefined;
169
- channelId?: string | undefined;
166
+ wabaBusinessId?: string | null | undefined;
167
+ wabaExternalId?: string | null | undefined;
168
+ phoneNumberId?: string | null | undefined;
169
+ email?: string | null | undefined;
170
+ clientId?: string | null | undefined;
171
+ channelId?: string | null | undefined;
170
172
  status?: "active" | "pending" | undefined;
171
173
  apiKey?: string | undefined;
172
174
  tier?: "basic" | "regular" | "premium" | undefined;
175
+ integrationType?: "meta" | "360dialog" | undefined;
173
176
  }>>;
174
177
  vonageCredentials: z.ZodOptional<z.ZodObject<{
175
178
  mobileNumber: z.ZodString;
@@ -194,15 +197,16 @@ export declare const instagramContract: {
194
197
  additionalCredentials?: any;
195
198
  senderId?: string | undefined;
196
199
  whatsapp?: {
197
- email: string;
198
- wabaExternalId: string;
199
- phoneNumberId: string;
200
- wabaBusinessId?: string | undefined;
201
- clientId?: string | undefined;
202
- channelId?: string | undefined;
200
+ wabaBusinessId?: string | null | undefined;
201
+ wabaExternalId?: string | null | undefined;
202
+ phoneNumberId?: string | null | undefined;
203
+ email?: string | null | undefined;
204
+ clientId?: string | null | undefined;
205
+ channelId?: string | null | undefined;
203
206
  status?: "active" | "pending" | undefined;
204
207
  apiKey?: string | undefined;
205
208
  tier?: "basic" | "regular" | "premium" | undefined;
209
+ integrationType?: "meta" | "360dialog" | undefined;
206
210
  } | undefined;
207
211
  vonageCredentials?: {
208
212
  apiKey: string;
@@ -219,15 +223,16 @@ export declare const instagramContract: {
219
223
  additionalCredentials?: any;
220
224
  senderId?: string | undefined;
221
225
  whatsapp?: {
222
- email: string;
223
- wabaExternalId: string;
224
- phoneNumberId: string;
225
- wabaBusinessId?: string | undefined;
226
- clientId?: string | undefined;
227
- channelId?: string | undefined;
226
+ wabaBusinessId?: string | null | undefined;
227
+ wabaExternalId?: string | null | undefined;
228
+ phoneNumberId?: string | null | undefined;
229
+ email?: string | null | undefined;
230
+ clientId?: string | null | undefined;
231
+ channelId?: string | null | undefined;
228
232
  status?: "active" | "pending" | undefined;
229
233
  apiKey?: string | undefined;
230
234
  tier?: "basic" | "regular" | "premium" | undefined;
235
+ integrationType?: "meta" | "360dialog" | undefined;
231
236
  } | undefined;
232
237
  vonageCredentials?: {
233
238
  apiKey: string;
@@ -274,15 +279,16 @@ export declare const instagramContract: {
274
279
  additionalCredentials?: any;
275
280
  senderId?: string | undefined;
276
281
  whatsapp?: {
277
- email: string;
278
- wabaExternalId: string;
279
- phoneNumberId: string;
280
- wabaBusinessId?: string | undefined;
281
- clientId?: string | undefined;
282
- channelId?: string | undefined;
282
+ wabaBusinessId?: string | null | undefined;
283
+ wabaExternalId?: string | null | undefined;
284
+ phoneNumberId?: string | null | undefined;
285
+ email?: string | null | undefined;
286
+ clientId?: string | null | undefined;
287
+ channelId?: string | null | undefined;
283
288
  status?: "active" | "pending" | undefined;
284
289
  apiKey?: string | undefined;
285
290
  tier?: "basic" | "regular" | "premium" | undefined;
291
+ integrationType?: "meta" | "360dialog" | undefined;
286
292
  } | undefined;
287
293
  vonageCredentials?: {
288
294
  apiKey: string;
@@ -317,15 +323,16 @@ export declare const instagramContract: {
317
323
  additionalCredentials?: any;
318
324
  senderId?: string | undefined;
319
325
  whatsapp?: {
320
- email: string;
321
- wabaExternalId: string;
322
- phoneNumberId: string;
323
- wabaBusinessId?: string | undefined;
324
- clientId?: string | undefined;
325
- channelId?: string | undefined;
326
+ wabaBusinessId?: string | null | undefined;
327
+ wabaExternalId?: string | null | undefined;
328
+ phoneNumberId?: string | null | undefined;
329
+ email?: string | null | undefined;
330
+ clientId?: string | null | undefined;
331
+ channelId?: string | null | undefined;
326
332
  status?: "active" | "pending" | undefined;
327
333
  apiKey?: string | undefined;
328
334
  tier?: "basic" | "regular" | "premium" | undefined;
335
+ integrationType?: "meta" | "360dialog" | undefined;
329
336
  } | undefined;
330
337
  vonageCredentials?: {
331
338
  apiKey: string;
@@ -365,15 +372,16 @@ export declare const instagramContract: {
365
372
  additionalCredentials?: any;
366
373
  senderId?: string | undefined;
367
374
  whatsapp?: {
368
- email: string;
369
- wabaExternalId: string;
370
- phoneNumberId: string;
371
- wabaBusinessId?: string | undefined;
372
- clientId?: string | undefined;
373
- channelId?: string | undefined;
375
+ wabaBusinessId?: string | null | undefined;
376
+ wabaExternalId?: string | null | undefined;
377
+ phoneNumberId?: string | null | undefined;
378
+ email?: string | null | undefined;
379
+ clientId?: string | null | undefined;
380
+ channelId?: string | null | undefined;
374
381
  status?: "active" | "pending" | undefined;
375
382
  apiKey?: string | undefined;
376
383
  tier?: "basic" | "regular" | "premium" | undefined;
384
+ integrationType?: "meta" | "360dialog" | undefined;
377
385
  } | undefined;
378
386
  vonageCredentials?: {
379
387
  apiKey: string;
@@ -452,15 +460,16 @@ export declare const instagramContract: {
452
460
  additionalCredentials?: any;
453
461
  senderId?: string | undefined;
454
462
  whatsapp?: {
455
- email: string;
456
- wabaExternalId: string;
457
- phoneNumberId: string;
458
- wabaBusinessId?: string | undefined;
459
- clientId?: string | undefined;
460
- channelId?: string | undefined;
463
+ wabaBusinessId?: string | null | undefined;
464
+ wabaExternalId?: string | null | undefined;
465
+ phoneNumberId?: string | null | undefined;
466
+ email?: string | null | undefined;
467
+ clientId?: string | null | undefined;
468
+ channelId?: string | null | undefined;
461
469
  status?: "active" | "pending" | undefined;
462
470
  apiKey?: string | undefined;
463
471
  tier?: "basic" | "regular" | "premium" | undefined;
472
+ integrationType?: "meta" | "360dialog" | undefined;
464
473
  } | undefined;
465
474
  vonageCredentials?: {
466
475
  apiKey: string;
@@ -707,15 +716,16 @@ export declare const instagramContract: {
707
716
  additionalCredentials?: any;
708
717
  senderId?: string | undefined;
709
718
  whatsapp?: {
710
- email: string;
711
- wabaExternalId: string;
712
- phoneNumberId: string;
713
- wabaBusinessId?: string | undefined;
714
- clientId?: string | undefined;
715
- channelId?: string | undefined;
719
+ wabaBusinessId?: string | null | undefined;
720
+ wabaExternalId?: string | null | undefined;
721
+ phoneNumberId?: string | null | undefined;
722
+ email?: string | null | undefined;
723
+ clientId?: string | null | undefined;
724
+ channelId?: string | null | undefined;
716
725
  status?: "active" | "pending" | undefined;
717
726
  apiKey?: string | undefined;
718
727
  tier?: "basic" | "regular" | "premium" | undefined;
728
+ integrationType?: "meta" | "360dialog" | undefined;
719
729
  } | undefined;
720
730
  vonageCredentials?: {
721
731
  apiKey: string;
@@ -833,15 +843,16 @@ export declare const instagramContract: {
833
843
  additionalCredentials?: any;
834
844
  senderId?: string | undefined;
835
845
  whatsapp?: {
836
- email: string;
837
- wabaExternalId: string;
838
- phoneNumberId: string;
839
- wabaBusinessId?: string | undefined;
840
- clientId?: string | undefined;
841
- channelId?: string | undefined;
846
+ wabaBusinessId?: string | null | undefined;
847
+ wabaExternalId?: string | null | undefined;
848
+ phoneNumberId?: string | null | undefined;
849
+ email?: string | null | undefined;
850
+ clientId?: string | null | undefined;
851
+ channelId?: string | null | undefined;
842
852
  status?: "active" | "pending" | undefined;
843
853
  apiKey?: string | undefined;
844
854
  tier?: "basic" | "regular" | "premium" | undefined;
855
+ integrationType?: "meta" | "360dialog" | undefined;
845
856
  } | undefined;
846
857
  vonageCredentials?: {
847
858
  apiKey: string;
@@ -2854,35 +2865,38 @@ export declare const instagramContract: {
2854
2865
  additionalCredentials: z.ZodOptional<z.ZodAny>;
2855
2866
  senderId: z.ZodOptional<z.ZodString>;
2856
2867
  whatsapp: z.ZodOptional<z.ZodObject<{
2857
- wabaBusinessId: z.ZodOptional<z.ZodString>;
2858
- wabaExternalId: z.ZodString;
2859
- phoneNumberId: z.ZodString;
2860
- email: z.ZodString;
2861
- clientId: z.ZodOptional<z.ZodString>;
2862
- channelId: z.ZodOptional<z.ZodString>;
2868
+ wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2869
+ wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2870
+ phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2871
+ email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2872
+ clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2873
+ channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2863
2874
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
2864
2875
  apiKey: z.ZodOptional<z.ZodString>;
2865
2876
  tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
2877
+ integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
2866
2878
  }, "strip", z.ZodTypeAny, {
2867
- email: string;
2868
- wabaExternalId: string;
2869
- phoneNumberId: string;
2870
- wabaBusinessId?: string | undefined;
2871
- clientId?: string | undefined;
2872
- channelId?: string | undefined;
2879
+ wabaBusinessId?: string | null | undefined;
2880
+ wabaExternalId?: string | null | undefined;
2881
+ phoneNumberId?: string | null | undefined;
2882
+ email?: string | null | undefined;
2883
+ clientId?: string | null | undefined;
2884
+ channelId?: string | null | undefined;
2873
2885
  status?: "active" | "pending" | undefined;
2874
2886
  apiKey?: string | undefined;
2875
2887
  tier?: "basic" | "regular" | "premium" | undefined;
2888
+ integrationType?: "meta" | "360dialog" | undefined;
2876
2889
  }, {
2877
- email: string;
2878
- wabaExternalId: string;
2879
- phoneNumberId: string;
2880
- wabaBusinessId?: string | undefined;
2881
- clientId?: string | undefined;
2882
- channelId?: string | undefined;
2890
+ wabaBusinessId?: string | null | undefined;
2891
+ wabaExternalId?: string | null | undefined;
2892
+ phoneNumberId?: string | null | undefined;
2893
+ email?: string | null | undefined;
2894
+ clientId?: string | null | undefined;
2895
+ channelId?: string | null | undefined;
2883
2896
  status?: "active" | "pending" | undefined;
2884
2897
  apiKey?: string | undefined;
2885
2898
  tier?: "basic" | "regular" | "premium" | undefined;
2899
+ integrationType?: "meta" | "360dialog" | undefined;
2886
2900
  }>>;
2887
2901
  vonageCredentials: z.ZodOptional<z.ZodObject<{
2888
2902
  mobileNumber: z.ZodString;
@@ -2907,15 +2921,16 @@ export declare const instagramContract: {
2907
2921
  additionalCredentials?: any;
2908
2922
  senderId?: string | undefined;
2909
2923
  whatsapp?: {
2910
- email: string;
2911
- wabaExternalId: string;
2912
- phoneNumberId: string;
2913
- wabaBusinessId?: string | undefined;
2914
- clientId?: string | undefined;
2915
- channelId?: string | undefined;
2924
+ wabaBusinessId?: string | null | undefined;
2925
+ wabaExternalId?: string | null | undefined;
2926
+ phoneNumberId?: string | null | undefined;
2927
+ email?: string | null | undefined;
2928
+ clientId?: string | null | undefined;
2929
+ channelId?: string | null | undefined;
2916
2930
  status?: "active" | "pending" | undefined;
2917
2931
  apiKey?: string | undefined;
2918
2932
  tier?: "basic" | "regular" | "premium" | undefined;
2933
+ integrationType?: "meta" | "360dialog" | undefined;
2919
2934
  } | undefined;
2920
2935
  vonageCredentials?: {
2921
2936
  apiKey: string;
@@ -2932,15 +2947,16 @@ export declare const instagramContract: {
2932
2947
  additionalCredentials?: any;
2933
2948
  senderId?: string | undefined;
2934
2949
  whatsapp?: {
2935
- email: string;
2936
- wabaExternalId: string;
2937
- phoneNumberId: string;
2938
- wabaBusinessId?: string | undefined;
2939
- clientId?: string | undefined;
2940
- channelId?: string | undefined;
2950
+ wabaBusinessId?: string | null | undefined;
2951
+ wabaExternalId?: string | null | undefined;
2952
+ phoneNumberId?: string | null | undefined;
2953
+ email?: string | null | undefined;
2954
+ clientId?: string | null | undefined;
2955
+ channelId?: string | null | undefined;
2941
2956
  status?: "active" | "pending" | undefined;
2942
2957
  apiKey?: string | undefined;
2943
2958
  tier?: "basic" | "regular" | "premium" | undefined;
2959
+ integrationType?: "meta" | "360dialog" | undefined;
2944
2960
  } | undefined;
2945
2961
  vonageCredentials?: {
2946
2962
  apiKey: string;
@@ -3191,15 +3207,16 @@ export declare const instagramContract: {
3191
3207
  additionalCredentials?: any;
3192
3208
  senderId?: string | undefined;
3193
3209
  whatsapp?: {
3194
- email: string;
3195
- wabaExternalId: string;
3196
- phoneNumberId: string;
3197
- wabaBusinessId?: string | undefined;
3198
- clientId?: string | undefined;
3199
- channelId?: string | undefined;
3210
+ wabaBusinessId?: string | null | undefined;
3211
+ wabaExternalId?: string | null | undefined;
3212
+ phoneNumberId?: string | null | undefined;
3213
+ email?: string | null | undefined;
3214
+ clientId?: string | null | undefined;
3215
+ channelId?: string | null | undefined;
3200
3216
  status?: "active" | "pending" | undefined;
3201
3217
  apiKey?: string | undefined;
3202
3218
  tier?: "basic" | "regular" | "premium" | undefined;
3219
+ integrationType?: "meta" | "360dialog" | undefined;
3203
3220
  } | undefined;
3204
3221
  vonageCredentials?: {
3205
3222
  apiKey: string;
@@ -3281,15 +3298,16 @@ export declare const instagramContract: {
3281
3298
  additionalCredentials?: any;
3282
3299
  senderId?: string | undefined;
3283
3300
  whatsapp?: {
3284
- email: string;
3285
- wabaExternalId: string;
3286
- phoneNumberId: string;
3287
- wabaBusinessId?: string | undefined;
3288
- clientId?: string | undefined;
3289
- channelId?: string | undefined;
3301
+ wabaBusinessId?: string | null | undefined;
3302
+ wabaExternalId?: string | null | undefined;
3303
+ phoneNumberId?: string | null | undefined;
3304
+ email?: string | null | undefined;
3305
+ clientId?: string | null | undefined;
3306
+ channelId?: string | null | undefined;
3290
3307
  status?: "active" | "pending" | undefined;
3291
3308
  apiKey?: string | undefined;
3292
3309
  tier?: "basic" | "regular" | "premium" | undefined;
3310
+ integrationType?: "meta" | "360dialog" | undefined;
3293
3311
  } | undefined;
3294
3312
  vonageCredentials?: {
3295
3313
  apiKey: string;
@@ -3935,15 +3953,16 @@ export declare const instagramContract: {
3935
3953
  additionalCredentials?: any;
3936
3954
  senderId?: string | undefined;
3937
3955
  whatsapp?: {
3938
- email: string;
3939
- wabaExternalId: string;
3940
- phoneNumberId: string;
3941
- wabaBusinessId?: string | undefined;
3942
- clientId?: string | undefined;
3943
- channelId?: string | undefined;
3956
+ wabaBusinessId?: string | null | undefined;
3957
+ wabaExternalId?: string | null | undefined;
3958
+ phoneNumberId?: string | null | undefined;
3959
+ email?: string | null | undefined;
3960
+ clientId?: string | null | undefined;
3961
+ channelId?: string | null | undefined;
3944
3962
  status?: "active" | "pending" | undefined;
3945
3963
  apiKey?: string | undefined;
3946
3964
  tier?: "basic" | "regular" | "premium" | undefined;
3965
+ integrationType?: "meta" | "360dialog" | undefined;
3947
3966
  } | undefined;
3948
3967
  vonageCredentials?: {
3949
3968
  apiKey: string;
@@ -4358,15 +4377,16 @@ export declare const instagramContract: {
4358
4377
  additionalCredentials?: any;
4359
4378
  senderId?: string | undefined;
4360
4379
  whatsapp?: {
4361
- email: string;
4362
- wabaExternalId: string;
4363
- phoneNumberId: string;
4364
- wabaBusinessId?: string | undefined;
4365
- clientId?: string | undefined;
4366
- channelId?: string | undefined;
4380
+ wabaBusinessId?: string | null | undefined;
4381
+ wabaExternalId?: string | null | undefined;
4382
+ phoneNumberId?: string | null | undefined;
4383
+ email?: string | null | undefined;
4384
+ clientId?: string | null | undefined;
4385
+ channelId?: string | null | undefined;
4367
4386
  status?: "active" | "pending" | undefined;
4368
4387
  apiKey?: string | undefined;
4369
4388
  tier?: "basic" | "regular" | "premium" | undefined;
4389
+ integrationType?: "meta" | "360dialog" | undefined;
4370
4390
  } | undefined;
4371
4391
  vonageCredentials?: {
4372
4392
  apiKey: string;
@@ -7497,35 +7517,38 @@ export declare const instagramContract: {
7497
7517
  additionalCredentials: z.ZodOptional<z.ZodAny>;
7498
7518
  senderId: z.ZodOptional<z.ZodString>;
7499
7519
  whatsapp: z.ZodOptional<z.ZodObject<{
7500
- wabaBusinessId: z.ZodOptional<z.ZodString>;
7501
- wabaExternalId: z.ZodString;
7502
- phoneNumberId: z.ZodString;
7503
- email: z.ZodString;
7504
- clientId: z.ZodOptional<z.ZodString>;
7505
- channelId: z.ZodOptional<z.ZodString>;
7520
+ wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
7521
+ wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
7522
+ phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
7523
+ email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
7524
+ clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
7525
+ channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
7506
7526
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
7507
7527
  apiKey: z.ZodOptional<z.ZodString>;
7508
7528
  tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
7529
+ integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
7509
7530
  }, "strip", z.ZodTypeAny, {
7510
- email: string;
7511
- wabaExternalId: string;
7512
- phoneNumberId: string;
7513
- wabaBusinessId?: string | undefined;
7514
- clientId?: string | undefined;
7515
- channelId?: string | undefined;
7531
+ wabaBusinessId?: string | null | undefined;
7532
+ wabaExternalId?: string | null | undefined;
7533
+ phoneNumberId?: string | null | undefined;
7534
+ email?: string | null | undefined;
7535
+ clientId?: string | null | undefined;
7536
+ channelId?: string | null | undefined;
7516
7537
  status?: "active" | "pending" | undefined;
7517
7538
  apiKey?: string | undefined;
7518
7539
  tier?: "basic" | "regular" | "premium" | undefined;
7540
+ integrationType?: "meta" | "360dialog" | undefined;
7519
7541
  }, {
7520
- email: string;
7521
- wabaExternalId: string;
7522
- phoneNumberId: string;
7523
- wabaBusinessId?: string | undefined;
7524
- clientId?: string | undefined;
7525
- channelId?: string | undefined;
7542
+ wabaBusinessId?: string | null | undefined;
7543
+ wabaExternalId?: string | null | undefined;
7544
+ phoneNumberId?: string | null | undefined;
7545
+ email?: string | null | undefined;
7546
+ clientId?: string | null | undefined;
7547
+ channelId?: string | null | undefined;
7526
7548
  status?: "active" | "pending" | undefined;
7527
7549
  apiKey?: string | undefined;
7528
7550
  tier?: "basic" | "regular" | "premium" | undefined;
7551
+ integrationType?: "meta" | "360dialog" | undefined;
7529
7552
  }>>;
7530
7553
  vonageCredentials: z.ZodOptional<z.ZodObject<{
7531
7554
  mobileNumber: z.ZodString;
@@ -7550,15 +7573,16 @@ export declare const instagramContract: {
7550
7573
  additionalCredentials?: any;
7551
7574
  senderId?: string | undefined;
7552
7575
  whatsapp?: {
7553
- email: string;
7554
- wabaExternalId: string;
7555
- phoneNumberId: string;
7556
- wabaBusinessId?: string | undefined;
7557
- clientId?: string | undefined;
7558
- channelId?: string | undefined;
7576
+ wabaBusinessId?: string | null | undefined;
7577
+ wabaExternalId?: string | null | undefined;
7578
+ phoneNumberId?: string | null | undefined;
7579
+ email?: string | null | undefined;
7580
+ clientId?: string | null | undefined;
7581
+ channelId?: string | null | undefined;
7559
7582
  status?: "active" | "pending" | undefined;
7560
7583
  apiKey?: string | undefined;
7561
7584
  tier?: "basic" | "regular" | "premium" | undefined;
7585
+ integrationType?: "meta" | "360dialog" | undefined;
7562
7586
  } | undefined;
7563
7587
  vonageCredentials?: {
7564
7588
  apiKey: string;
@@ -7575,15 +7599,16 @@ export declare const instagramContract: {
7575
7599
  additionalCredentials?: any;
7576
7600
  senderId?: string | undefined;
7577
7601
  whatsapp?: {
7578
- email: string;
7579
- wabaExternalId: string;
7580
- phoneNumberId: string;
7581
- wabaBusinessId?: string | undefined;
7582
- clientId?: string | undefined;
7583
- channelId?: string | undefined;
7602
+ wabaBusinessId?: string | null | undefined;
7603
+ wabaExternalId?: string | null | undefined;
7604
+ phoneNumberId?: string | null | undefined;
7605
+ email?: string | null | undefined;
7606
+ clientId?: string | null | undefined;
7607
+ channelId?: string | null | undefined;
7584
7608
  status?: "active" | "pending" | undefined;
7585
7609
  apiKey?: string | undefined;
7586
7610
  tier?: "basic" | "regular" | "premium" | undefined;
7611
+ integrationType?: "meta" | "360dialog" | undefined;
7587
7612
  } | undefined;
7588
7613
  vonageCredentials?: {
7589
7614
  apiKey: string;
@@ -7834,15 +7859,16 @@ export declare const instagramContract: {
7834
7859
  additionalCredentials?: any;
7835
7860
  senderId?: string | undefined;
7836
7861
  whatsapp?: {
7837
- email: string;
7838
- wabaExternalId: string;
7839
- phoneNumberId: string;
7840
- wabaBusinessId?: string | undefined;
7841
- clientId?: string | undefined;
7842
- channelId?: string | undefined;
7862
+ wabaBusinessId?: string | null | undefined;
7863
+ wabaExternalId?: string | null | undefined;
7864
+ phoneNumberId?: string | null | undefined;
7865
+ email?: string | null | undefined;
7866
+ clientId?: string | null | undefined;
7867
+ channelId?: string | null | undefined;
7843
7868
  status?: "active" | "pending" | undefined;
7844
7869
  apiKey?: string | undefined;
7845
7870
  tier?: "basic" | "regular" | "premium" | undefined;
7871
+ integrationType?: "meta" | "360dialog" | undefined;
7846
7872
  } | undefined;
7847
7873
  vonageCredentials?: {
7848
7874
  apiKey: string;
@@ -7924,15 +7950,16 @@ export declare const instagramContract: {
7924
7950
  additionalCredentials?: any;
7925
7951
  senderId?: string | undefined;
7926
7952
  whatsapp?: {
7927
- email: string;
7928
- wabaExternalId: string;
7929
- phoneNumberId: string;
7930
- wabaBusinessId?: string | undefined;
7931
- clientId?: string | undefined;
7932
- channelId?: string | undefined;
7953
+ wabaBusinessId?: string | null | undefined;
7954
+ wabaExternalId?: string | null | undefined;
7955
+ phoneNumberId?: string | null | undefined;
7956
+ email?: string | null | undefined;
7957
+ clientId?: string | null | undefined;
7958
+ channelId?: string | null | undefined;
7933
7959
  status?: "active" | "pending" | undefined;
7934
7960
  apiKey?: string | undefined;
7935
7961
  tier?: "basic" | "regular" | "premium" | undefined;
7962
+ integrationType?: "meta" | "360dialog" | undefined;
7936
7963
  } | undefined;
7937
7964
  vonageCredentials?: {
7938
7965
  apiKey: string;
@@ -8578,15 +8605,16 @@ export declare const instagramContract: {
8578
8605
  additionalCredentials?: any;
8579
8606
  senderId?: string | undefined;
8580
8607
  whatsapp?: {
8581
- email: string;
8582
- wabaExternalId: string;
8583
- phoneNumberId: string;
8584
- wabaBusinessId?: string | undefined;
8585
- clientId?: string | undefined;
8586
- channelId?: string | undefined;
8608
+ wabaBusinessId?: string | null | undefined;
8609
+ wabaExternalId?: string | null | undefined;
8610
+ phoneNumberId?: string | null | undefined;
8611
+ email?: string | null | undefined;
8612
+ clientId?: string | null | undefined;
8613
+ channelId?: string | null | undefined;
8587
8614
  status?: "active" | "pending" | undefined;
8588
8615
  apiKey?: string | undefined;
8589
8616
  tier?: "basic" | "regular" | "premium" | undefined;
8617
+ integrationType?: "meta" | "360dialog" | undefined;
8590
8618
  } | undefined;
8591
8619
  vonageCredentials?: {
8592
8620
  apiKey: string;
@@ -9001,15 +9029,16 @@ export declare const instagramContract: {
9001
9029
  additionalCredentials?: any;
9002
9030
  senderId?: string | undefined;
9003
9031
  whatsapp?: {
9004
- email: string;
9005
- wabaExternalId: string;
9006
- phoneNumberId: string;
9007
- wabaBusinessId?: string | undefined;
9008
- clientId?: string | undefined;
9009
- channelId?: string | undefined;
9032
+ wabaBusinessId?: string | null | undefined;
9033
+ wabaExternalId?: string | null | undefined;
9034
+ phoneNumberId?: string | null | undefined;
9035
+ email?: string | null | undefined;
9036
+ clientId?: string | null | undefined;
9037
+ channelId?: string | null | undefined;
9010
9038
  status?: "active" | "pending" | undefined;
9011
9039
  apiKey?: string | undefined;
9012
9040
  tier?: "basic" | "regular" | "premium" | undefined;
9041
+ integrationType?: "meta" | "360dialog" | undefined;
9013
9042
  } | undefined;
9014
9043
  vonageCredentials?: {
9015
9044
  apiKey: string;
@@ -11197,15 +11226,16 @@ export declare const instagramContract: {
11197
11226
  additionalCredentials?: any;
11198
11227
  senderId?: string | undefined;
11199
11228
  whatsapp?: {
11200
- email: string;
11201
- wabaExternalId: string;
11202
- phoneNumberId: string;
11203
- wabaBusinessId?: string | undefined;
11204
- clientId?: string | undefined;
11205
- channelId?: string | undefined;
11229
+ wabaBusinessId?: string | null | undefined;
11230
+ wabaExternalId?: string | null | undefined;
11231
+ phoneNumberId?: string | null | undefined;
11232
+ email?: string | null | undefined;
11233
+ clientId?: string | null | undefined;
11234
+ channelId?: string | null | undefined;
11206
11235
  status?: "active" | "pending" | undefined;
11207
11236
  apiKey?: string | undefined;
11208
11237
  tier?: "basic" | "regular" | "premium" | undefined;
11238
+ integrationType?: "meta" | "360dialog" | undefined;
11209
11239
  } | undefined;
11210
11240
  vonageCredentials?: {
11211
11241
  apiKey: string;
@@ -11957,15 +11987,16 @@ export declare const instagramContract: {
11957
11987
  additionalCredentials?: any;
11958
11988
  senderId?: string | undefined;
11959
11989
  whatsapp?: {
11960
- email: string;
11961
- wabaExternalId: string;
11962
- phoneNumberId: string;
11963
- wabaBusinessId?: string | undefined;
11964
- clientId?: string | undefined;
11965
- channelId?: string | undefined;
11990
+ wabaBusinessId?: string | null | undefined;
11991
+ wabaExternalId?: string | null | undefined;
11992
+ phoneNumberId?: string | null | undefined;
11993
+ email?: string | null | undefined;
11994
+ clientId?: string | null | undefined;
11995
+ channelId?: string | null | undefined;
11966
11996
  status?: "active" | "pending" | undefined;
11967
11997
  apiKey?: string | undefined;
11968
11998
  tier?: "basic" | "regular" | "premium" | undefined;
11999
+ integrationType?: "meta" | "360dialog" | undefined;
11969
12000
  } | undefined;
11970
12001
  vonageCredentials?: {
11971
12002
  apiKey: string;
@@ -12718,15 +12749,16 @@ export declare const instagramContract: {
12718
12749
  additionalCredentials?: any;
12719
12750
  senderId?: string | undefined;
12720
12751
  whatsapp?: {
12721
- email: string;
12722
- wabaExternalId: string;
12723
- phoneNumberId: string;
12724
- wabaBusinessId?: string | undefined;
12725
- clientId?: string | undefined;
12726
- channelId?: string | undefined;
12752
+ wabaBusinessId?: string | null | undefined;
12753
+ wabaExternalId?: string | null | undefined;
12754
+ phoneNumberId?: string | null | undefined;
12755
+ email?: string | null | undefined;
12756
+ clientId?: string | null | undefined;
12757
+ channelId?: string | null | undefined;
12727
12758
  status?: "active" | "pending" | undefined;
12728
12759
  apiKey?: string | undefined;
12729
12760
  tier?: "basic" | "regular" | "premium" | undefined;
12761
+ integrationType?: "meta" | "360dialog" | undefined;
12730
12762
  } | undefined;
12731
12763
  vonageCredentials?: {
12732
12764
  apiKey: string;
@@ -13478,15 +13510,16 @@ export declare const instagramContract: {
13478
13510
  additionalCredentials?: any;
13479
13511
  senderId?: string | undefined;
13480
13512
  whatsapp?: {
13481
- email: string;
13482
- wabaExternalId: string;
13483
- phoneNumberId: string;
13484
- wabaBusinessId?: string | undefined;
13485
- clientId?: string | undefined;
13486
- channelId?: string | undefined;
13513
+ wabaBusinessId?: string | null | undefined;
13514
+ wabaExternalId?: string | null | undefined;
13515
+ phoneNumberId?: string | null | undefined;
13516
+ email?: string | null | undefined;
13517
+ clientId?: string | null | undefined;
13518
+ channelId?: string | null | undefined;
13487
13519
  status?: "active" | "pending" | undefined;
13488
13520
  apiKey?: string | undefined;
13489
13521
  tier?: "basic" | "regular" | "premium" | undefined;
13522
+ integrationType?: "meta" | "360dialog" | undefined;
13490
13523
  } | undefined;
13491
13524
  vonageCredentials?: {
13492
13525
  apiKey: string;
@@ -14239,15 +14272,16 @@ export declare const instagramContract: {
14239
14272
  additionalCredentials?: any;
14240
14273
  senderId?: string | undefined;
14241
14274
  whatsapp?: {
14242
- email: string;
14243
- wabaExternalId: string;
14244
- phoneNumberId: string;
14245
- wabaBusinessId?: string | undefined;
14246
- clientId?: string | undefined;
14247
- channelId?: string | undefined;
14275
+ wabaBusinessId?: string | null | undefined;
14276
+ wabaExternalId?: string | null | undefined;
14277
+ phoneNumberId?: string | null | undefined;
14278
+ email?: string | null | undefined;
14279
+ clientId?: string | null | undefined;
14280
+ channelId?: string | null | undefined;
14248
14281
  status?: "active" | "pending" | undefined;
14249
14282
  apiKey?: string | undefined;
14250
14283
  tier?: "basic" | "regular" | "premium" | undefined;
14284
+ integrationType?: "meta" | "360dialog" | undefined;
14251
14285
  } | undefined;
14252
14286
  vonageCredentials?: {
14253
14287
  apiKey: string;
@@ -14999,15 +15033,16 @@ export declare const instagramContract: {
14999
15033
  additionalCredentials?: any;
15000
15034
  senderId?: string | undefined;
15001
15035
  whatsapp?: {
15002
- email: string;
15003
- wabaExternalId: string;
15004
- phoneNumberId: string;
15005
- wabaBusinessId?: string | undefined;
15006
- clientId?: string | undefined;
15007
- channelId?: string | undefined;
15036
+ wabaBusinessId?: string | null | undefined;
15037
+ wabaExternalId?: string | null | undefined;
15038
+ phoneNumberId?: string | null | undefined;
15039
+ email?: string | null | undefined;
15040
+ clientId?: string | null | undefined;
15041
+ channelId?: string | null | undefined;
15008
15042
  status?: "active" | "pending" | undefined;
15009
15043
  apiKey?: string | undefined;
15010
15044
  tier?: "basic" | "regular" | "premium" | undefined;
15045
+ integrationType?: "meta" | "360dialog" | undefined;
15011
15046
  } | undefined;
15012
15047
  vonageCredentials?: {
15013
15048
  apiKey: string;
@@ -15762,15 +15797,16 @@ export declare const instagramContract: {
15762
15797
  additionalCredentials?: any;
15763
15798
  senderId?: string | undefined;
15764
15799
  whatsapp?: {
15765
- email: string;
15766
- wabaExternalId: string;
15767
- phoneNumberId: string;
15768
- wabaBusinessId?: string | undefined;
15769
- clientId?: string | undefined;
15770
- channelId?: string | undefined;
15800
+ wabaBusinessId?: string | null | undefined;
15801
+ wabaExternalId?: string | null | undefined;
15802
+ phoneNumberId?: string | null | undefined;
15803
+ email?: string | null | undefined;
15804
+ clientId?: string | null | undefined;
15805
+ channelId?: string | null | undefined;
15771
15806
  status?: "active" | "pending" | undefined;
15772
15807
  apiKey?: string | undefined;
15773
15808
  tier?: "basic" | "regular" | "premium" | undefined;
15809
+ integrationType?: "meta" | "360dialog" | undefined;
15774
15810
  } | undefined;
15775
15811
  vonageCredentials?: {
15776
15812
  apiKey: string;
@@ -16522,15 +16558,16 @@ export declare const instagramContract: {
16522
16558
  additionalCredentials?: any;
16523
16559
  senderId?: string | undefined;
16524
16560
  whatsapp?: {
16525
- email: string;
16526
- wabaExternalId: string;
16527
- phoneNumberId: string;
16528
- wabaBusinessId?: string | undefined;
16529
- clientId?: string | undefined;
16530
- channelId?: string | undefined;
16561
+ wabaBusinessId?: string | null | undefined;
16562
+ wabaExternalId?: string | null | undefined;
16563
+ phoneNumberId?: string | null | undefined;
16564
+ email?: string | null | undefined;
16565
+ clientId?: string | null | undefined;
16566
+ channelId?: string | null | undefined;
16531
16567
  status?: "active" | "pending" | undefined;
16532
16568
  apiKey?: string | undefined;
16533
16569
  tier?: "basic" | "regular" | "premium" | undefined;
16570
+ integrationType?: "meta" | "360dialog" | undefined;
16534
16571
  } | undefined;
16535
16572
  vonageCredentials?: {
16536
16573
  apiKey: string;
@@ -17286,15 +17323,16 @@ export declare const instagramContract: {
17286
17323
  additionalCredentials?: any;
17287
17324
  senderId?: string | undefined;
17288
17325
  whatsapp?: {
17289
- email: string;
17290
- wabaExternalId: string;
17291
- phoneNumberId: string;
17292
- wabaBusinessId?: string | undefined;
17293
- clientId?: string | undefined;
17294
- channelId?: string | undefined;
17326
+ wabaBusinessId?: string | null | undefined;
17327
+ wabaExternalId?: string | null | undefined;
17328
+ phoneNumberId?: string | null | undefined;
17329
+ email?: string | null | undefined;
17330
+ clientId?: string | null | undefined;
17331
+ channelId?: string | null | undefined;
17295
17332
  status?: "active" | "pending" | undefined;
17296
17333
  apiKey?: string | undefined;
17297
17334
  tier?: "basic" | "regular" | "premium" | undefined;
17335
+ integrationType?: "meta" | "360dialog" | undefined;
17298
17336
  } | undefined;
17299
17337
  vonageCredentials?: {
17300
17338
  apiKey: string;
@@ -18046,15 +18084,16 @@ export declare const instagramContract: {
18046
18084
  additionalCredentials?: any;
18047
18085
  senderId?: string | undefined;
18048
18086
  whatsapp?: {
18049
- email: string;
18050
- wabaExternalId: string;
18051
- phoneNumberId: string;
18052
- wabaBusinessId?: string | undefined;
18053
- clientId?: string | undefined;
18054
- channelId?: string | undefined;
18087
+ wabaBusinessId?: string | null | undefined;
18088
+ wabaExternalId?: string | null | undefined;
18089
+ phoneNumberId?: string | null | undefined;
18090
+ email?: string | null | undefined;
18091
+ clientId?: string | null | undefined;
18092
+ channelId?: string | null | undefined;
18055
18093
  status?: "active" | "pending" | undefined;
18056
18094
  apiKey?: string | undefined;
18057
18095
  tier?: "basic" | "regular" | "premium" | undefined;
18096
+ integrationType?: "meta" | "360dialog" | undefined;
18058
18097
  } | undefined;
18059
18098
  vonageCredentials?: {
18060
18099
  apiKey: string;
@@ -18712,35 +18751,38 @@ export declare const instagramContract: {
18712
18751
  additionalCredentials: z.ZodOptional<z.ZodAny>;
18713
18752
  senderId: z.ZodOptional<z.ZodString>;
18714
18753
  whatsapp: z.ZodOptional<z.ZodObject<{
18715
- wabaBusinessId: z.ZodOptional<z.ZodString>;
18716
- wabaExternalId: z.ZodString;
18717
- phoneNumberId: z.ZodString;
18718
- email: z.ZodString;
18719
- clientId: z.ZodOptional<z.ZodString>;
18720
- channelId: z.ZodOptional<z.ZodString>;
18754
+ wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
18755
+ wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
18756
+ phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
18757
+ email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
18758
+ clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
18759
+ channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
18721
18760
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
18722
18761
  apiKey: z.ZodOptional<z.ZodString>;
18723
18762
  tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
18763
+ integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
18724
18764
  }, "strip", z.ZodTypeAny, {
18725
- email: string;
18726
- wabaExternalId: string;
18727
- phoneNumberId: string;
18728
- wabaBusinessId?: string | undefined;
18729
- clientId?: string | undefined;
18730
- channelId?: string | undefined;
18765
+ wabaBusinessId?: string | null | undefined;
18766
+ wabaExternalId?: string | null | undefined;
18767
+ phoneNumberId?: string | null | undefined;
18768
+ email?: string | null | undefined;
18769
+ clientId?: string | null | undefined;
18770
+ channelId?: string | null | undefined;
18731
18771
  status?: "active" | "pending" | undefined;
18732
18772
  apiKey?: string | undefined;
18733
18773
  tier?: "basic" | "regular" | "premium" | undefined;
18774
+ integrationType?: "meta" | "360dialog" | undefined;
18734
18775
  }, {
18735
- email: string;
18736
- wabaExternalId: string;
18737
- phoneNumberId: string;
18738
- wabaBusinessId?: string | undefined;
18739
- clientId?: string | undefined;
18740
- 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;
18741
18782
  status?: "active" | "pending" | undefined;
18742
18783
  apiKey?: string | undefined;
18743
18784
  tier?: "basic" | "regular" | "premium" | undefined;
18785
+ integrationType?: "meta" | "360dialog" | undefined;
18744
18786
  }>>;
18745
18787
  vonageCredentials: z.ZodOptional<z.ZodObject<{
18746
18788
  mobileNumber: z.ZodString;
@@ -18765,15 +18807,16 @@ export declare const instagramContract: {
18765
18807
  additionalCredentials?: any;
18766
18808
  senderId?: string | undefined;
18767
18809
  whatsapp?: {
18768
- email: string;
18769
- wabaExternalId: string;
18770
- phoneNumberId: string;
18771
- wabaBusinessId?: string | undefined;
18772
- clientId?: string | undefined;
18773
- channelId?: string | undefined;
18810
+ wabaBusinessId?: string | null | undefined;
18811
+ wabaExternalId?: string | null | undefined;
18812
+ phoneNumberId?: string | null | undefined;
18813
+ email?: string | null | undefined;
18814
+ clientId?: string | null | undefined;
18815
+ channelId?: string | null | undefined;
18774
18816
  status?: "active" | "pending" | undefined;
18775
18817
  apiKey?: string | undefined;
18776
18818
  tier?: "basic" | "regular" | "premium" | undefined;
18819
+ integrationType?: "meta" | "360dialog" | undefined;
18777
18820
  } | undefined;
18778
18821
  vonageCredentials?: {
18779
18822
  apiKey: string;
@@ -18790,15 +18833,16 @@ export declare const instagramContract: {
18790
18833
  additionalCredentials?: any;
18791
18834
  senderId?: string | undefined;
18792
18835
  whatsapp?: {
18793
- email: string;
18794
- wabaExternalId: string;
18795
- phoneNumberId: string;
18796
- wabaBusinessId?: string | undefined;
18797
- clientId?: string | undefined;
18798
- channelId?: string | undefined;
18836
+ wabaBusinessId?: string | null | undefined;
18837
+ wabaExternalId?: string | null | undefined;
18838
+ phoneNumberId?: string | null | undefined;
18839
+ email?: string | null | undefined;
18840
+ clientId?: string | null | undefined;
18841
+ channelId?: string | null | undefined;
18799
18842
  status?: "active" | "pending" | undefined;
18800
18843
  apiKey?: string | undefined;
18801
18844
  tier?: "basic" | "regular" | "premium" | undefined;
18845
+ integrationType?: "meta" | "360dialog" | undefined;
18802
18846
  } | undefined;
18803
18847
  vonageCredentials?: {
18804
18848
  apiKey: string;
@@ -18845,15 +18889,16 @@ export declare const instagramContract: {
18845
18889
  additionalCredentials?: any;
18846
18890
  senderId?: string | undefined;
18847
18891
  whatsapp?: {
18848
- email: string;
18849
- wabaExternalId: string;
18850
- phoneNumberId: string;
18851
- wabaBusinessId?: string | undefined;
18852
- clientId?: string | undefined;
18853
- channelId?: string | undefined;
18892
+ wabaBusinessId?: string | null | undefined;
18893
+ wabaExternalId?: string | null | undefined;
18894
+ phoneNumberId?: string | null | undefined;
18895
+ email?: string | null | undefined;
18896
+ clientId?: string | null | undefined;
18897
+ channelId?: string | null | undefined;
18854
18898
  status?: "active" | "pending" | undefined;
18855
18899
  apiKey?: string | undefined;
18856
18900
  tier?: "basic" | "regular" | "premium" | undefined;
18901
+ integrationType?: "meta" | "360dialog" | undefined;
18857
18902
  } | undefined;
18858
18903
  vonageCredentials?: {
18859
18904
  apiKey: string;
@@ -18888,15 +18933,16 @@ export declare const instagramContract: {
18888
18933
  additionalCredentials?: any;
18889
18934
  senderId?: string | undefined;
18890
18935
  whatsapp?: {
18891
- email: string;
18892
- wabaExternalId: string;
18893
- phoneNumberId: string;
18894
- wabaBusinessId?: string | undefined;
18895
- clientId?: string | undefined;
18896
- channelId?: string | undefined;
18936
+ wabaBusinessId?: string | null | undefined;
18937
+ wabaExternalId?: string | null | undefined;
18938
+ phoneNumberId?: string | null | undefined;
18939
+ email?: string | null | undefined;
18940
+ clientId?: string | null | undefined;
18941
+ channelId?: string | null | undefined;
18897
18942
  status?: "active" | "pending" | undefined;
18898
18943
  apiKey?: string | undefined;
18899
18944
  tier?: "basic" | "regular" | "premium" | undefined;
18945
+ integrationType?: "meta" | "360dialog" | undefined;
18900
18946
  } | undefined;
18901
18947
  vonageCredentials?: {
18902
18948
  apiKey: string;
@@ -18936,35 +18982,38 @@ export declare const instagramContract: {
18936
18982
  additionalCredentials: z.ZodOptional<z.ZodAny>;
18937
18983
  senderId: z.ZodOptional<z.ZodString>;
18938
18984
  whatsapp: z.ZodOptional<z.ZodObject<{
18939
- wabaBusinessId: z.ZodOptional<z.ZodString>;
18940
- wabaExternalId: z.ZodString;
18941
- phoneNumberId: z.ZodString;
18942
- email: z.ZodString;
18943
- clientId: z.ZodOptional<z.ZodString>;
18944
- channelId: z.ZodOptional<z.ZodString>;
18985
+ wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
18986
+ wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
18987
+ phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
18988
+ email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
18989
+ clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
18990
+ channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
18945
18991
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
18946
18992
  apiKey: z.ZodOptional<z.ZodString>;
18947
18993
  tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
18994
+ integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
18948
18995
  }, "strip", z.ZodTypeAny, {
18949
- email: string;
18950
- wabaExternalId: string;
18951
- phoneNumberId: string;
18952
- wabaBusinessId?: string | undefined;
18953
- clientId?: string | undefined;
18954
- channelId?: string | undefined;
18996
+ wabaBusinessId?: string | null | undefined;
18997
+ wabaExternalId?: string | null | undefined;
18998
+ phoneNumberId?: string | null | undefined;
18999
+ email?: string | null | undefined;
19000
+ clientId?: string | null | undefined;
19001
+ channelId?: string | null | undefined;
18955
19002
  status?: "active" | "pending" | undefined;
18956
19003
  apiKey?: string | undefined;
18957
19004
  tier?: "basic" | "regular" | "premium" | undefined;
19005
+ integrationType?: "meta" | "360dialog" | undefined;
18958
19006
  }, {
18959
- email: string;
18960
- wabaExternalId: string;
18961
- phoneNumberId: string;
18962
- wabaBusinessId?: string | undefined;
18963
- clientId?: string | undefined;
18964
- 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;
18965
19013
  status?: "active" | "pending" | undefined;
18966
19014
  apiKey?: string | undefined;
18967
19015
  tier?: "basic" | "regular" | "premium" | undefined;
19016
+ integrationType?: "meta" | "360dialog" | undefined;
18968
19017
  }>>;
18969
19018
  vonageCredentials: z.ZodOptional<z.ZodObject<{
18970
19019
  mobileNumber: z.ZodString;
@@ -18989,15 +19038,16 @@ export declare const instagramContract: {
18989
19038
  additionalCredentials?: any;
18990
19039
  senderId?: string | undefined;
18991
19040
  whatsapp?: {
18992
- email: string;
18993
- wabaExternalId: string;
18994
- phoneNumberId: string;
18995
- wabaBusinessId?: string | undefined;
18996
- clientId?: string | undefined;
18997
- channelId?: string | undefined;
19041
+ wabaBusinessId?: string | null | undefined;
19042
+ wabaExternalId?: string | null | undefined;
19043
+ phoneNumberId?: string | null | undefined;
19044
+ email?: string | null | undefined;
19045
+ clientId?: string | null | undefined;
19046
+ channelId?: string | null | undefined;
18998
19047
  status?: "active" | "pending" | undefined;
18999
19048
  apiKey?: string | undefined;
19000
19049
  tier?: "basic" | "regular" | "premium" | undefined;
19050
+ integrationType?: "meta" | "360dialog" | undefined;
19001
19051
  } | undefined;
19002
19052
  vonageCredentials?: {
19003
19053
  apiKey: string;
@@ -19014,15 +19064,16 @@ export declare const instagramContract: {
19014
19064
  additionalCredentials?: any;
19015
19065
  senderId?: string | undefined;
19016
19066
  whatsapp?: {
19017
- email: string;
19018
- wabaExternalId: string;
19019
- phoneNumberId: string;
19020
- wabaBusinessId?: string | undefined;
19021
- clientId?: string | undefined;
19022
- channelId?: string | undefined;
19067
+ wabaBusinessId?: string | null | undefined;
19068
+ wabaExternalId?: string | null | undefined;
19069
+ phoneNumberId?: string | null | undefined;
19070
+ email?: string | null | undefined;
19071
+ clientId?: string | null | undefined;
19072
+ channelId?: string | null | undefined;
19023
19073
  status?: "active" | "pending" | undefined;
19024
19074
  apiKey?: string | undefined;
19025
19075
  tier?: "basic" | "regular" | "premium" | undefined;
19076
+ integrationType?: "meta" | "360dialog" | undefined;
19026
19077
  } | undefined;
19027
19078
  vonageCredentials?: {
19028
19079
  apiKey: string;
@@ -19069,15 +19120,16 @@ export declare const instagramContract: {
19069
19120
  additionalCredentials?: any;
19070
19121
  senderId?: string | undefined;
19071
19122
  whatsapp?: {
19072
- email: string;
19073
- wabaExternalId: string;
19074
- phoneNumberId: string;
19075
- wabaBusinessId?: string | undefined;
19076
- clientId?: string | undefined;
19077
- channelId?: string | undefined;
19123
+ wabaBusinessId?: string | null | undefined;
19124
+ wabaExternalId?: string | null | undefined;
19125
+ phoneNumberId?: string | null | undefined;
19126
+ email?: string | null | undefined;
19127
+ clientId?: string | null | undefined;
19128
+ channelId?: string | null | undefined;
19078
19129
  status?: "active" | "pending" | undefined;
19079
19130
  apiKey?: string | undefined;
19080
19131
  tier?: "basic" | "regular" | "premium" | undefined;
19132
+ integrationType?: "meta" | "360dialog" | undefined;
19081
19133
  } | undefined;
19082
19134
  vonageCredentials?: {
19083
19135
  apiKey: string;
@@ -19112,15 +19164,16 @@ export declare const instagramContract: {
19112
19164
  additionalCredentials?: any;
19113
19165
  senderId?: string | undefined;
19114
19166
  whatsapp?: {
19115
- email: string;
19116
- wabaExternalId: string;
19117
- phoneNumberId: string;
19118
- wabaBusinessId?: string | undefined;
19119
- clientId?: string | undefined;
19120
- channelId?: string | undefined;
19167
+ wabaBusinessId?: string | null | undefined;
19168
+ wabaExternalId?: string | null | undefined;
19169
+ phoneNumberId?: string | null | undefined;
19170
+ email?: string | null | undefined;
19171
+ clientId?: string | null | undefined;
19172
+ channelId?: string | null | undefined;
19121
19173
  status?: "active" | "pending" | undefined;
19122
19174
  apiKey?: string | undefined;
19123
19175
  tier?: "basic" | "regular" | "premium" | undefined;
19176
+ integrationType?: "meta" | "360dialog" | undefined;
19124
19177
  } | undefined;
19125
19178
  vonageCredentials?: {
19126
19179
  apiKey: string;
@@ -19157,15 +19210,16 @@ export declare const instagramContract: {
19157
19210
  additionalCredentials?: any;
19158
19211
  senderId?: string | undefined;
19159
19212
  whatsapp?: {
19160
- email: string;
19161
- wabaExternalId: string;
19162
- phoneNumberId: string;
19163
- wabaBusinessId?: string | undefined;
19164
- clientId?: string | undefined;
19165
- channelId?: string | undefined;
19213
+ wabaBusinessId?: string | null | undefined;
19214
+ wabaExternalId?: string | null | undefined;
19215
+ phoneNumberId?: string | null | undefined;
19216
+ email?: string | null | undefined;
19217
+ clientId?: string | null | undefined;
19218
+ channelId?: string | null | undefined;
19166
19219
  status?: "active" | "pending" | undefined;
19167
19220
  apiKey?: string | undefined;
19168
19221
  tier?: "basic" | "regular" | "premium" | undefined;
19222
+ integrationType?: "meta" | "360dialog" | undefined;
19169
19223
  } | undefined;
19170
19224
  vonageCredentials?: {
19171
19225
  apiKey: string;
@@ -19203,15 +19257,16 @@ export declare const instagramContract: {
19203
19257
  additionalCredentials?: any;
19204
19258
  senderId?: string | undefined;
19205
19259
  whatsapp?: {
19206
- email: string;
19207
- wabaExternalId: string;
19208
- phoneNumberId: string;
19209
- wabaBusinessId?: string | undefined;
19210
- clientId?: string | undefined;
19211
- channelId?: string | undefined;
19260
+ wabaBusinessId?: string | null | undefined;
19261
+ wabaExternalId?: string | null | undefined;
19262
+ phoneNumberId?: string | null | undefined;
19263
+ email?: string | null | undefined;
19264
+ clientId?: string | null | undefined;
19265
+ channelId?: string | null | undefined;
19212
19266
  status?: "active" | "pending" | undefined;
19213
19267
  apiKey?: string | undefined;
19214
19268
  tier?: "basic" | "regular" | "premium" | undefined;
19269
+ integrationType?: "meta" | "360dialog" | undefined;
19215
19270
  } | undefined;
19216
19271
  vonageCredentials?: {
19217
19272
  apiKey: string;
@@ -19273,35 +19328,38 @@ export declare const instagramContract: {
19273
19328
  additionalCredentials: z.ZodOptional<z.ZodAny>;
19274
19329
  senderId: z.ZodOptional<z.ZodString>;
19275
19330
  whatsapp: z.ZodOptional<z.ZodObject<{
19276
- wabaBusinessId: z.ZodOptional<z.ZodString>;
19277
- wabaExternalId: z.ZodString;
19278
- phoneNumberId: z.ZodString;
19279
- email: z.ZodString;
19280
- clientId: z.ZodOptional<z.ZodString>;
19281
- channelId: z.ZodOptional<z.ZodString>;
19331
+ wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
19332
+ wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
19333
+ phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
19334
+ email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
19335
+ clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
19336
+ channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
19282
19337
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
19283
19338
  apiKey: z.ZodOptional<z.ZodString>;
19284
19339
  tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
19340
+ integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
19285
19341
  }, "strip", z.ZodTypeAny, {
19286
- email: string;
19287
- wabaExternalId: string;
19288
- phoneNumberId: string;
19289
- wabaBusinessId?: string | undefined;
19290
- clientId?: string | undefined;
19291
- channelId?: string | undefined;
19342
+ wabaBusinessId?: string | null | undefined;
19343
+ wabaExternalId?: string | null | undefined;
19344
+ phoneNumberId?: string | null | undefined;
19345
+ email?: string | null | undefined;
19346
+ clientId?: string | null | undefined;
19347
+ channelId?: string | null | undefined;
19292
19348
  status?: "active" | "pending" | undefined;
19293
19349
  apiKey?: string | undefined;
19294
19350
  tier?: "basic" | "regular" | "premium" | undefined;
19351
+ integrationType?: "meta" | "360dialog" | undefined;
19295
19352
  }, {
19296
- email: string;
19297
- wabaExternalId: string;
19298
- phoneNumberId: string;
19299
- wabaBusinessId?: string | undefined;
19300
- clientId?: string | undefined;
19301
- 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;
19302
19359
  status?: "active" | "pending" | undefined;
19303
19360
  apiKey?: string | undefined;
19304
19361
  tier?: "basic" | "regular" | "premium" | undefined;
19362
+ integrationType?: "meta" | "360dialog" | undefined;
19305
19363
  }>>;
19306
19364
  vonageCredentials: z.ZodOptional<z.ZodObject<{
19307
19365
  mobileNumber: z.ZodString;
@@ -19326,15 +19384,16 @@ export declare const instagramContract: {
19326
19384
  additionalCredentials?: any;
19327
19385
  senderId?: string | undefined;
19328
19386
  whatsapp?: {
19329
- email: string;
19330
- wabaExternalId: string;
19331
- phoneNumberId: string;
19332
- wabaBusinessId?: string | undefined;
19333
- clientId?: string | undefined;
19334
- channelId?: string | undefined;
19387
+ wabaBusinessId?: string | null | undefined;
19388
+ wabaExternalId?: string | null | undefined;
19389
+ phoneNumberId?: string | null | undefined;
19390
+ email?: string | null | undefined;
19391
+ clientId?: string | null | undefined;
19392
+ channelId?: string | null | undefined;
19335
19393
  status?: "active" | "pending" | undefined;
19336
19394
  apiKey?: string | undefined;
19337
19395
  tier?: "basic" | "regular" | "premium" | undefined;
19396
+ integrationType?: "meta" | "360dialog" | undefined;
19338
19397
  } | undefined;
19339
19398
  vonageCredentials?: {
19340
19399
  apiKey: string;
@@ -19351,15 +19410,16 @@ export declare const instagramContract: {
19351
19410
  additionalCredentials?: any;
19352
19411
  senderId?: string | undefined;
19353
19412
  whatsapp?: {
19354
- email: string;
19355
- wabaExternalId: string;
19356
- phoneNumberId: string;
19357
- wabaBusinessId?: string | undefined;
19358
- clientId?: string | undefined;
19359
- channelId?: string | undefined;
19413
+ wabaBusinessId?: string | null | undefined;
19414
+ wabaExternalId?: string | null | undefined;
19415
+ phoneNumberId?: string | null | undefined;
19416
+ email?: string | null | undefined;
19417
+ clientId?: string | null | undefined;
19418
+ channelId?: string | null | undefined;
19360
19419
  status?: "active" | "pending" | undefined;
19361
19420
  apiKey?: string | undefined;
19362
19421
  tier?: "basic" | "regular" | "premium" | undefined;
19422
+ integrationType?: "meta" | "360dialog" | undefined;
19363
19423
  } | undefined;
19364
19424
  vonageCredentials?: {
19365
19425
  apiKey: string;
@@ -19406,15 +19466,16 @@ export declare const instagramContract: {
19406
19466
  additionalCredentials?: any;
19407
19467
  senderId?: string | undefined;
19408
19468
  whatsapp?: {
19409
- email: string;
19410
- wabaExternalId: string;
19411
- phoneNumberId: string;
19412
- wabaBusinessId?: string | undefined;
19413
- clientId?: string | undefined;
19414
- channelId?: string | undefined;
19469
+ wabaBusinessId?: string | null | undefined;
19470
+ wabaExternalId?: string | null | undefined;
19471
+ phoneNumberId?: string | null | undefined;
19472
+ email?: string | null | undefined;
19473
+ clientId?: string | null | undefined;
19474
+ channelId?: string | null | undefined;
19415
19475
  status?: "active" | "pending" | undefined;
19416
19476
  apiKey?: string | undefined;
19417
19477
  tier?: "basic" | "regular" | "premium" | undefined;
19478
+ integrationType?: "meta" | "360dialog" | undefined;
19418
19479
  } | undefined;
19419
19480
  vonageCredentials?: {
19420
19481
  apiKey: string;
@@ -19449,15 +19510,16 @@ export declare const instagramContract: {
19449
19510
  additionalCredentials?: any;
19450
19511
  senderId?: string | undefined;
19451
19512
  whatsapp?: {
19452
- email: string;
19453
- wabaExternalId: string;
19454
- phoneNumberId: string;
19455
- wabaBusinessId?: string | undefined;
19456
- clientId?: string | undefined;
19457
- channelId?: string | undefined;
19513
+ wabaBusinessId?: string | null | undefined;
19514
+ wabaExternalId?: string | null | undefined;
19515
+ phoneNumberId?: string | null | undefined;
19516
+ email?: string | null | undefined;
19517
+ clientId?: string | null | undefined;
19518
+ channelId?: string | null | undefined;
19458
19519
  status?: "active" | "pending" | undefined;
19459
19520
  apiKey?: string | undefined;
19460
19521
  tier?: "basic" | "regular" | "premium" | undefined;
19522
+ integrationType?: "meta" | "360dialog" | undefined;
19461
19523
  } | undefined;
19462
19524
  vonageCredentials?: {
19463
19525
  apiKey: string;
@@ -19497,35 +19559,38 @@ export declare const instagramContract: {
19497
19559
  additionalCredentials: z.ZodOptional<z.ZodAny>;
19498
19560
  senderId: z.ZodOptional<z.ZodString>;
19499
19561
  whatsapp: z.ZodOptional<z.ZodObject<{
19500
- wabaBusinessId: z.ZodOptional<z.ZodString>;
19501
- wabaExternalId: z.ZodString;
19502
- phoneNumberId: z.ZodString;
19503
- email: z.ZodString;
19504
- clientId: z.ZodOptional<z.ZodString>;
19505
- channelId: z.ZodOptional<z.ZodString>;
19562
+ wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
19563
+ wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
19564
+ phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
19565
+ email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
19566
+ clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
19567
+ channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
19506
19568
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
19507
19569
  apiKey: z.ZodOptional<z.ZodString>;
19508
19570
  tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
19571
+ integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
19509
19572
  }, "strip", z.ZodTypeAny, {
19510
- email: string;
19511
- wabaExternalId: string;
19512
- phoneNumberId: string;
19513
- wabaBusinessId?: string | undefined;
19514
- clientId?: string | undefined;
19515
- channelId?: string | undefined;
19573
+ wabaBusinessId?: string | null | undefined;
19574
+ wabaExternalId?: string | null | undefined;
19575
+ phoneNumberId?: string | null | undefined;
19576
+ email?: string | null | undefined;
19577
+ clientId?: string | null | undefined;
19578
+ channelId?: string | null | undefined;
19516
19579
  status?: "active" | "pending" | undefined;
19517
19580
  apiKey?: string | undefined;
19518
19581
  tier?: "basic" | "regular" | "premium" | undefined;
19582
+ integrationType?: "meta" | "360dialog" | undefined;
19519
19583
  }, {
19520
- email: string;
19521
- wabaExternalId: string;
19522
- phoneNumberId: string;
19523
- wabaBusinessId?: string | undefined;
19524
- clientId?: string | undefined;
19525
- 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;
19526
19590
  status?: "active" | "pending" | undefined;
19527
19591
  apiKey?: string | undefined;
19528
19592
  tier?: "basic" | "regular" | "premium" | undefined;
19593
+ integrationType?: "meta" | "360dialog" | undefined;
19529
19594
  }>>;
19530
19595
  vonageCredentials: z.ZodOptional<z.ZodObject<{
19531
19596
  mobileNumber: z.ZodString;
@@ -19550,15 +19615,16 @@ export declare const instagramContract: {
19550
19615
  additionalCredentials?: any;
19551
19616
  senderId?: string | undefined;
19552
19617
  whatsapp?: {
19553
- email: string;
19554
- wabaExternalId: string;
19555
- phoneNumberId: string;
19556
- wabaBusinessId?: string | undefined;
19557
- clientId?: string | undefined;
19558
- channelId?: string | undefined;
19618
+ wabaBusinessId?: string | null | undefined;
19619
+ wabaExternalId?: string | null | undefined;
19620
+ phoneNumberId?: string | null | undefined;
19621
+ email?: string | null | undefined;
19622
+ clientId?: string | null | undefined;
19623
+ channelId?: string | null | undefined;
19559
19624
  status?: "active" | "pending" | undefined;
19560
19625
  apiKey?: string | undefined;
19561
19626
  tier?: "basic" | "regular" | "premium" | undefined;
19627
+ integrationType?: "meta" | "360dialog" | undefined;
19562
19628
  } | undefined;
19563
19629
  vonageCredentials?: {
19564
19630
  apiKey: string;
@@ -19575,15 +19641,16 @@ export declare const instagramContract: {
19575
19641
  additionalCredentials?: any;
19576
19642
  senderId?: string | undefined;
19577
19643
  whatsapp?: {
19578
- email: string;
19579
- wabaExternalId: string;
19580
- phoneNumberId: string;
19581
- wabaBusinessId?: string | undefined;
19582
- clientId?: string | undefined;
19583
- channelId?: string | undefined;
19644
+ wabaBusinessId?: string | null | undefined;
19645
+ wabaExternalId?: string | null | undefined;
19646
+ phoneNumberId?: string | null | undefined;
19647
+ email?: string | null | undefined;
19648
+ clientId?: string | null | undefined;
19649
+ channelId?: string | null | undefined;
19584
19650
  status?: "active" | "pending" | undefined;
19585
19651
  apiKey?: string | undefined;
19586
19652
  tier?: "basic" | "regular" | "premium" | undefined;
19653
+ integrationType?: "meta" | "360dialog" | undefined;
19587
19654
  } | undefined;
19588
19655
  vonageCredentials?: {
19589
19656
  apiKey: string;
@@ -19630,15 +19697,16 @@ export declare const instagramContract: {
19630
19697
  additionalCredentials?: any;
19631
19698
  senderId?: string | undefined;
19632
19699
  whatsapp?: {
19633
- email: string;
19634
- wabaExternalId: string;
19635
- phoneNumberId: string;
19636
- wabaBusinessId?: string | undefined;
19637
- clientId?: string | undefined;
19638
- channelId?: string | undefined;
19700
+ wabaBusinessId?: string | null | undefined;
19701
+ wabaExternalId?: string | null | undefined;
19702
+ phoneNumberId?: string | null | undefined;
19703
+ email?: string | null | undefined;
19704
+ clientId?: string | null | undefined;
19705
+ channelId?: string | null | undefined;
19639
19706
  status?: "active" | "pending" | undefined;
19640
19707
  apiKey?: string | undefined;
19641
19708
  tier?: "basic" | "regular" | "premium" | undefined;
19709
+ integrationType?: "meta" | "360dialog" | undefined;
19642
19710
  } | undefined;
19643
19711
  vonageCredentials?: {
19644
19712
  apiKey: string;
@@ -19673,15 +19741,16 @@ export declare const instagramContract: {
19673
19741
  additionalCredentials?: any;
19674
19742
  senderId?: string | undefined;
19675
19743
  whatsapp?: {
19676
- email: string;
19677
- wabaExternalId: string;
19678
- phoneNumberId: string;
19679
- wabaBusinessId?: string | undefined;
19680
- clientId?: string | undefined;
19681
- channelId?: string | undefined;
19744
+ wabaBusinessId?: string | null | undefined;
19745
+ wabaExternalId?: string | null | undefined;
19746
+ phoneNumberId?: string | null | undefined;
19747
+ email?: string | null | undefined;
19748
+ clientId?: string | null | undefined;
19749
+ channelId?: string | null | undefined;
19682
19750
  status?: "active" | "pending" | undefined;
19683
19751
  apiKey?: string | undefined;
19684
19752
  tier?: "basic" | "regular" | "premium" | undefined;
19753
+ integrationType?: "meta" | "360dialog" | undefined;
19685
19754
  } | undefined;
19686
19755
  vonageCredentials?: {
19687
19756
  apiKey: string;
@@ -19718,15 +19787,16 @@ export declare const instagramContract: {
19718
19787
  additionalCredentials?: any;
19719
19788
  senderId?: string | undefined;
19720
19789
  whatsapp?: {
19721
- email: string;
19722
- wabaExternalId: string;
19723
- phoneNumberId: string;
19724
- wabaBusinessId?: string | undefined;
19725
- clientId?: string | undefined;
19726
- channelId?: string | undefined;
19790
+ wabaBusinessId?: string | null | undefined;
19791
+ wabaExternalId?: string | null | undefined;
19792
+ phoneNumberId?: string | null | undefined;
19793
+ email?: string | null | undefined;
19794
+ clientId?: string | null | undefined;
19795
+ channelId?: string | null | undefined;
19727
19796
  status?: "active" | "pending" | undefined;
19728
19797
  apiKey?: string | undefined;
19729
19798
  tier?: "basic" | "regular" | "premium" | undefined;
19799
+ integrationType?: "meta" | "360dialog" | undefined;
19730
19800
  } | undefined;
19731
19801
  vonageCredentials?: {
19732
19802
  apiKey: string;
@@ -19764,15 +19834,16 @@ export declare const instagramContract: {
19764
19834
  additionalCredentials?: any;
19765
19835
  senderId?: string | undefined;
19766
19836
  whatsapp?: {
19767
- email: string;
19768
- wabaExternalId: string;
19769
- phoneNumberId: string;
19770
- wabaBusinessId?: string | undefined;
19771
- clientId?: string | undefined;
19772
- channelId?: string | undefined;
19837
+ wabaBusinessId?: string | null | undefined;
19838
+ wabaExternalId?: string | null | undefined;
19839
+ phoneNumberId?: string | null | undefined;
19840
+ email?: string | null | undefined;
19841
+ clientId?: string | null | undefined;
19842
+ channelId?: string | null | undefined;
19773
19843
  status?: "active" | "pending" | undefined;
19774
19844
  apiKey?: string | undefined;
19775
19845
  tier?: "basic" | "regular" | "premium" | undefined;
19846
+ integrationType?: "meta" | "360dialog" | undefined;
19776
19847
  } | undefined;
19777
19848
  vonageCredentials?: {
19778
19849
  apiKey: string;
@@ -19846,35 +19917,38 @@ export declare const instagramContract: {
19846
19917
  additionalCredentials: z.ZodOptional<z.ZodAny>;
19847
19918
  senderId: z.ZodOptional<z.ZodString>;
19848
19919
  whatsapp: z.ZodOptional<z.ZodObject<{
19849
- wabaBusinessId: z.ZodOptional<z.ZodString>;
19850
- wabaExternalId: z.ZodString;
19851
- phoneNumberId: z.ZodString;
19852
- email: z.ZodString;
19853
- clientId: z.ZodOptional<z.ZodString>;
19854
- channelId: z.ZodOptional<z.ZodString>;
19920
+ wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
19921
+ wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
19922
+ phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
19923
+ email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
19924
+ clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
19925
+ channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
19855
19926
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
19856
19927
  apiKey: z.ZodOptional<z.ZodString>;
19857
19928
  tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
19929
+ integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
19858
19930
  }, "strip", z.ZodTypeAny, {
19859
- email: string;
19860
- wabaExternalId: string;
19861
- phoneNumberId: string;
19862
- wabaBusinessId?: string | undefined;
19863
- clientId?: string | undefined;
19864
- channelId?: string | undefined;
19931
+ wabaBusinessId?: string | null | undefined;
19932
+ wabaExternalId?: string | null | undefined;
19933
+ phoneNumberId?: string | null | undefined;
19934
+ email?: string | null | undefined;
19935
+ clientId?: string | null | undefined;
19936
+ channelId?: string | null | undefined;
19865
19937
  status?: "active" | "pending" | undefined;
19866
19938
  apiKey?: string | undefined;
19867
19939
  tier?: "basic" | "regular" | "premium" | undefined;
19940
+ integrationType?: "meta" | "360dialog" | undefined;
19868
19941
  }, {
19869
- email: string;
19870
- wabaExternalId: string;
19871
- phoneNumberId: string;
19872
- wabaBusinessId?: string | undefined;
19873
- clientId?: string | undefined;
19874
- 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;
19875
19948
  status?: "active" | "pending" | undefined;
19876
19949
  apiKey?: string | undefined;
19877
19950
  tier?: "basic" | "regular" | "premium" | undefined;
19951
+ integrationType?: "meta" | "360dialog" | undefined;
19878
19952
  }>>;
19879
19953
  vonageCredentials: z.ZodOptional<z.ZodObject<{
19880
19954
  mobileNumber: z.ZodString;
@@ -19899,15 +19973,16 @@ export declare const instagramContract: {
19899
19973
  additionalCredentials?: any;
19900
19974
  senderId?: string | undefined;
19901
19975
  whatsapp?: {
19902
- email: string;
19903
- wabaExternalId: string;
19904
- phoneNumberId: string;
19905
- wabaBusinessId?: string | undefined;
19906
- clientId?: string | undefined;
19907
- channelId?: string | undefined;
19976
+ wabaBusinessId?: string | null | undefined;
19977
+ wabaExternalId?: string | null | undefined;
19978
+ phoneNumberId?: string | null | undefined;
19979
+ email?: string | null | undefined;
19980
+ clientId?: string | null | undefined;
19981
+ channelId?: string | null | undefined;
19908
19982
  status?: "active" | "pending" | undefined;
19909
19983
  apiKey?: string | undefined;
19910
19984
  tier?: "basic" | "regular" | "premium" | undefined;
19985
+ integrationType?: "meta" | "360dialog" | undefined;
19911
19986
  } | undefined;
19912
19987
  vonageCredentials?: {
19913
19988
  apiKey: string;
@@ -19924,15 +19999,16 @@ export declare const instagramContract: {
19924
19999
  additionalCredentials?: any;
19925
20000
  senderId?: string | undefined;
19926
20001
  whatsapp?: {
19927
- email: string;
19928
- wabaExternalId: string;
19929
- phoneNumberId: string;
19930
- wabaBusinessId?: string | undefined;
19931
- clientId?: string | undefined;
19932
- channelId?: string | undefined;
20002
+ wabaBusinessId?: string | null | undefined;
20003
+ wabaExternalId?: string | null | undefined;
20004
+ phoneNumberId?: string | null | undefined;
20005
+ email?: string | null | undefined;
20006
+ clientId?: string | null | undefined;
20007
+ channelId?: string | null | undefined;
19933
20008
  status?: "active" | "pending" | undefined;
19934
20009
  apiKey?: string | undefined;
19935
20010
  tier?: "basic" | "regular" | "premium" | undefined;
20011
+ integrationType?: "meta" | "360dialog" | undefined;
19936
20012
  } | undefined;
19937
20013
  vonageCredentials?: {
19938
20014
  apiKey: string;
@@ -19979,15 +20055,16 @@ export declare const instagramContract: {
19979
20055
  additionalCredentials?: any;
19980
20056
  senderId?: string | undefined;
19981
20057
  whatsapp?: {
19982
- email: string;
19983
- wabaExternalId: string;
19984
- phoneNumberId: string;
19985
- wabaBusinessId?: string | undefined;
19986
- clientId?: string | undefined;
19987
- channelId?: string | undefined;
20058
+ wabaBusinessId?: string | null | undefined;
20059
+ wabaExternalId?: string | null | undefined;
20060
+ phoneNumberId?: string | null | undefined;
20061
+ email?: string | null | undefined;
20062
+ clientId?: string | null | undefined;
20063
+ channelId?: string | null | undefined;
19988
20064
  status?: "active" | "pending" | undefined;
19989
20065
  apiKey?: string | undefined;
19990
20066
  tier?: "basic" | "regular" | "premium" | undefined;
20067
+ integrationType?: "meta" | "360dialog" | undefined;
19991
20068
  } | undefined;
19992
20069
  vonageCredentials?: {
19993
20070
  apiKey: string;
@@ -20022,15 +20099,16 @@ export declare const instagramContract: {
20022
20099
  additionalCredentials?: any;
20023
20100
  senderId?: string | undefined;
20024
20101
  whatsapp?: {
20025
- email: string;
20026
- wabaExternalId: string;
20027
- phoneNumberId: string;
20028
- wabaBusinessId?: string | undefined;
20029
- clientId?: string | undefined;
20030
- channelId?: string | undefined;
20102
+ wabaBusinessId?: string | null | undefined;
20103
+ wabaExternalId?: string | null | undefined;
20104
+ phoneNumberId?: string | null | undefined;
20105
+ email?: string | null | undefined;
20106
+ clientId?: string | null | undefined;
20107
+ channelId?: string | null | undefined;
20031
20108
  status?: "active" | "pending" | undefined;
20032
20109
  apiKey?: string | undefined;
20033
20110
  tier?: "basic" | "regular" | "premium" | undefined;
20111
+ integrationType?: "meta" | "360dialog" | undefined;
20034
20112
  } | undefined;
20035
20113
  vonageCredentials?: {
20036
20114
  apiKey: string;
@@ -20067,15 +20145,16 @@ export declare const instagramContract: {
20067
20145
  additionalCredentials?: any;
20068
20146
  senderId?: string | undefined;
20069
20147
  whatsapp?: {
20070
- email: string;
20071
- wabaExternalId: string;
20072
- phoneNumberId: string;
20073
- wabaBusinessId?: string | undefined;
20074
- clientId?: string | undefined;
20075
- channelId?: string | undefined;
20148
+ wabaBusinessId?: string | null | undefined;
20149
+ wabaExternalId?: string | null | undefined;
20150
+ phoneNumberId?: string | null | undefined;
20151
+ email?: string | null | undefined;
20152
+ clientId?: string | null | undefined;
20153
+ channelId?: string | null | undefined;
20076
20154
  status?: "active" | "pending" | undefined;
20077
20155
  apiKey?: string | undefined;
20078
20156
  tier?: "basic" | "regular" | "premium" | undefined;
20157
+ integrationType?: "meta" | "360dialog" | undefined;
20079
20158
  } | undefined;
20080
20159
  vonageCredentials?: {
20081
20160
  apiKey: string;
@@ -20113,15 +20192,16 @@ export declare const instagramContract: {
20113
20192
  additionalCredentials?: any;
20114
20193
  senderId?: string | undefined;
20115
20194
  whatsapp?: {
20116
- email: string;
20117
- wabaExternalId: string;
20118
- phoneNumberId: string;
20119
- wabaBusinessId?: string | undefined;
20120
- clientId?: string | undefined;
20121
- channelId?: string | undefined;
20195
+ wabaBusinessId?: string | null | undefined;
20196
+ wabaExternalId?: string | null | undefined;
20197
+ phoneNumberId?: string | null | undefined;
20198
+ email?: string | null | undefined;
20199
+ clientId?: string | null | undefined;
20200
+ channelId?: string | null | undefined;
20122
20201
  status?: "active" | "pending" | undefined;
20123
20202
  apiKey?: string | undefined;
20124
20203
  tier?: "basic" | "regular" | "premium" | undefined;
20204
+ integrationType?: "meta" | "360dialog" | undefined;
20125
20205
  } | undefined;
20126
20206
  vonageCredentials?: {
20127
20207
  apiKey: string;
@@ -20195,35 +20275,38 @@ export declare const instagramContract: {
20195
20275
  additionalCredentials: z.ZodOptional<z.ZodAny>;
20196
20276
  senderId: z.ZodOptional<z.ZodString>;
20197
20277
  whatsapp: z.ZodOptional<z.ZodObject<{
20198
- wabaBusinessId: z.ZodOptional<z.ZodString>;
20199
- wabaExternalId: z.ZodString;
20200
- phoneNumberId: z.ZodString;
20201
- email: z.ZodString;
20202
- clientId: z.ZodOptional<z.ZodString>;
20203
- channelId: z.ZodOptional<z.ZodString>;
20278
+ wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
20279
+ wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
20280
+ phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
20281
+ email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
20282
+ clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
20283
+ channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
20204
20284
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
20205
20285
  apiKey: z.ZodOptional<z.ZodString>;
20206
20286
  tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
20287
+ integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
20207
20288
  }, "strip", z.ZodTypeAny, {
20208
- email: string;
20209
- wabaExternalId: string;
20210
- phoneNumberId: string;
20211
- wabaBusinessId?: string | undefined;
20212
- clientId?: string | undefined;
20213
- channelId?: string | undefined;
20289
+ wabaBusinessId?: string | null | undefined;
20290
+ wabaExternalId?: string | null | undefined;
20291
+ phoneNumberId?: string | null | undefined;
20292
+ email?: string | null | undefined;
20293
+ clientId?: string | null | undefined;
20294
+ channelId?: string | null | undefined;
20214
20295
  status?: "active" | "pending" | undefined;
20215
20296
  apiKey?: string | undefined;
20216
20297
  tier?: "basic" | "regular" | "premium" | undefined;
20298
+ integrationType?: "meta" | "360dialog" | undefined;
20217
20299
  }, {
20218
- email: string;
20219
- wabaExternalId: string;
20220
- phoneNumberId: string;
20221
- wabaBusinessId?: string | undefined;
20222
- clientId?: string | undefined;
20223
- 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;
20224
20306
  status?: "active" | "pending" | undefined;
20225
20307
  apiKey?: string | undefined;
20226
20308
  tier?: "basic" | "regular" | "premium" | undefined;
20309
+ integrationType?: "meta" | "360dialog" | undefined;
20227
20310
  }>>;
20228
20311
  vonageCredentials: z.ZodOptional<z.ZodObject<{
20229
20312
  mobileNumber: z.ZodString;
@@ -20248,15 +20331,16 @@ export declare const instagramContract: {
20248
20331
  additionalCredentials?: any;
20249
20332
  senderId?: string | undefined;
20250
20333
  whatsapp?: {
20251
- email: string;
20252
- wabaExternalId: string;
20253
- phoneNumberId: string;
20254
- wabaBusinessId?: string | undefined;
20255
- clientId?: string | undefined;
20256
- channelId?: string | undefined;
20334
+ wabaBusinessId?: string | null | undefined;
20335
+ wabaExternalId?: string | null | undefined;
20336
+ phoneNumberId?: string | null | undefined;
20337
+ email?: string | null | undefined;
20338
+ clientId?: string | null | undefined;
20339
+ channelId?: string | null | undefined;
20257
20340
  status?: "active" | "pending" | undefined;
20258
20341
  apiKey?: string | undefined;
20259
20342
  tier?: "basic" | "regular" | "premium" | undefined;
20343
+ integrationType?: "meta" | "360dialog" | undefined;
20260
20344
  } | undefined;
20261
20345
  vonageCredentials?: {
20262
20346
  apiKey: string;
@@ -20273,15 +20357,16 @@ export declare const instagramContract: {
20273
20357
  additionalCredentials?: any;
20274
20358
  senderId?: string | undefined;
20275
20359
  whatsapp?: {
20276
- email: string;
20277
- wabaExternalId: string;
20278
- phoneNumberId: string;
20279
- wabaBusinessId?: string | undefined;
20280
- clientId?: string | undefined;
20281
- channelId?: string | undefined;
20360
+ wabaBusinessId?: string | null | undefined;
20361
+ wabaExternalId?: string | null | undefined;
20362
+ phoneNumberId?: string | null | undefined;
20363
+ email?: string | null | undefined;
20364
+ clientId?: string | null | undefined;
20365
+ channelId?: string | null | undefined;
20282
20366
  status?: "active" | "pending" | undefined;
20283
20367
  apiKey?: string | undefined;
20284
20368
  tier?: "basic" | "regular" | "premium" | undefined;
20369
+ integrationType?: "meta" | "360dialog" | undefined;
20285
20370
  } | undefined;
20286
20371
  vonageCredentials?: {
20287
20372
  apiKey: string;
@@ -20328,15 +20413,16 @@ export declare const instagramContract: {
20328
20413
  additionalCredentials?: any;
20329
20414
  senderId?: string | undefined;
20330
20415
  whatsapp?: {
20331
- email: string;
20332
- wabaExternalId: string;
20333
- phoneNumberId: string;
20334
- wabaBusinessId?: string | undefined;
20335
- clientId?: string | undefined;
20336
- channelId?: string | undefined;
20416
+ wabaBusinessId?: string | null | undefined;
20417
+ wabaExternalId?: string | null | undefined;
20418
+ phoneNumberId?: string | null | undefined;
20419
+ email?: string | null | undefined;
20420
+ clientId?: string | null | undefined;
20421
+ channelId?: string | null | undefined;
20337
20422
  status?: "active" | "pending" | undefined;
20338
20423
  apiKey?: string | undefined;
20339
20424
  tier?: "basic" | "regular" | "premium" | undefined;
20425
+ integrationType?: "meta" | "360dialog" | undefined;
20340
20426
  } | undefined;
20341
20427
  vonageCredentials?: {
20342
20428
  apiKey: string;
@@ -20371,15 +20457,16 @@ export declare const instagramContract: {
20371
20457
  additionalCredentials?: any;
20372
20458
  senderId?: string | undefined;
20373
20459
  whatsapp?: {
20374
- email: string;
20375
- wabaExternalId: string;
20376
- phoneNumberId: string;
20377
- wabaBusinessId?: string | undefined;
20378
- clientId?: string | undefined;
20379
- channelId?: string | undefined;
20460
+ wabaBusinessId?: string | null | undefined;
20461
+ wabaExternalId?: string | null | undefined;
20462
+ phoneNumberId?: string | null | undefined;
20463
+ email?: string | null | undefined;
20464
+ clientId?: string | null | undefined;
20465
+ channelId?: string | null | undefined;
20380
20466
  status?: "active" | "pending" | undefined;
20381
20467
  apiKey?: string | undefined;
20382
20468
  tier?: "basic" | "regular" | "premium" | undefined;
20469
+ integrationType?: "meta" | "360dialog" | undefined;
20383
20470
  } | undefined;
20384
20471
  vonageCredentials?: {
20385
20472
  apiKey: string;
@@ -20416,15 +20503,16 @@ export declare const instagramContract: {
20416
20503
  additionalCredentials?: any;
20417
20504
  senderId?: string | undefined;
20418
20505
  whatsapp?: {
20419
- email: string;
20420
- wabaExternalId: string;
20421
- phoneNumberId: string;
20422
- wabaBusinessId?: string | undefined;
20423
- clientId?: string | undefined;
20424
- channelId?: string | undefined;
20506
+ wabaBusinessId?: string | null | undefined;
20507
+ wabaExternalId?: string | null | undefined;
20508
+ phoneNumberId?: string | null | undefined;
20509
+ email?: string | null | undefined;
20510
+ clientId?: string | null | undefined;
20511
+ channelId?: string | null | undefined;
20425
20512
  status?: "active" | "pending" | undefined;
20426
20513
  apiKey?: string | undefined;
20427
20514
  tier?: "basic" | "regular" | "premium" | undefined;
20515
+ integrationType?: "meta" | "360dialog" | undefined;
20428
20516
  } | undefined;
20429
20517
  vonageCredentials?: {
20430
20518
  apiKey: string;
@@ -20462,15 +20550,16 @@ export declare const instagramContract: {
20462
20550
  additionalCredentials?: any;
20463
20551
  senderId?: string | undefined;
20464
20552
  whatsapp?: {
20465
- email: string;
20466
- wabaExternalId: string;
20467
- phoneNumberId: string;
20468
- wabaBusinessId?: string | undefined;
20469
- clientId?: string | undefined;
20470
- channelId?: string | undefined;
20553
+ wabaBusinessId?: string | null | undefined;
20554
+ wabaExternalId?: string | null | undefined;
20555
+ phoneNumberId?: string | null | undefined;
20556
+ email?: string | null | undefined;
20557
+ clientId?: string | null | undefined;
20558
+ channelId?: string | null | undefined;
20471
20559
  status?: "active" | "pending" | undefined;
20472
20560
  apiKey?: string | undefined;
20473
20561
  tier?: "basic" | "regular" | "premium" | undefined;
20562
+ integrationType?: "meta" | "360dialog" | undefined;
20474
20563
  } | undefined;
20475
20564
  vonageCredentials?: {
20476
20565
  apiKey: string;
@@ -20532,35 +20621,38 @@ export declare const instagramContract: {
20532
20621
  additionalCredentials: z.ZodOptional<z.ZodAny>;
20533
20622
  senderId: z.ZodOptional<z.ZodString>;
20534
20623
  whatsapp: z.ZodOptional<z.ZodObject<{
20535
- wabaBusinessId: z.ZodOptional<z.ZodString>;
20536
- wabaExternalId: z.ZodString;
20537
- phoneNumberId: z.ZodString;
20538
- email: z.ZodString;
20539
- clientId: z.ZodOptional<z.ZodString>;
20540
- channelId: z.ZodOptional<z.ZodString>;
20624
+ wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
20625
+ wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
20626
+ phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
20627
+ email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
20628
+ clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
20629
+ channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
20541
20630
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
20542
20631
  apiKey: z.ZodOptional<z.ZodString>;
20543
20632
  tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
20633
+ integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
20544
20634
  }, "strip", z.ZodTypeAny, {
20545
- email: string;
20546
- wabaExternalId: string;
20547
- phoneNumberId: string;
20548
- wabaBusinessId?: string | undefined;
20549
- clientId?: string | undefined;
20550
- channelId?: string | undefined;
20635
+ wabaBusinessId?: string | null | undefined;
20636
+ wabaExternalId?: string | null | undefined;
20637
+ phoneNumberId?: string | null | undefined;
20638
+ email?: string | null | undefined;
20639
+ clientId?: string | null | undefined;
20640
+ channelId?: string | null | undefined;
20551
20641
  status?: "active" | "pending" | undefined;
20552
20642
  apiKey?: string | undefined;
20553
20643
  tier?: "basic" | "regular" | "premium" | undefined;
20644
+ integrationType?: "meta" | "360dialog" | undefined;
20554
20645
  }, {
20555
- email: string;
20556
- wabaExternalId: string;
20557
- phoneNumberId: string;
20558
- wabaBusinessId?: string | undefined;
20559
- clientId?: string | undefined;
20560
- channelId?: string | undefined;
20646
+ wabaBusinessId?: string | null | undefined;
20647
+ wabaExternalId?: string | null | undefined;
20648
+ phoneNumberId?: string | null | undefined;
20649
+ email?: string | null | undefined;
20650
+ clientId?: string | null | undefined;
20651
+ channelId?: string | null | undefined;
20561
20652
  status?: "active" | "pending" | undefined;
20562
20653
  apiKey?: string | undefined;
20563
20654
  tier?: "basic" | "regular" | "premium" | undefined;
20655
+ integrationType?: "meta" | "360dialog" | undefined;
20564
20656
  }>>;
20565
20657
  vonageCredentials: z.ZodOptional<z.ZodObject<{
20566
20658
  mobileNumber: z.ZodString;
@@ -20585,15 +20677,16 @@ export declare const instagramContract: {
20585
20677
  additionalCredentials?: any;
20586
20678
  senderId?: string | undefined;
20587
20679
  whatsapp?: {
20588
- email: string;
20589
- wabaExternalId: string;
20590
- phoneNumberId: string;
20591
- wabaBusinessId?: string | undefined;
20592
- clientId?: string | undefined;
20593
- channelId?: string | undefined;
20680
+ wabaBusinessId?: string | null | undefined;
20681
+ wabaExternalId?: string | null | undefined;
20682
+ phoneNumberId?: string | null | undefined;
20683
+ email?: string | null | undefined;
20684
+ clientId?: string | null | undefined;
20685
+ channelId?: string | null | undefined;
20594
20686
  status?: "active" | "pending" | undefined;
20595
20687
  apiKey?: string | undefined;
20596
20688
  tier?: "basic" | "regular" | "premium" | undefined;
20689
+ integrationType?: "meta" | "360dialog" | undefined;
20597
20690
  } | undefined;
20598
20691
  vonageCredentials?: {
20599
20692
  apiKey: string;
@@ -20610,15 +20703,16 @@ export declare const instagramContract: {
20610
20703
  additionalCredentials?: any;
20611
20704
  senderId?: string | undefined;
20612
20705
  whatsapp?: {
20613
- email: string;
20614
- wabaExternalId: string;
20615
- phoneNumberId: string;
20616
- wabaBusinessId?: string | undefined;
20617
- clientId?: string | undefined;
20618
- channelId?: string | undefined;
20706
+ wabaBusinessId?: string | null | undefined;
20707
+ wabaExternalId?: string | null | undefined;
20708
+ phoneNumberId?: string | null | undefined;
20709
+ email?: string | null | undefined;
20710
+ clientId?: string | null | undefined;
20711
+ channelId?: string | null | undefined;
20619
20712
  status?: "active" | "pending" | undefined;
20620
20713
  apiKey?: string | undefined;
20621
20714
  tier?: "basic" | "regular" | "premium" | undefined;
20715
+ integrationType?: "meta" | "360dialog" | undefined;
20622
20716
  } | undefined;
20623
20717
  vonageCredentials?: {
20624
20718
  apiKey: string;
@@ -20665,15 +20759,16 @@ export declare const instagramContract: {
20665
20759
  additionalCredentials?: any;
20666
20760
  senderId?: string | undefined;
20667
20761
  whatsapp?: {
20668
- email: string;
20669
- wabaExternalId: string;
20670
- phoneNumberId: string;
20671
- wabaBusinessId?: string | undefined;
20672
- clientId?: string | undefined;
20673
- channelId?: string | undefined;
20762
+ wabaBusinessId?: string | null | undefined;
20763
+ wabaExternalId?: string | null | undefined;
20764
+ phoneNumberId?: string | null | undefined;
20765
+ email?: string | null | undefined;
20766
+ clientId?: string | null | undefined;
20767
+ channelId?: string | null | undefined;
20674
20768
  status?: "active" | "pending" | undefined;
20675
20769
  apiKey?: string | undefined;
20676
20770
  tier?: "basic" | "regular" | "premium" | undefined;
20771
+ integrationType?: "meta" | "360dialog" | undefined;
20677
20772
  } | undefined;
20678
20773
  vonageCredentials?: {
20679
20774
  apiKey: string;
@@ -20708,15 +20803,16 @@ export declare const instagramContract: {
20708
20803
  additionalCredentials?: any;
20709
20804
  senderId?: string | undefined;
20710
20805
  whatsapp?: {
20711
- email: string;
20712
- wabaExternalId: string;
20713
- phoneNumberId: string;
20714
- wabaBusinessId?: string | undefined;
20715
- clientId?: string | undefined;
20716
- channelId?: string | undefined;
20806
+ wabaBusinessId?: string | null | undefined;
20807
+ wabaExternalId?: string | null | undefined;
20808
+ phoneNumberId?: string | null | undefined;
20809
+ email?: string | null | undefined;
20810
+ clientId?: string | null | undefined;
20811
+ channelId?: string | null | undefined;
20717
20812
  status?: "active" | "pending" | undefined;
20718
20813
  apiKey?: string | undefined;
20719
20814
  tier?: "basic" | "regular" | "premium" | undefined;
20815
+ integrationType?: "meta" | "360dialog" | undefined;
20720
20816
  } | undefined;
20721
20817
  vonageCredentials?: {
20722
20818
  apiKey: string;
@@ -20756,35 +20852,38 @@ export declare const instagramContract: {
20756
20852
  additionalCredentials: z.ZodOptional<z.ZodAny>;
20757
20853
  senderId: z.ZodOptional<z.ZodString>;
20758
20854
  whatsapp: z.ZodOptional<z.ZodObject<{
20759
- wabaBusinessId: z.ZodOptional<z.ZodString>;
20760
- wabaExternalId: z.ZodString;
20761
- phoneNumberId: z.ZodString;
20762
- email: z.ZodString;
20763
- clientId: z.ZodOptional<z.ZodString>;
20764
- channelId: z.ZodOptional<z.ZodString>;
20855
+ wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
20856
+ wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
20857
+ phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
20858
+ email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
20859
+ clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
20860
+ channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
20765
20861
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
20766
20862
  apiKey: z.ZodOptional<z.ZodString>;
20767
20863
  tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
20864
+ integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
20768
20865
  }, "strip", z.ZodTypeAny, {
20769
- email: string;
20770
- wabaExternalId: string;
20771
- phoneNumberId: string;
20772
- wabaBusinessId?: string | undefined;
20773
- clientId?: string | undefined;
20774
- channelId?: string | undefined;
20866
+ wabaBusinessId?: string | null | undefined;
20867
+ wabaExternalId?: string | null | undefined;
20868
+ phoneNumberId?: string | null | undefined;
20869
+ email?: string | null | undefined;
20870
+ clientId?: string | null | undefined;
20871
+ channelId?: string | null | undefined;
20775
20872
  status?: "active" | "pending" | undefined;
20776
20873
  apiKey?: string | undefined;
20777
20874
  tier?: "basic" | "regular" | "premium" | undefined;
20875
+ integrationType?: "meta" | "360dialog" | undefined;
20778
20876
  }, {
20779
- email: string;
20780
- wabaExternalId: string;
20781
- phoneNumberId: string;
20782
- wabaBusinessId?: string | undefined;
20783
- clientId?: string | undefined;
20784
- channelId?: string | undefined;
20877
+ wabaBusinessId?: string | null | undefined;
20878
+ wabaExternalId?: string | null | undefined;
20879
+ phoneNumberId?: string | null | undefined;
20880
+ email?: string | null | undefined;
20881
+ clientId?: string | null | undefined;
20882
+ channelId?: string | null | undefined;
20785
20883
  status?: "active" | "pending" | undefined;
20786
20884
  apiKey?: string | undefined;
20787
20885
  tier?: "basic" | "regular" | "premium" | undefined;
20886
+ integrationType?: "meta" | "360dialog" | undefined;
20788
20887
  }>>;
20789
20888
  vonageCredentials: z.ZodOptional<z.ZodObject<{
20790
20889
  mobileNumber: z.ZodString;
@@ -20809,15 +20908,16 @@ export declare const instagramContract: {
20809
20908
  additionalCredentials?: any;
20810
20909
  senderId?: string | undefined;
20811
20910
  whatsapp?: {
20812
- email: string;
20813
- wabaExternalId: string;
20814
- phoneNumberId: string;
20815
- wabaBusinessId?: string | undefined;
20816
- clientId?: string | undefined;
20817
- channelId?: string | undefined;
20911
+ wabaBusinessId?: string | null | undefined;
20912
+ wabaExternalId?: string | null | undefined;
20913
+ phoneNumberId?: string | null | undefined;
20914
+ email?: string | null | undefined;
20915
+ clientId?: string | null | undefined;
20916
+ channelId?: string | null | undefined;
20818
20917
  status?: "active" | "pending" | undefined;
20819
20918
  apiKey?: string | undefined;
20820
20919
  tier?: "basic" | "regular" | "premium" | undefined;
20920
+ integrationType?: "meta" | "360dialog" | undefined;
20821
20921
  } | undefined;
20822
20922
  vonageCredentials?: {
20823
20923
  apiKey: string;
@@ -20834,15 +20934,16 @@ export declare const instagramContract: {
20834
20934
  additionalCredentials?: any;
20835
20935
  senderId?: string | undefined;
20836
20936
  whatsapp?: {
20837
- email: string;
20838
- wabaExternalId: string;
20839
- phoneNumberId: string;
20840
- wabaBusinessId?: string | undefined;
20841
- clientId?: string | undefined;
20842
- channelId?: string | undefined;
20937
+ wabaBusinessId?: string | null | undefined;
20938
+ wabaExternalId?: string | null | undefined;
20939
+ phoneNumberId?: string | null | undefined;
20940
+ email?: string | null | undefined;
20941
+ clientId?: string | null | undefined;
20942
+ channelId?: string | null | undefined;
20843
20943
  status?: "active" | "pending" | undefined;
20844
20944
  apiKey?: string | undefined;
20845
20945
  tier?: "basic" | "regular" | "premium" | undefined;
20946
+ integrationType?: "meta" | "360dialog" | undefined;
20846
20947
  } | undefined;
20847
20948
  vonageCredentials?: {
20848
20949
  apiKey: string;
@@ -20889,15 +20990,16 @@ export declare const instagramContract: {
20889
20990
  additionalCredentials?: any;
20890
20991
  senderId?: string | undefined;
20891
20992
  whatsapp?: {
20892
- email: string;
20893
- wabaExternalId: string;
20894
- phoneNumberId: string;
20895
- wabaBusinessId?: string | undefined;
20896
- clientId?: string | undefined;
20897
- channelId?: string | undefined;
20993
+ wabaBusinessId?: string | null | undefined;
20994
+ wabaExternalId?: string | null | undefined;
20995
+ phoneNumberId?: string | null | undefined;
20996
+ email?: string | null | undefined;
20997
+ clientId?: string | null | undefined;
20998
+ channelId?: string | null | undefined;
20898
20999
  status?: "active" | "pending" | undefined;
20899
21000
  apiKey?: string | undefined;
20900
21001
  tier?: "basic" | "regular" | "premium" | undefined;
21002
+ integrationType?: "meta" | "360dialog" | undefined;
20901
21003
  } | undefined;
20902
21004
  vonageCredentials?: {
20903
21005
  apiKey: string;
@@ -20932,15 +21034,16 @@ export declare const instagramContract: {
20932
21034
  additionalCredentials?: any;
20933
21035
  senderId?: string | undefined;
20934
21036
  whatsapp?: {
20935
- email: string;
20936
- wabaExternalId: string;
20937
- phoneNumberId: string;
20938
- wabaBusinessId?: string | undefined;
20939
- clientId?: string | undefined;
20940
- channelId?: string | undefined;
21037
+ wabaBusinessId?: string | null | undefined;
21038
+ wabaExternalId?: string | null | undefined;
21039
+ phoneNumberId?: string | null | undefined;
21040
+ email?: string | null | undefined;
21041
+ clientId?: string | null | undefined;
21042
+ channelId?: string | null | undefined;
20941
21043
  status?: "active" | "pending" | undefined;
20942
21044
  apiKey?: string | undefined;
20943
21045
  tier?: "basic" | "regular" | "premium" | undefined;
21046
+ integrationType?: "meta" | "360dialog" | undefined;
20944
21047
  } | undefined;
20945
21048
  vonageCredentials?: {
20946
21049
  apiKey: string;
@@ -20977,15 +21080,16 @@ export declare const instagramContract: {
20977
21080
  additionalCredentials?: any;
20978
21081
  senderId?: string | undefined;
20979
21082
  whatsapp?: {
20980
- email: string;
20981
- wabaExternalId: string;
20982
- phoneNumberId: string;
20983
- wabaBusinessId?: string | undefined;
20984
- clientId?: string | undefined;
20985
- channelId?: string | undefined;
21083
+ wabaBusinessId?: string | null | undefined;
21084
+ wabaExternalId?: string | null | undefined;
21085
+ phoneNumberId?: string | null | undefined;
21086
+ email?: string | null | undefined;
21087
+ clientId?: string | null | undefined;
21088
+ channelId?: string | null | undefined;
20986
21089
  status?: "active" | "pending" | undefined;
20987
21090
  apiKey?: string | undefined;
20988
21091
  tier?: "basic" | "regular" | "premium" | undefined;
21092
+ integrationType?: "meta" | "360dialog" | undefined;
20989
21093
  } | undefined;
20990
21094
  vonageCredentials?: {
20991
21095
  apiKey: string;
@@ -21023,15 +21127,16 @@ export declare const instagramContract: {
21023
21127
  additionalCredentials?: any;
21024
21128
  senderId?: string | undefined;
21025
21129
  whatsapp?: {
21026
- email: string;
21027
- wabaExternalId: string;
21028
- phoneNumberId: string;
21029
- wabaBusinessId?: string | undefined;
21030
- clientId?: string | undefined;
21031
- channelId?: string | undefined;
21130
+ wabaBusinessId?: string | null | undefined;
21131
+ wabaExternalId?: string | null | undefined;
21132
+ phoneNumberId?: string | null | undefined;
21133
+ email?: string | null | undefined;
21134
+ clientId?: string | null | undefined;
21135
+ channelId?: string | null | undefined;
21032
21136
  status?: "active" | "pending" | undefined;
21033
21137
  apiKey?: string | undefined;
21034
21138
  tier?: "basic" | "regular" | "premium" | undefined;
21139
+ integrationType?: "meta" | "360dialog" | undefined;
21035
21140
  } | undefined;
21036
21141
  vonageCredentials?: {
21037
21142
  apiKey: string;