Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@terminal-packages/sdk

Package Overview
Dependencies
Maintainers
3
Versions
52
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@terminal-packages/sdk - npm Package Compare versions

Comparing version 1.0.3 to 1.0.4

8

CHANGELOG.md

@@ -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 @@ }

2

package.json
{
"name": "@terminal-packages/sdk",
"version": "1.0.3",
"version": "1.0.4",
"description": "Terminals sdk",

@@ -5,0 +5,0 @@ "main": "dist/index.js",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc