New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

daikin-controller-cloud

Package Overview
Dependencies
Maintainers
1
Versions
31
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

daikin-controller-cloud - npm Package Compare versions

Comparing version

to
1.2.0

6

lib/device.js

@@ -27,2 +27,3 @@ /**

_traverseDatapointStructure(obj, data, pathPrefix) {
if (obj === null) return;
data = data || {};

@@ -38,3 +39,6 @@ pathPrefix = pathPrefix || '';

data[pathPrefix + '/' + sub] = obj[sub];
} else if (typeof obj[sub] === 'object') { // go one level deeper
} else if (sub ==="electrical" && pathPrefix === '' && typeof obj[sub] === 'object' && obj[sub] !== null) { // hack for missing "unit" field in electical on Altherma devices
obj[sub].unit = 'kWh';
data[pathPrefix + '/' + sub] = obj[sub];
} else if (typeof obj[sub] === 'object' && obj[sub] !== null) { // go one level deeper
//console.log(' found ' + sub);

@@ -41,0 +45,0 @@ this._traverseDatapointStructure(obj[sub], data, pathPrefix + '/' + sub);

2

package.json
{
"name": "daikin-controller-cloud",
"version": "1.1.0",
"version": "1.2.0",
"description": "Interact with Daikin Cloud devices and retrieve Tokens",

@@ -5,0 +5,0 @@ "author": "Apollon77 <iobroker@fischer-ka.de>",

@@ -82,2 +82,5 @@ # daikin-controller-cloud

## Changelog:
### 1.2.0 (2023-08-29)
* (Apollon77) Add parsing support for Altherma electrical device data, missing "unit" is added to the data
### 1.1.0 (2023-08-23)

@@ -84,0 +87,0 @@ * (Apollon77) Fix crash cases