@kl1/contracts 1.1.55 → 1.1.56

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 (63) hide show
  1. package/dist/api-contracts/src/automation-queue/index.d.ts +112 -0
  2. package/dist/api-contracts/src/automation-queue/index.d.ts.map +1 -1
  3. package/dist/api-contracts/src/channel/index.d.ts +179 -0
  4. package/dist/api-contracts/src/channel/index.d.ts.map +1 -1
  5. package/dist/api-contracts/src/channel/schema.d.ts +12 -0
  6. package/dist/api-contracts/src/channel/schema.d.ts.map +1 -1
  7. package/dist/api-contracts/src/channel/validation.d.ts +14 -0
  8. package/dist/api-contracts/src/channel/validation.d.ts.map +1 -1
  9. package/dist/api-contracts/src/chat/index.d.ts +377 -0
  10. package/dist/api-contracts/src/chat/index.d.ts.map +1 -1
  11. package/dist/api-contracts/src/chat/schema.d.ts +66 -0
  12. package/dist/api-contracts/src/chat/schema.d.ts.map +1 -1
  13. package/dist/api-contracts/src/chat/validation.d.ts +107 -10
  14. package/dist/api-contracts/src/chat/validation.d.ts.map +1 -1
  15. package/dist/api-contracts/src/contract.d.ts +1114 -40
  16. package/dist/api-contracts/src/contract.d.ts.map +1 -1
  17. package/dist/api-contracts/src/cx-intelligence/index.d.ts +115 -0
  18. package/dist/api-contracts/src/cx-intelligence/index.d.ts.map +1 -0
  19. package/dist/api-contracts/src/cx-log/index.d.ts +13 -0
  20. package/dist/api-contracts/src/cx-log/index.d.ts.map +1 -1
  21. package/dist/api-contracts/src/cx-log/schema.d.ts +11 -0
  22. package/dist/api-contracts/src/cx-log/schema.d.ts.map +1 -1
  23. package/dist/api-contracts/src/facebook-feed/index.d.ts +139 -5
  24. package/dist/api-contracts/src/facebook-feed/index.d.ts.map +1 -1
  25. package/dist/api-contracts/src/facebook-feed/schema.d.ts +9 -0
  26. package/dist/api-contracts/src/facebook-feed/schema.d.ts.map +1 -1
  27. package/dist/api-contracts/src/facebook-feed/validation.d.ts +7 -0
  28. package/dist/api-contracts/src/facebook-feed/validation.d.ts.map +1 -1
  29. package/dist/api-contracts/src/hold-label/index.d.ts +417 -18
  30. package/dist/api-contracts/src/hold-label/index.d.ts.map +1 -1
  31. package/dist/api-contracts/src/hold-label/schema.d.ts +144 -2
  32. package/dist/api-contracts/src/hold-label/schema.d.ts.map +1 -1
  33. package/dist/api-contracts/src/hold-label/validation.d.ts +10 -0
  34. package/dist/api-contracts/src/hold-label/validation.d.ts.map +1 -1
  35. package/dist/api-contracts/src/instagram/index.d.ts +110 -5
  36. package/dist/api-contracts/src/instagram/index.d.ts.map +1 -1
  37. package/dist/api-contracts/src/line/index.d.ts +98 -5
  38. package/dist/api-contracts/src/line/index.d.ts.map +1 -1
  39. package/dist/api-contracts/src/line/validation.d.ts +11 -0
  40. package/dist/api-contracts/src/line/validation.d.ts.map +1 -1
  41. package/dist/api-contracts/src/messenger/index.d.ts +110 -5
  42. package/dist/api-contracts/src/messenger/index.d.ts.map +1 -1
  43. package/dist/api-contracts/src/messenger/validation.d.ts +7 -0
  44. package/dist/api-contracts/src/messenger/validation.d.ts.map +1 -1
  45. package/dist/api-contracts/src/sms/index.d.ts +25 -5
  46. package/dist/api-contracts/src/sms/index.d.ts.map +1 -1
  47. package/dist/api-contracts/src/subscription/index.d.ts +184 -184
  48. package/dist/api-contracts/src/subscription/schema.d.ts +216 -216
  49. package/dist/api-contracts/src/telegram/index.d.ts +80 -5
  50. package/dist/api-contracts/src/telegram/index.d.ts.map +1 -1
  51. package/dist/api-contracts/src/viber/index.d.ts +80 -5
  52. package/dist/api-contracts/src/viber/index.d.ts.map +1 -1
  53. package/dist/api-contracts/src/webchat/index.d.ts +1099 -5
  54. package/dist/api-contracts/src/webchat/index.d.ts.map +1 -1
  55. package/dist/api-contracts/src/whatsapp/index.d.ts +94 -5
  56. package/dist/api-contracts/src/whatsapp/index.d.ts.map +1 -1
  57. package/dist/api-contracts/src/workflow-rule/index.d.ts +22 -0
  58. package/dist/api-contracts/src/workflow-rule/index.d.ts.map +1 -1
  59. package/dist/index.js +61 -3
  60. package/dist/index.js.map +1 -1
  61. package/dist/index.mjs +61 -3
  62. package/dist/index.mjs.map +1 -1
  63. package/package.json +1 -1
