eufy-security-client 3.7.2-dev.5 → 3.8.0-dev.10
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 +21 -0
- package/build/eufysecurity.d.ts +1 -0
- package/build/eufysecurity.js +8 -0
- package/build/eufysecurity.js.map +1 -1
- package/build/http/api.d.ts +2 -0
- package/build/http/api.js +39 -6
- package/build/http/api.js.map +1 -1
- package/build/http/types.d.ts +1 -0
- package/build/http/types.js +11 -1
- package/build/http/types.js.map +1 -1
- package/coverage/clover.xml +1618 -1601
- package/coverage/coverage-final.json +3 -3
- package/coverage/lcov-report/index.html +25 -25
- package/coverage/lcov.info +2682 -2652
- package/package.json +1 -1
- package/scripts/cut_release.sh +2 -0
- package/scripts/generate_changelog.sh +93 -0
package/README.md
CHANGED
|
@@ -111,6 +111,27 @@ Instructions aimed at maintainers for deploying a new version: [Deployment](docs
|
|
|
111
111
|
|
|
112
112
|
## Changelog
|
|
113
113
|
|
|
114
|
+
### 3.8.0 (2026-03-01)
|
|
115
|
+
|
|
116
|
+
* Feature: Add support for Smart Lock E20 (T85V0) by @worldjoe/@max246 in https://github.com/bropat/eufy-security-client/pull/803
|
|
117
|
+
* Feature: Add support for Smart Lock C33 (T85L0) by @max246 in https://github.com/bropat/eufy-security-client/pull/804
|
|
118
|
+
* Feature: Add support for locks C30 & E330 by @max246 in https://github.com/bropat/eufy-security-client/pull/806
|
|
119
|
+
* Feature: Add support for Camera S40 (T8172) by @lenoxys in https://github.com/bropat/eufy-security-client/pull/807
|
|
120
|
+
* Feature: Add support for Motion Sensor E20 (T90M0) and Sirene E20 (T90R0) by @max246 in https://github.com/bropat/eufy-security-client/pull/808
|
|
121
|
+
* Feature: Add support for SoloCam E42 (T8173) by @lenoxys in https://github.com/bropat/eufy-security-client/pull/809
|
|
122
|
+
* Feature: Add support for 4G LTE Cam S330 (T86P2) by @lenoxys in https://github.com/bropat/eufy-security-client/pull/821
|
|
123
|
+
* Feature: Add support for C220 V3 by @max246 in https://github.com/bropat/eufy-security-client/pull/823
|
|
124
|
+
* Feature: Add debug message for new device and reporting guide by @max246 in https://github.com/bropat/eufy-security-client/pull/825
|
|
125
|
+
* Fix: Fix T8214 and T8425 livestream by @lenoxys in https://github.com/bropat/eufy-security-client/pull/793
|
|
126
|
+
* Fix: C210 preset support by @tomc128 in https://github.com/bropat/eufy-security-client/pull/811
|
|
127
|
+
* Fix: Mock timezone in getTimezoneGMTString test by @nick-pape in https://github.com/bropat/eufy-security-client/pull/814
|
|
128
|
+
* Fix: Restore missing CAMERA_S4 (T8172) StationProperties and StationCommands entries by @lenoxys in https://github.com/bropat/eufy-security-client/pull/819
|
|
129
|
+
* Fix: Fix start date by @max246 in https://github.com/bropat/eufy-security-client/pull/816
|
|
130
|
+
* Chore: Upgrade qs from 6.14.2 to 6.15.0 by @max246 in https://github.com/bropat/eufy-security-client/pull/802
|
|
131
|
+
* Chore: Upgrade date-and-time from 4.2.0 to 4.3.0 by @max246 in https://github.com/bropat/eufy-security-client/pull/815
|
|
132
|
+
* Chore: Add dev publish and enforce target branch workflows by @lenoxys in https://github.com/bropat/eufy-security-client/pull/818
|
|
133
|
+
* Chore: Add more testing and format check task by @max246 in https://github.com/bropat/eufy-security-client/pull/822
|
|
134
|
+
|
|
114
135
|
### 3.7.2 (2026-02-16)
|
|
115
136
|
* Fix: Revert due to failure to communicate with HB3 https://github.com/bropat/eufy-security-client/pull/790
|
|
116
137
|
* Fix: 2FA login by @lenoxys in https://github.com/bropat/eufy-security-client/pull/789
|
package/build/eufysecurity.d.ts
CHANGED
|
@@ -86,6 +86,7 @@ export declare class EufySecurity extends TypedEmitter<EufySecurityEvents> {
|
|
|
86
86
|
isMQTTConnected(): boolean;
|
|
87
87
|
isConnected(): boolean;
|
|
88
88
|
private processInvitations;
|
|
89
|
+
sendHouseInvite(houseID: string, email: string): Promise<boolean>;
|
|
89
90
|
private onPushMessage;
|
|
90
91
|
startStationDownload(deviceSN: string, path: string, cipherID: number): Promise<void>;
|
|
91
92
|
cancelStationDownload(deviceSN: string): Promise<void>;
|
package/build/eufysecurity.js
CHANGED
|
@@ -1081,6 +1081,14 @@ class EufySecurity extends tiny_typed_emitter_1.TypedEmitter {
|
|
|
1081
1081
|
if (refreshCloud)
|
|
1082
1082
|
this.refreshCloudData();
|
|
1083
1083
|
}
|
|
1084
|
+
async sendHouseInvite(houseID, email) {
|
|
1085
|
+
const result = await this.api.sendHouseInvite(houseID, email).catch((err) => {
|
|
1086
|
+
const error = (0, error_1.ensureError)(err);
|
|
1087
|
+
logging_1.rootMainLogger.error("Error sending house invite", { error: (0, utils_1.getError)(error), houseID, email });
|
|
1088
|
+
return false;
|
|
1089
|
+
});
|
|
1090
|
+
return result;
|
|
1091
|
+
}
|
|
1084
1092
|
onPushMessage(message) {
|
|
1085
1093
|
this.emit("push message", message);
|
|
1086
1094
|
try {
|