@sap-ux/axios-extension 1.24.3 → 1.24.5
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/dist/abap/message.js +1 -1
- package/package.json +2 -2
package/dist/abap/message.js
CHANGED
|
@@ -111,7 +111,7 @@ function prettyPrintError({ error, log, host, isDest }, showAllMessages = true)
|
|
|
111
111
|
* @returns user friendly string
|
|
112
112
|
*/
|
|
113
113
|
const prettyPrintTimeInMs = (ms) => {
|
|
114
|
-
const min = (ms / 60 / 1000)
|
|
114
|
+
const min = Math.trunc(ms / 60 / 1000);
|
|
115
115
|
if (min > 1) {
|
|
116
116
|
return `${min} minutes`;
|
|
117
117
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sap-ux/axios-extension",
|
|
3
|
-
"version": "1.24.
|
|
3
|
+
"version": "1.24.5",
|
|
4
4
|
"description": "Extension of the Axios module adding convenience methods to interact with SAP systems especially with OData services.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"nock": "13.4.0",
|
|
36
36
|
"supertest": "7.1.4",
|
|
37
37
|
"@types/proxy-from-env": "1.0.1",
|
|
38
|
-
"@sap-ux/project-access": "1.32.
|
|
38
|
+
"@sap-ux/project-access": "1.32.12"
|
|
39
39
|
},
|
|
40
40
|
"files": [
|
|
41
41
|
"dist",
|