@stream-io/video-client 1.24.0 → 1.25.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.
Files changed (48) hide show
  1. package/CHANGELOG.md +20 -0
  2. package/dist/index.browser.es.js +367 -128
  3. package/dist/index.browser.es.js.map +1 -1
  4. package/dist/index.cjs.js +366 -127
  5. package/dist/index.cjs.js.map +1 -1
  6. package/dist/index.es.js +367 -128
  7. package/dist/index.es.js.map +1 -1
  8. package/dist/src/StreamSfuClient.d.ts +12 -4
  9. package/dist/src/StreamVideoClient.d.ts +3 -1
  10. package/dist/src/coordinator/connection/errors.d.ts +1 -0
  11. package/dist/src/devices/InputMediaDeviceManager.d.ts +2 -0
  12. package/dist/src/devices/MicrophoneManager.d.ts +1 -0
  13. package/dist/src/devices/ScreenShareManager.d.ts +1 -0
  14. package/dist/src/devices/SpeakerManager.d.ts +2 -0
  15. package/dist/src/gen/video/sfu/models/models.d.ts +4 -0
  16. package/dist/src/rtc/BasePeerConnection.d.ts +23 -4
  17. package/dist/src/rtc/NegotiationError.d.ts +15 -0
  18. package/dist/src/rtc/Publisher.d.ts +2 -2
  19. package/dist/src/rtc/helpers/sdp.d.ts +7 -0
  20. package/dist/src/types.d.ts +11 -0
  21. package/package.json +1 -1
  22. package/src/Call.ts +72 -38
  23. package/src/StreamSfuClient.ts +17 -7
  24. package/src/StreamVideoClient.ts +17 -7
  25. package/src/coordinator/connection/connection.ts +2 -1
  26. package/src/coordinator/connection/errors.ts +31 -0
  27. package/src/devices/CameraManagerState.ts +1 -1
  28. package/src/devices/InputMediaDeviceManager.ts +13 -0
  29. package/src/devices/MicrophoneManager.ts +3 -0
  30. package/src/devices/ScreenShareManager.ts +18 -5
  31. package/src/devices/SpeakerManager.ts +13 -0
  32. package/src/devices/devices.ts +23 -12
  33. package/src/events/__tests__/internal.test.ts +1 -0
  34. package/src/gen/google/protobuf/struct.ts +2 -2
  35. package/src/gen/google/protobuf/timestamp.ts +1 -1
  36. package/src/gen/video/sfu/event/events.ts +15 -15
  37. package/src/gen/video/sfu/models/models.ts +9 -5
  38. package/src/gen/video/sfu/signal_rpc/signal.client.ts +1 -1
  39. package/src/gen/video/sfu/signal_rpc/signal.ts +6 -6
  40. package/src/rtc/BasePeerConnection.ts +132 -46
  41. package/src/rtc/NegotiationError.ts +21 -0
  42. package/src/rtc/Publisher.ts +12 -9
  43. package/src/rtc/Subscriber.ts +8 -2
  44. package/src/rtc/__tests__/Publisher.test.ts +160 -17
  45. package/src/rtc/__tests__/Subscriber.test.ts +31 -14
  46. package/src/rtc/helpers/__tests__/sdp.stereo.test.ts +120 -0
  47. package/src/rtc/helpers/sdp.ts +43 -1
  48. package/src/types.ts +12 -0
package/CHANGELOG.md CHANGED
@@ -2,6 +2,26 @@
2
2
 
3
3
  This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
4
 
5
+ ## [1.25.1](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.25.0...@stream-io/video-client-1.25.1) (2025-06-30)
6
+
7
+ ### Bug Fixes
8
+
9
+ - correctly setup and dispose device managers ([#1836](https://github.com/GetStream/stream-video-js/issues/1836)) ([92fbe6c](https://github.com/GetStream/stream-video-js/commit/92fbe6c1da3bf06847244f430652bdc9433533bf))
10
+
11
+ ## [1.25.0](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.24.0...@stream-io/video-client-1.25.0) (2025-06-20)
12
+
13
+ - upgrade stream deps and improve API error code logging ([#1827](https://github.com/GetStream/stream-video-js/issues/1827)) ([8c30fef](https://github.com/GetStream/stream-video-js/commit/8c30fef80d78055f5adeae02f7347c1c3fe49b72)), closes [#1826](https://github.com/GetStream/stream-video-js/issues/1826)
14
+
15
+ ### Features
16
+
17
+ - stereo support ([#1833](https://github.com/GetStream/stream-video-js/issues/1833)) ([389b2f2](https://github.com/GetStream/stream-video-js/commit/389b2f2f0d7e4098b916a18b7c079d7029e35949))
18
+ - Support for Screen Share content hinting ([#1834](https://github.com/GetStream/stream-video-js/issues/1834)) ([a09ff78](https://github.com/GetStream/stream-video-js/commit/a09ff78e8c5a78ea435bec17dfd5b2b63ef5c78d))
19
+
20
+ ### Bug Fixes
21
+
22
+ - multiple FAST reconnect attempts and improved ICE restarts ([#1811](https://github.com/GetStream/stream-video-js/issues/1811)) ([f64c922](https://github.com/GetStream/stream-video-js/commit/f64c92292dcc6d216acb130ad51347449968f420))
23
+ - ringing call fixes and support for pronto ([#1823](https://github.com/GetStream/stream-video-js/issues/1823)) ([c0414f8](https://github.com/GetStream/stream-video-js/commit/c0414f88ec7dd42ad35991565f9d337ea7e0fc6d))
24
+
5
25
  ## [1.24.0](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.23.5...@stream-io/video-client-1.24.0) (2025-06-12)
6
26
 
7
27
  ### Features