@homebridge/hap-client 3.3.1-beta.0 → 3.3.1-beta.2
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 +8 -2
- package/README.md +2 -0
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -2,11 +2,17 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to `@homebridge/hap-client` will be documented in this file. This project tries to adhere to [Semantic Versioning](http://semver.org/).
|
|
4
4
|
|
|
5
|
-
## v3.4.0 (2026-02-
|
|
5
|
+
## v3.4.0 (2026-02-26)
|
|
6
6
|
|
|
7
7
|
### Changed
|
|
8
8
|
|
|
9
|
-
- more granular control for
|
|
9
|
+
- feat: added more granular control for discovery (#32) (@kovapatrik)
|
|
10
|
+
- docs: added new `discovery-stopped` event to README (#33) (@kovapatrik)
|
|
11
|
+
- updated dependencies
|
|
12
|
+
|
|
13
|
+
### Homebridge Dependencies
|
|
14
|
+
|
|
15
|
+
- `@homebridge/hap-nodejs` @ `v2.1.0`
|
|
10
16
|
|
|
11
17
|
## v3.3.0 (2026-02-14)
|
|
12
18
|
|
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.
|
|
3
|
+
"version": "3.3.1-beta.2",
|
|
4
4
|
"description": "A client for HAP-NodeJS.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -46,12 +46,12 @@
|
|
|
46
46
|
"source-map-support": "0.5.21"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
|
-
"@antfu/eslint-config": "^7.
|
|
49
|
+
"@antfu/eslint-config": "^7.6.1",
|
|
50
50
|
"@homebridge/hap-nodejs": "^2.1.0",
|
|
51
51
|
"@types/jest": "^30.0.0",
|
|
52
|
-
"@types/node": "^25.
|
|
52
|
+
"@types/node": "^25.3.1",
|
|
53
53
|
"@types/source-map-support": "^0.5.10",
|
|
54
|
-
"eslint-plugin-format": "^
|
|
54
|
+
"eslint-plugin-format": "^2.0.1",
|
|
55
55
|
"jest": "^30.2.0",
|
|
56
56
|
"ts-jest": "^29.4.6",
|
|
57
57
|
"ts-node": "^10.9.2",
|