@terminal-packages/sdk
Advanced tools
Comparing version 1.0.3 to 1.0.4
@@ -1,2 +0,2 @@ | ||
## Unreleased [Version 1.0.3] | ||
## Unreleased [Version 1.0.5] | ||
@@ -9,2 +9,8 @@ ### New features | ||
## [Version 1.0.4](2019-09-20) | ||
### Bug fixes | ||
- fix: handle object arrays in parameters | ||
## [Version 1.0.3](2019-09-19) | ||
@@ -11,0 +17,0 @@ |
@@ -177,2 +177,9 @@ "use strict"; | ||
}; | ||
if (Array.isArray(payload.params)) { | ||
for (let i = 0; i < payload.params.length; i++) { | ||
if (typeof payload.params[i] === 'object') { | ||
payload.params[i] = JSON.stringify(payload.params[i]); | ||
} | ||
} | ||
} | ||
this._apiService.saveToLogs(logRequest); | ||
@@ -179,0 +186,0 @@ } |
{ | ||
"name": "@terminal-packages/sdk", | ||
"version": "1.0.3", | ||
"version": "1.0.4", | ||
"description": "Terminals sdk", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
30130
544