eufy-security-client 3.8.0-dev.14 → 3.8.0-dev.16
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/http/device.d.ts +6 -0
- package/build/http/device.js +20 -0
- package/build/http/device.js.map +1 -1
- package/build/http/station.js +6 -4
- package/build/http/station.js.map +1 -1
- package/build/p2p/adts.d.ts +12 -0
- package/build/p2p/adts.js +185 -0
- package/build/p2p/adts.js.map +1 -0
- package/build/p2p/session.js +24 -5
- package/build/p2p/session.js.map +1 -1
- package/coverage/clover.xml +4166 -4081
- package/coverage/coverage-final.json +5 -4
- package/coverage/lcov-report/index.html +26 -26
- package/coverage/lcov.info +7734 -7585
- package/package.json +1 -1
package/build/http/station.js
CHANGED
|
@@ -6592,7 +6592,10 @@ 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() ||
|
|
6596
|
+
device.isBatteryDoorbellDualE340() ||
|
|
6597
|
+
device.isFloodLightT8425() ||
|
|
6598
|
+
((device.isIndoorPTCameraE30() || device.isIndoorCameraBase()) && this.isDeviceControlledByHomeBase())) {
|
|
6596
6599
|
logging_1.rootHTTPLogger.debug(`Station start livestream - sending command using CMD_DOORBELL_SET_PAYLOAD (1)`, {
|
|
6597
6600
|
stationSN: this.getSerial(),
|
|
6598
6601
|
deviceSN: device.getSerial(),
|
|
@@ -6617,9 +6620,8 @@ class Station extends tiny_typed_emitter_1.TypedEmitter {
|
|
|
6617
6620
|
});
|
|
6618
6621
|
}
|
|
6619
6622
|
else if (device.isSoloCameras() ||
|
|
6620
|
-
device.
|
|
6621
|
-
device.
|
|
6622
|
-
device.getDeviceType() === types_1.DeviceType.FLOODLIGHT_CAMERA_8424 ||
|
|
6623
|
+
device.isFloodLightT8423() ||
|
|
6624
|
+
device.isFloodLightT8424() ||
|
|
6623
6625
|
device.isWiredDoorbellT8200X() ||
|
|
6624
6626
|
device.isWallLightCam() ||
|
|
6625
6627
|
device.isGarageCamera()) {
|