@zwave-js/config 15.18.0 → 15.20.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.
- package/build/cjs/ConfigManager.d.ts +2 -1
- package/build/cjs/ConfigManager.js +5 -3
- package/build/cjs/ConfigManager.js.map +2 -2
- package/build/cjs/_version.d.ts +1 -1
- package/build/cjs/_version.js +1 -1
- package/build/cjs/_version.js.map +1 -1
- package/build/cjs/devices/DeviceConfig.d.ts +3 -2
- package/build/cjs/devices/DeviceConfig.js +16 -2
- package/build/cjs/devices/DeviceConfig.js.map +2 -2
- package/build/cjs/devices/ParamInformation.d.ts +4 -1
- package/build/cjs/devices/ParamInformation.js +94 -3
- package/build/cjs/devices/ParamInformation.js.map +2 -2
- package/build/cjs/devices/shared.d.ts +1 -0
- package/build/esm/ConfigManager.d.ts +2 -1
- package/build/esm/ConfigManager.d.ts.map +1 -1
- package/build/esm/ConfigManager.js +4 -2
- package/build/esm/ConfigManager.js.map +1 -1
- package/build/esm/_version.d.ts +1 -1
- package/build/esm/_version.js +1 -1
- package/build/esm/devices/DeviceConfig.d.ts +3 -2
- package/build/esm/devices/DeviceConfig.d.ts.map +1 -1
- package/build/esm/devices/DeviceConfig.js +23 -2
- package/build/esm/devices/DeviceConfig.js.map +1 -1
- package/build/esm/devices/ParamInformation.d.ts +4 -1
- package/build/esm/devices/ParamInformation.d.ts.map +1 -1
- package/build/esm/devices/ParamInformation.js +109 -5
- package/build/esm/devices/ParamInformation.js.map +1 -1
- package/build/esm/devices/shared.d.ts +1 -0
- package/build/esm/devices/shared.d.ts.map +1 -1
- package/config/README.md +1 -1
- package/config/devices/0x0039/39357_39464_zw3011.json +1 -1
- package/config/devices/0x0060/an145.json +10 -1
- package/config/devices/0x008b/trane_xr524.json +1 -1
- package/config/devices/0x008b/xl624.json +1 -1
- package/config/devices/0x0090/hc620.json +4 -0
- package/config/devices/0x013c/pad15.json +11 -1
- package/config/devices/0x013c/pan30.json +12 -1
- package/config/devices/0x013c/pan34.json +12 -1
- package/config/devices/0x013c/pse04.json +12 -1
- package/config/devices/0x015f/mh-dt311_411.json +16 -4
- package/config/devices/0x016a/ft116.json +6 -4
- package/config/devices/0x0190/adc-s2000-t-ra.json +3 -2
- package/config/devices/0x019a/11_02_022.json +1 -1
- package/config/devices/0x0214/dp-32_ix-30_ix-32_6.0_255.255.json +6 -3
- package/config/devices/0x0214/es-61_0.0_5.255.json +6 -3
- package/config/devices/0x027a/templates/zooz_template.json +82 -0
- package/config/devices/0x027a/zen16.json +27 -3
- package/config/devices/0x027a/zen35.json +0 -1
- package/config/devices/0x027a/zen58.json +96 -0
- package/config/devices/0x031e/vzw31-sn.json +8 -1
- package/config/devices/0x031e/vzw32-sn.json +13 -13
- package/config/devices/0x0344/he-hls01.json +19 -5
- package/config/devices/0x0346/contact_sensor_gen2.json +11 -3
- package/config/devices/0x0371/zwa050.json +101 -0
- package/config/devices/0x037b/gkw-2000.json +11 -1
- package/config/devices/0x0438/4512757.json +4 -3
- package/config/devices/0x0438/dimmer2-400w.json +16 -4
- package/config/devices/0x0460/qlsh-001P10.json +9 -0
- package/config/eslint.config.mjs +3 -0
- package/package.json +6 -6
- package/config/.dprint.jsonc +0 -13
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
{
|
|
2
|
+
"manufacturer": "Zooz",
|
|
3
|
+
"manufacturerId": "0x027a",
|
|
4
|
+
"label": "ZEN58",
|
|
5
|
+
"description": "Low Voltage XS Relay",
|
|
6
|
+
"devices": [
|
|
7
|
+
{
|
|
8
|
+
"productType": "0x0004",
|
|
9
|
+
"productId": "0x0322"
|
|
10
|
+
}
|
|
11
|
+
],
|
|
12
|
+
"firmwareVersion": {
|
|
13
|
+
"min": "0.0",
|
|
14
|
+
"max": "255.255"
|
|
15
|
+
},
|
|
16
|
+
"paramInformation": [
|
|
17
|
+
{
|
|
18
|
+
"#": "1",
|
|
19
|
+
"label": "LED Indicator",
|
|
20
|
+
"valueSize": 1,
|
|
21
|
+
"defaultValue": 1,
|
|
22
|
+
"allowManualEntry": false,
|
|
23
|
+
"options": [
|
|
24
|
+
{
|
|
25
|
+
"label": "Always off",
|
|
26
|
+
"value": 0
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"label": "On when load is on",
|
|
30
|
+
"value": 1
|
|
31
|
+
}
|
|
32
|
+
]
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"#": "2",
|
|
36
|
+
"$import": "~/templates/master_template.json#state_after_power_failure_off_on_prev"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"#": "3",
|
|
40
|
+
"$import": "templates/zooz_template.json#association_reports_binary"
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"#": "4",
|
|
44
|
+
"$import": "templates/zooz_template.json#enable_scene_control",
|
|
45
|
+
"defaultValue": 1
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"#": "5",
|
|
49
|
+
"$import": "templates/zooz_template.json#external_switch_type_0-12",
|
|
50
|
+
"description": "Some of these values have special behavior. Check the official device manual for specifics.",
|
|
51
|
+
"defaultValue": 0
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"#": "6",
|
|
55
|
+
"$import": "templates/zooz_template.json#local_programming_inverted"
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"#": "7",
|
|
59
|
+
"$import": "templates/zooz_template.json#auto_off_timer_5x",
|
|
60
|
+
"maxValue": 2678400
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"#": "8",
|
|
64
|
+
"$import": "templates/zooz_template.json#auto_on_timer_5x",
|
|
65
|
+
"maxValue": 2678400
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"#": "9",
|
|
69
|
+
"$import": "~/templates/master_template.json#smart_switch_mode_0-2"
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
"#": "10",
|
|
73
|
+
"$import": "templates/zooz_template.json#relay_type_behavior"
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"#": "11",
|
|
77
|
+
"$import": "templates/zooz_template.json#input_trigger"
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"#": "12",
|
|
81
|
+
"$import": "templates/zooz_template.json#zen5x_external_switch_multiple_click"
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"#": "13",
|
|
85
|
+
"$import": "~/templates/master_template.json#base_enable_disable",
|
|
86
|
+
"label": "Reversed Reports for Input",
|
|
87
|
+
"description": "Reverse the reported values for your selected input type (value 1). Expert users only. See manual for details."
|
|
88
|
+
}
|
|
89
|
+
],
|
|
90
|
+
"metadata": {
|
|
91
|
+
"inclusion": "Click the Z-Wave button 3 times quickly. The LED indicator will blink green while processing. It will turn solid green for 2 seconds if inclusion is successful or turn solid red for 2 seconds if the pairing attempt fails.",
|
|
92
|
+
"exclusion": "Click the Z-Wave button 3 times quickly. The LED indicator will blink green while processing. It will turn solid green for 2 seconds when exclusion is successful or turn solid red for 2 seconds if exclusion fails.",
|
|
93
|
+
"reset": "Click the Z-Wave button once and immediately after, press and hold the button for 15 seconds. The LED indicator will flash during the process and turn red for 3 seconds to confirm successful reset.",
|
|
94
|
+
"manual": "https://cdn.shopify.com/s/files/1/0218/7704/files/zooz-z-wave-long-range-lv-xs-relay-zen58-800lr-manual.pdf"
|
|
95
|
+
}
|
|
96
|
+
}
|
|
@@ -755,6 +755,13 @@
|
|
|
755
755
|
}
|
|
756
756
|
]
|
|
757
757
|
},
|
|
758
|
+
{
|
|
759
|
+
"#": "121",
|
|
760
|
+
"$if": "firmwareVersion >= 1.4",
|
|
761
|
+
"$import": "~/templates/master_template.json#base_enable_disable",
|
|
762
|
+
"label": "Advanced Timer Mode",
|
|
763
|
+
"description": "Control timer with up taps, 1x = on, 2x = 5 min, 3x = 10 min, 4x = 15 min, 5x = 30 min. Overrides P12 and P53."
|
|
764
|
+
},
|
|
758
765
|
{
|
|
759
766
|
"#": "123",
|
|
760
767
|
"$import": "~/templates/master_template.json#base_enable_disable",
|
|
@@ -904,6 +911,6 @@
|
|
|
904
911
|
"inclusion": "Triple-click config button",
|
|
905
912
|
"exclusion": "Triple-click config button",
|
|
906
913
|
"reset": "Simultaneously hold the config button and the up button until the LED bar turns red. Release the buttons and the switch will reset to factory defaults.",
|
|
907
|
-
"manual": "https://
|
|
914
|
+
"manual": "https://help.inovelli.com/en/articles/8194492-red-series-dimmer-switch-manual"
|
|
908
915
|
}
|
|
909
916
|
}
|
|
@@ -712,43 +712,43 @@
|
|
|
712
712
|
},
|
|
713
713
|
{
|
|
714
714
|
"#": "109[0xff]",
|
|
715
|
-
"label": "
|
|
716
|
-
"description": "
|
|
715
|
+
"label": "After Hours Time Range Start Hour",
|
|
716
|
+
"description": "The UTC hour where After Hours mode should start",
|
|
717
717
|
"valueSize": 4,
|
|
718
718
|
"minValue": -1,
|
|
719
719
|
"maxValue": 23,
|
|
720
720
|
"defaultValue": -1,
|
|
721
|
-
"
|
|
721
|
+
"hidden": true
|
|
722
722
|
},
|
|
723
723
|
{
|
|
724
724
|
"#": "109[0xff00]",
|
|
725
|
-
"label": "
|
|
726
|
-
"description": "
|
|
725
|
+
"label": "After Hours Time Range Start Minute",
|
|
726
|
+
"description": "The minute where After Hours mode should start",
|
|
727
727
|
"valueSize": 4,
|
|
728
728
|
"minValue": -1,
|
|
729
729
|
"maxValue": 59,
|
|
730
730
|
"defaultValue": -1,
|
|
731
|
-
"
|
|
731
|
+
"hidden": true
|
|
732
732
|
},
|
|
733
733
|
{
|
|
734
734
|
"#": "109[0xff0000]",
|
|
735
|
-
"label": "
|
|
736
|
-
"description": "
|
|
735
|
+
"label": "After Hours Time Range End Hour",
|
|
736
|
+
"description": "The UTC hour where After Hours mode should end",
|
|
737
737
|
"valueSize": 4,
|
|
738
738
|
"minValue": -1,
|
|
739
739
|
"maxValue": 23,
|
|
740
740
|
"defaultValue": -1,
|
|
741
|
-
"
|
|
741
|
+
"hidden": true
|
|
742
742
|
},
|
|
743
743
|
{
|
|
744
744
|
"#": "109[0xff000000]",
|
|
745
|
-
"label": "
|
|
746
|
-
"description": "
|
|
745
|
+
"label": "After Hours Time Range End Minute",
|
|
746
|
+
"description": "The minute where After Hours mode should end",
|
|
747
747
|
"valueSize": 4,
|
|
748
748
|
"minValue": -1,
|
|
749
749
|
"maxValue": 59,
|
|
750
750
|
"defaultValue": -1,
|
|
751
|
-
"
|
|
751
|
+
"hidden": true
|
|
752
752
|
},
|
|
753
753
|
{
|
|
754
754
|
"#": "110",
|
|
@@ -1105,6 +1105,6 @@
|
|
|
1105
1105
|
"inclusion": "Triple-click config button",
|
|
1106
1106
|
"exclusion": "Triple-click config button",
|
|
1107
1107
|
"reset": "Simultaneously hold the config button and the up button until the LED bar turns red. Release the buttons and the switch will reset to factory defaults.",
|
|
1108
|
-
"manual": "https://
|
|
1108
|
+
"manual": "https://help.inovelli.com/en/articles/8808909-red-series-mmwave-presence-dimmer-switch-manual"
|
|
1109
1109
|
}
|
|
1110
1110
|
}
|
|
@@ -87,18 +87,32 @@
|
|
|
87
87
|
"label": "High Load Timeout Protection: Power Threshold",
|
|
88
88
|
"valueSize": 2,
|
|
89
89
|
"unit": "W",
|
|
90
|
-
"
|
|
91
|
-
|
|
92
|
-
|
|
90
|
+
"allowed": [
|
|
91
|
+
{ "value": 0 },
|
|
92
|
+
{ "range": [100, 3500] }
|
|
93
|
+
],
|
|
94
|
+
"defaultValue": 0,
|
|
95
|
+
"options": [
|
|
96
|
+
{
|
|
97
|
+
"label": "Disable",
|
|
98
|
+
"value": 0
|
|
99
|
+
}
|
|
100
|
+
]
|
|
93
101
|
},
|
|
94
102
|
{
|
|
95
103
|
"#": "27",
|
|
96
104
|
"label": "High Load Timeout Protection: Time Threshold",
|
|
97
105
|
"valueSize": 2,
|
|
98
106
|
"unit": "minutes",
|
|
99
|
-
"minValue":
|
|
107
|
+
"minValue": 0,
|
|
100
108
|
"maxValue": 1440,
|
|
101
|
-
"defaultValue": 0
|
|
109
|
+
"defaultValue": 0,
|
|
110
|
+
"options": [
|
|
111
|
+
{
|
|
112
|
+
"label": "Disable",
|
|
113
|
+
"value": 0
|
|
114
|
+
}
|
|
115
|
+
]
|
|
102
116
|
},
|
|
103
117
|
{
|
|
104
118
|
"#": "41",
|
|
@@ -85,10 +85,18 @@
|
|
|
85
85
|
"description": "Device will wakeup once after the configured delay",
|
|
86
86
|
"valueSize": 2,
|
|
87
87
|
"unit": "seconds",
|
|
88
|
-
"
|
|
89
|
-
|
|
88
|
+
"allowed": [
|
|
89
|
+
{ "value": 0 },
|
|
90
|
+
{ "range": [5, 65535] }
|
|
91
|
+
],
|
|
90
92
|
"defaultValue": 0,
|
|
91
|
-
"unsigned": true
|
|
93
|
+
"unsigned": true,
|
|
94
|
+
"options": [
|
|
95
|
+
{
|
|
96
|
+
"label": "Idle",
|
|
97
|
+
"value": 0
|
|
98
|
+
}
|
|
99
|
+
]
|
|
92
100
|
},
|
|
93
101
|
{
|
|
94
102
|
"#": "6",
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
{
|
|
2
|
+
"manufacturer": "Aeotec Ltd.",
|
|
3
|
+
"manufacturerId": "0x0371",
|
|
4
|
+
"label": "ZWA050",
|
|
5
|
+
"description": "SmokeShield for Ei Smoke Detectors",
|
|
6
|
+
"devices": [
|
|
7
|
+
{
|
|
8
|
+
"productType": "0x0002",
|
|
9
|
+
"productId": "0x0032"
|
|
10
|
+
}
|
|
11
|
+
],
|
|
12
|
+
"firmwareVersion": {
|
|
13
|
+
"min": "0.0",
|
|
14
|
+
"max": "255.255"
|
|
15
|
+
},
|
|
16
|
+
"associations": {
|
|
17
|
+
"1": {
|
|
18
|
+
"label": "Lifeline",
|
|
19
|
+
"maxNodes": 10,
|
|
20
|
+
"isLifeline": true
|
|
21
|
+
},
|
|
22
|
+
"2": {
|
|
23
|
+
"label": "Smoke Action",
|
|
24
|
+
"maxNodes": 10
|
|
25
|
+
},
|
|
26
|
+
"3": {
|
|
27
|
+
"label": "Smoke Alarm",
|
|
28
|
+
"maxNodes": 10
|
|
29
|
+
}
|
|
30
|
+
},
|
|
31
|
+
"paramInformation": [
|
|
32
|
+
{
|
|
33
|
+
"#": "1",
|
|
34
|
+
"label": "Association Group 2: Command Type",
|
|
35
|
+
"valueSize": 1,
|
|
36
|
+
"defaultValue": 0,
|
|
37
|
+
"allowManualEntry": false,
|
|
38
|
+
"options": [
|
|
39
|
+
{
|
|
40
|
+
"label": "On and off",
|
|
41
|
+
"value": 0
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"label": "On",
|
|
45
|
+
"value": 1
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"label": "Off",
|
|
49
|
+
"value": 2
|
|
50
|
+
}
|
|
51
|
+
]
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"#": "2",
|
|
55
|
+
"$import": "~/0x0086/templates/aeotec_template.json#association_group_2_basic_set_on"
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"#": "3",
|
|
59
|
+
"$import": "~/0x0086/templates/aeotec_template.json#association_group_2_basic_set_off",
|
|
60
|
+
"defaultValue": 0
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"#": "4",
|
|
64
|
+
"$import": "~/0x0086/templates/aeotec_template.json#low_battery_threshold",
|
|
65
|
+
"defaultValue": 20
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"#": "80",
|
|
69
|
+
"$import": "~/0x0086/templates/aeotec_template.json#enable_binary_report",
|
|
70
|
+
"description": "Enable Binary Sensor report for group 1 and group 3"
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"#": "111",
|
|
74
|
+
"label": "Automatic Reporting Interval: Battery and Ei Header Status",
|
|
75
|
+
"description": "Set how often to check the battery level and Ei header status in seconds",
|
|
76
|
+
"valueSize": 4,
|
|
77
|
+
"unit": "seconds",
|
|
78
|
+
"minValue": 0,
|
|
79
|
+
"maxValue": 864000,
|
|
80
|
+
"defaultValue": 86400,
|
|
81
|
+
"options": [
|
|
82
|
+
{
|
|
83
|
+
"label": "Disable",
|
|
84
|
+
"value": 0
|
|
85
|
+
}
|
|
86
|
+
]
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
"#": "252",
|
|
90
|
+
"$import": "~/0x0086/templates/aeotec_template.json#lock_configuration"
|
|
91
|
+
}
|
|
92
|
+
],
|
|
93
|
+
|
|
94
|
+
"metadata": {
|
|
95
|
+
"wakeup": "Press and hold the Action Button for 2 seconds and then release the button.",
|
|
96
|
+
"inclusion": "Quickly press the Action Button on the product twice.",
|
|
97
|
+
"exclusion": "Quickly press the Action Button on the product twice.",
|
|
98
|
+
"reset": "Press and hold the Action Button for 12 seconds and then release the button.",
|
|
99
|
+
"manual": "https://products.z-wavealliance.org/wp-content/uploads/products/80606/SPEC-ZWA050SmokeShield20250725-2.pdf"
|
|
100
|
+
}
|
|
101
|
+
}
|
|
@@ -7,7 +7,17 @@
|
|
|
7
7
|
{
|
|
8
8
|
"productType": "0x0002",
|
|
9
9
|
"productId": "0x0001",
|
|
10
|
-
"zwaveAllianceId": [
|
|
10
|
+
"zwaveAllianceId": [
|
|
11
|
+
2905,
|
|
12
|
+
2993,
|
|
13
|
+
3029,
|
|
14
|
+
3030,
|
|
15
|
+
3060,
|
|
16
|
+
3061,
|
|
17
|
+
3062,
|
|
18
|
+
3063,
|
|
19
|
+
3064
|
|
20
|
+
]
|
|
11
21
|
}
|
|
12
22
|
],
|
|
13
23
|
"firmwareVersion": {
|
|
@@ -325,9 +325,10 @@
|
|
|
325
325
|
"description": "Allowable range: 5-100 (increment by 5)",
|
|
326
326
|
"valueSize": 4,
|
|
327
327
|
"unit": "°C",
|
|
328
|
-
"
|
|
329
|
-
|
|
330
|
-
|
|
328
|
+
"allowed": [
|
|
329
|
+
{ "range": [5, 100], "step": 5 }
|
|
330
|
+
],
|
|
331
|
+
"defaultValue": 10
|
|
331
332
|
},
|
|
332
333
|
{
|
|
333
334
|
"#": "135",
|
|
@@ -191,8 +191,14 @@
|
|
|
191
191
|
"valueSize": 2,
|
|
192
192
|
"unit": "W",
|
|
193
193
|
"minValue": 0,
|
|
194
|
-
"maxValue":
|
|
195
|
-
"defaultValue": 10
|
|
194
|
+
"maxValue": 32767,
|
|
195
|
+
"defaultValue": 10,
|
|
196
|
+
"options": [
|
|
197
|
+
{
|
|
198
|
+
"label": "Disable",
|
|
199
|
+
"value": 0
|
|
200
|
+
}
|
|
201
|
+
]
|
|
196
202
|
},
|
|
197
203
|
{
|
|
198
204
|
"#": "15",
|
|
@@ -201,8 +207,14 @@
|
|
|
201
207
|
"valueSize": 1,
|
|
202
208
|
"unit": "%",
|
|
203
209
|
"minValue": 0,
|
|
204
|
-
"maxValue":
|
|
205
|
-
"defaultValue": 20
|
|
210
|
+
"maxValue": 100,
|
|
211
|
+
"defaultValue": 20,
|
|
212
|
+
"options": [
|
|
213
|
+
{
|
|
214
|
+
"label": "Disable",
|
|
215
|
+
"value": 0
|
|
216
|
+
}
|
|
217
|
+
]
|
|
206
218
|
},
|
|
207
219
|
{
|
|
208
220
|
"#": "21",
|
package/config/eslint.config.mjs
CHANGED
|
@@ -39,6 +39,8 @@ export default [
|
|
|
39
39
|
rules: {
|
|
40
40
|
"@zwave-js/auto-unsigned": "error",
|
|
41
41
|
"@zwave-js/consistent-config-string-case": "error",
|
|
42
|
+
"@zwave-js/no-disallowed-default-value": "warn",
|
|
43
|
+
"@zwave-js/no-disallowed-option-values": "error",
|
|
42
44
|
"@zwave-js/consistent-device-config-property-order": "error",
|
|
43
45
|
"@zwave-js/consistent-param-units": "error",
|
|
44
46
|
"@zwave-js/no-misspelled-names": "error",
|
|
@@ -47,6 +49,7 @@ export default [
|
|
|
47
49
|
"@zwave-js/no-useless-description": "error",
|
|
48
50
|
"@zwave-js/no-value-in-option-label": "error",
|
|
49
51
|
"@zwave-js/prefer-defaultvalue": "error",
|
|
52
|
+
"@zwave-js/valid-allowed-values": "error",
|
|
50
53
|
},
|
|
51
54
|
},
|
|
52
55
|
];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zwave-js/config",
|
|
3
|
-
"version": "15.
|
|
3
|
+
"version": "15.20.0",
|
|
4
4
|
"description": "zwave-js: configuration files",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"publishConfig": {
|
|
@@ -79,11 +79,11 @@
|
|
|
79
79
|
"test:dirty": "tsx ../maintenance/src/resolveDirtyTests.ts --run"
|
|
80
80
|
},
|
|
81
81
|
"dependencies": {
|
|
82
|
-
"@zwave-js/core": "15.
|
|
83
|
-
"@zwave-js/shared": "15.
|
|
82
|
+
"@zwave-js/core": "15.20.0",
|
|
83
|
+
"@zwave-js/shared": "15.20.0",
|
|
84
84
|
"alcalzone-shared": "^5.0.0",
|
|
85
85
|
"ansi-colors": "^4.1.3",
|
|
86
|
-
"eslint": "^9.
|
|
86
|
+
"eslint": "^9.39.2",
|
|
87
87
|
"json-logic-js": "^2.0.5",
|
|
88
88
|
"json5": "^2.2.3",
|
|
89
89
|
"pathe": "^2.0.3",
|
|
@@ -100,9 +100,9 @@
|
|
|
100
100
|
"@types/sinon": "^17.0.4",
|
|
101
101
|
"@types/xml2js": "^0.4.14",
|
|
102
102
|
"@types/yargs": "^17.0.34",
|
|
103
|
-
"@zwave-js/maintenance": "15.
|
|
103
|
+
"@zwave-js/maintenance": "15.20.0",
|
|
104
104
|
"comment-json": "^4.3.0",
|
|
105
|
-
"del-cli": "^
|
|
105
|
+
"del-cli": "^7.0.0",
|
|
106
106
|
"es-main": "^1.4.0",
|
|
107
107
|
"js-levenshtein": "^1.1.6",
|
|
108
108
|
"ky": "^1.8.1",
|
package/config/.dprint.jsonc
DELETED
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
// TODO: Inherit from the root config once supported by dprint
|
|
3
|
-
"lineWidth": 120,
|
|
4
|
-
"useTabs": true,
|
|
5
|
-
"indentWidth": 4,
|
|
6
|
-
"newLineKind": "lf",
|
|
7
|
-
|
|
8
|
-
"json": {},
|
|
9
|
-
|
|
10
|
-
"includes": ["*.json", "devices/**/*.json"],
|
|
11
|
-
|
|
12
|
-
"plugins": ["https://plugins.dprint.dev/json-0.19.3.wasm"]
|
|
13
|
-
}
|