@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/dist/index.cjs.js
CHANGED
|
@@ -8043,7 +8043,7 @@ class CallState {
|
|
|
8043
8043
|
*
|
|
8044
8044
|
*/
|
|
8045
8045
|
constructor() {
|
|
8046
|
-
this.backstageSubject = new rxjs.BehaviorSubject(
|
|
8046
|
+
this.backstageSubject = new rxjs.BehaviorSubject(true);
|
|
8047
8047
|
this.blockedUserIdsSubject = new rxjs.BehaviorSubject([]);
|
|
8048
8048
|
this.createdAtSubject = new rxjs.BehaviorSubject(new Date());
|
|
8049
8049
|
this.endedAtSubject = new rxjs.BehaviorSubject(undefined);
|
|
@@ -12476,7 +12476,7 @@ class WSConnectionFallback {
|
|
|
12476
12476
|
}
|
|
12477
12477
|
}
|
|
12478
12478
|
|
|
12479
|
-
const version = '0.3.
|
|
12479
|
+
const version = '0.3.5';
|
|
12480
12480
|
|
|
12481
12481
|
const logger = getLogger(['location']);
|
|
12482
12482
|
const HINT_URL = `https://hint.stream-io-video.com/`;
|