@stream-io/video-client 0.0.22 → 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 +14 -0
- package/dist/index.browser.es.js +5 -2
- package/dist/index.browser.es.js.map +1 -1
- package/dist/index.cjs.js +5 -2
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +5 -2
- 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/Call.ts +5 -1
- package/src/events/callEventHandlers.ts +1 -0
- package/src/gen/coordinator/index.ts +32 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,20 @@
|
|
|
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
|
+
|
|
12
|
+
### [0.0.23](https://github.com/GetStream/stream-video-js/compare/client0.0.22...client0.0.23) (2023-06-22)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
|
|
17
|
+
* navigate to incoming call screen when push notification is tapped ([#697](https://github.com/GetStream/stream-video-js/issues/697)) ([85488a2](https://github.com/GetStream/stream-video-js/commit/85488a213abb0482c7aedefb5c3aa999131c746a))
|
|
18
|
+
|
|
5
19
|
### [0.0.22](https://github.com/GetStream/stream-video-js/compare/client0.0.21...client0.0.22) (2023-06-21)
|
|
6
20
|
|
|
7
21
|
|
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),
|
|
@@ -9277,7 +9278,9 @@ class Call {
|
|
|
9277
9278
|
prevMeta === null || prevMeta === void 0 ? void 0 : prevMeta.settings.ring.incoming_call_timeout_ms,
|
|
9278
9279
|
currentMeta.settings.ring.incoming_call_timeout_ms,
|
|
9279
9280
|
];
|
|
9280
|
-
if (typeof timeoutMs === 'undefined' ||
|
|
9281
|
+
if (typeof timeoutMs === 'undefined' ||
|
|
9282
|
+
timeoutMs === prevTimeoutMs ||
|
|
9283
|
+
timeoutMs === 0)
|
|
9281
9284
|
return;
|
|
9282
9285
|
if (this.dropTimeout)
|
|
9283
9286
|
clearTimeout(this.dropTimeout);
|
|
@@ -11079,7 +11082,7 @@ class StreamClient {
|
|
|
11079
11082
|
}
|
|
11080
11083
|
getUserAgent() {
|
|
11081
11084
|
return (this.userAgent ||
|
|
11082
|
-
`stream-video-javascript-client-${this.node ? 'node' : 'browser'}-${"0.0.
|
|
11085
|
+
`stream-video-javascript-client-${this.node ? 'node' : 'browser'}-${"0.0.23"}`);
|
|
11083
11086
|
}
|
|
11084
11087
|
setUserAgent(userAgent) {
|
|
11085
11088
|
this.userAgent = userAgent;
|