@webitel/ui-sdk 25.4.74 → 25.4.75
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,21 @@
|
|
|
1
|
+
## [v25.4.74] - 2025-04-28
|
|
2
|
+
### :sparkles: New Features
|
|
3
|
+
- [`412e739`](https://github.com/webitel/webitel-ui-sdk/commit/412e739dd3b9e56dd44a6f9f9848ae36f5b33348) - ui-datalist/filters/custom: simplify name retrieval in searchRecords using lodash.get [https://webitel.atlassian.net/browse/WTEL-6787](https://webitel.atlassian.net/browse/WTEL-6787) *(commit by [@dlohvinov](https://github.com/dlohvinov))*
|
|
4
|
+
- [`c32196b`](https://github.com/webitel/webitel-ui-sdk/commit/c32196ba6a63167c714c2ac38d3ebf452c72d9d2) - add contacts filters[WTEL-6410](https://webitel.atlassian.net/browse/WTEL-6410) *(commit by [@Lera24](https://github.com/Lera24))*
|
|
5
|
+
|
|
6
|
+
### :bug: Bug Fixes
|
|
7
|
+
- [`d5c2414`](https://github.com/webitel/webitel-ui-sdk/commit/d5c2414b00730ebca5a2c7064d92d12c59e40ff6) - merge master *(commit by [@Lera24](https://github.com/Lera24))*
|
|
8
|
+
- [`0b2e6ec`](https://github.com/webitel/webitel-ui-sdk/commit/0b2e6eca97f9df96fcde9e5eb6fa076b2e4b78ad) - contact group class [WTEL-6410](https://webitel.atlassian.net/browse/WTEL-6410) *(commit by [@Lera24](https://github.com/Lera24))*
|
|
9
|
+
- [`bf5ec5f`](https://github.com/webitel/webitel-ui-sdk/commit/bf5ec5fd453525637624b0e72532716ff0e02fcb) - add new type ts[WTEL-6410](https://webitel.atlassian.net/browse/WTEL-6410) *(commit by [@Lera24](https://github.com/Lera24))*
|
|
10
|
+
- [`90af640`](https://github.com/webitel/webitel-ui-sdk/commit/90af6406e952e540868a73dd72cf8a218181b8c5) - delete console.log[WTEL-6410](https://webitel.atlassian.net/browse/WTEL-6410) *(commit by [@Lera24](https://github.com/Lera24))*
|
|
11
|
+
- [`4941305`](https://github.com/webitel/webitel-ui-sdk/commit/49413051ac055e211a737cac59a36c9ab6df7cc3) - after code review[WTEL-6410](https://webitel.atlassian.net/browse/WTEL-6410) *(commit by [@Lera24](https://github.com/Lera24))*
|
|
12
|
+
- [`6ee2156`](https://github.com/webitel/webitel-ui-sdk/commit/6ee2156513b47b74abf0572891b1b237d78c33e3) - small refactor[WTEL-6410](https://webitel.atlassian.net/browse/WTEL-6410) *(commit by [@Lera24](https://github.com/Lera24))*
|
|
13
|
+
- [`88285eb`](https://github.com/webitel/webitel-ui-sdk/commit/88285eb22bbeacb84c02235fb83214809b8d5200) - conflict[WTEL-6410](https://webitel.atlassian.net/browse/WTEL-6410) *(commit by [@Lera24](https://github.com/Lera24))*
|
|
14
|
+
|
|
15
|
+
### :wrench: Chores
|
|
16
|
+
- [`e22cd75`](https://github.com/webitel/webitel-ui-sdk/commit/e22cd751edd85be79e8317f6d77a2eb2b1751b4c) - update @webitel/ui-datalist to version 1.0.20 [https://webitel.atlassian.net/browse/WTEL-6787](https://webitel.atlassian.net/browse/WTEL-6787) *(commit by [@dlohvinov](https://github.com/dlohvinov))*
|
|
17
|
+
|
|
18
|
+
|
|
1
19
|
## [v25.4.73] - 2025-04-24
|
|
2
20
|
### :sparkles: New Features
|
|
3
21
|
- [`31667c2`](https://github.com/webitel/webitel-ui-sdk/commit/31667c2a12f8bb2c7be6ce70b0a0d50848c489f2) - add type extension and case assignee filter configurations *(commit by [@dlohvinov](https://github.com/dlohvinov))*
|
|
@@ -1987,3 +2005,4 @@
|
|
|
1987
2005
|
[v25.4.71]: https://github.com/webitel/webitel-ui-sdk/compare/v25.4.70...v25.4.71
|
|
1988
2006
|
[v25.4.72]: https://github.com/webitel/webitel-ui-sdk/compare/v25.4.71...v25.4.72
|
|
1989
2007
|
[v25.4.73]: https://github.com/webitel/webitel-ui-sdk/compare/v25.4.72...v25.4.73
|
|
2008
|
+
[v25.4.74]: https://github.com/webitel/webitel-ui-sdk/compare/v25.4.73...v25.4.74
|
package/package.json
CHANGED
|
@@ -14,11 +14,12 @@ import applyTransform, {
|
|
|
14
14
|
const instance = getDefaultInstance();
|
|
15
15
|
|
|
16
16
|
const getSysTypeRecordsList = async ({ path, display, primary, ...params }) => {
|
|
17
|
-
const fieldsToSend = ['page', 'size', 'q', 'sort', 'fields', 'id'];
|
|
17
|
+
const fieldsToSend = ['page', 'size', 'q', 'sort', 'fields', 'id', 'ids'];
|
|
18
18
|
|
|
19
19
|
const url = applyTransform(params, [
|
|
20
20
|
merge(getDefaultGetParams()),
|
|
21
21
|
(params) => ({ ...params, q: params.search }),
|
|
22
|
+
(params) => ({ ...params, ids: params.id }),
|
|
22
23
|
sanitize(fieldsToSend),
|
|
23
24
|
camelToSnake(),
|
|
24
25
|
generateUrl(path),
|