@zwave-js/config 10.8.0 → 10.10.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.
@@ -2,7 +2,7 @@
2
2
  "manufacturer": "Danfoss",
3
3
  "manufacturerId": "0x0002",
4
4
  "label": "014G0205",
5
- "description": "",
5
+ "description": "HC-Z Hydronic Floor Heating Controller",
6
6
  "devices": [
7
7
  {
8
8
  "productType": "0x0002",
@@ -13,5 +13,69 @@
13
13
  "firmwareVersion": {
14
14
  "min": "0.0",
15
15
  "max": "255.255"
16
- }
16
+ },
17
+ "associations": {
18
+ "1": {
19
+ "label": "Lifeline",
20
+ "maxNodes": 1,
21
+ "isLifeline": true
22
+ }
23
+ },
24
+ "paramInformation": [
25
+ {
26
+ "#": "1",
27
+ "label": "Valve Type",
28
+ "valueSize": 1,
29
+ "defaultValue": 0,
30
+ "allowManualEntry": false,
31
+ "options": [
32
+ {
33
+ "label": "NC",
34
+ "value": 0
35
+ },
36
+ {
37
+ "label": "NO",
38
+ "value": 1
39
+ }
40
+ ]
41
+ },
42
+ {
43
+ "#": "2",
44
+ "label": "Heat Load Strategy",
45
+ "valueSize": 1,
46
+ "defaultValue": 0,
47
+ "allowManualEntry": false,
48
+ "options": [
49
+ {
50
+ "label": "Stacking",
51
+ "value": 0
52
+ },
53
+ {
54
+ "label": "Spreading",
55
+ "value": 1
56
+ }
57
+ ]
58
+ },
59
+ {
60
+ "#": "3",
61
+ "label": "PWM Period",
62
+ "valueSize": 1,
63
+ "defaultValue": 2,
64
+ "allowManualEntry": false,
65
+ "options": [
66
+ {
67
+ "label": "15 minutes",
68
+ "value": 0
69
+ },
70
+ {
71
+ "label": "30 minutes",
72
+ "value": 1
73
+ },
74
+ {
75
+ "label": "60 minutes",
76
+ "value": 2
77
+ }
78
+ ]
79
+ }
80
+ ]
17
81
  }
@@ -646,8 +646,21 @@
646
646
  "defaultValue": 1
647
647
  }
648
648
  ],
649
- "compat": {
650
- // The device is a Binary Sensor, but uses Basic Sets to report its status
651
- "enableBasicSetMapping": true
652
- }
649
+ "compat": [
650
+ {
651
+ "$if": "firmwareVersion < 3.2",
652
+ // On older firmware versions, the device has a Multilevel sensor on endpoint 2
653
+ // which is not mirrored on the root endpoint. However, the endpoints are considered
654
+ // unnecessary, so endpoint 2 gets hidden along with the sensor.
655
+ "preserveEndpoints": [2],
656
+ "preserveRootApplicationCCValueIDs": true,
657
+
658
+ // The device is a Binary Sensor, but uses Basic Sets to report its status
659
+ "enableBasicSetMapping": true
660
+ },
661
+ {
662
+ // The device is a Binary Sensor, but uses Basic Sets to report its status
663
+ "enableBasicSetMapping": true
664
+ }
665
+ ]
653
666
  }
@@ -232,5 +232,15 @@
232
232
  "maxValue": 6000,
233
233
  "defaultValue": 0
234
234
  }
235
- ]
235
+ ],
236
+ "compat": {
237
+ "commandClasses": {
238
+ "remove": {
239
+ // The device does not support Supervision correctly
240
+ "0x6c": {
241
+ "endpoints": "*"
242
+ }
243
+ }
244
+ }
245
+ }
236
246
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zwave-js/config",
3
- "version": "10.8.0",
3
+ "version": "10.10.0",
4
4
  "description": "zwave-js: configuration files",
5
5
  "publishConfig": {
6
6
  "access": "public",
@@ -65,8 +65,8 @@
65
65
  "lint:prettier:fix": "yarn run lint:prettier -w"
66
66
  },
67
67
  "dependencies": {
68
- "@zwave-js/core": "10.6.0",
69
- "@zwave-js/shared": "10.6.0",
68
+ "@zwave-js/core": "10.10.0",
69
+ "@zwave-js/shared": "10.10.0",
70
70
  "alcalzone-shared": "^4.0.8",
71
71
  "ansi-colors": "^4.1.3",
72
72
  "fs-extra": "^10.1.0",
@@ -87,7 +87,7 @@
87
87
  "@types/semver": "^7.3.12",
88
88
  "@types/xml2js": "^0.4.11",
89
89
  "@types/yargs": "^17.0.12",
90
- "@zwave-js/maintenance": "10.6.0",
90
+ "@zwave-js/maintenance": "10.10.0",
91
91
  "comment-json": "^4.2.3",
92
92
  "del-cli": "^5.0.0",
93
93
  "esbuild": "0.15.7",