eufy-security-client 3.8.0-dev.17 → 3.8.0-dev.18
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/build/p2p/session.js +7 -0
- package/build/p2p/session.js.map +1 -1
- package/coverage/clover.xml +273 -268
- package/coverage/coverage-final.json +1 -1
- package/coverage/lcov-report/index.html +13 -13
- package/coverage/lcov.info +394 -386
- package/package.json +1 -1
package/build/p2p/session.js
CHANGED
|
@@ -2863,6 +2863,13 @@ class P2PClientProtocol extends tiny_typed_emitter_1.TypedEmitter {
|
|
|
2863
2863
|
this.emit("garage door status", message.channel, payload.door_id, payload.type);
|
|
2864
2864
|
}
|
|
2865
2865
|
}
|
|
2866
|
+
else if (json.cmd === types_1.CommandType.CMD_STORAGE_INFO_HB3) {
|
|
2867
|
+
const payload = json.payload;
|
|
2868
|
+
logging_1.rootP2PLogger.debug(`Handle DATA ${types_1.P2PDataType[message.dataType]} - CMD_NOTIFY_PAYLOAD StorageInfo HB3 update`, { stationSN: this.rawStation.station_sn, body: payload?.body });
|
|
2869
|
+
if (payload) {
|
|
2870
|
+
this.emit("storage info hb3", message.channel, payload.body);
|
|
2871
|
+
}
|
|
2872
|
+
}
|
|
2866
2873
|
else if (json.cmd === 6246) {
|
|
2867
2874
|
const payload = json.payload;
|
|
2868
2875
|
logging_1.rootP2PLogger.debug(`Handle DATA ${types_1.P2PDataType[message.dataType]} - CMD_NOTIFY_PAYLOAD Livestream status`, { stationSN: this.rawStation.station_sn, payload: payload });
|