@webitel/ui-sdk 25.4.44 → 25.4.45
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.44] - 2025-03-25
|
|
2
|
+
### :sparkles: New Features
|
|
3
|
+
- [`24ef8da`](https://github.com/webitel/webitel-ui-sdk/commit/24ef8da29627e2e6ac2533ca086af813d783aca7) - update contacts api response transform rule *(commit by [@stanislav-kozak](https://github.com/stanislav-kozak))*
|
|
4
|
+
|
|
5
|
+
|
|
1
6
|
## [v25.4.43] - 2025-03-25
|
|
2
7
|
### :sparkles: New Features
|
|
3
8
|
- [`62a4c55`](https://github.com/webitel/webitel-ui-sdk/commit/62a4c55c84919d03fd44240cd7bc3014724d4c72) - update contacts api *(commit by [@stanislav-kozak](https://github.com/stanislav-kozak))*
|
|
@@ -1731,3 +1736,4 @@
|
|
|
1731
1736
|
[v25.4.41]: https://github.com/webitel/webitel-ui-sdk/compare/v25.4.40...v25.4.41
|
|
1732
1737
|
[v25.4.42]: https://github.com/webitel/webitel-ui-sdk/compare/v25.4.41...v25.4.42
|
|
1733
1738
|
[v25.4.43]: https://github.com/webitel/webitel-ui-sdk/compare/v24.12.175...v25.4.43
|
|
1739
|
+
[v25.4.44]: https://github.com/webitel/webitel-ui-sdk/compare/v25.4.43...v25.4.44
|
package/package.json
CHANGED
|
@@ -135,7 +135,7 @@ const getList = async (params) => {
|
|
|
135
135
|
|
|
136
136
|
const { items, next } = applyTransform(
|
|
137
137
|
{ ...response.data, items: response.data.data || [] },
|
|
138
|
-
[snakeToCamel(), merge(getDefaultGetListResponse())],
|
|
138
|
+
[snakeToCamel(['custom']), merge(getDefaultGetListResponse())],
|
|
139
139
|
);
|
|
140
140
|
|
|
141
141
|
return {
|
|
@@ -185,7 +185,7 @@ const get = async ({ itemId: id }) => {
|
|
|
185
185
|
try {
|
|
186
186
|
const response = await contactService.locateContact(id, fields);
|
|
187
187
|
return applyTransform(response.data, [
|
|
188
|
-
snakeToCamel(),
|
|
188
|
+
snakeToCamel(['custom']),
|
|
189
189
|
merge(defaultObject),
|
|
190
190
|
itemResponseHandler,
|
|
191
191
|
formatAccessMode,
|