@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.
- package/CHANGELOG.md +19 -0
- package/dist/index.browser.es.js +391 -68
- package/dist/index.browser.es.js.map +1 -1
- package/dist/index.cjs.js +391 -68
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +391 -68
- package/dist/index.es.js.map +1 -1
- package/dist/src/StreamSfuClient.d.ts +2 -1
- package/dist/src/__tests__/StreamVideoClient.test.d.ts +1 -1
- package/dist/src/coordinator/connection/client.d.ts +2 -2
- package/dist/src/gen/video/sfu/event/events.d.ts +45 -2
- package/dist/src/gen/video/sfu/models/models.d.ts +12 -0
- package/dist/src/gen/video/sfu/signal_rpc/signal.client.d.ts +9 -1
- package/dist/src/gen/video/sfu/signal_rpc/signal.d.ts +42 -0
- package/dist/src/rtc/Publisher.d.ts +10 -2
- package/dist/src/rtc/Subscriber.d.ts +8 -3
- package/dist/version.d.ts +1 -1
- package/package.json +1 -1
- package/src/Call.ts +2 -0
- package/src/StreamSfuClient.ts +16 -5
- package/src/__tests__/StreamVideoClient.test.ts +85 -4
- package/src/__tests__/StreamVideoServerClient.test.ts +22 -0
- package/src/coordinator/connection/client.ts +22 -11
- package/src/coordinator/connection/connection.ts +2 -2
- package/src/coordinator/connection/connection_fallback.ts +3 -2
- package/src/gen/google/protobuf/struct.ts +1 -2
- package/src/gen/google/protobuf/timestamp.ts +1 -1
- package/src/gen/video/sfu/event/events.ts +165 -5
- package/src/gen/video/sfu/models/models.ts +13 -1
- package/src/gen/video/sfu/signal_rpc/signal.client.ts +27 -1
- package/src/gen/video/sfu/signal_rpc/signal.ts +194 -1
- package/src/rtc/Dispatcher.ts +1 -0
- package/src/rtc/Publisher.ts +69 -34
- package/src/rtc/Subscriber.ts +74 -7
- package/src/rtc/__tests__/Publisher.test.ts +82 -2
- 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
|
|