homebridge-lib 7.2.2 → 7.3.1

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.
@@ -88,6 +88,8 @@ class MyHomeKitTypes extends CustomHomeKitTypes {
88
88
  * <br>Used by: homebridge-zp in Sonos service.
89
89
  * @property {Class} CurrentTrack - Current (audio) track.
90
90
  * <br>Used by: homebridge-zp in Sonos service.
91
+ * @property {Class} CylonEffect - Enabled/disable cylon dynamic effect.
92
+ * <br>Used by: homebridge-rpi.
91
93
  * @property {Class} Dark - LightLevel is below dark threshold.
92
94
  * <br>Used by: homebridge-hue in LightSensor service.
93
95
  * @property {Class} Daylight - LightLevel is above daylight threshold.
@@ -1114,6 +1116,11 @@ class MyHomeKitTypes extends CustomHomeKitTypes {
1114
1116
  perms: [this.Perms.PAIRED_READ, this.Perms.NOTIFY, this.Perms.PAIRED_WRITE]
1115
1117
  }, 'Glow')
1116
1118
 
1119
+ this.createCharacteristicClass('CylonEffect', uuid('0A9'), {
1120
+ format: this.Formats.BOOL,
1121
+ perms: [this.Perms.PAIRED_READ, this.Perms.NOTIFY, this.Perms.PAIRED_WRITE]
1122
+ }, 'Cylon')
1123
+
1117
1124
  // Characteristic for Unique ID, used by homebridge-hue.
1118
1125
  // Source: as exposed by the Philips Hue bridge. This characteristic is
1119
1126
  // used by the Hue app to select the accessories when syncing Hue bridge
package/package.json CHANGED
@@ -6,7 +6,7 @@
6
6
  "ebaauw"
7
7
  ],
8
8
  "license": "Apache-2.0",
9
- "version": "7.2.2",
9
+ "version": "7.3.1",
10
10
  "keywords": [
11
11
  "homekit",
12
12
  "homebridge"
@@ -29,12 +29,12 @@
29
29
  "upnp": "cli/upnp.js"
30
30
  },
31
31
  "engines": {
32
- "homebridge": "^1.11.1||^2.0.0-beta",
33
- "node": "24.12.0||^24||^22||^20"
32
+ "homebridge": "^1.11.2||^2.0.0-beta",
33
+ "node": "24.13.1||^24||^22||^20"
34
34
  },
35
35
  "dependencies": {
36
- "@homebridge/plugin-ui-utils": "~2.1.2",
37
- "hb-lib-tools": "~2.2.15"
36
+ "@homebridge/plugin-ui-utils": "~2.1.3",
37
+ "hb-lib-tools": "~2.2.17"
38
38
  },
39
39
  "scripts": {
40
40
  "prepare": "standard && rm -rf out && jsdoc -c jsdoc.json",