@camera.ui/browser 0.0.51 → 0.0.53
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/dist/bundle.js +1 -1
- package/dist/types/server/src/camera/base.d.ts +2 -1
- package/dist/types/server/src/plugins/types.d.ts +0 -1
- package/dist/types/server/src/services/config/types.d.ts +1 -0
- package/dist/types/shared/types/index.d.ts +1 -1
- package/package.json +1 -1
- package/empty.js +0 -0
- /package/dist/types/server/src/{proxy → test}/types.d.ts +0 -0
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { BehaviorSubject, Observable } from 'rxjs';
|
|
2
2
|
import { BrowserStreamingSession } from './streaming/browser/browser-streaming-session';
|
|
3
|
-
import { StreamingSession } from './streaming/streaming-session';
|
|
4
3
|
import { Subscribed } from './utils/subscribed';
|
|
5
4
|
import type { Camera, CameraInformation, CameraPublicProperties, CameraType, CameraZone } from '../api/database/types';
|
|
6
5
|
import type { Frame } from '../detector/types';
|
|
7
6
|
import type { IceServer } from '../services/config/types';
|
|
8
7
|
import type { AudioState, BaseLogger, BatteryState, CameraDelegate, CameraPrebufferDelegate, CameraSource, DoorbellState, FfmpegOptions, LightState, MotionState, ObjectState, OnSetEvent, SirenState, StateValues, StreamingConnectionOptions } from './types';
|
|
8
|
+
type StreamingSession = InstanceType<typeof import('./streaming/streaming-session').StreamingSession>;
|
|
9
9
|
export type CameraDevice = ServerCameraDeviceBase | BrowserCameraDeviceBase;
|
|
10
10
|
export declare abstract class CameraDeviceBase extends Subscribed {
|
|
11
11
|
protected logger: BaseLogger;
|
|
@@ -88,3 +88,4 @@ export declare abstract class ServerCameraDeviceBase extends CameraDeviceBase {
|
|
|
88
88
|
export declare abstract class BrowserCameraDeviceBase extends CameraDeviceBase {
|
|
89
89
|
createBrowserSession(sourceName: string, videoElement: HTMLVideoElement): Promise<BrowserStreamingSession>;
|
|
90
90
|
}
|
|
91
|
+
export {};
|
|
@@ -8,5 +8,5 @@ export * from '../../server/src/camera/types';
|
|
|
8
8
|
export * from '../../server/src/detector/types';
|
|
9
9
|
export * from '../../server/src/go2rtc/types';
|
|
10
10
|
export * from '../../server/src/plugins/types';
|
|
11
|
-
export * from '../../server/src/proxy/types';
|
|
12
11
|
export * from '../../server/src/services/config/types';
|
|
12
|
+
export * from '../../server/src/test/types';
|
package/package.json
CHANGED
package/empty.js
DELETED
|
File without changes
|
|
File without changes
|