@dexteel/mesf-core 4.26.3 → 4.26.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/.release-please-manifest.json +1 -1
- package/CHANGELOG.md +13 -0
- package/dist/index.esm.js +10 -4
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,16 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## [4.26.4](https://github.com/dexteel/mesf-core-frontend/compare/@dexteel/mesf-core-v4.26.3...@dexteel/mesf-core-v4.26.4) (2025-03-19)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* **API Service:** truncate content of query param if needed ([caba7b4](https://github.com/dexteel/mesf-core-frontend/commit/caba7b40c605805693760219ac2c6e683785dda4))
|
|
9
|
+
|
|
10
|
+
## [4.26.3] - 2025-03-17
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
1
14
|
# Changelog
|
|
2
15
|
|
|
3
16
|
## [4.26.3](https://github.com/dexteel/mesf-core-frontend/compare/@dexteel/mesf-core-v4.26.2...@dexteel/mesf-core-v4.26.3) (2025-03-17)
|
package/dist/index.esm.js
CHANGED
|
@@ -7584,10 +7584,16 @@ var MESApiService = /** @class */ (function () {
|
|
|
7584
7584
|
_a.trys.push([1, 3, , 4]);
|
|
7585
7585
|
return [4 /*yield*/, axiosInstance.post("/action/".concat(curatedMethod), data, {
|
|
7586
7586
|
params: data.parameters.map(function (param) {
|
|
7587
|
-
var _a;
|
|
7588
|
-
|
|
7589
|
-
|
|
7590
|
-
_a
|
|
7587
|
+
var _a, _b;
|
|
7588
|
+
var mapKey = param.name.replace("@", "");
|
|
7589
|
+
if (typeof param.value == "string" && param.value.length > 100) {
|
|
7590
|
+
return _a = {},
|
|
7591
|
+
_a[mapKey] = "__truncated__",
|
|
7592
|
+
_a;
|
|
7593
|
+
}
|
|
7594
|
+
return _b = {},
|
|
7595
|
+
_b[mapKey] = param.value,
|
|
7596
|
+
_b;
|
|
7591
7597
|
})
|
|
7592
7598
|
})];
|
|
7593
7599
|
case 2:
|