New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

homebridge-homewizard-energy-socket

Package Overview
Dependencies
Maintainers
1
Versions
30
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

homebridge-homewizard-energy-socket - npm Package Compare versions

Comparing version 1.0.4 to 1.0.5

9

CHANGELOG.md

@@ -7,5 +7,14 @@ ### Changelog

#### [1.0.5](https://github.com/jvandenaardweg/homebridge-homewizard-energy/compare/1.0.4...1.0.5)
- feat: rename to homewizard energy socket [`a14189b`](https://github.com/jvandenaardweg/homebridge-homewizard-energy/commit/a14189b4b0940aa6f94736045f47b3e31c455ed7)
- chore: update readme [`2584910`](https://github.com/jvandenaardweg/homebridge-homewizard-energy/commit/2584910fc0965e4a9a2c780e23be007ac57c21bf)
- chore: update readme [`96ec435`](https://github.com/jvandenaardweg/homebridge-homewizard-energy/commit/96ec435fb767d4c302247bca4a1fe6fd385342fa)
#### [1.0.4](https://github.com/jvandenaardweg/homebridge-homewizard-energy/compare/1.0.3...1.0.4)
> 4 December 2022
- chore: change package name to homebridge-homewizard-energy-socket [`f5b5d31`](https://github.com/jvandenaardweg/homebridge-homewizard-energy/commit/f5b5d31ed4c7fa045e0cff2de475135f4c998d9a)
- chore: release v1.0.4 [`e411165`](https://github.com/jvandenaardweg/homebridge-homewizard-energy/commit/e4111651084ea5832b07af2dbdb1e05f7146b278)
- chore: update readme [`5fb5095`](https://github.com/jvandenaardweg/homebridge-homewizard-energy/commit/5fb50954deee820513d10ed62973ff427e9ca1c9)

@@ -12,0 +21,0 @@

4

config.schema.json
{
"pluginAlias": "HomebridgeHomeWizardEnergy",
"pluginAlias": "HomebridgeHomeWizardEnergySocket",
"pluginType": "platform",

@@ -10,5 +10,5 @@ "singular": true,

"required": true,
"default": "Homebridge HomeWizard Energy"
"default": "Homebridge HomeWizard Energy Socket"
}
}
}
import { PlatformAccessory, CharacteristicValue } from "homebridge";
import { HomebridgeHomeWizardEnergy } from "./platform";
import { HomebridgeHomeWizardEnergySocket } from "./platform";
import { HomeWizardEnergyPlatformAccessoryContext } from "./types";

@@ -16,3 +16,3 @@ /**

private stateApiUrl;
constructor(platform: HomebridgeHomeWizardEnergy, accessory: PlatformAccessory<HomeWizardEnergyPlatformAccessoryContext>);
constructor(platform: HomebridgeHomeWizardEnergySocket, accessory: PlatformAccessory<HomeWizardEnergyPlatformAccessoryContext>);
setAsyncRequiredCharacteristic(): Promise<void>;

@@ -19,0 +19,0 @@ /**

@@ -5,4 +5,4 @@ "use strict";

module.exports = (api) => {
api.registerPlatform(settings_1.PLATFORM_NAME, platform_1.HomebridgeHomeWizardEnergy);
api.registerPlatform(settings_1.PLATFORM_NAME, platform_1.HomebridgeHomeWizardEnergySocket);
};
//# sourceMappingURL=index.js.map

@@ -9,3 +9,3 @@ import { API, DynamicPlatformPlugin, Logger, PlatformAccessory, PlatformConfig, Service, Characteristic } from "homebridge";

*/
export declare class HomebridgeHomeWizardEnergy implements DynamicPlatformPlugin {
export declare class HomebridgeHomeWizardEnergySocket implements DynamicPlatformPlugin {
readonly log: Logger;

@@ -12,0 +12,0 @@ readonly api: API;

@@ -6,3 +6,3 @@ "use strict";

Object.defineProperty(exports, "__esModule", { value: true });
exports.HomebridgeHomeWizardEnergy = void 0;
exports.HomebridgeHomeWizardEnergySocket = void 0;
const bonjour_service_1 = __importDefault(require("bonjour-service"));

@@ -16,3 +16,3 @@ const settings_1 = require("./settings");

*/
class HomebridgeHomeWizardEnergy {
class HomebridgeHomeWizardEnergySocket {
constructor(log, config, api) {

@@ -194,3 +194,3 @@ this.log = log;

}
exports.HomebridgeHomeWizardEnergy = HomebridgeHomeWizardEnergy;
exports.HomebridgeHomeWizardEnergySocket = HomebridgeHomeWizardEnergySocket;
//# sourceMappingURL=platform.js.map
/**
* This is the name of the platform that users will use to register the plugin in the Homebridge config.json
*/
export declare const PLATFORM_NAME = "HomebridgeHomeWizardEnergy";
export declare const PLATFORM_NAME = "HomebridgeHomeWizardEnergySocket";
/**

@@ -6,0 +6,0 @@ * This must match the name of your plugin as defined the package.json

@@ -7,3 +7,3 @@ "use strict";

*/
exports.PLATFORM_NAME = "HomebridgeHomeWizardEnergy";
exports.PLATFORM_NAME = "HomebridgeHomeWizardEnergySocket";
/**

@@ -10,0 +10,0 @@ * This must match the name of your plugin as defined the package.json

{
"displayName": "Homebridge HomeWizard Energy Socket",
"name": "homebridge-homewizard-energy-socket",
"version": "1.0.4",
"version": "1.0.5",
"description": "This Homebridge plugin exposes your HomeWizard Energy Sockets to Apple HomeKit. So you can use the Home App to manually switch - or automate - your Energy Sockets.",

@@ -6,0 +6,0 @@ "license": "Apache-2.0",

@@ -40,5 +40,5 @@ <p align="center">

1. Go to your Homebridge UI and click on "Plugins"
2. Find `Homebridge HomeWizard Energy Socket` from `@jvandenaardweg` and click "Install"
2. Find `HomeWizard Energy` and select the plugin `Homebridge HomeWizard Energy` from `@jvandenaardweg` and click "Install"
3. No additional configuration is required. But make sure to follow the instructions provided by Homebridge after you enabled the plugin.
After enabling the plugin, the plugin will automatically discover the Energy Sockets in your network. Is your Energy Socket not discovered? Make sure you enabled the "Local API" setting in the HomeWizard "Energy" app and then restart the Homebridge plugin and/or server.

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc