@stream-io/video-client 0.3.19 → 0.3.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 +7 -0
- package/README.md +0 -2
- package/dist/index.browser.es.js +3 -1
- package/dist/index.browser.es.js.map +1 -1
- package/dist/index.cjs.js +3 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +3 -1
- package/dist/index.es.js.map +1 -1
- package/dist/src/gen/coordinator/index.d.ts +61 -31
- package/dist/version.d.ts +1 -1
- package/package.json +1 -1
- package/src/__tests__/server-side/call-types.test.ts +8 -1
- package/src/__tests__/server-side/call.test.ts +1 -0
- package/src/gen/coordinator/index.ts +59 -31
- package/src/store/CallState.ts +2 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
4
|
|
|
5
|
+
### [0.3.20](https://github.com/GetStream/stream-video-js/compare/client0.3.19...client0.3.20) (2023-09-19)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* Update with new API spec ([#1098](https://github.com/GetStream/stream-video-js/issues/1098)) ([ced372c](https://github.com/GetStream/stream-video-js/commit/ced372ca068086375024d59a977014efcadefef2))
|
|
11
|
+
|
|
5
12
|
### [0.3.19](https://github.com/GetStream/stream-video-js/compare/client0.3.18...client0.3.19) (2023-09-15)
|
|
6
13
|
|
|
7
14
|
|
package/README.md
CHANGED
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
# @stream-io/video-client
|
|
2
2
|
|
|
3
|
-
🚧 **WARNING** This package is not yet stable, it is for internal use only. For more information check out our [video product page](https://getstream.io/video/). 🚧
|
|
4
|
-
|
|
5
3
|
Low-level video client for browser and Node.js integrations.
|
|
6
4
|
|
|
7
5
|
## **Quick Links**
|
package/dist/index.browser.es.js
CHANGED
|
@@ -8351,6 +8351,8 @@ class CallState {
|
|
|
8351
8351
|
'connection.error': undefined,
|
|
8352
8352
|
'connection.ok': undefined,
|
|
8353
8353
|
'health.check': undefined,
|
|
8354
|
+
'call.recording_failed': undefined,
|
|
8355
|
+
'call.recording_ready': undefined,
|
|
8354
8356
|
custom: undefined,
|
|
8355
8357
|
// events that update call state:
|
|
8356
8358
|
'call.accepted': (e) => this.updateFromCallResponse(e.call),
|
|
@@ -13106,7 +13108,7 @@ class WSConnectionFallback {
|
|
|
13106
13108
|
}
|
|
13107
13109
|
}
|
|
13108
13110
|
|
|
13109
|
-
const version = '0.3.
|
|
13111
|
+
const version = '0.3.20';
|
|
13110
13112
|
|
|
13111
13113
|
const logger = getLogger(['location']);
|
|
13112
13114
|
const HINT_URL = `https://hint.stream-io-video.com/`;
|