@stream-io/video-client 1.0.4 → 1.0.5
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 +7 -0
- package/dist/index.browser.es.js +2 -1
- package/dist/index.browser.es.js.map +1 -1
- package/dist/index.cjs.js +2 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +2 -1
- package/dist/index.es.js.map +1 -1
- package/dist/src/gen/coordinator/index.d.ts +214 -0
- package/package.json +1 -1
- package/src/devices/InputMediaDeviceManager.ts +1 -0
- package/src/gen/coordinator/index.ts +214 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
4
|
|
|
5
|
+
### [1.0.5](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.0.4...@stream-io/video-client-1.0.5) (2024-05-16)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* correctly handle pending state reset ([4ea47da](https://github.com/GetStream/stream-video-js/commit/4ea47da969f00925e1df144ec2f33cd07ac2f63f))
|
|
11
|
+
|
|
5
12
|
### [1.0.4](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.0.3...@stream-io/video-client-1.0.4) (2024-05-14)
|
|
6
13
|
|
|
7
14
|
|
package/dist/index.browser.es.js
CHANGED
|
@@ -11213,6 +11213,7 @@ class InputMediaDeviceManager {
|
|
|
11213
11213
|
resetStatusChangeRequest() {
|
|
11214
11214
|
this.statusChangePromise = undefined;
|
|
11215
11215
|
this.statusChangeAbortController = undefined;
|
|
11216
|
+
this.state.setPendingStatus(this.state.status);
|
|
11216
11217
|
}
|
|
11217
11218
|
}
|
|
11218
11219
|
|
|
@@ -15203,7 +15204,7 @@ class StreamClient {
|
|
|
15203
15204
|
});
|
|
15204
15205
|
};
|
|
15205
15206
|
this.getUserAgent = () => {
|
|
15206
|
-
const version = "1.0.
|
|
15207
|
+
const version = "1.0.5" ;
|
|
15207
15208
|
return (this.userAgent ||
|
|
15208
15209
|
`stream-video-javascript-client-${this.node ? 'node' : 'browser'}-${version}`);
|
|
15209
15210
|
};
|