@kl1/contracts 1.2.26-uat → 1.2.28-uat

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 (65) hide show
  1. package/dist/api-contracts/src/channel/index.d.ts +179 -0
  2. package/dist/api-contracts/src/channel/index.d.ts.map +1 -1
  3. package/dist/api-contracts/src/channel/schema.d.ts +12 -0
  4. package/dist/api-contracts/src/channel/schema.d.ts.map +1 -1
  5. package/dist/api-contracts/src/channel/validation.d.ts +14 -0
  6. package/dist/api-contracts/src/channel/validation.d.ts.map +1 -1
  7. package/dist/api-contracts/src/chat/index.d.ts +3987 -298
  8. package/dist/api-contracts/src/chat/index.d.ts.map +1 -1
  9. package/dist/api-contracts/src/chat/schema.d.ts +1020 -129
  10. package/dist/api-contracts/src/chat/schema.d.ts.map +1 -1
  11. package/dist/api-contracts/src/chat/validation.d.ts +608 -76
  12. package/dist/api-contracts/src/chat/validation.d.ts.map +1 -1
  13. package/dist/api-contracts/src/contract.d.ts +5414 -586
  14. package/dist/api-contracts/src/contract.d.ts.map +1 -1
  15. package/dist/api-contracts/src/cx-log/index.d.ts +13 -0
  16. package/dist/api-contracts/src/cx-log/index.d.ts.map +1 -1
  17. package/dist/api-contracts/src/cx-log/schema.d.ts +11 -0
  18. package/dist/api-contracts/src/cx-log/schema.d.ts.map +1 -1
  19. package/dist/api-contracts/src/dashboard/index.d.ts +4 -4
  20. package/dist/api-contracts/src/dashboard/schema.d.ts +2 -2
  21. package/dist/api-contracts/src/facebook-feed/index.d.ts +624 -58
  22. package/dist/api-contracts/src/facebook-feed/index.d.ts.map +1 -1
  23. package/dist/api-contracts/src/facebook-feed/schema.d.ts +12 -3
  24. package/dist/api-contracts/src/facebook-feed/schema.d.ts.map +1 -1
  25. package/dist/api-contracts/src/facebook-feed/validation.d.ts +7 -0
  26. package/dist/api-contracts/src/facebook-feed/validation.d.ts.map +1 -1
  27. package/dist/api-contracts/src/hold-label/index.d.ts +133 -2
  28. package/dist/api-contracts/src/hold-label/index.d.ts.map +1 -1
  29. package/dist/api-contracts/src/hold-label/schema.d.ts +25 -0
  30. package/dist/api-contracts/src/hold-label/schema.d.ts.map +1 -1
  31. package/dist/api-contracts/src/hold-label/validation.d.ts +10 -0
  32. package/dist/api-contracts/src/hold-label/validation.d.ts.map +1 -1
  33. package/dist/api-contracts/src/index.d.ts +1 -0
  34. package/dist/api-contracts/src/index.d.ts.map +1 -1
  35. package/dist/api-contracts/src/instagram/index.d.ts +585 -48
  36. package/dist/api-contracts/src/instagram/index.d.ts.map +1 -1
  37. package/dist/api-contracts/src/line/index.d.ts +578 -53
  38. package/dist/api-contracts/src/line/index.d.ts.map +1 -1
  39. package/dist/api-contracts/src/line/validation.d.ts +16 -5
  40. package/dist/api-contracts/src/line/validation.d.ts.map +1 -1
  41. package/dist/api-contracts/src/messenger/index.d.ts +585 -48
  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 +85 -11
  46. package/dist/api-contracts/src/sms/index.d.ts.map +1 -1
  47. package/dist/api-contracts/src/sms/schema.d.ts +22 -0
  48. package/dist/api-contracts/src/sms/schema.d.ts.map +1 -1
  49. package/dist/api-contracts/src/telegram/index.d.ts +555 -48
  50. package/dist/api-contracts/src/telegram/index.d.ts.map +1 -1
  51. package/dist/api-contracts/src/viber/index.d.ts +555 -48
  52. package/dist/api-contracts/src/viber/index.d.ts.map +1 -1
  53. package/dist/api-contracts/src/webchat/index.d.ts +1582 -56
  54. package/dist/api-contracts/src/webchat/index.d.ts.map +1 -1
  55. package/dist/api-contracts/src/whatsapp/index.d.ts +569 -48
  56. package/dist/api-contracts/src/whatsapp/index.d.ts.map +1 -1
  57. package/dist/api-contracts/src/workflow-rule/index.d.ts +362 -10
  58. package/dist/api-contracts/src/workflow-rule/index.d.ts.map +1 -1
  59. package/dist/entities/src/enums/chat.d.ts +3 -0
  60. package/dist/entities/src/enums/chat.d.ts.map +1 -1
  61. package/dist/index.js +4383 -4287
  62. package/dist/index.js.map +1 -1
  63. package/dist/index.mjs +4382 -4287
  64. package/dist/index.mjs.map +1 -1
  65. 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,17 +2033,17 @@ 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>;
2017
2044
  message: z.ZodOptional<z.ZodString>;
2018
2045
  direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
2019
- type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "deleted", "unsupported"]>;
2046
+ type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
2020
2047
  readAt: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodString]>>>;
2021
2048
  metadata: z.ZodOptional<z.ZodAny>;
2022
2049
  platformId: z.ZodOptional<z.ZodString>;
@@ -2072,7 +2099,7 @@ export declare const viberContract: {
2072
2099
  editedAt: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodDate, z.ZodString]>>>;
2073
2100
  label: z.ZodOptional<z.ZodString>;
