zigbee-herdsman-converters 15.0.57 → 15.0.59

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.
@@ -25,7 +25,7 @@ module.exports = [
25
25
  exposes: [e.switch(), e.power(), e.current(), e.voltage()],
26
26
  },
27
27
  {
28
- zigbeeModel: ['ZBT-RGBWLight-GLS0844'],
28
+ zigbeeModel: ['ZBT-RGBWLight-GLS0844', 'HAL300'],
29
29
  model: 'HAL300',
30
30
  vendor: 'Schwaiger',
31
31
  description: 'Tint LED bulb E27 806 lumen, dimmable, color, white 1800-6500K',
package/devices/yale.js CHANGED
@@ -17,7 +17,11 @@ const lockExtend = (meta, lockStateOptions=null, binds=['closuresDoorLock', 'gen
17
17
  await reporting.bind(endpoint, coordinatorEndpoint, binds);
18
18
  await reporting.lockState(endpoint, lockStateOptions);
19
19
  await reporting.batteryPercentageRemaining(endpoint);
20
- await reporting.batteryAlarmState(endpoint);
20
+ try {
21
+ await reporting.batteryAlarmState(endpoint);
22
+ } catch (e) {
23
+ // Fails for some: https://github.com/Koenkk/zigbee-herdsman-converters/pull/5414
24
+ }
21
25
  },
22
26
  };
23
27
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zigbee-herdsman-converters",
3
- "version": "15.0.57",
3
+ "version": "15.0.59",
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.1",
40
40
  "tar-stream": "^3.0.0",
41
- "zigbee-herdsman": "^0.14.95"
41
+ "zigbee-herdsman": "^0.14.96"
42
42
  },
43
43
  "devDependencies": {
44
44
  "eslint": "*",