homebridge-econet-rheem 1.0.2 → 1.0.4

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.
Files changed (2) hide show
  1. package/config.schema.json +22 -5
  2. package/package.json +5 -9
@@ -2,10 +2,14 @@
2
2
  "pluginAlias": "HomebridgeEconetRheem",
3
3
  "pluginType": "platform",
4
4
  "singular": true,
5
- "strictValidation": false,
6
5
  "schema": {
7
6
  "type": "object",
8
7
  "properties": {
8
+ "name": {
9
+ "title": "Plugin Name",
10
+ "type": "string",
11
+ "default": "Econet Rheem"
12
+ },
9
13
  "email": {
10
14
  "title": "Email",
11
15
  "type": "string",
@@ -20,11 +24,24 @@
20
24
  "description": "Rheem/Econet account password"
21
25
  },
22
26
  "debug": {
23
- "title": "Password",
27
+ "title": "Debug",
24
28
  "type": "boolean",
25
29
  "required": false,
26
- "description": "Enabled additional debug logging"
30
+ "description": "Enable additional debug logging"
27
31
  }
28
32
  }
29
- }
30
- }
33
+ },
34
+ "layout": [
35
+ {
36
+ "type": "fieldset",
37
+ "title": "Required Settings",
38
+ "items": ["email", "password"]
39
+ },
40
+ {
41
+ "type": "fieldset",
42
+ "title": "Advanced Settings",
43
+ "expandable": true,
44
+ "items": ["debug"]
45
+ }
46
+ ]
47
+ }
package/package.json CHANGED
@@ -4,18 +4,16 @@
4
4
  "displayName": "Homebridge Econet Rheem",
5
5
  "description": "Homebridge plugin based on pyeconet for control of Rheem water heaters",
6
6
  "type": "module",
7
- "version": "1.0.2",
7
+ "version": "1.0.4",
8
8
  "homepage": "https://github.com/mpatfield/homebridge-econet-rheem#readme",
9
9
  "repository": {
10
10
  "type": "git",
11
11
  "url": "https://github.com/mpatfield/homebridge-econet-rheem.git"
12
12
  },
13
- "funding": [
14
- {
15
- "type": "github",
16
- "url": "https://github.com/sponsors/mpatfield"
17
- }
18
- ],
13
+ "funding": {
14
+ "type": "github",
15
+ "url": "https://github.com/sponsors/mpatfield"
16
+ },
19
17
  "bugs": {
20
18
  "url": "https://github.com/mpatfield/homebridge-econet-rheem/issues"
21
19
  },
@@ -38,13 +36,11 @@
38
36
  "homebridge": "^1.8.0 || ^2.0.0-beta.0"
39
37
  },
40
38
  "dependencies": {
41
- "axios": "^1.7.2",
42
39
  "homebridge-lib": "^7.1.4",
43
40
  "mqtt": "^5.7.0"
44
41
  },
45
42
  "devDependencies": {
46
43
  "@eslint/js": "^9.21.0",
47
- "@types/axios": "^0.14.0",
48
44
  "@types/node": "^22.13.5",
49
45
  "eslint": "^9.24.0",
50
46
  "homebridge": "^2.0.0-beta.0",