@stream-io/video-client 1.2.1 → 1.2.2
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 -1
- package/dist/index.browser.es.js.map +1 -1
- package/dist/index.cjs.js +3 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +3 -1
- package/dist/index.es.js.map +1 -1
- package/dist/src/gen/coordinator/index.d.ts +154 -1
- package/package.json +1 -1
- package/src/Call.ts +2 -1
- package/src/gen/coordinator/index.ts +151 -1
- package/src/store/CallState.ts +1 -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.2.2](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.2.1...@stream-io/video-client-1.2.2) (2024-06-04)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* align with the latest openapi ([#1384](https://github.com/GetStream/stream-video-js/issues/1384)) ([7c37e83](https://github.com/GetStream/stream-video-js/commit/7c37e8363ffc7e17e59de8357a2ed769e074bd8d))
|
|
11
|
+
|
|
5
12
|
### [1.2.1](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.2.0...@stream-io/video-client-1.2.1) (2024-06-04)
|
|
6
13
|
|
|
7
14
|
|
package/dist/index.browser.es.js
CHANGED
|
@@ -79,6 +79,7 @@ const NoiseCancellationSettingsModeEnum = {
|
|
|
79
79
|
*/
|
|
80
80
|
const OwnCapability = {
|
|
81
81
|
BLOCK_USERS: 'block-users',
|
|
82
|
+
CHANGE_MAX_DURATION: 'change-max-duration',
|
|
82
83
|
CREATE_CALL: 'create-call',
|
|
83
84
|
CREATE_REACTION: 'create-reaction',
|
|
84
85
|
ENABLE_NOISE_CANCELLATION: 'enable-noise-cancellation',
|
|
@@ -7638,6 +7639,7 @@ class CallState {
|
|
|
7638
7639
|
'call.recording_stopped': () => this.setCurrentValue(this.recordingSubject, false),
|
|
7639
7640
|
'call.rejected': (e) => this.updateFromCallResponse(e.call),
|
|
7640
7641
|
'call.ring': (e) => this.updateFromCallResponse(e.call),
|
|
7642
|
+
'call.missed': (e) => this.updateFromCallResponse(e.call),
|
|
7641
7643
|
'call.session_ended': (e) => this.updateFromCallResponse(e.call),
|
|
7642
7644
|
'call.session_participant_joined': this.updateFromSessionParticipantJoined,
|
|
7643
7645
|
'call.session_participant_left': this.updateFromSessionParticipantLeft,
|
|
@@ -15289,7 +15291,7 @@ class StreamClient {
|
|
|
15289
15291
|
});
|
|
15290
15292
|
};
|
|
15291
15293
|
this.getUserAgent = () => {
|
|
15292
|
-
const version = "1.2.
|
|
15294
|
+
const version = "1.2.2" ;
|
|
15293
15295
|
return (this.userAgent ||
|
|
15294
15296
|
`stream-video-javascript-client-${this.node ? 'node' : 'browser'}-${version}`);
|
|
15295
15297
|
};
|