@homebridge/hap-client 3.3.1-beta.0 → 3.3.1-beta.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.
Files changed (2) hide show
  1. package/README.md +2 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -68,6 +68,8 @@ this.hapClient.on('discovery-terminated', this.discoveryTerminated()); // Insta
68
68
 
69
69
  this.hapClient.on('discovery-ended', this.discoveryEnded()); // Emitted when discovery has ended ( 60 Seconds )
70
70
 
71
+ this.hapClient.on('discovery-stopped', this.discoveryStopped()); // Emitted when discovery has been stopped manually
72
+
71
73
  this.monitor.on('service-update', this.serviceUpdate(services)); // Emitted when a characteristic change is received from a homebridge service
72
74
 
73
75
  this.monitor.on('monitor-close', this.monitorClose(instance, hadError)); // Emitted when the connection to a homebridge service is closed ( likely a restart )
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@homebridge/hap-client",
3
- "version": "3.3.1-beta.0",
3
+ "version": "3.3.1-beta.1",
4
4
  "description": "A client for HAP-NodeJS.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",