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 +3 -1
- package/config.schema.json +29 -25
- package/package.json +1 -1
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
|
-
-
|
|
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)
|
package/config.schema.json
CHANGED
|
@@ -145,31 +145,35 @@
|
|
|
145
145
|
}
|
|
146
146
|
},
|
|
147
147
|
"lockControl": {
|
|
148
|
-
"
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
"
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
"
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
"
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
"
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
"
|
|
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.
|
|
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",
|