@stream-io/video-react-sdk 1.18.0 → 1.18.1
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stream-io/video-react-sdk",
|
|
3
|
-
"version": "1.18.
|
|
3
|
+
"version": "1.18.1",
|
|
4
4
|
"main": "./dist/index.cjs.js",
|
|
5
5
|
"module": "./dist/index.es.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"@rollup/plugin-json": "^6.1.0",
|
|
46
46
|
"@rollup/plugin-replace": "^6.0.2",
|
|
47
47
|
"@rollup/plugin-typescript": "^12.1.2",
|
|
48
|
-
"@stream-io/audio-filters-web": "^0.4.
|
|
48
|
+
"@stream-io/audio-filters-web": "^0.4.1",
|
|
49
49
|
"@stream-io/video-styling": "^1.2.0",
|
|
50
50
|
"@types/react": "^19.1.3",
|
|
51
51
|
"@types/react-dom": "^19.1.3",
|
|
@@ -111,7 +111,7 @@ export const NoiseCancellationProvider = (
|
|
|
111
111
|
noiseCancellation.isEnabled().then((e) => setIsEnabled(e));
|
|
112
112
|
const unsubscribe = noiseCancellation.on('change', (v) => setIsEnabled(v));
|
|
113
113
|
const init = (deinit.current || Promise.resolve())
|
|
114
|
-
.then(() => noiseCancellation.init())
|
|
114
|
+
.then(() => noiseCancellation.init({ tracer: call.tracer }))
|
|
115
115
|
.then(() => call.microphone.enableNoiseCancellation(noiseCancellation))
|
|
116
116
|
.catch((e) => console.error(`Can't initialize noise cancellation`, e));
|
|
117
117
|
|