@stream-io/video-react-bindings 1.13.10-beta.1 → 1.13.11

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/CHANGELOG.md CHANGED
@@ -2,6 +2,18 @@
2
2
 
3
3
  This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
4
 
5
+ ## [1.13.11](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-bindings-1.13.10...@stream-io/video-react-bindings-1.13.11) (2026-03-06)
6
+
7
+ ### Dependency Updates
8
+
9
+ - `@stream-io/video-client` updated to version `1.44.2`
10
+
11
+ ## [1.13.10](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-bindings-1.13.9...@stream-io/video-react-bindings-1.13.10) (2026-03-04)
12
+
13
+ ### Dependency Updates
14
+
15
+ - `@stream-io/video-client` updated to version `1.44.1`
16
+
5
17
  ## [1.13.9](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-bindings-1.13.8...@stream-io/video-react-bindings-1.13.9) (2026-02-27)
6
18
 
7
19
  ### Dependency Updates
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stream-io/video-react-bindings",
3
- "version": "1.13.10-beta.1",
3
+ "version": "1.13.11",
4
4
  "main": "./dist/index.cjs.js",
5
5
  "module": "./dist/index.es.js",
6
6
  "types": "./dist/index.d.ts",
@@ -30,12 +30,12 @@
30
30
  "rxjs": "~7.8.2"
31
31
  },
32
32
  "peerDependencies": {
33
- "@stream-io/video-client": "^1.44.1-beta.1",
33
+ "@stream-io/video-client": "^1.44.2",
34
34
  "react": "^17 || ^18 || ^19"
35
35
  },
36
36
  "devDependencies": {
37
37
  "@rollup/plugin-typescript": "^12.1.4",
38
- "@stream-io/video-client": "^1.44.1-beta.1",
38
+ "@stream-io/video-client": "^1.44.2",
39
39
  "@types/react": "~19.1.17",
40
40
  "react": "19.1.0",
41
41
  "rimraf": "^6.0.1",
@@ -1,15 +0,0 @@
1
- import { OwnCapability } from '@stream-io/video-client';
2
- /**
3
- * Hook that returns true if the local participant has all the given permissions.
4
- *
5
- * @param permissions the permissions to check.
6
- *
7
- * @category Call State
8
- */
9
- export declare const useHasPermissions: (...permissions: OwnCapability[]) => boolean;
10
- /**
11
- * A hook which returns the local participant's own capabilities.
12
- *
13
- * @category Call State
14
- */
15
- export declare const useOwnCapabilities: () => OwnCapability[] | undefined;
@@ -1,2 +0,0 @@
1
- import { TranslationsMap, TranslationsRegistry } from './types';
2
- export declare const mapToRegistry: (translationsMap: TranslationsMap, namespace: string) => TranslationsRegistry;