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

iobroker.netatmo

Package Overview
Dependencies
Maintainers
1
Versions
51
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

iobroker.netatmo - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

6

io-package.json
{
"common": {
"name": "netatmo",
"version": "1.0.0",
"version": "1.0.1",
"title": "Netatmo Adapter",

@@ -33,3 +33,5 @@ "desc": {

"unknown_person_time": 24,
"location_elevation": 0
"location_elevation": 0,
"id": "",
"secret": ""
},

@@ -36,0 +38,0 @@ "objects": [

@@ -40,2 +40,4 @@ /* jshint -W097 */// jshint strict:false

var scope = "";
var id = "574ddd152baa3cf9598b46cd";
var secret = "6e3UcBKp005k9N0tpwp69fGYECqOpuhtEE9sWJW";

@@ -69,3 +71,10 @@ // Backward compatibility begin ...

if (adapter.config.netatmoWelcome) {
scope += " read_camera access_camera";
scope += " read_camera read_presence";
if (adapter.config.id && adapter.config.secret) {
id = adapter.config.id;
secret = adapter.config.secret;
scope += " access_camera access_presence"
}
}

@@ -76,4 +85,4 @@

var auth = {
"client_id": "574ddd152baa3cf9598b46cd",
"client_secret": "6e3UcBKp005k9N0tpwp69fGYECqOpuhtEE9sWJW",
"client_id": id,
"client_secret": secret,
"scope": scope,

@@ -80,0 +89,0 @@ "username": adapter.config.username,

{
"name": "iobroker.netatmo",
"version": "1.0.0",
"version": "1.0.1",
"description": "ioBroker netatmo Adapter",

@@ -5,0 +5,0 @@ "author": {

@@ -16,2 +16,5 @@ ![Logo](admin/netatmo.png)

### 1.0.1
* (PArns) Fixed scope problems for presence & welcome (requires your own API key!)
### 1.0.0

@@ -18,0 +21,0 @@ * (PArns) Added live camera picture & stream for presence & welcome

Sorry, the diff of this file is not supported yet

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