@stream-io/video-client 0.1.2 → 0.1.4

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 (36) hide show
  1. package/CHANGELOG.md +19 -0
  2. package/dist/index.browser.es.js +391 -68
  3. package/dist/index.browser.es.js.map +1 -1
  4. package/dist/index.cjs.js +391 -68
  5. package/dist/index.cjs.js.map +1 -1
  6. package/dist/index.es.js +391 -68
  7. package/dist/index.es.js.map +1 -1
  8. package/dist/src/StreamSfuClient.d.ts +2 -1
  9. package/dist/src/__tests__/StreamVideoClient.test.d.ts +1 -1
  10. package/dist/src/coordinator/connection/client.d.ts +2 -2
  11. package/dist/src/gen/video/sfu/event/events.d.ts +45 -2
  12. package/dist/src/gen/video/sfu/models/models.d.ts +12 -0
  13. package/dist/src/gen/video/sfu/signal_rpc/signal.client.d.ts +9 -1
  14. package/dist/src/gen/video/sfu/signal_rpc/signal.d.ts +42 -0
  15. package/dist/src/rtc/Publisher.d.ts +10 -2
  16. package/dist/src/rtc/Subscriber.d.ts +8 -3
  17. package/dist/version.d.ts +1 -1
  18. package/package.json +1 -1
  19. package/src/Call.ts +2 -0
  20. package/src/StreamSfuClient.ts +16 -5
  21. package/src/__tests__/StreamVideoClient.test.ts +85 -4
  22. package/src/__tests__/StreamVideoServerClient.test.ts +22 -0
  23. package/src/coordinator/connection/client.ts +22 -11
  24. package/src/coordinator/connection/connection.ts +2 -2
  25. package/src/coordinator/connection/connection_fallback.ts +3 -2
  26. package/src/gen/google/protobuf/struct.ts +1 -2
  27. package/src/gen/google/protobuf/timestamp.ts +1 -1
  28. package/src/gen/video/sfu/event/events.ts +165 -5
  29. package/src/gen/video/sfu/models/models.ts +13 -1
  30. package/src/gen/video/sfu/signal_rpc/signal.client.ts +27 -1
  31. package/src/gen/video/sfu/signal_rpc/signal.ts +194 -1
  32. package/src/rtc/Dispatcher.ts +1 -0
  33. package/src/rtc/Publisher.ts +69 -34
  34. package/src/rtc/Subscriber.ts +74 -7
  35. package/src/rtc/__tests__/Publisher.test.ts +82 -2
  36. package/src/rtc/__tests__/Subscriber.test.ts +84 -1
package/CHANGELOG.md CHANGED
@@ -2,6 +2,25 @@
2
2
 
3
3
  This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
4
 
5
+ ### [0.1.4](https://github.com/GetStream/stream-video-js/compare/client0.1.3...client0.1.4) (2023-07-21)
6
+
7
+
8
+ ### Features
9
+
10
+ * ICE Restarts ([#814](https://github.com/GetStream/stream-video-js/issues/814)) ([a03f8cd](https://github.com/GetStream/stream-video-js/commit/a03f8cd8cc90f91fb67c4c80e097eed64ca67715))
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * shorter thresholds for ICE restarts ([#839](https://github.com/GetStream/stream-video-js/issues/839)) ([fe2bbe5](https://github.com/GetStream/stream-video-js/commit/fe2bbe5687a26e01983273d8c25016689c6f1584)), closes [#814](https://github.com/GetStream/stream-video-js/issues/814)
16
+
17
+ ### [0.1.3](https://github.com/GetStream/stream-video-js/compare/client0.1.2...client0.1.3) (2023-07-20)
18
+
19
+
20
+ ### Bug Fixes
21
+
22
+ * server side user connect + add tests ([#825](https://github.com/GetStream/stream-video-js/issues/825)) ([95ea24d](https://github.com/GetStream/stream-video-js/commit/95ea24d03306d1b25c3c5af042a202a7b551d865))
23
+
5
24
  ### [0.1.2](https://github.com/GetStream/stream-video-js/compare/client0.1.1...client0.1.2) (2023-07-19)
6
25
 
7
26