@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/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.22"}`);
11090
+ `stream-video-javascript-client-${this.node ? 'node' : 'browser'}-${"0.0.23"}`);
11090
11091
  }
11091
11092
  setUserAgent(userAgent) {
11092
11093
  this.userAgent = userAgent;