@webitel/ui-sdk 25.4.43 → 25.4.44
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.43] - 2025-03-25
|
|
2
|
+
### :sparkles: New Features
|
|
3
|
+
- [`62a4c55`](https://github.com/webitel/webitel-ui-sdk/commit/62a4c55c84919d03fd44240cd7bc3014724d4c72) - update contacts api *(commit by [@stanislav-kozak](https://github.com/stanislav-kozak))*
|
|
4
|
+
|
|
5
|
+
|
|
1
6
|
## [v25.4.42] - 2025-03-24
|
|
2
7
|
### :bug: Bug Fixes
|
|
3
8
|
- [`632db57`](https://github.com/webitel/webitel-ui-sdk/commit/632db5753cc2cda932a6599a3a081b32e698db50) - tag filter preview locales [WTEL-6569](https://webitel.atlassian.net/browse/WTEL-6569) *(commit by [@dlohvinov](https://github.com/dlohvinov))*
|
|
@@ -1725,3 +1730,4 @@
|
|
|
1725
1730
|
[v25.4.40]: https://github.com/webitel/webitel-ui-sdk/compare/v24.12.174...v25.4.40
|
|
1726
1731
|
[v25.4.41]: https://github.com/webitel/webitel-ui-sdk/compare/v25.4.40...v25.4.41
|
|
1727
1732
|
[v25.4.42]: https://github.com/webitel/webitel-ui-sdk/compare/v25.4.41...v25.4.42
|
|
1733
|
+
[v25.4.43]: https://github.com/webitel/webitel-ui-sdk/compare/v24.12.175...v25.4.43
|
package/package.json
CHANGED
|
@@ -250,7 +250,7 @@ const add = async ({ itemInstance }) => {
|
|
|
250
250
|
]);
|
|
251
251
|
try {
|
|
252
252
|
const response = await contactService.createContact(item);
|
|
253
|
-
return applyTransform(response.data, [snakeToCamel()]);
|
|
253
|
+
return applyTransform(response.data, [snakeToCamel(['custom'])]);
|
|
254
254
|
} catch (err) {
|
|
255
255
|
throw applyTransform(err, [notify]);
|
|
256
256
|
}
|
|
@@ -268,7 +268,7 @@ const update = async ({ itemInstance }) => {
|
|
|
268
268
|
]);
|
|
269
269
|
try {
|
|
270
270
|
const response = await contactService.updateContact(etag, item);
|
|
271
|
-
return applyTransform(response.data, [snakeToCamel()]);
|
|
271
|
+
return applyTransform(response.data, [snakeToCamel(['custom'])]);
|
|
272
272
|
} catch (err) {
|
|
273
273
|
throw applyTransform(err, [notify]);
|
|
274
274
|
}
|