eufy-security-client 3.8.0-dev.16 → 3.8.0-dev.17
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/station.d.ts +2 -1
- package/build/http/station.js +3 -0
- package/build/http/station.js.map +1 -1
- package/build/p2p/interfaces.d.ts +9 -0
- package/build/p2p/session.d.ts +3 -1
- package/build/p2p/session.js +12 -4
- package/build/p2p/session.js.map +1 -1
- package/coverage/clover.xml +4253 -4250
- package/coverage/coverage-final.json +2 -2
- package/coverage/lcov-report/index.html +18 -18
- package/coverage/lcov.info +7716 -7709
- package/package.json +1 -1
package/build/http/station.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import { HTTPApi } from "./api";
|
|
|
3
3
|
import { AlarmTone, NotificationSwitchMode, DeviceType, FloodlightMotionTriggeredDistance, GuardMode, NotificationType, PowerSource, PropertyName, TimeFormat, CommandName, VideoTypeStoreToNAS, HB3DetectionTypes, WalllightNotificationType, DailyLightingType, MotionActivationMode, LightingActiveMode, SourceType, T8170DetectionTypes, IndoorS350NotificationTypes, SoloCameraDetectionTypes, MotionDetectionRangeType, ViewModeType, FloodlightT8425NotificationTypes, PresetPositionType, IndoorS350DetectionTypes, EufyCamC35DetectionTypes } from "./types";
|
|
4
4
|
import { SnoozeDetail, StationListResponse } from "./models";
|
|
5
5
|
import { IndexedProperty, PropertyMetadataAny, PropertyValue, PropertyValues, RawValues, StationEvents, Schedule } from "./interfaces";
|
|
6
|
-
import { CrossTrackingGroupEntry, DynamicLighting, MotionZone, RGBColor } from "../p2p/interfaces";
|
|
6
|
+
import { CrossTrackingGroupEntry, DynamicLighting, MotionZone, RGBColor, StreamTimeoutOptions } from "../p2p/interfaces";
|
|
7
7
|
import { CalibrateGarageType, FilterDetectType, FilterEventType, FilterStorageType, P2PConnectionType, PanTiltDirection, VideoCodec, WatermarkSetting1, WatermarkSetting2, WatermarkSetting3, WatermarkSetting4, WatermarkSetting5 } from "../p2p/types";
|
|
8
8
|
import { Device } from "./device";
|
|
9
9
|
import { PushMessage } from "../push/models";
|
|
@@ -182,6 +182,7 @@ export declare class Station extends TypedEmitter<StationEvents> {
|
|
|
182
182
|
startLivestream(device: Device, videoCodec?: VideoCodec): void;
|
|
183
183
|
stopLivestream(device: Device): void;
|
|
184
184
|
isLiveStreaming(device: Device): boolean;
|
|
185
|
+
setStreamTimeouts(options: StreamTimeoutOptions): void;
|
|
185
186
|
isDownloading(device: Device): boolean;
|
|
186
187
|
quickResponse(device: Device, voice_id: number): void;
|
|
187
188
|
setChirpVolume(device: Device, value: number): void;
|
package/build/http/station.js
CHANGED
|
@@ -6849,6 +6849,9 @@ class Station extends tiny_typed_emitter_1.TypedEmitter {
|
|
|
6849
6849
|
return false;
|
|
6850
6850
|
return this.p2pSession.isLiveStreaming(device.getChannel());
|
|
6851
6851
|
}
|
|
6852
|
+
setStreamTimeouts(options) {
|
|
6853
|
+
this.p2pSession.setStreamTimeouts(options);
|
|
6854
|
+
}
|
|
6852
6855
|
isDownloading(device) {
|
|
6853
6856
|
if (device.getStationSerial() !== this.getSerial())
|
|
6854
6857
|
return false;
|