influx4mqtt 2.0.0 → 2.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/config.js +4 -0
- package/package.json +2 -2
package/config.js
CHANGED
|
@@ -98,6 +98,10 @@ export default parseConfig({
|
|
|
98
98
|
pkg,
|
|
99
99
|
options: OPTIONS,
|
|
100
100
|
defaults: {name: 'influx'},
|
|
101
|
+
// a sink: it forwards messages to InfluxDB and publishes no state of its own, so the shared
|
|
102
|
+
// options for status payloads and Home Assistant entities would configure nothing
|
|
103
|
+
publishesStatus: false,
|
|
104
|
+
publishesDiscovery: false,
|
|
101
105
|
check,
|
|
102
106
|
examples: [
|
|
103
107
|
['$0 -u mqtt://broker', 'record every mqtt-smarthome status topic'],
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "influx4mqtt",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.1",
|
|
4
4
|
"description": "Record MQTT values in InfluxDB. Follows the mqtt-smarthome architecture.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "index.js",
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"serviceExtra": []
|
|
53
53
|
},
|
|
54
54
|
"dependencies": {
|
|
55
|
-
"mqtt-interfaces-core": "^0.
|
|
55
|
+
"mqtt-interfaces-core": "^0.15.0"
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
|
58
58
|
"@eslint/js": "^9",
|