homebridge-enphase-envoy 10.3.0-beta.0 → 10.3.0-beta.1

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/CHANGELOG.md CHANGED
@@ -14,7 +14,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
14
14
  ## Changes
15
15
 
16
16
  - added support for Eve Energy Meter (Production, Consumption Net, Consumption Total)
17
- - added network interface service and characteristics
17
+ - stability and performance improvements
18
+ - config chema updated
19
+ - readme updated
18
20
  - cleanup
19
21
 
20
22
  ## [10.2.6] - (18.10.2025)
@@ -145,31 +145,35 @@
145
145
  }
146
146
  },
147
147
  "lockControl": {
148
- "enable": {
149
- "title": "Control",
150
- "type": "boolean",
151
- "default": true,
152
- "description": "Enables system control auto lock accessory"
153
- },
154
- "time": {
155
- "title": "Auto Lock Time",
156
- "type": "number",
157
- "minimum": 1,
158
- "maximum": 60,
159
- "multipleOf": 1,
160
- "default": 30,
161
- "description": "System control auto lock time (seconds)",
162
- "condition": {
163
- "functionBody": "return model.devices[arrayIndices].lockControl.enable === true"
164
- }
165
- },
166
- "namePrefix": {
167
- "title": "Prefix",
168
- "type": "boolean",
169
- "default": false,
170
- "description": "Use accessory name as a prefix",
171
- "condition": {
172
- "functionBody": "return model.devices[arrayIndices].lockControl.enable === true"
148
+ "title": "Lock Control",
149
+ "type": "object",
150
+ "properties": {
151
+ "enable": {
152
+ "title": "Enable",
153
+ "type": "boolean",
154
+ "default": true,
155
+ "description": "Enables system control auto lock accessory"
156
+ },
157
+ "time": {
158
+ "title": "Auto Lock Time",
159
+ "type": "number",
160
+ "minimum": 1,
161
+ "maximum": 60,
162
+ "multipleOf": 1,
163
+ "default": 30,
164
+ "description": "System control auto lock time (seconds)",
165
+ "condition": {
166
+ "functionBody": "return model.devices[arrayIndices].lockControl.enable === true"
167
+ }
168
+ },
169
+ "namePrefix": {
170
+ "title": "Prefix",
171
+ "type": "boolean",
172
+ "default": false,
173
+ "description": "Use accessory name as a prefix",
174
+ "condition": {
175
+ "functionBody": "return model.devices[arrayIndices].lockControl.enable === true"
176
+ }
173
177
  }
174
178
  }
175
179
  },
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "private": false,
3
3
  "displayName": "Enphase Envoy",
4
4
  "name": "homebridge-enphase-envoy",
5
- "version": "10.3.0-beta.0",
5
+ "version": "10.3.0-beta.1",
6
6
  "description": "Homebridge p7ugin for Photovoltaic Energy System manufactured by Enphase.",
7
7
  "license": "MIT",
8
8
  "author": "grzegorz914",