@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
@@ -74,6 +74,7 @@ export declare const telegramContract: {
74
74
  channelId: z.ZodOptional<z.ZodString>;
75
75
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
76
76
  apiKey: z.ZodOptional<z.ZodString>;
77
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
77
78
  }, "strip", z.ZodTypeAny, {
78
79
  email: string;
79
80
  wabaExternalId: string;
@@ -83,6 +84,7 @@ export declare const telegramContract: {
83
84
  channelId?: string | undefined;
84
85
  status?: "active" | "pending" | undefined;
85
86
  apiKey?: string | undefined;
87
+ tier?: "basic" | "regular" | "premium" | undefined;
86
88
  }, {
87
89
  email: string;
88
90
  wabaExternalId: string;
@@ -92,6 +94,7 @@ export declare const telegramContract: {
92
94
  channelId?: string | undefined;
93
95
  status?: "active" | "pending" | undefined;
94
96
  apiKey?: string | undefined;
97
+ tier?: "basic" | "regular" | "premium" | undefined;
95
98
  }>>;
96
99
  vonageCredentials: z.ZodOptional<z.ZodObject<{
97
100
  mobileNumber: z.ZodString;
@@ -124,6 +127,7 @@ export declare const telegramContract: {
124
127
  channelId?: string | undefined;
125
128
  status?: "active" | "pending" | undefined;
126
129
  apiKey?: string | undefined;
130
+ tier?: "basic" | "regular" | "premium" | undefined;
127
131
  } | undefined;
128
132
  vonageCredentials?: {
129
133
  apiKey: string;
@@ -148,6 +152,7 @@ export declare const telegramContract: {
148
152
  channelId?: string | undefined;
149
153
  status?: "active" | "pending" | undefined;
150
154
  apiKey?: string | undefined;
155
+ tier?: "basic" | "regular" | "premium" | undefined;
151
156
  } | undefined;
152
157
  vonageCredentials?: {
153
158
  apiKey: string;
@@ -406,6 +411,7 @@ export declare const telegramContract: {
406
411
  channelId?: string | undefined;
407
412
  status?: "active" | "pending" | undefined;
408
413
  apiKey?: string | undefined;
414
+ tier?: "basic" | "regular" | "premium" | undefined;
409
415
  } | undefined;
410
416
  vonageCredentials?: {
411
417
  apiKey: string;
@@ -495,6 +501,7 @@ export declare const telegramContract: {
495
501
  channelId?: string | undefined;
496
502
  status?: "active" | "pending" | undefined;
497
503
  apiKey?: string | undefined;
504
+ tier?: "basic" | "regular" | "premium" | undefined;
498
505
  } | undefined;
499
506
  vonageCredentials?: {
500
507
  apiKey: string;
@@ -586,6 +593,7 @@ export declare const telegramContract: {
586
593
  channelId?: string | undefined;
587
594
  status?: "active" | "pending" | undefined;
588
595
  apiKey?: string | undefined;
596
+ tier?: "basic" | "regular" | "premium" | undefined;
589
597
  } | undefined;
590
598
  vonageCredentials?: {
591
599
  apiKey: string;
@@ -678,6 +686,7 @@ export declare const telegramContract: {
678
686
  channelId?: string | undefined;
679
687
  status?: "active" | "pending" | undefined;
680
688
  apiKey?: string | undefined;
689
+ tier?: "basic" | "regular" | "premium" | undefined;
681
690
  } | undefined;
682
691
  vonageCredentials?: {
683
692
  apiKey: string;
@@ -806,6 +815,7 @@ export declare const telegramContract: {
806
815
  channelId: z.ZodOptional<z.ZodString>;
807
816
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
808
817
  apiKey: z.ZodOptional<z.ZodString>;
818
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
809
819
  }, "strip", z.ZodTypeAny, {
810
820
  email: string;
811
821
  wabaExternalId: string;
@@ -815,6 +825,7 @@ export declare const telegramContract: {
815
825
  channelId?: string | undefined;
816
826
  status?: "active" | "pending" | undefined;
817
827
  apiKey?: string | undefined;
828
+ tier?: "basic" | "regular" | "premium" | undefined;
818
829
  }, {
819
830
  email: string;
820
831
  wabaExternalId: string;
@@ -824,6 +835,7 @@ export declare const telegramContract: {
824
835
  channelId?: string | undefined;
825
836
  status?: "active" | "pending" | undefined;
826
837
  apiKey?: string | undefined;
838
+ tier?: "basic" | "regular" | "premium" | undefined;
827
839
  }>>;
828
840
  vonageCredentials: z.ZodOptional<z.ZodObject<{
829
841
  mobileNumber: z.ZodString;
@@ -856,6 +868,7 @@ export declare const telegramContract: {
856
868
  channelId?: string | undefined;
857
869
  status?: "active" | "pending" | undefined;
858
870
  apiKey?: string | undefined;
871
+ tier?: "basic" | "regular" | "premium" | undefined;
859
872
  } | undefined;
860
873
  vonageCredentials?: {
861
874
  apiKey: string;
@@ -880,6 +893,7 @@ export declare const telegramContract: {
880
893
  channelId?: string | undefined;
881
894
  status?: "active" | "pending" | undefined;
882
895
  apiKey?: string | undefined;
896
+ tier?: "basic" | "regular" | "premium" | undefined;
883
897
  } | undefined;
884
898
  vonageCredentials?: {
885
899
  apiKey: string;
@@ -934,6 +948,7 @@ export declare const telegramContract: {
934
948
  channelId?: string | undefined;
935
949
  status?: "active" | "pending" | undefined;
936
950
  apiKey?: string | undefined;
951
+ tier?: "basic" | "regular" | "premium" | undefined;
937
952
  } | undefined;
938
953
  vonageCredentials?: {
939
954
  apiKey: string;
@@ -976,6 +991,7 @@ export declare const telegramContract: {
976
991
  channelId?: string | undefined;
977
992
  status?: "active" | "pending" | undefined;
978
993
  apiKey?: string | undefined;
994
+ tier?: "basic" | "regular" | "premium" | undefined;
979
995
  } | undefined;
980
996
  vonageCredentials?: {
981
997
  apiKey: string;
@@ -1020,6 +1036,7 @@ export declare const telegramContract: {
1020
1036
  channelId?: string | undefined;
1021
1037
  status?: "active" | "pending" | undefined;
1022
1038
  apiKey?: string | undefined;
1039
+ tier?: "basic" | "regular" | "premium" | undefined;
1023
1040
  } | undefined;
1024
1041
  vonageCredentials?: {
1025
1042
  apiKey: string;
@@ -1065,6 +1082,7 @@ export declare const telegramContract: {
1065
1082
  channelId?: string | undefined;
1066
1083
  status?: "active" | "pending" | undefined;
1067
1084
  apiKey?: string | undefined;
1085
+ tier?: "basic" | "regular" | "premium" | undefined;
1068
1086
  } | undefined;
1069
1087
  vonageCredentials?: {
1070
1088
  apiKey: string;
@@ -1259,6 +1277,7 @@ export declare const telegramContract: {
1259
1277
  channelId: z.ZodOptional<z.ZodString>;
1260
1278
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
1261
1279
  apiKey: z.ZodOptional<z.ZodString>;
1280
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
1262
1281
  }, "strip", z.ZodTypeAny, {
1263
1282
  email: string;
1264
1283
  wabaExternalId: string;
@@ -1268,6 +1287,7 @@ export declare const telegramContract: {
1268
1287
  channelId?: string | undefined;
1269
1288
  status?: "active" | "pending" | undefined;
1270
1289
  apiKey?: string | undefined;
1290
+ tier?: "basic" | "regular" | "premium" | undefined;
1271
1291
  }, {
1272
1292
  email: string;
1273
1293
  wabaExternalId: string;
@@ -1277,6 +1297,7 @@ export declare const telegramContract: {
1277
1297
  channelId?: string | undefined;
1278
1298
  status?: "active" | "pending" | undefined;
1279
1299
  apiKey?: string | undefined;
1300
+ tier?: "basic" | "regular" | "premium" | undefined;
1280
1301
  }>>;
1281
1302
  vonageCredentials: z.ZodOptional<z.ZodObject<{
1282
1303
  mobileNumber: z.ZodString;
@@ -1309,6 +1330,7 @@ export declare const telegramContract: {
1309
1330
  channelId?: string | undefined;
1310
1331
  status?: "active" | "pending" | undefined;
1311
1332
  apiKey?: string | undefined;
1333
+ tier?: "basic" | "regular" | "premium" | undefined;
1312
1334
  } | undefined;
1313
1335
  vonageCredentials?: {
1314
1336
  apiKey: string;
@@ -1333,6 +1355,7 @@ export declare const telegramContract: {
1333
1355
  channelId?: string | undefined;
1334
1356
  status?: "active" | "pending" | undefined;
1335
1357
  apiKey?: string | undefined;
1358
+ tier?: "basic" | "regular" | "premium" | undefined;
1336
1359
  } | undefined;
1337
1360
  vonageCredentials?: {
1338
1361
  apiKey: string;
@@ -1387,6 +1410,7 @@ export declare const telegramContract: {
1387
1410
  channelId?: string | undefined;
1388
1411
  status?: "active" | "pending" | undefined;
1389
1412
  apiKey?: string | undefined;
1413
+ tier?: "basic" | "regular" | "premium" | undefined;
1390
1414
  } | undefined;
1391
1415
  vonageCredentials?: {
1392
1416
  apiKey: string;
@@ -1429,6 +1453,7 @@ export declare const telegramContract: {
1429
1453
  channelId?: string | undefined;
1430
1454
  status?: "active" | "pending" | undefined;
1431
1455
  apiKey?: string | undefined;
1456
+ tier?: "basic" | "regular" | "premium" | undefined;
1432
1457
  } | undefined;
1433
1458
  vonageCredentials?: {
1434
1459
  apiKey: string;
@@ -1453,7 +1478,7 @@ export declare const telegramContract: {
1453
1478
  } | undefined;
1454
1479
  }>;
1455
1480
  messengerTags: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"post_purchase_update">, z.ZodLiteral<"account_update">, z.ZodLiteral<"confirmed_event_update">]>>;
1456
- telegramBusinessConnectionId: z.ZodNullable<z.ZodString>;
1481
+ telegramBusinessConnectionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1457
1482
  }, "strip", z.ZodTypeAny, {
1458
1483
  id: string;
1459
1484
  channel: {
@@ -1476,6 +1501,7 @@ export declare const telegramContract: {
1476
1501
  channelId?: string | undefined;
1477
1502
  status?: "active" | "pending" | undefined;
1478
1503
  apiKey?: string | undefined;
1504
+ tier?: "basic" | "regular" | "premium" | undefined;
1479
1505
  } | undefined;
1480
1506
  vonageCredentials?: {
1481
1507
  apiKey: string;
@@ -1535,11 +1561,11 @@ export declare const telegramContract: {
1535
1561
  id: string;
1536
1562
  email: string;
1537
1563
  } | null;
1538
- telegramBusinessConnectionId: string | null;
1539
1564
  lastMessage?: string | undefined;
1540
1565
  handleTime?: number | undefined;
1541
1566
  metadata?: any;
1542
1567
  messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
1568
+ telegramBusinessConnectionId?: string | null | undefined;
1543
1569
  }, {
1544
1570
  id: string;
1545
1571
  channel: {
@@ -1562,6 +1588,7 @@ export declare const telegramContract: {
1562
1588
  channelId?: string | undefined;
1563
1589
  status?: "active" | "pending" | undefined;
1564
1590
  apiKey?: string | undefined;
1591
+ tier?: "basic" | "regular" | "premium" | undefined;
1565
1592
  } | undefined;
1566
1593
  vonageCredentials?: {
1567
1594
  apiKey: string;
@@ -1621,11 +1648,11 @@ export declare const telegramContract: {
1621
1648
  id: string;
1622
1649
  email: string;
1623
1650
  } | null;
1624
- telegramBusinessConnectionId: string | null;
1625
1651
  lastMessage?: string | undefined;
1626
1652
  handleTime?: number | undefined;
1627
1653
  metadata?: any;
1628
1654
  messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
1655
+ telegramBusinessConnectionId?: string | null | undefined;
1629
1656
  }>;
1630
1657
  message: z.ZodObject<{
1631
1658
  id: z.ZodOptional<z.ZodString>;
@@ -1816,6 +1843,7 @@ export declare const telegramContract: {
1816
1843
  channelId?: string | undefined;
1817
1844
  status?: "active" | "pending" | undefined;
1818
1845
  apiKey?: string | undefined;
1846
+ tier?: "basic" | "regular" | "premium" | undefined;
1819
1847
  } | undefined;
1820
1848
  vonageCredentials?: {
1821
1849
  apiKey: string;
@@ -1875,11 +1903,11 @@ export declare const telegramContract: {
1875
1903
  id: string;
1876
1904
  email: string;
1877
1905
  } | null;
1878
- telegramBusinessConnectionId: string | null;
1879
1906
  lastMessage?: string | undefined;
1880
1907
  handleTime?: number | undefined;
1881
1908
  metadata?: any;
1882
1909
  messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
1910
+ telegramBusinessConnectionId?: string | null | undefined;
1883
1911
  };
1884
1912
  isBot: boolean | null;
1885
1913
  }, {
@@ -1941,6 +1969,7 @@ export declare const telegramContract: {
1941
1969
  channelId?: string | undefined;
1942
1970
  status?: "active" | "pending" | undefined;
1943
1971
  apiKey?: string | undefined;
1972
+ tier?: "basic" | "regular" | "premium" | undefined;
1944
1973
  } | undefined;
1945
1974
  vonageCredentials?: {
1946
1975
  apiKey: string;
@@ -2000,11 +2029,11 @@ export declare const telegramContract: {
2000
2029
  id: string;
2001
2030
  email: string;
2002
2031
  } | null;
2003
- telegramBusinessConnectionId: string | null;
2004
2032
  lastMessage?: string | undefined;
2005
2033
  handleTime?: number | undefined;
2006
2034
  metadata?: any;
2007
2035
  messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
2036
+ telegramBusinessConnectionId?: string | null | undefined;
2008
2037
  };
2009
2038
  isBot?: boolean | null | undefined;
2010
2039
  }>;
@@ -3961,6 +3990,7 @@ export declare const telegramContract: {
3961
3990
  channelId: z.ZodOptional<z.ZodString>;
3962
3991
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
3963
3992
  apiKey: z.ZodOptional<z.ZodString>;
3993
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
3964
3994
  }, "strip", z.ZodTypeAny, {
3965
3995
  email: string;
3966
3996
  wabaExternalId: string;
@@ -3970,6 +4000,7 @@ export declare const telegramContract: {
3970
4000
  channelId?: string | undefined;
3971
4001
  status?: "active" | "pending" | undefined;
3972
4002
  apiKey?: string | undefined;
4003
+ tier?: "basic" | "regular" | "premium" | undefined;
3973
4004
  }, {
3974
4005
  email: string;
3975
4006
  wabaExternalId: string;
@@ -3979,6 +4010,7 @@ export declare const telegramContract: {
3979
4010
  channelId?: string | undefined;
3980
4011
  status?: "active" | "pending" | undefined;
3981
4012
  apiKey?: string | undefined;
4013
+ tier?: "basic" | "regular" | "premium" | undefined;
3982
4014
  }>>;
3983
4015
  vonageCredentials: z.ZodOptional<z.ZodObject<{
3984
4016
  mobileNumber: z.ZodString;
@@ -4011,6 +4043,7 @@ export declare const telegramContract: {
4011
4043
  channelId?: string | undefined;
4012
4044
  status?: "active" | "pending" | undefined;
4013
4045
  apiKey?: string | undefined;
4046
+ tier?: "basic" | "regular" | "premium" | undefined;
4014
4047
  } | undefined;
4015
4048
  vonageCredentials?: {
4016
4049
  apiKey: string;
@@ -4035,6 +4068,7 @@ export declare const telegramContract: {
4035
4068
  channelId?: string | undefined;
4036
4069
  status?: "active" | "pending" | undefined;
4037
4070
  apiKey?: string | undefined;
4071
+ tier?: "basic" | "regular" | "premium" | undefined;
4038
4072
  } | undefined;
4039
4073
  vonageCredentials?: {
4040
4074
  apiKey: string;
@@ -4293,6 +4327,7 @@ export declare const telegramContract: {
4293
4327
  channelId?: string | undefined;
4294
4328
  status?: "active" | "pending" | undefined;
4295
4329
  apiKey?: string | undefined;
4330
+ tier?: "basic" | "regular" | "premium" | undefined;
4296
4331
  } | undefined;
4297
4332
  vonageCredentials?: {
4298
4333
  apiKey: string;
@@ -4382,6 +4417,7 @@ export declare const telegramContract: {
4382
4417
  channelId?: string | undefined;
4383
4418
  status?: "active" | "pending" | undefined;
4384
4419
  apiKey?: string | undefined;
4420
+ tier?: "basic" | "regular" | "premium" | undefined;
4385
4421
  } | undefined;
4386
4422
  vonageCredentials?: {
4387
4423
  apiKey: string;
@@ -4919,6 +4955,7 @@ export declare const telegramContract: {
4919
4955
  channelId?: string | undefined;
4920
4956
  status?: "active" | "pending" | undefined;
4921
4957
  apiKey?: string | undefined;
4958
+ tier?: "basic" | "regular" | "premium" | undefined;
4922
4959
  } | undefined;
4923
4960
  vonageCredentials?: {
4924
4961
  apiKey: string;
@@ -5319,6 +5356,7 @@ export declare const telegramContract: {
5319
5356
  channelId?: string | undefined;
5320
5357
  status?: "active" | "pending" | undefined;
5321
5358
  apiKey?: string | undefined;
5359
+ tier?: "basic" | "regular" | "premium" | undefined;
5322
5360
  } | undefined;
5323
5361
  vonageCredentials?: {
5324
5362
  apiKey: string;
@@ -8435,6 +8473,7 @@ export declare const telegramContract: {
8435
8473
  channelId: z.ZodOptional<z.ZodString>;
8436
8474
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
8437
8475
  apiKey: z.ZodOptional<z.ZodString>;
8476
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
8438
8477
  }, "strip", z.ZodTypeAny, {
8439
8478
  email: string;
8440
8479
  wabaExternalId: string;
@@ -8444,6 +8483,7 @@ export declare const telegramContract: {
8444
8483
  channelId?: string | undefined;
8445
8484
  status?: "active" | "pending" | undefined;
8446
8485
  apiKey?: string | undefined;
8486
+ tier?: "basic" | "regular" | "premium" | undefined;
8447
8487
  }, {
8448
8488
  email: string;
8449
8489
  wabaExternalId: string;
@@ -8453,6 +8493,7 @@ export declare const telegramContract: {
8453
8493
  channelId?: string | undefined;
8454
8494
  status?: "active" | "pending" | undefined;
8455
8495
  apiKey?: string | undefined;
8496
+ tier?: "basic" | "regular" | "premium" | undefined;
8456
8497
  }>>;
8457
8498
  vonageCredentials: z.ZodOptional<z.ZodObject<{
8458
8499
  mobileNumber: z.ZodString;
@@ -8485,6 +8526,7 @@ export declare const telegramContract: {
8485
8526
  channelId?: string | undefined;
8486
8527
  status?: "active" | "pending" | undefined;
8487
8528
  apiKey?: string | undefined;
8529
+ tier?: "basic" | "regular" | "premium" | undefined;
8488
8530
  } | undefined;
8489
8531
  vonageCredentials?: {
8490
8532
  apiKey: string;
@@ -8509,6 +8551,7 @@ export declare const telegramContract: {
8509
8551
  channelId?: string | undefined;
8510
8552
  status?: "active" | "pending" | undefined;
8511
8553
  apiKey?: string | undefined;
8554
+ tier?: "basic" | "regular" | "premium" | undefined;
8512
8555
  } | undefined;
8513
8556
  vonageCredentials?: {
8514
8557
  apiKey: string;
@@ -8767,6 +8810,7 @@ export declare const telegramContract: {
8767
8810
  channelId?: string | undefined;
8768
8811
  status?: "active" | "pending" | undefined;
8769
8812
  apiKey?: string | undefined;
8813
+ tier?: "basic" | "regular" | "premium" | undefined;
8770
8814
  } | undefined;
8771
8815
  vonageCredentials?: {
8772
8816
  apiKey: string;
@@ -8856,6 +8900,7 @@ export declare const telegramContract: {
8856
8900
  channelId?: string | undefined;
8857
8901
  status?: "active" | "pending" | undefined;
8858
8902
  apiKey?: string | undefined;
8903
+ tier?: "basic" | "regular" | "premium" | undefined;
8859
8904
  } | undefined;
8860
8905
  vonageCredentials?: {
8861
8906
  apiKey: string;
@@ -9393,6 +9438,7 @@ export declare const telegramContract: {
9393
9438
  channelId?: string | undefined;
9394
9439
  status?: "active" | "pending" | undefined;
9395
9440
  apiKey?: string | undefined;
9441
+ tier?: "basic" | "regular" | "premium" | undefined;
9396
9442
  } | undefined;
9397
9443
  vonageCredentials?: {
9398
9444
  apiKey: string;
@@ -9793,6 +9839,7 @@ export declare const telegramContract: {
9793
9839
  channelId?: string | undefined;
9794
9840
  status?: "active" | "pending" | undefined;
9795
9841
  apiKey?: string | undefined;
9842
+ tier?: "basic" | "regular" | "premium" | undefined;
9796
9843
  } | undefined;
9797
9844
  vonageCredentials?: {
9798
9845
  apiKey: string;
@@ -11966,6 +12013,7 @@ export declare const telegramContract: {
11966
12013
  channelId?: string | undefined;
11967
12014
  status?: "active" | "pending" | undefined;
11968
12015
  apiKey?: string | undefined;
12016
+ tier?: "basic" | "regular" | "premium" | undefined;
11969
12017
  } | undefined;
11970
12018
  vonageCredentials?: {
11971
12019
  apiKey: string;
@@ -12703,6 +12751,7 @@ export declare const telegramContract: {
12703
12751
  channelId?: string | undefined;
12704
12752
  status?: "active" | "pending" | undefined;
12705
12753
  apiKey?: string | undefined;
12754
+ tier?: "basic" | "regular" | "premium" | undefined;
12706
12755
  } | undefined;
12707
12756
  vonageCredentials?: {
12708
12757
  apiKey: string;
@@ -13441,6 +13490,7 @@ export declare const telegramContract: {
13441
13490
  channelId?: string | undefined;
13442
13491
  status?: "active" | "pending" | undefined;
13443
13492
  apiKey?: string | undefined;
13493
+ tier?: "basic" | "regular" | "premium" | undefined;
13444
13494
  } | undefined;
13445
13495
  vonageCredentials?: {
13446
13496
  apiKey: string;
@@ -14178,6 +14228,7 @@ export declare const telegramContract: {
14178
14228
  channelId?: string | undefined;
14179
14229
  status?: "active" | "pending" | undefined;
14180
14230
  apiKey?: string | undefined;
14231
+ tier?: "basic" | "regular" | "premium" | undefined;
14181
14232
  } | undefined;
14182
14233
  vonageCredentials?: {
14183
14234
  apiKey: string;
@@ -14916,6 +14967,7 @@ export declare const telegramContract: {
14916
14967
  channelId?: string | undefined;
14917
14968
  status?: "active" | "pending" | undefined;
14918
14969
  apiKey?: string | undefined;
14970
+ tier?: "basic" | "regular" | "premium" | undefined;
14919
14971
  } | undefined;
14920
14972
  vonageCredentials?: {
14921
14973
  apiKey: string;
@@ -15653,6 +15705,7 @@ export declare const telegramContract: {
15653
15705
  channelId?: string | undefined;
15654
15706
  status?: "active" | "pending" | undefined;
15655
15707
  apiKey?: string | undefined;
15708
+ tier?: "basic" | "regular" | "premium" | undefined;
15656
15709
  } | undefined;
15657
15710
  vonageCredentials?: {
15658
15711
  apiKey: string;
@@ -16393,6 +16446,7 @@ export declare const telegramContract: {
16393
16446
  channelId?: string | undefined;
16394
16447
  status?: "active" | "pending" | undefined;
16395
16448
  apiKey?: string | undefined;
16449
+ tier?: "basic" | "regular" | "premium" | undefined;
16396
16450
  } | undefined;
16397
16451
  vonageCredentials?: {
16398
16452
  apiKey: string;
@@ -17130,6 +17184,7 @@ export declare const telegramContract: {
17130
17184
  channelId?: string | undefined;
17131
17185
  status?: "active" | "pending" | undefined;
17132
17186
  apiKey?: string | undefined;
17187
+ tier?: "basic" | "regular" | "premium" | undefined;
17133
17188
  } | undefined;
17134
17189
  vonageCredentials?: {
17135
17190
  apiKey: string;
@@ -17871,6 +17926,7 @@ export declare const telegramContract: {
17871
17926
  channelId?: string | undefined;
17872
17927
  status?: "active" | "pending" | undefined;
17873
17928
  apiKey?: string | undefined;
17929
+ tier?: "basic" | "regular" | "premium" | undefined;
17874
17930
  } | undefined;
17875
17931
  vonageCredentials?: {
17876
17932
  apiKey: string;
@@ -18608,6 +18664,7 @@ export declare const telegramContract: {
18608
18664
  channelId?: string | undefined;
18609
18665
  status?: "active" | "pending" | undefined;
18610
18666
  apiKey?: string | undefined;
18667
+ tier?: "basic" | "regular" | "premium" | undefined;
18611
18668
  } | undefined;
18612
18669
  vonageCredentials?: {
18613
18670
  apiKey: string;
@@ -19264,6 +19321,7 @@ export declare const telegramContract: {
19264
19321
  channelId: z.ZodOptional<z.ZodString>;
19265
19322
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
19266
19323
  apiKey: z.ZodOptional<z.ZodString>;
19324
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
19267
19325
  }, "strip", z.ZodTypeAny, {
19268
19326
  email: string;
19269
19327
  wabaExternalId: string;
@@ -19273,6 +19331,7 @@ export declare const telegramContract: {
19273
19331
  channelId?: string | undefined;
19274
19332
  status?: "active" | "pending" | undefined;
19275
19333
  apiKey?: string | undefined;
19334
+ tier?: "basic" | "regular" | "premium" | undefined;
19276
19335
  }, {
19277
19336
  email: string;
19278
19337
  wabaExternalId: string;
@@ -19282,6 +19341,7 @@ export declare const telegramContract: {
19282
19341
  channelId?: string | undefined;
19283
19342
  status?: "active" | "pending" | undefined;
19284
19343
  apiKey?: string | undefined;
19344
+ tier?: "basic" | "regular" | "premium" | undefined;
19285
19345
  }>>;
19286
19346
  vonageCredentials: z.ZodOptional<z.ZodObject<{
19287
19347
  mobileNumber: z.ZodString;
@@ -19314,6 +19374,7 @@ export declare const telegramContract: {
19314
19374
  channelId?: string | undefined;
19315
19375
  status?: "active" | "pending" | undefined;
19316
19376
  apiKey?: string | undefined;
19377
+ tier?: "basic" | "regular" | "premium" | undefined;
19317
19378
  } | undefined;
19318
19379
  vonageCredentials?: {
19319
19380
  apiKey: string;
@@ -19338,6 +19399,7 @@ export declare const telegramContract: {
19338
19399
  channelId?: string | undefined;
19339
19400
  status?: "active" | "pending" | undefined;
19340
19401
  apiKey?: string | undefined;
19402
+ tier?: "basic" | "regular" | "premium" | undefined;
19341
19403
  } | undefined;
19342
19404
  vonageCredentials?: {
19343
19405
  apiKey: string;
@@ -19392,6 +19454,7 @@ export declare const telegramContract: {
19392
19454
  channelId?: string | undefined;
19393
19455
  status?: "active" | "pending" | undefined;
19394
19456
  apiKey?: string | undefined;
19457
+ tier?: "basic" | "regular" | "premium" | undefined;
19395
19458
  } | undefined;
19396
19459
  vonageCredentials?: {
19397
19460
  apiKey: string;
@@ -19434,6 +19497,7 @@ export declare const telegramContract: {
19434
19497
  channelId?: string | undefined;
19435
19498
  status?: "active" | "pending" | undefined;
19436
19499
  apiKey?: string | undefined;
19500
+ tier?: "basic" | "regular" | "premium" | undefined;
19437
19501
  } | undefined;
19438
19502
  vonageCredentials?: {
19439
19503
  apiKey: string;
@@ -19478,6 +19542,7 @@ export declare const telegramContract: {
19478
19542
  channelId?: string | undefined;
19479
19543
  status?: "active" | "pending" | undefined;
19480
19544
  apiKey?: string | undefined;
19545
+ tier?: "basic" | "regular" | "premium" | undefined;
19481
19546
  } | undefined;
19482
19547
  vonageCredentials?: {
19483
19548
  apiKey: string;
@@ -19523,6 +19588,7 @@ export declare const telegramContract: {
19523
19588
  channelId?: string | undefined;
19524
19589
  status?: "active" | "pending" | undefined;
19525
19590
  apiKey?: string | undefined;
19591
+ tier?: "basic" | "regular" | "premium" | undefined;
19526
19592
  } | undefined;
19527
19593
  vonageCredentials?: {
19528
19594
  apiKey: string;
@@ -19605,6 +19671,7 @@ export declare const telegramContract: {
19605
19671
  channelId: z.ZodOptional<z.ZodString>;
19606
19672
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
19607
19673
  apiKey: z.ZodOptional<z.ZodString>;
19674
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
19608
19675
  }, "strip", z.ZodTypeAny, {
19609
19676
  email: string;
19610
19677
  wabaExternalId: string;
@@ -19614,6 +19681,7 @@ export declare const telegramContract: {
19614
19681
  channelId?: string | undefined;
19615
19682
  status?: "active" | "pending" | undefined;
19616
19683
  apiKey?: string | undefined;
19684
+ tier?: "basic" | "regular" | "premium" | undefined;
19617
19685
  }, {
19618
19686
  email: string;
19619
19687
  wabaExternalId: string;
@@ -19623,6 +19691,7 @@ export declare const telegramContract: {
19623
19691
  channelId?: string | undefined;
19624
19692
  status?: "active" | "pending" | undefined;
19625
19693
  apiKey?: string | undefined;
19694
+ tier?: "basic" | "regular" | "premium" | undefined;
19626
19695
  }>>;
19627
19696
  vonageCredentials: z.ZodOptional<z.ZodObject<{
19628
19697
  mobileNumber: z.ZodString;
@@ -19655,6 +19724,7 @@ export declare const telegramContract: {
19655
19724
  channelId?: string | undefined;
19656
19725
  status?: "active" | "pending" | undefined;
19657
19726
  apiKey?: string | undefined;
19727
+ tier?: "basic" | "regular" | "premium" | undefined;
19658
19728
  } | undefined;
19659
19729
  vonageCredentials?: {
19660
19730
  apiKey: string;
@@ -19679,6 +19749,7 @@ export declare const telegramContract: {
19679
19749
  channelId?: string | undefined;
19680
19750
  status?: "active" | "pending" | undefined;
19681
19751
  apiKey?: string | undefined;
19752
+ tier?: "basic" | "regular" | "premium" | undefined;
19682
19753
  } | undefined;
19683
19754
  vonageCredentials?: {
19684
19755
  apiKey: string;
@@ -19733,6 +19804,7 @@ export declare const telegramContract: {
19733
19804
  channelId?: string | undefined;
19734
19805
  status?: "active" | "pending" | undefined;
19735
19806
  apiKey?: string | undefined;
19807
+ tier?: "basic" | "regular" | "premium" | undefined;
19736
19808
  } | undefined;
19737
19809
  vonageCredentials?: {
19738
19810
  apiKey: string;
@@ -19775,6 +19847,7 @@ export declare const telegramContract: {
19775
19847
  channelId?: string | undefined;
19776
19848
  status?: "active" | "pending" | undefined;
19777
19849
  apiKey?: string | undefined;
19850
+ tier?: "basic" | "regular" | "premium" | undefined;
19778
19851
  } | undefined;
19779
19852
  vonageCredentials?: {
19780
19853
  apiKey: string;
@@ -19819,6 +19892,7 @@ export declare const telegramContract: {
19819
19892
  channelId?: string | undefined;
19820
19893
  status?: "active" | "pending" | undefined;
19821
19894
  apiKey?: string | undefined;
19895
+ tier?: "basic" | "regular" | "premium" | undefined;
19822
19896
  } | undefined;
19823
19897
  vonageCredentials?: {
19824
19898
  apiKey: string;
@@ -19864,6 +19938,7 @@ export declare const telegramContract: {
19864
19938
  channelId?: string | undefined;
19865
19939
  status?: "active" | "pending" | undefined;
19866
19940
  apiKey?: string | undefined;
19941
+ tier?: "basic" | "regular" | "premium" | undefined;
19867
19942
  } | undefined;
19868
19943
  vonageCredentials?: {
19869
19944
  apiKey: string;