@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
@@ -780,6 +780,7 @@ export declare const ChannelSchema: z.ZodObject<{
780
780
  channelId: z.ZodOptional<z.ZodString>;
781
781
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
782
782
  apiKey: z.ZodOptional<z.ZodString>;
783
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
783
784
  }, "strip", z.ZodTypeAny, {
784
785
  email: string;
785
786
  wabaExternalId: string;
@@ -789,6 +790,7 @@ export declare const ChannelSchema: z.ZodObject<{
789
790
  channelId?: string | undefined;
790
791
  status?: "active" | "pending" | undefined;
791
792
  apiKey?: string | undefined;
793
+ tier?: "basic" | "regular" | "premium" | undefined;
792
794
  }, {
793
795
  email: string;
794
796
  wabaExternalId: string;
@@ -798,6 +800,7 @@ export declare const ChannelSchema: z.ZodObject<{
798
800
  channelId?: string | undefined;
799
801
  status?: "active" | "pending" | undefined;
800
802
  apiKey?: string | undefined;
803
+ tier?: "basic" | "regular" | "premium" | undefined;
801
804
  }>>;
802
805
  vonageCredentials: z.ZodOptional<z.ZodObject<{
803
806
  mobileNumber: z.ZodString;
@@ -830,6 +833,7 @@ export declare const ChannelSchema: z.ZodObject<{
830
833
  channelId?: string | undefined;
831
834
  status?: "active" | "pending" | undefined;
832
835
  apiKey?: string | undefined;
836
+ tier?: "basic" | "regular" | "premium" | undefined;
833
837
  } | undefined;
834
838
  vonageCredentials?: {
835
839
  apiKey: string;
@@ -854,6 +858,7 @@ export declare const ChannelSchema: z.ZodObject<{
854
858
  channelId?: string | undefined;
855
859
  status?: "active" | "pending" | undefined;
856
860
  apiKey?: string | undefined;
861
+ tier?: "basic" | "regular" | "premium" | undefined;
857
862
  } | undefined;
858
863
  vonageCredentials?: {
859
864
  apiKey: string;
@@ -908,6 +913,7 @@ export declare const ChannelSchema: z.ZodObject<{
908
913
  channelId?: string | undefined;
909
914
  status?: "active" | "pending" | undefined;
910
915
  apiKey?: string | undefined;
916
+ tier?: "basic" | "regular" | "premium" | undefined;
911
917
  } | undefined;
912
918
  vonageCredentials?: {
913
919
  apiKey: string;
@@ -950,6 +956,7 @@ export declare const ChannelSchema: z.ZodObject<{
950
956
  channelId?: string | undefined;
951
957
  status?: "active" | "pending" | undefined;
952
958
  apiKey?: string | undefined;
959
+ tier?: "basic" | "regular" | "premium" | undefined;
953
960
  } | undefined;
954
961
  vonageCredentials?: {
955
962
  apiKey: string;
@@ -992,6 +999,7 @@ export declare const ReloginChanelSchema: z.ZodObject<{
992
999
  channelId: z.ZodOptional<z.ZodString>;
993
1000
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
994
1001
  apiKey: z.ZodOptional<z.ZodString>;
1002
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
995
1003
  }, "strip", z.ZodTypeAny, {
996
1004
  email: string;
997
1005
  wabaExternalId: string;
@@ -1001,6 +1009,7 @@ export declare const ReloginChanelSchema: z.ZodObject<{
1001
1009
  channelId?: string | undefined;
1002
1010
  status?: "active" | "pending" | undefined;
1003
1011
  apiKey?: string | undefined;
1012
+ tier?: "basic" | "regular" | "premium" | undefined;
1004
1013
  }, {
1005
1014
  email: string;
1006
1015
  wabaExternalId: string;
@@ -1010,6 +1019,7 @@ export declare const ReloginChanelSchema: z.ZodObject<{
1010
1019
  channelId?: string | undefined;
1011
1020
  status?: "active" | "pending" | undefined;
1012
1021
  apiKey?: string | undefined;
1022
+ tier?: "basic" | "regular" | "premium" | undefined;
1013
1023
  }>>;
1014
1024
  vonageCredentials: z.ZodOptional<z.ZodObject<{
1015
1025
  mobileNumber: z.ZodString;
@@ -1042,6 +1052,7 @@ export declare const ReloginChanelSchema: z.ZodObject<{
1042
1052
  channelId?: string | undefined;
1043
1053
  status?: "active" | "pending" | undefined;
1044
1054
  apiKey?: string | undefined;
1055
+ tier?: "basic" | "regular" | "premium" | undefined;
1045
1056
  } | undefined;
1046
1057
  vonageCredentials?: {
1047
1058
  apiKey: string;
@@ -1066,6 +1077,7 @@ export declare const ReloginChanelSchema: z.ZodObject<{
1066
1077
  channelId?: string | undefined;
1067
1078
  status?: "active" | "pending" | undefined;
1068
1079
  apiKey?: string | undefined;
1080
+ tier?: "basic" | "regular" | "premium" | undefined;
1069
1081
  } | undefined;
1070
1082
  vonageCredentials?: {
1071
1083
  apiKey: string;
@@ -1125,6 +1137,7 @@ export declare const ReloginChanelSchema: z.ZodObject<{
1125
1137
  channelId?: string | undefined;
1126
1138
  status?: "active" | "pending" | undefined;
1127
1139
  apiKey?: string | undefined;
1140
+ tier?: "basic" | "regular" | "premium" | undefined;
1128
1141
  } | undefined;
1129
1142
  vonageCredentials?: {
1130
1143
  apiKey: string;
@@ -1171,6 +1184,7 @@ export declare const ReloginChanelSchema: z.ZodObject<{
1171
1184
  channelId?: string | undefined;
1172
1185
  status?: "active" | "pending" | undefined;
1173
1186
  apiKey?: string | undefined;
1187
+ tier?: "basic" | "regular" | "premium" | undefined;
1174
1188
  } | undefined;
1175
1189
  vonageCredentials?: {
1176
1190
  apiKey: string;
@@ -1221,6 +1235,7 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
1221
1235
  channelId: z.ZodOptional<z.ZodString>;
1222
1236
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
1223
1237
  apiKey: z.ZodOptional<z.ZodString>;
1238
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
1224
1239
  }, "strip", z.ZodTypeAny, {
1225
1240
  email: string;
1226
1241
  wabaExternalId: string;
@@ -1230,6 +1245,7 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
1230
1245
  channelId?: string | undefined;
1231
1246
  status?: "active" | "pending" | undefined;
1232
1247
  apiKey?: string | undefined;
1248
+ tier?: "basic" | "regular" | "premium" | undefined;
1233
1249
  }, {
1234
1250
  email: string;
1235
1251
  wabaExternalId: string;
@@ -1239,6 +1255,7 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
1239
1255
  channelId?: string | undefined;
1240
1256
  status?: "active" | "pending" | undefined;
1241
1257
  apiKey?: string | undefined;
1258
+ tier?: "basic" | "regular" | "premium" | undefined;
1242
1259
  }>>;
1243
1260
  vonageCredentials: z.ZodOptional<z.ZodObject<{
1244
1261
  mobileNumber: z.ZodString;
@@ -1271,6 +1288,7 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
1271
1288
  channelId?: string | undefined;
1272
1289
  status?: "active" | "pending" | undefined;
1273
1290
  apiKey?: string | undefined;
1291
+ tier?: "basic" | "regular" | "premium" | undefined;
1274
1292
  } | undefined;
1275
1293
  vonageCredentials?: {
1276
1294
  apiKey: string;
@@ -1295,6 +1313,7 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
1295
1313
  channelId?: string | undefined;
1296
1314
  status?: "active" | "pending" | undefined;
1297
1315
  apiKey?: string | undefined;
1316
+ tier?: "basic" | "regular" | "premium" | undefined;
1298
1317
  } | undefined;
1299
1318
  vonageCredentials?: {
1300
1319
  apiKey: string;
@@ -1349,6 +1368,7 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
1349
1368
  channelId?: string | undefined;
1350
1369
  status?: "active" | "pending" | undefined;
1351
1370
  apiKey?: string | undefined;
1371
+ tier?: "basic" | "regular" | "premium" | undefined;
1352
1372
  } | undefined;
1353
1373
  vonageCredentials?: {
1354
1374
  apiKey: string;
@@ -1391,6 +1411,7 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
1391
1411
  channelId?: string | undefined;
1392
1412
  status?: "active" | "pending" | undefined;
1393
1413
  apiKey?: string | undefined;
1414
+ tier?: "basic" | "regular" | "premium" | undefined;
1394
1415
  } | undefined;
1395
1416
  vonageCredentials?: {
1396
1417
  apiKey: string;
@@ -1436,6 +1457,7 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
1436
1457
  channelId?: string | undefined;
1437
1458
  status?: "active" | "pending" | undefined;
1438
1459
  apiKey?: string | undefined;
1460
+ tier?: "basic" | "regular" | "premium" | undefined;
1439
1461
  } | undefined;
1440
1462
  vonageCredentials?: {
1441
1463
  apiKey: string;
@@ -1481,6 +1503,7 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
1481
1503
  channelId?: string | undefined;
1482
1504
  status?: "active" | "pending" | undefined;
1483
1505
  apiKey?: string | undefined;
1506
+ tier?: "basic" | "regular" | "premium" | undefined;
1484
1507
  } | undefined;
1485
1508
  vonageCredentials?: {
1486
1509
  apiKey: string;
@@ -1678,6 +1701,7 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
1678
1701
  channelId?: string | undefined;
1679
1702
  status?: "active" | "pending" | undefined;
1680
1703
  apiKey?: string | undefined;
1704
+ tier?: "basic" | "regular" | "premium" | undefined;
1681
1705
  } | undefined;
1682
1706
  vonageCredentials?: {
1683
1707
  apiKey: string;
@@ -1757,6 +1781,7 @@ export declare const DeleteMessageToPlatformSchema: z.ZodObject<{
1757
1781
  channelId?: string | undefined;
1758
1782
  status?: "active" | "pending" | undefined;
1759
1783
  apiKey?: string | undefined;
1784
+ tier?: "basic" | "regular" | "premium" | undefined;
1760
1785
  } | undefined;
1761
1786
  vonageCredentials?: {
1762
1787
  apiKey: string;
@@ -1927,6 +1952,7 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
1927
1952
  channelId: z.ZodOptional<z.ZodString>;
1928
1953
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
1929
1954
  apiKey: z.ZodOptional<z.ZodString>;
1955
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
1930
1956
  }, "strip", z.ZodTypeAny, {
1931
1957
  email: string;
1932
1958
  wabaExternalId: string;
@@ -1936,6 +1962,7 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
1936
1962
  channelId?: string | undefined;
1937
1963
  status?: "active" | "pending" | undefined;
1938
1964
  apiKey?: string | undefined;
1965
+ tier?: "basic" | "regular" | "premium" | undefined;
1939
1966
  }, {
1940
1967
  email: string;
1941
1968
  wabaExternalId: string;
@@ -1945,6 +1972,7 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
1945
1972
  channelId?: string | undefined;
1946
1973
  status?: "active" | "pending" | undefined;
1947
1974
  apiKey?: string | undefined;
1975
+ tier?: "basic" | "regular" | "premium" | undefined;
1948
1976
  }>>;
1949
1977
  vonageCredentials: z.ZodOptional<z.ZodObject<{
1950
1978
  mobileNumber: z.ZodString;
@@ -1977,6 +2005,7 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
1977
2005
  channelId?: string | undefined;
1978
2006
  status?: "active" | "pending" | undefined;
1979
2007
  apiKey?: string | undefined;
2008
+ tier?: "basic" | "regular" | "premium" | undefined;
1980
2009
  } | undefined;
1981
2010
  vonageCredentials?: {
1982
2011
  apiKey: string;
@@ -2001,6 +2030,7 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
2001
2030
  channelId?: string | undefined;
2002
2031
  status?: "active" | "pending" | undefined;
2003
2032
  apiKey?: string | undefined;
2033
+ tier?: "basic" | "regular" | "premium" | undefined;
2004
2034
  } | undefined;
2005
2035
  vonageCredentials?: {
2006
2036
  apiKey: string;
@@ -2055,6 +2085,7 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
2055
2085
  channelId?: string | undefined;
2056
2086
  status?: "active" | "pending" | undefined;
2057
2087
  apiKey?: string | undefined;
2088
+ tier?: "basic" | "regular" | "premium" | undefined;
2058
2089
  } | undefined;
2059
2090
  vonageCredentials?: {
2060
2091
  apiKey: string;
@@ -2097,6 +2128,7 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
2097
2128
  channelId?: string | undefined;
2098
2129
  status?: "active" | "pending" | undefined;
2099
2130
  apiKey?: string | undefined;
2131
+ tier?: "basic" | "regular" | "premium" | undefined;
2100
2132
  } | undefined;
2101
2133
  vonageCredentials?: {
2102
2134
  apiKey: string;
@@ -2121,7 +2153,7 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
2121
2153
  } | undefined;
2122
2154
  }>;
2123
2155
  messengerTags: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"post_purchase_update">, z.ZodLiteral<"account_update">, z.ZodLiteral<"confirmed_event_update">]>>;
2124
- telegramBusinessConnectionId: z.ZodNullable<z.ZodString>;
2156
+ telegramBusinessConnectionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2125
2157
  }, "strip", z.ZodTypeAny, {
2126
2158
  id: string;
2127
2159
  channel: {
@@ -2144,6 +2176,7 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
2144
2176
  channelId?: string | undefined;
2145
2177
  status?: "active" | "pending" | undefined;
2146
2178
  apiKey?: string | undefined;
2179
+ tier?: "basic" | "regular" | "premium" | undefined;
2147
2180
  } | undefined;
2148
2181
  vonageCredentials?: {
2149
2182
  apiKey: string;
@@ -2203,11 +2236,11 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
2203
2236
  id: string;
2204
2237
  email: string;
2205
2238
  } | null;
2206
- telegramBusinessConnectionId: string | null;
2207
2239
  lastMessage?: string | undefined;
2208
2240
  handleTime?: number | undefined;
2209
2241
  metadata?: any;
2210
2242
  messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
2243
+ telegramBusinessConnectionId?: string | null | undefined;
2211
2244
  }, {
2212
2245
  id: string;
2213
2246
  channel: {
@@ -2230,6 +2263,7 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
2230
2263
  channelId?: string | undefined;
2231
2264
  status?: "active" | "pending" | undefined;
2232
2265
  apiKey?: string | undefined;
2266
+ tier?: "basic" | "regular" | "premium" | undefined;
2233
2267
  } | undefined;
2234
2268
  vonageCredentials?: {
2235
2269
  apiKey: string;
@@ -2289,11 +2323,11 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
2289
2323
  id: string;
2290
2324
  email: string;
2291
2325
  } | null;
2292
- telegramBusinessConnectionId: string | null;
2293
2326
  lastMessage?: string | undefined;
2294
2327
  handleTime?: number | undefined;
2295
2328
  metadata?: any;
2296
2329
  messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
2330
+ telegramBusinessConnectionId?: string | null | undefined;
2297
2331
  }>;
2298
2332
  message: z.ZodObject<{
2299
2333
  id: z.ZodOptional<z.ZodString>;
@@ -2484,6 +2518,7 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
2484
2518
  channelId?: string | undefined;
2485
2519
  status?: "active" | "pending" | undefined;
2486
2520
  apiKey?: string | undefined;
2521
+ tier?: "basic" | "regular" | "premium" | undefined;
2487
2522
  } | undefined;
2488
2523
  vonageCredentials?: {
2489
2524
  apiKey: string;
@@ -2543,11 +2578,11 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
2543
2578
  id: string;
2544
2579
  email: string;
2545
2580
  } | null;
2546
- telegramBusinessConnectionId: string | null;
2547
2581
  lastMessage?: string | undefined;
2548
2582
  handleTime?: number | undefined;
2549
2583
  metadata?: any;
2550
2584
  messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
2585
+ telegramBusinessConnectionId?: string | null | undefined;
2551
2586
  };
2552
2587
  isBot: boolean | null;
2553
2588
  }, {
@@ -2609,6 +2644,7 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
2609
2644
  channelId?: string | undefined;
2610
2645
  status?: "active" | "pending" | undefined;
2611
2646
  apiKey?: string | undefined;
2647
+ tier?: "basic" | "regular" | "premium" | undefined;
2612
2648
  } | undefined;
2613
2649
  vonageCredentials?: {
2614
2650
  apiKey: string;
@@ -2668,11 +2704,11 @@ export declare const SendMessageToPlatformSchema: z.ZodObject<{
2668
2704
  id: string;
2669
2705
  email: string;
2670
2706
  } | null;
2671
- telegramBusinessConnectionId: string | null;
2672
2707
  lastMessage?: string | undefined;
2673
2708
  handleTime?: number | undefined;
2674
2709
  metadata?: any;
2675
2710
  messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
2711
+ telegramBusinessConnectionId?: string | null | undefined;
2676
2712
  };
2677
2713
  isBot?: boolean | null | undefined;
2678
2714
  }>;
@@ -2950,6 +2986,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
2950
2986
  channelId: z.ZodOptional<z.ZodString>;
2951
2987
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
2952
2988
  apiKey: z.ZodOptional<z.ZodString>;
2989
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
2953
2990
  }, "strip", z.ZodTypeAny, {
2954
2991
  email: string;
2955
2992
  wabaExternalId: string;
@@ -2959,6 +2996,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
2959
2996
  channelId?: string | undefined;
2960
2997
  status?: "active" | "pending" | undefined;
2961
2998
  apiKey?: string | undefined;
2999
+ tier?: "basic" | "regular" | "premium" | undefined;
2962
3000
  }, {
2963
3001
  email: string;
2964
3002
  wabaExternalId: string;
@@ -2968,6 +3006,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
2968
3006
  channelId?: string | undefined;
2969
3007
  status?: "active" | "pending" | undefined;
2970
3008
  apiKey?: string | undefined;
3009
+ tier?: "basic" | "regular" | "premium" | undefined;
2971
3010
  }>>;
2972
3011
  vonageCredentials: z.ZodOptional<z.ZodObject<{
2973
3012
  mobileNumber: z.ZodString;
@@ -3000,6 +3039,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
3000
3039
  channelId?: string | undefined;
3001
3040
  status?: "active" | "pending" | undefined;
3002
3041
  apiKey?: string | undefined;
3042
+ tier?: "basic" | "regular" | "premium" | undefined;
3003
3043
  } | undefined;
3004
3044
  vonageCredentials?: {
3005
3045
  apiKey: string;
@@ -3024,6 +3064,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
3024
3064
  channelId?: string | undefined;
3025
3065
  status?: "active" | "pending" | undefined;
3026
3066
  apiKey?: string | undefined;
3067
+ tier?: "basic" | "regular" | "premium" | undefined;
3027
3068
  } | undefined;
3028
3069
  vonageCredentials?: {
3029
3070
  apiKey: string;
@@ -3078,6 +3119,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
3078
3119
  channelId?: string | undefined;
3079
3120
  status?: "active" | "pending" | undefined;
3080
3121
  apiKey?: string | undefined;
3122
+ tier?: "basic" | "regular" | "premium" | undefined;
3081
3123
  } | undefined;
3082
3124
  vonageCredentials?: {
3083
3125
  apiKey: string;
@@ -3120,6 +3162,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
3120
3162
  channelId?: string | undefined;
3121
3163
  status?: "active" | "pending" | undefined;
3122
3164
  apiKey?: string | undefined;
3165
+ tier?: "basic" | "regular" | "premium" | undefined;
3123
3166
  } | undefined;
3124
3167
  vonageCredentials?: {
3125
3168
  apiKey: string;
@@ -3144,7 +3187,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
3144
3187
  } | undefined;
3145
3188
  }>;
3146
3189
  messengerTags: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"post_purchase_update">, z.ZodLiteral<"account_update">, z.ZodLiteral<"confirmed_event_update">]>>;
3147
- telegramBusinessConnectionId: z.ZodNullable<z.ZodString>;
3190
+ telegramBusinessConnectionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3148
3191
  }, "strip", z.ZodTypeAny, {
3149
3192
  id: string;
3150
3193
  channel: {
@@ -3167,6 +3210,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
3167
3210
  channelId?: string | undefined;
3168
3211
  status?: "active" | "pending" | undefined;
3169
3212
  apiKey?: string | undefined;
3213
+ tier?: "basic" | "regular" | "premium" | undefined;
3170
3214
  } | undefined;
3171
3215
  vonageCredentials?: {
3172
3216
  apiKey: string;
@@ -3226,11 +3270,11 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
3226
3270
  id: string;
3227
3271
  email: string;
3228
3272
  } | null;
3229
- telegramBusinessConnectionId: string | null;
3230
3273
  lastMessage?: string | undefined;
3231
3274
  handleTime?: number | undefined;
3232
3275
  metadata?: any;
3233
3276
  messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
3277
+ telegramBusinessConnectionId?: string | null | undefined;
3234
3278
  }, {
3235
3279
  id: string;
3236
3280
  channel: {
@@ -3253,6 +3297,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
3253
3297
  channelId?: string | undefined;
3254
3298
  status?: "active" | "pending" | undefined;
3255
3299
  apiKey?: string | undefined;
3300
+ tier?: "basic" | "regular" | "premium" | undefined;
3256
3301
  } | undefined;
3257
3302
  vonageCredentials?: {
3258
3303
  apiKey: string;
@@ -3312,11 +3357,11 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
3312
3357
  id: string;
3313
3358
  email: string;
3314
3359
  } | null;
3315
- telegramBusinessConnectionId: string | null;
3316
3360
  lastMessage?: string | undefined;
3317
3361
  handleTime?: number | undefined;
3318
3362
  metadata?: any;
3319
3363
  messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
3364
+ telegramBusinessConnectionId?: string | null | undefined;
3320
3365
  }>;
3321
3366
  isBot: z.ZodDefault<z.ZodNullable<z.ZodBoolean>>;
3322
3367
  params: z.ZodOptional<z.ZodObject<{
@@ -3388,6 +3433,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
3388
3433
  channelId?: string | undefined;
3389
3434
  status?: "active" | "pending" | undefined;
3390
3435
  apiKey?: string | undefined;
3436
+ tier?: "basic" | "regular" | "premium" | undefined;
3391
3437
  } | undefined;
3392
3438
  vonageCredentials?: {
3393
3439
  apiKey: string;
@@ -3447,11 +3493,11 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
3447
3493
  id: string;
3448
3494
  email: string;
3449
3495
  } | null;
3450
- telegramBusinessConnectionId: string | null;
3451
3496
  lastMessage?: string | undefined;
3452
3497
  handleTime?: number | undefined;
3453
3498
  metadata?: any;
3454
3499
  messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
3500
+ telegramBusinessConnectionId?: string | null | undefined;
3455
3501
  };
3456
3502
  isBot: boolean | null;
3457
3503
  params?: {
@@ -3517,6 +3563,7 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
3517
3563
  channelId?: string | undefined;
3518
3564
  status?: "active" | "pending" | undefined;
3519
3565
  apiKey?: string | undefined;
3566
+ tier?: "basic" | "regular" | "premium" | undefined;
3520
3567
  } | undefined;
3521
3568
  vonageCredentials?: {
3522
3569
  apiKey: string;
@@ -3576,11 +3623,11 @@ export declare const SendMessageWithActionTypeSchema: z.ZodObject<{
3576
3623
  id: string;
3577
3624
  email: string;
3578
3625
  } | null;
3579
- telegramBusinessConnectionId: string | null;
3580
3626
  lastMessage?: string | undefined;
3581
3627
  handleTime?: number | undefined;
3582
3628
  metadata?: any;
3583
3629
  messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
3630
+ telegramBusinessConnectionId?: string | null | undefined;
3584
3631
  };
3585
3632
  isBot?: boolean | null | undefined;
3586
3633
  params?: {
@@ -5539,6 +5586,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
5539
5586
  channelId: z.ZodOptional<z.ZodString>;
5540
5587
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
5541
5588
  apiKey: z.ZodOptional<z.ZodString>;
5589
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
5542
5590
  }, "strip", z.ZodTypeAny, {
5543
5591
  email: string;
5544
5592
  wabaExternalId: string;
@@ -5548,6 +5596,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
5548
5596
  channelId?: string | undefined;
5549
5597
  status?: "active" | "pending" | undefined;
5550
5598
  apiKey?: string | undefined;
5599
+ tier?: "basic" | "regular" | "premium" | undefined;
5551
5600
  }, {
5552
5601
  email: string;
5553
5602
  wabaExternalId: string;
@@ -5557,6 +5606,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
5557
5606
  channelId?: string | undefined;
5558
5607
  status?: "active" | "pending" | undefined;
5559
5608
  apiKey?: string | undefined;
5609
+ tier?: "basic" | "regular" | "premium" | undefined;
5560
5610
  }>>;
5561
5611
  vonageCredentials: z.ZodOptional<z.ZodObject<{
5562
5612
  mobileNumber: z.ZodString;
@@ -5589,6 +5639,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
5589
5639
  channelId?: string | undefined;
5590
5640
  status?: "active" | "pending" | undefined;
5591
5641
  apiKey?: string | undefined;
5642
+ tier?: "basic" | "regular" | "premium" | undefined;
5592
5643
  } | undefined;
5593
5644
  vonageCredentials?: {
5594
5645
  apiKey: string;
@@ -5613,6 +5664,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
5613
5664
  channelId?: string | undefined;
5614
5665
  status?: "active" | "pending" | undefined;
5615
5666
  apiKey?: string | undefined;
5667
+ tier?: "basic" | "regular" | "premium" | undefined;
5616
5668
  } | undefined;
5617
5669
  vonageCredentials?: {
5618
5670
  apiKey: string;
@@ -5871,6 +5923,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
5871
5923
  channelId?: string | undefined;
5872
5924
  status?: "active" | "pending" | undefined;
5873
5925
  apiKey?: string | undefined;
5926
+ tier?: "basic" | "regular" | "premium" | undefined;
5874
5927
  } | undefined;
5875
5928
  vonageCredentials?: {
5876
5929
  apiKey: string;
@@ -5960,6 +6013,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
5960
6013
  channelId?: string | undefined;
5961
6014
  status?: "active" | "pending" | undefined;
5962
6015
  apiKey?: string | undefined;
6016
+ tier?: "basic" | "regular" | "premium" | undefined;
5963
6017
  } | undefined;
5964
6018
  vonageCredentials?: {
5965
6019
  apiKey: string;
@@ -6497,6 +6551,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
6497
6551
  channelId?: string | undefined;
6498
6552
  status?: "active" | "pending" | undefined;
6499
6553
  apiKey?: string | undefined;
6554
+ tier?: "basic" | "regular" | "premium" | undefined;
6500
6555
  } | undefined;
6501
6556
  vonageCredentials?: {
6502
6557
  apiKey: string;
@@ -6897,6 +6952,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
6897
6952
  channelId?: string | undefined;
6898
6953
  status?: "active" | "pending" | undefined;
6899
6954
  apiKey?: string | undefined;
6955
+ tier?: "basic" | "regular" | "premium" | undefined;
6900
6956
  } | undefined;
6901
6957
  vonageCredentials?: {
6902
6958
  apiKey: string;
@@ -10013,6 +10069,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
10013
10069
  channelId: z.ZodOptional<z.ZodString>;
10014
10070
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
10015
10071
  apiKey: z.ZodOptional<z.ZodString>;
10072
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
10016
10073
  }, "strip", z.ZodTypeAny, {
10017
10074
  email: string;
10018
10075
  wabaExternalId: string;
@@ -10022,6 +10079,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
10022
10079
  channelId?: string | undefined;
10023
10080
  status?: "active" | "pending" | undefined;
10024
10081
  apiKey?: string | undefined;
10082
+ tier?: "basic" | "regular" | "premium" | undefined;
10025
10083
  }, {
10026
10084
  email: string;
10027
10085
  wabaExternalId: string;
@@ -10031,6 +10089,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
10031
10089
  channelId?: string | undefined;
10032
10090
  status?: "active" | "pending" | undefined;
10033
10091
  apiKey?: string | undefined;
10092
+ tier?: "basic" | "regular" | "premium" | undefined;
10034
10093
  }>>;
10035
10094
  vonageCredentials: z.ZodOptional<z.ZodObject<{
10036
10095
  mobileNumber: z.ZodString;
@@ -10063,6 +10122,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
10063
10122
  channelId?: string | undefined;
10064
10123
  status?: "active" | "pending" | undefined;
10065
10124
  apiKey?: string | undefined;
10125
+ tier?: "basic" | "regular" | "premium" | undefined;
10066
10126
  } | undefined;
10067
10127
  vonageCredentials?: {
10068
10128
  apiKey: string;
@@ -10087,6 +10147,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
10087
10147
  channelId?: string | undefined;
10088
10148
  status?: "active" | "pending" | undefined;
10089
10149
  apiKey?: string | undefined;
10150
+ tier?: "basic" | "regular" | "premium" | undefined;
10090
10151
  } | undefined;
10091
10152
  vonageCredentials?: {
10092
10153
  apiKey: string;
@@ -10345,6 +10406,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
10345
10406
  channelId?: string | undefined;
10346
10407
  status?: "active" | "pending" | undefined;
10347
10408
  apiKey?: string | undefined;
10409
+ tier?: "basic" | "regular" | "premium" | undefined;
10348
10410
  } | undefined;
10349
10411
  vonageCredentials?: {
10350
10412
  apiKey: string;
@@ -10434,6 +10496,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
10434
10496
  channelId?: string | undefined;
10435
10497
  status?: "active" | "pending" | undefined;
10436
10498
  apiKey?: string | undefined;
10499
+ tier?: "basic" | "regular" | "premium" | undefined;
10437
10500
  } | undefined;
10438
10501
  vonageCredentials?: {
10439
10502
  apiKey: string;
@@ -10971,6 +11034,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
10971
11034
  channelId?: string | undefined;
10972
11035
  status?: "active" | "pending" | undefined;
10973
11036
  apiKey?: string | undefined;
11037
+ tier?: "basic" | "regular" | "premium" | undefined;
10974
11038
  } | undefined;
10975
11039
  vonageCredentials?: {
10976
11040
  apiKey: string;
@@ -11371,6 +11435,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
11371
11435
  channelId?: string | undefined;
11372
11436
  status?: "active" | "pending" | undefined;
11373
11437
  apiKey?: string | undefined;
11438
+ tier?: "basic" | "regular" | "premium" | undefined;
11374
11439
  } | undefined;
11375
11440
  vonageCredentials?: {
11376
11441
  apiKey: string;
@@ -13544,6 +13609,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
13544
13609
  channelId?: string | undefined;
13545
13610
  status?: "active" | "pending" | undefined;
13546
13611
  apiKey?: string | undefined;
13612
+ tier?: "basic" | "regular" | "premium" | undefined;
13547
13613
  } | undefined;
13548
13614
  vonageCredentials?: {
13549
13615
  apiKey: string;
@@ -14281,6 +14347,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
14281
14347
  channelId?: string | undefined;
14282
14348
  status?: "active" | "pending" | undefined;
14283
14349
  apiKey?: string | undefined;
14350
+ tier?: "basic" | "regular" | "premium" | undefined;
14284
14351
  } | undefined;
14285
14352
  vonageCredentials?: {
14286
14353
  apiKey: string;
@@ -15019,6 +15086,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
15019
15086
  channelId?: string | undefined;
15020
15087
  status?: "active" | "pending" | undefined;
15021
15088
  apiKey?: string | undefined;
15089
+ tier?: "basic" | "regular" | "premium" | undefined;
15022
15090
  } | undefined;
15023
15091
  vonageCredentials?: {
15024
15092
  apiKey: string;
@@ -15756,6 +15824,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
15756
15824
  channelId?: string | undefined;
15757
15825
  status?: "active" | "pending" | undefined;
15758
15826
  apiKey?: string | undefined;
15827
+ tier?: "basic" | "regular" | "premium" | undefined;
15759
15828
  } | undefined;
15760
15829
  vonageCredentials?: {
15761
15830
  apiKey: string;
@@ -16494,6 +16563,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
16494
16563
  channelId?: string | undefined;
16495
16564
  status?: "active" | "pending" | undefined;
16496
16565
  apiKey?: string | undefined;
16566
+ tier?: "basic" | "regular" | "premium" | undefined;
16497
16567
  } | undefined;
16498
16568
  vonageCredentials?: {
16499
16569
  apiKey: string;
@@ -17231,6 +17301,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
17231
17301
  channelId?: string | undefined;
17232
17302
  status?: "active" | "pending" | undefined;
17233
17303
  apiKey?: string | undefined;
17304
+ tier?: "basic" | "regular" | "premium" | undefined;
17234
17305
  } | undefined;
17235
17306
  vonageCredentials?: {
17236
17307
  apiKey: string;
@@ -17971,6 +18042,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
17971
18042
  channelId?: string | undefined;
17972
18043
  status?: "active" | "pending" | undefined;
17973
18044
  apiKey?: string | undefined;
18045
+ tier?: "basic" | "regular" | "premium" | undefined;
17974
18046
  } | undefined;
17975
18047
  vonageCredentials?: {
17976
18048
  apiKey: string;
@@ -18708,6 +18780,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
18708
18780
  channelId?: string | undefined;
18709
18781
  status?: "active" | "pending" | undefined;
18710
18782
  apiKey?: string | undefined;
18783
+ tier?: "basic" | "regular" | "premium" | undefined;
18711
18784
  } | undefined;
18712
18785
  vonageCredentials?: {
18713
18786
  apiKey: string;
@@ -19449,6 +19522,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
19449
19522
  channelId?: string | undefined;
19450
19523
  status?: "active" | "pending" | undefined;
19451
19524
  apiKey?: string | undefined;
19525
+ tier?: "basic" | "regular" | "premium" | undefined;
19452
19526
  } | undefined;
19453
19527
  vonageCredentials?: {
19454
19528
  apiKey: string;
@@ -20186,6 +20260,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
20186
20260
  channelId?: string | undefined;
20187
20261
  status?: "active" | "pending" | undefined;
20188
20262
  apiKey?: string | undefined;
20263
+ tier?: "basic" | "regular" | "premium" | undefined;
20189
20264
  } | undefined;
20190
20265
  vonageCredentials?: {
20191
20266
  apiKey: string;
@@ -20817,6 +20892,7 @@ export declare const ChannelServiceResponseSchema: z.ZodObject<{
20817
20892
  channelId: z.ZodOptional<z.ZodString>;
20818
20893
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
20819
20894
  apiKey: z.ZodOptional<z.ZodString>;
20895
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
20820
20896
  }, "strip", z.ZodTypeAny, {
20821
20897
  email: string;
20822
20898
  wabaExternalId: string;
@@ -20826,6 +20902,7 @@ export declare const ChannelServiceResponseSchema: z.ZodObject<{
20826
20902
  channelId?: string | undefined;
20827
20903
  status?: "active" | "pending" | undefined;
20828
20904
  apiKey?: string | undefined;
20905
+ tier?: "basic" | "regular" | "premium" | undefined;
20829
20906
  }, {
20830
20907
  email: string;
20831
20908
  wabaExternalId: string;
@@ -20835,6 +20912,7 @@ export declare const ChannelServiceResponseSchema: z.ZodObject<{
20835
20912
  channelId?: string | undefined;
20836
20913
  status?: "active" | "pending" | undefined;
20837
20914
  apiKey?: string | undefined;
20915
+ tier?: "basic" | "regular" | "premium" | undefined;
20838
20916
  }>>;
20839
20917
  vonageCredentials: z.ZodOptional<z.ZodObject<{
20840
20918
  mobileNumber: z.ZodString;
@@ -20867,6 +20945,7 @@ export declare const ChannelServiceResponseSchema: z.ZodObject<{
20867
20945
  channelId?: string | undefined;
20868
20946
  status?: "active" | "pending" | undefined;
20869
20947
  apiKey?: string | undefined;
20948
+ tier?: "basic" | "regular" | "premium" | undefined;
20870
20949
  } | undefined;
20871
20950
  vonageCredentials?: {
20872
20951
  apiKey: string;
@@ -20891,6 +20970,7 @@ export declare const ChannelServiceResponseSchema: z.ZodObject<{
20891
20970
  channelId?: string | undefined;
20892
20971
  status?: "active" | "pending" | undefined;
20893
20972
  apiKey?: string | undefined;
20973
+ tier?: "basic" | "regular" | "premium" | undefined;
20894
20974
  } | undefined;
20895
20975
  vonageCredentials?: {
20896
20976
  apiKey: string;
@@ -20945,6 +21025,7 @@ export declare const ChannelServiceResponseSchema: z.ZodObject<{
20945
21025
  channelId?: string | undefined;
20946
21026
  status?: "active" | "pending" | undefined;
20947
21027
  apiKey?: string | undefined;
21028
+ tier?: "basic" | "regular" | "premium" | undefined;
20948
21029
  } | undefined;
20949
21030
  vonageCredentials?: {
20950
21031
  apiKey: string;
@@ -20987,6 +21068,7 @@ export declare const ChannelServiceResponseSchema: z.ZodObject<{
20987
21068
  channelId?: string | undefined;
20988
21069
  status?: "active" | "pending" | undefined;
20989
21070
  apiKey?: string | undefined;
21071
+ tier?: "basic" | "regular" | "premium" | undefined;
20990
21072
  } | undefined;
20991
21073
  vonageCredentials?: {
20992
21074
  apiKey: string;
@@ -21031,6 +21113,7 @@ export declare const ChannelServiceResponseSchema: z.ZodObject<{
21031
21113
  channelId?: string | undefined;
21032
21114
  status?: "active" | "pending" | undefined;
21033
21115
  apiKey?: string | undefined;
21116
+ tier?: "basic" | "regular" | "premium" | undefined;
21034
21117
  } | undefined;
21035
21118
  vonageCredentials?: {
21036
21119
  apiKey: string;
@@ -21076,6 +21159,7 @@ export declare const ChannelServiceResponseSchema: z.ZodObject<{
21076
21159
  channelId?: string | undefined;
21077
21160
  status?: "active" | "pending" | undefined;
21078
21161
  apiKey?: string | undefined;
21162
+ tier?: "basic" | "regular" | "premium" | undefined;
21079
21163
  } | undefined;
21080
21164
  vonageCredentials?: {
21081
21165
  apiKey: string;
@@ -22494,6 +22578,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
22494
22578
  channelId: z.ZodOptional<z.ZodString>;
22495
22579
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
22496
22580
  apiKey: z.ZodOptional<z.ZodString>;
22581
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
22497
22582
  }, "strip", z.ZodTypeAny, {
22498
22583
  email: string;
22499
22584
  wabaExternalId: string;
@@ -22503,6 +22588,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
22503
22588
  channelId?: string | undefined;
22504
22589
  status?: "active" | "pending" | undefined;
22505
22590
  apiKey?: string | undefined;
22591
+ tier?: "basic" | "regular" | "premium" | undefined;
22506
22592
  }, {
22507
22593
  email: string;
22508
22594
  wabaExternalId: string;
@@ -22512,6 +22598,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
22512
22598
  channelId?: string | undefined;
22513
22599
  status?: "active" | "pending" | undefined;
22514
22600
  apiKey?: string | undefined;
22601
+ tier?: "basic" | "regular" | "premium" | undefined;
22515
22602
  }>>;
22516
22603
  vonageCredentials: z.ZodOptional<z.ZodObject<{
22517
22604
  mobileNumber: z.ZodString;
@@ -22544,6 +22631,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
22544
22631
  channelId?: string | undefined;
22545
22632
  status?: "active" | "pending" | undefined;
22546
22633
  apiKey?: string | undefined;
22634
+ tier?: "basic" | "regular" | "premium" | undefined;
22547
22635
  } | undefined;
22548
22636
  vonageCredentials?: {
22549
22637
  apiKey: string;
@@ -22568,6 +22656,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
22568
22656
  channelId?: string | undefined;
22569
22657
  status?: "active" | "pending" | undefined;
22570
22658
  apiKey?: string | undefined;
22659
+ tier?: "basic" | "regular" | "premium" | undefined;
22571
22660
  } | undefined;
22572
22661
  vonageCredentials?: {
22573
22662
  apiKey: string;
@@ -22622,6 +22711,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
22622
22711
  channelId?: string | undefined;
22623
22712
  status?: "active" | "pending" | undefined;
22624
22713
  apiKey?: string | undefined;
22714
+ tier?: "basic" | "regular" | "premium" | undefined;
22625
22715
  } | undefined;
22626
22716
  vonageCredentials?: {
22627
22717
  apiKey: string;
@@ -22664,6 +22754,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
22664
22754
  channelId?: string | undefined;
22665
22755
  status?: "active" | "pending" | undefined;
22666
22756
  apiKey?: string | undefined;
22757
+ tier?: "basic" | "regular" | "premium" | undefined;
22667
22758
  } | undefined;
22668
22759
  vonageCredentials?: {
22669
22760
  apiKey: string;
@@ -23339,6 +23430,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
23339
23430
  channelId?: string | undefined;
23340
23431
  status?: "active" | "pending" | undefined;
23341
23432
  apiKey?: string | undefined;
23433
+ tier?: "basic" | "regular" | "premium" | undefined;
23342
23434
  } | undefined;
23343
23435
  vonageCredentials?: {
23344
23436
  apiKey: string;
@@ -23664,6 +23756,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
23664
23756
  channelId?: string | undefined;
23665
23757
  status?: "active" | "pending" | undefined;
23666
23758
  apiKey?: string | undefined;
23759
+ tier?: "basic" | "regular" | "premium" | undefined;
23667
23760
  } | undefined;
23668
23761
  vonageCredentials?: {
23669
23762
  apiKey: string;
@@ -24645,6 +24738,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
24645
24738
  channelId?: string | undefined;
24646
24739
  status?: "active" | "pending" | undefined;
24647
24740
  apiKey?: string | undefined;
24741
+ tier?: "basic" | "regular" | "premium" | undefined;
24648
24742
  } | undefined;
24649
24743
  vonageCredentials?: {
24650
24744
  apiKey: string;
@@ -25133,6 +25227,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
25133
25227
  channelId?: string | undefined;
25134
25228
  status?: "active" | "pending" | undefined;
25135
25229
  apiKey?: string | undefined;
25230
+ tier?: "basic" | "regular" | "premium" | undefined;
25136
25231
  } | undefined;
25137
25232
  vonageCredentials?: {
25138
25233
  apiKey: string;
@@ -25623,6 +25718,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
25623
25718
  channelId?: string | undefined;
25624
25719
  status?: "active" | "pending" | undefined;
25625
25720
  apiKey?: string | undefined;
25721
+ tier?: "basic" | "regular" | "premium" | undefined;
25626
25722
  } | undefined;
25627
25723
  vonageCredentials?: {
25628
25724
  apiKey: string;
@@ -26113,6 +26209,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
26113
26209
  channelId?: string | undefined;
26114
26210
  status?: "active" | "pending" | undefined;
26115
26211
  apiKey?: string | undefined;
26212
+ tier?: "basic" | "regular" | "premium" | undefined;
26116
26213
  } | undefined;
26117
26214
  vonageCredentials?: {
26118
26215
  apiKey: string;