@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/dist/index.es.js
CHANGED
|
@@ -7768,6 +7768,7 @@ const registerEventHandlers = (call, state, dispatcher) => {
|
|
|
7768
7768
|
'call.session_participant_left': watchCallSessionParticipantLeft(state),
|
|
7769
7769
|
'call.unblocked_user': watchUnblockedUser(state),
|
|
7770
7770
|
'call.updated': watchCallUpdated(state),
|
|
7771
|
+
'call.user_muted': () => console.log('call.user_muted received'),
|
|
7771
7772
|
};
|
|
7772
7773
|
const eventHandlers = [
|
|
7773
7774
|
watchChangePublishQuality(dispatcher, call),
|
|
@@ -11085,7 +11086,7 @@ class StreamClient {
|
|
|
11085
11086
|
}
|
|
11086
11087
|
getUserAgent() {
|
|
11087
11088
|
return (this.userAgent ||
|
|
11088
|
-
`stream-video-javascript-client-${this.node ? 'node' : 'browser'}-${"0.0.
|
|
11089
|
+
`stream-video-javascript-client-${this.node ? 'node' : 'browser'}-${"0.0.23"}`);
|
|
11089
11090
|
}
|
|
11090
11091
|
setUserAgent(userAgent) {
|
|
11091
11092
|
this.userAgent = userAgent;
|