mysa2mqtt 1.1.0 → 1.1.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/README.md +7 -7
- package/package.json +10 -10
package/README.md
CHANGED
|
@@ -18,13 +18,13 @@ home automation platforms.
|
|
|
18
18
|
|
|
19
19
|
## Supported hardware
|
|
20
20
|
|
|
21
|
-
| Model Number | Description | Supported
|
|
22
|
-
| ------------ | --------------------------------------------------------- |
|
|
23
|
-
| `BB-V1-X` | Mysa Smart Thermostat for Electric Baseboard Heaters V1 | ✅ Tested and working
|
|
24
|
-
| `BB-V2-X` | Mysa Smart Thermostat for Electric Baseboard Heaters V2 | ⚠️
|
|
25
|
-
| `BB-V2-X-L` | Mysa Smart Thermostat LITE for Electric Baseboard Heaters | ⚠️
|
|
26
|
-
| `unknown` | Mysa Smart Thermostat for Electric In-Floor Heating | ⚠️ Should work but not tested
|
|
27
|
-
| `AC-V1-X` | Mysa Smart Thermostat for Mini-Split Heat Pumps & AC | 🚫 Not supported (yet)
|
|
21
|
+
| Model Number | Description | Supported |
|
|
22
|
+
| ------------ | --------------------------------------------------------- | -------------------------------------------------------------------- |
|
|
23
|
+
| `BB-V1-X` | Mysa Smart Thermostat for Electric Baseboard Heaters V1 | ✅ Tested and working |
|
|
24
|
+
| `BB-V2-X` | Mysa Smart Thermostat for Electric Baseboard Heaters V2 | ⚠️ Partially working, in progress |
|
|
25
|
+
| `BB-V2-X-L` | Mysa Smart Thermostat LITE for Electric Baseboard Heaters | ⚠️ Partially working, in progress; does not report power consumption |
|
|
26
|
+
| `unknown` | Mysa Smart Thermostat for Electric In-Floor Heating | ⚠️ Should work but not tested |
|
|
27
|
+
| `AC-V1-X` | Mysa Smart Thermostat for Mini-Split Heat Pumps & AC | 🚫 Not supported (yet) |
|
|
28
28
|
|
|
29
29
|
## Disclaimer
|
|
30
30
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mysa2mqtt",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"private": false,
|
|
6
6
|
"description": "Expose Mysa smart thermostats to home automation platforms via MQTT.",
|
|
@@ -47,28 +47,28 @@
|
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
49
|
"commander": "14.0.0",
|
|
50
|
-
"dotenv": "
|
|
50
|
+
"dotenv": "17.2.1",
|
|
51
51
|
"mqtt2ha": "4.1.0",
|
|
52
|
-
"mysa-js-sdk": "1.
|
|
52
|
+
"mysa-js-sdk": "1.3.0",
|
|
53
53
|
"pino": "9.7.0",
|
|
54
54
|
"pino-pretty": "13.0.0"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
57
|
"@commander-js/extra-typings": "14.0.0",
|
|
58
|
-
"@eslint/js": "9.
|
|
58
|
+
"@eslint/js": "9.34.0",
|
|
59
59
|
"@semantic-release/npm": "12.0.1",
|
|
60
|
-
"@types/node": "
|
|
61
|
-
"conventional-changelog-conventionalcommits": "9.
|
|
62
|
-
"eslint": "9.
|
|
63
|
-
"eslint-plugin-jsdoc": "
|
|
60
|
+
"@types/node": "24.0.3",
|
|
61
|
+
"conventional-changelog-conventionalcommits": "9.1.0",
|
|
62
|
+
"eslint": "9.29.0",
|
|
63
|
+
"eslint-plugin-jsdoc": "51.1.1",
|
|
64
64
|
"eslint-plugin-tsdoc": "0.4.0",
|
|
65
65
|
"prettier": "3.5.3",
|
|
66
66
|
"prettier-plugin-jsdoc": "1.3.2",
|
|
67
67
|
"prettier-plugin-organize-imports": "4.1.0",
|
|
68
68
|
"semantic-release": "24.2.5",
|
|
69
69
|
"tsup": "8.5.0",
|
|
70
|
-
"tsx": "4.
|
|
70
|
+
"tsx": "4.20.3",
|
|
71
71
|
"typescript": "5.8.3",
|
|
72
|
-
"typescript-eslint": "8.
|
|
72
|
+
"typescript-eslint": "8.41.0"
|
|
73
73
|
}
|
|
74
74
|
}
|