@zwave-js/config 11.10.0 → 11.11.0

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.
@@ -159,6 +159,17 @@
159
159
  "readOnly": true
160
160
  }
161
161
  ],
162
+ "compat": {
163
+ "commandClasses": {
164
+ "remove": {
165
+ // https://github.com/zwave-js/node-zwave-js/discussions/5566#discussioncomment-6702982
166
+ // The device gets stuck in a state where it continues spamming Supervision Reports
167
+ "Supervision": {
168
+ "endpoints": "*"
169
+ }
170
+ }
171
+ }
172
+ },
162
173
  "metadata": {
163
174
  "inclusion": "Press button \"A\" on the lock interior one time",
164
175
  "exclusion": "Press button \"A\" one time",
@@ -332,10 +332,40 @@
332
332
  }
333
333
  ],
334
334
  "compat": {
335
- // The device has two endpoints. The temperature gets reported via the root, humidity is on endpoint 2.
336
- "mapRootReportsToEndpoint": 1,
337
- // Some variants of this device expose their endpoints as different device classes,
338
- // causing them to be considered unnecessary
339
- "preserveEndpoints": "*"
335
+ // https://github.com/zwave-js/node-zwave-js/issues/6017#issuecomment-1648532422
336
+
337
+ // The device has a weird endpoint setup. Most thermostat functionality is on endpoint 0, but the two additional
338
+ // endpoints have a thermostat device class:
339
+ // General Thermostat V2
340
+ // - "Manufacturer Specific"
341
+ // - "Thermostat Mode"
342
+ // - "Thermostat Setpoint"
343
+ // - "Version"
344
+ // plus the non-mandatory CCs
345
+ // - "Multilevel Sensor"
346
+ // - "Association"
347
+
348
+ // The additional endpoints simply mirror the root endpoint though, except the humidity sensor on endpoint 2.
349
+
350
+ // expose the application CCs on the root endpoint
351
+ "preserveRootApplicationCCValueIDs": true,
352
+
353
+ // Remove all Thermostat CCs from endpoints 1 and 2, as well as the sensor on endpoint 1
354
+ "commandClasses": {
355
+ "remove": {
356
+ "Basic": {
357
+ "endpoints": [1, 2]
358
+ },
359
+ "Thermostat Mode": {
360
+ "endpoints": [1, 2]
361
+ },
362
+ "Thermostat Setpoint": {
363
+ "endpoints": [1, 2]
364
+ },
365
+ "Multilevel Sensor": {
366
+ "endpoints": [1]
367
+ }
368
+ }
369
+ }
340
370
  }
341
371
  }
@@ -7,6 +7,10 @@
7
7
  {
8
8
  "productType": "0x0c01",
9
9
  "productId": "0x0301"
10
+ },
11
+ {
12
+ "productType": "0x0c01",
13
+ "productId": "0x0401"
10
14
  }
11
15
  ],
12
16
  "firmwareVersion": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zwave-js/config",
3
- "version": "11.10.0",
3
+ "version": "11.11.0",
4
4
  "description": "zwave-js: configuration files",
5
5
  "publishConfig": {
6
6
  "access": "public"