@stream-io/video-client 1.18.9 → 1.19.1
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 +16 -7
- package/dist/index.browser.es.js +2612 -2301
- package/dist/index.browser.es.js.map +1 -1
- package/dist/index.cjs.js +2612 -2300
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.es.js +2612 -2301
- package/dist/index.es.js.map +1 -1
- package/dist/src/Call.d.ts +3 -0
- package/dist/src/StreamSfuClient.d.ts +9 -2
- package/dist/src/gen/coordinator/index.d.ts +266 -5
- package/dist/src/gen/google/protobuf/struct.d.ts +1 -3
- package/dist/src/gen/google/protobuf/timestamp.d.ts +1 -3
- package/dist/src/gen/video/sfu/event/events.d.ts +6 -0
- package/dist/src/gen/video/sfu/models/models.d.ts +46 -0
- package/dist/src/gen/video/sfu/signal_rpc/signal.d.ts +13 -1
- package/dist/src/rpc/createClient.d.ts +2 -0
- package/dist/src/rtc/BasePeerConnection.d.ts +10 -3
- package/dist/src/stats/index.d.ts +2 -0
- package/dist/src/stats/rtc/Tracer.d.ts +15 -0
- package/dist/src/stats/rtc/index.d.ts +2 -0
- package/dist/src/stats/rtc/mediaDevices.d.ts +2 -0
- package/dist/src/stats/rtc/pc.d.ts +2 -0
- package/dist/src/stats/rtc/types.d.ts +8 -0
- package/index.ts +4 -0
- package/package.json +1 -1
- package/src/Call.ts +54 -29
- package/src/StreamSfuClient.ts +22 -9
- package/src/devices/MicrophoneManager.ts +5 -2
- package/src/devices/__tests__/MicrophoneManager.test.ts +9 -6
- package/src/devices/__tests__/MicrophoneManagerRN.test.ts +9 -6
- package/src/gen/coordinator/index.ts +262 -5
- package/src/gen/google/protobuf/struct.ts +13 -8
- package/src/gen/google/protobuf/timestamp.ts +10 -8
- package/src/gen/video/sfu/event/events.ts +8 -1
- package/src/gen/video/sfu/models/models.ts +63 -1
- package/src/gen/video/sfu/signal_rpc/signal.client.ts +1 -1
- package/src/gen/video/sfu/signal_rpc/signal.ts +27 -1
- package/src/rpc/__tests__/createClient.test.ts +38 -0
- package/src/rpc/createClient.ts +30 -0
- package/src/rtc/BasePeerConnection.ts +22 -4
- package/src/rtc/Publisher.ts +3 -2
- package/src/rtc/Subscriber.ts +0 -2
- package/src/rtc/__tests__/Subscriber.test.ts +1 -0
- package/src/rtc/helpers/__tests__/rtcConfiguration.test.ts +1 -0
- package/src/rtc/helpers/rtcConfiguration.ts +1 -0
- package/src/stats/SfuStatsReporter.ts +36 -12
- package/src/stats/index.ts +2 -0
- package/src/stats/rtc/Tracer.ts +42 -0
- package/src/stats/rtc/index.ts +5 -0
- package/src/stats/rtc/mediaDevices.ts +42 -0
- package/src/stats/rtc/pc.ts +130 -0
- package/src/stats/rtc/types.ts +26 -0
- package/src/store/CallState.ts +10 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,23 +2,32 @@
|
|
|
2
2
|
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
4
|
|
|
5
|
-
## [1.
|
|
6
|
-
|
|
5
|
+
## [1.19.1](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.19.0...@stream-io/video-client-1.19.1) (2025-04-09)
|
|
7
6
|
|
|
8
7
|
### Bug Fixes
|
|
9
8
|
|
|
10
|
-
|
|
11
|
-
* reset the call state value when "live" ends ([#1740](https://github.com/GetStream/stream-video-js/issues/1740)) ([2123a10](https://github.com/GetStream/stream-video-js/commit/2123a104bb790a7384506fd475b779c02b116edd))
|
|
9
|
+
- add an opt-out for persisted device preferences ([#1753](https://github.com/GetStream/stream-video-js/issues/1753)) ([4d55c3e](https://github.com/GetStream/stream-video-js/commit/4d55c3ee982bcb72beec347489e7c945bb2c63e3))
|
|
12
10
|
|
|
13
|
-
## [1.
|
|
11
|
+
## [1.19.0](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.18.9...@stream-io/video-client-1.19.0) (2025-04-04)
|
|
14
12
|
|
|
13
|
+
### Features
|
|
14
|
+
|
|
15
|
+
- collect more granular RTC stats and RPC tracing ([#1735](https://github.com/GetStream/stream-video-js/issues/1735)) ([e356d6b](https://github.com/GetStream/stream-video-js/commit/e356d6b9fe361c186a5b92de55fabf0598ea4885))
|
|
15
16
|
|
|
16
|
-
|
|
17
|
+
## [1.18.9](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.18.8...@stream-io/video-client-1.18.9) (2025-04-02)
|
|
18
|
+
|
|
19
|
+
### Bug Fixes
|
|
20
|
+
|
|
21
|
+
- pick correct device for speaking while muted detection ([#1744](https://github.com/GetStream/stream-video-js/issues/1744)) ([33044f5](https://github.com/GetStream/stream-video-js/commit/33044f56ec7debba2e14d5a87dde9eaa87a02089)), closes [#1538](https://github.com/GetStream/stream-video-js/issues/1538)
|
|
22
|
+
- reset the call state value when "live" ends ([#1740](https://github.com/GetStream/stream-video-js/issues/1740)) ([2123a10](https://github.com/GetStream/stream-video-js/commit/2123a104bb790a7384506fd475b779c02b116edd))
|
|
23
|
+
|
|
24
|
+
## [1.18.8](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.18.7...@stream-io/video-client-1.18.8) (2025-04-01)
|
|
17
25
|
|
|
26
|
+
- dependency upgrades and cleanup ([#1727](https://github.com/GetStream/stream-video-js/issues/1727)) ([c3b0ede](https://github.com/GetStream/stream-video-js/commit/c3b0ede3ce444c28c51457155e8ccff584c2c1e5))
|
|
18
27
|
|
|
19
28
|
### Bug Fixes
|
|
20
29
|
|
|
21
|
-
|
|
30
|
+
- implement retry logic for call joining process ([#1738](https://github.com/GetStream/stream-video-js/issues/1738)) ([71599c3](https://github.com/GetStream/stream-video-js/commit/71599c3ddda51a247d7933cd6b12ca8fd03d7033))
|
|
22
31
|
|
|
23
32
|
## [1.18.7](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.18.6...@stream-io/video-client-1.18.7) (2025-03-20)
|
|
24
33
|
|