@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
@@ -47,6 +47,7 @@ export declare const channelContract: {
47
47
  channelId: z.ZodOptional<z.ZodString>;
48
48
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
49
49
  apiKey: z.ZodOptional<z.ZodString>;
50
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
50
51
  }, "strip", z.ZodTypeAny, {
51
52
  email: string;
52
53
  wabaExternalId: string;
@@ -56,6 +57,7 @@ export declare const channelContract: {
56
57
  channelId?: string | undefined;
57
58
  status?: "active" | "pending" | undefined;
58
59
  apiKey?: string | undefined;
60
+ tier?: "basic" | "regular" | "premium" | undefined;
59
61
  }, {
60
62
  email: string;
61
63
  wabaExternalId: string;
@@ -65,6 +67,7 @@ export declare const channelContract: {
65
67
  channelId?: string | undefined;
66
68
  status?: "active" | "pending" | undefined;
67
69
  apiKey?: string | undefined;
70
+ tier?: "basic" | "regular" | "premium" | undefined;
68
71
  }>>;
69
72
  vonageCredentials: z.ZodOptional<z.ZodObject<{
70
73
  mobileNumber: z.ZodString;
@@ -97,6 +100,7 @@ export declare const channelContract: {
97
100
  channelId?: string | undefined;
98
101
  status?: "active" | "pending" | undefined;
99
102
  apiKey?: string | undefined;
103
+ tier?: "basic" | "regular" | "premium" | undefined;
100
104
  } | undefined;
101
105
  vonageCredentials?: {
102
106
  apiKey: string;
@@ -121,6 +125,7 @@ export declare const channelContract: {
121
125
  channelId?: string | undefined;
122
126
  status?: "active" | "pending" | undefined;
123
127
  apiKey?: string | undefined;
128
+ tier?: "basic" | "regular" | "premium" | undefined;
124
129
  } | undefined;
125
130
  vonageCredentials?: {
126
131
  apiKey: string;
@@ -379,6 +384,7 @@ export declare const channelContract: {
379
384
  channelId?: string | undefined;
380
385
  status?: "active" | "pending" | undefined;
381
386
  apiKey?: string | undefined;
387
+ tier?: "basic" | "regular" | "premium" | undefined;
382
388
  } | undefined;
383
389
  vonageCredentials?: {
384
390
  apiKey: string;
@@ -468,6 +474,7 @@ export declare const channelContract: {
468
474
  channelId?: string | undefined;
469
475
  status?: "active" | "pending" | undefined;
470
476
  apiKey?: string | undefined;
477
+ tier?: "basic" | "regular" | "premium" | undefined;
471
478
  } | undefined;
472
479
  vonageCredentials?: {
473
480
  apiKey: string;
@@ -559,6 +566,7 @@ export declare const channelContract: {
559
566
  channelId?: string | undefined;
560
567
  status?: "active" | "pending" | undefined;
561
568
  apiKey?: string | undefined;
569
+ tier?: "basic" | "regular" | "premium" | undefined;
562
570
  } | undefined;
563
571
  vonageCredentials?: {
564
572
  apiKey: string;
@@ -651,6 +659,7 @@ export declare const channelContract: {
651
659
  channelId?: string | undefined;
652
660
  status?: "active" | "pending" | undefined;
653
661
  apiKey?: string | undefined;
662
+ tier?: "basic" | "regular" | "premium" | undefined;
654
663
  } | undefined;
655
664
  vonageCredentials?: {
656
665
  apiKey: string;
@@ -775,6 +784,7 @@ export declare const channelContract: {
775
784
  channelId: z.ZodOptional<z.ZodString>;
776
785
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
777
786
  apiKey: z.ZodOptional<z.ZodString>;
787
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
778
788
  }, "strip", z.ZodTypeAny, {
779
789
  email: string;
780
790
  wabaExternalId: string;
@@ -784,6 +794,7 @@ export declare const channelContract: {
784
794
  channelId?: string | undefined;
785
795
  status?: "active" | "pending" | undefined;
786
796
  apiKey?: string | undefined;
797
+ tier?: "basic" | "regular" | "premium" | undefined;
787
798
  }, {
788
799
  email: string;
789
800
  wabaExternalId: string;
@@ -793,6 +804,7 @@ export declare const channelContract: {
793
804
  channelId?: string | undefined;
794
805
  status?: "active" | "pending" | undefined;
795
806
  apiKey?: string | undefined;
807
+ tier?: "basic" | "regular" | "premium" | undefined;
796
808
  }>>;
797
809
  vonageCredentials: z.ZodOptional<z.ZodObject<{
798
810
  mobileNumber: z.ZodString;
@@ -825,6 +837,7 @@ export declare const channelContract: {
825
837
  channelId?: string | undefined;
826
838
  status?: "active" | "pending" | undefined;
827
839
  apiKey?: string | undefined;
840
+ tier?: "basic" | "regular" | "premium" | undefined;
828
841
  } | undefined;
829
842
  vonageCredentials?: {
830
843
  apiKey: string;
@@ -849,6 +862,7 @@ export declare const channelContract: {
849
862
  channelId?: string | undefined;
850
863
  status?: "active" | "pending" | undefined;
851
864
  apiKey?: string | undefined;
865
+ tier?: "basic" | "regular" | "premium" | undefined;
852
866
  } | undefined;
853
867
  vonageCredentials?: {
854
868
  apiKey: string;
@@ -908,6 +922,7 @@ export declare const channelContract: {
908
922
  channelId?: string | undefined;
909
923
  status?: "active" | "pending" | undefined;
910
924
  apiKey?: string | undefined;
925
+ tier?: "basic" | "regular" | "premium" | undefined;
911
926
  } | undefined;
912
927
  vonageCredentials?: {
913
928
  apiKey: string;
@@ -954,6 +969,7 @@ export declare const channelContract: {
954
969
  channelId?: string | undefined;
955
970
  status?: "active" | "pending" | undefined;
956
971
  apiKey?: string | undefined;
972
+ tier?: "basic" | "regular" | "premium" | undefined;
957
973
  } | undefined;
958
974
  vonageCredentials?: {
959
975
  apiKey: string;
@@ -1002,6 +1018,7 @@ export declare const channelContract: {
1002
1018
  channelId?: string | undefined;
1003
1019
  status?: "active" | "pending" | undefined;
1004
1020
  apiKey?: string | undefined;
1021
+ tier?: "basic" | "regular" | "premium" | undefined;
1005
1022
  } | undefined;
1006
1023
  vonageCredentials?: {
1007
1024
  apiKey: string;
@@ -1051,6 +1068,7 @@ export declare const channelContract: {
1051
1068
  channelId?: string | undefined;
1052
1069
  status?: "active" | "pending" | undefined;
1053
1070
  apiKey?: string | undefined;
1071
+ tier?: "basic" | "regular" | "premium" | undefined;
1054
1072
  } | undefined;
1055
1073
  vonageCredentials?: {
1056
1074
  apiKey: string;
@@ -1146,6 +1164,7 @@ export declare const channelContract: {
1146
1164
  channelId: z.ZodOptional<z.ZodString>;
1147
1165
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
1148
1166
  apiKey: z.ZodOptional<z.ZodString>;
1167
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
1149
1168
  }, "strip", z.ZodTypeAny, {
1150
1169
  email: string;
1151
1170
  wabaExternalId: string;
@@ -1155,6 +1174,7 @@ export declare const channelContract: {
1155
1174
  channelId?: string | undefined;
1156
1175
  status?: "active" | "pending" | undefined;
1157
1176
  apiKey?: string | undefined;
1177
+ tier?: "basic" | "regular" | "premium" | undefined;
1158
1178
  }, {
1159
1179
  email: string;
1160
1180
  wabaExternalId: string;
@@ -1164,6 +1184,7 @@ export declare const channelContract: {
1164
1184
  channelId?: string | undefined;
1165
1185
  status?: "active" | "pending" | undefined;
1166
1186
  apiKey?: string | undefined;
1187
+ tier?: "basic" | "regular" | "premium" | undefined;
1167
1188
  }>>;
1168
1189
  vonageCredentials: z.ZodOptional<z.ZodObject<{
1169
1190
  mobileNumber: z.ZodString;
@@ -1196,6 +1217,7 @@ export declare const channelContract: {
1196
1217
  channelId?: string | undefined;
1197
1218
  status?: "active" | "pending" | undefined;
1198
1219
  apiKey?: string | undefined;
1220
+ tier?: "basic" | "regular" | "premium" | undefined;
1199
1221
  } | undefined;
1200
1222
  vonageCredentials?: {
1201
1223
  apiKey: string;
@@ -1220,6 +1242,7 @@ export declare const channelContract: {
1220
1242
  channelId?: string | undefined;
1221
1243
  status?: "active" | "pending" | undefined;
1222
1244
  apiKey?: string | undefined;
1245
+ tier?: "basic" | "regular" | "premium" | undefined;
1223
1246
  } | undefined;
1224
1247
  vonageCredentials?: {
1225
1248
  apiKey: string;
@@ -1478,6 +1501,7 @@ export declare const channelContract: {
1478
1501
  channelId?: string | undefined;
1479
1502
  status?: "active" | "pending" | undefined;
1480
1503
  apiKey?: string | undefined;
1504
+ tier?: "basic" | "regular" | "premium" | undefined;
1481
1505
  } | undefined;
1482
1506
  vonageCredentials?: {
1483
1507
  apiKey: string;
@@ -1567,6 +1591,7 @@ export declare const channelContract: {
1567
1591
  channelId?: string | undefined;
1568
1592
  status?: "active" | "pending" | undefined;
1569
1593
  apiKey?: string | undefined;
1594
+ tier?: "basic" | "regular" | "premium" | undefined;
1570
1595
  } | undefined;
1571
1596
  vonageCredentials?: {
1572
1597
  apiKey: string;
@@ -1658,6 +1683,7 @@ export declare const channelContract: {
1658
1683
  channelId?: string | undefined;
1659
1684
  status?: "active" | "pending" | undefined;
1660
1685
  apiKey?: string | undefined;
1686
+ tier?: "basic" | "regular" | "premium" | undefined;
1661
1687
  } | undefined;
1662
1688
  vonageCredentials?: {
1663
1689
  apiKey: string;
@@ -1750,6 +1776,7 @@ export declare const channelContract: {
1750
1776
  channelId?: string | undefined;
1751
1777
  status?: "active" | "pending" | undefined;
1752
1778
  apiKey?: string | undefined;
1779
+ tier?: "basic" | "regular" | "premium" | undefined;
1753
1780
  } | undefined;
1754
1781
  vonageCredentials?: {
1755
1782
  apiKey: string;
@@ -1894,6 +1921,7 @@ export declare const channelContract: {
1894
1921
  channelId: z.ZodOptional<z.ZodString>;
1895
1922
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
1896
1923
  apiKey: z.ZodOptional<z.ZodString>;
1924
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
1897
1925
  }, "strip", z.ZodTypeAny, {
1898
1926
  email: string;
1899
1927
  wabaExternalId: string;
@@ -1903,6 +1931,7 @@ export declare const channelContract: {
1903
1931
  channelId?: string | undefined;
1904
1932
  status?: "active" | "pending" | undefined;
1905
1933
  apiKey?: string | undefined;
1934
+ tier?: "basic" | "regular" | "premium" | undefined;
1906
1935
  }, {
1907
1936
  email: string;
1908
1937
  wabaExternalId: string;
@@ -1912,6 +1941,7 @@ export declare const channelContract: {
1912
1941
  channelId?: string | undefined;
1913
1942
  status?: "active" | "pending" | undefined;
1914
1943
  apiKey?: string | undefined;
1944
+ tier?: "basic" | "regular" | "premium" | undefined;
1915
1945
  }>>;
1916
1946
  vonageCredentials: z.ZodOptional<z.ZodObject<{
1917
1947
  mobileNumber: z.ZodString;
@@ -1944,6 +1974,7 @@ export declare const channelContract: {
1944
1974
  channelId?: string | undefined;
1945
1975
  status?: "active" | "pending" | undefined;
1946
1976
  apiKey?: string | undefined;
1977
+ tier?: "basic" | "regular" | "premium" | undefined;
1947
1978
  } | undefined;
1948
1979
  vonageCredentials?: {
1949
1980
  apiKey: string;
@@ -1968,6 +1999,7 @@ export declare const channelContract: {
1968
1999
  channelId?: string | undefined;
1969
2000
  status?: "active" | "pending" | undefined;
1970
2001
  apiKey?: string | undefined;
2002
+ tier?: "basic" | "regular" | "premium" | undefined;
1971
2003
  } | undefined;
1972
2004
  vonageCredentials?: {
1973
2005
  apiKey: string;
@@ -2226,6 +2258,7 @@ export declare const channelContract: {
2226
2258
  channelId?: string | undefined;
2227
2259
  status?: "active" | "pending" | undefined;
2228
2260
  apiKey?: string | undefined;
2261
+ tier?: "basic" | "regular" | "premium" | undefined;
2229
2262
  } | undefined;
2230
2263
  vonageCredentials?: {
2231
2264
  apiKey: string;
@@ -2315,6 +2348,7 @@ export declare const channelContract: {
2315
2348
  channelId?: string | undefined;
2316
2349
  status?: "active" | "pending" | undefined;
2317
2350
  apiKey?: string | undefined;
2351
+ tier?: "basic" | "regular" | "premium" | undefined;
2318
2352
  } | undefined;
2319
2353
  vonageCredentials?: {
2320
2354
  apiKey: string;
@@ -2406,6 +2440,7 @@ export declare const channelContract: {
2406
2440
  channelId?: string | undefined;
2407
2441
  status?: "active" | "pending" | undefined;
2408
2442
  apiKey?: string | undefined;
2443
+ tier?: "basic" | "regular" | "premium" | undefined;
2409
2444
  } | undefined;
2410
2445
  vonageCredentials?: {
2411
2446
  apiKey: string;
@@ -2498,6 +2533,7 @@ export declare const channelContract: {
2498
2533
  channelId?: string | undefined;
2499
2534
  status?: "active" | "pending" | undefined;
2500
2535
  apiKey?: string | undefined;
2536
+ tier?: "basic" | "regular" | "premium" | undefined;
2501
2537
  } | undefined;
2502
2538
  vonageCredentials?: {
2503
2539
  apiKey: string;
@@ -2636,6 +2672,7 @@ export declare const channelContract: {
2636
2672
  channelId: z.ZodOptional<z.ZodString>;
2637
2673
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
2638
2674
  apiKey: z.ZodOptional<z.ZodString>;
2675
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
2639
2676
  }, "strip", z.ZodTypeAny, {
2640
2677
  email: string;
2641
2678
  wabaExternalId: string;
@@ -2645,6 +2682,7 @@ export declare const channelContract: {
2645
2682
  channelId?: string | undefined;
2646
2683
  status?: "active" | "pending" | undefined;
2647
2684
  apiKey?: string | undefined;
2685
+ tier?: "basic" | "regular" | "premium" | undefined;
2648
2686
  }, {
2649
2687
  email: string;
2650
2688
  wabaExternalId: string;
@@ -2654,6 +2692,7 @@ export declare const channelContract: {
2654
2692
  channelId?: string | undefined;
2655
2693
  status?: "active" | "pending" | undefined;
2656
2694
  apiKey?: string | undefined;
2695
+ tier?: "basic" | "regular" | "premium" | undefined;
2657
2696
  }>>;
2658
2697
  vonageCredentials: z.ZodOptional<z.ZodObject<{
2659
2698
  mobileNumber: z.ZodString;
@@ -2686,6 +2725,7 @@ export declare const channelContract: {
2686
2725
  channelId?: string | undefined;
2687
2726
  status?: "active" | "pending" | undefined;
2688
2727
  apiKey?: string | undefined;
2728
+ tier?: "basic" | "regular" | "premium" | undefined;
2689
2729
  } | undefined;
2690
2730
  vonageCredentials?: {
2691
2731
  apiKey: string;
@@ -2710,6 +2750,7 @@ export declare const channelContract: {
2710
2750
  channelId?: string | undefined;
2711
2751
  status?: "active" | "pending" | undefined;
2712
2752
  apiKey?: string | undefined;
2753
+ tier?: "basic" | "regular" | "premium" | undefined;
2713
2754
  } | undefined;
2714
2755
  vonageCredentials?: {
2715
2756
  apiKey: string;
@@ -2968,6 +3009,7 @@ export declare const channelContract: {
2968
3009
  channelId?: string | undefined;
2969
3010
  status?: "active" | "pending" | undefined;
2970
3011
  apiKey?: string | undefined;
3012
+ tier?: "basic" | "regular" | "premium" | undefined;
2971
3013
  } | undefined;
2972
3014
  vonageCredentials?: {
2973
3015
  apiKey: string;
@@ -3057,6 +3099,7 @@ export declare const channelContract: {
3057
3099
  channelId?: string | undefined;
3058
3100
  status?: "active" | "pending" | undefined;
3059
3101
  apiKey?: string | undefined;
3102
+ tier?: "basic" | "regular" | "premium" | undefined;
3060
3103
  } | undefined;
3061
3104
  vonageCredentials?: {
3062
3105
  apiKey: string;
@@ -3148,6 +3191,7 @@ export declare const channelContract: {
3148
3191
  channelId?: string | undefined;
3149
3192
  status?: "active" | "pending" | undefined;
3150
3193
  apiKey?: string | undefined;
3194
+ tier?: "basic" | "regular" | "premium" | undefined;
3151
3195
  } | undefined;
3152
3196
  vonageCredentials?: {
3153
3197
  apiKey: string;
@@ -3240,6 +3284,7 @@ export declare const channelContract: {
3240
3284
  channelId?: string | undefined;
3241
3285
  status?: "active" | "pending" | undefined;
3242
3286
  apiKey?: string | undefined;
3287
+ tier?: "basic" | "regular" | "premium" | undefined;
3243
3288
  } | undefined;
3244
3289
  vonageCredentials?: {
3245
3290
  apiKey: string;
@@ -3361,6 +3406,7 @@ export declare const channelContract: {
3361
3406
  channelId: z.ZodOptional<z.ZodString>;
3362
3407
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
3363
3408
  apiKey: z.ZodOptional<z.ZodString>;
3409
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
3364
3410
  }, "strip", z.ZodTypeAny, {
3365
3411
  email: string;
3366
3412
  wabaExternalId: string;
@@ -3370,6 +3416,7 @@ export declare const channelContract: {
3370
3416
  channelId?: string | undefined;
3371
3417
  status?: "active" | "pending" | undefined;
3372
3418
  apiKey?: string | undefined;
3419
+ tier?: "basic" | "regular" | "premium" | undefined;
3373
3420
  }, {
3374
3421
  email: string;
3375
3422
  wabaExternalId: string;
@@ -3379,6 +3426,7 @@ export declare const channelContract: {
3379
3426
  channelId?: string | undefined;
3380
3427
  status?: "active" | "pending" | undefined;
3381
3428
  apiKey?: string | undefined;
3429
+ tier?: "basic" | "regular" | "premium" | undefined;
3382
3430
  }>>;
3383
3431
  vonageCredentials: z.ZodOptional<z.ZodObject<{
3384
3432
  mobileNumber: z.ZodString;
@@ -3411,6 +3459,7 @@ export declare const channelContract: {
3411
3459
  channelId?: string | undefined;
3412
3460
  status?: "active" | "pending" | undefined;
3413
3461
  apiKey?: string | undefined;
3462
+ tier?: "basic" | "regular" | "premium" | undefined;
3414
3463
  } | undefined;
3415
3464
  vonageCredentials?: {
3416
3465
  apiKey: string;
@@ -3435,6 +3484,7 @@ export declare const channelContract: {
3435
3484
  channelId?: string | undefined;
3436
3485
  status?: "active" | "pending" | undefined;
3437
3486
  apiKey?: string | undefined;
3487
+ tier?: "basic" | "regular" | "premium" | undefined;
3438
3488
  } | undefined;
3439
3489
  vonageCredentials?: {
3440
3490
  apiKey: string;
@@ -3466,6 +3516,7 @@ export declare const channelContract: {
3466
3516
  channelId?: string | undefined;
3467
3517
  status?: "active" | "pending" | undefined;
3468
3518
  apiKey?: string | undefined;
3519
+ tier?: "basic" | "regular" | "premium" | undefined;
3469
3520
  } | undefined;
3470
3521
  vonageCredentials?: {
3471
3522
  apiKey: string;
@@ -3497,6 +3548,7 @@ export declare const channelContract: {
3497
3548
  channelId?: string | undefined;
3498
3549
  status?: "active" | "pending" | undefined;
3499
3550
  apiKey?: string | undefined;
3551
+ tier?: "basic" | "regular" | "premium" | undefined;
3500
3552
  } | undefined;
3501
3553
  vonageCredentials?: {
3502
3554
  apiKey: string;
@@ -3538,6 +3590,7 @@ export declare const channelContract: {
3538
3590
  channelId: z.ZodOptional<z.ZodString>;
3539
3591
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
3540
3592
  apiKey: z.ZodOptional<z.ZodString>;
3593
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
3541
3594
  }, "strip", z.ZodTypeAny, {
3542
3595
  email: string;
3543
3596
  wabaExternalId: string;
@@ -3547,6 +3600,7 @@ export declare const channelContract: {
3547
3600
  channelId?: string | undefined;
3548
3601
  status?: "active" | "pending" | undefined;
3549
3602
  apiKey?: string | undefined;
3603
+ tier?: "basic" | "regular" | "premium" | undefined;
3550
3604
  }, {
3551
3605
  email: string;
3552
3606
  wabaExternalId: string;
@@ -3556,6 +3610,7 @@ export declare const channelContract: {
3556
3610
  channelId?: string | undefined;
3557
3611
  status?: "active" | "pending" | undefined;
3558
3612
  apiKey?: string | undefined;
3613
+ tier?: "basic" | "regular" | "premium" | undefined;
3559
3614
  }>>;
3560
3615
  vonageCredentials: z.ZodOptional<z.ZodObject<{
3561
3616
  mobileNumber: z.ZodString;
@@ -3588,6 +3643,7 @@ export declare const channelContract: {
3588
3643
  channelId?: string | undefined;
3589
3644
  status?: "active" | "pending" | undefined;
3590
3645
  apiKey?: string | undefined;
3646
+ tier?: "basic" | "regular" | "premium" | undefined;
3591
3647
  } | undefined;
3592
3648
  vonageCredentials?: {
3593
3649
  apiKey: string;
@@ -3612,6 +3668,7 @@ export declare const channelContract: {
3612
3668
  channelId?: string | undefined;
3613
3669
  status?: "active" | "pending" | undefined;
3614
3670
  apiKey?: string | undefined;
3671
+ tier?: "basic" | "regular" | "premium" | undefined;
3615
3672
  } | undefined;
3616
3673
  vonageCredentials?: {
3617
3674
  apiKey: string;
@@ -3870,6 +3927,7 @@ export declare const channelContract: {
3870
3927
  channelId?: string | undefined;
3871
3928
  status?: "active" | "pending" | undefined;
3872
3929
  apiKey?: string | undefined;
3930
+ tier?: "basic" | "regular" | "premium" | undefined;
3873
3931
  } | undefined;
3874
3932
  vonageCredentials?: {
3875
3933
  apiKey: string;
@@ -3959,6 +4017,7 @@ export declare const channelContract: {
3959
4017
  channelId?: string | undefined;
3960
4018
  status?: "active" | "pending" | undefined;
3961
4019
  apiKey?: string | undefined;
4020
+ tier?: "basic" | "regular" | "premium" | undefined;
3962
4021
  } | undefined;
3963
4022
  vonageCredentials?: {
3964
4023
  apiKey: string;
@@ -4050,6 +4109,7 @@ export declare const channelContract: {
4050
4109
  channelId?: string | undefined;
4051
4110
  status?: "active" | "pending" | undefined;
4052
4111
  apiKey?: string | undefined;
4112
+ tier?: "basic" | "regular" | "premium" | undefined;
4053
4113
  } | undefined;
4054
4114
  vonageCredentials?: {
4055
4115
  apiKey: string;
@@ -4142,6 +4202,7 @@ export declare const channelContract: {
4142
4202
  channelId?: string | undefined;
4143
4203
  status?: "active" | "pending" | undefined;
4144
4204
  apiKey?: string | undefined;
4205
+ tier?: "basic" | "regular" | "premium" | undefined;
4145
4206
  } | undefined;
4146
4207
  vonageCredentials?: {
4147
4208
  apiKey: string;
@@ -5155,6 +5216,7 @@ export declare const channelContract: {
5155
5216
  channelId: z.ZodOptional<z.ZodString>;
5156
5217
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
5157
5218
  apiKey: z.ZodOptional<z.ZodString>;
5219
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
5158
5220
  }, "strip", z.ZodTypeAny, {
5159
5221
  email: string;
5160
5222
  wabaExternalId: string;
@@ -5164,6 +5226,7 @@ export declare const channelContract: {
5164
5226
  channelId?: string | undefined;
5165
5227
  status?: "active" | "pending" | undefined;
5166
5228
  apiKey?: string | undefined;
5229
+ tier?: "basic" | "regular" | "premium" | undefined;
5167
5230
  }, {
5168
5231
  email: string;
5169
5232
  wabaExternalId: string;
@@ -5173,6 +5236,7 @@ export declare const channelContract: {
5173
5236
  channelId?: string | undefined;
5174
5237
  status?: "active" | "pending" | undefined;
5175
5238
  apiKey?: string | undefined;
5239
+ tier?: "basic" | "regular" | "premium" | undefined;
5176
5240
  }>>;
5177
5241
  vonageCredentials: z.ZodOptional<z.ZodObject<{
5178
5242
  mobileNumber: z.ZodString;
@@ -5205,6 +5269,7 @@ export declare const channelContract: {
5205
5269
  channelId?: string | undefined;
5206
5270
  status?: "active" | "pending" | undefined;
5207
5271
  apiKey?: string | undefined;
5272
+ tier?: "basic" | "regular" | "premium" | undefined;
5208
5273
  } | undefined;
5209
5274
  vonageCredentials?: {
5210
5275
  apiKey: string;
@@ -5229,6 +5294,7 @@ export declare const channelContract: {
5229
5294
  channelId?: string | undefined;
5230
5295
  status?: "active" | "pending" | undefined;
5231
5296
  apiKey?: string | undefined;
5297
+ tier?: "basic" | "regular" | "premium" | undefined;
5232
5298
  } | undefined;
5233
5299
  vonageCredentials?: {
5234
5300
  apiKey: string;
@@ -5260,6 +5326,7 @@ export declare const channelContract: {
5260
5326
  channelId?: string | undefined;
5261
5327
  status?: "active" | "pending" | undefined;
5262
5328
  apiKey?: string | undefined;
5329
+ tier?: "basic" | "regular" | "premium" | undefined;
5263
5330
  } | undefined;
5264
5331
  vonageCredentials?: {
5265
5332
  apiKey: string;
@@ -5291,6 +5358,7 @@ export declare const channelContract: {
5291
5358
  channelId?: string | undefined;
5292
5359
  status?: "active" | "pending" | undefined;
5293
5360
  apiKey?: string | undefined;
5361
+ tier?: "basic" | "regular" | "premium" | undefined;
5294
5362
  } | undefined;
5295
5363
  vonageCredentials?: {
5296
5364
  apiKey: string;
@@ -5332,6 +5400,7 @@ export declare const channelContract: {
5332
5400
  channelId: z.ZodOptional<z.ZodString>;
5333
5401
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
5334
5402
  apiKey: z.ZodOptional<z.ZodString>;
5403
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
5335
5404
  }, "strip", z.ZodTypeAny, {
5336
5405
  email: string;
5337
5406
  wabaExternalId: string;
@@ -5341,6 +5410,7 @@ export declare const channelContract: {
5341
5410
  channelId?: string | undefined;
5342
5411
  status?: "active" | "pending" | undefined;
5343
5412
  apiKey?: string | undefined;
5413
+ tier?: "basic" | "regular" | "premium" | undefined;
5344
5414
  }, {
5345
5415
  email: string;
5346
5416
  wabaExternalId: string;
@@ -5350,6 +5420,7 @@ export declare const channelContract: {
5350
5420
  channelId?: string | undefined;
5351
5421
  status?: "active" | "pending" | undefined;
5352
5422
  apiKey?: string | undefined;
5423
+ tier?: "basic" | "regular" | "premium" | undefined;
5353
5424
  }>>;
5354
5425
  vonageCredentials: z.ZodOptional<z.ZodObject<{
5355
5426
  mobileNumber: z.ZodString;
@@ -5382,6 +5453,7 @@ export declare const channelContract: {
5382
5453
  channelId?: string | undefined;
5383
5454
  status?: "active" | "pending" | undefined;
5384
5455
  apiKey?: string | undefined;
5456
+ tier?: "basic" | "regular" | "premium" | undefined;
5385
5457
  } | undefined;
5386
5458
  vonageCredentials?: {
5387
5459
  apiKey: string;
@@ -5406,6 +5478,7 @@ export declare const channelContract: {
5406
5478
  channelId?: string | undefined;
5407
5479
  status?: "active" | "pending" | undefined;
5408
5480
  apiKey?: string | undefined;
5481
+ tier?: "basic" | "regular" | "premium" | undefined;
5409
5482
  } | undefined;
5410
5483
  vonageCredentials?: {
5411
5484
  apiKey: string;
@@ -5664,6 +5737,7 @@ export declare const channelContract: {
5664
5737
  channelId?: string | undefined;
5665
5738
  status?: "active" | "pending" | undefined;
5666
5739
  apiKey?: string | undefined;
5740
+ tier?: "basic" | "regular" | "premium" | undefined;
5667
5741
  } | undefined;
5668
5742
  vonageCredentials?: {
5669
5743
  apiKey: string;
@@ -5753,6 +5827,7 @@ export declare const channelContract: {
5753
5827
  channelId?: string | undefined;
5754
5828
  status?: "active" | "pending" | undefined;
5755
5829
  apiKey?: string | undefined;
5830
+ tier?: "basic" | "regular" | "premium" | undefined;
5756
5831
  } | undefined;
5757
5832
  vonageCredentials?: {
5758
5833
  apiKey: string;
@@ -5844,6 +5919,7 @@ export declare const channelContract: {
5844
5919
  channelId?: string | undefined;
5845
5920
  status?: "active" | "pending" | undefined;
5846
5921
  apiKey?: string | undefined;
5922
+ tier?: "basic" | "regular" | "premium" | undefined;
5847
5923
  } | undefined;
5848
5924
  vonageCredentials?: {
5849
5925
  apiKey: string;
@@ -5936,6 +6012,7 @@ export declare const channelContract: {
5936
6012
  channelId?: string | undefined;
5937
6013
  status?: "active" | "pending" | undefined;
5938
6014
  apiKey?: string | undefined;
6015
+ tier?: "basic" | "regular" | "premium" | undefined;
5939
6016
  } | undefined;
5940
6017
  vonageCredentials?: {
5941
6018
  apiKey: string;
@@ -6308,6 +6385,7 @@ export declare const channelContract: {
6308
6385
  channelId: z.ZodOptional<z.ZodString>;
6309
6386
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
6310
6387
  apiKey: z.ZodOptional<z.ZodString>;
6388
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
6311
6389
  }, "strip", z.ZodTypeAny, {
6312
6390
  email: string;
6313
6391
  wabaExternalId: string;
@@ -6317,6 +6395,7 @@ export declare const channelContract: {
6317
6395
  channelId?: string | undefined;
6318
6396
  status?: "active" | "pending" | undefined;
6319
6397
  apiKey?: string | undefined;
6398
+ tier?: "basic" | "regular" | "premium" | undefined;
6320
6399
  }, {
6321
6400
  email: string;
6322
6401
  wabaExternalId: string;
@@ -6326,6 +6405,7 @@ export declare const channelContract: {
6326
6405
  channelId?: string | undefined;
6327
6406
  status?: "active" | "pending" | undefined;
6328
6407
  apiKey?: string | undefined;
6408
+ tier?: "basic" | "regular" | "premium" | undefined;
6329
6409
  }>>;
6330
6410
  vonageCredentials: z.ZodOptional<z.ZodObject<{
6331
6411
  mobileNumber: z.ZodString;
@@ -6358,6 +6438,7 @@ export declare const channelContract: {
6358
6438
  channelId?: string | undefined;
6359
6439
  status?: "active" | "pending" | undefined;
6360
6440
  apiKey?: string | undefined;
6441
+ tier?: "basic" | "regular" | "premium" | undefined;
6361
6442
  } | undefined;
6362
6443
  vonageCredentials?: {
6363
6444
  apiKey: string;
@@ -6382,6 +6463,7 @@ export declare const channelContract: {
6382
6463
  channelId?: string | undefined;
6383
6464
  status?: "active" | "pending" | undefined;
6384
6465
  apiKey?: string | undefined;
6466
+ tier?: "basic" | "regular" | "premium" | undefined;
6385
6467
  } | undefined;
6386
6468
  vonageCredentials?: {
6387
6469
  apiKey: string;
@@ -6413,6 +6495,7 @@ export declare const channelContract: {
6413
6495
  channelId?: string | undefined;
6414
6496
  status?: "active" | "pending" | undefined;
6415
6497
  apiKey?: string | undefined;
6498
+ tier?: "basic" | "regular" | "premium" | undefined;
6416
6499
  } | undefined;
6417
6500
  vonageCredentials?: {
6418
6501
  apiKey: string;
@@ -6444,6 +6527,7 @@ export declare const channelContract: {
6444
6527
  channelId?: string | undefined;
6445
6528
  status?: "active" | "pending" | undefined;
6446
6529
  apiKey?: string | undefined;
6530
+ tier?: "basic" | "regular" | "premium" | undefined;
6447
6531
  } | undefined;
6448
6532
  vonageCredentials?: {
6449
6533
  apiKey: string;
@@ -6485,6 +6569,7 @@ export declare const channelContract: {
6485
6569
  channelId: z.ZodOptional<z.ZodString>;
6486
6570
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
6487
6571
  apiKey: z.ZodOptional<z.ZodString>;
6572
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
6488
6573
  }, "strip", z.ZodTypeAny, {
6489
6574
  email: string;
6490
6575
  wabaExternalId: string;
@@ -6494,6 +6579,7 @@ export declare const channelContract: {
6494
6579
  channelId?: string | undefined;
6495
6580
  status?: "active" | "pending" | undefined;
6496
6581
  apiKey?: string | undefined;
6582
+ tier?: "basic" | "regular" | "premium" | undefined;
6497
6583
  }, {
6498
6584
  email: string;
6499
6585
  wabaExternalId: string;
@@ -6503,6 +6589,7 @@ export declare const channelContract: {
6503
6589
  channelId?: string | undefined;
6504
6590
  status?: "active" | "pending" | undefined;
6505
6591
  apiKey?: string | undefined;
6592
+ tier?: "basic" | "regular" | "premium" | undefined;
6506
6593
  }>>;
6507
6594
  vonageCredentials: z.ZodOptional<z.ZodObject<{
6508
6595
  mobileNumber: z.ZodString;
@@ -6535,6 +6622,7 @@ export declare const channelContract: {
6535
6622
  channelId?: string | undefined;
6536
6623
  status?: "active" | "pending" | undefined;
6537
6624
  apiKey?: string | undefined;
6625
+ tier?: "basic" | "regular" | "premium" | undefined;
6538
6626
  } | undefined;
6539
6627
  vonageCredentials?: {
6540
6628
  apiKey: string;
@@ -6559,6 +6647,7 @@ export declare const channelContract: {
6559
6647
  channelId?: string | undefined;
6560
6648
  status?: "active" | "pending" | undefined;
6561
6649
  apiKey?: string | undefined;
6650
+ tier?: "basic" | "regular" | "premium" | undefined;
6562
6651
  } | undefined;
6563
6652
  vonageCredentials?: {
6564
6653
  apiKey: string;
@@ -6817,6 +6906,7 @@ export declare const channelContract: {
6817
6906
  channelId?: string | undefined;
6818
6907
  status?: "active" | "pending" | undefined;
6819
6908
  apiKey?: string | undefined;
6909
+ tier?: "basic" | "regular" | "premium" | undefined;
6820
6910
  } | undefined;
6821
6911
  vonageCredentials?: {
6822
6912
  apiKey: string;
@@ -6906,6 +6996,7 @@ export declare const channelContract: {
6906
6996
  channelId?: string | undefined;
6907
6997
  status?: "active" | "pending" | undefined;
6908
6998
  apiKey?: string | undefined;
6999
+ tier?: "basic" | "regular" | "premium" | undefined;
6909
7000
  } | undefined;
6910
7001
  vonageCredentials?: {
6911
7002
  apiKey: string;
@@ -6997,6 +7088,7 @@ export declare const channelContract: {
6997
7088
  channelId?: string | undefined;
6998
7089
  status?: "active" | "pending" | undefined;
6999
7090
  apiKey?: string | undefined;
7091
+ tier?: "basic" | "regular" | "premium" | undefined;
7000
7092
  } | undefined;
7001
7093
  vonageCredentials?: {
7002
7094
  apiKey: string;
@@ -7089,6 +7181,7 @@ export declare const channelContract: {
7089
7181
  channelId?: string | undefined;
7090
7182
  status?: "active" | "pending" | undefined;
7091
7183
  apiKey?: string | undefined;
7184
+ tier?: "basic" | "regular" | "premium" | undefined;
7092
7185
  } | undefined;
7093
7186
  vonageCredentials?: {
7094
7187
  apiKey: string;
@@ -7231,6 +7324,7 @@ export declare const channelContract: {
7231
7324
  channelId: z.ZodOptional<z.ZodString>;
7232
7325
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
7233
7326
  apiKey: z.ZodOptional<z.ZodString>;
7327
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
7234
7328
  }, "strip", z.ZodTypeAny, {
7235
7329
  email: string;
7236
7330
  wabaExternalId: string;
@@ -7240,6 +7334,7 @@ export declare const channelContract: {
7240
7334
  channelId?: string | undefined;
7241
7335
  status?: "active" | "pending" | undefined;
7242
7336
  apiKey?: string | undefined;
7337
+ tier?: "basic" | "regular" | "premium" | undefined;
7243
7338
  }, {
7244
7339
  email: string;
7245
7340
  wabaExternalId: string;
@@ -7249,6 +7344,7 @@ export declare const channelContract: {
7249
7344
  channelId?: string | undefined;
7250
7345
  status?: "active" | "pending" | undefined;
7251
7346
  apiKey?: string | undefined;
7347
+ tier?: "basic" | "regular" | "premium" | undefined;
7252
7348
  }>>;
7253
7349
  vonageCredentials: z.ZodOptional<z.ZodObject<{
7254
7350
  mobileNumber: z.ZodString;
@@ -7281,6 +7377,7 @@ export declare const channelContract: {
7281
7377
  channelId?: string | undefined;
7282
7378
  status?: "active" | "pending" | undefined;
7283
7379
  apiKey?: string | undefined;
7380
+ tier?: "basic" | "regular" | "premium" | undefined;
7284
7381
  } | undefined;
7285
7382
  vonageCredentials?: {
7286
7383
  apiKey: string;
@@ -7305,6 +7402,7 @@ export declare const channelContract: {
7305
7402
  channelId?: string | undefined;
7306
7403
  status?: "active" | "pending" | undefined;
7307
7404
  apiKey?: string | undefined;
7405
+ tier?: "basic" | "regular" | "premium" | undefined;
7308
7406
  } | undefined;
7309
7407
  vonageCredentials?: {
7310
7408
  apiKey: string;
@@ -7563,6 +7661,7 @@ export declare const channelContract: {
7563
7661
  channelId?: string | undefined;
7564
7662
  status?: "active" | "pending" | undefined;
7565
7663
  apiKey?: string | undefined;
7664
+ tier?: "basic" | "regular" | "premium" | undefined;
7566
7665
  } | undefined;
7567
7666
  vonageCredentials?: {
7568
7667
  apiKey: string;
@@ -7652,6 +7751,7 @@ export declare const channelContract: {
7652
7751
  channelId?: string | undefined;
7653
7752
  status?: "active" | "pending" | undefined;
7654
7753
  apiKey?: string | undefined;
7754
+ tier?: "basic" | "regular" | "premium" | undefined;
7655
7755
  } | undefined;
7656
7756
  vonageCredentials?: {
7657
7757
  apiKey: string;
@@ -7743,6 +7843,7 @@ export declare const channelContract: {
7743
7843
  channelId?: string | undefined;
7744
7844
  status?: "active" | "pending" | undefined;
7745
7845
  apiKey?: string | undefined;
7846
+ tier?: "basic" | "regular" | "premium" | undefined;
7746
7847
  } | undefined;
7747
7848
  vonageCredentials?: {
7748
7849
  apiKey: string;
@@ -7835,6 +7936,7 @@ export declare const channelContract: {
7835
7936
  channelId?: string | undefined;
7836
7937
  status?: "active" | "pending" | undefined;
7837
7938
  apiKey?: string | undefined;
7939
+ tier?: "basic" | "regular" | "premium" | undefined;
7838
7940
  } | undefined;
7839
7941
  vonageCredentials?: {
7840
7942
  apiKey: string;
@@ -7987,6 +8089,7 @@ export declare const channelContract: {
7987
8089
  channelId: z.ZodOptional<z.ZodString>;
7988
8090
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
7989
8091
  apiKey: z.ZodOptional<z.ZodString>;
8092
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
7990
8093
  }, "strip", z.ZodTypeAny, {
7991
8094
  email: string;
7992
8095
  wabaExternalId: string;
@@ -7996,6 +8099,7 @@ export declare const channelContract: {
7996
8099
  channelId?: string | undefined;
7997
8100
  status?: "active" | "pending" | undefined;
7998
8101
  apiKey?: string | undefined;
8102
+ tier?: "basic" | "regular" | "premium" | undefined;
7999
8103
  }, {
8000
8104
  email: string;
8001
8105
  wabaExternalId: string;
@@ -8005,6 +8109,7 @@ export declare const channelContract: {
8005
8109
  channelId?: string | undefined;
8006
8110
  status?: "active" | "pending" | undefined;
8007
8111
  apiKey?: string | undefined;
8112
+ tier?: "basic" | "regular" | "premium" | undefined;
8008
8113
  }>>;
8009
8114
  vonageCredentials: z.ZodOptional<z.ZodObject<{
8010
8115
  mobileNumber: z.ZodString;
@@ -8037,6 +8142,7 @@ export declare const channelContract: {
8037
8142
  channelId?: string | undefined;
8038
8143
  status?: "active" | "pending" | undefined;
8039
8144
  apiKey?: string | undefined;
8145
+ tier?: "basic" | "regular" | "premium" | undefined;
8040
8146
  } | undefined;
8041
8147
  vonageCredentials?: {
8042
8148
  apiKey: string;
@@ -8061,6 +8167,7 @@ export declare const channelContract: {
8061
8167
  channelId?: string | undefined;
8062
8168
  status?: "active" | "pending" | undefined;
8063
8169
  apiKey?: string | undefined;
8170
+ tier?: "basic" | "regular" | "premium" | undefined;
8064
8171
  } | undefined;
8065
8172
  vonageCredentials?: {
8066
8173
  apiKey: string;
@@ -8319,6 +8426,7 @@ export declare const channelContract: {
8319
8426
  channelId?: string | undefined;
8320
8427
  status?: "active" | "pending" | undefined;
8321
8428
  apiKey?: string | undefined;
8429
+ tier?: "basic" | "regular" | "premium" | undefined;
8322
8430
  } | undefined;
8323
8431
  vonageCredentials?: {
8324
8432
  apiKey: string;
@@ -8408,6 +8516,7 @@ export declare const channelContract: {
8408
8516
  channelId?: string | undefined;
8409
8517
  status?: "active" | "pending" | undefined;
8410
8518
  apiKey?: string | undefined;
8519
+ tier?: "basic" | "regular" | "premium" | undefined;
8411
8520
  } | undefined;
8412
8521
  vonageCredentials?: {
8413
8522
  apiKey: string;
@@ -8499,6 +8608,7 @@ export declare const channelContract: {
8499
8608
  channelId?: string | undefined;
8500
8609
  status?: "active" | "pending" | undefined;
8501
8610
  apiKey?: string | undefined;
8611
+ tier?: "basic" | "regular" | "premium" | undefined;
8502
8612
  } | undefined;
8503
8613
  vonageCredentials?: {
8504
8614
  apiKey: string;
@@ -8591,6 +8701,7 @@ export declare const channelContract: {
8591
8701
  channelId?: string | undefined;
8592
8702
  status?: "active" | "pending" | undefined;
8593
8703
  apiKey?: string | undefined;
8704
+ tier?: "basic" | "regular" | "premium" | undefined;
8594
8705
  } | undefined;
8595
8706
  vonageCredentials?: {
8596
8707
  apiKey: string;
@@ -8793,6 +8904,7 @@ export declare const channelContract: {
8793
8904
  channelId: z.ZodOptional<z.ZodString>;
8794
8905
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
8795
8906
  apiKey: z.ZodOptional<z.ZodString>;
8907
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
8796
8908
  }, "strip", z.ZodTypeAny, {
8797
8909
  email: string;
8798
8910
  wabaExternalId: string;
@@ -8802,6 +8914,7 @@ export declare const channelContract: {
8802
8914
  channelId?: string | undefined;
8803
8915
  status?: "active" | "pending" | undefined;
8804
8916
  apiKey?: string | undefined;
8917
+ tier?: "basic" | "regular" | "premium" | undefined;
8805
8918
  }, {
8806
8919
  email: string;
8807
8920
  wabaExternalId: string;
@@ -8811,6 +8924,7 @@ export declare const channelContract: {
8811
8924
  channelId?: string | undefined;
8812
8925
  status?: "active" | "pending" | undefined;
8813
8926
  apiKey?: string | undefined;
8927
+ tier?: "basic" | "regular" | "premium" | undefined;
8814
8928
  }>>;
8815
8929
  vonageCredentials: z.ZodOptional<z.ZodObject<{
8816
8930
  mobileNumber: z.ZodString;
@@ -8843,6 +8957,7 @@ export declare const channelContract: {
8843
8957
  channelId?: string | undefined;
8844
8958
  status?: "active" | "pending" | undefined;
8845
8959
  apiKey?: string | undefined;
8960
+ tier?: "basic" | "regular" | "premium" | undefined;
8846
8961
  } | undefined;
8847
8962
  vonageCredentials?: {
8848
8963
  apiKey: string;
@@ -8867,6 +8982,7 @@ export declare const channelContract: {
8867
8982
  channelId?: string | undefined;
8868
8983
  status?: "active" | "pending" | undefined;
8869
8984
  apiKey?: string | undefined;
8985
+ tier?: "basic" | "regular" | "premium" | undefined;
8870
8986
  } | undefined;
8871
8987
  vonageCredentials?: {
8872
8988
  apiKey: string;
@@ -9125,6 +9241,7 @@ export declare const channelContract: {
9125
9241
  channelId?: string | undefined;
9126
9242
  status?: "active" | "pending" | undefined;
9127
9243
  apiKey?: string | undefined;
9244
+ tier?: "basic" | "regular" | "premium" | undefined;
9128
9245
  } | undefined;
9129
9246
  vonageCredentials?: {
9130
9247
  apiKey: string;
@@ -9214,6 +9331,7 @@ export declare const channelContract: {
9214
9331
  channelId?: string | undefined;
9215
9332
  status?: "active" | "pending" | undefined;
9216
9333
  apiKey?: string | undefined;
9334
+ tier?: "basic" | "regular" | "premium" | undefined;
9217
9335
  } | undefined;
9218
9336
  vonageCredentials?: {
9219
9337
  apiKey: string;
@@ -9305,6 +9423,7 @@ export declare const channelContract: {
9305
9423
  channelId?: string | undefined;
9306
9424
  status?: "active" | "pending" | undefined;
9307
9425
  apiKey?: string | undefined;
9426
+ tier?: "basic" | "regular" | "premium" | undefined;
9308
9427
  } | undefined;
9309
9428
  vonageCredentials?: {
9310
9429
  apiKey: string;
@@ -9397,6 +9516,7 @@ export declare const channelContract: {
9397
9516
  channelId?: string | undefined;
9398
9517
  status?: "active" | "pending" | undefined;
9399
9518
  apiKey?: string | undefined;
9519
+ tier?: "basic" | "regular" | "premium" | undefined;
9400
9520
  } | undefined;
9401
9521
  vonageCredentials?: {
9402
9522
  apiKey: string;
@@ -9761,6 +9881,7 @@ export declare const channelContract: {
9761
9881
  channelId: z.ZodOptional<z.ZodString>;
9762
9882
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
9763
9883
  apiKey: z.ZodOptional<z.ZodString>;
9884
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
9764
9885
  }, "strip", z.ZodTypeAny, {
9765
9886
  email: string;
9766
9887
  wabaExternalId: string;
@@ -9770,6 +9891,7 @@ export declare const channelContract: {
9770
9891
  channelId?: string | undefined;
9771
9892
  status?: "active" | "pending" | undefined;
9772
9893
  apiKey?: string | undefined;
9894
+ tier?: "basic" | "regular" | "premium" | undefined;
9773
9895
  }, {
9774
9896
  email: string;
9775
9897
  wabaExternalId: string;
@@ -9779,6 +9901,7 @@ export declare const channelContract: {
9779
9901
  channelId?: string | undefined;
9780
9902
  status?: "active" | "pending" | undefined;
9781
9903
  apiKey?: string | undefined;
9904
+ tier?: "basic" | "regular" | "premium" | undefined;
9782
9905
  }>>;
9783
9906
  vonageCredentials: z.ZodOptional<z.ZodObject<{
9784
9907
  mobileNumber: z.ZodString;
@@ -9811,6 +9934,7 @@ export declare const channelContract: {
9811
9934
  channelId?: string | undefined;
9812
9935
  status?: "active" | "pending" | undefined;
9813
9936
  apiKey?: string | undefined;
9937
+ tier?: "basic" | "regular" | "premium" | undefined;
9814
9938
  } | undefined;
9815
9939
  vonageCredentials?: {
9816
9940
  apiKey: string;
@@ -9835,6 +9959,7 @@ export declare const channelContract: {
9835
9959
  channelId?: string | undefined;
9836
9960
  status?: "active" | "pending" | undefined;
9837
9961
  apiKey?: string | undefined;
9962
+ tier?: "basic" | "regular" | "premium" | undefined;
9838
9963
  } | undefined;
9839
9964
  vonageCredentials?: {
9840
9965
  apiKey: string;
@@ -9866,6 +9991,7 @@ export declare const channelContract: {
9866
9991
  channelId?: string | undefined;
9867
9992
  status?: "active" | "pending" | undefined;
9868
9993
  apiKey?: string | undefined;
9994
+ tier?: "basic" | "regular" | "premium" | undefined;
9869
9995
  } | undefined;
9870
9996
  vonageCredentials?: {
9871
9997
  apiKey: string;
@@ -9897,6 +10023,7 @@ export declare const channelContract: {
9897
10023
  channelId?: string | undefined;
9898
10024
  status?: "active" | "pending" | undefined;
9899
10025
  apiKey?: string | undefined;
10026
+ tier?: "basic" | "regular" | "premium" | undefined;
9900
10027
  } | undefined;
9901
10028
  vonageCredentials?: {
9902
10029
  apiKey: string;
@@ -9938,6 +10065,7 @@ export declare const channelContract: {
9938
10065
  channelId: z.ZodOptional<z.ZodString>;
9939
10066
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
9940
10067
  apiKey: z.ZodOptional<z.ZodString>;
10068
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
9941
10069
  }, "strip", z.ZodTypeAny, {
9942
10070
  email: string;
9943
10071
  wabaExternalId: string;
@@ -9947,6 +10075,7 @@ export declare const channelContract: {
9947
10075
  channelId?: string | undefined;
9948
10076
  status?: "active" | "pending" | undefined;
9949
10077
  apiKey?: string | undefined;
10078
+ tier?: "basic" | "regular" | "premium" | undefined;
9950
10079
  }, {
9951
10080
  email: string;
9952
10081
  wabaExternalId: string;
@@ -9956,6 +10085,7 @@ export declare const channelContract: {
9956
10085
  channelId?: string | undefined;
9957
10086
  status?: "active" | "pending" | undefined;
9958
10087
  apiKey?: string | undefined;
10088
+ tier?: "basic" | "regular" | "premium" | undefined;
9959
10089
  }>>;
9960
10090
  vonageCredentials: z.ZodOptional<z.ZodObject<{
9961
10091
  mobileNumber: z.ZodString;
@@ -9988,6 +10118,7 @@ export declare const channelContract: {
9988
10118
  channelId?: string | undefined;
9989
10119
  status?: "active" | "pending" | undefined;
9990
10120
  apiKey?: string | undefined;
10121
+ tier?: "basic" | "regular" | "premium" | undefined;
9991
10122
  } | undefined;
9992
10123
  vonageCredentials?: {
9993
10124
  apiKey: string;
@@ -10012,6 +10143,7 @@ export declare const channelContract: {
10012
10143
  channelId?: string | undefined;
10013
10144
  status?: "active" | "pending" | undefined;
10014
10145
  apiKey?: string | undefined;
10146
+ tier?: "basic" | "regular" | "premium" | undefined;
10015
10147
  } | undefined;
10016
10148
  vonageCredentials?: {
10017
10149
  apiKey: string;
@@ -10270,6 +10402,7 @@ export declare const channelContract: {
10270
10402
  channelId?: string | undefined;
10271
10403
  status?: "active" | "pending" | undefined;
10272
10404
  apiKey?: string | undefined;
10405
+ tier?: "basic" | "regular" | "premium" | undefined;
10273
10406
  } | undefined;
10274
10407
  vonageCredentials?: {
10275
10408
  apiKey: string;
@@ -10359,6 +10492,7 @@ export declare const channelContract: {
10359
10492
  channelId?: string | undefined;
10360
10493
  status?: "active" | "pending" | undefined;
10361
10494
  apiKey?: string | undefined;
10495
+ tier?: "basic" | "regular" | "premium" | undefined;
10362
10496
  } | undefined;
10363
10497
  vonageCredentials?: {
10364
10498
  apiKey: string;
@@ -10450,6 +10584,7 @@ export declare const channelContract: {
10450
10584
  channelId?: string | undefined;
10451
10585
  status?: "active" | "pending" | undefined;
10452
10586
  apiKey?: string | undefined;
10587
+ tier?: "basic" | "regular" | "premium" | undefined;
10453
10588
  } | undefined;
10454
10589
  vonageCredentials?: {
10455
10590
  apiKey: string;
@@ -10542,6 +10677,7 @@ export declare const channelContract: {
10542
10677
  channelId?: string | undefined;
10543
10678
  status?: "active" | "pending" | undefined;
10544
10679
  apiKey?: string | undefined;
10680
+ tier?: "basic" | "regular" | "premium" | undefined;
10545
10681
  } | undefined;
10546
10682
  vonageCredentials?: {
10547
10683
  apiKey: string;
@@ -10665,6 +10801,7 @@ export declare const channelContract: {
10665
10801
  channelId: z.ZodOptional<z.ZodString>;
10666
10802
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
10667
10803
  apiKey: z.ZodOptional<z.ZodString>;
10804
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
10668
10805
  }, "strip", z.ZodTypeAny, {
10669
10806
  email: string;
10670
10807
  wabaExternalId: string;
@@ -10674,6 +10811,7 @@ export declare const channelContract: {
10674
10811
  channelId?: string | undefined;
10675
10812
  status?: "active" | "pending" | undefined;
10676
10813
  apiKey?: string | undefined;
10814
+ tier?: "basic" | "regular" | "premium" | undefined;
10677
10815
  }, {
10678
10816
  email: string;
10679
10817
  wabaExternalId: string;
@@ -10683,6 +10821,7 @@ export declare const channelContract: {
10683
10821
  channelId?: string | undefined;
10684
10822
  status?: "active" | "pending" | undefined;
10685
10823
  apiKey?: string | undefined;
10824
+ tier?: "basic" | "regular" | "premium" | undefined;
10686
10825
  }>>;
10687
10826
  vonageCredentials: z.ZodOptional<z.ZodObject<{
10688
10827
  mobileNumber: z.ZodString;
@@ -10715,6 +10854,7 @@ export declare const channelContract: {
10715
10854
  channelId?: string | undefined;
10716
10855
  status?: "active" | "pending" | undefined;
10717
10856
  apiKey?: string | undefined;
10857
+ tier?: "basic" | "regular" | "premium" | undefined;
10718
10858
  } | undefined;
10719
10859
  vonageCredentials?: {
10720
10860
  apiKey: string;
@@ -10739,6 +10879,7 @@ export declare const channelContract: {
10739
10879
  channelId?: string | undefined;
10740
10880
  status?: "active" | "pending" | undefined;
10741
10881
  apiKey?: string | undefined;
10882
+ tier?: "basic" | "regular" | "premium" | undefined;
10742
10883
  } | undefined;
10743
10884
  vonageCredentials?: {
10744
10885
  apiKey: string;
@@ -10768,6 +10909,7 @@ export declare const channelContract: {
10768
10909
  channelId?: string | undefined;
10769
10910
  status?: "active" | "pending" | undefined;
10770
10911
  apiKey?: string | undefined;
10912
+ tier?: "basic" | "regular" | "premium" | undefined;
10771
10913
  } | undefined;
10772
10914
  vonageCredentials?: {
10773
10915
  apiKey: string;
@@ -10797,6 +10939,7 @@ export declare const channelContract: {
10797
10939
  channelId?: string | undefined;
10798
10940
  status?: "active" | "pending" | undefined;
10799
10941
  apiKey?: string | undefined;
10942
+ tier?: "basic" | "regular" | "premium" | undefined;
10800
10943
  } | undefined;
10801
10944
  vonageCredentials?: {
10802
10945
  apiKey: string;
@@ -10836,6 +10979,7 @@ export declare const channelContract: {
10836
10979
  channelId: z.ZodOptional<z.ZodString>;
10837
10980
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
10838
10981
  apiKey: z.ZodOptional<z.ZodString>;
10982
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
10839
10983
  }, "strip", z.ZodTypeAny, {
10840
10984
  email: string;
10841
10985
  wabaExternalId: string;
@@ -10845,6 +10989,7 @@ export declare const channelContract: {
10845
10989
  channelId?: string | undefined;
10846
10990
  status?: "active" | "pending" | undefined;
10847
10991
  apiKey?: string | undefined;
10992
+ tier?: "basic" | "regular" | "premium" | undefined;
10848
10993
  }, {
10849
10994
  email: string;
10850
10995
  wabaExternalId: string;
@@ -10854,6 +10999,7 @@ export declare const channelContract: {
10854
10999
  channelId?: string | undefined;
10855
11000
  status?: "active" | "pending" | undefined;
10856
11001
  apiKey?: string | undefined;
11002
+ tier?: "basic" | "regular" | "premium" | undefined;
10857
11003
  }>>;
10858
11004
  vonageCredentials: z.ZodOptional<z.ZodObject<{
10859
11005
  mobileNumber: z.ZodString;
@@ -10886,6 +11032,7 @@ export declare const channelContract: {
10886
11032
  channelId?: string | undefined;
10887
11033
  status?: "active" | "pending" | undefined;
10888
11034
  apiKey?: string | undefined;
11035
+ tier?: "basic" | "regular" | "premium" | undefined;
10889
11036
  } | undefined;
10890
11037
  vonageCredentials?: {
10891
11038
  apiKey: string;
@@ -10910,6 +11057,7 @@ export declare const channelContract: {
10910
11057
  channelId?: string | undefined;
10911
11058
  status?: "active" | "pending" | undefined;
10912
11059
  apiKey?: string | undefined;
11060
+ tier?: "basic" | "regular" | "premium" | undefined;
10913
11061
  } | undefined;
10914
11062
  vonageCredentials?: {
10915
11063
  apiKey: string;
@@ -11168,6 +11316,7 @@ export declare const channelContract: {
11168
11316
  channelId?: string | undefined;
11169
11317
  status?: "active" | "pending" | undefined;
11170
11318
  apiKey?: string | undefined;
11319
+ tier?: "basic" | "regular" | "premium" | undefined;
11171
11320
  } | undefined;
11172
11321
  vonageCredentials?: {
11173
11322
  apiKey: string;
@@ -11257,6 +11406,7 @@ export declare const channelContract: {
11257
11406
  channelId?: string | undefined;
11258
11407
  status?: "active" | "pending" | undefined;
11259
11408
  apiKey?: string | undefined;
11409
+ tier?: "basic" | "regular" | "premium" | undefined;
11260
11410
  } | undefined;
11261
11411
  vonageCredentials?: {
11262
11412
  apiKey: string;
@@ -11348,6 +11498,7 @@ export declare const channelContract: {
11348
11498
  channelId?: string | undefined;
11349
11499
  status?: "active" | "pending" | undefined;
11350
11500
  apiKey?: string | undefined;
11501
+ tier?: "basic" | "regular" | "premium" | undefined;
11351
11502
  } | undefined;
11352
11503
  vonageCredentials?: {
11353
11504
  apiKey: string;
@@ -11440,6 +11591,7 @@ export declare const channelContract: {
11440
11591
  channelId?: string | undefined;
11441
11592
  status?: "active" | "pending" | undefined;
11442
11593
  apiKey?: string | undefined;
11594
+ tier?: "basic" | "regular" | "premium" | undefined;
11443
11595
  } | undefined;
11444
11596
  vonageCredentials?: {
11445
11597
  apiKey: string;
@@ -11663,6 +11815,7 @@ export declare const channelBotContract: {
11663
11815
  channelId: z.ZodOptional<z.ZodString>;
11664
11816
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
11665
11817
  apiKey: z.ZodOptional<z.ZodString>;
11818
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
11666
11819
  }, "strip", z.ZodTypeAny, {
11667
11820
  email: string;
11668
11821
  wabaExternalId: string;
@@ -11672,6 +11825,7 @@ export declare const channelBotContract: {
11672
11825
  channelId?: string | undefined;
11673
11826
  status?: "active" | "pending" | undefined;
11674
11827
  apiKey?: string | undefined;
11828
+ tier?: "basic" | "regular" | "premium" | undefined;
11675
11829
  }, {
11676
11830
  email: string;
11677
11831
  wabaExternalId: string;
@@ -11681,6 +11835,7 @@ export declare const channelBotContract: {
11681
11835
  channelId?: string | undefined;
11682
11836
  status?: "active" | "pending" | undefined;
11683
11837
  apiKey?: string | undefined;
11838
+ tier?: "basic" | "regular" | "premium" | undefined;
11684
11839
  }>>;
11685
11840
  vonageCredentials: z.ZodOptional<z.ZodObject<{
11686
11841
  mobileNumber: z.ZodString;
@@ -11713,6 +11868,7 @@ export declare const channelBotContract: {
11713
11868
  channelId?: string | undefined;
11714
11869
  status?: "active" | "pending" | undefined;
11715
11870
  apiKey?: string | undefined;
11871
+ tier?: "basic" | "regular" | "premium" | undefined;
11716
11872
  } | undefined;
11717
11873
  vonageCredentials?: {
11718
11874
  apiKey: string;
@@ -11737,6 +11893,7 @@ export declare const channelBotContract: {
11737
11893
  channelId?: string | undefined;
11738
11894
  status?: "active" | "pending" | undefined;
11739
11895
  apiKey?: string | undefined;
11896
+ tier?: "basic" | "regular" | "premium" | undefined;
11740
11897
  } | undefined;
11741
11898
  vonageCredentials?: {
11742
11899
  apiKey: string;
@@ -11995,6 +12152,7 @@ export declare const channelBotContract: {
11995
12152
  channelId?: string | undefined;
11996
12153
  status?: "active" | "pending" | undefined;
11997
12154
  apiKey?: string | undefined;
12155
+ tier?: "basic" | "regular" | "premium" | undefined;
11998
12156
  } | undefined;
11999
12157
  vonageCredentials?: {
12000
12158
  apiKey: string;
@@ -12084,6 +12242,7 @@ export declare const channelBotContract: {
12084
12242
  channelId?: string | undefined;
12085
12243
  status?: "active" | "pending" | undefined;
12086
12244
  apiKey?: string | undefined;
12245
+ tier?: "basic" | "regular" | "premium" | undefined;
12087
12246
  } | undefined;
12088
12247
  vonageCredentials?: {
12089
12248
  apiKey: string;
@@ -12175,6 +12334,7 @@ export declare const channelBotContract: {
12175
12334
  channelId?: string | undefined;
12176
12335
  status?: "active" | "pending" | undefined;
12177
12336
  apiKey?: string | undefined;
12337
+ tier?: "basic" | "regular" | "premium" | undefined;
12178
12338
  } | undefined;
12179
12339
  vonageCredentials?: {
12180
12340
  apiKey: string;
@@ -12267,6 +12427,7 @@ export declare const channelBotContract: {
12267
12427
  channelId?: string | undefined;
12268
12428
  status?: "active" | "pending" | undefined;
12269
12429
  apiKey?: string | undefined;
12430
+ tier?: "basic" | "regular" | "premium" | undefined;
12270
12431
  } | undefined;
12271
12432
  vonageCredentials?: {
12272
12433
  apiKey: string;
@@ -12391,6 +12552,7 @@ export declare const channelBotContract: {
12391
12552
  channelId: z.ZodOptional<z.ZodString>;
12392
12553
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
12393
12554
  apiKey: z.ZodOptional<z.ZodString>;
12555
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
12394
12556
  }, "strip", z.ZodTypeAny, {
12395
12557
  email: string;
12396
12558
  wabaExternalId: string;
@@ -12400,6 +12562,7 @@ export declare const channelBotContract: {
12400
12562
  channelId?: string | undefined;
12401
12563
  status?: "active" | "pending" | undefined;
12402
12564
  apiKey?: string | undefined;
12565
+ tier?: "basic" | "regular" | "premium" | undefined;
12403
12566
  }, {
12404
12567
  email: string;
12405
12568
  wabaExternalId: string;
@@ -12409,6 +12572,7 @@ export declare const channelBotContract: {
12409
12572
  channelId?: string | undefined;
12410
12573
  status?: "active" | "pending" | undefined;
12411
12574
  apiKey?: string | undefined;
12575
+ tier?: "basic" | "regular" | "premium" | undefined;
12412
12576
  }>>;
12413
12577
  vonageCredentials: z.ZodOptional<z.ZodObject<{
12414
12578
  mobileNumber: z.ZodString;
@@ -12441,6 +12605,7 @@ export declare const channelBotContract: {
12441
12605
  channelId?: string | undefined;
12442
12606
  status?: "active" | "pending" | undefined;
12443
12607
  apiKey?: string | undefined;
12608
+ tier?: "basic" | "regular" | "premium" | undefined;
12444
12609
  } | undefined;
12445
12610
  vonageCredentials?: {
12446
12611
  apiKey: string;
@@ -12465,6 +12630,7 @@ export declare const channelBotContract: {
12465
12630
  channelId?: string | undefined;
12466
12631
  status?: "active" | "pending" | undefined;
12467
12632
  apiKey?: string | undefined;
12633
+ tier?: "basic" | "regular" | "premium" | undefined;
12468
12634
  } | undefined;
12469
12635
  vonageCredentials?: {
12470
12636
  apiKey: string;
@@ -12723,6 +12889,7 @@ export declare const channelBotContract: {
12723
12889
  channelId?: string | undefined;
12724
12890
  status?: "active" | "pending" | undefined;
12725
12891
  apiKey?: string | undefined;
12892
+ tier?: "basic" | "regular" | "premium" | undefined;
12726
12893
  } | undefined;
12727
12894
  vonageCredentials?: {
12728
12895
  apiKey: string;
@@ -12812,6 +12979,7 @@ export declare const channelBotContract: {
12812
12979
  channelId?: string | undefined;
12813
12980
  status?: "active" | "pending" | undefined;
12814
12981
  apiKey?: string | undefined;
12982
+ tier?: "basic" | "regular" | "premium" | undefined;
12815
12983
  } | undefined;
12816
12984
  vonageCredentials?: {
12817
12985
  apiKey: string;
@@ -12903,6 +13071,7 @@ export declare const channelBotContract: {
12903
13071
  channelId?: string | undefined;
12904
13072
  status?: "active" | "pending" | undefined;
12905
13073
  apiKey?: string | undefined;
13074
+ tier?: "basic" | "regular" | "premium" | undefined;
12906
13075
  } | undefined;
12907
13076
  vonageCredentials?: {
12908
13077
  apiKey: string;
@@ -12995,6 +13164,7 @@ export declare const channelBotContract: {
12995
13164
  channelId?: string | undefined;
12996
13165
  status?: "active" | "pending" | undefined;
12997
13166
  apiKey?: string | undefined;
13167
+ tier?: "basic" | "regular" | "premium" | undefined;
12998
13168
  } | undefined;
12999
13169
  vonageCredentials?: {
13000
13170
  apiKey: string;
@@ -13157,6 +13327,7 @@ export declare const channelSMSContract: {
13157
13327
  channelId: z.ZodOptional<z.ZodString>;
13158
13328
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
13159
13329
  apiKey: z.ZodOptional<z.ZodString>;
13330
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
13160
13331
  }, "strip", z.ZodTypeAny, {
13161
13332
  email: string;
13162
13333
  wabaExternalId: string;
@@ -13166,6 +13337,7 @@ export declare const channelSMSContract: {
13166
13337
  channelId?: string | undefined;
13167
13338
  status?: "active" | "pending" | undefined;
13168
13339
  apiKey?: string | undefined;
13340
+ tier?: "basic" | "regular" | "premium" | undefined;
13169
13341
  }, {
13170
13342
  email: string;
13171
13343
  wabaExternalId: string;
@@ -13175,6 +13347,7 @@ export declare const channelSMSContract: {
13175
13347
  channelId?: string | undefined;
13176
13348
  status?: "active" | "pending" | undefined;
13177
13349
  apiKey?: string | undefined;
13350
+ tier?: "basic" | "regular" | "premium" | undefined;
13178
13351
  }>>;
13179
13352
  vonageCredentials: z.ZodOptional<z.ZodObject<{
13180
13353
  mobileNumber: z.ZodString;
@@ -13207,6 +13380,7 @@ export declare const channelSMSContract: {
13207
13380
  channelId?: string | undefined;
13208
13381
  status?: "active" | "pending" | undefined;
13209
13382
  apiKey?: string | undefined;
13383
+ tier?: "basic" | "regular" | "premium" | undefined;
13210
13384
  } | undefined;
13211
13385
  vonageCredentials?: {
13212
13386
  apiKey: string;
@@ -13231,6 +13405,7 @@ export declare const channelSMSContract: {
13231
13405
  channelId?: string | undefined;
13232
13406
  status?: "active" | "pending" | undefined;
13233
13407
  apiKey?: string | undefined;
13408
+ tier?: "basic" | "regular" | "premium" | undefined;
13234
13409
  } | undefined;
13235
13410
  vonageCredentials?: {
13236
13411
  apiKey: string;
@@ -13489,6 +13664,7 @@ export declare const channelSMSContract: {
13489
13664
  channelId?: string | undefined;
13490
13665
  status?: "active" | "pending" | undefined;
13491
13666
  apiKey?: string | undefined;
13667
+ tier?: "basic" | "regular" | "premium" | undefined;
13492
13668
  } | undefined;
13493
13669
  vonageCredentials?: {
13494
13670
  apiKey: string;
@@ -13578,6 +13754,7 @@ export declare const channelSMSContract: {
13578
13754
  channelId?: string | undefined;
13579
13755
  status?: "active" | "pending" | undefined;
13580
13756
  apiKey?: string | undefined;
13757
+ tier?: "basic" | "regular" | "premium" | undefined;
13581
13758
  } | undefined;
13582
13759
  vonageCredentials?: {
13583
13760
  apiKey: string;
@@ -13669,6 +13846,7 @@ export declare const channelSMSContract: {
13669
13846
  channelId?: string | undefined;
13670
13847
  status?: "active" | "pending" | undefined;
13671
13848
  apiKey?: string | undefined;
13849
+ tier?: "basic" | "regular" | "premium" | undefined;
13672
13850
  } | undefined;
13673
13851
  vonageCredentials?: {
13674
13852
  apiKey: string;
@@ -13761,6 +13939,7 @@ export declare const channelSMSContract: {
13761
13939
  channelId?: string | undefined;
13762
13940
  status?: "active" | "pending" | undefined;
13763
13941
  apiKey?: string | undefined;
13942
+ tier?: "basic" | "regular" | "premium" | undefined;
13764
13943
  } | undefined;
13765
13944
  vonageCredentials?: {
13766
13945
  apiKey: string;