@kl1/contracts 1.2.39-uat → 1.2.40-uat

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
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
@@ -145,35 +145,38 @@ export declare const messengerContract: {
145
145
  additionalCredentials: z.ZodOptional<z.ZodAny>;
146
146
  senderId: z.ZodOptional<z.ZodString>;
147
147
  whatsapp: z.ZodOptional<z.ZodObject<{
148
- wabaBusinessId: z.ZodOptional<z.ZodString>;
149
- wabaExternalId: z.ZodString;
150
- phoneNumberId: z.ZodString;
151
- email: z.ZodString;
152
- clientId: z.ZodOptional<z.ZodString>;
153
- channelId: z.ZodOptional<z.ZodString>;
148
+ wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
149
+ wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
150
+ phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
151
+ email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
152
+ clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
153
+ channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
154
154
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
155
155
  apiKey: z.ZodOptional<z.ZodString>;
156
156
  tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
157
+ integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
157
158
  }, "strip", z.ZodTypeAny, {
158
- email: string;
159
- wabaExternalId: string;
160
- phoneNumberId: string;
161
- wabaBusinessId?: string | undefined;
162
- clientId?: string | undefined;
163
- channelId?: string | undefined;
159
+ wabaBusinessId?: string | null | undefined;
160
+ wabaExternalId?: string | null | undefined;
161
+ phoneNumberId?: string | null | undefined;
162
+ email?: string | null | undefined;
163
+ clientId?: string | null | undefined;
164
+ channelId?: string | null | undefined;
164
165
  status?: "active" | "pending" | undefined;
165
166
  apiKey?: string | undefined;
166
167
  tier?: "basic" | "regular" | "premium" | undefined;
168
+ integrationType?: "meta" | "360dialog" | undefined;
167
169
  }, {
168
- email: string;
169
- wabaExternalId: string;
170
- phoneNumberId: string;
171
- wabaBusinessId?: string | undefined;
172
- clientId?: string | undefined;
173
- channelId?: string | undefined;
170
+ wabaBusinessId?: string | null | undefined;
171
+ wabaExternalId?: string | null | undefined;
172
+ phoneNumberId?: string | null | undefined;
173
+ email?: string | null | undefined;
174
+ clientId?: string | null | undefined;
175
+ channelId?: string | null | undefined;
174
176
  status?: "active" | "pending" | undefined;
175
177
  apiKey?: string | undefined;
176
178
  tier?: "basic" | "regular" | "premium" | undefined;
179
+ integrationType?: "meta" | "360dialog" | undefined;
177
180
  }>>;
178
181
  vonageCredentials: z.ZodOptional<z.ZodObject<{
179
182
  mobileNumber: z.ZodString;
@@ -198,15 +201,16 @@ export declare const messengerContract: {
198
201
  additionalCredentials?: any;
199
202
  senderId?: string | undefined;
200
203
  whatsapp?: {
201
- email: string;
202
- wabaExternalId: string;
203
- phoneNumberId: string;
204
- wabaBusinessId?: string | undefined;
205
- clientId?: string | undefined;
206
- channelId?: string | undefined;
204
+ wabaBusinessId?: string | null | undefined;
205
+ wabaExternalId?: string | null | undefined;
206
+ phoneNumberId?: string | null | undefined;
207
+ email?: string | null | undefined;
208
+ clientId?: string | null | undefined;
209
+ channelId?: string | null | undefined;
207
210
  status?: "active" | "pending" | undefined;
208
211
  apiKey?: string | undefined;
209
212
  tier?: "basic" | "regular" | "premium" | undefined;
213
+ integrationType?: "meta" | "360dialog" | undefined;
210
214
  } | undefined;
211
215
  vonageCredentials?: {
212
216
  apiKey: string;
@@ -223,15 +227,16 @@ export declare const messengerContract: {
223
227
  additionalCredentials?: any;
224
228
  senderId?: string | undefined;
225
229
  whatsapp?: {
226
- email: string;
227
- wabaExternalId: string;
228
- phoneNumberId: string;
229
- wabaBusinessId?: string | undefined;
230
- clientId?: string | undefined;
231
- channelId?: string | undefined;
230
+ wabaBusinessId?: string | null | undefined;
231
+ wabaExternalId?: string | null | undefined;
232
+ phoneNumberId?: string | null | undefined;
233
+ email?: string | null | undefined;
234
+ clientId?: string | null | undefined;
235
+ channelId?: string | null | undefined;
232
236
  status?: "active" | "pending" | undefined;
233
237
  apiKey?: string | undefined;
234
238
  tier?: "basic" | "regular" | "premium" | undefined;
239
+ integrationType?: "meta" | "360dialog" | undefined;
235
240
  } | undefined;
236
241
  vonageCredentials?: {
237
242
  apiKey: string;
@@ -278,15 +283,16 @@ export declare const messengerContract: {
278
283
  additionalCredentials?: any;
279
284
  senderId?: string | undefined;
280
285
  whatsapp?: {
281
- email: string;
282
- wabaExternalId: string;
283
- phoneNumberId: string;
284
- wabaBusinessId?: string | undefined;
285
- clientId?: string | undefined;
286
- channelId?: string | undefined;
286
+ wabaBusinessId?: string | null | undefined;
287
+ wabaExternalId?: string | null | undefined;
288
+ phoneNumberId?: string | null | undefined;
289
+ email?: string | null | undefined;
290
+ clientId?: string | null | undefined;
291
+ channelId?: string | null | undefined;
287
292
  status?: "active" | "pending" | undefined;
288
293
  apiKey?: string | undefined;
289
294
  tier?: "basic" | "regular" | "premium" | undefined;
295
+ integrationType?: "meta" | "360dialog" | undefined;
290
296
  } | undefined;
291
297
  vonageCredentials?: {
292
298
  apiKey: string;
@@ -321,15 +327,16 @@ export declare const messengerContract: {
321
327
  additionalCredentials?: any;
322
328
  senderId?: string | undefined;
323
329
  whatsapp?: {
324
- email: string;
325
- wabaExternalId: string;
326
- phoneNumberId: string;
327
- wabaBusinessId?: string | undefined;
328
- clientId?: string | undefined;
329
- channelId?: string | undefined;
330
+ wabaBusinessId?: string | null | undefined;
331
+ wabaExternalId?: string | null | undefined;
332
+ phoneNumberId?: string | null | undefined;
333
+ email?: string | null | undefined;
334
+ clientId?: string | null | undefined;
335
+ channelId?: string | null | undefined;
330
336
  status?: "active" | "pending" | undefined;
331
337
  apiKey?: string | undefined;
332
338
  tier?: "basic" | "regular" | "premium" | undefined;
339
+ integrationType?: "meta" | "360dialog" | undefined;
333
340
  } | undefined;
334
341
  vonageCredentials?: {
335
342
  apiKey: string;
@@ -369,15 +376,16 @@ export declare const messengerContract: {
369
376
  additionalCredentials?: any;
370
377
  senderId?: string | undefined;
371
378
  whatsapp?: {
372
- email: string;
373
- wabaExternalId: string;
374
- phoneNumberId: string;
375
- wabaBusinessId?: string | undefined;
376
- clientId?: string | undefined;
377
- channelId?: string | undefined;
379
+ wabaBusinessId?: string | null | undefined;
380
+ wabaExternalId?: string | null | undefined;
381
+ phoneNumberId?: string | null | undefined;
382
+ email?: string | null | undefined;
383
+ clientId?: string | null | undefined;
384
+ channelId?: string | null | undefined;
378
385
  status?: "active" | "pending" | undefined;
379
386
  apiKey?: string | undefined;
380
387
  tier?: "basic" | "regular" | "premium" | undefined;
388
+ integrationType?: "meta" | "360dialog" | undefined;
381
389
  } | undefined;
382
390
  vonageCredentials?: {
383
391
  apiKey: string;
@@ -456,15 +464,16 @@ export declare const messengerContract: {
456
464
  additionalCredentials?: any;
457
465
  senderId?: string | undefined;
458
466
  whatsapp?: {
459
- email: string;
460
- wabaExternalId: string;
461
- phoneNumberId: string;
462
- wabaBusinessId?: string | undefined;
463
- clientId?: string | undefined;
464
- channelId?: string | undefined;
467
+ wabaBusinessId?: string | null | undefined;
468
+ wabaExternalId?: string | null | undefined;
469
+ phoneNumberId?: string | null | undefined;
470
+ email?: string | null | undefined;
471
+ clientId?: string | null | undefined;
472
+ channelId?: string | null | undefined;
465
473
  status?: "active" | "pending" | undefined;
466
474
  apiKey?: string | undefined;
467
475
  tier?: "basic" | "regular" | "premium" | undefined;
476
+ integrationType?: "meta" | "360dialog" | undefined;
468
477
  } | undefined;
469
478
  vonageCredentials?: {
470
479
  apiKey: string;
@@ -711,15 +720,16 @@ export declare const messengerContract: {
711
720
  additionalCredentials?: any;
712
721
  senderId?: string | undefined;
713
722
  whatsapp?: {
714
- email: string;
715
- wabaExternalId: string;
716
- phoneNumberId: string;
717
- wabaBusinessId?: string | undefined;
718
- clientId?: string | undefined;
719
- channelId?: string | undefined;
723
+ wabaBusinessId?: string | null | undefined;
724
+ wabaExternalId?: string | null | undefined;
725
+ phoneNumberId?: string | null | undefined;
726
+ email?: string | null | undefined;
727
+ clientId?: string | null | undefined;
728
+ channelId?: string | null | undefined;
720
729
  status?: "active" | "pending" | undefined;
721
730
  apiKey?: string | undefined;
722
731
  tier?: "basic" | "regular" | "premium" | undefined;
732
+ integrationType?: "meta" | "360dialog" | undefined;
723
733
  } | undefined;
724
734
  vonageCredentials?: {
725
735
  apiKey: string;
@@ -837,15 +847,16 @@ export declare const messengerContract: {
837
847
  additionalCredentials?: any;
838
848
  senderId?: string | undefined;
839
849
  whatsapp?: {
840
- email: string;
841
- wabaExternalId: string;
842
- phoneNumberId: string;
843
- wabaBusinessId?: string | undefined;
844
- clientId?: string | undefined;
845
- channelId?: string | undefined;
850
+ wabaBusinessId?: string | null | undefined;
851
+ wabaExternalId?: string | null | undefined;
852
+ phoneNumberId?: string | null | undefined;
853
+ email?: string | null | undefined;
854
+ clientId?: string | null | undefined;
855
+ channelId?: string | null | undefined;
846
856
  status?: "active" | "pending" | undefined;
847
857
  apiKey?: string | undefined;
848
858
  tier?: "basic" | "regular" | "premium" | undefined;
859
+ integrationType?: "meta" | "360dialog" | undefined;
849
860
  } | undefined;
850
861
  vonageCredentials?: {
851
862
  apiKey: string;
@@ -2858,35 +2869,38 @@ export declare const messengerContract: {
2858
2869
  additionalCredentials: z.ZodOptional<z.ZodAny>;
2859
2870
  senderId: z.ZodOptional<z.ZodString>;
2860
2871
  whatsapp: z.ZodOptional<z.ZodObject<{
2861
- wabaBusinessId: z.ZodOptional<z.ZodString>;
2862
- wabaExternalId: z.ZodString;
2863
- phoneNumberId: z.ZodString;
2864
- email: z.ZodString;
2865
- clientId: z.ZodOptional<z.ZodString>;
2866
- channelId: z.ZodOptional<z.ZodString>;
2872
+ wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2873
+ wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2874
+ phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2875
+ email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2876
+ clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2877
+ channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2867
2878
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
2868
2879
  apiKey: z.ZodOptional<z.ZodString>;
2869
2880
  tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
2881
+ integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
2870
2882
  }, "strip", z.ZodTypeAny, {
2871
- email: string;
2872
- wabaExternalId: string;
2873
- phoneNumberId: string;
2874
- wabaBusinessId?: string | undefined;
2875
- clientId?: string | undefined;
2876
- channelId?: string | undefined;
2883
+ wabaBusinessId?: string | null | undefined;
2884
+ wabaExternalId?: string | null | undefined;
2885
+ phoneNumberId?: string | null | undefined;
2886
+ email?: string | null | undefined;
2887
+ clientId?: string | null | undefined;
2888
+ channelId?: string | null | undefined;
2877
2889
  status?: "active" | "pending" | undefined;
2878
2890
  apiKey?: string | undefined;
2879
2891
  tier?: "basic" | "regular" | "premium" | undefined;
2892
+ integrationType?: "meta" | "360dialog" | undefined;
2880
2893
  }, {
2881
- email: string;
2882
- wabaExternalId: string;
2883
- phoneNumberId: string;
2884
- wabaBusinessId?: string | undefined;
2885
- clientId?: string | undefined;
2886
- channelId?: string | undefined;
2894
+ wabaBusinessId?: string | null | undefined;
2895
+ wabaExternalId?: string | null | undefined;
2896
+ phoneNumberId?: string | null | undefined;
2897
+ email?: string | null | undefined;
2898
+ clientId?: string | null | undefined;
2899
+ channelId?: string | null | undefined;
2887
2900
  status?: "active" | "pending" | undefined;
2888
2901
  apiKey?: string | undefined;
2889
2902
  tier?: "basic" | "regular" | "premium" | undefined;
2903
+ integrationType?: "meta" | "360dialog" | undefined;
2890
2904
  }>>;
2891
2905
  vonageCredentials: z.ZodOptional<z.ZodObject<{
2892
2906
  mobileNumber: z.ZodString;
@@ -2911,15 +2925,16 @@ export declare const messengerContract: {
2911
2925
  additionalCredentials?: any;
2912
2926
  senderId?: string | undefined;
2913
2927
  whatsapp?: {
2914
- email: string;
2915
- wabaExternalId: string;
2916
- phoneNumberId: string;
2917
- wabaBusinessId?: string | undefined;
2918
- clientId?: string | undefined;
2919
- channelId?: string | undefined;
2928
+ wabaBusinessId?: string | null | undefined;
2929
+ wabaExternalId?: string | null | undefined;
2930
+ phoneNumberId?: string | null | undefined;
2931
+ email?: string | null | undefined;
2932
+ clientId?: string | null | undefined;
2933
+ channelId?: string | null | undefined;
2920
2934
  status?: "active" | "pending" | undefined;
2921
2935
  apiKey?: string | undefined;
2922
2936
  tier?: "basic" | "regular" | "premium" | undefined;
2937
+ integrationType?: "meta" | "360dialog" | undefined;
2923
2938
  } | undefined;
2924
2939
  vonageCredentials?: {
2925
2940
  apiKey: string;
@@ -2936,15 +2951,16 @@ export declare const messengerContract: {
2936
2951
  additionalCredentials?: any;
2937
2952
  senderId?: string | undefined;
2938
2953
  whatsapp?: {
2939
- email: string;
2940
- wabaExternalId: string;
2941
- phoneNumberId: string;
2942
- wabaBusinessId?: string | undefined;
2943
- clientId?: string | undefined;
2944
- channelId?: string | undefined;
2954
+ wabaBusinessId?: string | null | undefined;
2955
+ wabaExternalId?: string | null | undefined;
2956
+ phoneNumberId?: string | null | undefined;
2957
+ email?: string | null | undefined;
2958
+ clientId?: string | null | undefined;
2959
+ channelId?: string | null | undefined;
2945
2960
  status?: "active" | "pending" | undefined;
2946
2961
  apiKey?: string | undefined;
2947
2962
  tier?: "basic" | "regular" | "premium" | undefined;
2963
+ integrationType?: "meta" | "360dialog" | undefined;
2948
2964
  } | undefined;
2949
2965
  vonageCredentials?: {
2950
2966
  apiKey: string;
@@ -3195,15 +3211,16 @@ export declare const messengerContract: {
3195
3211
  additionalCredentials?: any;
3196
3212
  senderId?: string | undefined;
3197
3213
  whatsapp?: {
3198
- email: string;
3199
- wabaExternalId: string;
3200
- phoneNumberId: string;
3201
- wabaBusinessId?: string | undefined;
3202
- clientId?: string | undefined;
3203
- channelId?: string | undefined;
3214
+ wabaBusinessId?: string | null | undefined;
3215
+ wabaExternalId?: string | null | undefined;
3216
+ phoneNumberId?: string | null | undefined;
3217
+ email?: string | null | undefined;
3218
+ clientId?: string | null | undefined;
3219
+ channelId?: string | null | undefined;
3204
3220
  status?: "active" | "pending" | undefined;
3205
3221
  apiKey?: string | undefined;
3206
3222
  tier?: "basic" | "regular" | "premium" | undefined;
3223
+ integrationType?: "meta" | "360dialog" | undefined;
3207
3224
  } | undefined;
3208
3225
  vonageCredentials?: {
3209
3226
  apiKey: string;
@@ -3285,15 +3302,16 @@ export declare const messengerContract: {
3285
3302
  additionalCredentials?: any;
3286
3303
  senderId?: string | undefined;
3287
3304
  whatsapp?: {
3288
- email: string;
3289
- wabaExternalId: string;
3290
- phoneNumberId: string;
3291
- wabaBusinessId?: string | undefined;
3292
- clientId?: string | undefined;
3293
- channelId?: string | undefined;
3305
+ wabaBusinessId?: string | null | undefined;
3306
+ wabaExternalId?: string | null | undefined;
3307
+ phoneNumberId?: string | null | undefined;
3308
+ email?: string | null | undefined;
3309
+ clientId?: string | null | undefined;
3310
+ channelId?: string | null | undefined;
3294
3311
  status?: "active" | "pending" | undefined;
3295
3312
  apiKey?: string | undefined;
3296
3313
  tier?: "basic" | "regular" | "premium" | undefined;
3314
+ integrationType?: "meta" | "360dialog" | undefined;
3297
3315
  } | undefined;
3298
3316
  vonageCredentials?: {
3299
3317
  apiKey: string;
@@ -3939,15 +3957,16 @@ export declare const messengerContract: {
3939
3957
  additionalCredentials?: any;
3940
3958
  senderId?: string | undefined;
3941
3959
  whatsapp?: {
3942
- email: string;
3943
- wabaExternalId: string;
3944
- phoneNumberId: string;
3945
- wabaBusinessId?: string | undefined;
3946
- clientId?: string | undefined;
3947
- channelId?: string | undefined;
3960
+ wabaBusinessId?: string | null | undefined;
3961
+ wabaExternalId?: string | null | undefined;
3962
+ phoneNumberId?: string | null | undefined;
3963
+ email?: string | null | undefined;
3964
+ clientId?: string | null | undefined;
3965
+ channelId?: string | null | undefined;
3948
3966
  status?: "active" | "pending" | undefined;
3949
3967
  apiKey?: string | undefined;
3950
3968
  tier?: "basic" | "regular" | "premium" | undefined;
3969
+ integrationType?: "meta" | "360dialog" | undefined;
3951
3970
  } | undefined;
3952
3971
  vonageCredentials?: {
3953
3972
  apiKey: string;
@@ -4362,15 +4381,16 @@ export declare const messengerContract: {
4362
4381
  additionalCredentials?: any;
4363
4382
  senderId?: string | undefined;
4364
4383
  whatsapp?: {
4365
- email: string;
4366
- wabaExternalId: string;
4367
- phoneNumberId: string;
4368
- wabaBusinessId?: string | undefined;
4369
- clientId?: string | undefined;
4370
- channelId?: string | undefined;
4384
+ wabaBusinessId?: string | null | undefined;
4385
+ wabaExternalId?: string | null | undefined;
4386
+ phoneNumberId?: string | null | undefined;
4387
+ email?: string | null | undefined;
4388
+ clientId?: string | null | undefined;
4389
+ channelId?: string | null | undefined;
4371
4390
  status?: "active" | "pending" | undefined;
4372
4391
  apiKey?: string | undefined;
4373
4392
  tier?: "basic" | "regular" | "premium" | undefined;
4393
+ integrationType?: "meta" | "360dialog" | undefined;
4374
4394
  } | undefined;
4375
4395
  vonageCredentials?: {
4376
4396
  apiKey: string;
@@ -7501,35 +7521,38 @@ export declare const messengerContract: {
7501
7521
  additionalCredentials: z.ZodOptional<z.ZodAny>;
7502
7522
  senderId: z.ZodOptional<z.ZodString>;
7503
7523
  whatsapp: z.ZodOptional<z.ZodObject<{
7504
- wabaBusinessId: z.ZodOptional<z.ZodString>;
7505
- wabaExternalId: z.ZodString;
7506
- phoneNumberId: z.ZodString;
7507
- email: z.ZodString;
7508
- clientId: z.ZodOptional<z.ZodString>;
7509
- channelId: z.ZodOptional<z.ZodString>;
7524
+ wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
7525
+ wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
7526
+ phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
7527
+ email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
7528
+ clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
7529
+ channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
7510
7530
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
7511
7531
  apiKey: z.ZodOptional<z.ZodString>;
7512
7532
  tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
7533
+ integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
7513
7534
  }, "strip", z.ZodTypeAny, {
7514
- email: string;
7515
- wabaExternalId: string;
7516
- phoneNumberId: string;
7517
- wabaBusinessId?: string | undefined;
7518
- clientId?: string | undefined;
7519
- channelId?: string | undefined;
7535
+ wabaBusinessId?: string | null | undefined;
7536
+ wabaExternalId?: string | null | undefined;
7537
+ phoneNumberId?: string | null | undefined;
7538
+ email?: string | null | undefined;
7539
+ clientId?: string | null | undefined;
7540
+ channelId?: string | null | undefined;
7520
7541
  status?: "active" | "pending" | undefined;
7521
7542
  apiKey?: string | undefined;
7522
7543
  tier?: "basic" | "regular" | "premium" | undefined;
7544
+ integrationType?: "meta" | "360dialog" | undefined;
7523
7545
  }, {
7524
- email: string;
7525
- wabaExternalId: string;
7526
- phoneNumberId: string;
7527
- wabaBusinessId?: string | undefined;
7528
- clientId?: string | undefined;
7529
- channelId?: string | undefined;
7546
+ wabaBusinessId?: string | null | undefined;
7547
+ wabaExternalId?: string | null | undefined;
7548
+ phoneNumberId?: string | null | undefined;
7549
+ email?: string | null | undefined;
7550
+ clientId?: string | null | undefined;
7551
+ channelId?: string | null | undefined;
7530
7552
  status?: "active" | "pending" | undefined;
7531
7553
  apiKey?: string | undefined;
7532
7554
  tier?: "basic" | "regular" | "premium" | undefined;
7555
+ integrationType?: "meta" | "360dialog" | undefined;
7533
7556
  }>>;
7534
7557
  vonageCredentials: z.ZodOptional<z.ZodObject<{
7535
7558
  mobileNumber: z.ZodString;
@@ -7554,15 +7577,16 @@ export declare const messengerContract: {
7554
7577
  additionalCredentials?: any;
7555
7578
  senderId?: string | undefined;
7556
7579
  whatsapp?: {
7557
- email: string;
7558
- wabaExternalId: string;
7559
- phoneNumberId: string;
7560
- wabaBusinessId?: string | undefined;
7561
- clientId?: string | undefined;
7562
- channelId?: string | undefined;
7580
+ wabaBusinessId?: string | null | undefined;
7581
+ wabaExternalId?: string | null | undefined;
7582
+ phoneNumberId?: string | null | undefined;
7583
+ email?: string | null | undefined;
7584
+ clientId?: string | null | undefined;
7585
+ channelId?: string | null | undefined;
7563
7586
  status?: "active" | "pending" | undefined;
7564
7587
  apiKey?: string | undefined;
7565
7588
  tier?: "basic" | "regular" | "premium" | undefined;
7589
+ integrationType?: "meta" | "360dialog" | undefined;
7566
7590
  } | undefined;
7567
7591
  vonageCredentials?: {
7568
7592
  apiKey: string;
@@ -7579,15 +7603,16 @@ export declare const messengerContract: {
7579
7603
  additionalCredentials?: any;
7580
7604
  senderId?: string | undefined;
7581
7605
  whatsapp?: {
7582
- email: string;
7583
- wabaExternalId: string;
7584
- phoneNumberId: string;
7585
- wabaBusinessId?: string | undefined;
7586
- clientId?: string | undefined;
7587
- channelId?: string | undefined;
7606
+ wabaBusinessId?: string | null | undefined;
7607
+ wabaExternalId?: string | null | undefined;
7608
+ phoneNumberId?: string | null | undefined;
7609
+ email?: string | null | undefined;
7610
+ clientId?: string | null | undefined;
7611
+ channelId?: string | null | undefined;
7588
7612
  status?: "active" | "pending" | undefined;
7589
7613
  apiKey?: string | undefined;
7590
7614
  tier?: "basic" | "regular" | "premium" | undefined;
7615
+ integrationType?: "meta" | "360dialog" | undefined;
7591
7616
  } | undefined;
7592
7617
  vonageCredentials?: {
7593
7618
  apiKey: string;
@@ -7838,15 +7863,16 @@ export declare const messengerContract: {
7838
7863
  additionalCredentials?: any;
7839
7864
  senderId?: string | undefined;
7840
7865
  whatsapp?: {
7841
- email: string;
7842
- wabaExternalId: string;
7843
- phoneNumberId: string;
7844
- wabaBusinessId?: string | undefined;
7845
- clientId?: string | undefined;
7846
- channelId?: string | undefined;
7866
+ wabaBusinessId?: string | null | undefined;
7867
+ wabaExternalId?: string | null | undefined;
7868
+ phoneNumberId?: string | null | undefined;
7869
+ email?: string | null | undefined;
7870
+ clientId?: string | null | undefined;
7871
+ channelId?: string | null | undefined;
7847
7872
  status?: "active" | "pending" | undefined;
7848
7873
  apiKey?: string | undefined;
7849
7874
  tier?: "basic" | "regular" | "premium" | undefined;
7875
+ integrationType?: "meta" | "360dialog" | undefined;
7850
7876
  } | undefined;
7851
7877
  vonageCredentials?: {
7852
7878
  apiKey: string;
@@ -7928,15 +7954,16 @@ export declare const messengerContract: {
7928
7954
  additionalCredentials?: any;
7929
7955
  senderId?: string | undefined;
7930
7956
  whatsapp?: {
7931
- email: string;
7932
- wabaExternalId: string;
7933
- phoneNumberId: string;
7934
- wabaBusinessId?: string | undefined;
7935
- clientId?: string | undefined;
7936
- channelId?: string | undefined;
7957
+ wabaBusinessId?: string | null | undefined;
7958
+ wabaExternalId?: string | null | undefined;
7959
+ phoneNumberId?: string | null | undefined;
7960
+ email?: string | null | undefined;
7961
+ clientId?: string | null | undefined;
7962
+ channelId?: string | null | undefined;
7937
7963
  status?: "active" | "pending" | undefined;
7938
7964
  apiKey?: string | undefined;
7939
7965
  tier?: "basic" | "regular" | "premium" | undefined;
7966
+ integrationType?: "meta" | "360dialog" | undefined;
7940
7967
  } | undefined;
7941
7968
  vonageCredentials?: {
7942
7969
  apiKey: string;
@@ -8582,15 +8609,16 @@ export declare const messengerContract: {
8582
8609
  additionalCredentials?: any;
8583
8610
  senderId?: string | undefined;
8584
8611
  whatsapp?: {
8585
- email: string;
8586
- wabaExternalId: string;
8587
- phoneNumberId: string;
8588
- wabaBusinessId?: string | undefined;
8589
- clientId?: string | undefined;
8590
- channelId?: string | undefined;
8612
+ wabaBusinessId?: string | null | undefined;
8613
+ wabaExternalId?: string | null | undefined;
8614
+ phoneNumberId?: string | null | undefined;
8615
+ email?: string | null | undefined;
8616
+ clientId?: string | null | undefined;
8617
+ channelId?: string | null | undefined;
8591
8618
  status?: "active" | "pending" | undefined;
8592
8619
  apiKey?: string | undefined;
8593
8620
  tier?: "basic" | "regular" | "premium" | undefined;
8621
+ integrationType?: "meta" | "360dialog" | undefined;
8594
8622
  } | undefined;
8595
8623
  vonageCredentials?: {
8596
8624
  apiKey: string;
@@ -9005,15 +9033,16 @@ export declare const messengerContract: {
9005
9033
  additionalCredentials?: any;
9006
9034
  senderId?: string | undefined;
9007
9035
  whatsapp?: {
9008
- email: string;
9009
- wabaExternalId: string;
9010
- phoneNumberId: string;
9011
- wabaBusinessId?: string | undefined;
9012
- clientId?: string | undefined;
9013
- channelId?: string | undefined;
9036
+ wabaBusinessId?: string | null | undefined;
9037
+ wabaExternalId?: string | null | undefined;
9038
+ phoneNumberId?: string | null | undefined;
9039
+ email?: string | null | undefined;
9040
+ clientId?: string | null | undefined;
9041
+ channelId?: string | null | undefined;
9014
9042
  status?: "active" | "pending" | undefined;
9015
9043
  apiKey?: string | undefined;
9016
9044
  tier?: "basic" | "regular" | "premium" | undefined;
9045
+ integrationType?: "meta" | "360dialog" | undefined;
9017
9046
  } | undefined;
9018
9047
  vonageCredentials?: {
9019
9048
  apiKey: string;
@@ -11201,15 +11230,16 @@ export declare const messengerContract: {
11201
11230
  additionalCredentials?: any;
11202
11231
  senderId?: string | undefined;
11203
11232
  whatsapp?: {
11204
- email: string;
11205
- wabaExternalId: string;
11206
- phoneNumberId: string;
11207
- wabaBusinessId?: string | undefined;
11208
- clientId?: string | undefined;
11209
- channelId?: string | undefined;
11233
+ wabaBusinessId?: string | null | undefined;
11234
+ wabaExternalId?: string | null | undefined;
11235
+ phoneNumberId?: string | null | undefined;
11236
+ email?: string | null | undefined;
11237
+ clientId?: string | null | undefined;
11238
+ channelId?: string | null | undefined;
11210
11239
  status?: "active" | "pending" | undefined;
11211
11240
  apiKey?: string | undefined;
11212
11241
  tier?: "basic" | "regular" | "premium" | undefined;
11242
+ integrationType?: "meta" | "360dialog" | undefined;
11213
11243
  } | undefined;
11214
11244
  vonageCredentials?: {
11215
11245
  apiKey: string;
@@ -11961,15 +11991,16 @@ export declare const messengerContract: {
11961
11991
  additionalCredentials?: any;
11962
11992
  senderId?: string | undefined;
11963
11993
  whatsapp?: {
11964
- email: string;
11965
- wabaExternalId: string;
11966
- phoneNumberId: string;
11967
- wabaBusinessId?: string | undefined;
11968
- clientId?: string | undefined;
11969
- channelId?: string | undefined;
11994
+ wabaBusinessId?: string | null | undefined;
11995
+ wabaExternalId?: string | null | undefined;
11996
+ phoneNumberId?: string | null | undefined;
11997
+ email?: string | null | undefined;
11998
+ clientId?: string | null | undefined;
11999
+ channelId?: string | null | undefined;
11970
12000
  status?: "active" | "pending" | undefined;
11971
12001
  apiKey?: string | undefined;
11972
12002
  tier?: "basic" | "regular" | "premium" | undefined;
12003
+ integrationType?: "meta" | "360dialog" | undefined;
11973
12004
  } | undefined;
11974
12005
  vonageCredentials?: {
11975
12006
  apiKey: string;
@@ -12722,15 +12753,16 @@ export declare const messengerContract: {
12722
12753
  additionalCredentials?: any;
12723
12754
  senderId?: string | undefined;
12724
12755
  whatsapp?: {
12725
- email: string;
12726
- wabaExternalId: string;
12727
- phoneNumberId: string;
12728
- wabaBusinessId?: string | undefined;
12729
- clientId?: string | undefined;
12730
- channelId?: string | undefined;
12756
+ wabaBusinessId?: string | null | undefined;
12757
+ wabaExternalId?: string | null | undefined;
12758
+ phoneNumberId?: string | null | undefined;
12759
+ email?: string | null | undefined;
12760
+ clientId?: string | null | undefined;
12761
+ channelId?: string | null | undefined;
12731
12762
  status?: "active" | "pending" | undefined;
12732
12763
  apiKey?: string | undefined;
12733
12764
  tier?: "basic" | "regular" | "premium" | undefined;
12765
+ integrationType?: "meta" | "360dialog" | undefined;
12734
12766
  } | undefined;
12735
12767
  vonageCredentials?: {
12736
12768
  apiKey: string;
@@ -13482,15 +13514,16 @@ export declare const messengerContract: {
13482
13514
  additionalCredentials?: any;
13483
13515
  senderId?: string | undefined;
13484
13516
  whatsapp?: {
13485
- email: string;
13486
- wabaExternalId: string;
13487
- phoneNumberId: string;
13488
- wabaBusinessId?: string | undefined;
13489
- clientId?: string | undefined;
13490
- channelId?: string | undefined;
13517
+ wabaBusinessId?: string | null | undefined;
13518
+ wabaExternalId?: string | null | undefined;
13519
+ phoneNumberId?: string | null | undefined;
13520
+ email?: string | null | undefined;
13521
+ clientId?: string | null | undefined;
13522
+ channelId?: string | null | undefined;
13491
13523
  status?: "active" | "pending" | undefined;
13492
13524
  apiKey?: string | undefined;
13493
13525
  tier?: "basic" | "regular" | "premium" | undefined;
13526
+ integrationType?: "meta" | "360dialog" | undefined;
13494
13527
  } | undefined;
13495
13528
  vonageCredentials?: {
13496
13529
  apiKey: string;
@@ -14243,15 +14276,16 @@ export declare const messengerContract: {
14243
14276
  additionalCredentials?: any;
14244
14277
  senderId?: string | undefined;
14245
14278
  whatsapp?: {
14246
- email: string;
14247
- wabaExternalId: string;
14248
- phoneNumberId: string;
14249
- wabaBusinessId?: string | undefined;
14250
- clientId?: string | undefined;
14251
- channelId?: string | undefined;
14279
+ wabaBusinessId?: string | null | undefined;
14280
+ wabaExternalId?: string | null | undefined;
14281
+ phoneNumberId?: string | null | undefined;
14282
+ email?: string | null | undefined;
14283
+ clientId?: string | null | undefined;
14284
+ channelId?: string | null | undefined;
14252
14285
  status?: "active" | "pending" | undefined;
14253
14286
  apiKey?: string | undefined;
14254
14287
  tier?: "basic" | "regular" | "premium" | undefined;
14288
+ integrationType?: "meta" | "360dialog" | undefined;
14255
14289
  } | undefined;
14256
14290
  vonageCredentials?: {
14257
14291
  apiKey: string;
@@ -15003,15 +15037,16 @@ export declare const messengerContract: {
15003
15037
  additionalCredentials?: any;
15004
15038
  senderId?: string | undefined;
15005
15039
  whatsapp?: {
15006
- email: string;
15007
- wabaExternalId: string;
15008
- phoneNumberId: string;
15009
- wabaBusinessId?: string | undefined;
15010
- clientId?: string | undefined;
15011
- channelId?: string | undefined;
15040
+ wabaBusinessId?: string | null | undefined;
15041
+ wabaExternalId?: string | null | undefined;
15042
+ phoneNumberId?: string | null | undefined;
15043
+ email?: string | null | undefined;
15044
+ clientId?: string | null | undefined;
15045
+ channelId?: string | null | undefined;
15012
15046
  status?: "active" | "pending" | undefined;
15013
15047
  apiKey?: string | undefined;
15014
15048
  tier?: "basic" | "regular" | "premium" | undefined;
15049
+ integrationType?: "meta" | "360dialog" | undefined;
15015
15050
  } | undefined;
15016
15051
  vonageCredentials?: {
15017
15052
  apiKey: string;
@@ -15766,15 +15801,16 @@ export declare const messengerContract: {
15766
15801
  additionalCredentials?: any;
15767
15802
  senderId?: string | undefined;
15768
15803
  whatsapp?: {
15769
- email: string;
15770
- wabaExternalId: string;
15771
- phoneNumberId: string;
15772
- wabaBusinessId?: string | undefined;
15773
- clientId?: string | undefined;
15774
- channelId?: string | undefined;
15804
+ wabaBusinessId?: string | null | undefined;
15805
+ wabaExternalId?: string | null | undefined;
15806
+ phoneNumberId?: string | null | undefined;
15807
+ email?: string | null | undefined;
15808
+ clientId?: string | null | undefined;
15809
+ channelId?: string | null | undefined;
15775
15810
  status?: "active" | "pending" | undefined;
15776
15811
  apiKey?: string | undefined;
15777
15812
  tier?: "basic" | "regular" | "premium" | undefined;
15813
+ integrationType?: "meta" | "360dialog" | undefined;
15778
15814
  } | undefined;
15779
15815
  vonageCredentials?: {
15780
15816
  apiKey: string;
@@ -16526,15 +16562,16 @@ export declare const messengerContract: {
16526
16562
  additionalCredentials?: any;
16527
16563
  senderId?: string | undefined;
16528
16564
  whatsapp?: {
16529
- email: string;
16530
- wabaExternalId: string;
16531
- phoneNumberId: string;
16532
- wabaBusinessId?: string | undefined;
16533
- clientId?: string | undefined;
16534
- channelId?: string | undefined;
16565
+ wabaBusinessId?: string | null | undefined;
16566
+ wabaExternalId?: string | null | undefined;
16567
+ phoneNumberId?: string | null | undefined;
16568
+ email?: string | null | undefined;
16569
+ clientId?: string | null | undefined;
16570
+ channelId?: string | null | undefined;
16535
16571
  status?: "active" | "pending" | undefined;
16536
16572
  apiKey?: string | undefined;
16537
16573
  tier?: "basic" | "regular" | "premium" | undefined;
16574
+ integrationType?: "meta" | "360dialog" | undefined;
16538
16575
  } | undefined;
16539
16576
  vonageCredentials?: {
16540
16577
  apiKey: string;
@@ -17290,15 +17327,16 @@ export declare const messengerContract: {
17290
17327
  additionalCredentials?: any;
17291
17328
  senderId?: string | undefined;
17292
17329
  whatsapp?: {
17293
- email: string;
17294
- wabaExternalId: string;
17295
- phoneNumberId: string;
17296
- wabaBusinessId?: string | undefined;
17297
- clientId?: string | undefined;
17298
- channelId?: string | undefined;
17330
+ wabaBusinessId?: string | null | undefined;
17331
+ wabaExternalId?: string | null | undefined;
17332
+ phoneNumberId?: string | null | undefined;
17333
+ email?: string | null | undefined;
17334
+ clientId?: string | null | undefined;
17335
+ channelId?: string | null | undefined;
17299
17336
  status?: "active" | "pending" | undefined;
17300
17337
  apiKey?: string | undefined;
17301
17338
  tier?: "basic" | "regular" | "premium" | undefined;
17339
+ integrationType?: "meta" | "360dialog" | undefined;
17302
17340
  } | undefined;
17303
17341
  vonageCredentials?: {
17304
17342
  apiKey: string;
@@ -18050,15 +18088,16 @@ export declare const messengerContract: {
18050
18088
  additionalCredentials?: any;
18051
18089
  senderId?: string | undefined;
18052
18090
  whatsapp?: {
18053
- email: string;
18054
- wabaExternalId: string;
18055
- phoneNumberId: string;
18056
- wabaBusinessId?: string | undefined;
18057
- clientId?: string | undefined;
18058
- channelId?: string | undefined;
18091
+ wabaBusinessId?: string | null | undefined;
18092
+ wabaExternalId?: string | null | undefined;
18093
+ phoneNumberId?: string | null | undefined;
18094
+ email?: string | null | undefined;
18095
+ clientId?: string | null | undefined;
18096
+ channelId?: string | null | undefined;
18059
18097
  status?: "active" | "pending" | undefined;
18060
18098
  apiKey?: string | undefined;
18061
18099
  tier?: "basic" | "regular" | "premium" | undefined;
18100
+ integrationType?: "meta" | "360dialog" | undefined;
18062
18101
  } | undefined;
18063
18102
  vonageCredentials?: {
18064
18103
  apiKey: string;
@@ -18726,35 +18765,38 @@ export declare const messengerContract: {
18726
18765
  additionalCredentials: z.ZodOptional<z.ZodAny>;
18727
18766
  senderId: z.ZodOptional<z.ZodString>;
18728
18767
  whatsapp: z.ZodOptional<z.ZodObject<{
18729
- wabaBusinessId: z.ZodOptional<z.ZodString>;
18730
- wabaExternalId: z.ZodString;
18731
- phoneNumberId: z.ZodString;
18732
- email: z.ZodString;
18733
- clientId: z.ZodOptional<z.ZodString>;
18734
- channelId: z.ZodOptional<z.ZodString>;
18768
+ wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
18769
+ wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
18770
+ phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
18771
+ email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
18772
+ clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
18773
+ channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
18735
18774
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
18736
18775
  apiKey: z.ZodOptional<z.ZodString>;
18737
18776
  tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
18777
+ integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
18738
18778
  }, "strip", z.ZodTypeAny, {
18739
- email: string;
18740
- wabaExternalId: string;
18741
- phoneNumberId: string;
18742
- wabaBusinessId?: string | undefined;
18743
- clientId?: string | undefined;
18744
- channelId?: string | undefined;
18779
+ wabaBusinessId?: string | null | undefined;
18780
+ wabaExternalId?: string | null | undefined;
18781
+ phoneNumberId?: string | null | undefined;
18782
+ email?: string | null | undefined;
18783
+ clientId?: string | null | undefined;
18784
+ channelId?: string | null | undefined;
18745
18785
  status?: "active" | "pending" | undefined;
18746
18786
  apiKey?: string | undefined;
18747
18787
  tier?: "basic" | "regular" | "premium" | undefined;
18788
+ integrationType?: "meta" | "360dialog" | undefined;
18748
18789
  }, {
18749
- email: string;
18750
- wabaExternalId: string;
18751
- phoneNumberId: string;
18752
- wabaBusinessId?: string | undefined;
18753
- clientId?: string | undefined;
18754
- channelId?: string | undefined;
18790
+ wabaBusinessId?: string | null | undefined;
18791
+ wabaExternalId?: string | null | undefined;
18792
+ phoneNumberId?: string | null | undefined;
18793
+ email?: string | null | undefined;
18794
+ clientId?: string | null | undefined;
18795
+ channelId?: string | null | undefined;
18755
18796
  status?: "active" | "pending" | undefined;
18756
18797
  apiKey?: string | undefined;
18757
18798
  tier?: "basic" | "regular" | "premium" | undefined;
18799
+ integrationType?: "meta" | "360dialog" | undefined;
18758
18800
  }>>;
18759
18801
  vonageCredentials: z.ZodOptional<z.ZodObject<{
18760
18802
  mobileNumber: z.ZodString;
@@ -18779,15 +18821,16 @@ export declare const messengerContract: {
18779
18821
  additionalCredentials?: any;
18780
18822
  senderId?: string | undefined;
18781
18823
  whatsapp?: {
18782
- email: string;
18783
- wabaExternalId: string;
18784
- phoneNumberId: string;
18785
- wabaBusinessId?: string | undefined;
18786
- clientId?: string | undefined;
18787
- channelId?: string | undefined;
18824
+ wabaBusinessId?: string | null | undefined;
18825
+ wabaExternalId?: string | null | undefined;
18826
+ phoneNumberId?: string | null | undefined;
18827
+ email?: string | null | undefined;
18828
+ clientId?: string | null | undefined;
18829
+ channelId?: string | null | undefined;
18788
18830
  status?: "active" | "pending" | undefined;
18789
18831
  apiKey?: string | undefined;
18790
18832
  tier?: "basic" | "regular" | "premium" | undefined;
18833
+ integrationType?: "meta" | "360dialog" | undefined;
18791
18834
  } | undefined;
18792
18835
  vonageCredentials?: {
18793
18836
  apiKey: string;
@@ -18804,15 +18847,16 @@ export declare const messengerContract: {
18804
18847
  additionalCredentials?: any;
18805
18848
  senderId?: string | undefined;
18806
18849
  whatsapp?: {
18807
- email: string;
18808
- wabaExternalId: string;
18809
- phoneNumberId: string;
18810
- wabaBusinessId?: string | undefined;
18811
- clientId?: string | undefined;
18812
- channelId?: string | undefined;
18850
+ wabaBusinessId?: string | null | undefined;
18851
+ wabaExternalId?: string | null | undefined;
18852
+ phoneNumberId?: string | null | undefined;
18853
+ email?: string | null | undefined;
18854
+ clientId?: string | null | undefined;
18855
+ channelId?: string | null | undefined;
18813
18856
  status?: "active" | "pending" | undefined;
18814
18857
  apiKey?: string | undefined;
18815
18858
  tier?: "basic" | "regular" | "premium" | undefined;
18859
+ integrationType?: "meta" | "360dialog" | undefined;
18816
18860
  } | undefined;
18817
18861
  vonageCredentials?: {
18818
18862
  apiKey: string;
@@ -18859,15 +18903,16 @@ export declare const messengerContract: {
18859
18903
  additionalCredentials?: any;
18860
18904
  senderId?: string | undefined;
18861
18905
  whatsapp?: {
18862
- email: string;
18863
- wabaExternalId: string;
18864
- phoneNumberId: string;
18865
- wabaBusinessId?: string | undefined;
18866
- clientId?: string | undefined;
18867
- channelId?: string | undefined;
18906
+ wabaBusinessId?: string | null | undefined;
18907
+ wabaExternalId?: string | null | undefined;
18908
+ phoneNumberId?: string | null | undefined;
18909
+ email?: string | null | undefined;
18910
+ clientId?: string | null | undefined;
18911
+ channelId?: string | null | undefined;
18868
18912
  status?: "active" | "pending" | undefined;
18869
18913
  apiKey?: string | undefined;
18870
18914
  tier?: "basic" | "regular" | "premium" | undefined;
18915
+ integrationType?: "meta" | "360dialog" | undefined;
18871
18916
  } | undefined;
18872
18917
  vonageCredentials?: {
18873
18918
  apiKey: string;
@@ -18902,15 +18947,16 @@ export declare const messengerContract: {
18902
18947
  additionalCredentials?: any;
18903
18948
  senderId?: string | undefined;
18904
18949
  whatsapp?: {
18905
- email: string;
18906
- wabaExternalId: string;
18907
- phoneNumberId: string;
18908
- wabaBusinessId?: string | undefined;
18909
- clientId?: string | undefined;
18910
- channelId?: string | undefined;
18950
+ wabaBusinessId?: string | null | undefined;
18951
+ wabaExternalId?: string | null | undefined;
18952
+ phoneNumberId?: string | null | undefined;
18953
+ email?: string | null | undefined;
18954
+ clientId?: string | null | undefined;
18955
+ channelId?: string | null | undefined;
18911
18956
  status?: "active" | "pending" | undefined;
18912
18957
  apiKey?: string | undefined;
18913
18958
  tier?: "basic" | "regular" | "premium" | undefined;
18959
+ integrationType?: "meta" | "360dialog" | undefined;
18914
18960
  } | undefined;
18915
18961
  vonageCredentials?: {
18916
18962
  apiKey: string;
@@ -18950,35 +18996,38 @@ export declare const messengerContract: {
18950
18996
  additionalCredentials: z.ZodOptional<z.ZodAny>;
18951
18997
  senderId: z.ZodOptional<z.ZodString>;
18952
18998
  whatsapp: z.ZodOptional<z.ZodObject<{
18953
- wabaBusinessId: z.ZodOptional<z.ZodString>;
18954
- wabaExternalId: z.ZodString;
18955
- phoneNumberId: z.ZodString;
18956
- email: z.ZodString;
18957
- clientId: z.ZodOptional<z.ZodString>;
18958
- channelId: z.ZodOptional<z.ZodString>;
18999
+ wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
19000
+ wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
19001
+ phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
19002
+ email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
19003
+ clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
19004
+ channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
18959
19005
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
18960
19006
  apiKey: z.ZodOptional<z.ZodString>;
18961
19007
  tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
19008
+ integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
18962
19009
  }, "strip", z.ZodTypeAny, {
18963
- email: string;
18964
- wabaExternalId: string;
18965
- phoneNumberId: string;
18966
- wabaBusinessId?: string | undefined;
18967
- clientId?: string | undefined;
18968
- channelId?: string | undefined;
19010
+ wabaBusinessId?: string | null | undefined;
19011
+ wabaExternalId?: string | null | undefined;
19012
+ phoneNumberId?: string | null | undefined;
19013
+ email?: string | null | undefined;
19014
+ clientId?: string | null | undefined;
19015
+ channelId?: string | null | undefined;
18969
19016
  status?: "active" | "pending" | undefined;
18970
19017
  apiKey?: string | undefined;
18971
19018
  tier?: "basic" | "regular" | "premium" | undefined;
19019
+ integrationType?: "meta" | "360dialog" | undefined;
18972
19020
  }, {
18973
- email: string;
18974
- wabaExternalId: string;
18975
- phoneNumberId: string;
18976
- wabaBusinessId?: string | undefined;
18977
- clientId?: string | undefined;
18978
- channelId?: string | undefined;
19021
+ wabaBusinessId?: string | null | undefined;
19022
+ wabaExternalId?: string | null | undefined;
19023
+ phoneNumberId?: string | null | undefined;
19024
+ email?: string | null | undefined;
19025
+ clientId?: string | null | undefined;
19026
+ channelId?: string | null | undefined;
18979
19027
  status?: "active" | "pending" | undefined;
18980
19028
  apiKey?: string | undefined;
18981
19029
  tier?: "basic" | "regular" | "premium" | undefined;
19030
+ integrationType?: "meta" | "360dialog" | undefined;
18982
19031
  }>>;
18983
19032
  vonageCredentials: z.ZodOptional<z.ZodObject<{
18984
19033
  mobileNumber: z.ZodString;
@@ -19003,15 +19052,16 @@ export declare const messengerContract: {
19003
19052
  additionalCredentials?: any;
19004
19053
  senderId?: string | undefined;
19005
19054
  whatsapp?: {
19006
- email: string;
19007
- wabaExternalId: string;
19008
- phoneNumberId: string;
19009
- wabaBusinessId?: string | undefined;
19010
- clientId?: string | undefined;
19011
- channelId?: string | undefined;
19055
+ wabaBusinessId?: string | null | undefined;
19056
+ wabaExternalId?: string | null | undefined;
19057
+ phoneNumberId?: string | null | undefined;
19058
+ email?: string | null | undefined;
19059
+ clientId?: string | null | undefined;
19060
+ channelId?: string | null | undefined;
19012
19061
  status?: "active" | "pending" | undefined;
19013
19062
  apiKey?: string | undefined;
19014
19063
  tier?: "basic" | "regular" | "premium" | undefined;
19064
+ integrationType?: "meta" | "360dialog" | undefined;
19015
19065
  } | undefined;
19016
19066
  vonageCredentials?: {
19017
19067
  apiKey: string;
@@ -19028,15 +19078,16 @@ export declare const messengerContract: {
19028
19078
  additionalCredentials?: any;
19029
19079
  senderId?: string | undefined;
19030
19080
  whatsapp?: {
19031
- email: string;
19032
- wabaExternalId: string;
19033
- phoneNumberId: string;
19034
- wabaBusinessId?: string | undefined;
19035
- clientId?: string | undefined;
19036
- channelId?: string | undefined;
19081
+ wabaBusinessId?: string | null | undefined;
19082
+ wabaExternalId?: string | null | undefined;
19083
+ phoneNumberId?: string | null | undefined;
19084
+ email?: string | null | undefined;
19085
+ clientId?: string | null | undefined;
19086
+ channelId?: string | null | undefined;
19037
19087
  status?: "active" | "pending" | undefined;
19038
19088
  apiKey?: string | undefined;
19039
19089
  tier?: "basic" | "regular" | "premium" | undefined;
19090
+ integrationType?: "meta" | "360dialog" | undefined;
19040
19091
  } | undefined;
19041
19092
  vonageCredentials?: {
19042
19093
  apiKey: string;
@@ -19083,15 +19134,16 @@ export declare const messengerContract: {
19083
19134
  additionalCredentials?: any;
19084
19135
  senderId?: string | undefined;
19085
19136
  whatsapp?: {
19086
- email: string;
19087
- wabaExternalId: string;
19088
- phoneNumberId: string;
19089
- wabaBusinessId?: string | undefined;
19090
- clientId?: string | undefined;
19091
- channelId?: string | undefined;
19137
+ wabaBusinessId?: string | null | undefined;
19138
+ wabaExternalId?: string | null | undefined;
19139
+ phoneNumberId?: string | null | undefined;
19140
+ email?: string | null | undefined;
19141
+ clientId?: string | null | undefined;
19142
+ channelId?: string | null | undefined;
19092
19143
  status?: "active" | "pending" | undefined;
19093
19144
  apiKey?: string | undefined;
19094
19145
  tier?: "basic" | "regular" | "premium" | undefined;
19146
+ integrationType?: "meta" | "360dialog" | undefined;
19095
19147
  } | undefined;
19096
19148
  vonageCredentials?: {
19097
19149
  apiKey: string;
@@ -19126,15 +19178,16 @@ export declare const messengerContract: {
19126
19178
  additionalCredentials?: any;
19127
19179
  senderId?: string | undefined;
19128
19180
  whatsapp?: {
19129
- email: string;
19130
- wabaExternalId: string;
19131
- phoneNumberId: string;
19132
- wabaBusinessId?: string | undefined;
19133
- clientId?: string | undefined;
19134
- channelId?: string | undefined;
19181
+ wabaBusinessId?: string | null | undefined;
19182
+ wabaExternalId?: string | null | undefined;
19183
+ phoneNumberId?: string | null | undefined;
19184
+ email?: string | null | undefined;
19185
+ clientId?: string | null | undefined;
19186
+ channelId?: string | null | undefined;
19135
19187
  status?: "active" | "pending" | undefined;
19136
19188
  apiKey?: string | undefined;
19137
19189
  tier?: "basic" | "regular" | "premium" | undefined;
19190
+ integrationType?: "meta" | "360dialog" | undefined;
19138
19191
  } | undefined;
19139
19192
  vonageCredentials?: {
19140
19193
  apiKey: string;
@@ -19171,15 +19224,16 @@ export declare const messengerContract: {
19171
19224
  additionalCredentials?: any;
19172
19225
  senderId?: string | undefined;
19173
19226
  whatsapp?: {
19174
- email: string;
19175
- wabaExternalId: string;
19176
- phoneNumberId: string;
19177
- wabaBusinessId?: string | undefined;
19178
- clientId?: string | undefined;
19179
- channelId?: string | undefined;
19227
+ wabaBusinessId?: string | null | undefined;
19228
+ wabaExternalId?: string | null | undefined;
19229
+ phoneNumberId?: string | null | undefined;
19230
+ email?: string | null | undefined;
19231
+ clientId?: string | null | undefined;
19232
+ channelId?: string | null | undefined;
19180
19233
  status?: "active" | "pending" | undefined;
19181
19234
  apiKey?: string | undefined;
19182
19235
  tier?: "basic" | "regular" | "premium" | undefined;
19236
+ integrationType?: "meta" | "360dialog" | undefined;
19183
19237
  } | undefined;
19184
19238
  vonageCredentials?: {
19185
19239
  apiKey: string;
@@ -19217,15 +19271,16 @@ export declare const messengerContract: {
19217
19271
  additionalCredentials?: any;
19218
19272
  senderId?: string | undefined;
19219
19273
  whatsapp?: {
19220
- email: string;
19221
- wabaExternalId: string;
19222
- phoneNumberId: string;
19223
- wabaBusinessId?: string | undefined;
19224
- clientId?: string | undefined;
19225
- channelId?: string | undefined;
19274
+ wabaBusinessId?: string | null | undefined;
19275
+ wabaExternalId?: string | null | undefined;
19276
+ phoneNumberId?: string | null | undefined;
19277
+ email?: string | null | undefined;
19278
+ clientId?: string | null | undefined;
19279
+ channelId?: string | null | undefined;
19226
19280
  status?: "active" | "pending" | undefined;
19227
19281
  apiKey?: string | undefined;
19228
19282
  tier?: "basic" | "regular" | "premium" | undefined;
19283
+ integrationType?: "meta" | "360dialog" | undefined;
19229
19284
  } | undefined;
19230
19285
  vonageCredentials?: {
19231
19286
  apiKey: string;
@@ -19287,35 +19342,38 @@ export declare const messengerContract: {
19287
19342
  additionalCredentials: z.ZodOptional<z.ZodAny>;
19288
19343
  senderId: z.ZodOptional<z.ZodString>;
19289
19344
  whatsapp: z.ZodOptional<z.ZodObject<{
19290
- wabaBusinessId: z.ZodOptional<z.ZodString>;
19291
- wabaExternalId: z.ZodString;
19292
- phoneNumberId: z.ZodString;
19293
- email: z.ZodString;
19294
- clientId: z.ZodOptional<z.ZodString>;
19295
- channelId: z.ZodOptional<z.ZodString>;
19345
+ wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
19346
+ wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
19347
+ phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
19348
+ email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
19349
+ clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
19350
+ channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
19296
19351
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
19297
19352
  apiKey: z.ZodOptional<z.ZodString>;
19298
19353
  tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
19354
+ integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
19299
19355
  }, "strip", z.ZodTypeAny, {
19300
- email: string;
19301
- wabaExternalId: string;
19302
- phoneNumberId: string;
19303
- wabaBusinessId?: string | undefined;
19304
- clientId?: string | undefined;
19305
- channelId?: string | undefined;
19356
+ wabaBusinessId?: string | null | undefined;
19357
+ wabaExternalId?: string | null | undefined;
19358
+ phoneNumberId?: string | null | undefined;
19359
+ email?: string | null | undefined;
19360
+ clientId?: string | null | undefined;
19361
+ channelId?: string | null | undefined;
19306
19362
  status?: "active" | "pending" | undefined;
19307
19363
  apiKey?: string | undefined;
19308
19364
  tier?: "basic" | "regular" | "premium" | undefined;
19365
+ integrationType?: "meta" | "360dialog" | undefined;
19309
19366
  }, {
19310
- email: string;
19311
- wabaExternalId: string;
19312
- phoneNumberId: string;
19313
- wabaBusinessId?: string | undefined;
19314
- clientId?: string | undefined;
19315
- channelId?: string | undefined;
19367
+ wabaBusinessId?: string | null | undefined;
19368
+ wabaExternalId?: string | null | undefined;
19369
+ phoneNumberId?: string | null | undefined;
19370
+ email?: string | null | undefined;
19371
+ clientId?: string | null | undefined;
19372
+ channelId?: string | null | undefined;
19316
19373
  status?: "active" | "pending" | undefined;
19317
19374
  apiKey?: string | undefined;
19318
19375
  tier?: "basic" | "regular" | "premium" | undefined;
19376
+ integrationType?: "meta" | "360dialog" | undefined;
19319
19377
  }>>;
19320
19378
  vonageCredentials: z.ZodOptional<z.ZodObject<{
19321
19379
  mobileNumber: z.ZodString;
@@ -19340,15 +19398,16 @@ export declare const messengerContract: {
19340
19398
  additionalCredentials?: any;
19341
19399
  senderId?: string | undefined;
19342
19400
  whatsapp?: {
19343
- email: string;
19344
- wabaExternalId: string;
19345
- phoneNumberId: string;
19346
- wabaBusinessId?: string | undefined;
19347
- clientId?: string | undefined;
19348
- channelId?: string | undefined;
19401
+ wabaBusinessId?: string | null | undefined;
19402
+ wabaExternalId?: string | null | undefined;
19403
+ phoneNumberId?: string | null | undefined;
19404
+ email?: string | null | undefined;
19405
+ clientId?: string | null | undefined;
19406
+ channelId?: string | null | undefined;
19349
19407
  status?: "active" | "pending" | undefined;
19350
19408
  apiKey?: string | undefined;
19351
19409
  tier?: "basic" | "regular" | "premium" | undefined;
19410
+ integrationType?: "meta" | "360dialog" | undefined;
19352
19411
  } | undefined;
19353
19412
  vonageCredentials?: {
19354
19413
  apiKey: string;
@@ -19365,15 +19424,16 @@ export declare const messengerContract: {
19365
19424
  additionalCredentials?: any;
19366
19425
  senderId?: string | undefined;
19367
19426
  whatsapp?: {
19368
- email: string;
19369
- wabaExternalId: string;
19370
- phoneNumberId: string;
19371
- wabaBusinessId?: string | undefined;
19372
- clientId?: string | undefined;
19373
- channelId?: string | undefined;
19427
+ wabaBusinessId?: string | null | undefined;
19428
+ wabaExternalId?: string | null | undefined;
19429
+ phoneNumberId?: string | null | undefined;
19430
+ email?: string | null | undefined;
19431
+ clientId?: string | null | undefined;
19432
+ channelId?: string | null | undefined;
19374
19433
  status?: "active" | "pending" | undefined;
19375
19434
  apiKey?: string | undefined;
19376
19435
  tier?: "basic" | "regular" | "premium" | undefined;
19436
+ integrationType?: "meta" | "360dialog" | undefined;
19377
19437
  } | undefined;
19378
19438
  vonageCredentials?: {
19379
19439
  apiKey: string;
@@ -19420,15 +19480,16 @@ export declare const messengerContract: {
19420
19480
  additionalCredentials?: any;
19421
19481
  senderId?: string | undefined;
19422
19482
  whatsapp?: {
19423
- email: string;
19424
- wabaExternalId: string;
19425
- phoneNumberId: string;
19426
- wabaBusinessId?: string | undefined;
19427
- clientId?: string | undefined;
19428
- channelId?: string | undefined;
19483
+ wabaBusinessId?: string | null | undefined;
19484
+ wabaExternalId?: string | null | undefined;
19485
+ phoneNumberId?: string | null | undefined;
19486
+ email?: string | null | undefined;
19487
+ clientId?: string | null | undefined;
19488
+ channelId?: string | null | undefined;
19429
19489
  status?: "active" | "pending" | undefined;
19430
19490
  apiKey?: string | undefined;
19431
19491
  tier?: "basic" | "regular" | "premium" | undefined;
19492
+ integrationType?: "meta" | "360dialog" | undefined;
19432
19493
  } | undefined;
19433
19494
  vonageCredentials?: {
19434
19495
  apiKey: string;
@@ -19463,15 +19524,16 @@ export declare const messengerContract: {
19463
19524
  additionalCredentials?: any;
19464
19525
  senderId?: string | undefined;
19465
19526
  whatsapp?: {
19466
- email: string;
19467
- wabaExternalId: string;
19468
- phoneNumberId: string;
19469
- wabaBusinessId?: string | undefined;
19470
- clientId?: string | undefined;
19471
- channelId?: string | undefined;
19527
+ wabaBusinessId?: string | null | undefined;
19528
+ wabaExternalId?: string | null | undefined;
19529
+ phoneNumberId?: string | null | undefined;
19530
+ email?: string | null | undefined;
19531
+ clientId?: string | null | undefined;
19532
+ channelId?: string | null | undefined;
19472
19533
  status?: "active" | "pending" | undefined;
19473
19534
  apiKey?: string | undefined;
19474
19535
  tier?: "basic" | "regular" | "premium" | undefined;
19536
+ integrationType?: "meta" | "360dialog" | undefined;
19475
19537
  } | undefined;
19476
19538
  vonageCredentials?: {
19477
19539
  apiKey: string;
@@ -19511,35 +19573,38 @@ export declare const messengerContract: {
19511
19573
  additionalCredentials: z.ZodOptional<z.ZodAny>;
19512
19574
  senderId: z.ZodOptional<z.ZodString>;
19513
19575
  whatsapp: z.ZodOptional<z.ZodObject<{
19514
- wabaBusinessId: z.ZodOptional<z.ZodString>;
19515
- wabaExternalId: z.ZodString;
19516
- phoneNumberId: z.ZodString;
19517
- email: z.ZodString;
19518
- clientId: z.ZodOptional<z.ZodString>;
19519
- channelId: z.ZodOptional<z.ZodString>;
19576
+ wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
19577
+ wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
19578
+ phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
19579
+ email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
19580
+ clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
19581
+ channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
19520
19582
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
19521
19583
  apiKey: z.ZodOptional<z.ZodString>;
19522
19584
  tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
19585
+ integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
19523
19586
  }, "strip", z.ZodTypeAny, {
19524
- email: string;
19525
- wabaExternalId: string;
19526
- phoneNumberId: string;
19527
- wabaBusinessId?: string | undefined;
19528
- clientId?: string | undefined;
19529
- channelId?: string | undefined;
19587
+ wabaBusinessId?: string | null | undefined;
19588
+ wabaExternalId?: string | null | undefined;
19589
+ phoneNumberId?: string | null | undefined;
19590
+ email?: string | null | undefined;
19591
+ clientId?: string | null | undefined;
19592
+ channelId?: string | null | undefined;
19530
19593
  status?: "active" | "pending" | undefined;
19531
19594
  apiKey?: string | undefined;
19532
19595
  tier?: "basic" | "regular" | "premium" | undefined;
19596
+ integrationType?: "meta" | "360dialog" | undefined;
19533
19597
  }, {
19534
- email: string;
19535
- wabaExternalId: string;
19536
- phoneNumberId: string;
19537
- wabaBusinessId?: string | undefined;
19538
- clientId?: string | undefined;
19539
- channelId?: string | undefined;
19598
+ wabaBusinessId?: string | null | undefined;
19599
+ wabaExternalId?: string | null | undefined;
19600
+ phoneNumberId?: string | null | undefined;
19601
+ email?: string | null | undefined;
19602
+ clientId?: string | null | undefined;
19603
+ channelId?: string | null | undefined;
19540
19604
  status?: "active" | "pending" | undefined;
19541
19605
  apiKey?: string | undefined;
19542
19606
  tier?: "basic" | "regular" | "premium" | undefined;
19607
+ integrationType?: "meta" | "360dialog" | undefined;
19543
19608
  }>>;
19544
19609
  vonageCredentials: z.ZodOptional<z.ZodObject<{
19545
19610
  mobileNumber: z.ZodString;
@@ -19564,15 +19629,16 @@ export declare const messengerContract: {
19564
19629
  additionalCredentials?: any;
19565
19630
  senderId?: string | undefined;
19566
19631
  whatsapp?: {
19567
- email: string;
19568
- wabaExternalId: string;
19569
- phoneNumberId: string;
19570
- wabaBusinessId?: string | undefined;
19571
- clientId?: string | undefined;
19572
- channelId?: string | undefined;
19632
+ wabaBusinessId?: string | null | undefined;
19633
+ wabaExternalId?: string | null | undefined;
19634
+ phoneNumberId?: string | null | undefined;
19635
+ email?: string | null | undefined;
19636
+ clientId?: string | null | undefined;
19637
+ channelId?: string | null | undefined;
19573
19638
  status?: "active" | "pending" | undefined;
19574
19639
  apiKey?: string | undefined;
19575
19640
  tier?: "basic" | "regular" | "premium" | undefined;
19641
+ integrationType?: "meta" | "360dialog" | undefined;
19576
19642
  } | undefined;
19577
19643
  vonageCredentials?: {
19578
19644
  apiKey: string;
@@ -19589,15 +19655,16 @@ export declare const messengerContract: {
19589
19655
  additionalCredentials?: any;
19590
19656
  senderId?: string | undefined;
19591
19657
  whatsapp?: {
19592
- email: string;
19593
- wabaExternalId: string;
19594
- phoneNumberId: string;
19595
- wabaBusinessId?: string | undefined;
19596
- clientId?: string | undefined;
19597
- channelId?: string | undefined;
19658
+ wabaBusinessId?: string | null | undefined;
19659
+ wabaExternalId?: string | null | undefined;
19660
+ phoneNumberId?: string | null | undefined;
19661
+ email?: string | null | undefined;
19662
+ clientId?: string | null | undefined;
19663
+ channelId?: string | null | undefined;
19598
19664
  status?: "active" | "pending" | undefined;
19599
19665
  apiKey?: string | undefined;
19600
19666
  tier?: "basic" | "regular" | "premium" | undefined;
19667
+ integrationType?: "meta" | "360dialog" | undefined;
19601
19668
  } | undefined;
19602
19669
  vonageCredentials?: {
19603
19670
  apiKey: string;
@@ -19644,15 +19711,16 @@ export declare const messengerContract: {
19644
19711
  additionalCredentials?: any;
19645
19712
  senderId?: string | undefined;
19646
19713
  whatsapp?: {
19647
- email: string;
19648
- wabaExternalId: string;
19649
- phoneNumberId: string;
19650
- wabaBusinessId?: string | undefined;
19651
- clientId?: string | undefined;
19652
- channelId?: string | undefined;
19714
+ wabaBusinessId?: string | null | undefined;
19715
+ wabaExternalId?: string | null | undefined;
19716
+ phoneNumberId?: string | null | undefined;
19717
+ email?: string | null | undefined;
19718
+ clientId?: string | null | undefined;
19719
+ channelId?: string | null | undefined;
19653
19720
  status?: "active" | "pending" | undefined;
19654
19721
  apiKey?: string | undefined;
19655
19722
  tier?: "basic" | "regular" | "premium" | undefined;
19723
+ integrationType?: "meta" | "360dialog" | undefined;
19656
19724
  } | undefined;
19657
19725
  vonageCredentials?: {
19658
19726
  apiKey: string;
@@ -19687,15 +19755,16 @@ export declare const messengerContract: {
19687
19755
  additionalCredentials?: any;
19688
19756
  senderId?: string | undefined;
19689
19757
  whatsapp?: {
19690
- email: string;
19691
- wabaExternalId: string;
19692
- phoneNumberId: string;
19693
- wabaBusinessId?: string | undefined;
19694
- clientId?: string | undefined;
19695
- channelId?: string | undefined;
19758
+ wabaBusinessId?: string | null | undefined;
19759
+ wabaExternalId?: string | null | undefined;
19760
+ phoneNumberId?: string | null | undefined;
19761
+ email?: string | null | undefined;
19762
+ clientId?: string | null | undefined;
19763
+ channelId?: string | null | undefined;
19696
19764
  status?: "active" | "pending" | undefined;
19697
19765
  apiKey?: string | undefined;
19698
19766
  tier?: "basic" | "regular" | "premium" | undefined;
19767
+ integrationType?: "meta" | "360dialog" | undefined;
19699
19768
  } | undefined;
19700
19769
  vonageCredentials?: {
19701
19770
  apiKey: string;
@@ -19732,15 +19801,16 @@ export declare const messengerContract: {
19732
19801
  additionalCredentials?: any;
19733
19802
  senderId?: string | undefined;
19734
19803
  whatsapp?: {
19735
- email: string;
19736
- wabaExternalId: string;
19737
- phoneNumberId: string;
19738
- wabaBusinessId?: string | undefined;
19739
- clientId?: string | undefined;
19740
- channelId?: string | undefined;
19804
+ wabaBusinessId?: string | null | undefined;
19805
+ wabaExternalId?: string | null | undefined;
19806
+ phoneNumberId?: string | null | undefined;
19807
+ email?: string | null | undefined;
19808
+ clientId?: string | null | undefined;
19809
+ channelId?: string | null | undefined;
19741
19810
  status?: "active" | "pending" | undefined;
19742
19811
  apiKey?: string | undefined;
19743
19812
  tier?: "basic" | "regular" | "premium" | undefined;
19813
+ integrationType?: "meta" | "360dialog" | undefined;
19744
19814
  } | undefined;
19745
19815
  vonageCredentials?: {
19746
19816
  apiKey: string;
@@ -19778,15 +19848,16 @@ export declare const messengerContract: {
19778
19848
  additionalCredentials?: any;
19779
19849
  senderId?: string | undefined;
19780
19850
  whatsapp?: {
19781
- email: string;
19782
- wabaExternalId: string;
19783
- phoneNumberId: string;
19784
- wabaBusinessId?: string | undefined;
19785
- clientId?: string | undefined;
19786
- channelId?: string | undefined;
19851
+ wabaBusinessId?: string | null | undefined;
19852
+ wabaExternalId?: string | null | undefined;
19853
+ phoneNumberId?: string | null | undefined;
19854
+ email?: string | null | undefined;
19855
+ clientId?: string | null | undefined;
19856
+ channelId?: string | null | undefined;
19787
19857
  status?: "active" | "pending" | undefined;
19788
19858
  apiKey?: string | undefined;
19789
19859
  tier?: "basic" | "regular" | "premium" | undefined;
19860
+ integrationType?: "meta" | "360dialog" | undefined;
19790
19861
  } | undefined;
19791
19862
  vonageCredentials?: {
19792
19863
  apiKey: string;
@@ -19860,35 +19931,38 @@ export declare const messengerContract: {
19860
19931
  additionalCredentials: z.ZodOptional<z.ZodAny>;
19861
19932
  senderId: z.ZodOptional<z.ZodString>;
19862
19933
  whatsapp: z.ZodOptional<z.ZodObject<{
19863
- wabaBusinessId: z.ZodOptional<z.ZodString>;
19864
- wabaExternalId: z.ZodString;
19865
- phoneNumberId: z.ZodString;
19866
- email: z.ZodString;
19867
- clientId: z.ZodOptional<z.ZodString>;
19868
- channelId: z.ZodOptional<z.ZodString>;
19934
+ wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
19935
+ wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
19936
+ phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
19937
+ email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
19938
+ clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
19939
+ channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
19869
19940
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
19870
19941
  apiKey: z.ZodOptional<z.ZodString>;
19871
19942
  tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
19943
+ integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
19872
19944
  }, "strip", z.ZodTypeAny, {
19873
- email: string;
19874
- wabaExternalId: string;
19875
- phoneNumberId: string;
19876
- wabaBusinessId?: string | undefined;
19877
- clientId?: string | undefined;
19878
- channelId?: string | undefined;
19945
+ wabaBusinessId?: string | null | undefined;
19946
+ wabaExternalId?: string | null | undefined;
19947
+ phoneNumberId?: string | null | undefined;
19948
+ email?: string | null | undefined;
19949
+ clientId?: string | null | undefined;
19950
+ channelId?: string | null | undefined;
19879
19951
  status?: "active" | "pending" | undefined;
19880
19952
  apiKey?: string | undefined;
19881
19953
  tier?: "basic" | "regular" | "premium" | undefined;
19954
+ integrationType?: "meta" | "360dialog" | undefined;
19882
19955
  }, {
19883
- email: string;
19884
- wabaExternalId: string;
19885
- phoneNumberId: string;
19886
- wabaBusinessId?: string | undefined;
19887
- clientId?: string | undefined;
19888
- channelId?: string | undefined;
19956
+ wabaBusinessId?: string | null | undefined;
19957
+ wabaExternalId?: string | null | undefined;
19958
+ phoneNumberId?: string | null | undefined;
19959
+ email?: string | null | undefined;
19960
+ clientId?: string | null | undefined;
19961
+ channelId?: string | null | undefined;
19889
19962
  status?: "active" | "pending" | undefined;
19890
19963
  apiKey?: string | undefined;
19891
19964
  tier?: "basic" | "regular" | "premium" | undefined;
19965
+ integrationType?: "meta" | "360dialog" | undefined;
19892
19966
  }>>;
19893
19967
  vonageCredentials: z.ZodOptional<z.ZodObject<{
19894
19968
  mobileNumber: z.ZodString;
@@ -19913,15 +19987,16 @@ export declare const messengerContract: {
19913
19987
  additionalCredentials?: any;
19914
19988
  senderId?: string | undefined;
19915
19989
  whatsapp?: {
19916
- email: string;
19917
- wabaExternalId: string;
19918
- phoneNumberId: string;
19919
- wabaBusinessId?: string | undefined;
19920
- clientId?: string | undefined;
19921
- channelId?: string | undefined;
19990
+ wabaBusinessId?: string | null | undefined;
19991
+ wabaExternalId?: string | null | undefined;
19992
+ phoneNumberId?: string | null | undefined;
19993
+ email?: string | null | undefined;
19994
+ clientId?: string | null | undefined;
19995
+ channelId?: string | null | undefined;
19922
19996
  status?: "active" | "pending" | undefined;
19923
19997
  apiKey?: string | undefined;
19924
19998
  tier?: "basic" | "regular" | "premium" | undefined;
19999
+ integrationType?: "meta" | "360dialog" | undefined;
19925
20000
  } | undefined;
19926
20001
  vonageCredentials?: {
19927
20002
  apiKey: string;
@@ -19938,15 +20013,16 @@ export declare const messengerContract: {
19938
20013
  additionalCredentials?: any;
19939
20014
  senderId?: string | undefined;
19940
20015
  whatsapp?: {
19941
- email: string;
19942
- wabaExternalId: string;
19943
- phoneNumberId: string;
19944
- wabaBusinessId?: string | undefined;
19945
- clientId?: string | undefined;
19946
- channelId?: string | undefined;
20016
+ wabaBusinessId?: string | null | undefined;
20017
+ wabaExternalId?: string | null | undefined;
20018
+ phoneNumberId?: string | null | undefined;
20019
+ email?: string | null | undefined;
20020
+ clientId?: string | null | undefined;
20021
+ channelId?: string | null | undefined;
19947
20022
  status?: "active" | "pending" | undefined;
19948
20023
  apiKey?: string | undefined;
19949
20024
  tier?: "basic" | "regular" | "premium" | undefined;
20025
+ integrationType?: "meta" | "360dialog" | undefined;
19950
20026
  } | undefined;
19951
20027
  vonageCredentials?: {
19952
20028
  apiKey: string;
@@ -19993,15 +20069,16 @@ export declare const messengerContract: {
19993
20069
  additionalCredentials?: any;
19994
20070
  senderId?: string | undefined;
19995
20071
  whatsapp?: {
19996
- email: string;
19997
- wabaExternalId: string;
19998
- phoneNumberId: string;
19999
- wabaBusinessId?: string | undefined;
20000
- clientId?: string | undefined;
20001
- channelId?: string | undefined;
20072
+ wabaBusinessId?: string | null | undefined;
20073
+ wabaExternalId?: string | null | undefined;
20074
+ phoneNumberId?: string | null | undefined;
20075
+ email?: string | null | undefined;
20076
+ clientId?: string | null | undefined;
20077
+ channelId?: string | null | undefined;
20002
20078
  status?: "active" | "pending" | undefined;
20003
20079
  apiKey?: string | undefined;
20004
20080
  tier?: "basic" | "regular" | "premium" | undefined;
20081
+ integrationType?: "meta" | "360dialog" | undefined;
20005
20082
  } | undefined;
20006
20083
  vonageCredentials?: {
20007
20084
  apiKey: string;
@@ -20036,15 +20113,16 @@ export declare const messengerContract: {
20036
20113
  additionalCredentials?: any;
20037
20114
  senderId?: string | undefined;
20038
20115
  whatsapp?: {
20039
- email: string;
20040
- wabaExternalId: string;
20041
- phoneNumberId: string;
20042
- wabaBusinessId?: string | undefined;
20043
- clientId?: string | undefined;
20044
- channelId?: string | undefined;
20116
+ wabaBusinessId?: string | null | undefined;
20117
+ wabaExternalId?: string | null | undefined;
20118
+ phoneNumberId?: string | null | undefined;
20119
+ email?: string | null | undefined;
20120
+ clientId?: string | null | undefined;
20121
+ channelId?: string | null | undefined;
20045
20122
  status?: "active" | "pending" | undefined;
20046
20123
  apiKey?: string | undefined;
20047
20124
  tier?: "basic" | "regular" | "premium" | undefined;
20125
+ integrationType?: "meta" | "360dialog" | undefined;
20048
20126
  } | undefined;
20049
20127
  vonageCredentials?: {
20050
20128
  apiKey: string;
@@ -20081,15 +20159,16 @@ export declare const messengerContract: {
20081
20159
  additionalCredentials?: any;
20082
20160
  senderId?: string | undefined;
20083
20161
  whatsapp?: {
20084
- email: string;
20085
- wabaExternalId: string;
20086
- phoneNumberId: string;
20087
- wabaBusinessId?: string | undefined;
20088
- clientId?: string | undefined;
20089
- channelId?: string | undefined;
20162
+ wabaBusinessId?: string | null | undefined;
20163
+ wabaExternalId?: string | null | undefined;
20164
+ phoneNumberId?: string | null | undefined;
20165
+ email?: string | null | undefined;
20166
+ clientId?: string | null | undefined;
20167
+ channelId?: string | null | undefined;
20090
20168
  status?: "active" | "pending" | undefined;
20091
20169
  apiKey?: string | undefined;
20092
20170
  tier?: "basic" | "regular" | "premium" | undefined;
20171
+ integrationType?: "meta" | "360dialog" | undefined;
20093
20172
  } | undefined;
20094
20173
  vonageCredentials?: {
20095
20174
  apiKey: string;
@@ -20127,15 +20206,16 @@ export declare const messengerContract: {
20127
20206
  additionalCredentials?: any;
20128
20207
  senderId?: string | undefined;
20129
20208
  whatsapp?: {
20130
- email: string;
20131
- wabaExternalId: string;
20132
- phoneNumberId: string;
20133
- wabaBusinessId?: string | undefined;
20134
- clientId?: string | undefined;
20135
- channelId?: string | undefined;
20209
+ wabaBusinessId?: string | null | undefined;
20210
+ wabaExternalId?: string | null | undefined;
20211
+ phoneNumberId?: string | null | undefined;
20212
+ email?: string | null | undefined;
20213
+ clientId?: string | null | undefined;
20214
+ channelId?: string | null | undefined;
20136
20215
  status?: "active" | "pending" | undefined;
20137
20216
  apiKey?: string | undefined;
20138
20217
  tier?: "basic" | "regular" | "premium" | undefined;
20218
+ integrationType?: "meta" | "360dialog" | undefined;
20139
20219
  } | undefined;
20140
20220
  vonageCredentials?: {
20141
20221
  apiKey: string;
@@ -20209,35 +20289,38 @@ export declare const messengerContract: {
20209
20289
  additionalCredentials: z.ZodOptional<z.ZodAny>;
20210
20290
  senderId: z.ZodOptional<z.ZodString>;
20211
20291
  whatsapp: z.ZodOptional<z.ZodObject<{
20212
- wabaBusinessId: z.ZodOptional<z.ZodString>;
20213
- wabaExternalId: z.ZodString;
20214
- phoneNumberId: z.ZodString;
20215
- email: z.ZodString;
20216
- clientId: z.ZodOptional<z.ZodString>;
20217
- channelId: z.ZodOptional<z.ZodString>;
20292
+ wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
20293
+ wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
20294
+ phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
20295
+ email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
20296
+ clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
20297
+ channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
20218
20298
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
20219
20299
  apiKey: z.ZodOptional<z.ZodString>;
20220
20300
  tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
20301
+ integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
20221
20302
  }, "strip", z.ZodTypeAny, {
20222
- email: string;
20223
- wabaExternalId: string;
20224
- phoneNumberId: string;
20225
- wabaBusinessId?: string | undefined;
20226
- clientId?: string | undefined;
20227
- channelId?: string | undefined;
20303
+ wabaBusinessId?: string | null | undefined;
20304
+ wabaExternalId?: string | null | undefined;
20305
+ phoneNumberId?: string | null | undefined;
20306
+ email?: string | null | undefined;
20307
+ clientId?: string | null | undefined;
20308
+ channelId?: string | null | undefined;
20228
20309
  status?: "active" | "pending" | undefined;
20229
20310
  apiKey?: string | undefined;
20230
20311
  tier?: "basic" | "regular" | "premium" | undefined;
20312
+ integrationType?: "meta" | "360dialog" | undefined;
20231
20313
  }, {
20232
- email: string;
20233
- wabaExternalId: string;
20234
- phoneNumberId: string;
20235
- wabaBusinessId?: string | undefined;
20236
- clientId?: string | undefined;
20237
- channelId?: string | undefined;
20314
+ wabaBusinessId?: string | null | undefined;
20315
+ wabaExternalId?: string | null | undefined;
20316
+ phoneNumberId?: string | null | undefined;
20317
+ email?: string | null | undefined;
20318
+ clientId?: string | null | undefined;
20319
+ channelId?: string | null | undefined;
20238
20320
  status?: "active" | "pending" | undefined;
20239
20321
  apiKey?: string | undefined;
20240
20322
  tier?: "basic" | "regular" | "premium" | undefined;
20323
+ integrationType?: "meta" | "360dialog" | undefined;
20241
20324
  }>>;
20242
20325
  vonageCredentials: z.ZodOptional<z.ZodObject<{
20243
20326
  mobileNumber: z.ZodString;
@@ -20262,15 +20345,16 @@ export declare const messengerContract: {
20262
20345
  additionalCredentials?: any;
20263
20346
  senderId?: string | undefined;
20264
20347
  whatsapp?: {
20265
- email: string;
20266
- wabaExternalId: string;
20267
- phoneNumberId: string;
20268
- wabaBusinessId?: string | undefined;
20269
- clientId?: string | undefined;
20270
- channelId?: string | undefined;
20348
+ wabaBusinessId?: string | null | undefined;
20349
+ wabaExternalId?: string | null | undefined;
20350
+ phoneNumberId?: string | null | undefined;
20351
+ email?: string | null | undefined;
20352
+ clientId?: string | null | undefined;
20353
+ channelId?: string | null | undefined;
20271
20354
  status?: "active" | "pending" | undefined;
20272
20355
  apiKey?: string | undefined;
20273
20356
  tier?: "basic" | "regular" | "premium" | undefined;
20357
+ integrationType?: "meta" | "360dialog" | undefined;
20274
20358
  } | undefined;
20275
20359
  vonageCredentials?: {
20276
20360
  apiKey: string;
@@ -20287,15 +20371,16 @@ export declare const messengerContract: {
20287
20371
  additionalCredentials?: any;
20288
20372
  senderId?: string | undefined;
20289
20373
  whatsapp?: {
20290
- email: string;
20291
- wabaExternalId: string;
20292
- phoneNumberId: string;
20293
- wabaBusinessId?: string | undefined;
20294
- clientId?: string | undefined;
20295
- channelId?: string | undefined;
20374
+ wabaBusinessId?: string | null | undefined;
20375
+ wabaExternalId?: string | null | undefined;
20376
+ phoneNumberId?: string | null | undefined;
20377
+ email?: string | null | undefined;
20378
+ clientId?: string | null | undefined;
20379
+ channelId?: string | null | undefined;
20296
20380
  status?: "active" | "pending" | undefined;
20297
20381
  apiKey?: string | undefined;
20298
20382
  tier?: "basic" | "regular" | "premium" | undefined;
20383
+ integrationType?: "meta" | "360dialog" | undefined;
20299
20384
  } | undefined;
20300
20385
  vonageCredentials?: {
20301
20386
  apiKey: string;
@@ -20342,15 +20427,16 @@ export declare const messengerContract: {
20342
20427
  additionalCredentials?: any;
20343
20428
  senderId?: string | undefined;
20344
20429
  whatsapp?: {
20345
- email: string;
20346
- wabaExternalId: string;
20347
- phoneNumberId: string;
20348
- wabaBusinessId?: string | undefined;
20349
- clientId?: string | undefined;
20350
- channelId?: string | undefined;
20430
+ wabaBusinessId?: string | null | undefined;
20431
+ wabaExternalId?: string | null | undefined;
20432
+ phoneNumberId?: string | null | undefined;
20433
+ email?: string | null | undefined;
20434
+ clientId?: string | null | undefined;
20435
+ channelId?: string | null | undefined;
20351
20436
  status?: "active" | "pending" | undefined;
20352
20437
  apiKey?: string | undefined;
20353
20438
  tier?: "basic" | "regular" | "premium" | undefined;
20439
+ integrationType?: "meta" | "360dialog" | undefined;
20354
20440
  } | undefined;
20355
20441
  vonageCredentials?: {
20356
20442
  apiKey: string;
@@ -20385,15 +20471,16 @@ export declare const messengerContract: {
20385
20471
  additionalCredentials?: any;
20386
20472
  senderId?: string | undefined;
20387
20473
  whatsapp?: {
20388
- email: string;
20389
- wabaExternalId: string;
20390
- phoneNumberId: string;
20391
- wabaBusinessId?: string | undefined;
20392
- clientId?: string | undefined;
20393
- channelId?: string | undefined;
20474
+ wabaBusinessId?: string | null | undefined;
20475
+ wabaExternalId?: string | null | undefined;
20476
+ phoneNumberId?: string | null | undefined;
20477
+ email?: string | null | undefined;
20478
+ clientId?: string | null | undefined;
20479
+ channelId?: string | null | undefined;
20394
20480
  status?: "active" | "pending" | undefined;
20395
20481
  apiKey?: string | undefined;
20396
20482
  tier?: "basic" | "regular" | "premium" | undefined;
20483
+ integrationType?: "meta" | "360dialog" | undefined;
20397
20484
  } | undefined;
20398
20485
  vonageCredentials?: {
20399
20486
  apiKey: string;
@@ -20430,15 +20517,16 @@ export declare const messengerContract: {
20430
20517
  additionalCredentials?: any;
20431
20518
  senderId?: string | undefined;
20432
20519
  whatsapp?: {
20433
- email: string;
20434
- wabaExternalId: string;
20435
- phoneNumberId: string;
20436
- wabaBusinessId?: string | undefined;
20437
- clientId?: string | undefined;
20438
- channelId?: string | undefined;
20520
+ wabaBusinessId?: string | null | undefined;
20521
+ wabaExternalId?: string | null | undefined;
20522
+ phoneNumberId?: string | null | undefined;
20523
+ email?: string | null | undefined;
20524
+ clientId?: string | null | undefined;
20525
+ channelId?: string | null | undefined;
20439
20526
  status?: "active" | "pending" | undefined;
20440
20527
  apiKey?: string | undefined;
20441
20528
  tier?: "basic" | "regular" | "premium" | undefined;
20529
+ integrationType?: "meta" | "360dialog" | undefined;
20442
20530
  } | undefined;
20443
20531
  vonageCredentials?: {
20444
20532
  apiKey: string;
@@ -20476,15 +20564,16 @@ export declare const messengerContract: {
20476
20564
  additionalCredentials?: any;
20477
20565
  senderId?: string | undefined;
20478
20566
  whatsapp?: {
20479
- email: string;
20480
- wabaExternalId: string;
20481
- phoneNumberId: string;
20482
- wabaBusinessId?: string | undefined;
20483
- clientId?: string | undefined;
20484
- channelId?: string | undefined;
20567
+ wabaBusinessId?: string | null | undefined;
20568
+ wabaExternalId?: string | null | undefined;
20569
+ phoneNumberId?: string | null | undefined;
20570
+ email?: string | null | undefined;
20571
+ clientId?: string | null | undefined;
20572
+ channelId?: string | null | undefined;
20485
20573
  status?: "active" | "pending" | undefined;
20486
20574
  apiKey?: string | undefined;
20487
20575
  tier?: "basic" | "regular" | "premium" | undefined;
20576
+ integrationType?: "meta" | "360dialog" | undefined;
20488
20577
  } | undefined;
20489
20578
  vonageCredentials?: {
20490
20579
  apiKey: string;
@@ -20545,35 +20634,38 @@ export declare const messengerContract: {
20545
20634
  additionalCredentials: z.ZodOptional<z.ZodAny>;
20546
20635
  senderId: z.ZodOptional<z.ZodString>;
20547
20636
  whatsapp: z.ZodOptional<z.ZodObject<{
20548
- wabaBusinessId: z.ZodOptional<z.ZodString>;
20549
- wabaExternalId: z.ZodString;
20550
- phoneNumberId: z.ZodString;
20551
- email: z.ZodString;
20552
- clientId: z.ZodOptional<z.ZodString>;
20553
- channelId: z.ZodOptional<z.ZodString>;
20637
+ wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
20638
+ wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
20639
+ phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
20640
+ email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
20641
+ clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
20642
+ channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
20554
20643
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
20555
20644
  apiKey: z.ZodOptional<z.ZodString>;
20556
20645
  tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
20646
+ integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
20557
20647
  }, "strip", z.ZodTypeAny, {
20558
- email: string;
20559
- wabaExternalId: string;
20560
- phoneNumberId: string;
20561
- wabaBusinessId?: string | undefined;
20562
- clientId?: string | undefined;
20563
- channelId?: string | undefined;
20648
+ wabaBusinessId?: string | null | undefined;
20649
+ wabaExternalId?: string | null | undefined;
20650
+ phoneNumberId?: string | null | undefined;
20651
+ email?: string | null | undefined;
20652
+ clientId?: string | null | undefined;
20653
+ channelId?: string | null | undefined;
20564
20654
  status?: "active" | "pending" | undefined;
20565
20655
  apiKey?: string | undefined;
20566
20656
  tier?: "basic" | "regular" | "premium" | undefined;
20657
+ integrationType?: "meta" | "360dialog" | undefined;
20567
20658
  }, {
20568
- email: string;
20569
- wabaExternalId: string;
20570
- phoneNumberId: string;
20571
- wabaBusinessId?: string | undefined;
20572
- clientId?: string | undefined;
20573
- channelId?: string | undefined;
20659
+ wabaBusinessId?: string | null | undefined;
20660
+ wabaExternalId?: string | null | undefined;
20661
+ phoneNumberId?: string | null | undefined;
20662
+ email?: string | null | undefined;
20663
+ clientId?: string | null | undefined;
20664
+ channelId?: string | null | undefined;
20574
20665
  status?: "active" | "pending" | undefined;
20575
20666
  apiKey?: string | undefined;
20576
20667
  tier?: "basic" | "regular" | "premium" | undefined;
20668
+ integrationType?: "meta" | "360dialog" | undefined;
20577
20669
  }>>;
20578
20670
  vonageCredentials: z.ZodOptional<z.ZodObject<{
20579
20671
  mobileNumber: z.ZodString;
@@ -20598,15 +20690,16 @@ export declare const messengerContract: {
20598
20690
  additionalCredentials?: any;
20599
20691
  senderId?: string | undefined;
20600
20692
  whatsapp?: {
20601
- email: string;
20602
- wabaExternalId: string;
20603
- phoneNumberId: string;
20604
- wabaBusinessId?: string | undefined;
20605
- clientId?: string | undefined;
20606
- channelId?: string | undefined;
20693
+ wabaBusinessId?: string | null | undefined;
20694
+ wabaExternalId?: string | null | undefined;
20695
+ phoneNumberId?: string | null | undefined;
20696
+ email?: string | null | undefined;
20697
+ clientId?: string | null | undefined;
20698
+ channelId?: string | null | undefined;
20607
20699
  status?: "active" | "pending" | undefined;
20608
20700
  apiKey?: string | undefined;
20609
20701
  tier?: "basic" | "regular" | "premium" | undefined;
20702
+ integrationType?: "meta" | "360dialog" | undefined;
20610
20703
  } | undefined;
20611
20704
  vonageCredentials?: {
20612
20705
  apiKey: string;
@@ -20623,15 +20716,16 @@ export declare const messengerContract: {
20623
20716
  additionalCredentials?: any;
20624
20717
  senderId?: string | undefined;
20625
20718
  whatsapp?: {
20626
- email: string;
20627
- wabaExternalId: string;
20628
- phoneNumberId: string;
20629
- wabaBusinessId?: string | undefined;
20630
- clientId?: string | undefined;
20631
- channelId?: string | undefined;
20719
+ wabaBusinessId?: string | null | undefined;
20720
+ wabaExternalId?: string | null | undefined;
20721
+ phoneNumberId?: string | null | undefined;
20722
+ email?: string | null | undefined;
20723
+ clientId?: string | null | undefined;
20724
+ channelId?: string | null | undefined;
20632
20725
  status?: "active" | "pending" | undefined;
20633
20726
  apiKey?: string | undefined;
20634
20727
  tier?: "basic" | "regular" | "premium" | undefined;
20728
+ integrationType?: "meta" | "360dialog" | undefined;
20635
20729
  } | undefined;
20636
20730
  vonageCredentials?: {
20637
20731
  apiKey: string;
@@ -20683,15 +20777,16 @@ export declare const messengerContract: {
20683
20777
  additionalCredentials?: any;
20684
20778
  senderId?: string | undefined;
20685
20779
  whatsapp?: {
20686
- email: string;
20687
- wabaExternalId: string;
20688
- phoneNumberId: string;
20689
- wabaBusinessId?: string | undefined;
20690
- clientId?: string | undefined;
20691
- channelId?: string | undefined;
20780
+ wabaBusinessId?: string | null | undefined;
20781
+ wabaExternalId?: string | null | undefined;
20782
+ phoneNumberId?: string | null | undefined;
20783
+ email?: string | null | undefined;
20784
+ clientId?: string | null | undefined;
20785
+ channelId?: string | null | undefined;
20692
20786
  status?: "active" | "pending" | undefined;
20693
20787
  apiKey?: string | undefined;
20694
20788
  tier?: "basic" | "regular" | "premium" | undefined;
20789
+ integrationType?: "meta" | "360dialog" | undefined;
20695
20790
  } | undefined;
20696
20791
  vonageCredentials?: {
20697
20792
  apiKey: string;
@@ -20730,15 +20825,16 @@ export declare const messengerContract: {
20730
20825
  additionalCredentials?: any;
20731
20826
  senderId?: string | undefined;
20732
20827
  whatsapp?: {
20733
- email: string;
20734
- wabaExternalId: string;
20735
- phoneNumberId: string;
20736
- wabaBusinessId?: string | undefined;
20737
- clientId?: string | undefined;
20738
- channelId?: string | undefined;
20828
+ wabaBusinessId?: string | null | undefined;
20829
+ wabaExternalId?: string | null | undefined;
20830
+ phoneNumberId?: string | null | undefined;
20831
+ email?: string | null | undefined;
20832
+ clientId?: string | null | undefined;
20833
+ channelId?: string | null | undefined;
20739
20834
  status?: "active" | "pending" | undefined;
20740
20835
  apiKey?: string | undefined;
20741
20836
  tier?: "basic" | "regular" | "premium" | undefined;
20837
+ integrationType?: "meta" | "360dialog" | undefined;
20742
20838
  } | undefined;
20743
20839
  vonageCredentials?: {
20744
20840
  apiKey: string;
@@ -20782,35 +20878,38 @@ export declare const messengerContract: {
20782
20878
  additionalCredentials: z.ZodOptional<z.ZodAny>;
20783
20879
  senderId: z.ZodOptional<z.ZodString>;
20784
20880
  whatsapp: z.ZodOptional<z.ZodObject<{
20785
- wabaBusinessId: z.ZodOptional<z.ZodString>;
20786
- wabaExternalId: z.ZodString;
20787
- phoneNumberId: z.ZodString;
20788
- email: z.ZodString;
20789
- clientId: z.ZodOptional<z.ZodString>;
20790
- channelId: z.ZodOptional<z.ZodString>;
20881
+ wabaBusinessId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
20882
+ wabaExternalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
20883
+ phoneNumberId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
20884
+ email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
20885
+ clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
20886
+ channelId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
20791
20887
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
20792
20888
  apiKey: z.ZodOptional<z.ZodString>;
20793
20889
  tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
20890
+ integrationType: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"meta">, z.ZodLiteral<"360dialog">]>>;
20794
20891
  }, "strip", z.ZodTypeAny, {
20795
- email: string;
20796
- wabaExternalId: string;
20797
- phoneNumberId: string;
20798
- wabaBusinessId?: string | undefined;
20799
- clientId?: string | undefined;
20800
- channelId?: string | undefined;
20892
+ wabaBusinessId?: string | null | undefined;
20893
+ wabaExternalId?: string | null | undefined;
20894
+ phoneNumberId?: string | null | undefined;
20895
+ email?: string | null | undefined;
20896
+ clientId?: string | null | undefined;
20897
+ channelId?: string | null | undefined;
20801
20898
  status?: "active" | "pending" | undefined;
20802
20899
  apiKey?: string | undefined;
20803
20900
  tier?: "basic" | "regular" | "premium" | undefined;
20901
+ integrationType?: "meta" | "360dialog" | undefined;
20804
20902
  }, {
20805
- email: string;
20806
- wabaExternalId: string;
20807
- phoneNumberId: string;
20808
- wabaBusinessId?: string | undefined;
20809
- clientId?: string | undefined;
20810
- channelId?: string | undefined;
20903
+ wabaBusinessId?: string | null | undefined;
20904
+ wabaExternalId?: string | null | undefined;
20905
+ phoneNumberId?: string | null | undefined;
20906
+ email?: string | null | undefined;
20907
+ clientId?: string | null | undefined;
20908
+ channelId?: string | null | undefined;
20811
20909
  status?: "active" | "pending" | undefined;
20812
20910
  apiKey?: string | undefined;
20813
20911
  tier?: "basic" | "regular" | "premium" | undefined;
20912
+ integrationType?: "meta" | "360dialog" | undefined;
20814
20913
  }>>;
20815
20914
  vonageCredentials: z.ZodOptional<z.ZodObject<{
20816
20915
  mobileNumber: z.ZodString;
@@ -20835,15 +20934,16 @@ export declare const messengerContract: {
20835
20934
  additionalCredentials?: any;
20836
20935
  senderId?: string | undefined;
20837
20936
  whatsapp?: {
20838
- email: string;
20839
- wabaExternalId: string;
20840
- phoneNumberId: string;
20841
- wabaBusinessId?: string | undefined;
20842
- clientId?: string | undefined;
20843
- 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;
20844
20943
  status?: "active" | "pending" | undefined;
20845
20944
  apiKey?: string | undefined;
20846
20945
  tier?: "basic" | "regular" | "premium" | undefined;
20946
+ integrationType?: "meta" | "360dialog" | undefined;
20847
20947
  } | undefined;
20848
20948
  vonageCredentials?: {
20849
20949
  apiKey: string;
@@ -20860,15 +20960,16 @@ export declare const messengerContract: {
20860
20960
  additionalCredentials?: any;
20861
20961
  senderId?: string | undefined;
20862
20962
  whatsapp?: {
20863
- email: string;
20864
- wabaExternalId: string;
20865
- phoneNumberId: string;
20866
- wabaBusinessId?: string | undefined;
20867
- clientId?: string | undefined;
20868
- channelId?: string | undefined;
20963
+ wabaBusinessId?: string | null | undefined;
20964
+ wabaExternalId?: string | null | undefined;
20965
+ phoneNumberId?: string | null | undefined;
20966
+ email?: string | null | undefined;
20967
+ clientId?: string | null | undefined;
20968
+ channelId?: string | null | undefined;
20869
20969
  status?: "active" | "pending" | undefined;
20870
20970
  apiKey?: string | undefined;
20871
20971
  tier?: "basic" | "regular" | "premium" | undefined;
20972
+ integrationType?: "meta" | "360dialog" | undefined;
20872
20973
  } | undefined;
20873
20974
  vonageCredentials?: {
20874
20975
  apiKey: string;
@@ -20915,15 +21016,16 @@ export declare const messengerContract: {
20915
21016
  additionalCredentials?: any;
20916
21017
  senderId?: string | undefined;
20917
21018
  whatsapp?: {
20918
- email: string;
20919
- wabaExternalId: string;
20920
- phoneNumberId: string;
20921
- wabaBusinessId?: string | undefined;
20922
- clientId?: string | undefined;
20923
- channelId?: string | undefined;
21019
+ wabaBusinessId?: string | null | undefined;
21020
+ wabaExternalId?: string | null | undefined;
21021
+ phoneNumberId?: string | null | undefined;
21022
+ email?: string | null | undefined;
21023
+ clientId?: string | null | undefined;
21024
+ channelId?: string | null | undefined;
20924
21025
  status?: "active" | "pending" | undefined;
20925
21026
  apiKey?: string | undefined;
20926
21027
  tier?: "basic" | "regular" | "premium" | undefined;
21028
+ integrationType?: "meta" | "360dialog" | undefined;
20927
21029
  } | undefined;
20928
21030
  vonageCredentials?: {
20929
21031
  apiKey: string;
@@ -20958,15 +21060,16 @@ export declare const messengerContract: {
20958
21060
  additionalCredentials?: any;
20959
21061
  senderId?: string | undefined;
20960
21062
  whatsapp?: {
20961
- email: string;
20962
- wabaExternalId: string;
20963
- phoneNumberId: string;
20964
- wabaBusinessId?: string | undefined;
20965
- clientId?: string | undefined;
20966
- channelId?: string | undefined;
21063
+ wabaBusinessId?: string | null | undefined;
21064
+ wabaExternalId?: string | null | undefined;
21065
+ phoneNumberId?: string | null | undefined;
21066
+ email?: string | null | undefined;
21067
+ clientId?: string | null | undefined;
21068
+ channelId?: string | null | undefined;
20967
21069
  status?: "active" | "pending" | undefined;
20968
21070
  apiKey?: string | undefined;
20969
21071
  tier?: "basic" | "regular" | "premium" | undefined;
21072
+ integrationType?: "meta" | "360dialog" | undefined;
20970
21073
  } | undefined;
20971
21074
  vonageCredentials?: {
20972
21075
  apiKey: string;
@@ -21003,15 +21106,16 @@ export declare const messengerContract: {
21003
21106
  additionalCredentials?: any;
21004
21107
  senderId?: string | undefined;
21005
21108
  whatsapp?: {
21006
- email: string;
21007
- wabaExternalId: string;
21008
- phoneNumberId: string;
21009
- wabaBusinessId?: string | undefined;
21010
- clientId?: string | undefined;
21011
- channelId?: string | undefined;
21109
+ wabaBusinessId?: string | null | undefined;
21110
+ wabaExternalId?: string | null | undefined;
21111
+ phoneNumberId?: string | null | undefined;
21112
+ email?: string | null | undefined;
21113
+ clientId?: string | null | undefined;
21114
+ channelId?: string | null | undefined;
21012
21115
  status?: "active" | "pending" | undefined;
21013
21116
  apiKey?: string | undefined;
21014
21117
  tier?: "basic" | "regular" | "premium" | undefined;
21118
+ integrationType?: "meta" | "360dialog" | undefined;
21015
21119
  } | undefined;
21016
21120
  vonageCredentials?: {
21017
21121
  apiKey: string;
@@ -21049,15 +21153,16 @@ export declare const messengerContract: {
21049
21153
  additionalCredentials?: any;
21050
21154
  senderId?: string | undefined;
21051
21155
  whatsapp?: {
21052
- email: string;
21053
- wabaExternalId: string;
21054
- phoneNumberId: string;
21055
- wabaBusinessId?: string | undefined;
21056
- clientId?: string | undefined;
21057
- channelId?: string | undefined;
21156
+ wabaBusinessId?: string | null | undefined;
21157
+ wabaExternalId?: string | null | undefined;
21158
+ phoneNumberId?: string | null | undefined;
21159
+ email?: string | null | undefined;
21160
+ clientId?: string | null | undefined;
21161
+ channelId?: string | null | undefined;
21058
21162
  status?: "active" | "pending" | undefined;
21059
21163
  apiKey?: string | undefined;
21060
21164
  tier?: "basic" | "regular" | "premium" | undefined;
21165
+ integrationType?: "meta" | "360dialog" | undefined;
21061
21166
  } | undefined;
21062
21167
  vonageCredentials?: {
21063
21168
  apiKey: string;