node-red-contrib-influxdb
Advanced tools
Comparing version 0.6.1 to 0.7.0
@@ -56,2 +56,3 @@ var _ = require('lodash'); | ||
} else if (n.influxdbVersion === VERSION_18_FLUX || n.influxdbVersion === VERSION_20) { | ||
const timeout = Math.floor(+(n.timeout?n.timeout:10)*1000) // convert from seconds to milliseconds | ||
@@ -64,4 +65,5 @@ const token = n.influxdbVersion === VERSION_18_FLUX ? | ||
url: n.url, | ||
rejectUnauthorized: n.rejectUnauthorized, | ||
token | ||
token, | ||
timeout, | ||
rejectUnauthorized: n.rejectUnauthorized | ||
} | ||
@@ -68,0 +70,0 @@ this.client = new InfluxDB(clientOptions); |
@@ -19,2 +19,3 @@ { | ||
"token": "Token", | ||
"timeout": "Connection timeout (seconds)", | ||
"reject-unauthorized": "Verify server certificate", | ||
@@ -21,0 +22,0 @@ "org": "Organization", |
@@ -19,2 +19,3 @@ { | ||
"token": "Token", | ||
"timeout": "Connection timeout (seconds)", | ||
"reject-unauthorized": "Verificar el certificado del servidor", | ||
@@ -21,0 +22,0 @@ "org": "Organización", |
{ | ||
"name": "node-red-contrib-influxdb", | ||
"version": "0.6.1", | ||
"version": "0.7.0", | ||
"description": "Node-RED nodes to save and query data from an influxdb time series database", | ||
@@ -35,6 +35,9 @@ "main": "influxdb.js", | ||
"dependencies": { | ||
"influx": "5.6.3", | ||
"@influxdata/influxdb-client": "^1.8.0", | ||
"lodash": "4.17.21" | ||
"influx": "~5.9.3", | ||
"@influxdata/influxdb-client": "~1.33.2", | ||
"lodash": "~4.17.21" | ||
}, | ||
"engines": { | ||
"node": ">=10" | ||
} | ||
} |
Sorry, the diff of this file is not supported yet
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
82298
8
523
+ Added@influxdata/influxdb-client@1.33.2(transitive)
+ Addedinflux@5.9.3(transitive)
- Removed@influxdata/influxdb-client@1.35.0(transitive)
- Removedinflux@5.6.3(transitive)
Updatedinflux@~5.9.3
Updatedlodash@~4.17.21