zigbee-herdsman-converters 14.0.405 → 14.0.406
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/converters/fromZigbee.js +1 -1
- package/converters/toZigbee.js +3 -9
- package/devices/acova.js +60 -29
- package/devices/kwikset.js +1 -1
- package/devices/tuya.js +17 -2
- package/devices/woox.js +19 -0
- package/devices/xiaomi.js +21 -18
- package/npm-shrinkwrap.json +109 -109
- package/package.json +2 -2
package/converters/fromZigbee.js
CHANGED
|
@@ -8238,7 +8238,7 @@ const converters = {
|
|
|
8238
8238
|
cluster: 'genOnOff',
|
|
8239
8239
|
type: 'raw',
|
|
8240
8240
|
convert: (model, msg, publish, options, meta) => {
|
|
8241
|
-
if (hasAlreadyProcessedMessage(msg, msg.data[
|
|
8241
|
+
if (hasAlreadyProcessedMessage(msg, msg.data[1])) return;
|
|
8242
8242
|
let action;
|
|
8243
8243
|
if (msg.data[2] == 253) {
|
|
8244
8244
|
action = {0: 'single', 1: 'double', 2: 'hold'}[msg.data[3]];
|
package/converters/toZigbee.js
CHANGED
|
@@ -6759,7 +6759,7 @@ const converters = {
|
|
|
6759
6759
|
await tuya.sendDataPoints(entity, [
|
|
6760
6760
|
tuya.dpValueFromEnum(tuya.dataPoints.silvercrestChangeMode, tuya.silvercrestModes.white),
|
|
6761
6761
|
tuya.dpValueFromIntValue(tuya.dataPoints.dimmerLevel, newValue),
|
|
6762
|
-
], 'dataRequest'
|
|
6762
|
+
], 'dataRequest');
|
|
6763
6763
|
|
|
6764
6764
|
return {state: (key == 'white_brightness') ? {white_brightness: value} : {brightness: value}};
|
|
6765
6765
|
} else if (key == 'color_temp') {
|
|
@@ -6786,7 +6786,7 @@ const converters = {
|
|
|
6786
6786
|
await tuya.sendDataPoints(entity, [
|
|
6787
6787
|
tuya.dpValueFromEnum(tuya.dataPoints.silvercrestChangeMode, tuya.silvercrestModes.white),
|
|
6788
6788
|
tuya.dpValueFromIntValue(tuya.dataPoints.silvercrestSetColorTemp, data),
|
|
6789
|
-
], 'dataRequest'
|
|
6789
|
+
], 'dataRequest');
|
|
6790
6790
|
|
|
6791
6791
|
return {state: {color_temp: value}};
|
|
6792
6792
|
} else if (key == 'color' || (separateWhite && (key == 'brightness'))) {
|
|
@@ -6865,13 +6865,7 @@ const converters = {
|
|
|
6865
6865
|
tuya.dpValueFromStringBuffer(tuya.dataPoints.silvercrestSetColor, data),
|
|
6866
6866
|
];
|
|
6867
6867
|
|
|
6868
|
-
|
|
6869
|
-
// restore white state
|
|
6870
|
-
const newValue = utils.mapNumberRange(meta.state.white_brightness, 0, 255, 0, 1000);
|
|
6871
|
-
commands.push(tuya.dpValueFromEnum(tuya.dataPoints.silvercrestChangeMode, tuya.silvercrestModes.white));
|
|
6872
|
-
commands.push(tuya.dpValueFromIntValue(tuya.dataPoints.dimmerLevel, newValue));
|
|
6873
|
-
}
|
|
6874
|
-
await tuya.sendDataPoints(entity, commands, 'dataRequest', 1);
|
|
6868
|
+
await tuya.sendDataPoints(entity, commands, 'dataRequest');
|
|
6875
6869
|
|
|
6876
6870
|
return {state: newState};
|
|
6877
6871
|
}
|
package/devices/acova.js
CHANGED
|
@@ -3,33 +3,64 @@ const fz = require('../converters/fromZigbee');
|
|
|
3
3
|
const tz = require('../converters/toZigbee');
|
|
4
4
|
const reporting = require('../lib/reporting');
|
|
5
5
|
|
|
6
|
-
module.exports = [
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
exposes
|
|
22
|
-
.
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
6
|
+
module.exports = [
|
|
7
|
+
{
|
|
8
|
+
zigbeeModel: ['PERCALE2 D1.00P1.01Z1.00'],
|
|
9
|
+
model: 'PERCALE2',
|
|
10
|
+
vendor: 'Acova',
|
|
11
|
+
description: 'Percale 2 heater',
|
|
12
|
+
fromZigbee: [fz.thermostat, fz.hvac_user_interface],
|
|
13
|
+
toZigbee: [
|
|
14
|
+
tz.thermostat_local_temperature,
|
|
15
|
+
tz.thermostat_system_mode,
|
|
16
|
+
tz.thermostat_occupied_heating_setpoint,
|
|
17
|
+
tz.thermostat_unoccupied_heating_setpoint,
|
|
18
|
+
tz.thermostat_occupied_cooling_setpoint,
|
|
19
|
+
tz.thermostat_running_state,
|
|
20
|
+
],
|
|
21
|
+
exposes: [
|
|
22
|
+
exposes.climate()
|
|
23
|
+
.withSetpoint('occupied_heating_setpoint', 7, 28, 0.5)
|
|
24
|
+
.withLocalTemperature()
|
|
25
|
+
.withSystemMode(['off', 'heat', 'auto'])
|
|
26
|
+
.withRunningState(['idle', 'heat']),
|
|
27
|
+
],
|
|
28
|
+
configure: async (device, coordinatorEndpoint, logger) => {
|
|
29
|
+
const endpoint = device.getEndpoint(1);
|
|
30
|
+
await reporting.bind(endpoint, coordinatorEndpoint, ['genPowerCfg', 'hvacThermostat']);
|
|
31
|
+
await reporting.thermostatTemperature(endpoint);
|
|
32
|
+
await reporting.thermostatRunningState(endpoint);
|
|
33
|
+
await reporting.thermostatOccupiedHeatingSetpoint(endpoint);
|
|
34
|
+
await reporting.thermostatUnoccupiedHeatingSetpoint(endpoint);
|
|
35
|
+
},
|
|
34
36
|
},
|
|
35
|
-
|
|
37
|
+
{
|
|
38
|
+
zigbeeModel: ['ALCANTARA2 D1.00P1.02Z1.00\u0000\u0000\u0000\u0000\u0000\u0000'],
|
|
39
|
+
model: 'ALCANTARA2',
|
|
40
|
+
vendor: 'Acova',
|
|
41
|
+
description: 'Alcantara 2 heater',
|
|
42
|
+
fromZigbee: [fz.thermostat, fz.hvac_user_interface],
|
|
43
|
+
toZigbee: [
|
|
44
|
+
tz.thermostat_local_temperature,
|
|
45
|
+
tz.thermostat_system_mode,
|
|
46
|
+
tz.thermostat_occupied_heating_setpoint,
|
|
47
|
+
tz.thermostat_unoccupied_heating_setpoint,
|
|
48
|
+
tz.thermostat_running_state,
|
|
49
|
+
],
|
|
50
|
+
exposes: [
|
|
51
|
+
exposes.climate()
|
|
52
|
+
.withSetpoint('occupied_heating_setpoint', 7, 28, 0.5)
|
|
53
|
+
.withLocalTemperature()
|
|
54
|
+
.withSystemMode(['off', 'heat', 'auto'])
|
|
55
|
+
.withRunningState(['idle', 'heat']),
|
|
56
|
+
],
|
|
57
|
+
configure: async (device, coordinatorEndpoint, logger) => {
|
|
58
|
+
const endpoint = device.getEndpoint(1);
|
|
59
|
+
await reporting.bind(endpoint, coordinatorEndpoint, ['genPowerCfg', 'hvacThermostat']);
|
|
60
|
+
await reporting.thermostatTemperature(endpoint);
|
|
61
|
+
await reporting.thermostatRunningState(endpoint);
|
|
62
|
+
await reporting.thermostatOccupiedHeatingSetpoint(endpoint);
|
|
63
|
+
await reporting.thermostatUnoccupiedHeatingSetpoint(endpoint);
|
|
64
|
+
},
|
|
65
|
+
},
|
|
66
|
+
];
|
package/devices/kwikset.js
CHANGED
|
@@ -36,7 +36,7 @@ module.exports = [
|
|
|
36
36
|
exposes: [e.lock(), e.battery()],
|
|
37
37
|
},
|
|
38
38
|
{
|
|
39
|
-
zigbeeModel: ['SMARTCODE_DEADBOLT_10_W3'],
|
|
39
|
+
zigbeeModel: ['SMARTCODE_DEADBOLT_10_W3', 'SMARTCODE_DEADBOLT_10T_W3'],
|
|
40
40
|
model: '99140-031',
|
|
41
41
|
vendor: 'Kwikset',
|
|
42
42
|
description: 'SmartCode traditional electronic deadbolt',
|
package/devices/tuya.js
CHANGED
|
@@ -1121,6 +1121,7 @@ module.exports = [
|
|
|
1121
1121
|
});
|
|
1122
1122
|
await reporting.currentSummDelivered(endpoint);
|
|
1123
1123
|
},
|
|
1124
|
+
options: [exposes.options.measurement_poll_interval()],
|
|
1124
1125
|
// This device doesn't support reporting correctly.
|
|
1125
1126
|
// https://github.com/Koenkk/zigbee-herdsman-converters/pull/1270
|
|
1126
1127
|
exposes: [e.switch(), e.power(), e.current(), e.voltage().withAccess(ea.STATE),
|
|
@@ -1841,9 +1842,16 @@ module.exports = [
|
|
|
1841
1842
|
onEvent: tuya.onEventSetLocalTime,
|
|
1842
1843
|
configure: async (device, coordinatorEndpoint, logger) => {
|
|
1843
1844
|
const endpoint = device.getEndpoint(1);
|
|
1845
|
+
await endpoint.read('genBasic', [0x0004, 0x000, 0x0001, 0x0005, 0x0007, 0xfffe]);
|
|
1846
|
+
await endpoint.write('genOnOff', {'tuyaOperationMode': 1});
|
|
1847
|
+
await endpoint.read('genOnOff', ['tuyaOperationMode']);
|
|
1848
|
+
try {
|
|
1849
|
+
await endpoint.read(0xE001, [0xD011]);
|
|
1850
|
+
} catch (err) {/* do nothing */}
|
|
1851
|
+
await endpoint.read('genPowerCfg', ['batteryVoltage', 'batteryPercentageRemaining']);
|
|
1844
1852
|
await reporting.bind(endpoint, coordinatorEndpoint, ['genPowerCfg']);
|
|
1853
|
+
await reporting.bind(endpoint, coordinatorEndpoint, ['genOnOff']);
|
|
1845
1854
|
await reporting.batteryPercentageRemaining(endpoint);
|
|
1846
|
-
await endpoint.read('genOnOff', ['tuyaOperationMode']);
|
|
1847
1855
|
},
|
|
1848
1856
|
},
|
|
1849
1857
|
{
|
|
@@ -1944,9 +1952,16 @@ module.exports = [
|
|
|
1944
1952
|
],
|
|
1945
1953
|
configure: async (device, coordinatorEndpoint, logger) => {
|
|
1946
1954
|
const endpoint = device.getEndpoint(1);
|
|
1955
|
+
await endpoint.read('genBasic', [0x0004, 0x000, 0x0001, 0x0005, 0x0007, 0xfffe]);
|
|
1956
|
+
await endpoint.write('genOnOff', {'tuyaOperationMode': 1});
|
|
1957
|
+
await endpoint.read('genOnOff', ['tuyaOperationMode']);
|
|
1958
|
+
try {
|
|
1959
|
+
await endpoint.read(0xE001, [0xD011]);
|
|
1960
|
+
} catch (err) {/* do nothing */}
|
|
1961
|
+
await endpoint.read('genPowerCfg', ['batteryVoltage', 'batteryPercentageRemaining']);
|
|
1947
1962
|
await reporting.bind(endpoint, coordinatorEndpoint, ['genPowerCfg']);
|
|
1963
|
+
await reporting.bind(endpoint, coordinatorEndpoint, ['genOnOff']);
|
|
1948
1964
|
await reporting.batteryPercentageRemaining(endpoint);
|
|
1949
|
-
await endpoint.read('genOnOff', ['tuyaOperationMode']);
|
|
1950
1965
|
},
|
|
1951
1966
|
},
|
|
1952
1967
|
{
|
package/devices/woox.js
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
const exposes = require('../lib/exposes');
|
|
2
|
+
const reporting = require('zigbee-herdsman-converters/lib/reporting');
|
|
2
3
|
const fz = {...require('../converters/fromZigbee'), legacy: require('../lib/legacy').fromZigbee};
|
|
3
4
|
const tz = require('../converters/toZigbee');
|
|
4
5
|
const tuya = require('../lib/tuya');
|
|
@@ -25,6 +26,24 @@ module.exports = [
|
|
|
25
26
|
extend: extend.light_onoff_brightness_colortemp_color({disableColorTempStartup: true}),
|
|
26
27
|
meta: {applyRedFix: true},
|
|
27
28
|
},
|
|
29
|
+
{
|
|
30
|
+
fingerprint: [{modelID: 'TS0201', manufacturerName: '_TZ3000_rusu2vzb'}],
|
|
31
|
+
model: 'R7048',
|
|
32
|
+
vendor: 'Woox',
|
|
33
|
+
description: 'Smart humidity & temperature sensor',
|
|
34
|
+
fromZigbee: [fz.battery, fz.temperature, fz.humidity],
|
|
35
|
+
toZigbee: [],
|
|
36
|
+
exposes: [e.battery(), e.temperature(), e.humidity(), e.battery_voltage()],
|
|
37
|
+
configure: async (device, coordinatorEndpoint, logger) => {
|
|
38
|
+
const endpoint = device.getEndpoint(1);
|
|
39
|
+
const bindClusters = ['msTemperatureMeasurement', 'msRelativeHumidity', 'genPowerCfg'];
|
|
40
|
+
await reporting.bind(endpoint, coordinatorEndpoint, bindClusters);
|
|
41
|
+
await reporting.temperature(endpoint);
|
|
42
|
+
await reporting.humidity(endpoint);
|
|
43
|
+
await reporting.batteryVoltage(endpoint);
|
|
44
|
+
await reporting.batteryPercentageRemaining(endpoint);
|
|
45
|
+
},
|
|
46
|
+
},
|
|
28
47
|
{
|
|
29
48
|
fingerprint: [{modelID: 'TS0601', manufacturerName: '_TZE200_aycxwiau'}],
|
|
30
49
|
model: 'R7049',
|
package/devices/xiaomi.js
CHANGED
|
@@ -607,7 +607,7 @@ module.exports = [
|
|
|
607
607
|
description: 'Aqara D1 3 gang smart wall switch (no neutral wire)',
|
|
608
608
|
fromZigbee: [fz.on_off, fz.xiaomi_multistate_action, fz.aqara_opple],
|
|
609
609
|
toZigbee: [tz.on_off, tz.xiaomi_switch_operation_mode_opple, tz.xiaomi_switch_power_outage_memory, tz.xiaomi_led_disabled_night,
|
|
610
|
-
tz.aqara_switch_mode_switch],
|
|
610
|
+
tz.aqara_switch_mode_switch, tz.xiaomi_flip_indicator_light],
|
|
611
611
|
meta: {multiEndpoint: true},
|
|
612
612
|
endpoint: (device) => {
|
|
613
613
|
return {'left': 1, 'center': 2, 'right': 3};
|
|
@@ -626,7 +626,7 @@ module.exports = [
|
|
|
626
626
|
exposes.enum('mode_switch', ea.ALL, ['anti_flicker_mode', 'quick_mode'])
|
|
627
627
|
.withDescription('Anti flicker mode can be used to solve blinking issues of some lights.' +
|
|
628
628
|
'Quick mode makes the device respond faster.'),
|
|
629
|
-
e.power_outage_memory(), e.led_disabled_night(), e.temperature().withAccess(ea.STATE),
|
|
629
|
+
e.power_outage_memory(), e.led_disabled_night(), e.temperature().withAccess(ea.STATE), e.flip_indicator_light(),
|
|
630
630
|
e.action([
|
|
631
631
|
'left_single', 'left_double', 'center_single', 'center_double', 'right_single', 'right_double',
|
|
632
632
|
'single_left_center', 'double_left_center', 'single_left_right', 'double_left_right',
|
|
@@ -655,7 +655,7 @@ module.exports = [
|
|
|
655
655
|
.withDescription('Decoupled mode for right button')
|
|
656
656
|
.withEndpoint('right'),
|
|
657
657
|
e.power().withAccess(ea.STATE), e.power_outage_memory(), e.led_disabled_night(),
|
|
658
|
-
e.temperature().withAccess(ea.STATE),
|
|
658
|
+
e.temperature().withAccess(ea.STATE), e.flip_indicator_light(),
|
|
659
659
|
e.action([
|
|
660
660
|
'single_left', 'double_left', 'single_center', 'double_center', 'single_right', 'double_right',
|
|
661
661
|
'single_left_center', 'double_left_center', 'single_left_right', 'double_left_right',
|
|
@@ -663,7 +663,7 @@ module.exports = [
|
|
|
663
663
|
],
|
|
664
664
|
fromZigbee: [fz.on_off, fz.xiaomi_power, fz.aqara_opple, fz.xiaomi_multistate_action],
|
|
665
665
|
toZigbee: [tz.on_off, tz.xiaomi_switch_operation_mode_opple, tz.xiaomi_switch_power_outage_memory,
|
|
666
|
-
tz.xiaomi_led_disabled_night],
|
|
666
|
+
tz.xiaomi_led_disabled_night, tz.xiaomi_flip_indicator_light],
|
|
667
667
|
meta: {multiEndpoint: true},
|
|
668
668
|
endpoint: (device) => {
|
|
669
669
|
return {'left': 1, 'center': 2, 'right': 3};
|
|
@@ -733,11 +733,11 @@ module.exports = [
|
|
|
733
733
|
description: 'Aqara smart wall switch T1 (with neutral, single rocker)',
|
|
734
734
|
fromZigbee: [fz.on_off, fz.xiaomi_power, fz.xiaomi_multistate_action, fz.aqara_opple],
|
|
735
735
|
toZigbee: [tz.on_off, tz.xiaomi_switch_operation_mode_opple, tz.xiaomi_switch_power_outage_memory,
|
|
736
|
-
tz.xiaomi_led_disabled_night],
|
|
736
|
+
tz.xiaomi_led_disabled_night, tz.xiaomi_flip_indicator_light],
|
|
737
737
|
exposes: [
|
|
738
738
|
e.switch(), e.action(['single', 'double']), e.power().withAccess(ea.STATE), e.energy(),
|
|
739
739
|
e.voltage().withAccess(ea.STATE), e.temperature().withAccess(ea.STATE),
|
|
740
|
-
e.power_outage_memory(), e.led_disabled_night(),
|
|
740
|
+
e.power_outage_memory(), e.led_disabled_night(), e.flip_indicator_light(),
|
|
741
741
|
exposes.enum('operation_mode', ea.ALL, ['control_relay', 'decoupled'])
|
|
742
742
|
.withDescription('Decoupled mode for left button'),
|
|
743
743
|
],
|
|
@@ -751,14 +751,14 @@ module.exports = [
|
|
|
751
751
|
description: 'Aqara smart wall switch T1 (with neutral, double rocker)',
|
|
752
752
|
fromZigbee: [fz.on_off, fz.xiaomi_power, fz.xiaomi_multistate_action, fz.aqara_opple],
|
|
753
753
|
toZigbee: [tz.on_off, tz.xiaomi_switch_operation_mode_opple, tz.xiaomi_switch_power_outage_memory,
|
|
754
|
-
tz.xiaomi_led_disabled_night],
|
|
754
|
+
tz.xiaomi_led_disabled_night, tz.xiaomi_flip_indicator_light],
|
|
755
755
|
meta: {multiEndpoint: true},
|
|
756
756
|
endpoint: (device) => {
|
|
757
757
|
return {'left': 1, 'right': 2};
|
|
758
758
|
},
|
|
759
759
|
exposes: [
|
|
760
760
|
e.switch().withEndpoint('left'), e.switch().withEndpoint('right'),
|
|
761
|
-
e.power().withAccess(ea.STATE), e.energy(), e.voltage().withAccess(ea.STATE),
|
|
761
|
+
e.power().withAccess(ea.STATE), e.energy(), e.voltage().withAccess(ea.STATE), e.flip_indicator_light(),
|
|
762
762
|
e.power_outage_memory(), e.led_disabled_night(), e.temperature().withAccess(ea.STATE),
|
|
763
763
|
e.action([
|
|
764
764
|
'single_left', 'double_left', 'single_right', 'double_right', 'single_both', 'double_both']),
|
|
@@ -779,14 +779,14 @@ module.exports = [
|
|
|
779
779
|
description: 'Aqara smart wall switch T1 (with neutral, three rocker)',
|
|
780
780
|
fromZigbee: [fz.on_off, fz.xiaomi_power, fz.xiaomi_multistate_action, fz.aqara_opple],
|
|
781
781
|
toZigbee: [tz.on_off, tz.xiaomi_switch_operation_mode_opple, tz.xiaomi_switch_power_outage_memory,
|
|
782
|
-
tz.xiaomi_led_disabled_night],
|
|
782
|
+
tz.xiaomi_led_disabled_night, tz.xiaomi_flip_indicator_light],
|
|
783
783
|
meta: {multiEndpoint: true},
|
|
784
784
|
endpoint: (device) => {
|
|
785
785
|
return {'left': 1, 'center': 2, 'right': 3};
|
|
786
786
|
},
|
|
787
787
|
exposes: [
|
|
788
788
|
e.switch().withEndpoint('left'), e.switch().withEndpoint('center'), e.switch().withEndpoint('right'),
|
|
789
|
-
e.power().withAccess(ea.STATE), e.energy(), e.voltage().withAccess(ea.STATE),
|
|
789
|
+
e.power().withAccess(ea.STATE), e.energy(), e.voltage().withAccess(ea.STATE), e.flip_indicator_light(),
|
|
790
790
|
e.power_outage_memory(), e.led_disabled_night(), e.temperature().withAccess(ea.STATE),
|
|
791
791
|
e.action([
|
|
792
792
|
'single_left', 'double_left', 'single_center', 'double_center',
|
|
@@ -1626,8 +1626,9 @@ module.exports = [
|
|
|
1626
1626
|
description: 'Aqara E1 1 gang switch (without neutral)',
|
|
1627
1627
|
fromZigbee: [fz.on_off, fz.xiaomi_multistate_action, fz.aqara_opple],
|
|
1628
1628
|
toZigbee: [tz.on_off, tz.xiaomi_switch_operation_mode_opple, tz.xiaomi_switch_power_outage_memory,
|
|
1629
|
-
tz.aqara_switch_mode_switch],
|
|
1629
|
+
tz.aqara_switch_mode_switch, tz.xiaomi_flip_indicator_light],
|
|
1630
1630
|
exposes: [e.switch(), e.power_outage_memory(), e.action(['single', 'double']),
|
|
1631
|
+
e.temperature(), e.flip_indicator_light(),
|
|
1631
1632
|
exposes.enum('operation_mode', ea.ALL, ['control_relay', 'decoupled'])
|
|
1632
1633
|
.withDescription('Decoupled mode for button'),
|
|
1633
1634
|
exposes.enum('mode_switch', ea.ALL, ['anti_flicker_mode', 'quick_mode'])
|
|
@@ -1645,13 +1646,13 @@ module.exports = [
|
|
|
1645
1646
|
description: 'Aqara E1 2 gang switch (without neutral)',
|
|
1646
1647
|
fromZigbee: [fz.on_off, fz.xiaomi_multistate_action, fz.aqara_opple],
|
|
1647
1648
|
toZigbee: [tz.on_off, tz.xiaomi_switch_operation_mode_opple, tz.xiaomi_switch_power_outage_memory,
|
|
1648
|
-
tz.aqara_switch_mode_switch],
|
|
1649
|
+
tz.aqara_switch_mode_switch, tz.xiaomi_flip_indicator_light],
|
|
1649
1650
|
meta: {multiEndpoint: true},
|
|
1650
1651
|
endpoint: (device) => {
|
|
1651
1652
|
return {'left': 1, 'right': 2};
|
|
1652
1653
|
},
|
|
1653
1654
|
exposes: [
|
|
1654
|
-
e.switch().withEndpoint('left'), e.switch().withEndpoint('right'),
|
|
1655
|
+
e.switch().withEndpoint('left'), e.switch().withEndpoint('right'), e.temperature(),
|
|
1655
1656
|
exposes.enum('operation_mode', ea.ALL, ['control_relay', 'decoupled'])
|
|
1656
1657
|
.withDescription('Decoupled mode for left button')
|
|
1657
1658
|
.withEndpoint('left'),
|
|
@@ -1662,7 +1663,7 @@ module.exports = [
|
|
|
1662
1663
|
.withDescription('Anti flicker mode can be used to solve blinking issues of some lights.' +
|
|
1663
1664
|
'Quick mode makes the device respond faster.'),
|
|
1664
1665
|
e.action(['single_left', 'double_left', 'single_right', 'double_right', 'single_both', 'double_both']),
|
|
1665
|
-
e.power_outage_memory(),
|
|
1666
|
+
e.power_outage_memory(), e.flip_indicator_light(),
|
|
1666
1667
|
],
|
|
1667
1668
|
onEvent: preventReset,
|
|
1668
1669
|
configure: async (device, coordinatorEndpoint, logger) => {
|
|
@@ -1697,7 +1698,8 @@ module.exports = [
|
|
|
1697
1698
|
vendor: 'Xiaomi',
|
|
1698
1699
|
description: 'Aqara E1 2 gang switch (with neutral)',
|
|
1699
1700
|
fromZigbee: [fz.on_off, fz.xiaomi_multistate_action, fz.aqara_opple],
|
|
1700
|
-
toZigbee: [tz.on_off, tz.xiaomi_switch_operation_mode_opple, tz.xiaomi_switch_power_outage_memory
|
|
1701
|
+
toZigbee: [tz.on_off, tz.xiaomi_switch_operation_mode_opple, tz.xiaomi_switch_power_outage_memory,
|
|
1702
|
+
tz.xiaomi_flip_indicator_light],
|
|
1701
1703
|
meta: {multiEndpoint: true},
|
|
1702
1704
|
endpoint: (device) => {
|
|
1703
1705
|
return {'left': 1, 'right': 2};
|
|
@@ -1711,7 +1713,7 @@ module.exports = [
|
|
|
1711
1713
|
.withDescription('Decoupled mode for right button')
|
|
1712
1714
|
.withEndpoint('right'),
|
|
1713
1715
|
e.action(['single_left', 'double_left', 'single_right', 'double_right', 'single_both', 'double_both']),
|
|
1714
|
-
e.power_outage_memory(),
|
|
1716
|
+
e.power_outage_memory(), e.temperature(), e.flip_indicator_light(),
|
|
1715
1717
|
],
|
|
1716
1718
|
onEvent: preventReset,
|
|
1717
1719
|
configure: async (device, coordinatorEndpoint, logger) => {
|
|
@@ -1740,8 +1742,9 @@ module.exports = [
|
|
|
1740
1742
|
vendor: 'Xiaomi',
|
|
1741
1743
|
description: 'Aqara E1 1 gang switch (with neutral)',
|
|
1742
1744
|
fromZigbee: [fz.on_off, fz.xiaomi_multistate_action, fz.aqara_opple],
|
|
1743
|
-
toZigbee: [tz.on_off, tz.xiaomi_switch_operation_mode_opple, tz.xiaomi_switch_power_outage_memory
|
|
1744
|
-
|
|
1745
|
+
toZigbee: [tz.on_off, tz.xiaomi_switch_operation_mode_opple, tz.xiaomi_switch_power_outage_memory,
|
|
1746
|
+
tz.xiaomi_flip_indicator_light],
|
|
1747
|
+
exposes: [e.switch(), e.action(['single', 'double']), e.power_outage_memory(), e.temperature(), e.flip_indicator_light(),
|
|
1745
1748
|
exposes.enum('operation_mode', ea.ALL, ['control_relay', 'decoupled']).withDescription('Decoupled mode')],
|
|
1746
1749
|
onEvent: preventReset,
|
|
1747
1750
|
configure: async (device, coordinatorEndpoint, logger) => {
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "zigbee-herdsman-converters",
|
|
3
|
-
"version": "14.0.
|
|
3
|
+
"version": "14.0.406",
|
|
4
4
|
"lockfileVersion": 1,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"dependencies": {
|
|
@@ -860,9 +860,9 @@
|
|
|
860
860
|
"dev": true
|
|
861
861
|
},
|
|
862
862
|
"@types/node": {
|
|
863
|
-
"version": "17.0.
|
|
864
|
-
"resolved": "https://registry.npmjs.org/@types/node/-/node-17.0.
|
|
865
|
-
"integrity": "sha512-
|
|
863
|
+
"version": "17.0.14",
|
|
864
|
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-17.0.14.tgz",
|
|
865
|
+
"integrity": "sha512-SbjLmERksKOGzWzPNuW7fJM7fk3YXVTFiZWB/Hs99gwhk+/dnrQRPBQjPW9aO+fi1tAffi9PrwFvsmOKmDTyng==",
|
|
866
866
|
"dev": true
|
|
867
867
|
},
|
|
868
868
|
"@types/prettier": {
|
|
@@ -893,29 +893,29 @@
|
|
|
893
893
|
"dev": true
|
|
894
894
|
},
|
|
895
895
|
"@typescript-eslint/scope-manager": {
|
|
896
|
-
"version": "5.10.
|
|
897
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.10.
|
|
898
|
-
"integrity": "sha512-
|
|
896
|
+
"version": "5.10.2",
|
|
897
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.10.2.tgz",
|
|
898
|
+
"integrity": "sha512-39Tm6f4RoZoVUWBYr3ekS75TYgpr5Y+X0xLZxXqcZNDWZdJdYbKd3q2IR4V9y5NxxiPu/jxJ8XP7EgHiEQtFnw==",
|
|
899
899
|
"dev": true,
|
|
900
900
|
"requires": {
|
|
901
|
-
"@typescript-eslint/types": "5.10.
|
|
902
|
-
"@typescript-eslint/visitor-keys": "5.10.
|
|
901
|
+
"@typescript-eslint/types": "5.10.2",
|
|
902
|
+
"@typescript-eslint/visitor-keys": "5.10.2"
|
|
903
903
|
}
|
|
904
904
|
},
|
|
905
905
|
"@typescript-eslint/types": {
|
|
906
|
-
"version": "5.10.
|
|
907
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.10.
|
|
908
|
-
"integrity": "sha512-
|
|
906
|
+
"version": "5.10.2",
|
|
907
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.10.2.tgz",
|
|
908
|
+
"integrity": "sha512-Qfp0qk/5j2Rz3p3/WhWgu4S1JtMcPgFLnmAKAW061uXxKSa7VWKZsDXVaMXh2N60CX9h6YLaBoy9PJAfCOjk3w==",
|
|
909
909
|
"dev": true
|
|
910
910
|
},
|
|
911
911
|
"@typescript-eslint/typescript-estree": {
|
|
912
|
-
"version": "5.10.
|
|
913
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.10.
|
|
914
|
-
"integrity": "sha512-
|
|
912
|
+
"version": "5.10.2",
|
|
913
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.10.2.tgz",
|
|
914
|
+
"integrity": "sha512-WHHw6a9vvZls6JkTgGljwCsMkv8wu8XU8WaYKeYhxhWXH/atZeiMW6uDFPLZOvzNOGmuSMvHtZKd6AuC8PrwKQ==",
|
|
915
915
|
"dev": true,
|
|
916
916
|
"requires": {
|
|
917
|
-
"@typescript-eslint/types": "5.10.
|
|
918
|
-
"@typescript-eslint/visitor-keys": "5.10.
|
|
917
|
+
"@typescript-eslint/types": "5.10.2",
|
|
918
|
+
"@typescript-eslint/visitor-keys": "5.10.2",
|
|
919
919
|
"debug": "^4.3.2",
|
|
920
920
|
"globby": "^11.0.4",
|
|
921
921
|
"is-glob": "^4.0.3",
|
|
@@ -924,15 +924,15 @@
|
|
|
924
924
|
}
|
|
925
925
|
},
|
|
926
926
|
"@typescript-eslint/utils": {
|
|
927
|
-
"version": "5.10.
|
|
928
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.10.
|
|
929
|
-
"integrity": "sha512-
|
|
927
|
+
"version": "5.10.2",
|
|
928
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.10.2.tgz",
|
|
929
|
+
"integrity": "sha512-vuJaBeig1NnBRkf7q9tgMLREiYD7zsMrsN1DA3wcoMDvr3BTFiIpKjGiYZoKPllfEwN7spUjv7ZqD+JhbVjEPg==",
|
|
930
930
|
"dev": true,
|
|
931
931
|
"requires": {
|
|
932
932
|
"@types/json-schema": "^7.0.9",
|
|
933
|
-
"@typescript-eslint/scope-manager": "5.10.
|
|
934
|
-
"@typescript-eslint/types": "5.10.
|
|
935
|
-
"@typescript-eslint/typescript-estree": "5.10.
|
|
933
|
+
"@typescript-eslint/scope-manager": "5.10.2",
|
|
934
|
+
"@typescript-eslint/types": "5.10.2",
|
|
935
|
+
"@typescript-eslint/typescript-estree": "5.10.2",
|
|
936
936
|
"eslint-scope": "^5.1.1",
|
|
937
937
|
"eslint-utils": "^3.0.0"
|
|
938
938
|
},
|
|
@@ -956,12 +956,12 @@
|
|
|
956
956
|
}
|
|
957
957
|
},
|
|
958
958
|
"@typescript-eslint/visitor-keys": {
|
|
959
|
-
"version": "5.10.
|
|
960
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.10.
|
|
961
|
-
"integrity": "sha512-
|
|
959
|
+
"version": "5.10.2",
|
|
960
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.10.2.tgz",
|
|
961
|
+
"integrity": "sha512-zHIhYGGGrFJvvyfwHk5M08C5B5K4bewkm+rrvNTKk1/S15YHR+SA/QUF8ZWscXSfEaB8Nn2puZj+iHcoxVOD/Q==",
|
|
962
962
|
"dev": true,
|
|
963
963
|
"requires": {
|
|
964
|
-
"@typescript-eslint/types": "5.10.
|
|
964
|
+
"@typescript-eslint/types": "5.10.2",
|
|
965
965
|
"eslint-visitor-keys": "^3.0.0"
|
|
966
966
|
}
|
|
967
967
|
},
|
|
@@ -1501,9 +1501,9 @@
|
|
|
1501
1501
|
}
|
|
1502
1502
|
},
|
|
1503
1503
|
"electron-to-chromium": {
|
|
1504
|
-
"version": "1.4.
|
|
1505
|
-
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.
|
|
1506
|
-
"integrity": "sha512-
|
|
1504
|
+
"version": "1.4.59",
|
|
1505
|
+
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.59.tgz",
|
|
1506
|
+
"integrity": "sha512-AOJ3cAE0TWxz4fQ9zkND5hWrQg16nsZKVz9INOot1oV//u4wWu5xrj9CQMmPTYskkZRunSRc9sAnr4EkexXokg==",
|
|
1507
1507
|
"dev": true
|
|
1508
1508
|
},
|
|
1509
1509
|
"emittery": {
|
|
@@ -3759,9 +3759,9 @@
|
|
|
3759
3759
|
"dev": true
|
|
3760
3760
|
},
|
|
3761
3761
|
"zigbee-herdsman": {
|
|
3762
|
-
"version": "0.14.
|
|
3763
|
-
"resolved": "https://registry.npmjs.org/zigbee-herdsman/-/zigbee-herdsman-0.14.
|
|
3764
|
-
"integrity": "sha512-
|
|
3762
|
+
"version": "0.14.10",
|
|
3763
|
+
"resolved": "https://registry.npmjs.org/zigbee-herdsman/-/zigbee-herdsman-0.14.10.tgz",
|
|
3764
|
+
"integrity": "sha512-exPtxyJij2fByFhrJpVro9DeL11D1OpjfvEPkEMaPF12C3/fMDdEjZZX66a2mU07KvhlTqynQ+wZFwsighrimg==",
|
|
3765
3765
|
"requires": {
|
|
3766
3766
|
"debounce": "^1.2.1",
|
|
3767
3767
|
"debug": "^4.3.3",
|
|
@@ -4896,9 +4896,9 @@
|
|
|
4896
4896
|
}
|
|
4897
4897
|
},
|
|
4898
4898
|
"@humanwhocodes/config-array": {
|
|
4899
|
-
"version": "0.9.
|
|
4900
|
-
"resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.9.
|
|
4901
|
-
"integrity": "sha512-
|
|
4899
|
+
"version": "0.9.3",
|
|
4900
|
+
"resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.9.3.tgz",
|
|
4901
|
+
"integrity": "sha512-3xSMlXHh03hCcCmFc0rbKp3Ivt2PFEJnQUJDDMTJQ2wkECZWdq4GePs2ctc5H8zV+cHPaq8k2vU8mrQjA6iHdQ==",
|
|
4902
4902
|
"requires": {
|
|
4903
4903
|
"@humanwhocodes/object-schema": "^1.2.1",
|
|
4904
4904
|
"debug": "^4.1.1",
|
|
@@ -5623,9 +5623,9 @@
|
|
|
5623
5623
|
}
|
|
5624
5624
|
},
|
|
5625
5625
|
"@types/node": {
|
|
5626
|
-
"version": "17.0.
|
|
5627
|
-
"resolved": "https://registry.npmjs.org/@types/node/-/node-17.0.
|
|
5628
|
-
"integrity": "sha512-
|
|
5626
|
+
"version": "17.0.13",
|
|
5627
|
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-17.0.13.tgz",
|
|
5628
|
+
"integrity": "sha512-Y86MAxASe25hNzlDbsviXl8jQHb0RDvKt4c40ZJQ1Don0AAL0STLZSs4N+6gLEO55pedy7r2cLwS+ZDxPm/2Bw=="
|
|
5629
5629
|
},
|
|
5630
5630
|
"@types/prettier": {
|
|
5631
5631
|
"version": "2.4.3",
|
|
@@ -5659,13 +5659,13 @@
|
|
|
5659
5659
|
"integrity": "sha512-7tFImggNeNBVMsn0vLrpn1H1uPrUBdnARPTpZoitY37ZrdJREzf7I16tMrlK3hen349gr1NYh8CmZQa7CTG6Aw=="
|
|
5660
5660
|
},
|
|
5661
5661
|
"@typescript-eslint/eslint-plugin": {
|
|
5662
|
-
"version": "5.10.
|
|
5663
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.10.
|
|
5664
|
-
"integrity": "sha512-
|
|
5662
|
+
"version": "5.10.1",
|
|
5663
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.10.1.tgz",
|
|
5664
|
+
"integrity": "sha512-xN3CYqFlyE/qOcy978/L0xLR2HlcAGIyIK5sMOasxaaAPfQRj/MmMV6OC3I7NZO84oEUdWCOju34Z9W8E0pFDQ==",
|
|
5665
5665
|
"requires": {
|
|
5666
|
-
"@typescript-eslint/scope-manager": "5.10.
|
|
5667
|
-
"@typescript-eslint/type-utils": "5.10.
|
|
5668
|
-
"@typescript-eslint/utils": "5.10.
|
|
5666
|
+
"@typescript-eslint/scope-manager": "5.10.1",
|
|
5667
|
+
"@typescript-eslint/type-utils": "5.10.1",
|
|
5668
|
+
"@typescript-eslint/utils": "5.10.1",
|
|
5669
5669
|
"debug": "^4.3.2",
|
|
5670
5670
|
"functional-red-black-tree": "^1.0.1",
|
|
5671
5671
|
"ignore": "^5.1.8",
|
|
@@ -5675,47 +5675,47 @@
|
|
|
5675
5675
|
}
|
|
5676
5676
|
},
|
|
5677
5677
|
"@typescript-eslint/parser": {
|
|
5678
|
-
"version": "5.10.
|
|
5679
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.10.
|
|
5680
|
-
"integrity": "sha512-
|
|
5678
|
+
"version": "5.10.1",
|
|
5679
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.10.1.tgz",
|
|
5680
|
+
"integrity": "sha512-GReo3tjNBwR5RnRO0K2wDIDN31cM3MmDtgyQ85oAxAmC5K3j/g85IjP+cDfcqDsDDBf1HNKQAD0WqOYL8jXqUA==",
|
|
5681
5681
|
"requires": {
|
|
5682
|
-
"@typescript-eslint/scope-manager": "5.10.
|
|
5683
|
-
"@typescript-eslint/types": "5.10.
|
|
5684
|
-
"@typescript-eslint/typescript-estree": "5.10.
|
|
5682
|
+
"@typescript-eslint/scope-manager": "5.10.1",
|
|
5683
|
+
"@typescript-eslint/types": "5.10.1",
|
|
5684
|
+
"@typescript-eslint/typescript-estree": "5.10.1",
|
|
5685
5685
|
"debug": "^4.3.2"
|
|
5686
5686
|
}
|
|
5687
5687
|
},
|
|
5688
5688
|
"@typescript-eslint/scope-manager": {
|
|
5689
|
-
"version": "5.10.
|
|
5690
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.10.
|
|
5691
|
-
"integrity": "sha512-
|
|
5689
|
+
"version": "5.10.1",
|
|
5690
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.10.1.tgz",
|
|
5691
|
+
"integrity": "sha512-Lyvi559Gvpn94k7+ElXNMEnXu/iundV5uFmCUNnftbFrUbAJ1WBoaGgkbOBm07jVZa682oaBU37ao/NGGX4ZDg==",
|
|
5692
5692
|
"requires": {
|
|
5693
|
-
"@typescript-eslint/types": "5.10.
|
|
5694
|
-
"@typescript-eslint/visitor-keys": "5.10.
|
|
5693
|
+
"@typescript-eslint/types": "5.10.1",
|
|
5694
|
+
"@typescript-eslint/visitor-keys": "5.10.1"
|
|
5695
5695
|
}
|
|
5696
5696
|
},
|
|
5697
5697
|
"@typescript-eslint/type-utils": {
|
|
5698
|
-
"version": "5.10.
|
|
5699
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.10.
|
|
5700
|
-
"integrity": "sha512-
|
|
5698
|
+
"version": "5.10.1",
|
|
5699
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.10.1.tgz",
|
|
5700
|
+
"integrity": "sha512-AfVJkV8uck/UIoDqhu+ptEdBoQATON9GXnhOpPLzkQRJcSChkvD//qsz9JVffl2goxX+ybs5klvacE9vmrQyCw==",
|
|
5701
5701
|
"requires": {
|
|
5702
|
-
"@typescript-eslint/utils": "5.10.
|
|
5702
|
+
"@typescript-eslint/utils": "5.10.1",
|
|
5703
5703
|
"debug": "^4.3.2",
|
|
5704
5704
|
"tsutils": "^3.21.0"
|
|
5705
5705
|
}
|
|
5706
5706
|
},
|
|
5707
5707
|
"@typescript-eslint/types": {
|
|
5708
|
-
"version": "5.10.
|
|
5709
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.10.
|
|
5710
|
-
"integrity": "sha512-
|
|
5708
|
+
"version": "5.10.1",
|
|
5709
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.10.1.tgz",
|
|
5710
|
+
"integrity": "sha512-ZvxQ2QMy49bIIBpTqFiOenucqUyjTQ0WNLhBM6X1fh1NNlYAC6Kxsx8bRTY3jdYsYg44a0Z/uEgQkohbR0H87Q=="
|
|
5711
5711
|
},
|
|
5712
5712
|
"@typescript-eslint/typescript-estree": {
|
|
5713
|
-
"version": "5.10.
|
|
5714
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.10.
|
|
5715
|
-
"integrity": "sha512-
|
|
5713
|
+
"version": "5.10.1",
|
|
5714
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.10.1.tgz",
|
|
5715
|
+
"integrity": "sha512-PwIGnH7jIueXv4opcwEbVGDATjGPO1dx9RkUl5LlHDSe+FXxPwFL5W/qYd5/NHr7f6lo/vvTrAzd0KlQtRusJQ==",
|
|
5716
5716
|
"requires": {
|
|
5717
|
-
"@typescript-eslint/types": "5.10.
|
|
5718
|
-
"@typescript-eslint/visitor-keys": "5.10.
|
|
5717
|
+
"@typescript-eslint/types": "5.10.1",
|
|
5718
|
+
"@typescript-eslint/visitor-keys": "5.10.1",
|
|
5719
5719
|
"debug": "^4.3.2",
|
|
5720
5720
|
"globby": "^11.0.4",
|
|
5721
5721
|
"is-glob": "^4.0.3",
|
|
@@ -5724,24 +5724,24 @@
|
|
|
5724
5724
|
}
|
|
5725
5725
|
},
|
|
5726
5726
|
"@typescript-eslint/utils": {
|
|
5727
|
-
"version": "5.10.
|
|
5728
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.10.
|
|
5729
|
-
"integrity": "sha512-
|
|
5727
|
+
"version": "5.10.1",
|
|
5728
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.10.1.tgz",
|
|
5729
|
+
"integrity": "sha512-RRmlITiUbLuTRtn/gcPRi4202niF+q7ylFLCKu4c+O/PcpRvZ/nAUwQ2G00bZgpWkhrNLNnvhZLbDn8Ml0qsQw==",
|
|
5730
5730
|
"requires": {
|
|
5731
5731
|
"@types/json-schema": "^7.0.9",
|
|
5732
|
-
"@typescript-eslint/scope-manager": "5.10.
|
|
5733
|
-
"@typescript-eslint/types": "5.10.
|
|
5734
|
-
"@typescript-eslint/typescript-estree": "5.10.
|
|
5732
|
+
"@typescript-eslint/scope-manager": "5.10.1",
|
|
5733
|
+
"@typescript-eslint/types": "5.10.1",
|
|
5734
|
+
"@typescript-eslint/typescript-estree": "5.10.1",
|
|
5735
5735
|
"eslint-scope": "^5.1.1",
|
|
5736
5736
|
"eslint-utils": "^3.0.0"
|
|
5737
5737
|
}
|
|
5738
5738
|
},
|
|
5739
5739
|
"@typescript-eslint/visitor-keys": {
|
|
5740
|
-
"version": "5.10.
|
|
5741
|
-
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.10.
|
|
5742
|
-
"integrity": "sha512-
|
|
5740
|
+
"version": "5.10.1",
|
|
5741
|
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.10.1.tgz",
|
|
5742
|
+
"integrity": "sha512-NjQ0Xinhy9IL979tpoTRuLKxMc0zJC7QVSdeerXs2/QvOy2yRkzX5dRb10X5woNUdJgU8G3nYRDlI33sq1K4YQ==",
|
|
5743
5743
|
"requires": {
|
|
5744
|
-
"@typescript-eslint/types": "5.10.
|
|
5744
|
+
"@typescript-eslint/types": "5.10.1",
|
|
5745
5745
|
"eslint-visitor-keys": "^3.0.0"
|
|
5746
5746
|
}
|
|
5747
5747
|
},
|
|
@@ -6154,9 +6154,9 @@
|
|
|
6154
6154
|
"integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg=="
|
|
6155
6155
|
},
|
|
6156
6156
|
"caniuse-lite": {
|
|
6157
|
-
"version": "1.0.
|
|
6158
|
-
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.
|
|
6159
|
-
"integrity": "sha512-
|
|
6157
|
+
"version": "1.0.30001304",
|
|
6158
|
+
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001304.tgz",
|
|
6159
|
+
"integrity": "sha512-bdsfZd6K6ap87AGqSHJP/s1V+U6Z5lyrcbBu3ovbCCf8cSYpwTtGrCBObMpJqwxfTbLW6YTIdbb1jEeTelcpYQ=="
|
|
6160
6160
|
},
|
|
6161
6161
|
"chalk": {
|
|
6162
6162
|
"version": "2.4.2",
|
|
@@ -6429,9 +6429,9 @@
|
|
|
6429
6429
|
"integrity": "sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o="
|
|
6430
6430
|
},
|
|
6431
6431
|
"detect-libc": {
|
|
6432
|
-
"version": "
|
|
6433
|
-
"resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-
|
|
6434
|
-
"integrity": "
|
|
6432
|
+
"version": "2.0.0",
|
|
6433
|
+
"resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.0.tgz",
|
|
6434
|
+
"integrity": "sha512-S55LzUl8HUav8l9E2PBTlC5PAJrHK7tkM+XXFGD+fbsbkTzhCpG6K05LxJcUOEWzMa4v6ptcMZ9s3fOdJDu0Zw=="
|
|
6435
6435
|
},
|
|
6436
6436
|
"detect-newline": {
|
|
6437
6437
|
"version": "3.1.0",
|
|
@@ -6475,9 +6475,9 @@
|
|
|
6475
6475
|
}
|
|
6476
6476
|
},
|
|
6477
6477
|
"electron-to-chromium": {
|
|
6478
|
-
"version": "1.4.
|
|
6479
|
-
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.
|
|
6480
|
-
"integrity": "sha512-
|
|
6478
|
+
"version": "1.4.57",
|
|
6479
|
+
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.57.tgz",
|
|
6480
|
+
"integrity": "sha512-FNC+P5K1n6pF+M0zIK+gFCoXcJhhzDViL3DRIGy2Fv5PohuSES1JHR7T+GlwxSxlzx4yYbsuzCZvHxcBSRCIOw=="
|
|
6481
6481
|
},
|
|
6482
6482
|
"emittery": {
|
|
6483
6483
|
"version": "0.8.1",
|
|
@@ -6568,9 +6568,9 @@
|
|
|
6568
6568
|
}
|
|
6569
6569
|
},
|
|
6570
6570
|
"eslint": {
|
|
6571
|
-
"version": "8.
|
|
6572
|
-
"resolved": "https://registry.npmjs.org/eslint/-/eslint-8.
|
|
6573
|
-
"integrity": "sha512-
|
|
6571
|
+
"version": "8.8.0",
|
|
6572
|
+
"resolved": "https://registry.npmjs.org/eslint/-/eslint-8.8.0.tgz",
|
|
6573
|
+
"integrity": "sha512-H3KXAzQGBH1plhYS3okDix2ZthuYJlQQEGE5k0IKuEqUSiyu4AmxxlJ2MtTYeJ3xB4jDhcYCwGOg2TXYdnDXlQ==",
|
|
6574
6574
|
"requires": {
|
|
6575
6575
|
"@eslint/eslintrc": "^1.0.5",
|
|
6576
6576
|
"@humanwhocodes/config-array": "^0.9.2",
|
|
@@ -6924,9 +6924,9 @@
|
|
|
6924
6924
|
}
|
|
6925
6925
|
},
|
|
6926
6926
|
"flatted": {
|
|
6927
|
-
"version": "3.2.
|
|
6928
|
-
"resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.
|
|
6929
|
-
"integrity": "sha512-
|
|
6927
|
+
"version": "3.2.5",
|
|
6928
|
+
"resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.5.tgz",
|
|
6929
|
+
"integrity": "sha512-WIWGi2L3DyTUvUrwRKgGi9TwxQMUEqPOPQBVi71R96jZXJdFskXEmf54BoZaS1kknGODoIGASGEzBUYdyMCBJg=="
|
|
6930
6930
|
},
|
|
6931
6931
|
"form-data": {
|
|
6932
6932
|
"version": "3.0.1",
|
|
@@ -8682,9 +8682,9 @@
|
|
|
8682
8682
|
}
|
|
8683
8683
|
},
|
|
8684
8684
|
"marked": {
|
|
8685
|
-
"version": "4.0.
|
|
8686
|
-
"resolved": "https://registry.npmjs.org/marked/-/marked-4.0.
|
|
8687
|
-
"integrity": "sha512
|
|
8685
|
+
"version": "4.0.12",
|
|
8686
|
+
"resolved": "https://registry.npmjs.org/marked/-/marked-4.0.12.tgz",
|
|
8687
|
+
"integrity": "sha512-hgibXWrEDNBWgGiK18j/4lkS6ihTe9sxtV4Q1OQppb/0zzyPSzoFANBa5MfsG/zgsWklmNnhm0XACZOH/0HBiQ=="
|
|
8688
8688
|
},
|
|
8689
8689
|
"merge-stream": {
|
|
8690
8690
|
"version": "2.0.0",
|
|
@@ -8963,9 +8963,9 @@
|
|
|
8963
8963
|
"integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g=="
|
|
8964
8964
|
},
|
|
8965
8965
|
"pirates": {
|
|
8966
|
-
"version": "4.0.
|
|
8967
|
-
"resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.
|
|
8968
|
-
"integrity": "sha512-
|
|
8966
|
+
"version": "4.0.5",
|
|
8967
|
+
"resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.5.tgz",
|
|
8968
|
+
"integrity": "sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ=="
|
|
8969
8969
|
},
|
|
8970
8970
|
"pkg-dir": {
|
|
8971
8971
|
"version": "4.2.0",
|
|
@@ -8976,11 +8976,11 @@
|
|
|
8976
8976
|
}
|
|
8977
8977
|
},
|
|
8978
8978
|
"prebuild-install": {
|
|
8979
|
-
"version": "7.0.
|
|
8980
|
-
"resolved": "https://registry.npmjs.org/prebuild-install/-/prebuild-install-7.0.
|
|
8981
|
-
"integrity": "sha512-
|
|
8979
|
+
"version": "7.0.1",
|
|
8980
|
+
"resolved": "https://registry.npmjs.org/prebuild-install/-/prebuild-install-7.0.1.tgz",
|
|
8981
|
+
"integrity": "sha512-QBSab31WqkyxpnMWQxubYAHR5S9B2+r81ucocew34Fkl98FhvKIF50jIJnNOBmAZfyNV7vE5T6gd3hTVWgY6tg==",
|
|
8982
8982
|
"requires": {
|
|
8983
|
-
"detect-libc": "^
|
|
8983
|
+
"detect-libc": "^2.0.0",
|
|
8984
8984
|
"expand-template": "^2.0.3",
|
|
8985
8985
|
"github-from-package": "0.0.0",
|
|
8986
8986
|
"minimist": "^1.2.3",
|
|
@@ -9300,9 +9300,9 @@
|
|
|
9300
9300
|
"integrity": "sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q=="
|
|
9301
9301
|
},
|
|
9302
9302
|
"simple-get": {
|
|
9303
|
-
"version": "4.0.
|
|
9304
|
-
"resolved": "https://registry.npmjs.org/simple-get/-/simple-get-4.0.
|
|
9305
|
-
"integrity": "sha512-
|
|
9303
|
+
"version": "4.0.1",
|
|
9304
|
+
"resolved": "https://registry.npmjs.org/simple-get/-/simple-get-4.0.1.tgz",
|
|
9305
|
+
"integrity": "sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==",
|
|
9306
9306
|
"requires": {
|
|
9307
9307
|
"decompress-response": "^6.0.0",
|
|
9308
9308
|
"once": "^1.3.1",
|
|
@@ -9671,9 +9671,9 @@
|
|
|
9671
9671
|
"integrity": "sha512-TCTIul70LyWe6IJWT8QSYeA54WQe8EjQFU4wY52Fasj5UKx88LNYKCgBEHcOMOrFF1rKGbD8v/xcNWVUq9SymA=="
|
|
9672
9672
|
},
|
|
9673
9673
|
"uglify-js": {
|
|
9674
|
-
"version": "3.
|
|
9675
|
-
"resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.
|
|
9676
|
-
"integrity": "sha512-
|
|
9674
|
+
"version": "3.15.0",
|
|
9675
|
+
"resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.15.0.tgz",
|
|
9676
|
+
"integrity": "sha512-x+xdeDWq7FiORDvyIJ0q/waWd4PhjBNOm5dQUOq2AKC0IEjxOS66Ha9tctiVDGcRQuh69K7fgU5oRuTK4cysSg==",
|
|
9677
9677
|
"optional": true
|
|
9678
9678
|
},
|
|
9679
9679
|
"unicode-canonical-property-names-ecmascript": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "zigbee-herdsman-converters",
|
|
3
|
-
"version": "14.0.
|
|
3
|
+
"version": "14.0.406",
|
|
4
4
|
"description": "Collection of device converters to be used with zigbee-herdsman",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"files": [
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"buffer-crc32": "^0.2.13",
|
|
39
39
|
"https-proxy-agent": "^5.0.0",
|
|
40
40
|
"tar-stream": "^2.2.0",
|
|
41
|
-
"zigbee-herdsman": "^0.14.
|
|
41
|
+
"zigbee-herdsman": "^0.14.10"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"eslint": "*",
|