eufy-security-client 3.7.0 → 3.7.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.
- package/README.md +6 -1
- package/build/http/device.js +2 -0
- package/build/http/device.js.map +1 -1
- package/build/http/models.d.ts +1 -0
- package/build/http/parameter.js +9 -0
- package/build/http/parameter.js.map +1 -1
- package/build/http/station.js +2 -3
- package/build/http/station.js.map +1 -1
- package/build/p2p/session.js +73 -21
- package/build/p2p/session.js.map +1 -1
- package/build/p2p/utils.d.ts +10 -0
- package/build/p2p/utils.js +63 -2
- package/build/p2p/utils.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -105,7 +105,12 @@ Instructions aimed at maintainers for deploying a new version: [Deployment](docs
|
|
|
105
105
|
|
|
106
106
|
## Changelog
|
|
107
107
|
|
|
108
|
-
### 3.7.
|
|
108
|
+
### 3.7.1 (2026-02-15)
|
|
109
|
+
|
|
110
|
+
* Fix: ECDH livestream for E340 doorbell and T8425 floodlight by @lenoxys in https://github.com/bropat/eufy-security-client/pull/779
|
|
111
|
+
* Fix: Parameter parsing failure by @max246 in https://github.com/bropat/eufy-security-client/pull/786
|
|
112
|
+
|
|
113
|
+
[### 3.7.0 (2026-02-14)
|
|
109
114
|
|
|
110
115
|
* Upgrade packages mqtt, qs and date-and-time in https://github.com/bropat/eufy-security-client/pull/781
|
|
111
116
|
* Refactor: Add testing and simplify http package by @max246 in https://github.com/bropat/eufy-security-client/pull/778
|
package/build/http/device.js
CHANGED
|
@@ -2156,9 +2156,11 @@ class Device extends tiny_typed_emitter_1.TypedEmitter {
|
|
|
2156
2156
|
sn.startsWith("T8130") ||
|
|
2157
2157
|
sn.startsWith("T8131") ||
|
|
2158
2158
|
sn.startsWith("T8171") ||
|
|
2159
|
+
sn.startsWith("T8214") ||
|
|
2159
2160
|
sn.startsWith("T8422") ||
|
|
2160
2161
|
sn.startsWith("T8423") ||
|
|
2161
2162
|
sn.startsWith("T8424") ||
|
|
2163
|
+
sn.startsWith("T8425") ||
|
|
2162
2164
|
sn.startsWith("T8426") ||
|
|
2163
2165
|
sn.startsWith("T8440") ||
|
|
2164
2166
|
sn.startsWith("T8441") ||
|