@stream-io/video-client 1.43.0-beta.0 → 1.44.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 (47) hide show
  1. package/CHANGELOG.md +28 -0
  2. package/dist/index.browser.es.js +288 -128
  3. package/dist/index.browser.es.js.map +1 -1
  4. package/dist/index.cjs.js +287 -127
  5. package/dist/index.cjs.js.map +1 -1
  6. package/dist/index.es.js +288 -128
  7. package/dist/index.es.js.map +1 -1
  8. package/dist/src/Call.d.ts +41 -1
  9. package/dist/src/StreamVideoClient.d.ts +2 -8
  10. package/dist/src/coordinator/connection/types.d.ts +5 -0
  11. package/dist/src/devices/CameraManager.d.ts +7 -2
  12. package/dist/src/devices/DeviceManager.d.ts +7 -15
  13. package/dist/src/devices/MicrophoneManager.d.ts +2 -1
  14. package/dist/src/devices/SpeakerManager.d.ts +6 -1
  15. package/dist/src/devices/devicePersistence.d.ts +27 -0
  16. package/dist/src/helpers/clientUtils.d.ts +1 -1
  17. package/dist/src/permissions/PermissionsContext.d.ts +1 -1
  18. package/dist/src/types.d.ts +43 -38
  19. package/package.json +3 -3
  20. package/src/Call.ts +120 -81
  21. package/src/StreamVideoClient.ts +1 -9
  22. package/src/coordinator/connection/types.ts +6 -0
  23. package/src/devices/CameraManager.ts +31 -11
  24. package/src/devices/DeviceManager.ts +113 -31
  25. package/src/devices/MicrophoneManager.ts +26 -8
  26. package/src/devices/ScreenShareManager.ts +7 -1
  27. package/src/devices/SpeakerManager.ts +62 -19
  28. package/src/devices/__tests__/CameraManager.test.ts +184 -21
  29. package/src/devices/__tests__/DeviceManager.test.ts +184 -2
  30. package/src/devices/__tests__/DeviceManagerFilters.test.ts +2 -0
  31. package/src/devices/__tests__/MicrophoneManager.test.ts +146 -2
  32. package/src/devices/__tests__/MicrophoneManagerRN.test.ts +2 -0
  33. package/src/devices/__tests__/ScreenShareManager.test.ts +2 -0
  34. package/src/devices/__tests__/SpeakerManager.test.ts +90 -0
  35. package/src/devices/__tests__/devicePersistence.test.ts +142 -0
  36. package/src/devices/__tests__/devices.test.ts +390 -0
  37. package/src/devices/__tests__/mediaStreamTestHelpers.ts +58 -0
  38. package/src/devices/__tests__/mocks.ts +35 -0
  39. package/src/devices/devicePersistence.ts +106 -0
  40. package/src/devices/devices.ts +3 -3
  41. package/src/events/call.ts +0 -3
  42. package/src/helpers/__tests__/DynascaleManager.test.ts +3 -1
  43. package/src/helpers/clientUtils.ts +1 -1
  44. package/src/permissions/PermissionsContext.ts +1 -0
  45. package/src/sorting/presets.ts +1 -1
  46. package/src/store/CallState.ts +1 -1
  47. package/src/types.ts +54 -49
package/CHANGELOG.md CHANGED
@@ -2,6 +2,34 @@
2
2
 
3
3
  This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
4
 
5
+ ## [1.44.0](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.43.0...@stream-io/video-client-1.44.0) (2026-02-27)
6
+
7
+ - update agent instructions [skip ci] ([9cec4c6](https://github.com/GetStream/stream-video-js/commit/9cec4c6431ff51549fcfc870a0df935b0b8aa850))
8
+
9
+ ### Features
10
+
11
+ - **react:** Deprecate usePersistedDevicePreferences and move the logic to the SDK core ([#2108](https://github.com/GetStream/stream-video-js/issues/2108)) ([7bbbd93](https://github.com/GetStream/stream-video-js/commit/7bbbd93bdd93dd4ebed02c089b6a4ab8423135fd))
12
+ - **react:** Embeddable/pre-built video components ([#2117](https://github.com/GetStream/stream-video-js/issues/2117)) ([11b4b9f](https://github.com/GetStream/stream-video-js/commit/11b4b9f0438877a5917c95117474cedc1f693907))
13
+
14
+ ### Bug Fixes
15
+
16
+ - allow anonymous StreamVideoClientOptions to accept token fields ([#2142](https://github.com/GetStream/stream-video-js/issues/2142)) ([165a9c3](https://github.com/GetStream/stream-video-js/commit/165a9c305dda6cae0fde78c446825a7da11f302c)), closes [#2138](https://github.com/GetStream/stream-video-js/issues/2138)
17
+ - Allow guest and anonymous users without auth options ([#2140](https://github.com/GetStream/stream-video-js/issues/2140)) ([12749ae](https://github.com/GetStream/stream-video-js/commit/12749ae2552a2b8c0442cb8beaa34e13f66cc7e6)), closes [#2138](https://github.com/GetStream/stream-video-js/issues/2138)
18
+ - Strengthen StreamVideoClientOptions types and align React sample apps ([#2138](https://github.com/GetStream/stream-video-js/issues/2138)) ([915f990](https://github.com/GetStream/stream-video-js/commit/915f9904e045f61593c7328f790cd54516c80213))
19
+
20
+ ## [1.43.0](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.42.3...@stream-io/video-client-1.43.0) (2026-02-20)
21
+
22
+ - **client:** trace updatePublishOptions overrides ([#2136](https://github.com/GetStream/stream-video-js/issues/2136)) ([bcc1e92](https://github.com/GetStream/stream-video-js/commit/bcc1e92ac89374324a57d1df85be38a2661a4c53))
23
+
24
+ ### Features
25
+
26
+ - **client:** add list recording APIs and deprecate query methods ([#2135](https://github.com/GetStream/stream-video-js/issues/2135)) ([5331cb5](https://github.com/GetStream/stream-video-js/commit/5331cb5205466dc052c729fb07d84209208af362))
27
+
28
+ ### Bug Fixes
29
+
30
+ - **client:** harden flat-line no-audio detection ([#2131](https://github.com/GetStream/stream-video-js/issues/2131)) ([9c2aa22](https://github.com/GetStream/stream-video-js/commit/9c2aa222b189c5e24510430dfddbf164555abf1c))
31
+ - **client:** prevent stale speaking-while-muted detector ([#2130](https://github.com/GetStream/stream-video-js/issues/2130)) ([e5c408d](https://github.com/GetStream/stream-video-js/commit/e5c408d73de1b8f20e775642b0b19eb0ffd979a8))
32
+
5
33
  ## [1.42.3](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-1.42.2...@stream-io/video-client-1.42.3) (2026-02-16)
6
34
 
7
35
  ### Bug Fixes