homebridge-melcloud-control 4.3.11-beta.14 → 4.3.11-beta.15

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.11-beta.14",
4
+ "version": "4.3.11-beta.15",
5
5
  "description": "Homebridge plugin to control Mitsubishi Air Conditioner, Heat Pump and Energy Recovery Ventilation.",
6
6
  "license": "MIT",
7
7
  "author": "grzegorz914",
@@ -25,7 +25,7 @@ const BASE_URL = "https://melcloudhome.com";
25
25
  const COGNITO_BASE =
26
26
  "https://live-melcloudhome.auth.eu-west-1.amazoncognito.com";
27
27
 
28
- export class MelcloudHomeClient {
28
+ class MELCloudHomeAuth {
29
29
  constructor({ timeout = 30000, debug = false } = {}) {
30
30
  this.debug = debug;
31
31
  this.jar = new CookieJar();
@@ -311,4 +311,6 @@ export class MelcloudHomeClient {
311
311
  }
312
312
  }
313
313
 
314
+ export default MELCloudHomeAuth;
315
+
314
316