@stream-io/video-client 0.3.4 → 0.3.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 -2
- package/dist/index.browser.es.js.map +1 -1
- package/dist/index.cjs.js +2 -2
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +2 -2
- package/dist/index.es.js.map +1 -1
- package/dist/version.d.ts +1 -1
- package/package.json +1 -1
- package/src/__tests__/StreamVideoClient.test.ts +4 -2
- package/src/store/CallState.ts +1 -1
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
|
+
### [0.3.5](https://github.com/GetStream/stream-video-js/compare/client0.3.4...client0.3.5) (2023-08-22)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* Change the backtage default value to true ([#969](https://github.com/GetStream/stream-video-js/issues/969)) ([5aff8b4](https://github.com/GetStream/stream-video-js/commit/5aff8b4695373de660d625a4945e300d1ff90610))
|
|
11
|
+
|
|
5
12
|
### [0.3.4](https://github.com/GetStream/stream-video-js/compare/client0.3.3...client0.3.4) (2023-08-21)
|
|
6
13
|
|
|
7
14
|
|
package/dist/index.browser.es.js
CHANGED
|
@@ -8020,7 +8020,7 @@ class CallState {
|
|
|
8020
8020
|
*
|
|
8021
8021
|
*/
|
|
8022
8022
|
constructor() {
|
|
8023
|
-
this.backstageSubject = new BehaviorSubject(
|
|
8023
|
+
this.backstageSubject = new BehaviorSubject(true);
|
|
8024
8024
|
this.blockedUserIdsSubject = new BehaviorSubject([]);
|
|
8025
8025
|
this.createdAtSubject = new BehaviorSubject(new Date());
|
|
8026
8026
|
this.endedAtSubject = new BehaviorSubject(undefined);
|
|
@@ -12452,7 +12452,7 @@ class WSConnectionFallback {
|
|
|
12452
12452
|
}
|
|
12453
12453
|
}
|
|
12454
12454
|
|
|
12455
|
-
const version = '0.3.
|
|
12455
|
+
const version = '0.3.5';
|
|
12456
12456
|
|
|
12457
12457
|
const logger = getLogger(['location']);
|
|
12458
12458
|
const HINT_URL = `https://hint.stream-io-video.com/`;
|