Socket
Socket
Sign inDemoInstall

cocoro-sdk

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cocoro-sdk - npm Package Compare versions

Comparing version 0.3.1 to 0.3.2

2

dist/src/cocoro.js

@@ -232,3 +232,3 @@ "use strict";

_b = _a[_i], k = _b[0], v = _b[1];
for (i = 0; i <= device.status.length; i++) {
for (i = 0; i < device.status.length; i++) {
if (device.status[i].statusCode === k) {

@@ -235,0 +235,0 @@ device.status[i] = v;

@@ -9,4 +9,4 @@ import { Property, PropertyStatus, StatusCode, ValueSingle } from './properties';

echonetObject: string;
properties: [Property];
status: [PropertyStatus];
properties: Property[];
status: PropertyStatus[];
maker: string;

@@ -29,4 +29,4 @@ model: string;

echonetObject: string;
readonly properties: [Property];
status: [PropertyStatus];
readonly properties: Property[];
status: PropertyStatus[];
propertyUpdates: any;

@@ -33,0 +33,0 @@ maker: string;

{
"name": "cocoro-sdk",
"version": "0.3.1",
"version": "0.3.2",
"description": "",

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

@@ -169,3 +169,3 @@ import { default as fetchCookie } from 'fetch-cookie';

for (const [k, v] of Object.entries(updateMap)) {
for (let i = 0; i <= device.status.length; i++) {
for (let i = 0; i < device.status.length; i++) {
if (device.status[i].statusCode === k) {

@@ -172,0 +172,0 @@ device.status[i] = v;

@@ -27,4 +27,4 @@ import { default as fetchCookie } from 'fetch-cookie';

properties: [Property];
status: [PropertyStatus];
properties: Property[];
status: PropertyStatus[];

@@ -50,4 +50,4 @@ maker: string;

readonly properties: [Property];
status: [PropertyStatus];
readonly properties: Property[];
status: PropertyStatus[];

@@ -54,0 +54,0 @@ propertyUpdates: any;

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