homebridge-tuya-platform-talrhvfork 2.0.21 → 2.0.22

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.

Potentially problematic release.


This version of homebridge-tuya-platform-talrhvfork might be problematic. Click here for more details.

Files changed (2) hide show
  1. package/index.mjs +2 -2
  2. package/package.json +1 -1
package/index.mjs CHANGED
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
 
3
3
  import settings from "./src/settings.mjs";
4
- import TuyaPlatform from "./src/platform.mjs";
4
+ import platformModule from "./src/platform.mjs";
5
5
 
6
6
  /**
7
7
  * Homebridge Plugin Initializer.
@@ -13,6 +13,6 @@ export default (api) => {
13
13
  api.registerPlatform(
14
14
  settings.PLUGIN_NAME,
15
15
  settings.PLATFORM_NAME,
16
- TuyaPlatform,
16
+ platformModule.TuyaPlatform,
17
17
  );
18
18
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "homebridge-tuya-platform-talrhvfork",
3
- "version": "2.0.21",
3
+ "version": "2.0.22",
4
4
  "type": "module",
5
5
  "description": "Official Homebridge plugin for Tuya Open API - talrhv fork, maintained by talrhv.",
6
6
  "main": "index.mjs",