@stream-io/video-client 0.2.0 → 0.2.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/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 +18 -0
- package/dist/version.d.ts +1 -1
- package/package.json +1 -1
- package/src/events/call.ts +1 -0
- package/src/gen/coordinator/index.ts +18 -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
|
+
### [0.2.1](https://github.com/GetStream/stream-video-js/compare/client0.2.0...client0.2.1) (2023-08-07)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* enhanced call session ([#900](https://github.com/GetStream/stream-video-js/issues/900)) ([dd4f1ea](https://github.com/GetStream/stream-video-js/commit/dd4f1ea03dbab0661a8b79dd55f51b0e9477ae75))
|
|
11
|
+
|
|
5
12
|
## [0.2.0](https://github.com/GetStream/stream-video-js/compare/client0.1.11...client0.2.0) (2023-08-07)
|
|
6
13
|
|
|
7
14
|
|
package/dist/index.browser.es.js
CHANGED
|
@@ -8462,6 +8462,7 @@ const watchCallEnded = (call) => {
|
|
|
8462
8462
|
if (call.state.callingState === CallingState.RINGING ||
|
|
8463
8463
|
call.state.callingState === CallingState.JOINED ||
|
|
8464
8464
|
call.state.callingState === CallingState.JOINING) {
|
|
8465
|
+
call.state.setMetadata(event.call);
|
|
8465
8466
|
yield call.leave();
|
|
8466
8467
|
}
|
|
8467
8468
|
});
|
|
@@ -11876,7 +11877,7 @@ class WSConnectionFallback {
|
|
|
11876
11877
|
}
|
|
11877
11878
|
}
|
|
11878
11879
|
|
|
11879
|
-
const version = '0.2.
|
|
11880
|
+
const version = '0.2.1';
|
|
11880
11881
|
|
|
11881
11882
|
const logger = getLogger(['location']);
|
|
11882
11883
|
const HINT_URL = `https://hint.stream-io-video.com/`;
|