@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/dist/index.cjs.js
CHANGED
|
@@ -8374,6 +8374,8 @@ class CallState {
|
|
|
8374
8374
|
'connection.error': undefined,
|
|
8375
8375
|
'connection.ok': undefined,
|
|
8376
8376
|
'health.check': undefined,
|
|
8377
|
+
'call.recording_failed': undefined,
|
|
8378
|
+
'call.recording_ready': undefined,
|
|
8377
8379
|
custom: undefined,
|
|
8378
8380
|
// events that update call state:
|
|
8379
8381
|
'call.accepted': (e) => this.updateFromCallResponse(e.call),
|
|
@@ -13130,7 +13132,7 @@ class WSConnectionFallback {
|
|
|
13130
13132
|
}
|
|
13131
13133
|
}
|
|
13132
13134
|
|
|
13133
|
-
const version = '0.3.
|
|
13135
|
+
const version = '0.3.20';
|
|
13134
13136
|
|
|
13135
13137
|
const logger = getLogger(['location']);
|
|
13136
13138
|
const HINT_URL = `https://hint.stream-io-video.com/`;
|