@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.es.js
CHANGED
|
@@ -8023,7 +8023,7 @@ class CallState {
|
|
|
8023
8023
|
*
|
|
8024
8024
|
*/
|
|
8025
8025
|
constructor() {
|
|
8026
|
-
this.backstageSubject = new BehaviorSubject(
|
|
8026
|
+
this.backstageSubject = new BehaviorSubject(true);
|
|
8027
8027
|
this.blockedUserIdsSubject = new BehaviorSubject([]);
|
|
8028
8028
|
this.createdAtSubject = new BehaviorSubject(new Date());
|
|
8029
8029
|
this.endedAtSubject = new BehaviorSubject(undefined);
|
|
@@ -12456,7 +12456,7 @@ class WSConnectionFallback {
|
|
|
12456
12456
|
}
|
|
12457
12457
|
}
|
|
12458
12458
|
|
|
12459
|
-
const version = '0.3.
|
|
12459
|
+
const version = '0.3.5';
|
|
12460
12460
|
|
|
12461
12461
|
const logger = getLogger(['location']);
|
|
12462
12462
|
const HINT_URL = `https://hint.stream-io-video.com/`;
|