@stream-io/video-client 1.4.7 → 1.4.8
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 +3 -3
- package/dist/index.browser.es.js.map +1 -1
- package/dist/index.cjs.js +3 -3
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +3 -3
- package/dist/index.es.js.map +1 -1
- package/package.json +1 -1
- package/src/store/CallState.ts +2 -1
- package/src/store/__tests__/CallState.test.ts +10 -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.4.8](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.4.7...@stream-io/video-client-1.4.8) (2024-07-31)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* `call.recording_failed` should update the call state ([#1452](https://github.com/GetStream/stream-video-js/issues/1452)) ([439b7f0](https://github.com/GetStream/stream-video-js/commit/439b7f0f53286c4ef3cc05a4bea4b1208e4e490e))
|
|
11
|
+
|
|
5
12
|
### [1.4.7](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.4.6...@stream-io/video-client-1.4.7) (2024-07-30)
|
|
6
13
|
|
|
7
14
|
|
package/dist/index.browser.es.js
CHANGED
|
@@ -6535,7 +6535,7 @@ function getIceCandidate(candidate) {
|
|
|
6535
6535
|
}
|
|
6536
6536
|
}
|
|
6537
6537
|
|
|
6538
|
-
const version = "1.4.
|
|
6538
|
+
const version = "1.4.8" ;
|
|
6539
6539
|
const [major, minor, patch] = version.split('.');
|
|
6540
6540
|
let sdkInfo = {
|
|
6541
6541
|
type: SdkType.PLAIN_JAVASCRIPT,
|
|
@@ -7730,7 +7730,6 @@ class CallState {
|
|
|
7730
7730
|
'call.closed_caption': undefined,
|
|
7731
7731
|
'call.deleted': undefined,
|
|
7732
7732
|
'call.permission_request': undefined,
|
|
7733
|
-
'call.recording_failed': undefined,
|
|
7734
7733
|
'call.recording_ready': undefined,
|
|
7735
7734
|
'call.transcription_ready': undefined,
|
|
7736
7735
|
'call.user_muted': undefined,
|
|
@@ -7770,6 +7769,7 @@ class CallState {
|
|
|
7770
7769
|
'call.reaction_new': this.updateParticipantReaction,
|
|
7771
7770
|
'call.recording_started': () => this.setCurrentValue(this.recordingSubject, true),
|
|
7772
7771
|
'call.recording_stopped': () => this.setCurrentValue(this.recordingSubject, false),
|
|
7772
|
+
'call.recording_failed': () => this.setCurrentValue(this.recordingSubject, false),
|
|
7773
7773
|
'call.rejected': (e) => this.updateFromCallResponse(e.call),
|
|
7774
7774
|
'call.ring': (e) => this.updateFromCallResponse(e.call),
|
|
7775
7775
|
'call.missed': (e) => this.updateFromCallResponse(e.call),
|
|
@@ -15574,7 +15574,7 @@ class StreamClient {
|
|
|
15574
15574
|
});
|
|
15575
15575
|
};
|
|
15576
15576
|
this.getUserAgent = () => {
|
|
15577
|
-
const version = "1.4.
|
|
15577
|
+
const version = "1.4.8" ;
|
|
15578
15578
|
return (this.userAgent ||
|
|
15579
15579
|
`stream-video-javascript-client-${this.node ? 'node' : 'browser'}-${version}`);
|
|
15580
15580
|
};
|