homebridge-melcloud-control 4.10.13 → 4.10.14-beta.0
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/package.json +2 -2
- package/src/deviceatw.js +1 -1
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"displayName": "MELCloud Control",
|
|
3
3
|
"name": "homebridge-melcloud-control",
|
|
4
|
-
"version": "4.10.
|
|
4
|
+
"version": "4.10.14-beta.0",
|
|
5
5
|
"description": "Homebridge plugin to control Mitsubishi Air Conditioner, Heat Pump and Energy Recovery Ventilation.",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"author": "grzegorz914",
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"@homebridge/plugin-ui-utils": "^2.2.4",
|
|
39
39
|
"mqtt": "^5.15.1",
|
|
40
|
-
"axios": "^1.
|
|
40
|
+
"axios": "^1.18.0",
|
|
41
41
|
"axios-cookiejar-support": "^7.0.0",
|
|
42
42
|
"tough-cookie": "^6.0.1",
|
|
43
43
|
"express": "^5.2.1",
|
package/src/deviceatw.js
CHANGED
|
@@ -1710,7 +1710,7 @@ class DeviceAtw extends EventEmitter {
|
|
|
1710
1710
|
const tempStepKey = accountTypeMelCloud ? 'TemperatureIncrement' : 'HasHalfDegreeIncrements';
|
|
1711
1711
|
const connectKey = accountTypeMelCloud ? 'Offline' : 'IsConnected';
|
|
1712
1712
|
const errorKey = accountTypeMelCloud ? 'HasError' : 'IsInError';
|
|
1713
|
-
const supportHeatKey = accountTypeMelCloud ? 'CanHeat' : '
|
|
1713
|
+
const supportHeatKey = accountTypeMelCloud ? 'CanHeat' : 'HasHeatZone1';
|
|
1714
1714
|
const supportCoolKey = accountTypeMelCloud ? 'CanCool' : 'HasCoolingMode';
|
|
1715
1715
|
const supportHotWaterKey = accountTypeMelCloud ? 'HasHotWaterTank' : 'HasHotWater';
|
|
1716
1716
|
|