@camera.ui/browser 0.0.63 → 0.0.64
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/packages/client/browser/src/proxy/cameraDevice.d.ts +1 -1
- package/dist/types/packages/client/browser/src/proxy/deviceManager.d.ts +1 -1
- package/dist/types/packages/client/browser/src/proxy/pluginsManager.d.ts +1 -1
- package/dist/types/packages/client/browser/src/proxy/systemManager.d.ts +1 -1
- package/dist/types/server/src/proxy/types.d.ts +3 -3
- package/package.json +1 -1
|
@@ -19,7 +19,7 @@ export declare class CameraDeviceClient extends BrowserCameraDeviceBase {
|
|
|
19
19
|
constructor(camera: Camera, logger: BaseLogger, options: {
|
|
20
20
|
servers: string;
|
|
21
21
|
user: string;
|
|
22
|
-
|
|
22
|
+
pass: string;
|
|
23
23
|
});
|
|
24
24
|
init(): Promise<void>;
|
|
25
25
|
connect(): Promise<void>;
|
|
@@ -25,7 +25,7 @@ export declare class DeviceManager extends EventEmitter implements DeviceManager
|
|
|
25
25
|
constructor(logger: BaseLogger, options: {
|
|
26
26
|
servers: string;
|
|
27
27
|
user: string;
|
|
28
|
-
|
|
28
|
+
pass: string;
|
|
29
29
|
});
|
|
30
30
|
init(): Promise<void>;
|
|
31
31
|
getCameraById(id: string): Promise<CameraDevice | undefined>;
|
|
@@ -58,15 +58,15 @@ export interface ApiProxyMethods {
|
|
|
58
58
|
export interface ProxyAuth {
|
|
59
59
|
cluster: {
|
|
60
60
|
user: string;
|
|
61
|
-
|
|
61
|
+
pass: string;
|
|
62
62
|
};
|
|
63
63
|
server: {
|
|
64
64
|
user: string;
|
|
65
|
-
|
|
65
|
+
pass: string;
|
|
66
66
|
};
|
|
67
67
|
websocket: {
|
|
68
68
|
user: string;
|
|
69
|
-
|
|
69
|
+
pass: string;
|
|
70
70
|
};
|
|
71
71
|
}
|
|
72
72
|
export interface DeviceManagerListenerMessagePayload {
|