@webitel/ui-sdk 25.6.3 → 25.6.4
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.6.3] - 2025-05-02
|
|
2
|
+
### :sparkles: New Features
|
|
3
|
+
- [`6b26b8e`](https://github.com/webitel/webitel-ui-sdk/commit/6b26b8e95506c68bfb3836f50843c88139ee4244) - cases extension fields filters datetime range [WTEL-6789](https://webitel.atlassian.net/browse/WTEL-6789) *(commit by [@dlohvinov](https://github.com/dlohvinov))*
|
|
4
|
+
|
|
5
|
+
|
|
1
6
|
## [v25.6.2] - 2025-04-30
|
|
2
7
|
### :sparkles: New Features
|
|
3
8
|
- [`a9bf2d2`](https://github.com/webitel/webitel-ui-sdk/commit/a9bf2d2a52a8e429334306d408ab3f7b40dfb37b) - changed icon name [WTEL-6809](https://webitel.atlassian.net/browse/WTEL-6809) *(commit by [@plnnsimon](https://github.com/plnnsimon))*
|
|
@@ -2066,3 +2071,4 @@
|
|
|
2066
2071
|
[v25.6.0]: https://github.com/webitel/webitel-ui-sdk/compare/v25.4.79...v25.6.0
|
|
2067
2072
|
[v25.6.1]: https://github.com/webitel/webitel-ui-sdk/compare/v25.6.0...v25.6.1
|
|
2068
2073
|
[v25.6.2]: https://github.com/webitel/webitel-ui-sdk/compare/v25.6.1...v25.6.2
|
|
2074
|
+
[v25.6.3]: https://github.com/webitel/webitel-ui-sdk/compare/v25.6.2...v25.6.3
|
package/package.json
CHANGED
|
@@ -21,7 +21,7 @@ const instance = getDefaultInstance();
|
|
|
21
21
|
const baseUrl = '/sip/gateways';
|
|
22
22
|
|
|
23
23
|
const getGatewayList = async (params) => {
|
|
24
|
-
const fieldsToSend = ['page', 'size', 'q', 'sort', 'fields', 'id'];
|
|
24
|
+
const fieldsToSend = ['page', 'size', 'q', 'sort', 'fields', 'id', 'name'];
|
|
25
25
|
|
|
26
26
|
const defaultObject = {
|
|
27
27
|
name: '',
|
|
@@ -32,6 +32,7 @@ const getGatewayList = async (params) => {
|
|
|
32
32
|
const url = applyTransform(params, [
|
|
33
33
|
merge(getDefaultGetParams()),
|
|
34
34
|
starToSearch('search'),
|
|
35
|
+
starToSearch('name'),
|
|
35
36
|
(params) => ({ ...params, q: params.search }),
|
|
36
37
|
sanitize(fieldsToSend),
|
|
37
38
|
camelToSnake(),
|