@stream-io/video-client 0.0.23 → 0.0.24
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 +33 -0
- package/package.json +1 -1
- package/src/events/callEventHandlers.ts +1 -0
- package/src/gen/coordinator/index.ts +32 -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.0.24](https://github.com/GetStream/stream-video-js/compare/client0.0.23...client0.0.24) (2023-06-23)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* Add `CallUserMuted` event ([#699](https://github.com/GetStream/stream-video-js/issues/699)) ([41a09e2](https://github.com/GetStream/stream-video-js/commit/41a09e257a9a8cd9b1b45551f35cebb3cd7a048b))
|
|
11
|
+
|
|
5
12
|
### [0.0.23](https://github.com/GetStream/stream-video-js/compare/client0.0.22...client0.0.23) (2023-06-22)
|
|
6
13
|
|
|
7
14
|
|
package/dist/index.browser.es.js
CHANGED
|
@@ -7765,6 +7765,7 @@ const registerEventHandlers = (call, state, dispatcher) => {
|
|
|
7765
7765
|
'call.session_participant_left': watchCallSessionParticipantLeft(state),
|
|
7766
7766
|
'call.unblocked_user': watchUnblockedUser(state),
|
|
7767
7767
|
'call.updated': watchCallUpdated(state),
|
|
7768
|
+
'call.user_muted': () => console.log('call.user_muted received'),
|
|
7768
7769
|
};
|
|
7769
7770
|
const eventHandlers = [
|
|
7770
7771
|
watchChangePublishQuality(dispatcher, call),
|
|
@@ -11081,7 +11082,7 @@ class StreamClient {
|
|
|
11081
11082
|
}
|
|
11082
11083
|
getUserAgent() {
|
|
11083
11084
|
return (this.userAgent ||
|
|
11084
|
-
`stream-video-javascript-client-${this.node ? 'node' : 'browser'}-${"0.0.
|
|
11085
|
+
`stream-video-javascript-client-${this.node ? 'node' : 'browser'}-${"0.0.23"}`);
|
|
11085
11086
|
}
|
|
11086
11087
|
setUserAgent(userAgent) {
|
|
11087
11088
|
this.userAgent = userAgent;
|