@@ -153,6 +153,7 @@ export declare const messengerContract: {
153
153
  channelId: z.ZodOptional<z.ZodString>;
154
154
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
155
155
  apiKey: z.ZodOptional<z.ZodString>;
156
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
156
157
  }, "strip", z.ZodTypeAny, {
157
158
  email: string;
158
159
  wabaExternalId: string;
@@ -162,6 +163,7 @@ export declare const messengerContract: {
162
163
  channelId?: string | undefined;
163
164
  status?: "active" | "pending" | undefined;
164
165
  apiKey?: string | undefined;
166
+ tier?: "basic" | "regular" | "premium" | undefined;
165
167
  }, {
166
168
  email: string;
167
169
  wabaExternalId: string;
@@ -171,6 +173,7 @@ export declare const messengerContract: {
171
173
  channelId?: string | undefined;
172
174
  status?: "active" | "pending" | undefined;
173
175
  apiKey?: string | undefined;
176
+ tier?: "basic" | "regular" | "premium" | undefined;
174
177
  }>>;
175
178
  vonageCredentials: z.ZodOptional<z.ZodObject<{
176
179
  mobileNumber: z.ZodString;
@@ -203,6 +206,7 @@ export declare const messengerContract: {
203
206
  channelId?: string | undefined;
204
207
  status?: "active" | "pending" | undefined;
205
208
  apiKey?: string | undefined;
209
+ tier?: "basic" | "regular" | "premium" | undefined;
206
210
  } | undefined;
207
211
  vonageCredentials?: {
208
212
  apiKey: string;
@@ -227,6 +231,7 @@ export declare const messengerContract: {
227
231
  channelId?: string | undefined;
228
232
  status?: "active" | "pending" | undefined;
229
233
  apiKey?: string | undefined;
234
+ tier?: "basic" | "regular" | "premium" | undefined;
230
235
  } | undefined;
231
236
  vonageCredentials?: {
232
237
  apiKey: string;
@@ -281,6 +286,7 @@ export declare const messengerContract: {
281
286
  channelId?: string | undefined;
282
287
  status?: "active" | "pending" | undefined;
283
288
  apiKey?: string | undefined;
289
+ tier?: "basic" | "regular" | "premium" | undefined;
284
290
  } | undefined;
285
291
  vonageCredentials?: {
286
292
  apiKey: string;
@@ -323,6 +329,7 @@ export declare const messengerContract: {
323
329
  channelId?: string | undefined;
324
330
  status?: "active" | "pending" | undefined;
325
331
  apiKey?: string | undefined;
332
+ tier?: "basic" | "regular" | "premium" | undefined;
326
333
  } | undefined;
327
334
  vonageCredentials?: {
328
335
  apiKey: string;
@@ -347,7 +354,7 @@ export declare const messengerContract: {
347
354
  } | undefined;
348
355
  }>;
349
356
  messengerTags: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"post_purchase_update">, z.ZodLiteral<"account_update">, z.ZodLiteral<"confirmed_event_update">]>>;
350
- telegramBusinessConnectionId: z.ZodNullable<z.ZodString>;
357
+ telegramBusinessConnectionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
351
358
  }, "strip", z.ZodTypeAny, {
352
359
  id: string;
353
360
  channel: {
@@ -370,6 +377,7 @@ export declare const messengerContract: {
370
377
  channelId?: string | undefined;
371
378
  status?: "active" | "pending" | undefined;
372
379
  apiKey?: string | undefined;
380
+ tier?: "basic" | "regular" | "premium" | undefined;
373
381
  } | undefined;
374
382
  vonageCredentials?: {
375
383
  apiKey: string;
@@ -429,11 +437,11 @@ export declare const messengerContract: {
429
437
  id: string;
430
438
  email: string;
431
439
  } | null;
432
- telegramBusinessConnectionId: string | null;
433
440
  lastMessage?: string | undefined;
434
441
  handleTime?: number | undefined;
435
442
  metadata?: any;
436
443
  messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
444
+ telegramBusinessConnectionId?: string | null | undefined;
437
445
  }, {
438
446
  id: string;
439
447
  channel: {
@@ -456,6 +464,7 @@ export declare const messengerContract: {
456
464
  channelId?: string | undefined;
457
465
  status?: "active" | "pending" | undefined;
458
466
  apiKey?: string | undefined;
467
+ tier?: "basic" | "regular" | "premium" | undefined;
459
468
  } | undefined;
460
469
  vonageCredentials?: {
461
470
  apiKey: string;
@@ -515,11 +524,11 @@ export declare const messengerContract: {
515
524
  id: string;
516
525
  email: string;
517
526
  } | null;
518
- telegramBusinessConnectionId: string | null;
519
527
  lastMessage?: string | undefined;
520
528
  handleTime?: number | undefined;
521
529
  metadata?: any;
522
530
  messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
531
+ telegramBusinessConnectionId?: string | null | undefined;
523
532
  }>;
524
533
  message: z.ZodObject<{
525
534
  id: z.ZodOptional<z.ZodString>;
@@ -710,6 +719,7 @@ export declare const messengerContract: {
710
719
  channelId?: string | undefined;
711
720
  status?: "active" | "pending" | undefined;
712
721
  apiKey?: string | undefined;
722
+ tier?: "basic" | "regular" | "premium" | undefined;
713
723
  } | undefined;
714
724
  vonageCredentials?: {
715
725
  apiKey: string;
@@ -769,11 +779,11 @@ export declare const messengerContract: {
769
779
  id: string;
770
780
  email: string;
771
781
  } | null;
772
- telegramBusinessConnectionId: string | null;
773
782
  lastMessage?: string | undefined;
774
783
  handleTime?: number | undefined;
775
784
  metadata?: any;
776
785
  messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
786
+ telegramBusinessConnectionId?: string | null | undefined;
777
787
  };
778
788
  isBot: boolean | null;
779
789
  }, {
@@ -835,6 +845,7 @@ export declare const messengerContract: {
835
845
  channelId?: string | undefined;
836
846
  status?: "active" | "pending" | undefined;
837
847
  apiKey?: string | undefined;
848
+ tier?: "basic" | "regular" | "premium" | undefined;
838
849
  } | undefined;
839
850
  vonageCredentials?: {
840
851
  apiKey: string;
@@ -894,11 +905,11 @@ export declare const messengerContract: {
894
905
  id: string;
895
906
  email: string;
896
907
  } | null;
897
- telegramBusinessConnectionId: string | null;
898
908
  lastMessage?: string | undefined;
899
909
  handleTime?: number | undefined;
900
910
  metadata?: any;
901
911
  messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
912
+ telegramBusinessConnectionId?: string | null | undefined;
902
913
  };
903
914
  isBot?: boolean | null | undefined;
904
915
  }>;
@@ -2855,6 +2866,7 @@ export declare const messengerContract: {
2855
2866
  channelId: z.ZodOptional<z.ZodString>;
2856
2867
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
2857
2868
  apiKey: z.ZodOptional<z.ZodString>;
2869
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
2858
2870
  }, "strip", z.ZodTypeAny, {
2859
2871
  email: string;
2860
2872
  wabaExternalId: string;
@@ -2864,6 +2876,7 @@ export declare const messengerContract: {
2864
2876
  channelId?: string | undefined;
2865
2877
  status?: "active" | "pending" | undefined;
2866
2878
  apiKey?: string | undefined;
2879
+ tier?: "basic" | "regular" | "premium" | undefined;
2867
2880
  }, {
2868
2881
  email: string;
2869
2882
  wabaExternalId: string;
@@ -2873,6 +2886,7 @@ export declare const messengerContract: {
2873
2886
  channelId?: string | undefined;
2874
2887
  status?: "active" | "pending" | undefined;
2875
2888
  apiKey?: string | undefined;
2889
+ tier?: "basic" | "regular" | "premium" | undefined;
2876
2890
  }>>;
2877
2891
  vonageCredentials: z.ZodOptional<z.ZodObject<{
2878
2892
  mobileNumber: z.ZodString;
@@ -2905,6 +2919,7 @@ export declare const messengerContract: {
2905
2919
  channelId?: string | undefined;
2906
2920
  status?: "active" | "pending" | undefined;
2907
2921
  apiKey?: string | undefined;
2922
+ tier?: "basic" | "regular" | "premium" | undefined;
2908
2923
  } | undefined;
2909
2924
  vonageCredentials?: {
2910
2925
  apiKey: string;
@@ -2929,6 +2944,7 @@ export declare const messengerContract: {
2929
2944
  channelId?: string | undefined;
2930
2945
  status?: "active" | "pending" | undefined;
2931
2946
  apiKey?: string | undefined;
2947
+ tier?: "basic" | "regular" | "premium" | undefined;
2932
2948
  } | undefined;
2933
2949
  vonageCredentials?: {
2934
2950
  apiKey: string;
@@ -3187,6 +3203,7 @@ export declare const messengerContract: {
3187
3203
  channelId?: string | undefined;
3188
3204
  status?: "active" | "pending" | undefined;
3189
3205
  apiKey?: string | undefined;
3206
+ tier?: "basic" | "regular" | "premium" | undefined;
3190
3207
  } | undefined;
3191
3208
  vonageCredentials?: {
3192
3209
  apiKey: string;
@@ -3276,6 +3293,7 @@ export declare const messengerContract: {
3276
3293
  channelId?: string | undefined;
3277
3294
  status?: "active" | "pending" | undefined;
3278
3295
  apiKey?: string | undefined;
3296
+ tier?: "basic" | "regular" | "premium" | undefined;
3279
3297
  } | undefined;
3280
3298
  vonageCredentials?: {
3281
3299
  apiKey: string;
@@ -3813,6 +3831,7 @@ export declare const messengerContract: {
3813
3831
  channelId?: string | undefined;
3814
3832
  status?: "active" | "pending" | undefined;
3815
3833
  apiKey?: string | undefined;
3834
+ tier?: "basic" | "regular" | "premium" | undefined;
3816
3835
  } | undefined;
3817
3836
  vonageCredentials?: {
3818
3837
  apiKey: string;
@@ -4213,6 +4232,7 @@ export declare const messengerContract: {
4213
4232
  channelId?: string | undefined;
4214
4233
  status?: "active" | "pending" | undefined;
4215
4234
  apiKey?: string | undefined;
4235
+ tier?: "basic" | "regular" | "premium" | undefined;
4216
4236
  } | undefined;
4217
4237
  vonageCredentials?: {
4218
4238
  apiKey: string;
@@ -7329,6 +7349,7 @@ export declare const messengerContract: {
7329
7349
  channelId: z.ZodOptional<z.ZodString>;
7330
7350
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
7331
7351
  apiKey: z.ZodOptional<z.ZodString>;
7352
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
7332
7353
  }, "strip", z.ZodTypeAny, {
7333
7354
  email: string;
7334
7355
  wabaExternalId: string;
@@ -7338,6 +7359,7 @@ export declare const messengerContract: {
7338
7359
  channelId?: string | undefined;
7339
7360
  status?: "active" | "pending" | undefined;
7340
7361
  apiKey?: string | undefined;
7362
+ tier?: "basic" | "regular" | "premium" | undefined;
7341
7363
  }, {
7342
7364
  email: string;
7343
7365
  wabaExternalId: string;
@@ -7347,6 +7369,7 @@ export declare const messengerContract: {
7347
7369
  channelId?: string | undefined;
7348
7370
  status?: "active" | "pending" | undefined;
7349
7371
  apiKey?: string | undefined;
7372
+ tier?: "basic" | "regular" | "premium" | undefined;
7350
7373
  }>>;
7351
7374
  vonageCredentials: z.ZodOptional<z.ZodObject<{
7352
7375
  mobileNumber: z.ZodString;
@@ -7379,6 +7402,7 @@ export declare const messengerContract: {
7379
7402
  channelId?: string | undefined;
7380
7403
  status?: "active" | "pending" | undefined;
7381
7404
  apiKey?: string | undefined;
7405
+ tier?: "basic" | "regular" | "premium" | undefined;
7382
7406
  } | undefined;
7383
7407
  vonageCredentials?: {
7384
7408
  apiKey: string;
@@ -7403,6 +7427,7 @@ export declare const messengerContract: {
7403
7427
  channelId?: string | undefined;
7404
7428
  status?: "active" | "pending" | undefined;
7405
7429
  apiKey?: string | undefined;
7430
+ tier?: "basic" | "regular" | "premium" | undefined;
7406
7431
  } | undefined;
7407
7432
  vonageCredentials?: {
7408
7433
  apiKey: string;
@@ -7661,6 +7686,7 @@ export declare const messengerContract: {
7661
7686
  channelId?: string | undefined;
7662
7687
  status?: "active" | "pending" | undefined;
7663
7688
  apiKey?: string | undefined;
7689
+ tier?: "basic" | "regular" | "premium" | undefined;
7664
7690
  } | undefined;
7665
7691
  vonageCredentials?: {
7666
7692
  apiKey: string;
@@ -7750,6 +7776,7 @@ export declare const messengerContract: {
7750
7776
  channelId?: string | undefined;
7751
7777
  status?: "active" | "pending" | undefined;
7752
7778
  apiKey?: string | undefined;
7779
+ tier?: "basic" | "regular" | "premium" | undefined;
7753
7780
  } | undefined;
7754
7781
  vonageCredentials?: {
7755
7782
  apiKey: string;
@@ -8287,6 +8314,7 @@ export declare const messengerContract: {
8287
8314
  channelId?: string | undefined;
8288
8315
  status?: "active" | "pending" | undefined;
8289
8316
  apiKey?: string | undefined;
8317
+ tier?: "basic" | "regular" | "premium" | undefined;
8290
8318
  } | undefined;
8291
8319
  vonageCredentials?: {
8292
8320
  apiKey: string;
@@ -8687,6 +8715,7 @@ export declare const messengerContract: {
8687
8715
  channelId?: string | undefined;
8688
8716
  status?: "active" | "pending" | undefined;
8689
8717
  apiKey?: string | undefined;
8718
+ tier?: "basic" | "regular" | "premium" | undefined;
8690
8719
  } | undefined;
8691
8720
  vonageCredentials?: {
8692
8721
  apiKey: string;
@@ -10860,6 +10889,7 @@ export declare const messengerContract: {
10860
10889
  channelId?: string | undefined;
10861
10890
  status?: "active" | "pending" | undefined;
10862
10891
  apiKey?: string | undefined;
10892
+ tier?: "basic" | "regular" | "premium" | undefined;
10863
10893
  } | undefined;
10864
10894
  vonageCredentials?: {
10865
10895
  apiKey: string;
@@ -11597,6 +11627,7 @@ export declare const messengerContract: {
11597
11627
  channelId?: string | undefined;
11598
11628
  status?: "active" | "pending" | undefined;
11599
11629
  apiKey?: string | undefined;
11630
+ tier?: "basic" | "regular" | "premium" | undefined;
11600
11631
  } | undefined;
11601
11632
  vonageCredentials?: {
11602
11633
  apiKey: string;
@@ -12335,6 +12366,7 @@ export declare const messengerContract: {
12335
12366
  channelId?: string | undefined;
12336
12367
  status?: "active" | "pending" | undefined;
12337
12368
  apiKey?: string | undefined;
12369
+ tier?: "basic" | "regular" | "premium" | undefined;
12338
12370
  } | undefined;
12339
12371
  vonageCredentials?: {
12340
12372
  apiKey: string;
@@ -13072,6 +13104,7 @@ export declare const messengerContract: {
13072
13104
  channelId?: string | undefined;
13073
13105
  status?: "active" | "pending" | undefined;
13074
13106
  apiKey?: string | undefined;
13107
+ tier?: "basic" | "regular" | "premium" | undefined;
13075
13108
  } | undefined;
13076
13109
  vonageCredentials?: {
13077
13110
  apiKey: string;
@@ -13810,6 +13843,7 @@ export declare const messengerContract: {
13810
13843
  channelId?: string | undefined;
13811
13844
  status?: "active" | "pending" | undefined;
13812
13845
  apiKey?: string | undefined;
13846
+ tier?: "basic" | "regular" | "premium" | undefined;
13813
13847
  } | undefined;
13814
13848
  vonageCredentials?: {
13815
13849
  apiKey: string;
@@ -14547,6 +14581,7 @@ export declare const messengerContract: {
14547
14581
  channelId?: string | undefined;
14548
14582
  status?: "active" | "pending" | undefined;
14549
14583
  apiKey?: string | undefined;
14584
+ tier?: "basic" | "regular" | "premium" | undefined;
14550
14585
  } | undefined;
14551
14586
  vonageCredentials?: {
14552
14587
  apiKey: string;
@@ -15287,6 +15322,7 @@ export declare const messengerContract: {
15287
15322
  channelId?: string | undefined;
15288
15323
  status?: "active" | "pending" | undefined;
15289
15324
  apiKey?: string | undefined;
15325
+ tier?: "basic" | "regular" | "premium" | undefined;
15290
15326
  } | undefined;
15291
15327
  vonageCredentials?: {
15292
15328
  apiKey: string;
@@ -16024,6 +16060,7 @@ export declare const messengerContract: {
16024
16060
  channelId?: string | undefined;
16025
16061
  status?: "active" | "pending" | undefined;
16026
16062
  apiKey?: string | undefined;
16063
+ tier?: "basic" | "regular" | "premium" | undefined;
16027
16064
  } | undefined;
16028
16065
  vonageCredentials?: {
16029
16066
  apiKey: string;
@@ -16765,6 +16802,7 @@ export declare const messengerContract: {
16765
16802
  channelId?: string | undefined;
16766
16803
  status?: "active" | "pending" | undefined;
16767
16804
  apiKey?: string | undefined;
16805
+ tier?: "basic" | "regular" | "premium" | undefined;
16768
16806
  } | undefined;
16769
16807
  vonageCredentials?: {
16770
16808
  apiKey: string;
@@ -17502,6 +17540,7 @@ export declare const messengerContract: {
17502
17540
  channelId?: string | undefined;
17503
17541
  status?: "active" | "pending" | undefined;
17504
17542
  apiKey?: string | undefined;
17543
+ tier?: "basic" | "regular" | "premium" | undefined;
17505
17544
  } | undefined;
17506
17545
  vonageCredentials?: {
17507
17546
  apiKey: string;
@@ -18155,6 +18194,7 @@ export declare const messengerContract: {
18155
18194
  channelId: z.ZodOptional<z.ZodString>;
18156
18195
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
18157
18196
  apiKey: z.ZodOptional<z.ZodString>;
18197
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
18158
18198
  }, "strip", z.ZodTypeAny, {
18159
18199
  email: string;
18160
18200
  wabaExternalId: string;
@@ -18164,6 +18204,7 @@ export declare const messengerContract: {
18164
18204
  channelId?: string | undefined;
18165
18205
  status?: "active" | "pending" | undefined;
18166
18206
  apiKey?: string | undefined;
18207
+ tier?: "basic" | "regular" | "premium" | undefined;
18167
18208
  }, {
18168
18209
  email: string;
18169
18210
  wabaExternalId: string;
@@ -18173,6 +18214,7 @@ export declare const messengerContract: {
18173
18214
  channelId?: string | undefined;
18174
18215
  status?: "active" | "pending" | undefined;
18175
18216
  apiKey?: string | undefined;
18217
+ tier?: "basic" | "regular" | "premium" | undefined;
18176
18218
  }>>;
18177
18219
  vonageCredentials: z.ZodOptional<z.ZodObject<{
18178
18220
  mobileNumber: z.ZodString;
@@ -18205,6 +18247,7 @@ export declare const messengerContract: {
18205
18247
  channelId?: string | undefined;
18206
18248
  status?: "active" | "pending" | undefined;
18207
18249
  apiKey?: string | undefined;
18250
+ tier?: "basic" | "regular" | "premium" | undefined;
18208
18251
  } | undefined;
18209
18252
  vonageCredentials?: {
18210
18253
  apiKey: string;
@@ -18229,6 +18272,7 @@ export declare const messengerContract: {
18229
18272
  channelId?: string | undefined;
18230
18273
  status?: "active" | "pending" | undefined;
18231
18274
  apiKey?: string | undefined;
18275
+ tier?: "basic" | "regular" | "premium" | undefined;
18232
18276
  } | undefined;
18233
18277
  vonageCredentials?: {
18234
18278
  apiKey: string;
@@ -18283,6 +18327,7 @@ export declare const messengerContract: {
18283
18327
  channelId?: string | undefined;
18284
18328
  status?: "active" | "pending" | undefined;
18285
18329
  apiKey?: string | undefined;
18330
+ tier?: "basic" | "regular" | "premium" | undefined;
18286
18331
  } | undefined;
18287
18332
  vonageCredentials?: {
18288
18333
  apiKey: string;
@@ -18325,6 +18370,7 @@ export declare const messengerContract: {
18325
18370
  channelId?: string | undefined;
18326
18371
  status?: "active" | "pending" | undefined;
18327
18372
  apiKey?: string | undefined;
18373
+ tier?: "basic" | "regular" | "premium" | undefined;
18328
18374
  } | undefined;
18329
18375
  vonageCredentials?: {
18330
18376
  apiKey: string;
@@ -18372,6 +18418,7 @@ export declare const messengerContract: {
18372
18418
  channelId: z.ZodOptional<z.ZodString>;
18373
18419
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
18374
18420
  apiKey: z.ZodOptional<z.ZodString>;
18421
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
18375
18422
  }, "strip", z.ZodTypeAny, {
18376
18423
  email: string;
18377
18424
  wabaExternalId: string;
@@ -18381,6 +18428,7 @@ export declare const messengerContract: {
18381
18428
  channelId?: string | undefined;
18382
18429
  status?: "active" | "pending" | undefined;
18383
18430
  apiKey?: string | undefined;
18431
+ tier?: "basic" | "regular" | "premium" | undefined;
18384
18432
  }, {
18385
18433
  email: string;
18386
18434
  wabaExternalId: string;
@@ -18390,6 +18438,7 @@ export declare const messengerContract: {
18390
18438
  channelId?: string | undefined;
18391
18439
  status?: "active" | "pending" | undefined;
18392
18440
  apiKey?: string | undefined;
18441
+ tier?: "basic" | "regular" | "premium" | undefined;
18393
18442
  }>>;
18394
18443
  vonageCredentials: z.ZodOptional<z.ZodObject<{
18395
18444
  mobileNumber: z.ZodString;
@@ -18422,6 +18471,7 @@ export declare const messengerContract: {
18422
18471
  channelId?: string | undefined;
18423
18472
  status?: "active" | "pending" | undefined;
18424
18473
  apiKey?: string | undefined;
18474
+ tier?: "basic" | "regular" | "premium" | undefined;
18425
18475
  } | undefined;
18426
18476
  vonageCredentials?: {
18427
18477
  apiKey: string;
@@ -18446,6 +18496,7 @@ export declare const messengerContract: {
18446
18496
  channelId?: string | undefined;
18447
18497
  status?: "active" | "pending" | undefined;
18448
18498
  apiKey?: string | undefined;
18499
+ tier?: "basic" | "regular" | "premium" | undefined;
18449
18500
  } | undefined;
18450
18501
  vonageCredentials?: {
18451
18502
  apiKey: string;
@@ -18500,6 +18551,7 @@ export declare const messengerContract: {
18500
18551
  channelId?: string | undefined;
18501
18552
  status?: "active" | "pending" | undefined;
18502
18553
  apiKey?: string | undefined;
18554
+ tier?: "basic" | "regular" | "premium" | undefined;
18503
18555
  } | undefined;
18504
18556
  vonageCredentials?: {
18505
18557
  apiKey: string;
@@ -18542,6 +18594,7 @@ export declare const messengerContract: {
18542
18594
  channelId?: string | undefined;
18543
18595
  status?: "active" | "pending" | undefined;
18544
18596
  apiKey?: string | undefined;
18597
+ tier?: "basic" | "regular" | "premium" | undefined;
18545
18598
  } | undefined;
18546
18599
  vonageCredentials?: {
18547
18600
  apiKey: string;
@@ -18586,6 +18639,7 @@ export declare const messengerContract: {
18586
18639
  channelId?: string | undefined;
18587
18640
  status?: "active" | "pending" | undefined;
18588
18641
  apiKey?: string | undefined;
18642
+ tier?: "basic" | "regular" | "premium" | undefined;
18589
18643
  } | undefined;
18590
18644
  vonageCredentials?: {
18591
18645
  apiKey: string;
@@ -18631,6 +18685,7 @@ export declare const messengerContract: {
18631
18685
  channelId?: string | undefined;
18632
18686
  status?: "active" | "pending" | undefined;
18633
18687
  apiKey?: string | undefined;
18688
+ tier?: "basic" | "regular" | "premium" | undefined;
18634
18689
  } | undefined;
18635
18690
  vonageCredentials?: {
18636
18691
  apiKey: string;
@@ -18700,6 +18755,7 @@ export declare const messengerContract: {
18700
18755
  channelId: z.ZodOptional<z.ZodString>;
18701
18756
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
18702
18757
  apiKey: z.ZodOptional<z.ZodString>;
18758
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
18703
18759
  }, "strip", z.ZodTypeAny, {
18704
18760
  email: string;
18705
18761
  wabaExternalId: string;
@@ -18709,6 +18765,7 @@ export declare const messengerContract: {
18709
18765
  channelId?: string | undefined;
18710
18766
  status?: "active" | "pending" | undefined;
18711
18767
  apiKey?: string | undefined;
18768
+ tier?: "basic" | "regular" | "premium" | undefined;
18712
18769
  }, {
18713
18770
  email: string;
18714
18771
  wabaExternalId: string;
@@ -18718,6 +18775,7 @@ export declare const messengerContract: {
18718
18775
  channelId?: string | undefined;
18719
18776
  status?: "active" | "pending" | undefined;
18720
18777
  apiKey?: string | undefined;
18778
+ tier?: "basic" | "regular" | "premium" | undefined;
18721
18779
  }>>;
18722
18780
  vonageCredentials: z.ZodOptional<z.ZodObject<{
18723
18781
  mobileNumber: z.ZodString;
@@ -18750,6 +18808,7 @@ export declare const messengerContract: {
18750
18808
  channelId?: string | undefined;
18751
18809
  status?: "active" | "pending" | undefined;
18752
18810
  apiKey?: string | undefined;
18811
+ tier?: "basic" | "regular" | "premium" | undefined;
18753
18812
  } | undefined;
18754
18813
  vonageCredentials?: {
18755
18814
  apiKey: string;
@@ -18774,6 +18833,7 @@ export declare const messengerContract: {
18774
18833
  channelId?: string | undefined;
18775
18834
  status?: "active" | "pending" | undefined;
18776
18835
  apiKey?: string | undefined;
18836
+ tier?: "basic" | "regular" | "premium" | undefined;
18777
18837
  } | undefined;
18778
18838
  vonageCredentials?: {
18779
18839
  apiKey: string;
@@ -18828,6 +18888,7 @@ export declare const messengerContract: {
18828
18888
  channelId?: string | undefined;
18829
18889
  status?: "active" | "pending" | undefined;
18830
18890
  apiKey?: string | undefined;
18891
+ tier?: "basic" | "regular" | "premium" | undefined;
18831
18892
  } | undefined;
18832
18893
  vonageCredentials?: {
18833
18894
  apiKey: string;
@@ -18870,6 +18931,7 @@ export declare const messengerContract: {
18870
18931
  channelId?: string | undefined;
18871
18932
  status?: "active" | "pending" | undefined;
18872
18933
  apiKey?: string | undefined;
18934
+ tier?: "basic" | "regular" | "premium" | undefined;
18873
18935
  } | undefined;
18874
18936
  vonageCredentials?: {
18875
18937
  apiKey: string;
@@ -18917,6 +18979,7 @@ export declare const messengerContract: {
18917
18979
  channelId: z.ZodOptional<z.ZodString>;
18918
18980
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
18919
18981
  apiKey: z.ZodOptional<z.ZodString>;
18982
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
18920
18983
  }, "strip", z.ZodTypeAny, {
18921
18984
  email: string;
18922
18985
  wabaExternalId: string;
@@ -18926,6 +18989,7 @@ export declare const messengerContract: {
18926
18989
  channelId?: string | undefined;
18927
18990
  status?: "active" | "pending" | undefined;
18928
18991
  apiKey?: string | undefined;
18992
+ tier?: "basic" | "regular" | "premium" | undefined;
18929
18993
  }, {
18930
18994
  email: string;
18931
18995
  wabaExternalId: string;
@@ -18935,6 +18999,7 @@ export declare const messengerContract: {
18935
18999
  channelId?: string | undefined;
18936
19000
  status?: "active" | "pending" | undefined;
18937
19001
  apiKey?: string | undefined;
19002
+ tier?: "basic" | "regular" | "premium" | undefined;
18938
19003
  }>>;
18939
19004
  vonageCredentials: z.ZodOptional<z.ZodObject<{
18940
19005
  mobileNumber: z.ZodString;
@@ -18967,6 +19032,7 @@ export declare const messengerContract: {
18967
19032
  channelId?: string | undefined;
18968
19033
  status?: "active" | "pending" | undefined;
18969
19034
  apiKey?: string | undefined;
19035
+ tier?: "basic" | "regular" | "premium" | undefined;
18970
19036
  } | undefined;
18971
19037
  vonageCredentials?: {
18972
19038
  apiKey: string;
@@ -18991,6 +19057,7 @@ export declare const messengerContract: {
18991
19057
  channelId?: string | undefined;
18992
19058
  status?: "active" | "pending" | undefined;
18993
19059
  apiKey?: string | undefined;
19060
+ tier?: "basic" | "regular" | "premium" | undefined;
18994
19061
  } | undefined;
18995
19062
  vonageCredentials?: {
18996
19063
  apiKey: string;
@@ -19045,6 +19112,7 @@ export declare const messengerContract: {
19045
19112
  channelId?: string | undefined;
19046
19113
  status?: "active" | "pending" | undefined;
19047
19114
  apiKey?: string | undefined;
19115
+ tier?: "basic" | "regular" | "premium" | undefined;
19048
19116
  } | undefined;
19049
19117
  vonageCredentials?: {
19050
19118
  apiKey: string;
@@ -19087,6 +19155,7 @@ export declare const messengerContract: {
19087
19155
  channelId?: string | undefined;
19088
19156
  status?: "active" | "pending" | undefined;
19089
19157
  apiKey?: string | undefined;
19158
+ tier?: "basic" | "regular" | "premium" | undefined;
19090
19159
  } | undefined;
19091
19160
  vonageCredentials?: {
19092
19161
  apiKey: string;
@@ -19131,6 +19200,7 @@ export declare const messengerContract: {
19131
19200
  channelId?: string | undefined;
19132
19201
  status?: "active" | "pending" | undefined;
19133
19202
  apiKey?: string | undefined;
19203
+ tier?: "basic" | "regular" | "premium" | undefined;
19134
19204
  } | undefined;
19135
19205
  vonageCredentials?: {
19136
19206
  apiKey: string;
@@ -19176,6 +19246,7 @@ export declare const messengerContract: {
19176
19246
  channelId?: string | undefined;
19177
19247
  status?: "active" | "pending" | undefined;
19178
19248
  apiKey?: string | undefined;
19249
+ tier?: "basic" | "regular" | "premium" | undefined;
19179
19250
  } | undefined;
19180
19251
  vonageCredentials?: {
19181
19252
  apiKey: string;
@@ -19257,6 +19328,7 @@ export declare const messengerContract: {
19257
19328
  channelId: z.ZodOptional<z.ZodString>;
19258
19329
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
19259
19330
  apiKey: z.ZodOptional<z.ZodString>;
19331
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
19260
19332
  }, "strip", z.ZodTypeAny, {
19261
19333
  email: string;
19262
19334
  wabaExternalId: string;
@@ -19266,6 +19338,7 @@ export declare const messengerContract: {
19266
19338
  channelId?: string | undefined;
19267
19339
  status?: "active" | "pending" | undefined;
19268
19340
  apiKey?: string | undefined;
19341
+ tier?: "basic" | "regular" | "premium" | undefined;
19269
19342
  }, {
19270
19343
  email: string;
19271
19344
  wabaExternalId: string;
@@ -19275,6 +19348,7 @@ export declare const messengerContract: {
19275
19348
  channelId?: string | undefined;
19276
19349
  status?: "active" | "pending" | undefined;
19277
19350
  apiKey?: string | undefined;
19351
+ tier?: "basic" | "regular" | "premium" | undefined;
19278
19352
  }>>;
19279
19353
  vonageCredentials: z.ZodOptional<z.ZodObject<{
19280
19354
  mobileNumber: z.ZodString;
@@ -19307,6 +19381,7 @@ export declare const messengerContract: {
19307
19381
  channelId?: string | undefined;
19308
19382
  status?: "active" | "pending" | undefined;
19309
19383
  apiKey?: string | undefined;
19384
+ tier?: "basic" | "regular" | "premium" | undefined;
19310
19385
  } | undefined;
19311
19386
  vonageCredentials?: {
19312
19387
  apiKey: string;
@@ -19331,6 +19406,7 @@ export declare const messengerContract: {
19331
19406
  channelId?: string | undefined;
19332
19407
  status?: "active" | "pending" | undefined;
19333
19408
  apiKey?: string | undefined;
19409
+ tier?: "basic" | "regular" | "premium" | undefined;
19334
19410
  } | undefined;
19335
19411
  vonageCredentials?: {
19336
19412
  apiKey: string;
@@ -19385,6 +19461,7 @@ export declare const messengerContract: {
19385
19461
  channelId?: string | undefined;
19386
19462
  status?: "active" | "pending" | undefined;
19387
19463
  apiKey?: string | undefined;
19464
+ tier?: "basic" | "regular" | "premium" | undefined;
19388
19465
  } | undefined;
19389
19466
  vonageCredentials?: {
19390
19467
  apiKey: string;
@@ -19427,6 +19504,7 @@ export declare const messengerContract: {
19427
19504
  channelId?: string | undefined;
19428
19505
  status?: "active" | "pending" | undefined;
19429
19506
  apiKey?: string | undefined;
19507
+ tier?: "basic" | "regular" | "premium" | undefined;
19430
19508
  } | undefined;
19431
19509
  vonageCredentials?: {
19432
19510
  apiKey: string;
@@ -19471,6 +19549,7 @@ export declare const messengerContract: {
19471
19549
  channelId?: string | undefined;
19472
19550
  status?: "active" | "pending" | undefined;
19473
19551
  apiKey?: string | undefined;
19552
+ tier?: "basic" | "regular" | "premium" | undefined;
19474
19553
  } | undefined;
19475
19554
  vonageCredentials?: {
19476
19555
  apiKey: string;
@@ -19516,6 +19595,7 @@ export declare const messengerContract: {
19516
19595
  channelId?: string | undefined;
19517
19596
  status?: "active" | "pending" | undefined;
19518
19597
  apiKey?: string | undefined;
19598
+ tier?: "basic" | "regular" | "premium" | undefined;
19519
19599
  } | undefined;
19520
19600
  vonageCredentials?: {
19521
19601
  apiKey: string;
@@ -19597,6 +19677,7 @@ export declare const messengerContract: {
19597
19677
  channelId: z.ZodOptional<z.ZodString>;
19598
19678
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
19599
19679
  apiKey: z.ZodOptional<z.ZodString>;
19680
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
19600
19681
  }, "strip", z.ZodTypeAny, {
19601
19682
  email: string;
19602
19683
  wabaExternalId: string;
@@ -19606,6 +19687,7 @@ export declare const messengerContract: {
19606
19687
  channelId?: string | undefined;
19607
19688
  status?: "active" | "pending" | undefined;
19608
19689
  apiKey?: string | undefined;
19690
+ tier?: "basic" | "regular" | "premium" | undefined;
19609
19691
  }, {
19610
19692
  email: string;
19611
19693
  wabaExternalId: string;
@@ -19615,6 +19697,7 @@ export declare const messengerContract: {
19615
19697
  channelId?: string | undefined;
19616
19698
  status?: "active" | "pending" | undefined;
19617
19699
  apiKey?: string | undefined;
19700
+ tier?: "basic" | "regular" | "premium" | undefined;
19618
19701
  }>>;
19619
19702
  vonageCredentials: z.ZodOptional<z.ZodObject<{
19620
19703
  mobileNumber: z.ZodString;
@@ -19647,6 +19730,7 @@ export declare const messengerContract: {
19647
19730
  channelId?: string | undefined;
19648
19731
  status?: "active" | "pending" | undefined;
19649
19732
  apiKey?: string | undefined;
19733
+ tier?: "basic" | "regular" | "premium" | undefined;
19650
19734
  } | undefined;
19651
19735
  vonageCredentials?: {
19652
19736
  apiKey: string;
@@ -19671,6 +19755,7 @@ export declare const messengerContract: {
19671
19755
  channelId?: string | undefined;
19672
19756
  status?: "active" | "pending" | undefined;
19673
19757
  apiKey?: string | undefined;
19758
+ tier?: "basic" | "regular" | "premium" | undefined;
19674
19759
  } | undefined;
19675
19760
  vonageCredentials?: {
19676
19761
  apiKey: string;
@@ -19725,6 +19810,7 @@ export declare const messengerContract: {
19725
19810
  channelId?: string | undefined;
19726
19811
  status?: "active" | "pending" | undefined;
19727
19812
  apiKey?: string | undefined;
19813
+ tier?: "basic" | "regular" | "premium" | undefined;
19728
19814
  } | undefined;
19729
19815
  vonageCredentials?: {
19730
19816
  apiKey: string;
@@ -19767,6 +19853,7 @@ export declare const messengerContract: {
19767
19853
  channelId?: string | undefined;
19768
19854
  status?: "active" | "pending" | undefined;
19769
19855
  apiKey?: string | undefined;
19856
+ tier?: "basic" | "regular" | "premium" | undefined;
19770
19857
  } | undefined;
19771
19858
  vonageCredentials?: {
19772
19859
  apiKey: string;
@@ -19811,6 +19898,7 @@ export declare const messengerContract: {
19811
19898
  channelId?: string | undefined;
19812
19899
  status?: "active" | "pending" | undefined;
19813
19900
  apiKey?: string | undefined;
19901
+ tier?: "basic" | "regular" | "premium" | undefined;
19814
19902
  } | undefined;
19815
19903
  vonageCredentials?: {
19816
19904
  apiKey: string;
@@ -19856,6 +19944,7 @@ export declare const messengerContract: {
19856
19944
  channelId?: string | undefined;
19857
19945
  status?: "active" | "pending" | undefined;
19858
19946
  apiKey?: string | undefined;
19947
+ tier?: "basic" | "regular" | "premium" | undefined;
19859
19948
  } | undefined;
19860
19949
  vonageCredentials?: {
19861
19950
  apiKey: string;
@@ -19924,6 +20013,7 @@ export declare const messengerContract: {
19924
20013
  channelId: z.ZodOptional<z.ZodString>;
19925
20014
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
19926
20015
  apiKey: z.ZodOptional<z.ZodString>;
20016
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
19927
20017
  }, "strip", z.ZodTypeAny, {
19928
20018
  email: string;
19929
20019
  wabaExternalId: string;
@@ -19933,6 +20023,7 @@ export declare const messengerContract: {
19933
20023
  channelId?: string | undefined;
19934
20024
  status?: "active" | "pending" | undefined;
19935
20025
  apiKey?: string | undefined;
20026
+ tier?: "basic" | "regular" | "premium" | undefined;
19936
20027
  }, {
19937
20028
  email: string;
19938
20029
  wabaExternalId: string;
@@ -19942,6 +20033,7 @@ export declare const messengerContract: {
19942
20033
  channelId?: string | undefined;
19943
20034
  status?: "active" | "pending" | undefined;
19944
20035
  apiKey?: string | undefined;
20036
+ tier?: "basic" | "regular" | "premium" | undefined;
19945
20037
  }>>;
19946
20038
  vonageCredentials: z.ZodOptional<z.ZodObject<{
19947
20039
  mobileNumber: z.ZodString;
@@ -19974,6 +20066,7 @@ export declare const messengerContract: {
19974
20066
  channelId?: string | undefined;
19975
20067
  status?: "active" | "pending" | undefined;
19976
20068
  apiKey?: string | undefined;
20069
+ tier?: "basic" | "regular" | "premium" | undefined;
19977
20070
  } | undefined;
19978
20071
  vonageCredentials?: {
19979
20072
  apiKey: string;
@@ -19998,6 +20091,7 @@ export declare const messengerContract: {
19998
20091
  channelId?: string | undefined;
19999
20092
  status?: "active" | "pending" | undefined;
20000
20093
  apiKey?: string | undefined;
20094
+ tier?: "basic" | "regular" | "premium" | undefined;
20001
20095
  } | undefined;
20002
20096
  vonageCredentials?: {
20003
20097
  apiKey: string;
@@ -20057,6 +20151,7 @@ export declare const messengerContract: {
20057
20151
  channelId?: string | undefined;
20058
20152
  status?: "active" | "pending" | undefined;
20059
20153
  apiKey?: string | undefined;
20154
+ tier?: "basic" | "regular" | "premium" | undefined;
20060
20155
  } | undefined;
20061
20156
  vonageCredentials?: {
20062
20157
  apiKey: string;
@@ -20103,6 +20198,7 @@ export declare const messengerContract: {
20103
20198
  channelId?: string | undefined;
20104
20199
  status?: "active" | "pending" | undefined;
20105
20200
  apiKey?: string | undefined;
20201
+ tier?: "basic" | "regular" | "premium" | undefined;
20106
20202
  } | undefined;
20107
20203
  vonageCredentials?: {
20108
20204
  apiKey: string;
@@ -20154,6 +20250,7 @@ export declare const messengerContract: {
20154
20250
  channelId: z.ZodOptional<z.ZodString>;
20155
20251
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
20156
20252
  apiKey: z.ZodOptional<z.ZodString>;
20253
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
20157
20254
  }, "strip", z.ZodTypeAny, {
20158
20255
  email: string;
20159
20256
  wabaExternalId: string;
@@ -20163,6 +20260,7 @@ export declare const messengerContract: {
20163
20260
  channelId?: string | undefined;
20164
20261
  status?: "active" | "pending" | undefined;
20165
20262
  apiKey?: string | undefined;
20263
+ tier?: "basic" | "regular" | "premium" | undefined;
20166
20264
  }, {
20167
20265
  email: string;
20168
20266
  wabaExternalId: string;
@@ -20172,6 +20270,7 @@ export declare const messengerContract: {
20172
20270
  channelId?: string | undefined;
20173
20271
  status?: "active" | "pending" | undefined;
20174
20272
  apiKey?: string | undefined;
20273
+ tier?: "basic" | "regular" | "premium" | undefined;
20175
20274
  }>>;
20176
20275
  vonageCredentials: z.ZodOptional<z.ZodObject<{
20177
20276
  mobileNumber: z.ZodString;
@@ -20204,6 +20303,7 @@ export declare const messengerContract: {
20204
20303
  channelId?: string | undefined;
20205
20304
  status?: "active" | "pending" | undefined;
20206
20305
  apiKey?: string | undefined;
20306
+ tier?: "basic" | "regular" | "premium" | undefined;
20207
20307
  } | undefined;
20208
20308
  vonageCredentials?: {
20209
20309
  apiKey: string;
@@ -20228,6 +20328,7 @@ export declare const messengerContract: {
20228
20328
  channelId?: string | undefined;
20229
20329
  status?: "active" | "pending" | undefined;
20230
20330
  apiKey?: string | undefined;
20331
+ tier?: "basic" | "regular" | "premium" | undefined;
20231
20332
  } | undefined;
20232
20333
  vonageCredentials?: {
20233
20334
  apiKey: string;
@@ -20282,6 +20383,7 @@ export declare const messengerContract: {
20282
20383
  channelId?: string | undefined;
20283
20384
  status?: "active" | "pending" | undefined;
20284
20385
  apiKey?: string | undefined;
20386
+ tier?: "basic" | "regular" | "premium" | undefined;
20285
20387
  } | undefined;
20286
20388
  vonageCredentials?: {
20287
20389
  apiKey: string;
@@ -20324,6 +20426,7 @@ export declare const messengerContract: {
20324
20426
  channelId?: string | undefined;
20325
20427
  status?: "active" | "pending" | undefined;
20326
20428
  apiKey?: string | undefined;
20429
+ tier?: "basic" | "regular" | "premium" | undefined;
20327
20430
  } | undefined;
20328
20431
  vonageCredentials?: {
20329
20432
  apiKey: string;
@@ -20368,6 +20471,7 @@ export declare const messengerContract: {
20368
20471
  channelId?: string | undefined;
20369
20472
  status?: "active" | "pending" | undefined;
20370
20473
  apiKey?: string | undefined;
20474
+ tier?: "basic" | "regular" | "premium" | undefined;
20371
20475
  } | undefined;
20372
20476
  vonageCredentials?: {
20373
20477
  apiKey: string;
@@ -20413,6 +20517,7 @@ export declare const messengerContract: {
20413
20517
  channelId?: string | undefined;
20414
20518
  status?: "active" | "pending" | undefined;
20415
20519
  apiKey?: string | undefined;
20520
+ tier?: "basic" | "regular" | "premium" | undefined;
20416
20521
  } | undefined;
20417
20522
  vonageCredentials?: {
20418
20523
  apiKey: string;