eufy-security-client 3.7.1 → 3.7.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/README.md +4 -0
- package/build/http/api.d.ts +1 -1
- package/build/http/api.js +3 -3
- package/build/http/api.js.map +1 -1
- package/build/http/device.js +0 -2
- package/build/http/device.js.map +1 -1
- package/build/http/models.d.ts +0 -1
- package/build/http/station.js +3 -2
- package/build/http/station.js.map +1 -1
- package/build/p2p/session.js +21 -73
- package/build/p2p/session.js.map +1 -1
- package/build/p2p/utils.d.ts +0 -10
- package/build/p2p/utils.js +2 -63
- package/build/p2p/utils.js.map +1 -1
- package/package.json +1 -1
package/build/http/models.d.ts
CHANGED
package/build/http/station.js
CHANGED
|
@@ -6569,7 +6569,7 @@ class Station extends tiny_typed_emitter_1.TypedEmitter {
|
|
|
6569
6569
|
command: commandData,
|
|
6570
6570
|
});
|
|
6571
6571
|
}
|
|
6572
|
-
else if (device.isOutdoorPanAndTiltCamera()
|
|
6572
|
+
else if (device.isOutdoorPanAndTiltCamera()) {
|
|
6573
6573
|
logging_1.rootHTTPLogger.debug(`Station start livestream - sending command using CMD_DOORBELL_SET_PAYLOAD (1)`, {
|
|
6574
6574
|
stationSN: this.getSerial(),
|
|
6575
6575
|
deviceSN: device.getSerial(),
|
|
@@ -6621,7 +6621,8 @@ class Station extends tiny_typed_emitter_1.TypedEmitter {
|
|
|
6621
6621
|
command: commandData,
|
|
6622
6622
|
});
|
|
6623
6623
|
}
|
|
6624
|
-
else if (((device.isIndoorPanAndTiltCameraS350() || device.isIndoorCamC24()) && this.isDeviceControlledByHomeBase())
|
|
6624
|
+
else if (((device.isIndoorPanAndTiltCameraS350() || device.isIndoorCamC24()) && this.isDeviceControlledByHomeBase()) ||
|
|
6625
|
+
device.isFloodLightT8425()) {
|
|
6625
6626
|
logging_1.rootHTTPLogger.debug(`Station start livestream - sending command using CMD_SET_PAYLOAD`, {
|
|
6626
6627
|
stationSN: this.getSerial(),
|
|
6627
6628
|
deviceSN: device.getSerial(),
|