@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.
@@ -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
- password: string;
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
- password: string;
28
+ pass: string;
29
29
  });
30
30
  init(): Promise<void>;
31
31
  getCameraById(id: string): Promise<CameraDevice | undefined>;
@@ -23,7 +23,7 @@ export declare class PluginsManager extends EventEmitter implements PluginsManag
23
23
  constructor(logger: BaseLogger, options: {
24
24
  servers: string;
25
25
  user: string;
26
- password: string;
26
+ pass: string;
27
27
  });
28
28
  init(): Promise<void>;
29
29
  emit(): boolean;
@@ -23,7 +23,7 @@ export declare class SystemManager extends EventEmitter implements SystemManager
23
23
  constructor(logger: BaseLogger, options: {
24
24
  servers: string;
25
25
  user: string;
26
- password: string;
26
+ pass: string;
27
27
  });
28
28
  init(): Promise<void>;
29
29
  emit(): boolean;
@@ -58,15 +58,15 @@ export interface ApiProxyMethods {
58
58
  export interface ProxyAuth {
59
59
  cluster: {
60
60
  user: string;
61
- password: string;
61
+ pass: string;
62
62
  };
63
63
  server: {
64
64
  user: string;
65
- password: string;
65
+ pass: string;
66
66
  };
67
67
  websocket: {
68
68
  user: string;
69
- password: string;
69
+ pass: string;
70
70
  };
71
71
  }
72
72
  export interface DeviceManagerListenerMessagePayload {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@camera.ui/browser",
3
- "version": "0.0.63",
3
+ "version": "0.0.64",
4
4
  "description": "camera.ui browser client",
5
5
  "author": "seydx (https://github.com/seydx/camera.ui)",
6
6
  "module": "./dist/bundle.js",