@stream-io/video-client 1.18.8 → 1.19.0

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 +15 -0
  2. package/dist/index.browser.es.js +2629 -2310
  3. package/dist/index.browser.es.js.map +1 -1
  4. package/dist/index.cjs.js +2629 -2309
  5. package/dist/index.cjs.js.map +1 -1
  6. package/dist/index.d.ts +1 -0
  7. package/dist/index.es.js +2629 -2310
  8. package/dist/index.es.js.map +1 -1
  9. package/dist/src/Call.d.ts +3 -0
  10. package/dist/src/StreamSfuClient.d.ts +9 -2
  11. package/dist/src/gen/coordinator/index.d.ts +266 -5
  12. package/dist/src/gen/google/protobuf/struct.d.ts +1 -3
  13. package/dist/src/gen/google/protobuf/timestamp.d.ts +1 -3
  14. package/dist/src/gen/video/sfu/event/events.d.ts +6 -0
  15. package/dist/src/gen/video/sfu/models/models.d.ts +46 -0
  16. package/dist/src/gen/video/sfu/signal_rpc/signal.d.ts +13 -1
  17. package/dist/src/rpc/createClient.d.ts +2 -0
  18. package/dist/src/rtc/BasePeerConnection.d.ts +10 -3
  19. package/dist/src/stats/index.d.ts +2 -0
  20. package/dist/src/stats/rtc/Tracer.d.ts +15 -0
  21. package/dist/src/stats/rtc/index.d.ts +2 -0
  22. package/dist/src/stats/rtc/mediaDevices.d.ts +2 -0
  23. package/dist/src/stats/rtc/pc.d.ts +2 -0
  24. package/dist/src/stats/rtc/types.d.ts +8 -0
  25. package/dist/src/store/CallState.d.ts +5 -0
  26. package/index.ts +4 -0
  27. package/package.json +1 -1
  28. package/src/Call.ts +54 -29
  29. package/src/StreamSfuClient.ts +22 -9
  30. package/src/devices/MicrophoneManager.ts +1 -1
  31. package/src/events/__tests__/internal.test.ts +6 -0
  32. package/src/events/internal.ts +1 -0
  33. package/src/gen/coordinator/index.ts +262 -5
  34. package/src/gen/google/protobuf/struct.ts +13 -8
  35. package/src/gen/google/protobuf/timestamp.ts +10 -8
  36. package/src/gen/video/sfu/event/events.ts +8 -1
  37. package/src/gen/video/sfu/models/models.ts +63 -1
  38. package/src/gen/video/sfu/signal_rpc/signal.client.ts +1 -1
  39. package/src/gen/video/sfu/signal_rpc/signal.ts +27 -1
  40. package/src/rpc/__tests__/createClient.test.ts +38 -0
  41. package/src/rpc/createClient.ts +30 -0
  42. package/src/rtc/BasePeerConnection.ts +22 -4
  43. package/src/rtc/Publisher.ts +3 -2
  44. package/src/rtc/Subscriber.ts +0 -2
  45. package/src/rtc/__tests__/Subscriber.test.ts +1 -0
  46. package/src/rtc/helpers/__tests__/rtcConfiguration.test.ts +1 -0
  47. package/src/rtc/helpers/rtcConfiguration.ts +1 -0
  48. package/src/stats/SfuStatsReporter.ts +36 -12
  49. package/src/stats/index.ts +2 -0
  50. package/src/stats/rtc/Tracer.ts +42 -0
  51. package/src/stats/rtc/index.ts +5 -0
  52. package/src/stats/rtc/mediaDevices.ts +42 -0
  53. package/src/stats/rtc/pc.ts +130 -0
  54. package/src/stats/rtc/types.ts +26 -0
  55. package/src/store/CallState.ts +19 -1
package/CHANGELOG.md CHANGED
@@ -2,6 +2,21 @@
2
2
 
3
3
  This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
4
 
5
+ ## [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)
6
+
7
+
8
+ ### Features
9
+
10
+ * 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))
11
+
12
+ ## [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)
13
+
14
+
15
+ ### Bug Fixes
16
+
17
+ * 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)
18
+ * 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))
19
+
5
20
  ## [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)
6
21
 
7
22