2074
2101
  }, "strip", z.ZodTypeAny, {
2075
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
2102
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
2076
2103
  direction: "incoming" | "outgoing" | "system";
2077
2104
  id?: string | undefined;
2078
2105
  message?: string | undefined;
@@ -2107,7 +2134,7 @@ export declare const viberContract: {
2107
2134
  editedAt?: string | Date | null | undefined;
2108
2135
  label?: string | undefined;
2109
2136
  }, {
2110
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
2137
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
2111
2138
  direction: "incoming" | "outgoing" | "system";
2112
2139
  id?: string | undefined;
2113
2140
  message?: string | undefined;
@@ -2144,7 +2171,7 @@ export declare const viberContract: {
2144
2171
  }>;
2145
2172
  }, "strip", z.ZodTypeAny, {
2146
2173
  message: {
2147
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
2174
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
2148
2175
  direction: "incoming" | "outgoing" | "system";
2149
2176
  id?: string | undefined;
2150
2177
  message?: string | undefined;
@@ -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,16 +2288,16 @@ 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
  }, {
2271
2299
  message: {
2272
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
2300
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
2273
2301
  direction: "incoming" | "outgoing" | "system";
2274
2302
  id?: string | undefined;
2275
2303
  message?: string | undefined;
@@ -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
  }>;
@@ -2398,7 +2427,7 @@ export declare const viberContract: {
2398
2427
  200: z.ZodObject<{
2399
2428
  requestId: z.ZodString;
2400
2429
  data: z.ZodObject<{
2401
- type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "deleted", "unsupported"]>;
2430
+ type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
2402
2431
  message: z.ZodString;
2403
2432
  id: z.ZodString;
2404
2433
  url: z.ZodString;
@@ -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;
@@ -4839,17 +4875,17 @@ export declare const viberContract: {
4839
4875
  }>;
4840
4876
  cxlog: z.ZodObject<{
4841
4877
  id: z.ZodString;
4878
+ channel: z.ZodNullable<z.ZodString>;
4879
+ direction: z.ZodNullable<z.ZodString>;
4842
4880
  createdAt: z.ZodDate;
4843
4881
  updatedAt: z.ZodDate;
4844
4882
  deletedAt: z.ZodNullable<z.ZodDate>;
4845
- caseId: z.ZodNumber;
4846
4883
  entityId: z.ZodString;
4847
- entityName: z.ZodString;
4848
- contactId: z.ZodNullable<z.ZodString>;
4849
- channel: z.ZodNullable<z.ZodString>;
4850
4884
  queueId: z.ZodNullable<z.ZodString>;
4885
+ contactId: z.ZodNullable<z.ZodString>;
4886
+ caseId: z.ZodNumber;
4887
+ entityName: z.ZodString;
4851
4888
  agentId: z.ZodNullable<z.ZodString>;
4852
- direction: z.ZodNullable<z.ZodString>;
4853
4889
  startedDate: z.ZodNullable<z.ZodDate>;
4854
4890
  handledTime: z.ZodNullable<z.ZodNumber>;
4855
4891
  firstResponseTime: z.ZodNullable<z.ZodNumber>;
@@ -5119,6 +5155,69 @@ export declare const viberContract: {
5119
5155
  dateValue: Date | null;
5120
5156
  }[] | null | undefined;
5121
5157
  }>>;
5158
+ holdLogs: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
5159
+ id: z.ZodString;
5160
+ createdAt: z.ZodDate;
5161
+ updatedAt: z.ZodDate;
5162
+ deletedAt: z.ZodNullable<z.ZodDate>;
5163
+ startedAt: z.ZodString;
5164
+ endedAt: z.ZodNullable<z.ZodString>;
5165
+ duration: z.ZodNullable<z.ZodNumber>;
5166
+ holdLabel: z.ZodObject<{
5167
+ id: z.ZodString;
5168
+ createdAt: z.ZodDate;
5169
+ updatedAt: z.ZodDate;
5170
+ deletedAt: z.ZodNullable<z.ZodDate>;
5171
+ name: z.ZodString;
5172
+ position: z.ZodNumber;
5173
+ }, "strip", z.ZodTypeAny, {
5174
+ name: string;
5175
+ id: string;
5176
+ position: number;
5177
+ createdAt: Date;
5178
+ updatedAt: Date;
5179
+ deletedAt: Date | null;
5180
+ }, {
5181
+ name: string;
5182
+ id: string;
5183
+ position: number;
5184
+ createdAt: Date;
5185
+ updatedAt: Date;
5186
+ deletedAt: Date | null;
5187
+ }>;
5188
+ }, "strip", z.ZodTypeAny, {
5189
+ id: string;
5190
+ createdAt: Date;
5191
+ updatedAt: Date;
5192
+ deletedAt: Date | null;
5193
+ startedAt: string;
5194
+ endedAt: string | null;
5195
+ duration: number | null;
5196
+ holdLabel: {
5197
+ name: string;
5198
+ id: string;
5199
+ position: number;
5200
+ createdAt: Date;
5201
+ updatedAt: Date;
5202
+ deletedAt: Date | null;
5203
+ };
5204
+ }, {
5205
+ id: string;
5206
+ createdAt: Date;
5207
+ updatedAt: Date;
5208
+ deletedAt: Date | null;
5209
+ startedAt: string;
5210
+ endedAt: string | null;
5211
+ duration: number | null;
5212
+ holdLabel: {
5213
+ name: string;
5214
+ id: string;
5215
+ position: number;
5216
+ createdAt: Date;
5217
+ updatedAt: Date;
5218
+ deletedAt: Date | null;
5219
+ };
5220
+ }>, "many">>>;
5122
5221
  }, "strip", z.ZodTypeAny, {
5123
5222
  id: string;
5124
5223
  channel: string | null;
@@ -5187,6 +5286,23 @@ export declare const viberContract: {
5187
5286
  dateValue: Date | null;
5188
5287
  }[] | null | undefined;
5189
5288
  } | null;
5289
+ holdLogs?: {
5290
+ id: string;
5291
+ createdAt: Date;
5292
+ updatedAt: Date;
5293
+ deletedAt: Date | null;
5294
+ startedAt: string;
5295
+ endedAt: string | null;
5296
+ duration: number | null;
5297
+ holdLabel: {
5298
+ name: string;
5299
+ id: string;
5300
+ position: number;
5301
+ createdAt: Date;
5302
+ updatedAt: Date;
5303
+ deletedAt: Date | null;
5304
+ };
5305
+ }[] | null | undefined;
5190
5306
  }, {
5191
5307
  id: string;
5192
5308
  channel: string | null;
@@ -5255,6 +5371,23 @@ export declare const viberContract: {
5255
5371
  dateValue: Date | null;
5256
5372
  }[] | null | undefined;
5257
5373
  } | null;
5374
+ holdLogs?: {
5375
+ id: string;
5376
+ createdAt: Date;
5377
+ updatedAt: Date;
5378
+ deletedAt: Date | null;
5379
+ startedAt: string;
5380
+ endedAt: string | null;
5381
+ duration: number | null;
5382
+ holdLabel: {
5383
+ name: string;
5384
+ id: string;
5385
+ position: number;
5386
+ createdAt: Date;
5387
+ updatedAt: Date;
5388
+ deletedAt: Date | null;
5389
+ };
5390
+ }[] | null | undefined;
5258
5391
  }>;
5259
5392
  workflowRule: z.ZodObject<{
5260
5393
  id: z.ZodString;
@@ -5304,6 +5437,7 @@ export declare const viberContract: {
5304
5437
  channelId?: string | undefined;
5305
5438
  status?: "active" | "pending" | undefined;
5306
5439
  apiKey?: string | undefined;
5440
+ tier?: "basic" | "regular" | "premium" | undefined;
5307
5441
  } | undefined;
5308
5442
  vonageCredentials?: {
5309
5443
  apiKey: string;
@@ -5671,6 +5805,23 @@ export declare const viberContract: {
5671
5805
  dateValue: Date | null;
5672
5806
  }[] | null | undefined;
5673
5807
  } | null;
5808
+ holdLogs?: {
5809
+ id: string;
5810
+ createdAt: Date;
5811
+ updatedAt: Date;
5812
+ deletedAt: Date | null;
5813
+ startedAt: string;
5814
+ endedAt: string | null;
5815
+ duration: number | null;
5816
+ holdLabel: {
5817
+ name: string;
5818
+ id: string;
5819
+ position: number;
5820
+ createdAt: Date;
5821
+ updatedAt: Date;
5822
+ deletedAt: Date | null;
5823
+ };
5824
+ }[] | null | undefined;
5674
5825
  };
5675
5826
  workflowRule: {
5676
5827
  name: string;
@@ -5704,6 +5855,7 @@ export declare const viberContract: {
5704
5855
  channelId?: string | undefined;
5705
5856
  status?: "active" | "pending" | undefined;
5706
5857
  apiKey?: string | undefined;
5858
+ tier?: "basic" | "regular" | "premium" | undefined;
5707
5859
  } | undefined;
5708
5860
  vonageCredentials?: {
5709
5861
  apiKey: string;
@@ -6071,6 +6223,23 @@ export declare const viberContract: {
6071
6223
  dateValue: Date | null;
6072
6224
  }[] | null | undefined;
6073
6225
  } | null;
6226
+ holdLogs?: {
6227
+ id: string;
6228
+ createdAt: Date;
6229
+ updatedAt: Date;
6230
+ deletedAt: Date | null;
6231
+ startedAt: string;
6232
+ endedAt: string | null;
6233
+ duration: number | null;
6234
+ holdLabel: {
6235
+ name: string;
6236
+ id: string;
6237
+ position: number;
6238
+ createdAt: Date;
6239
+ updatedAt: Date;
6240
+ deletedAt: Date | null;
6241
+ };
6242
+ }[] | null | undefined;
6074
6243
  };
6075
6244
  workflowRule: {
6076
6245
  name: string;
@@ -6121,7 +6290,7 @@ export declare const viberContract: {
6121
6290
  deletedAt: z.ZodNullable<z.ZodDate>;
6122
6291
  message: z.ZodString;
6123
6292
  direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
6124
- type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "deleted", "unsupported"]>;
6293
+ type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
6125
6294
  readAt: z.ZodDate;
6126
6295
  metadata: z.ZodAny;
6127
6296
  platformId: z.ZodString;
@@ -6779,7 +6948,7 @@ export declare const viberContract: {
6779
6948
  };
6780
6949
  }>;
6781
6950
  }, "strip", z.ZodTypeAny, {
6782
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
6951
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
6783
6952
  message: string;
6784
6953
  id: string;
6785
6954
  url: string;
@@ -6941,7 +7110,7 @@ export declare const viberContract: {
6941
7110
  metadata?: any;
6942
7111
  template?: any;
6943
7112
  }, {
6944
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
7113
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
6945
7114
  message: string;
6946
7115
  id: string;
6947
7116
  url: string;
@@ -7315,7 +7484,7 @@ export declare const viberContract: {
7315
7484
  deletedAt: z.ZodNullable<z.ZodDate>;
7316
7485
  message: z.ZodString;
7317
7486
  direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
7318
- type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "deleted", "unsupported"]>;
7487
+ type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
7319
7488
  readAt: z.ZodDate;
7320
7489
  metadata: z.ZodAny;
7321
7490
  platformId: z.ZodString;
@@ -8820,6 +8989,7 @@ export declare const viberContract: {
8820
8989
  channelId: z.ZodOptional<z.ZodString>;
8821
8990
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
8822
8991
  apiKey: z.ZodOptional<z.ZodString>;
8992
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
8823
8993
  }, "strip", z.ZodTypeAny, {
8824
8994
  email: string;
8825
8995
  wabaExternalId: string;
@@ -8829,6 +8999,7 @@ export declare const viberContract: {
8829
8999
  channelId?: string | undefined;
8830
9000
  status?: "active" | "pending" | undefined;
8831
9001
  apiKey?: string | undefined;
9002
+ tier?: "basic" | "regular" | "premium" | undefined;
8832
9003
  }, {
8833
9004
  email: string;
8834
9005
  wabaExternalId: string;
@@ -8838,6 +9009,7 @@ export declare const viberContract: {
8838
9009
  channelId?: string | undefined;
8839
9010
  status?: "active" | "pending" | undefined;
8840
9011
  apiKey?: string | undefined;
9012
+ tier?: "basic" | "regular" | "premium" | undefined;
8841
9013
  }>>;
8842
9014
  vonageCredentials: z.ZodOptional<z.ZodObject<{
8843
9015
  mobileNumber: z.ZodString;
@@ -8870,6 +9042,7 @@ export declare const viberContract: {
8870
9042
  channelId?: string | undefined;
8871
9043
  status?: "active" | "pending" | undefined;
8872
9044
  apiKey?: string | undefined;
9045
+ tier?: "basic" | "regular" | "premium" | undefined;
8873
9046
  } | undefined;
8874
9047
  vonageCredentials?: {
8875
9048
  apiKey: string;
@@ -8894,6 +9067,7 @@ export declare const viberContract: {
8894
9067
  channelId?: string | undefined;
8895
9068
  status?: "active" | "pending" | undefined;
8896
9069
  apiKey?: string | undefined;
9070
+ tier?: "basic" | "regular" | "premium" | undefined;
8897
9071
  } | undefined;
8898
9072
  vonageCredentials?: {
8899
9073
  apiKey: string;
@@ -9152,6 +9326,7 @@ export declare const viberContract: {
9152
9326
  channelId?: string | undefined;
9153
9327
  status?: "active" | "pending" | undefined;
9154
9328
  apiKey?: string | undefined;
9329
+ tier?: "basic" | "regular" | "premium" | undefined;
9155
9330
  } | undefined;
9156
9331
  vonageCredentials?: {
9157
9332
  apiKey: string;
@@ -9241,6 +9416,7 @@ export declare const viberContract: {
9241
9416
  channelId?: string | undefined;
9242
9417
  status?: "active" | "pending" | undefined;
9243
9418
  apiKey?: string | undefined;
9419
+ tier?: "basic" | "regular" | "premium" | undefined;
9244
9420
  } | undefined;
9245
9421
  vonageCredentials?: {
9246
9422
  apiKey: string;
@@ -9313,17 +9489,17 @@ export declare const viberContract: {
9313
9489
  }>;
9314
9490
  cxlog: z.ZodObject<{
9315
9491
  id: z.ZodString;
9492
+ channel: z.ZodNullable<z.ZodString>;
9493
+ direction: z.ZodNullable<z.ZodString>;
9316
9494
  createdAt: z.ZodDate;
9317
9495
  updatedAt: z.ZodDate;
9318
9496
  deletedAt: z.ZodNullable<z.ZodDate>;
9319
- caseId: z.ZodNumber;
9320
9497
  entityId: z.ZodString;
9321
- entityName: z.ZodString;
9322
- contactId: z.ZodNullable<z.ZodString>;
9323
- channel: z.ZodNullable<z.ZodString>;
9324
9498
  queueId: z.ZodNullable<z.ZodString>;
9499
+ contactId: z.ZodNullable<z.ZodString>;
9500
+ caseId: z.ZodNumber;
9501
+ entityName: z.ZodString;
9325
9502
  agentId: z.ZodNullable<z.ZodString>;
9326
- direction: z.ZodNullable<z.ZodString>;
9327
9503
  startedDate: z.ZodNullable<z.ZodDate>;
9328
9504
  handledTime: z.ZodNullable<z.ZodNumber>;
9329
9505
  firstResponseTime: z.ZodNullable<z.ZodNumber>;
@@ -9593,6 +9769,69 @@ export declare const viberContract: {
9593
9769
  dateValue: Date | null;
9594
9770
  }[] | null | undefined;
9595
9771
  }>>;
9772
+ holdLogs: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
9773
+ id: z.ZodString;
9774
+ createdAt: z.ZodDate;
9775
+ updatedAt: z.ZodDate;
9776
+ deletedAt: z.ZodNullable<z.ZodDate>;
9777
+ startedAt: z.ZodString;
9778
+ endedAt: z.ZodNullable<z.ZodString>;
9779
+ duration: z.ZodNullable<z.ZodNumber>;
9780
+ holdLabel: z.ZodObject<{
9781
+ id: z.ZodString;
9782
+ createdAt: z.ZodDate;
9783
+ updatedAt: z.ZodDate;
9784
+ deletedAt: z.ZodNullable<z.ZodDate>;
9785
+ name: z.ZodString;
9786
+ position: z.ZodNumber;
9787
+ }, "strip", z.ZodTypeAny, {
9788
+ name: string;
9789
+ id: string;
9790
+ position: number;
9791
+ createdAt: Date;
9792
+ updatedAt: Date;
9793
+ deletedAt: Date | null;
9794
+ }, {
9795
+ name: string;
9796
+ id: string;
9797
+ position: number;
9798
+ createdAt: Date;
9799
+ updatedAt: Date;
9800
+ deletedAt: Date | null;
9801
+ }>;
9802
+ }, "strip", z.ZodTypeAny, {
9803
+ id: string;
9804
+ createdAt: Date;
9805
+ updatedAt: Date;
9806
+ deletedAt: Date | null;
9807
+ startedAt: string;
9808
+ endedAt: string | null;
9809
+ duration: number | null;
9810
+ holdLabel: {
9811
+ name: string;
9812
+ id: string;
9813
+ position: number;
9814
+ createdAt: Date;
9815
+ updatedAt: Date;
9816
+ deletedAt: Date | null;
9817
+ };
9818
+ }, {
9819
+ id: string;
9820
+ createdAt: Date;
9821
+ updatedAt: Date;
9822
+ deletedAt: Date | null;
9823
+ startedAt: string;
9824
+ endedAt: string | null;
9825
+ duration: number | null;
9826
+ holdLabel: {
9827
+ name: string;
9828
+ id: string;
9829
+ position: number;
9830
+ createdAt: Date;
9831
+ updatedAt: Date;
9832
+ deletedAt: Date | null;
9833
+ };
9834
+ }>, "many">>>;
9596
9835
  }, "strip", z.ZodTypeAny, {
9597
9836
  id: string;
9598
9837
  channel: string | null;
@@ -9661,6 +9900,23 @@ export declare const viberContract: {
9661
9900
  dateValue: Date | null;
9662
9901
  }[] | null | undefined;
9663
9902
  } | null;
9903
+ holdLogs?: {
9904
+ id: string;
9905
+ createdAt: Date;
9906
+ updatedAt: Date;
9907
+ deletedAt: Date | null;
9908
+ startedAt: string;
9909
+ endedAt: string | null;
9910
+ duration: number | null;
9911
+ holdLabel: {
9912
+ name: string;
9913
+ id: string;
9914
+ position: number;
9915
+ createdAt: Date;
9916
+ updatedAt: Date;
9917
+ deletedAt: Date | null;
9918
+ };
9919
+ }[] | null | undefined;
9664
9920
  }, {
9665
9921
  id: string;
9666
9922
  channel: string | null;
@@ -9729,6 +9985,23 @@ export declare const viberContract: {
9729
9985
  dateValue: Date | null;
9730
9986
  }[] | null | undefined;
9731
9987
  } | null;
9988
+ holdLogs?: {
9989
+ id: string;
9990
+ createdAt: Date;
9991
+ updatedAt: Date;
9992
+ deletedAt: Date | null;
9993
+ startedAt: string;
9994
+ endedAt: string | null;
9995
+ duration: number | null;
9996
+ holdLabel: {
9997
+ name: string;
9998
+ id: string;
9999
+ position: number;
10000
+ createdAt: Date;
10001
+ updatedAt: Date;
10002
+ deletedAt: Date | null;
10003
+ };
10004
+ }[] | null | undefined;
9732
10005
  }>;
9733
10006
  workflowRule: z.ZodObject<{
9734
10007
  id: z.ZodString;
@@ -9778,6 +10051,7 @@ export declare const viberContract: {
9778
10051
  channelId?: string | undefined;
9779
10052
  status?: "active" | "pending" | undefined;
9780
10053
  apiKey?: string | undefined;
10054
+ tier?: "basic" | "regular" | "premium" | undefined;
9781
10055
  } | undefined;
9782
10056
  vonageCredentials?: {
9783
10057
  apiKey: string;
@@ -10145,6 +10419,23 @@ export declare const viberContract: {
10145
10419
  dateValue: Date | null;
10146
10420
  }[] | null | undefined;
10147
10421
  } | null;
10422
+ holdLogs?: {
10423
+ id: string;
10424
+ createdAt: Date;
10425
+ updatedAt: Date;
10426
+ deletedAt: Date | null;
10427
+ startedAt: string;
10428
+ endedAt: string | null;
10429
+ duration: number | null;
10430
+ holdLabel: {
10431
+ name: string;
10432
+ id: string;
10433
+ position: number;
10434
+ createdAt: Date;
10435
+ updatedAt: Date;
10436
+ deletedAt: Date | null;
10437
+ };
10438
+ }[] | null | undefined;
10148
10439
  };
10149
10440
  workflowRule: {
10150
10441
  name: string;
@@ -10178,6 +10469,7 @@ export declare const viberContract: {
10178
10469
  channelId?: string | undefined;
10179
10470
  status?: "active" | "pending" | undefined;
10180
10471
  apiKey?: string | undefined;
10472
+ tier?: "basic" | "regular" | "premium" | undefined;
10181
10473
  } | undefined;
10182
10474
  vonageCredentials?: {
10183
10475
  apiKey: string;
@@ -10545,6 +10837,23 @@ export declare const viberContract: {
10545
10837
  dateValue: Date | null;
10546
10838
  }[] | null | undefined;
10547
10839
  } | null;
10840
+ holdLogs?: {
10841
+ id: string;
10842
+ createdAt: Date;
10843
+ updatedAt: Date;
10844
+ deletedAt: Date | null;
10845
+ startedAt: string;
10846
+ endedAt: string | null;
10847
+ duration: number | null;
10848
+ holdLabel: {
10849
+ name: string;
10850
+ id: string;
10851
+ position: number;
10852
+ createdAt: Date;
10853
+ updatedAt: Date;
10854
+ deletedAt: Date | null;
10855
+ };
10856
+ }[] | null | undefined;
10548
10857
  };
10549
10858
  workflowRule: {
10550
10859
  name: string;
@@ -10598,7 +10907,7 @@ export declare const viberContract: {
10598
10907
  deletedAt: z.ZodNullable<z.ZodDate>;
10599
10908
  message: z.ZodString;
10600
10909
  direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
10601
- type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "edited", "deleted", "unsupported"]>;
10910
+ type: z.ZodEnum<["text", "image", "video", "audio", "file", "imagemap", "fallback", "location", "sticker", "carousel", "card", "choice", "dropdown", "text_with_image", "reaction", "contacts", "carousel", "card", "choice", "dropdown", "assign", "solve", "resolved", "reopen", "open", "closed", "handed_over", "updated", "started", "hold", "unhold", "auto_unhold", "edited", "deleted", "unsupported"]>;
10602
10911
  readAt: z.ZodDate;
10603
10912
  metadata: z.ZodAny;
10604
10913
  platformId: z.ZodString;
@@ -11256,7 +11565,7 @@ export declare const viberContract: {
11256
11565
  };
11257
11566
  }>;
11258
11567
  }, "strip", z.ZodTypeAny, {
11259
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
11568
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
11260
11569
  message: string;
11261
11570
  id: string;
11262
11571
  url: string;
@@ -11418,7 +11727,7 @@ export declare const viberContract: {
11418
11727
  metadata?: any;
11419
11728
  template?: any;
11420
11729
  }, {
11421
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
11730
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
11422
11731
  message: string;
11423
11732
  id: string;
11424
11733
  url: string;
@@ -12220,7 +12529,7 @@ export declare const viberContract: {
12220
12529
  editedMessageid: z.ZodString;
12221
12530
  label: z.ZodOptional<z.ZodString>;
12222
12531
  }, "strip", z.ZodTypeAny, {
12223
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
12532
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
12224
12533
  message: string;
12225
12534
  id: string;
12226
12535
  url: string;
@@ -12351,6 +12660,7 @@ export declare const viberContract: {
12351
12660
  channelId?: string | undefined;
12352
12661
  status?: "active" | "pending" | undefined;
12353
12662
  apiKey?: string | undefined;
12663
+ tier?: "basic" | "regular" | "premium" | undefined;
12354
12664
  } | undefined;
12355
12665
  vonageCredentials?: {
12356
12666
  apiKey: string;
@@ -12718,6 +13028,23 @@ export declare const viberContract: {
12718
13028
  dateValue: Date | null;
12719
13029
  }[] | null | undefined;
12720
13030
  } | null;
13031
+ holdLogs?: {
13032
+ id: string;
13033
+ createdAt: Date;
13034
+ updatedAt: Date;
13035
+ deletedAt: Date | null;
13036
+ startedAt: string;
13037
+ endedAt: string | null;
13038
+ duration: number | null;
13039
+ holdLabel: {
13040
+ name: string;
13041
+ id: string;
13042
+ position: number;
13043
+ createdAt: Date;
13044
+ updatedAt: Date;
13045
+ deletedAt: Date | null;
13046
+ };
13047
+ }[] | null | undefined;
12721
13048
  };
12722
13049
  workflowRule: {
12723
13050
  name: string;
@@ -12746,7 +13073,7 @@ export declare const viberContract: {
12746
13073
  previewUrl: string;
12747
13074
  imageSetId: string;
12748
13075
  repliedMessage: {
12749
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
13076
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
12750
13077
  message: string;
12751
13078
  id: string;
12752
13079
  url: string;
@@ -12957,7 +13284,7 @@ export declare const viberContract: {
12957
13284
  template?: any;
12958
13285
  label?: string | undefined;
12959
13286
  }, {
12960
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
13287
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
12961
13288
  message: string;
12962
13289
  id: string;
12963
13290
  url: string;
@@ -13088,6 +13415,7 @@ export declare const viberContract: {
13088
13415
  channelId?: string | undefined;
13089
13416
  status?: "active" | "pending" | undefined;
13090
13417
  apiKey?: string | undefined;
13418
+ tier?: "basic" | "regular" | "premium" | undefined;
13091
13419
  } | undefined;
13092
13420
  vonageCredentials?: {
13093
13421
  apiKey: string;
@@ -13455,6 +13783,23 @@ export declare const viberContract: {
13455
13783
  dateValue: Date | null;
13456
13784
  }[] | null | undefined;
13457
13785
  } | null;
13786
+ holdLogs?: {
13787
+ id: string;
13788
+ createdAt: Date;
13789
+ updatedAt: Date;
13790
+ deletedAt: Date | null;
13791
+ startedAt: string;
13792
+ endedAt: string | null;
13793
+ duration: number | null;
13794
+ holdLabel: {
13795
+ name: string;
13796
+ id: string;
13797
+ position: number;
13798
+ createdAt: Date;
13799
+ updatedAt: Date;
13800
+ deletedAt: Date | null;
13801
+ };
13802
+ }[] | null | undefined;
13458
13803
  };
13459
13804
  workflowRule: {
13460
13805
  name: string;
@@ -13483,7 +13828,7 @@ export declare const viberContract: {
13483
13828
  previewUrl: string;
13484
13829
  imageSetId: string;
13485
13830
  repliedMessage: {
13486
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
13831
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
13487
13832
  message: string;
13488
13833
  id: string;
13489
13834
  url: string;
@@ -13695,7 +14040,7 @@ export declare const viberContract: {
13695
14040
  label?: string | undefined;
13696
14041
  }>>>;
13697
14042
  }, "strip", z.ZodTypeAny, {
13698
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
14043
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
13699
14044
  message: string;
13700
14045
  id: string;
13701
14046
  url: string;
@@ -13826,6 +14171,7 @@ export declare const viberContract: {
13826
14171
  channelId?: string | undefined;
13827
14172
  status?: "active" | "pending" | undefined;
13828
14173
  apiKey?: string | undefined;
14174
+ tier?: "basic" | "regular" | "premium" | undefined;
13829
14175
  } | undefined;
13830
14176
  vonageCredentials?: {
13831
14177
  apiKey: string;
@@ -14193,6 +14539,23 @@ export declare const viberContract: {
14193
14539
  dateValue: Date | null;
14194
14540
  }[] | null | undefined;
14195
14541
  } | null;
14542
+ holdLogs?: {
14543
+ id: string;
14544
+ createdAt: Date;
14545
+ updatedAt: Date;
14546
+ deletedAt: Date | null;
14547
+ startedAt: string;
14548
+ endedAt: string | null;
14549
+ duration: number | null;
14550
+ holdLabel: {
14551
+ name: string;
14552
+ id: string;
14553
+ position: number;
14554
+ createdAt: Date;
14555
+ updatedAt: Date;
14556
+ deletedAt: Date | null;
14557
+ };
14558
+ }[] | null | undefined;
14196
14559
  };
14197
14560
  workflowRule: {
14198
14561
  name: string;
@@ -14221,7 +14584,7 @@ export declare const viberContract: {
14221
14584
  previewUrl: string;
14222
14585
  imageSetId: string;
14223
14586
  repliedMessage: {
14224
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
14587
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
14225
14588
  message: string;
14226
14589
  id: string;
14227
14590
  url: string;
@@ -14432,7 +14795,7 @@ export declare const viberContract: {
14432
14795
  template?: any;
14433
14796
  metadata?: any;
14434
14797
  fromMessage?: {
14435
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
14798
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
14436
14799
  message: string;
14437
14800
  id: string;
14438
14801
  url: string;
@@ -14563,6 +14926,7 @@ export declare const viberContract: {
14563
14926
  channelId?: string | undefined;
14564
14927
  status?: "active" | "pending" | undefined;
14565
14928
  apiKey?: string | undefined;
14929
+ tier?: "basic" | "regular" | "premium" | undefined;
14566
14930
  } | undefined;
14567
14931
  vonageCredentials?: {
14568
14932
  apiKey: string;
@@ -14930,6 +15294,23 @@ export declare const viberContract: {
14930
15294
  dateValue: Date | null;
14931
15295
  }[] | null | undefined;
14932
15296
  } | null;
15297
+ holdLogs?: {
15298
+ id: string;
15299
+ createdAt: Date;
15300
+ updatedAt: Date;
15301
+ deletedAt: Date | null;
15302
+ startedAt: string;
15303
+ endedAt: string | null;
15304
+ duration: number | null;
15305
+ holdLabel: {
15306
+ name: string;
15307
+ id: string;
15308
+ position: number;
15309
+ createdAt: Date;
15310
+ updatedAt: Date;
15311
+ deletedAt: Date | null;
15312
+ };
15313
+ }[] | null | undefined;
14933
15314
  };
14934
15315
  workflowRule: {
14935
15316
  name: string;
@@ -14958,7 +15339,7 @@ export declare const viberContract: {
14958
15339
  previewUrl: string;
14959
15340
  imageSetId: string;
14960
15341
  repliedMessage: {
14961
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
15342
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
14962
15343
  message: string;
14963
15344
  id: string;
14964
15345
  url: string;
@@ -15170,7 +15551,7 @@ export declare const viberContract: {
15170
15551
  label?: string | undefined;
15171
15552
  } | null | undefined;
15172
15553
  }, {
15173
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
15554
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
15174
15555
  message: string;
15175
15556
  id: string;
15176
15557
  url: string;
@@ -15301,6 +15682,7 @@ export declare const viberContract: {
15301
15682
  channelId?: string | undefined;
15302
15683
  status?: "active" | "pending" | undefined;
15303
15684
  apiKey?: string | undefined;
15685
+ tier?: "basic" | "regular" | "premium" | undefined;
15304
15686
  } | undefined;
15305
15687
  vonageCredentials?: {
15306
15688
  apiKey: string;
@@ -15668,6 +16050,23 @@ export declare const viberContract: {
15668
16050
  dateValue: Date | null;
15669
16051
  }[] | null | undefined;
15670
16052
  } | null;
16053
+ holdLogs?: {
16054
+ id: string;
16055
+ createdAt: Date;
16056
+ updatedAt: Date;
16057
+ deletedAt: Date | null;
16058
+ startedAt: string;
16059
+ endedAt: string | null;
16060
+ duration: number | null;
16061
+ holdLabel: {
16062
+ name: string;
16063
+ id: string;
16064
+ position: number;
16065
+ createdAt: Date;
16066
+ updatedAt: Date;
16067
+ deletedAt: Date | null;
16068
+ };
16069
+ }[] | null | undefined;
15671
16070
  };
15672
16071
  workflowRule: {
15673
16072
  name: string;
@@ -15696,7 +16095,7 @@ export declare const viberContract: {
15696
16095
  previewUrl: string;
15697
16096
  imageSetId: string;
15698
16097
  repliedMessage: {
15699
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
16098
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
15700
16099
  message: string;
15701
16100
  id: string;
15702
16101
  url: string;
@@ -15907,7 +16306,7 @@ export declare const viberContract: {
15907
16306
  template?: any;
15908
16307
  metadata?: any;
15909
16308
  fromMessage?: {
15910
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
16309
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
15911
16310
  message: string;
15912
16311
  id: string;
15913
16312
  url: string;
@@ -16038,6 +16437,7 @@ export declare const viberContract: {
16038
16437
  channelId?: string | undefined;
16039
16438
  status?: "active" | "pending" | undefined;
16040
16439
  apiKey?: string | undefined;
16440
+ tier?: "basic" | "regular" | "premium" | undefined;
16041
16441
  } | undefined;
16042
16442
  vonageCredentials?: {
16043
16443
  apiKey: string;
@@ -16405,6 +16805,23 @@ export declare const viberContract: {
16405
16805
  dateValue: Date | null;
16406
16806
  }[] | null | undefined;
16407
16807
  } | null;
16808
+ holdLogs?: {
16809
+ id: string;
16810
+ createdAt: Date;
16811
+ updatedAt: Date;
16812
+ deletedAt: Date | null;
16813
+ startedAt: string;
16814
+ endedAt: string | null;
16815
+ duration: number | null;
16816
+ holdLabel: {
16817
+ name: string;
16818
+ id: string;
16819
+ position: number;
16820
+ createdAt: Date;
16821
+ updatedAt: Date;
16822
+ deletedAt: Date | null;
16823
+ };
16824
+ }[] | null | undefined;
16408
16825
  };
16409
16826
  workflowRule: {
16410
16827
  name: string;
@@ -16433,7 +16850,7 @@ export declare const viberContract: {
16433
16850
  previewUrl: string;
16434
16851
  imageSetId: string;
16435
16852
  repliedMessage: {
16436
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
16853
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
16437
16854
  message: string;
16438
16855
  id: string;
16439
16856
  url: string;
@@ -16647,7 +17064,7 @@ export declare const viberContract: {
16647
17064
  }>;
16648
17065
  }, "strip", z.ZodTypeAny, {
16649
17066
  data: {
16650
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
17067
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
16651
17068
  message: string;
16652
17069
  id: string;
16653
17070
  url: string;
@@ -16778,6 +17195,7 @@ export declare const viberContract: {
16778
17195
  channelId?: string | undefined;
16779
17196
  status?: "active" | "pending" | undefined;
16780
17197
  apiKey?: string | undefined;
17198
+ tier?: "basic" | "regular" | "premium" | undefined;
16781
17199
  } | undefined;
16782
17200
  vonageCredentials?: {
16783
17201
  apiKey: string;
@@ -17145,6 +17563,23 @@ export declare const viberContract: {
17145
17563
  dateValue: Date | null;
17146
17564
  }[] | null | undefined;
17147
17565
  } | null;
17566
+ holdLogs?: {
17567
+ id: string;
17568
+ createdAt: Date;
17569
+ updatedAt: Date;
17570
+ deletedAt: Date | null;
17571
+ startedAt: string;
17572
+ endedAt: string | null;
17573
+ duration: number | null;
17574
+ holdLabel: {
17575
+ name: string;
17576
+ id: string;
17577
+ position: number;
17578
+ createdAt: Date;
17579
+ updatedAt: Date;
17580
+ deletedAt: Date | null;
17581
+ };
17582
+ }[] | null | undefined;
17148
17583
  };
17149
17584
  workflowRule: {
17150
17585
  name: string;
@@ -17173,7 +17608,7 @@ export declare const viberContract: {
17173
17608
  previewUrl: string;
17174
17609
  imageSetId: string;
17175
17610
  repliedMessage: {
17176
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
17611
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
17177
17612
  message: string;
17178
17613
  id: string;
17179
17614
  url: string;
@@ -17384,7 +17819,7 @@ export declare const viberContract: {
17384
17819
  template?: any;
17385
17820
  metadata?: any;
17386
17821
  fromMessage?: {
17387
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
17822
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
17388
17823
  message: string;
17389
17824
  id: string;
17390
17825
  url: string;
@@ -17515,6 +17950,7 @@ export declare const viberContract: {
17515
17950
  channelId?: string | undefined;
17516
17951
  status?: "active" | "pending" | undefined;
17517
17952
  apiKey?: string | undefined;
17953
+ tier?: "basic" | "regular" | "premium" | undefined;
17518
17954
  } | undefined;
17519
17955
  vonageCredentials?: {
17520
17956
  apiKey: string;
@@ -17882,6 +18318,23 @@ export declare const viberContract: {
17882
18318
  dateValue: Date | null;
17883
18319
  }[] | null | undefined;
17884
18320
  } | null;
18321
+ holdLogs?: {
18322
+ id: string;
18323
+ createdAt: Date;
18324
+ updatedAt: Date;
18325
+ deletedAt: Date | null;
18326
+ startedAt: string;
18327
+ endedAt: string | null;
18328
+ duration: number | null;
18329
+ holdLabel: {
18330
+ name: string;
18331
+ id: string;
18332
+ position: number;
18333
+ createdAt: Date;
18334
+ updatedAt: Date;
18335
+ deletedAt: Date | null;
18336
+ };
18337
+ }[] | null | undefined;
17885
18338
  };
17886
18339
  workflowRule: {
17887
18340
  name: string;
@@ -17910,7 +18363,7 @@ export declare const viberContract: {
17910
18363
  previewUrl: string;
17911
18364
  imageSetId: string;
17912
18365
  repliedMessage: {
17913
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
18366
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
17914
18367
  message: string;
17915
18368
  id: string;
17916
18369
  url: string;
@@ -18125,7 +18578,7 @@ export declare const viberContract: {
18125
18578
  requestId: string;
18126
18579
  }, {
18127
18580
  data: {
18128
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
18581
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
18129
18582
  message: string;
18130
18583
  id: string;
18131
18584
  url: string;
@@ -18256,6 +18709,7 @@ export declare const viberContract: {
18256
18709
  channelId?: string | undefined;
18257
18710
  status?: "active" | "pending" | undefined;
18258
18711
  apiKey?: string | undefined;
18712
+ tier?: "basic" | "regular" | "premium" | undefined;
18259
18713
  } | undefined;
18260
18714
  vonageCredentials?: {
18261
18715
  apiKey: string;
@@ -18623,6 +19077,23 @@ export declare const viberContract: {
18623
19077
  dateValue: Date | null;
18624
19078
  }[] | null | undefined;
18625
19079
  } | null;
19080
+ holdLogs?: {
19081
+ id: string;
19082
+ createdAt: Date;
19083
+ updatedAt: Date;
19084
+ deletedAt: Date | null;
19085
+ startedAt: string;
19086
+ endedAt: string | null;
19087
+ duration: number | null;
19088
+ holdLabel: {
19089
+ name: string;
19090
+ id: string;
19091
+ position: number;
19092
+ createdAt: Date;
19093
+ updatedAt: Date;
19094
+ deletedAt: Date | null;
19095
+ };
19096
+ }[] | null | undefined;
18626
19097
  };
18627
19098
  workflowRule: {
18628
19099
  name: string;
@@ -18651,7 +19122,7 @@ export declare const viberContract: {
18651
19122
  previewUrl: string;
18652
19123
  imageSetId: string;
18653
19124
  repliedMessage: {
18654
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
19125
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
18655
19126
  message: string;
18656
19127
  id: string;
18657
19128
  url: string;
@@ -18862,7 +19333,7 @@ export declare const viberContract: {
18862
19333
  template?: any;
18863
19334
  metadata?: any;
18864
19335
  fromMessage?: {
18865
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
19336
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
18866
19337
  message: string;
18867
19338
  id: string;
18868
19339
  url: string;
@@ -18993,6 +19464,7 @@ export declare const viberContract: {
18993
19464
  channelId?: string | undefined;
18994
19465
  status?: "active" | "pending" | undefined;
18995
19466
  apiKey?: string | undefined;
19467
+ tier?: "basic" | "regular" | "premium" | undefined;
18996
19468
  } | undefined;
18997
19469
  vonageCredentials?: {
18998
19470
  apiKey: string;
@@ -19360,6 +19832,23 @@ export declare const viberContract: {
19360
19832
  dateValue: Date | null;
19361
19833
  }[] | null | undefined;
19362
19834
  } | null;
19835
+ holdLogs?: {
19836
+ id: string;
19837
+ createdAt: Date;
19838
+ updatedAt: Date;
19839
+ deletedAt: Date | null;
19840
+ startedAt: string;
19841
+ endedAt: string | null;
19842
+ duration: number | null;
19843
+ holdLabel: {
19844
+ name: string;
19845
+ id: string;
19846
+ position: number;
19847
+ createdAt: Date;
19848
+ updatedAt: Date;
19849
+ deletedAt: Date | null;
19850
+ };
19851
+ }[] | null | undefined;
19363
19852
  };
19364
19853
  workflowRule: {
19365
19854
  name: string;
@@ -19388,7 +19877,7 @@ export declare const viberContract: {
19388
19877
  previewUrl: string;
19389
19878
  imageSetId: string;
19390
19879
  repliedMessage: {
19391
- type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "edited" | "deleted" | "unsupported";
19880
+ type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "carousel" | "card" | "choice" | "dropdown" | "text_with_image" | "reaction" | "contacts" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "hold" | "unhold" | "auto_unhold" | "edited" | "deleted" | "unsupported";
19392
19881
  message: string;
19393
19882
  id: string;
19394
19883
  url: string;
@@ -19652,6 +20141,7 @@ export declare const viberContract: {
19652
20141
  channelId: z.ZodOptional<z.ZodString>;
19653
20142
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
19654
20143
  apiKey: z.ZodOptional<z.ZodString>;
20144
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
19655
20145
  }, "strip", z.ZodTypeAny, {
19656
20146
  email: string;
19657
20147
  wabaExternalId: string;
@@ -19661,6 +20151,7 @@ export declare const viberContract: {
19661
20151
  channelId?: string | undefined;
19662
20152
  status?: "active" | "pending" | undefined;
19663
20153
  apiKey?: string | undefined;
20154
+ tier?: "basic" | "regular" | "premium" | undefined;
19664
20155
  }, {
19665
20156
  email: string;
19666
20157
  wabaExternalId: string;
@@ -19670,6 +20161,7 @@ export declare const viberContract: {
19670
20161
  channelId?: string | undefined;
19671
20162
  status?: "active" | "pending" | undefined;
19672
20163
  apiKey?: string | undefined;
20164
+ tier?: "basic" | "regular" | "premium" | undefined;
19673
20165
  }>>;
19674
20166
  vonageCredentials: z.ZodOptional<z.ZodObject<{
19675
20167
  mobileNumber: z.ZodString;
@@ -19702,6 +20194,7 @@ export declare const viberContract: {
19702
20194
  channelId?: string | undefined;
19703
20195
  status?: "active" | "pending" | undefined;
19704
20196
  apiKey?: string | undefined;
20197
+ tier?: "basic" | "regular" | "premium" | undefined;
19705
20198
  } | undefined;
19706
20199
  vonageCredentials?: {
19707
20200
  apiKey: string;
@@ -19726,6 +20219,7 @@ export declare const viberContract: {
19726
20219
  channelId?: string | undefined;
19727
20220
  status?: "active" | "pending" | undefined;
19728
20221
  apiKey?: string | undefined;
20222
+ tier?: "basic" | "regular" | "premium" | undefined;
19729
20223
  } | undefined;
19730
20224
  vonageCredentials?: {
19731
20225
  apiKey: string;
@@ -19984,6 +20478,7 @@ export declare const viberContract: {
19984
20478
  channelId?: string | undefined;
19985
20479
  status?: "active" | "pending" | undefined;
19986
20480
  apiKey?: string | undefined;
20481
+ tier?: "basic" | "regular" | "premium" | undefined;
19987
20482
  } | undefined;
19988
20483
  vonageCredentials?: {
19989
20484
  apiKey: string;
@@ -20073,6 +20568,7 @@ export declare const viberContract: {
20073
20568
  channelId?: string | undefined;
20074
20569
  status?: "active" | "pending" | undefined;
20075
20570
  apiKey?: string | undefined;
20571
+ tier?: "basic" | "regular" | "premium" | undefined;
20076
20572
  } | undefined;
20077
20573
  vonageCredentials?: {
20078
20574
  apiKey: string;
@@ -20164,6 +20660,7 @@ export declare const viberContract: {
20164
20660
  channelId?: string | undefined;
20165
20661
  status?: "active" | "pending" | undefined;
20166
20662
  apiKey?: string | undefined;
20663
+ tier?: "basic" | "regular" | "premium" | undefined;
20167
20664
  } | undefined;
20168
20665
  vonageCredentials?: {
20169
20666
  apiKey: string;
@@ -20256,6 +20753,7 @@ export declare const viberContract: {
20256
20753
  channelId?: string | undefined;
20257
20754
  status?: "active" | "pending" | undefined;
20258
20755
  apiKey?: string | undefined;
20756
+ tier?: "basic" | "regular" | "premium" | undefined;
20259
20757
  } | undefined;
20260
20758
  vonageCredentials?: {
20261
20759
  apiKey: string;
@@ -20384,6 +20882,7 @@ export declare const viberContract: {
20384
20882
  channelId: z.ZodOptional<z.ZodString>;
20385
20883
  status: z.ZodOptional<z.ZodEnum<["pending", "active"]>>;
20386
20884
  apiKey: z.ZodOptional<z.ZodString>;
20885
+ tier: z.ZodOptional<z.ZodEnum<["basic", "regular", "premium"]>>;
20387
20886
  }, "strip", z.ZodTypeAny, {
20388
20887
  email: string;
20389
20888
  wabaExternalId: string;
@@ -20393,6 +20892,7 @@ export declare const viberContract: {
20393
20892
  channelId?: string | undefined;
20394
20893
  status?: "active" | "pending" | undefined;
20395
20894
  apiKey?: string | undefined;
20895
+ tier?: "basic" | "regular" | "premium" | undefined;
20396
20896
  }, {
20397
20897
  email: string;
20398
20898
  wabaExternalId: string;
@@ -20402,6 +20902,7 @@ export declare const viberContract: {
20402
20902
  channelId?: string | undefined;
20403
20903
  status?: "active" | "pending" | undefined;
20404
20904
  apiKey?: string | undefined;
20905
+ tier?: "basic" | "regular" | "premium" | undefined;
20405
20906
  }>>;
20406
20907
  vonageCredentials: z.ZodOptional<z.ZodObject<{
20407
20908
  mobileNumber: z.ZodString;
@@ -20434,6 +20935,7 @@ export declare const viberContract: {
20434
20935
  channelId?: string | undefined;
20435
20936
  status?: "active" | "pending" | undefined;
20436
20937
  apiKey?: string | undefined;
20938
+ tier?: "basic" | "regular" | "premium" | undefined;
20437
20939
  } | undefined;
20438
20940
  vonageCredentials?: {
20439
20941
  apiKey: string;
@@ -20458,6 +20960,7 @@ export declare const viberContract: {
20458
20960
  channelId?: string | undefined;
20459
20961
  status?: "active" | "pending" | undefined;
20460
20962
  apiKey?: string | undefined;
20963
+ tier?: "basic" | "regular" | "premium" | undefined;
20461
20964
  } | undefined;
20462
20965
  vonageCredentials?: {
20463
20966
  apiKey: string;
@@ -20512,6 +21015,7 @@ export declare const viberContract: {
20512
21015
  channelId?: string | undefined;
20513
21016
  status?: "active" | "pending" | undefined;
20514
21017
  apiKey?: string | undefined;
21018
+ tier?: "basic" | "regular" | "premium" | undefined;
20515
21019
  } | undefined;
20516
21020
  vonageCredentials?: {
20517
21021
  apiKey: string;
@@ -20554,6 +21058,7 @@ export declare const viberContract: {
20554
21058
  channelId?: string | undefined;
20555
21059
  status?: "active" | "pending" | undefined;
20556
21060
  apiKey?: string | undefined;
21061
+ tier?: "basic" | "regular" | "premium" | undefined;
20557
21062
  } | undefined;
20558
21063
  vonageCredentials?: {
20559
21064
  apiKey: string;
@@ -20598,6 +21103,7 @@ export declare const viberContract: {
20598
21103
  channelId?: string | undefined;
20599
21104
  status?: "active" | "pending" | undefined;
20600
21105
  apiKey?: string | undefined;
21106
+ tier?: "basic" | "regular" | "premium" | undefined;
20601
21107
  } | undefined;
20602
21108
  vonageCredentials?: {
20603
21109
  apiKey: string;
@@ -20643,6 +21149,7 @@ export declare const viberContract: {
20643
21149
  channelId?: string | undefined;
20644
21150
  status?: "active" | "pending" | undefined;
20645
21151
  apiKey?: string | undefined;
21152
+ tier?: "basic" | "regular" | "premium" | undefined;
20646
21153
  } | undefined;
20647
21154
  vonageCredentials?: {
20648
21155
  apiKey: string;