@zwave-js/config 11.13.1 → 11.14.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.
@@ -60,5 +60,9 @@
60
60
  }
61
61
  ]
62
62
  }
63
- ]
63
+ ],
64
+ "compat": {
65
+ // The device expects to be queried after status changes, but ramps up too slow to be queried immediately.
66
+ "manualValueRefreshDelayMs": 1000
67
+ }
64
68
  }
@@ -155,9 +155,13 @@
155
155
 
156
156
  "enable_scene_control": {
157
157
  "$import": "~/templates/master_template.json#base_enable_disable",
158
- "label": "Enable/Disable Scene Control",
158
+ "label": "Scene Control",
159
159
  "description": "Enable or disable scene control functionality for quick double tap triggers."
160
160
  },
161
+ "enable_scene_control_3way": {
162
+ "$import": "~/templates/master_template.json#base_enable_disable",
163
+ "label": "Scene Control: Remote 3-Way Switch"
164
+ },
161
165
  "led_indicator_color": {
162
166
  "label": "LED Indicator Color",
163
167
  "valueSize": 1,
@@ -208,6 +212,12 @@
208
212
  }
209
213
  ]
210
214
  },
215
+ "led_confirm_config_change": {
216
+ "$import": "~/templates/master_template.json#base_enable_disable_inverted",
217
+ "label": "LED Indicator: Confirm Configuration Change",
218
+ "description": "Disable this feature when using the LED indicators in automations.",
219
+ "defaultValue": 0
220
+ },
211
221
  "smart_switch_mode_reporting": {
212
222
  "label": "Smart Bulb Mode: Reporting Behavior",
213
223
  "valueSize": 1,
@@ -1,7 +1,19 @@
1
+ // Firmware versions
2
+ // 1.10 -> 1.20 -> (1.30 = 2.10)
3
+
4
+ // Conditionals:
5
+ // 800 series: firmwareVersion >= 2.10
6
+
1
7
  {
2
8
  "manufacturer": "Zooz",
3
9
  "manufacturerId": "0x027a",
4
- "label": "ZEN04",
10
+ "label": [
11
+ {
12
+ "$if": "firmwareVersion >= 2.10",
13
+ "value": "ZEN04 800LR"
14
+ },
15
+ "ZEN04"
16
+ ],
5
17
  "description": "Indoor Smart Plug",
6
18
  "devices": [
7
19
  {
@@ -1,8 +1,21 @@
1
+ // The firmware versions on this device are a mess
2
+ // 1.1 -> (10.0 = 2.0) -> (10.10 = 2.10) -> (10.20 = 2.20 = 3.10) -> 3.20
3
+
4
+ // Conditionals:
5
+ // 2.0 / 10.0 and later: firmwareVersion >= 2.0
6
+ // 800 series: firmwareVersion >= 3.10 && firmwareVersion < 10.0
7
+
1
8
  {
2
9
  "manufacturer": "Zooz",
3
10
  "manufacturerId": "0x027a",
4
- "label": "ZEN71",
5
- "description": "Z-Wave Plus 700 Series ON/OFF Switch",
11
+ "label": [
12
+ {
13
+ "$if": "firmwareVersion >= 3.10 && firmwareVersion < 10.0",
14
+ "value": "ZEN71 800LR"
15
+ },
16
+ "ZEN71"
17
+ ],
18
+ "description": "ON/OFF Switch",
6
19
  "devices": [
7
20
  {
8
21
  "productType": "0x7000",
@@ -76,7 +89,6 @@
76
89
  },
77
90
  {
78
91
  "#": "17",
79
- // This parameter was added in firmware 10.0, which the 2.0 firmware is based on
80
92
  "$if": "firmwareVersion >= 2.0",
81
93
  "$import": "templates/zooz_template.json#local_programming"
82
94
  }
@@ -1,16 +1,24 @@
1
1
  // The firmware versions on this device are a mess
2
- // 1.1 -> 10.0 -> (10.20 = 2.0) -> (10.30 = 2.10)
2
+ // 1.1 -> 10.0 -> (10.20 = 2.0) -> (10.30 = 2.10) -> (10.40 = 2.20 = 3.10) -> 3.20
3
3
 
4
4
  // Conditionals:
5
5
  // 10.0 and later: firmwareVersion >= 10.0
6
6
  // 10.20 and later: firmwareVersion >= 2.0 && firmwareVersion < 10.0 || firmwareVersion >= 10.20
7
7
  // 10.30 and later: firmwareVersion >= 2.10 && firmwareVersion < 10.0 || firmwareVersion >= 10.30
8
+ // 10.40 and later: firmwareVersion >= 2.20 && firmwareVersion < 10.0 || firmwareVersion >= 10.40
9
+ // 800 series: firmwareVersion >= 3.10 && firmwareVersion < 10.0
8
10
 
9
11
  {
10
12
  "manufacturer": "Zooz",
11
13
  "manufacturerId": "0x027a",
12
- "label": "ZEN72",
13
- "description": "Z-Wave Plus 700 Series Dimmer Switch",
14
+ "label": [
15
+ {
16
+ "$if": "firmwareVersion >= 3.10 && firmwareVersion < 10.0",
17
+ "value": "ZEN72 800LR"
18
+ },
19
+ "ZEN72"
20
+ ],
21
+ "description": "Dimmer Switch",
14
22
  "devices": [
15
23
  {
16
24
  "productType": "0x7000",
@@ -59,6 +67,11 @@
59
67
  "#": "24",
60
68
  "$import": "templates/zooz_template.json#led_indicator_brightness"
61
69
  },
70
+ {
71
+ "#": "32",
72
+ "$if": "firmwareVersion >= 2.20 && firmwareVersion < 10.0 || firmwareVersion >= 10.40",
73
+ "$import": "templates/zooz_template.json#led_confirm_config_change"
74
+ },
62
75
  {
63
76
  "#": "3",
64
77
  "$import": "templates/zooz_template.json#auto_off_timer_0x_3x_7x"
@@ -150,6 +163,11 @@
150
163
  "#": "13",
151
164
  "$import": "templates/zooz_template.json#enable_scene_control"
152
165
  },
166
+ {
167
+ "#": "31",
168
+ "$if": "firmwareVersion >= 2.20 && firmwareVersion < 10.0 || firmwareVersion >= 10.40",
169
+ "$import": "templates/zooz_template.json#enable_scene_control_3way"
170
+ },
153
171
  {
154
172
  "#": "15",
155
173
  "$import": "~/templates/master_template.json#smart_switch_mode_0-2"
@@ -1,8 +1,21 @@
1
+ // The firmware versions on this device are a mess
2
+ // 1.2 -> (10.0 = 2.0) -> (10.10 = 2.10) -> (10.20 = 2.20 = 3.10) -> 3.20
3
+
4
+ // Conditionals:
5
+ // 2.0 / 10.0 and later: firmwareVersion >= 2.0
6
+ // 800 series: firmwareVersion >= 3.10 && firmwareVersion < 10.0
7
+
1
8
  {
2
9
  "manufacturer": "Zooz",
3
10
  "manufacturerId": "0x027a",
4
- "label": "ZEN76",
5
- "description": "Z-Wave Plus 700 Series S2 ON/OFF Switch",
11
+ "label": [
12
+ {
13
+ "$if": "firmwareVersion >= 3.10 && firmwareVersion < 10.0",
14
+ "value": "ZEN76 800LR"
15
+ },
16
+ "ZEN76"
17
+ ],
18
+ "description": "S2 ON/OFF Switch",
6
19
  "devices": [
7
20
  {
8
21
  "productType": "0x7000",
@@ -1,17 +1,27 @@
1
1
  // The firmware versions on this device are a mess
2
- // 1.2 -> 1.3 -> 10.0 -> (10.10 = 2.0) -> (10.20 = 2.10 = 3.0) -> (10.30 = 2.20 = 3.10)
2
+ // 1.2 -> 1.3 -> 10.0 -> (10.10 = 2.0) -> (10.20 = 2.10 = 3.0)
3
+ // -> (10.30 = 2.20 = 3.10) -> (10.40 = 2.30 = 3.20 = 4.10)
4
+ // -> 4.20
3
5
 
4
6
  // Conditionals:
5
7
  // 10.0 and later: firmwareVersion >= 2.0
6
8
  // 10.10 and later: firmwareVersion >= 10.10 || firmwareVersion >= 2.0 && firmwareVersion < 10.0
7
9
  // 10.20 and later: firmwareVersion >= 10.20 || firmwareVersion >= 2.10 && firmwareVersion < 10.0
8
- // 10.30 and later: firmwareVersion >= 10.20 || firmwareVersion >= 2.20 && firmwareVersion < 3.0 || firmwareVersion >= 3.10
10
+ // 10.30 and later: firmwareVersion >= 10.30 || firmwareVersion >= 2.20 && firmwareVersion < 3.0 || firmwareVersion >= 3.10
11
+ // 10.40 and later: firmwareVersion >= 10.40 || firmwareVersion >= 2.30 && firmwareVersion < 3.0 || firmwareVersion >= 3.20
12
+ // 800 series: firmwareVersion >= 4.10 && firmwareVersion < 10.0
9
13
 
10
14
  {
11
15
  "manufacturer": "Zooz",
12
16
  "manufacturerId": "0x027a",
13
- "label": "ZEN77",
14
- "description": "Z-Wave Plus 700 Series S2 Dimmer Switch",
17
+ "label": [
18
+ {
19
+ "$if": "firmwareVersion >= 4.10 && firmwareVersion < 10.0",
20
+ "value": "ZEN77 800LR"
21
+ },
22
+ "ZEN77"
23
+ ],
24
+ "description": "S2 Dimmer Switch",
15
25
  "devices": [
16
26
  {
17
27
  "productType": "0x7000",
@@ -55,6 +65,11 @@
55
65
  "#": "24",
56
66
  "$import": "templates/zooz_template.json#led_indicator_brightness"
57
67
  },
68
+ {
69
+ "#": "32",
70
+ "$if": "firmwareVersion >= 10.40 || firmwareVersion >= 2.30 && firmwareVersion < 3.0 || firmwareVersion >= 3.20",
71
+ "$import": "templates/zooz_template.json#led_confirm_config_change"
72
+ },
58
73
  {
59
74
  "#": "3",
60
75
  "$import": "templates/zooz_template.json#auto_off_timer_0x_3x_7x"
@@ -65,28 +80,28 @@
65
80
  },
66
81
  {
67
82
  "#": "7[0x01]",
68
- "$if": "firmwareVersion >= 10.20 || firmwareVersion >= 2.20 && firmwareVersion < 3.0 || firmwareVersion >= 3.10",
83
+ "$if": "firmwareVersion >= 10.30 || firmwareVersion >= 2.20 && firmwareVersion < 3.0 || firmwareVersion >= 3.10",
69
84
  "$import": "~/templates/master_template.json#base_enable_disable",
70
85
  "label": "Control Groups 2 and 3 With Physical Switch",
71
86
  "defaultValue": 1
72
87
  },
73
88
  {
74
89
  "#": "7[0x02]",
75
- "$if": "firmwareVersion >= 10.20 || firmwareVersion >= 2.20 && firmwareVersion < 3.0 || firmwareVersion >= 3.10",
90
+ "$if": "firmwareVersion >= 10.30 || firmwareVersion >= 2.20 && firmwareVersion < 3.0 || firmwareVersion >= 3.10",
76
91
  "$import": "~/templates/master_template.json#base_enable_disable",
77
92
  "label": "Control Groups 2 and 3 With Connected 3-Way Switch",
78
93
  "defaultValue": 1
79
94
  },
80
95
  {
81
96
  "#": "7[0x04]",
82
- "$if": "firmwareVersion >= 10.20 || firmwareVersion >= 2.20 && firmwareVersion < 3.0 || firmwareVersion >= 3.10",
97
+ "$if": "firmwareVersion >= 10.30 || firmwareVersion >= 2.20 && firmwareVersion < 3.0 || firmwareVersion >= 3.10",
83
98
  "$import": "~/templates/master_template.json#base_enable_disable",
84
99
  "label": "Control Groups 2 and 3 With Z-Wave Commands",
85
100
  "defaultValue": 1
86
101
  },
87
102
  {
88
103
  "#": "7[0x08]",
89
- "$if": "firmwareVersion >= 10.20 || firmwareVersion >= 2.20 && firmwareVersion < 3.0 || firmwareVersion >= 3.10",
104
+ "$if": "firmwareVersion >= 10.30 || firmwareVersion >= 2.20 && firmwareVersion < 3.0 || firmwareVersion >= 3.10",
90
105
  "$import": "~/templates/master_template.json#base_enable_disable",
91
106
  "label": "Control Groups 2 and 3 With On/Off Timers",
92
107
  "defaultValue": 1
@@ -12,7 +12,7 @@
12
12
  ],
13
13
  "firmwareVersion": {
14
14
  "min": "1.21",
15
- "max": "1.24"
15
+ "max": "1.26"
16
16
  },
17
17
  "paramInformation": [
18
18
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zwave-js/config",
3
- "version": "11.13.1",
3
+ "version": "11.14.0",
4
4
  "description": "zwave-js: configuration files",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -56,7 +56,7 @@
56
56
  "test:dirty": "node -r ../../maintenance/esbuild-register.js ../maintenance/src/resolveDirtyTests.ts --run"
57
57
  },
58
58
  "dependencies": {
59
- "@zwave-js/core": "11.13.1",
59
+ "@zwave-js/core": "11.14.0",
60
60
  "@zwave-js/shared": "11.13.1",
61
61
  "alcalzone-shared": "^4.0.8",
62
62
  "ansi-colors": "^4.1.3",
@@ -78,7 +78,7 @@
78
78
  "@types/sinon": "^10.0.14",
79
79
  "@types/xml2js": "^0.4.11",
80
80
  "@types/yargs": "^17.0.24",
81
- "@zwave-js/maintenance": "11.13.1",
81
+ "@zwave-js/maintenance": "11.14.0",
82
82
  "ava": "^4.3.3",
83
83
  "comment-json": "^4.2.3",
84
84
  "del-cli": "^5.0.0",