@stream-io/video-client 0.0.2-alpha.2 → 0.0.2-alpha.20
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 +97 -0
- package/dist/index.browser.es.js +226 -88
- package/dist/index.browser.es.js.map +1 -1
- package/dist/index.cjs.js +226 -88
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +226 -88
- package/dist/index.es.js.map +1 -1
- package/dist/src/Call.d.ts +47 -23
- package/dist/src/StreamVideoClient.d.ts +1 -0
- package/dist/src/events/callEventHandlers.d.ts +12 -0
- package/dist/src/gen/coordinator/index.d.ts +60 -76
- package/dist/src/helpers/sound-detector.d.ts +10 -1
- package/dist/src/rtc/flows/join.d.ts +1 -0
- package/dist/src/store/CallState.d.ts +22 -1
- package/dist/src/store/stateStore.d.ts +7 -0
- package/dist/src/types.d.ts +7 -1
- package/package.json +1 -1
- package/src/Call.ts +147 -80
- package/src/StreamVideoClient.ts +76 -41
- package/src/events/__tests__/call-permissions.test.ts +4 -8
- package/src/events/__tests__/call.test.ts +127 -15
- package/src/events/__tests__/sessions.test.ts +0 -2
- package/src/events/call-permissions.ts +3 -11
- package/src/events/call.ts +31 -8
- package/src/events/callEventHandlers.ts +17 -7
- package/src/events/sessions.ts +2 -12
- package/src/gen/coordinator/index.ts +60 -74
- package/src/helpers/sound-detector.ts +13 -9
- package/src/rtc/flows/join.ts +7 -1
- package/src/rtc/publisher.ts +7 -6
- package/src/store/CallState.ts +31 -0
- package/src/store/stateStore.ts +10 -0
- package/src/types.ts +8 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,103 @@
|
|
|
2
2
|
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
4
|
|
|
5
|
+
## [0.0.2-alpha.20](https://github.com/GetStream/stream-video-js/compare/client0.0.2-alpha.19...client0.0.2-alpha.20) (2023-06-01)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
## [0.0.2-alpha.19](https://github.com/GetStream/stream-video-js/compare/client0.0.2-alpha.18...client0.0.2-alpha.19) (2023-06-01)
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
## [0.0.2-alpha.18](https://github.com/GetStream/stream-video-js/compare/client0.0.2-alpha.17...client0.0.2-alpha.18) (2023-06-01)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Features
|
|
17
|
+
|
|
18
|
+
* reflect updateCall response data into call's state ([#578](https://github.com/GetStream/stream-video-js/issues/578)) ([410a926](https://github.com/GetStream/stream-video-js/commit/410a926e30f65396446a9c3d93d18f0367d7eda8))
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
## [0.0.2-alpha.17](https://github.com/GetStream/stream-video-js/compare/client0.0.2-alpha.16...client0.0.2-alpha.17) (2023-06-01)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
## [0.0.2-alpha.16](https://github.com/GetStream/stream-video-js/compare/client0.0.2-alpha.15...client0.0.2-alpha.16) (2023-05-31)
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
## [0.0.2-alpha.15](https://github.com/GetStream/stream-video-js/compare/client0.0.2-alpha.14...client0.0.2-alpha.15) (2023-05-31)
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
## [0.0.2-alpha.14](https://github.com/GetStream/stream-video-js/compare/client0.0.2-alpha.13...client0.0.2-alpha.14) (2023-05-31)
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
## [0.0.2-alpha.13](https://github.com/GetStream/stream-video-js/compare/client0.0.2-alpha.12...client0.0.2-alpha.13) (2023-05-31)
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
## [0.0.2-alpha.12](https://github.com/GetStream/stream-video-js/compare/client0.0.2-alpha.11...client0.0.2-alpha.12) (2023-05-31)
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
### Features
|
|
46
|
+
|
|
47
|
+
* Adjust OwnCapabilities handling ([#574](https://github.com/GetStream/stream-video-js/issues/574)) ([d9e27db](https://github.com/GetStream/stream-video-js/commit/d9e27db65e641241d5ec5a9a72a94f118ece284d))
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
## [0.0.2-alpha.11](https://github.com/GetStream/stream-video-js/compare/client0.0.2-alpha.10...client0.0.2-alpha.11) (2023-05-31)
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
## [0.0.2-alpha.10](https://github.com/GetStream/stream-video-js/compare/client0.0.2-alpha.9...client0.0.2-alpha.10) (2023-05-31)
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
### Bug Fixes
|
|
59
|
+
|
|
60
|
+
* add request cancellation for location hints ([#567](https://github.com/GetStream/stream-video-js/issues/567)) ([5ee49bc](https://github.com/GetStream/stream-video-js/commit/5ee49bcd60f2409828b2caaf82cbd0b5672949d3))
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
## [0.0.2-alpha.9](https://github.com/GetStream/stream-video-js/compare/client0.0.2-alpha.8...client0.0.2-alpha.9) (2023-05-30)
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
|
|
68
|
+
## [0.0.2-alpha.8](https://github.com/GetStream/stream-video-js/compare/client0.0.2-alpha.7...client0.0.2-alpha.8) (2023-05-30)
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
### Features
|
|
72
|
+
|
|
73
|
+
* integrate the new call ring flow ([#562](https://github.com/GetStream/stream-video-js/issues/562)) ([c407961](https://github.com/GetStream/stream-video-js/commit/c4079614cb962e098215c0061690d59c35882cd8))
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
## [0.0.2-alpha.7](https://github.com/GetStream/stream-video-js/compare/client0.0.2-alpha.6...client0.0.2-alpha.7) (2023-05-30)
|
|
78
|
+
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
## [0.0.2-alpha.6](https://github.com/GetStream/stream-video-js/compare/client0.0.2-alpha.5...client0.0.2-alpha.6) (2023-05-30)
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
|
|
85
|
+
## [0.0.2-alpha.5](https://github.com/GetStream/stream-video-js/compare/client0.0.2-alpha.4...client0.0.2-alpha.5) (2023-05-30)
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
|
|
89
|
+
## [0.0.2-alpha.4](https://github.com/GetStream/stream-video-js/compare/client0.0.2-alpha.3...client0.0.2-alpha.4) (2023-05-30)
|
|
90
|
+
|
|
91
|
+
|
|
92
|
+
|
|
93
|
+
## [0.0.2-alpha.3](https://github.com/GetStream/stream-video-js/compare/client0.0.2-alpha.2...client0.0.2-alpha.3) (2023-05-30)
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
### Features
|
|
97
|
+
|
|
98
|
+
* optional callSessionId in queryRecordings ([#563](https://github.com/GetStream/stream-video-js/issues/563)) ([e2dac22](https://github.com/GetStream/stream-video-js/commit/e2dac2298372d94db867195aa52336d51270c502))
|
|
99
|
+
|
|
100
|
+
|
|
101
|
+
|
|
5
102
|
## [0.0.2-alpha.2](https://github.com/GetStream/stream-video-js/compare/client0.0.2-alpha.1...client0.0.2-alpha.2) (2023-05-27)
|
|
6
103
|
|
|
7
104
|
|