mqtt2elasticsearch 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
|
@@ -91,6 +91,10 @@ export default parseConfig({
|
|
|
91
91
|
pkg,
|
|
92
92
|
options: OPTIONS,
|
|
93
93
|
defaults: {name: 'elasticsearch'},
|
|
94
|
+
// a sink: it forwards messages to Elasticsearch and publishes no state of its own, so the shared
|
|
95
|
+
// options for status payloads and Home Assistant entities would configure nothing
|
|
96
|
+
publishesStatus: false,
|
|
97
|
+
publishesDiscovery: false,
|
|
94
98
|
check,
|
|
95
99
|
examples: [
|
|
96
100
|
['$0 -u mqtt://broker -e http://elastic:9200', 'index every topic'],
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mqtt2elasticsearch",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.1",
|
|
4
4
|
"description": "Send MQTT messages to Elasticsearch. Follows the mqtt-smarthome architecture.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "index.js",
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
"serviceExtra": []
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
|
-
"mqtt-interfaces-core": "^0.
|
|
54
|
+
"mqtt-interfaces-core": "^0.15.0"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
57
|
"@eslint/js": "^9",
|