@stream-io/video-react-bindings 1.13.10-beta.0 → 1.13.10
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 +6 -0
- package/package.json +3 -3
- package/dist/src/hooks/permissions.d.ts +0 -15
- package/dist/src/i18n/utils.d.ts +0 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
4
|
|
|
5
|
+
## [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)
|
|
6
|
+
|
|
7
|
+
### Dependency Updates
|
|
8
|
+
|
|
9
|
+
- `@stream-io/video-client` updated to version `1.44.1`
|
|
10
|
+
|
|
5
11
|
## [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
12
|
|
|
7
13
|
### 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
|
|
3
|
+
"version": "1.13.10",
|
|
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
|
|
33
|
+
"@stream-io/video-client": "^1.44.1",
|
|
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
|
|
38
|
+
"@stream-io/video-client": "^1.44.1",
|
|
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;
|
package/dist/src/i18n/utils.d.ts
DELETED