@webitel/ui-sdk 25.4.58 → 25.4.59

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.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,8 @@
1
+ ## [v25.4.58] - 2025-04-09
2
+ ### :sparkles: New Features
3
+ - [`bef3102`](https://github.com/webitel/webitel-ui-sdk/commit/bef3102568fff67993263737e02422edc8dc2354) - new icon updateCalls added [WTEL-3345](https://webitel.atlassian.net/browse/WTEL-3345) *(commit by [@VladimirBeria](https://github.com/VladimirBeria))*
4
+
5
+
1
6
  ## [v25.4.57] - 2025-04-09
2
7
  ### :sparkles: New Features
3
8
  - [`07693a3`](https://github.com/webitel/webitel-ui-sdk/commit/07693a34f61725156c95ff293de1680ae1958b62) - version incremented [WTEL-6260](https://webitel.atlassian.net/browse/WTEL-6260) *(commit by [@VladimirBeria](https://github.com/VladimirBeria))*
@@ -1870,3 +1875,4 @@
1870
1875
  [v25.4.55]: https://github.com/webitel/webitel-ui-sdk/compare/v25.4.54...v25.4.55
1871
1876
  [v25.4.56]: https://github.com/webitel/webitel-ui-sdk/compare/v25.4.55...v25.4.56
1872
1877
  [v25.4.57]: https://github.com/webitel/webitel-ui-sdk/compare/v25.4.56...v25.4.57
1878
+ [v25.4.58]: https://github.com/webitel/webitel-ui-sdk/compare/v25.4.57...v25.4.58
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webitel/ui-sdk",
3
- "version": "25.4.58",
3
+ "version": "25.4.59",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "dev": "npm run docs:dev",
@@ -162,6 +162,12 @@ const deleteService = async ({ id }) => {
162
162
  }
163
163
  };
164
164
 
165
+ const getServicesLookup = async (params) =>
166
+ getServicesList({
167
+ ...params,
168
+ fields: params.fields || ['id', 'name'],
169
+ });
170
+
165
171
  const ServicesAPI = {
166
172
  getList: getServicesList,
167
173
  get: getService,
@@ -169,6 +175,7 @@ const ServicesAPI = {
169
175
  update: updateService,
170
176
  patch: patchService,
171
177
  delete: deleteService,
178
+ getLookup: getServicesLookup,
172
179
  };
173
180
 
174
181
  export default ServicesAPI;