homebridge-zencontrol-tpi 1.1.0-next.4 → 1.1.0-next.5

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # homebridge-zencontrol-tpi
2
2
 
3
+ ## 1.1.0-next.5
4
+
5
+ ### Patch Changes
6
+
7
+ - 9e59549: Fix blind accessory to have different UUID so it doesn't collide with relay accessory if it already exists
8
+
3
9
  ## 1.1.0-next.4
4
10
 
5
11
  ### Minor Changes
package/dist/platform.js CHANGED
@@ -296,7 +296,7 @@ export class ZencontrolTPIPlatform {
296
296
  return acc;
297
297
  }
298
298
  addBlindAccessory({ address, label, model, serial }) {
299
- const uuid = this.api.hap.uuid.generate(`relay @ ${address}`);
299
+ const uuid = this.api.hap.uuid.generate(`blind @ ${address}`);
300
300
  const existingAccessory = this.accessories.get(uuid);
301
301
  let acc;
302
302
  if (existingAccessory) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "homebridge-zencontrol-tpi",
3
- "version": "1.1.0-next.4",
3
+ "version": "1.1.0-next.5",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",