@stream-io/video-client 1.26.1 → 1.27.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 (55) hide show
  1. package/CHANGELOG.md +18 -0
  2. package/dist/index.browser.es.js +276 -73
  3. package/dist/index.browser.es.js.map +1 -1
  4. package/dist/index.cjs.js +275 -71
  5. package/dist/index.cjs.js.map +1 -1
  6. package/dist/index.es.js +276 -73
  7. package/dist/index.es.js.map +1 -1
  8. package/dist/src/Call.d.ts +14 -2
  9. package/dist/src/StreamSfuClient.d.ts +7 -3
  10. package/dist/src/devices/devices.d.ts +5 -5
  11. package/dist/src/events/internal.d.ts +7 -1
  12. package/dist/src/gen/video/sfu/event/events.d.ts +57 -1
  13. package/dist/src/gen/video/sfu/models/models.d.ts +21 -0
  14. package/dist/src/helpers/array.d.ts +7 -0
  15. package/dist/src/helpers/lazy.d.ts +1 -1
  16. package/dist/src/helpers/participantUtils.d.ts +8 -1
  17. package/dist/src/rtc/BasePeerConnection.d.ts +2 -2
  18. package/dist/src/rtc/Dispatcher.d.ts +1 -1
  19. package/dist/src/rtc/signal.d.ts +1 -1
  20. package/dist/src/stats/rtc/Tracer.d.ts +4 -1
  21. package/dist/src/stats/rtc/types.d.ts +1 -0
  22. package/dist/src/store/CallState.d.ts +2 -1
  23. package/dist/src/timers/index.d.ts +1 -1
  24. package/dist/src/types.d.ts +10 -1
  25. package/package.json +2 -2
  26. package/src/Call.ts +55 -9
  27. package/src/StreamSfuClient.ts +33 -14
  28. package/src/coordinator/connection/connection.ts +0 -2
  29. package/src/devices/CameraManager.ts +1 -1
  30. package/src/devices/InputMediaDeviceManager.ts +5 -3
  31. package/src/devices/MicrophoneManager.ts +2 -1
  32. package/src/devices/SpeakerManager.ts +1 -1
  33. package/src/devices/devices.ts +29 -11
  34. package/src/events/__tests__/internal.test.ts +78 -0
  35. package/src/events/__tests__/participant.test.ts +66 -0
  36. package/src/events/callEventHandlers.ts +2 -0
  37. package/src/events/internal.ts +28 -1
  38. package/src/events/participant.ts +4 -1
  39. package/src/gen/video/sfu/event/events.ts +104 -0
  40. package/src/gen/video/sfu/models/models.ts +21 -0
  41. package/src/helpers/__tests__/participantUtils.test.ts +167 -0
  42. package/src/helpers/array.ts +16 -0
  43. package/src/helpers/lazy.ts +3 -3
  44. package/src/helpers/participantUtils.ts +23 -1
  45. package/src/rtc/BasePeerConnection.ts +6 -5
  46. package/src/rtc/Dispatcher.ts +3 -2
  47. package/src/rtc/__tests__/Publisher.test.ts +3 -2
  48. package/src/rtc/__tests__/Subscriber.test.ts +3 -2
  49. package/src/rtc/__tests__/videoLayers.test.ts +4 -6
  50. package/src/rtc/signal.ts +3 -3
  51. package/src/rtc/videoLayers.ts +12 -6
  52. package/src/stats/rtc/Tracer.ts +19 -1
  53. package/src/stats/rtc/types.ts +1 -0
  54. package/src/store/CallState.ts +7 -4
  55. package/src/types.ts +11 -0
package/CHANGELOG.md CHANGED
@@ -2,6 +2,24 @@
2
2
 
3
3
  This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
4
 
5
+ ## [1.27.1](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.27.0...@stream-io/video-client-1.27.1) (2025-07-25)
6
+
7
+ ### Bug Fixes
8
+
9
+ - improved audio and video filter tracing ([#1862](https://github.com/GetStream/stream-video-js/issues/1862)) ([701ea4b](https://github.com/GetStream/stream-video-js/commit/701ea4b3266f68072c1325b70221fdefd77137ec))
10
+ - synchronize updateMuteState; use correct fallback dimensions ([#1867](https://github.com/GetStream/stream-video-js/issues/1867)) ([154cdda](https://github.com/GetStream/stream-video-js/commit/154cddaa4462ee03af5fdf4929ad9f4e3d4b5070))
11
+ - trace available devices and thermal state changes ([#1866](https://github.com/GetStream/stream-video-js/issues/1866)) ([d8312b5](https://github.com/GetStream/stream-video-js/commit/d8312b5c109b14baa28ee764202d387499d0fd52))
12
+
13
+ ## [1.27.0](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.26.1...@stream-io/video-client-1.27.0) (2025-07-18)
14
+
15
+ ### Features
16
+
17
+ - Inbound Video Pause ([#1841](https://github.com/GetStream/stream-video-js/issues/1841)) ([5c7eb3a](https://github.com/GetStream/stream-video-js/commit/5c7eb3ac8b0fcfd663226d537279c8a941dedc21))
18
+
19
+ ### Bug Fixes
20
+
21
+ - more graceful handling of SFU join failures ([#1853](https://github.com/GetStream/stream-video-js/issues/1853)) ([f38a4b5](https://github.com/GetStream/stream-video-js/commit/f38a4b5eef62210b08424640040a88065b680707))
22
+
5
23
  ## [1.26.1](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.26.0...@stream-io/video-client-1.26.1) (2025-07-17)
6
24
 
7
25
  ### Bug Fixes