@camera.ui/browser 0.0.117 → 0.0.119

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/README.md CHANGED
@@ -7,4 +7,4 @@ The camera.ui browser client — Vue composables and reactive state for talking
7
7
 
8
8
  ---
9
9
 
10
- *Part of the camera.ui ecosystem - A comprehensive camera management solution.*
10
+ _Part of the camera.ui ecosystem - A comprehensive camera management solution._
package/dist/index.d.ts CHANGED
@@ -256,6 +256,7 @@ export declare interface CodecCompatibility {
256
256
  export declare interface CoreManagerInterface {
257
257
  getFFmpegPath(): Promise<string>;
258
258
  getServerAddresses(): Promise<string[]>;
259
+ getCloudServerId(): Promise<string>;
259
260
  getPlugin(pluginName: string): Promise<PluginInfo | undefined>;
260
261
  getPluginsByInterface(interfaceName: PluginInterface): Promise<PluginInfo[]>;
261
262
  }
package/dist/index.js CHANGED
@@ -3324,7 +3324,7 @@ var StreamManager = class {
3324
3324
  videoElementRef,
3325
3325
  cameraDeviceRef,
3326
3326
  containerElementRef,
3327
- consumerContainerRefs: new Set([containerElementRef]),
3327
+ consumerContainerRefs: /* @__PURE__ */ new Set([containerElementRef]),
3328
3328
  sharedVideoElement,
3329
3329
  mediaStream: null,
3330
3330
  refCount: 1
@@ -3979,7 +3979,8 @@ function useCoreManager() {
3979
3979
  return {
3980
3980
  getFFmpegPath: () => rpcCall(ctx.rpc, (rpc) => proxy(rpc).getFFmpegPath()),
3981
3981
  getServerAddresses: () => rpcCall(ctx.rpc, (rpc) => proxy(rpc).getServerAddresses()),
3982
- getPluginsByInterface: (interfaceName) => rpcCall(ctx.rpc, (rpc) => proxy(rpc).getPluginsByInterface(interfaceName))
3982
+ getPluginsByInterface: (interfaceName) => rpcCall(ctx.rpc, (rpc) => proxy(rpc).getPluginsByInterface(interfaceName)),
3983
+ getCloudServerId: () => rpcCall(ctx.rpc, (rpc) => proxy(rpc).getCloudServerId())
3983
3984
  };
3984
3985
  }
3985
3986
  //#endregion
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@camera.ui/browser",
3
- "version": "0.0.117",
3
+ "version": "0.0.119",
4
4
  "description": "camera.ui browser client",
5
5
  "author": "seydx (https://github.com/cameraui/clients)",
6
6
  "type": "module",
@@ -30,39 +30,39 @@
30
30
  },
31
31
  "peerDependencies": {
32
32
  "@camera.ui/rpc": ">=1.0.4",
33
- "@camera.ui/sdk": ">=0.0.7",
33
+ "@camera.ui/sdk": ">=0.0.8",
34
34
  "@camera.ui/transport": ">=0.0.1",
35
35
  "@vueuse/core": ">=14.3.0",
36
- "vue": ">=3.5.38"
36
+ "vue": ">=3.5.39"
37
37
  },
38
38
  "devDependencies": {
39
39
  "@camera.ui/rpc": "^1.0.4",
40
- "@camera.ui/sdk": "~0.0.7",
40
+ "@camera.ui/sdk": "~0.0.8",
41
41
  "@camera.ui/transport": "file:../../packages/transport",
42
42
  "@eneris/push-receiver": "^4.3.1",
43
43
  "@microsoft/api-extractor": "^7.58.9",
44
44
  "@stylistic/eslint-plugin": "^5.10.0",
45
45
  "@types/webrtc": "^0.0.47",
46
- "@typescript-eslint/parser": "^8.61.1",
46
+ "@typescript-eslint/parser": "^8.62.0",
47
47
  "@vitejs/plugin-vue": "^6.0.7",
48
48
  "@vue/eslint-config-prettier": "^10.2.0",
49
- "@vue/eslint-config-typescript": "^14.8.0",
49
+ "@vue/eslint-config-typescript": "^14.9.0",
50
50
  "@vue/language-core": "^3.3.5",
51
51
  "@vue/tsconfig": "^0.9.1",
52
52
  "@vueuse/core": "^14.3.0",
53
- "@webgpu/types": "^0.1.70",
53
+ "@webgpu/types": "^0.1.71",
54
54
  "eslint": "9.39.2",
55
55
  "eslint-plugin-vue": "^10.9.2",
56
- "globals": "^17.6.0",
57
- "prettier": "^3.8.4",
56
+ "globals": "^17.7.0",
57
+ "prettier": "^3.8.5",
58
58
  "rimraf": "^6.1.3",
59
59
  "typescript": "5.9.3",
60
- "typescript-eslint": "^8.61.1",
61
- "unplugin-dts": "^1.0.2",
60
+ "typescript-eslint": "^8.62.0",
61
+ "unplugin-dts": "^1.0.3",
62
62
  "updates": "^17.18.0",
63
- "vite": "^8.0.16",
63
+ "vite": "^8.1.0",
64
64
  "vitest": "^4.1.9",
65
- "vue": "^3.5.38",
65
+ "vue": "^3.5.39",
66
66
  "vue-tsc": "^3.3.5"
67
67
  },
68
68
  "overrides": {