homebridge-melcloud-control 4.3.3-beta.5 → 4.3.3-beta.6

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "displayName": "MELCloud Control",
3
3
  "name": "homebridge-melcloud-control",
4
- "version": "4.3.3-beta.5",
4
+ "version": "4.3.3-beta.6",
5
5
  "description": "Homebridge plugin to control Mitsubishi Air Conditioner, Heat Pump and Energy Recovery Ventilation.",
6
6
  "license": "MIT",
7
7
  "author": "grzegorz914",
@@ -369,15 +369,13 @@ class MelCloudAta extends EventEmitter {
369
369
  headers.Referer = ApiUrlsHome.Referers.PutDeviceSettings;
370
370
  updateState = false;
371
371
  this.socket.send(JSON.stringify({
372
- "Data": {
373
- "id": deviceData.DeviceID,
374
- "settings": [
375
- {
376
- "name": "Power",
377
- "value": deviceData.Device.Power
378
- }
379
- ]
380
- }
372
+ "id": deviceData.DeviceID,
373
+ "settings": [
374
+ {
375
+ "name": "Power",
376
+ "value": deviceData.Device.Power
377
+ }
378
+ ]
381
379
  }));
382
380
  return;
383
381
  }