eufy-security-client 3.7.2-dev.3 → 3.7.2-dev.5
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 -0
- package/build/eufysecurity.js +10 -0
- package/build/eufysecurity.js.map +1 -1
- package/build/http/device.d.ts +1 -0
- package/build/http/device.js +5 -0
- package/build/http/device.js.map +1 -1
- package/build/http/station.js +3 -3
- package/build/http/station.js.map +1 -1
- package/coverage/clover.xml +1860 -1858
- package/coverage/coverage-final.json +4 -4
- package/coverage/lcov-report/index.html +17 -17
- package/coverage/lcov.info +4894 -4886
- package/package.json +1 -1
package/build/http/station.js
CHANGED
|
@@ -6592,7 +6592,7 @@ class Station extends tiny_typed_emitter_1.TypedEmitter {
|
|
|
6592
6592
|
command: commandData,
|
|
6593
6593
|
});
|
|
6594
6594
|
}
|
|
6595
|
-
else if (device.isOutdoorPanAndTiltCamera()) {
|
|
6595
|
+
else if (device.isOutdoorPanAndTiltCamera() || device.isBatteryDoorbellDualE340() || device.isFloodLightT8425()) {
|
|
6596
6596
|
logging_1.rootHTTPLogger.debug(`Station start livestream - sending command using CMD_DOORBELL_SET_PAYLOAD (1)`, {
|
|
6597
6597
|
stationSN: this.getSerial(),
|
|
6598
6598
|
deviceSN: device.getSerial(),
|
|
@@ -6644,8 +6644,8 @@ class Station extends tiny_typed_emitter_1.TypedEmitter {
|
|
|
6644
6644
|
command: commandData,
|
|
6645
6645
|
});
|
|
6646
6646
|
}
|
|
6647
|
-
else if ((
|
|
6648
|
-
|
|
6647
|
+
else if ((device.isIndoorPanAndTiltCameraS350() || device.isIndoorCamC24()) &&
|
|
6648
|
+
this.isDeviceControlledByHomeBase()) {
|
|
6649
6649
|
logging_1.rootHTTPLogger.debug(`Station start livestream - sending command using CMD_SET_PAYLOAD`, {
|
|
6650
6650
|
stationSN: this.getSerial(),
|
|
6651
6651
|
deviceSN: device.getSerial(),
|