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