@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 viberContract: {
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 viberContract: {
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 viberContract: {
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 viberContract: {
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 viberContract: {
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 viberContract: {
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 viberContract: {
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 viberContract: {
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 viberContract: {
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;
@@ -809,6 +818,7 @@ export declare const viberContract: {
809
818
  channelId: z.ZodOptional<z.ZodString>;
810
819
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
811
820
  apiKey: z.ZodOptional<z.ZodString>;
821
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
812
822
  }, "strip", z.ZodTypeAny, {
813
823
  email: string;
814
824
  wabaExternalId: string;
@@ -818,6 +828,7 @@ export declare const viberContract: {
818
828
  channelId?: string | undefined;
819
829
  status?: "active" | "pending" | undefined;
820
830
  apiKey?: string | undefined;
831
+ tier?: "basic" | "regular" | "premium" | undefined;
821
832
  }, {
822
833
  email: string;
823
834
  wabaExternalId: string;
@@ -827,6 +838,7 @@ export declare const viberContract: {
827
838
  channelId?: string | undefined;
828
839
  status?: "active" | "pending" | undefined;
829
840
  apiKey?: string | undefined;
841
+ tier?: "basic" | "regular" | "premium" | undefined;
830
842
  }>>;
831
843
  vonageCredentials: z.ZodOptional<z.ZodObject<{
832
844
  mobileNumber: z.ZodString;
@@ -859,6 +871,7 @@ export declare const viberContract: {
859
871
  channelId?: string | undefined;
860
872
  status?: "active" | "pending" | undefined;
861
873
  apiKey?: string | undefined;
874
+ tier?: "basic" | "regular" | "premium" | undefined;
862
875
  } | undefined;
863
876
  vonageCredentials?: {
864
877
  apiKey: string;
@@ -883,6 +896,7 @@ export declare const viberContract: {
883
896
  channelId?: string | undefined;
884
897
  status?: "active" | "pending" | undefined;
885
898
  apiKey?: string | undefined;
899
+ tier?: "basic" | "regular" | "premium" | undefined;
886
900
  } | undefined;
887
901
  vonageCredentials?: {
888
902
  apiKey: string;
@@ -1141,6 +1155,7 @@ export declare const viberContract: {
1141
1155
  channelId?: string | undefined;
1142
1156
  status?: "active" | "pending" | undefined;
1143
1157
  apiKey?: string | undefined;
1158
+ tier?: "basic" | "regular" | "premium" | undefined;
1144
1159
  } | undefined;
1145
1160
  vonageCredentials?: {
1146
1161
  apiKey: string;
@@ -1230,6 +1245,7 @@ export declare const viberContract: {
1230
1245
  channelId?: string | undefined;
1231
1246
  status?: "active" | "pending" | undefined;
1232
1247
  apiKey?: string | undefined;
1248
+ tier?: "basic" | "regular" | "premium" | undefined;
1233
1249
  } | undefined;
1234
1250
  vonageCredentials?: {
1235
1251
  apiKey: string;
@@ -1321,6 +1337,7 @@ export declare const viberContract: {
1321
1337
  channelId?: string | undefined;
1322
1338
  status?: "active" | "pending" | undefined;
1323
1339
  apiKey?: string | undefined;
1340
+ tier?: "basic" | "regular" | "premium" | undefined;
1324
1341
  } | undefined;
1325
1342
  vonageCredentials?: {
1326
1343
  apiKey: string;
@@ -1413,6 +1430,7 @@ export declare const viberContract: {
1413
1430
  channelId?: string | undefined;
1414
1431
  status?: "active" | "pending" | undefined;
1415
1432
  apiKey?: string | undefined;
1433
+ tier?: "basic" | "regular" | "premium" | undefined;
1416
1434
  } | undefined;
1417
1435
  vonageCredentials?: {
1418
1436
  apiKey: string;
@@ -1644,6 +1662,7 @@ export declare const viberContract: {
1644
1662
  channelId: z.ZodOptional<z.ZodString>;
1645
1663
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
1646
1664
  apiKey: z.ZodOptional<z.ZodString>;
1665
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
1647
1666
  }, "strip", z.ZodTypeAny, {
1648
1667
  email: string;
1649
1668
  wabaExternalId: string;
@@ -1653,6 +1672,7 @@ export declare const viberContract: {
1653
1672
  channelId?: string | undefined;
1654
1673
  status?: "active" | "pending" | undefined;
1655
1674
  apiKey?: string | undefined;
1675
+ tier?: "basic" | "regular" | "premium" | undefined;
1656
1676
  }, {
1657
1677
  email: string;
1658
1678
  wabaExternalId: string;
@@ -1662,6 +1682,7 @@ export declare const viberContract: {
1662
1682
  channelId?: string | undefined;
1663
1683
  status?: "active" | "pending" | undefined;
1664
1684
  apiKey?: string | undefined;
1685
+ tier?: "basic" | "regular" | "premium" | undefined;
1665
1686
  }>>;
1666
1687
  vonageCredentials: z.ZodOptional<z.ZodObject<{
1667
1688
  mobileNumber: z.ZodString;
@@ -1694,6 +1715,7 @@ export declare const viberContract: {
1694
1715
  channelId?: string | undefined;
1695
1716
  status?: "active" | "pending" | undefined;
1696
1717
  apiKey?: string | undefined;
1718
+ tier?: "basic" | "regular" | "premium" | undefined;
1697
1719
  } | undefined;
1698
1720
  vonageCredentials?: {
1699
1721
  apiKey: string;
@@ -1718,6 +1740,7 @@ export declare const viberContract: {
1718
1740
  channelId?: string | undefined;
1719
1741
  status?: "active" | "pending" | undefined;
1720
1742
  apiKey?: string | undefined;
1743
+ tier?: "basic" | "regular" | "premium" | undefined;
1721
1744
  } | undefined;
1722
1745
  vonageCredentials?: {
1723
1746
  apiKey: string;
@@ -1772,6 +1795,7 @@ export declare const viberContract: {
1772
1795
  channelId?: string | undefined;
1773
1796
  status?: "active" | "pending" | undefined;
1774
1797
  apiKey?: string | undefined;
1798
+ tier?: "basic" | "regular" | "premium" | undefined;
1775
1799
  } | undefined;
1776
1800
  vonageCredentials?: {
1777
1801
  apiKey: string;
@@ -1814,6 +1838,7 @@ export declare const viberContract: {
1814
1838
  channelId?: string | undefined;
1815
1839
  status?: "active" | "pending" | undefined;
1816
1840
  apiKey?: string | undefined;
1841
+ tier?: "basic" | "regular" | "premium" | undefined;
1817
1842
  } | undefined;
1818
1843
  vonageCredentials?: {
1819
1844
  apiKey: string;
@@ -1838,7 +1863,7 @@ export declare const viberContract: {
1838
1863
  } | undefined;
1839
1864
  }>;
1840
1865
  messengerTags: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"post_purchase_update">, z.ZodLiteral<"account_update">, z.ZodLiteral<"confirmed_event_update">]>>;
1841
- telegramBusinessConnectionId: z.ZodNullable<z.ZodString>;
1866
+ telegramBusinessConnectionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1842
1867
  }, "strip", z.ZodTypeAny, {
1843
1868
  id: string;
1844
1869
  channel: {
@@ -1861,6 +1886,7 @@ export declare const viberContract: {
1861
1886
  channelId?: string | undefined;
1862
1887
  status?: "active" | "pending" | undefined;
1863
1888
  apiKey?: string | undefined;
1889
+ tier?: "basic" | "regular" | "premium" | undefined;
1864
1890
  } | undefined;
1865
1891
  vonageCredentials?: {
1866
1892
  apiKey: string;
@@ -1920,11 +1946,11 @@ export declare const viberContract: {
1920
1946
  id: string;
1921
1947
  email: string;
1922
1948
  } | null;
1923
- telegramBusinessConnectionId: string | null;
1924
1949
  lastMessage?: string | undefined;
1925
1950
  handleTime?: number | undefined;
1926
1951
  metadata?: any;
1927
1952
  messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
1953
+ telegramBusinessConnectionId?: string | null | undefined;
1928
1954
  }, {
1929
1955
  id: string;
1930
1956
  channel: {
@@ -1947,6 +1973,7 @@ export declare const viberContract: {
1947
1973
  channelId?: string | undefined;
1948
1974
  status?: "active" | "pending" | undefined;
1949
1975
  apiKey?: string | undefined;
1976
+ tier?: "basic" | "regular" | "premium" | undefined;
1950
1977
  } | undefined;
1951
1978
  vonageCredentials?: {
1952
1979
  apiKey: string;
@@ -2006,11 +2033,11 @@ export declare const viberContract: {
2006
2033
  id: string;
2007
2034
  email: string;
2008
2035
  } | null;
2009
- telegramBusinessConnectionId: string | null;
2010
2036
  lastMessage?: string | undefined;
2011
2037
  handleTime?: number | undefined;
2012
2038
  metadata?: any;
2013
2039
  messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
2040
+ telegramBusinessConnectionId?: string | null | undefined;
2014
2041
  }>;
2015
2042
  message: z.ZodObject<{
2016
2043
  id: z.ZodOptional<z.ZodString>;
@@ -2201,6 +2228,7 @@ export declare const viberContract: {
2201
2228
  channelId?: string | undefined;
2202
2229
  status?: "active" | "pending" | undefined;
2203
2230
  apiKey?: string | undefined;
2231
+ tier?: "basic" | "regular" | "premium" | undefined;
2204
2232
  } | undefined;
2205
2233
  vonageCredentials?: {
2206
2234
  apiKey: string;
@@ -2260,11 +2288,11 @@ export declare const viberContract: {
2260
2288
  id: string;
2261
2289
  email: string;
2262
2290
  } | null;
2263
- telegramBusinessConnectionId: string | null;
2264
2291
  lastMessage?: string | undefined;
2265
2292
  handleTime?: number | undefined;
2266
2293
  metadata?: any;
2267
2294
  messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
2295
+ telegramBusinessConnectionId?: string | null | undefined;
2268
2296
  };
2269
2297
  isBot: boolean | null;
2270
2298
  }, {
@@ -2326,6 +2354,7 @@ export declare const viberContract: {
2326
2354
  channelId?: string | undefined;
2327
2355
  status?: "active" | "pending" | undefined;
2328
2356
  apiKey?: string | undefined;
2357
+ tier?: "basic" | "regular" | "premium" | undefined;
2329
2358
  } | undefined;
2330
2359
  vonageCredentials?: {
2331
2360
  apiKey: string;
@@ -2385,11 +2414,11 @@ export declare const viberContract: {
2385
2414
  id: string;
2386
2415
  email: string;
2387
2416
  } | null;
2388
- telegramBusinessConnectionId: string | null;
2389
2417
  lastMessage?: string | undefined;
2390
2418
  handleTime?: number | undefined;
2391
2419
  metadata?: any;
2392
2420
  messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
2421
+ telegramBusinessConnectionId?: string | null | undefined;
2393
2422
  };
2394
2423
  isBot?: boolean | null | undefined;
2395
2424
  }>;
@@ -4346,6 +4375,7 @@ export declare const viberContract: {
4346
4375
  channelId: z.ZodOptional<z.ZodString>;
4347
4376
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
4348
4377
  apiKey: z.ZodOptional<z.ZodString>;
4378
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
4349
4379
  }, "strip", z.ZodTypeAny, {
4350
4380
  email: string;
4351
4381
  wabaExternalId: string;
@@ -4355,6 +4385,7 @@ export declare const viberContract: {
4355
4385
  channelId?: string | undefined;
4356
4386
  status?: "active" | "pending" | undefined;
4357
4387
  apiKey?: string | undefined;
4388
+ tier?: "basic" | "regular" | "premium" | undefined;
4358
4389
  }, {
4359
4390
  email: string;
4360
4391
  wabaExternalId: string;
@@ -4364,6 +4395,7 @@ export declare const viberContract: {
4364
4395
  channelId?: string | undefined;
4365
4396
  status?: "active" | "pending" | undefined;
4366
4397
  apiKey?: string | undefined;
4398
+ tier?: "basic" | "regular" | "premium" | undefined;
4367
4399
  }>>;
4368
4400
  vonageCredentials: z.ZodOptional<z.ZodObject<{
4369
4401
  mobileNumber: z.ZodString;
@@ -4396,6 +4428,7 @@ export declare const viberContract: {
4396
4428
  channelId?: string | undefined;
4397
4429
  status?: "active" | "pending" | undefined;
4398
4430
  apiKey?: string | undefined;
4431
+ tier?: "basic" | "regular" | "premium" | undefined;
4399
4432
  } | undefined;
4400
4433
  vonageCredentials?: {
4401
4434
  apiKey: string;
@@ -4420,6 +4453,7 @@ export declare const viberContract: {
4420
4453
  channelId?: string | undefined;
4421
4454
  status?: "active" | "pending" | undefined;
4422
4455
  apiKey?: string | undefined;
4456
+ tier?: "basic" | "regular" | "premium" | undefined;
4423
4457
  } | undefined;
4424
4458
  vonageCredentials?: {
4425
4459
  apiKey: string;
@@ -4678,6 +4712,7 @@ export declare const viberContract: {
4678
4712
  channelId?: string | undefined;
4679
4713
  status?: "active" | "pending" | undefined;
4680
4714
  apiKey?: string | undefined;
4715
+ tier?: "basic" | "regular" | "premium" | undefined;
4681
4716
  } | undefined;
4682
4717
  vonageCredentials?: {
4683
4718
  apiKey: string;
@@ -4767,6 +4802,7 @@ export declare const viberContract: {
4767
4802
  channelId?: string | undefined;
4768
4803
  status?: "active" | "pending" | undefined;
4769
4804
  apiKey?: string | undefined;
4805
+ tier?: "basic" | "regular" | "premium" | undefined;
4770
4806
  } | undefined;
4771
4807
  vonageCredentials?: {
4772
4808
  apiKey: string;
@@ -5304,6 +5340,7 @@ export declare const viberContract: {
5304
5340
  channelId?: string | undefined;
5305
5341
  status?: "active" | "pending" | undefined;
5306
5342
  apiKey?: string | undefined;
5343
+ tier?: "basic" | "regular" | "premium" | undefined;
5307
5344
  } | undefined;
5308
5345
  vonageCredentials?: {
5309
5346
  apiKey: string;
@@ -5704,6 +5741,7 @@ export declare const viberContract: {
5704
5741
  channelId?: string | undefined;
5705
5742
  status?: "active" | "pending" | undefined;
5706
5743
  apiKey?: string | undefined;
5744
+ tier?: "basic" | "regular" | "premium" | undefined;
5707
5745
  } | undefined;
5708
5746
  vonageCredentials?: {
5709
5747
  apiKey: string;
@@ -8820,6 +8858,7 @@ export declare const viberContract: {
8820
8858
  channelId: z.ZodOptional<z.ZodString>;
8821
8859
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
8822
8860
  apiKey: z.ZodOptional<z.ZodString>;
8861
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
8823
8862
  }, "strip", z.ZodTypeAny, {
8824
8863
  email: string;
8825
8864
  wabaExternalId: string;
@@ -8829,6 +8868,7 @@ export declare const viberContract: {
8829
8868
  channelId?: string | undefined;
8830
8869
  status?: "active" | "pending" | undefined;
8831
8870
  apiKey?: string | undefined;
8871
+ tier?: "basic" | "regular" | "premium" | undefined;
8832
8872
  }, {
8833
8873
  email: string;
8834
8874
  wabaExternalId: string;
@@ -8838,6 +8878,7 @@ export declare const viberContract: {
8838
8878
  channelId?: string | undefined;
8839
8879
  status?: "active" | "pending" | undefined;
8840
8880
  apiKey?: string | undefined;
8881
+ tier?: "basic" | "regular" | "premium" | undefined;
8841
8882
  }>>;
8842
8883
  vonageCredentials: z.ZodOptional<z.ZodObject<{
8843
8884
  mobileNumber: z.ZodString;
@@ -8870,6 +8911,7 @@ export declare const viberContract: {
8870
8911
  channelId?: string | undefined;
8871
8912
  status?: "active" | "pending" | undefined;
8872
8913
  apiKey?: string | undefined;
8914
+ tier?: "basic" | "regular" | "premium" | undefined;
8873
8915
  } | undefined;
8874
8916
  vonageCredentials?: {
8875
8917
  apiKey: string;
@@ -8894,6 +8936,7 @@ export declare const viberContract: {
8894
8936
  channelId?: string | undefined;
8895
8937
  status?: "active" | "pending" | undefined;
8896
8938
  apiKey?: string | undefined;
8939
+ tier?: "basic" | "regular" | "premium" | undefined;
8897
8940
  } | undefined;
8898
8941
  vonageCredentials?: {
8899
8942
  apiKey: string;
@@ -9152,6 +9195,7 @@ export declare const viberContract: {
9152
9195
  channelId?: string | undefined;
9153
9196
  status?: "active" | "pending" | undefined;
9154
9197
  apiKey?: string | undefined;
9198
+ tier?: "basic" | "regular" | "premium" | undefined;
9155
9199
  } | undefined;
9156
9200
  vonageCredentials?: {
9157
9201
  apiKey: string;
@@ -9241,6 +9285,7 @@ export declare const viberContract: {
9241
9285
  channelId?: string | undefined;
9242
9286
  status?: "active" | "pending" | undefined;
9243
9287
  apiKey?: string | undefined;
9288
+ tier?: "basic" | "regular" | "premium" | undefined;
9244
9289
  } | undefined;
9245
9290
  vonageCredentials?: {
9246
9291
  apiKey: string;
@@ -9778,6 +9823,7 @@ export declare const viberContract: {
9778
9823
  channelId?: string | undefined;
9779
9824
  status?: "active" | "pending" | undefined;
9780
9825
  apiKey?: string | undefined;
9826
+ tier?: "basic" | "regular" | "premium" | undefined;
9781
9827
  } | undefined;
9782
9828
  vonageCredentials?: {
9783
9829
  apiKey: string;
@@ -10178,6 +10224,7 @@ export declare const viberContract: {
10178
10224
  channelId?: string | undefined;
10179
10225
  status?: "active" | "pending" | undefined;
10180
10226
  apiKey?: string | undefined;
10227
+ tier?: "basic" | "regular" | "premium" | undefined;
10181
10228
  } | undefined;
10182
10229
  vonageCredentials?: {
10183
10230
  apiKey: string;
@@ -12351,6 +12398,7 @@ export declare const viberContract: {
12351
12398
  channelId?: string | undefined;
12352
12399
  status?: "active" | "pending" | undefined;
12353
12400
  apiKey?: string | undefined;
12401
+ tier?: "basic" | "regular" | "premium" | undefined;
12354
12402
  } | undefined;
12355
12403
  vonageCredentials?: {
12356
12404
  apiKey: string;
@@ -13088,6 +13136,7 @@ export declare const viberContract: {
13088
13136
  channelId?: string | undefined;
13089
13137
  status?: "active" | "pending" | undefined;
13090
13138
  apiKey?: string | undefined;
13139
+ tier?: "basic" | "regular" | "premium" | undefined;
13091
13140
  } | undefined;
13092
13141
  vonageCredentials?: {
13093
13142
  apiKey: string;
@@ -13826,6 +13875,7 @@ export declare const viberContract: {
13826
13875
  channelId?: string | undefined;
13827
13876
  status?: "active" | "pending" | undefined;
13828
13877
  apiKey?: string | undefined;
13878
+ tier?: "basic" | "regular" | "premium" | undefined;
13829
13879
  } | undefined;
13830
13880
  vonageCredentials?: {
13831
13881
  apiKey: string;
@@ -14563,6 +14613,7 @@ export declare const viberContract: {
14563
14613
  channelId?: string | undefined;
14564
14614
  status?: "active" | "pending" | undefined;
14565
14615
  apiKey?: string | undefined;
14616
+ tier?: "basic" | "regular" | "premium" | undefined;
14566
14617
  } | undefined;
14567
14618
  vonageCredentials?: {
14568
14619
  apiKey: string;
@@ -15301,6 +15352,7 @@ export declare const viberContract: {
15301
15352
  channelId?: string | undefined;
15302
15353
  status?: "active" | "pending" | undefined;
15303
15354
  apiKey?: string | undefined;
15355
+ tier?: "basic" | "regular" | "premium" | undefined;
15304
15356
  } | undefined;
15305
15357
  vonageCredentials?: {
15306
15358
  apiKey: string;
@@ -16038,6 +16090,7 @@ export declare const viberContract: {
16038
16090
  channelId?: string | undefined;
16039
16091
  status?: "active" | "pending" | undefined;
16040
16092
  apiKey?: string | undefined;
16093
+ tier?: "basic" | "regular" | "premium" | undefined;
16041
16094
  } | undefined;
16042
16095
  vonageCredentials?: {
16043
16096
  apiKey: string;
@@ -16778,6 +16831,7 @@ export declare const viberContract: {
16778
16831
  channelId?: string | undefined;
16779
16832
  status?: "active" | "pending" | undefined;
16780
16833
  apiKey?: string | undefined;
16834
+ tier?: "basic" | "regular" | "premium" | undefined;
16781
16835
  } | undefined;
16782
16836
  vonageCredentials?: {
16783
16837
  apiKey: string;
@@ -17515,6 +17569,7 @@ export declare const viberContract: {
17515
17569
  channelId?: string | undefined;
17516
17570
  status?: "active" | "pending" | undefined;
17517
17571
  apiKey?: string | undefined;
17572
+ tier?: "basic" | "regular" | "premium" | undefined;
17518
17573
  } | undefined;
17519
17574
  vonageCredentials?: {
17520
17575
  apiKey: string;
@@ -18256,6 +18311,7 @@ export declare const viberContract: {
18256
18311
  channelId?: string | undefined;
18257
18312
  status?: "active" | "pending" | undefined;
18258
18313
  apiKey?: string | undefined;
18314
+ tier?: "basic" | "regular" | "premium" | undefined;
18259
18315
  } | undefined;
18260
18316
  vonageCredentials?: {
18261
18317
  apiKey: string;
@@ -18993,6 +19049,7 @@ export declare const viberContract: {
18993
19049
  channelId?: string | undefined;
18994
19050
  status?: "active" | "pending" | undefined;
18995
19051
  apiKey?: string | undefined;
19052
+ tier?: "basic" | "regular" | "premium" | undefined;
18996
19053
  } | undefined;
18997
19054
  vonageCredentials?: {
18998
19055
  apiKey: string;
@@ -19652,6 +19709,7 @@ export declare const viberContract: {
19652
19709
  channelId: z.ZodOptional<z.ZodString>;
19653
19710
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
19654
19711
  apiKey: z.ZodOptional<z.ZodString>;
19712
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
19655
19713
  }, "strip", z.ZodTypeAny, {
19656
19714
  email: string;
19657
19715
  wabaExternalId: string;
@@ -19661,6 +19719,7 @@ export declare const viberContract: {
19661
19719
  channelId?: string | undefined;
19662
19720
  status?: "active" | "pending" | undefined;
19663
19721
  apiKey?: string | undefined;
19722
+ tier?: "basic" | "regular" | "premium" | undefined;
19664
19723
  }, {
19665
19724
  email: string;
19666
19725
  wabaExternalId: string;
@@ -19670,6 +19729,7 @@ export declare const viberContract: {
19670
19729
  channelId?: string | undefined;
19671
19730
  status?: "active" | "pending" | undefined;
19672
19731
  apiKey?: string | undefined;
19732
+ tier?: "basic" | "regular" | "premium" | undefined;
19673
19733
  }>>;
19674
19734
  vonageCredentials: z.ZodOptional<z.ZodObject<{
19675
19735
  mobileNumber: z.ZodString;
@@ -19702,6 +19762,7 @@ export declare const viberContract: {
19702
19762
  channelId?: string | undefined;
19703
19763
  status?: "active" | "pending" | undefined;
19704
19764
  apiKey?: string | undefined;
19765
+ tier?: "basic" | "regular" | "premium" | undefined;
19705
19766
  } | undefined;
19706
19767
  vonageCredentials?: {
19707
19768
  apiKey: string;
@@ -19726,6 +19787,7 @@ export declare const viberContract: {
19726
19787
  channelId?: string | undefined;
19727
19788
  status?: "active" | "pending" | undefined;
19728
19789
  apiKey?: string | undefined;
19790
+ tier?: "basic" | "regular" | "premium" | undefined;
19729
19791
  } | undefined;
19730
19792
  vonageCredentials?: {
19731
19793
  apiKey: string;
@@ -19984,6 +20046,7 @@ export declare const viberContract: {
19984
20046
  channelId?: string | undefined;
19985
20047
  status?: "active" | "pending" | undefined;
19986
20048
  apiKey?: string | undefined;
20049
+ tier?: "basic" | "regular" | "premium" | undefined;
19987
20050
  } | undefined;
19988
20051
  vonageCredentials?: {
19989
20052
  apiKey: string;
@@ -20073,6 +20136,7 @@ export declare const viberContract: {
20073
20136
  channelId?: string | undefined;
20074
20137
  status?: "active" | "pending" | undefined;
20075
20138
  apiKey?: string | undefined;
20139
+ tier?: "basic" | "regular" | "premium" | undefined;
20076
20140
  } | undefined;
20077
20141
  vonageCredentials?: {
20078
20142
  apiKey: string;
@@ -20164,6 +20228,7 @@ export declare const viberContract: {
20164
20228
  channelId?: string | undefined;
20165
20229
  status?: "active" | "pending" | undefined;
20166
20230
  apiKey?: string | undefined;
20231
+ tier?: "basic" | "regular" | "premium" | undefined;
20167
20232
  } | undefined;
20168
20233
  vonageCredentials?: {
20169
20234
  apiKey: string;
@@ -20256,6 +20321,7 @@ export declare const viberContract: {
20256
20321
  channelId?: string | undefined;
20257
20322
  status?: "active" | "pending" | undefined;
20258
20323
  apiKey?: string | undefined;
20324
+ tier?: "basic" | "regular" | "premium" | undefined;
20259
20325
  } | undefined;
20260
20326
  vonageCredentials?: {
20261
20327
  apiKey: string;
@@ -20384,6 +20450,7 @@ export declare const viberContract: {
20384
20450
  channelId: z.ZodOptional<z.ZodString>;
20385
20451
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
20386
20452
  apiKey: z.ZodOptional<z.ZodString>;
20453
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
20387
20454
  }, "strip", z.ZodTypeAny, {
20388
20455
  email: string;
20389
20456
  wabaExternalId: string;
@@ -20393,6 +20460,7 @@ export declare const viberContract: {
20393
20460
  channelId?: string | undefined;
20394
20461
  status?: "active" | "pending" | undefined;
20395
20462
  apiKey?: string | undefined;
20463
+ tier?: "basic" | "regular" | "premium" | undefined;
20396
20464
  }, {
20397
20465
  email: string;
20398
20466
  wabaExternalId: string;
@@ -20402,6 +20470,7 @@ export declare const viberContract: {
20402
20470
  channelId?: string | undefined;
20403
20471
  status?: "active" | "pending" | undefined;
20404
20472
  apiKey?: string | undefined;
20473
+ tier?: "basic" | "regular" | "premium" | undefined;
20405
20474
  }>>;
20406
20475
  vonageCredentials: z.ZodOptional<z.ZodObject<{
20407
20476
  mobileNumber: z.ZodString;
@@ -20434,6 +20503,7 @@ export declare const viberContract: {
20434
20503
  channelId?: string | undefined;
20435
20504
  status?: "active" | "pending" | undefined;
20436
20505
  apiKey?: string | undefined;
20506
+ tier?: "basic" | "regular" | "premium" | undefined;
20437
20507
  } | undefined;
20438
20508
  vonageCredentials?: {
20439
20509
  apiKey: string;
@@ -20458,6 +20528,7 @@ export declare const viberContract: {
20458
20528
  channelId?: string | undefined;
20459
20529
  status?: "active" | "pending" | undefined;
20460
20530
  apiKey?: string | undefined;
20531
+ tier?: "basic" | "regular" | "premium" | undefined;
20461
20532
  } | undefined;
20462
20533
  vonageCredentials?: {
20463
20534
  apiKey: string;
@@ -20512,6 +20583,7 @@ export declare const viberContract: {
20512
20583
  channelId?: string | undefined;
20513
20584
  status?: "active" | "pending" | undefined;
20514
20585
  apiKey?: string | undefined;
20586
+ tier?: "basic" | "regular" | "premium" | undefined;
20515
20587
  } | undefined;
20516
20588
  vonageCredentials?: {
20517
20589
  apiKey: string;
@@ -20554,6 +20626,7 @@ export declare const viberContract: {
20554
20626
  channelId?: string | undefined;
20555
20627
  status?: "active" | "pending" | undefined;
20556
20628
  apiKey?: string | undefined;
20629
+ tier?: "basic" | "regular" | "premium" | undefined;
20557
20630
  } | undefined;
20558
20631
  vonageCredentials?: {
20559
20632
  apiKey: string;
@@ -20598,6 +20671,7 @@ export declare const viberContract: {
20598
20671
  channelId?: string | undefined;
20599
20672
  status?: "active" | "pending" | undefined;
20600
20673
  apiKey?: string | undefined;
20674
+ tier?: "basic" | "regular" | "premium" | undefined;
20601
20675
  } | undefined;
20602
20676
  vonageCredentials?: {
20603
20677
  apiKey: string;
@@ -20643,6 +20717,7 @@ export declare const viberContract: {
20643
20717
  channelId?: string | undefined;
20644
20718
  status?: "active" | "pending" | undefined;
20645
20719
  apiKey?: string | undefined;
20720
+ tier?: "basic" | "regular" | "premium" | undefined;
20646
20721
  } | undefined;
20647
20722
  vonageCredentials?: {
20648
20723
  apiKey: string;