@stream-io/video-client 0.1.3 → 0.1.5

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 (34) hide show
  1. package/CHANGELOG.md +19 -0
  2. package/dist/index.browser.es.js +401 -106
  3. package/dist/index.browser.es.js.map +1 -1
  4. package/dist/index.cjs.js +400 -105
  5. package/dist/index.cjs.js.map +1 -1
  6. package/dist/index.es.js +401 -106
  7. package/dist/index.es.js.map +1 -1
  8. package/dist/src/Call.d.ts +1 -1
  9. package/dist/src/StreamSfuClient.d.ts +2 -1
  10. package/dist/src/StreamVideoClient.d.ts +3 -4
  11. package/dist/src/coordinator/connection/client.d.ts +0 -6
  12. package/dist/src/gen/video/sfu/event/events.d.ts +45 -2
  13. package/dist/src/gen/video/sfu/models/models.d.ts +12 -0
  14. package/dist/src/gen/video/sfu/signal_rpc/signal.client.d.ts +9 -1
  15. package/dist/src/gen/video/sfu/signal_rpc/signal.d.ts +42 -0
  16. package/dist/src/rtc/Publisher.d.ts +10 -2
  17. package/dist/src/rtc/Subscriber.d.ts +8 -3
  18. package/dist/version.d.ts +1 -1
  19. package/package.json +1 -1
  20. package/src/Call.ts +18 -9
  21. package/src/StreamSfuClient.ts +16 -5
  22. package/src/StreamVideoClient.ts +32 -30
  23. package/src/coordinator/connection/client.ts +0 -25
  24. package/src/gen/google/protobuf/struct.ts +1 -2
  25. package/src/gen/google/protobuf/timestamp.ts +1 -1
  26. package/src/gen/video/sfu/event/events.ts +165 -5
  27. package/src/gen/video/sfu/models/models.ts +13 -1
  28. package/src/gen/video/sfu/signal_rpc/signal.client.ts +27 -1
  29. package/src/gen/video/sfu/signal_rpc/signal.ts +194 -1
  30. package/src/rtc/Dispatcher.ts +1 -0
  31. package/src/rtc/Publisher.ts +69 -34
  32. package/src/rtc/Subscriber.ts +74 -7
  33. package/src/rtc/__tests__/Publisher.test.ts +82 -2
  34. 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.5](https://github.com/GetStream/stream-video-js/compare/client0.1.4...client0.1.5) (2023-07-21)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * strict mode issue ([#740](https://github.com/GetStream/stream-video-js/issues/740)) ([c39e4e4](https://github.com/GetStream/stream-video-js/commit/c39e4e4041a2326393478ad808b2aa791d50f8ce))
11
+
12
+ ### [0.1.4](https://github.com/GetStream/stream-video-js/compare/client0.1.3...client0.1.4) (2023-07-21)
13
+
14
+
15
+ ### Features
16
+
17
+ * ICE Restarts ([#814](https://github.com/GetStream/stream-video-js/issues/814)) ([a03f8cd](https://github.com/GetStream/stream-video-js/commit/a03f8cd8cc90f91fb67c4c80e097eed64ca67715))
18
+
19
+
20
+ ### Bug Fixes
21
+
22
+ * 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)
23
+
5
24
  ### [0.1.3](https://github.com/GetStream/stream-video-js/compare/client0.1.2...client0.1.3) (2023-07-20)
6
25
 
7
26