@stream-io/video-client 0.4.8 → 0.4.9
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
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.4.9](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-0.4.8...@stream-io/video-client-0.4.9) (2023-11-22)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* **participant-view:** allow opting-out from rendering VideoPlaceholder ([#1198](https://github.com/GetStream/stream-video-js/issues/1198)) ([acb020c](https://github.com/GetStream/stream-video-js/commit/acb020c8157a1338771bef11ef5e501bc9cd6f69))
|
|
11
|
+
|
|
5
12
|
### [0.4.8](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-client-0.4.7...@stream-io/video-client-0.4.8) (2023-11-16)
|
|
6
13
|
|
|
7
14
|
|
package/dist/index.browser.es.js
CHANGED
|
@@ -14013,7 +14013,7 @@ class StreamClient {
|
|
|
14013
14013
|
});
|
|
14014
14014
|
};
|
|
14015
14015
|
this.getUserAgent = () => {
|
|
14016
|
-
const version = "0.4.
|
|
14016
|
+
const version = "0.4.9" ;
|
|
14017
14017
|
return (this.userAgent ||
|
|
14018
14018
|
`stream-video-javascript-client-${this.node ? 'node' : 'browser'}-${version}`);
|
|
14019
14019
|
};
|
package/dist/index.cjs.js
CHANGED
|
@@ -14037,7 +14037,7 @@ class StreamClient {
|
|
|
14037
14037
|
});
|
|
14038
14038
|
};
|
|
14039
14039
|
this.getUserAgent = () => {
|
|
14040
|
-
const version = "0.4.
|
|
14040
|
+
const version = "0.4.9" ;
|
|
14041
14041
|
return (this.userAgent ||
|
|
14042
14042
|
`stream-video-javascript-client-${this.node ? 'node' : 'browser'}-${version}`);
|
|
14043
14043
|
};
|
package/dist/index.es.js
CHANGED
|
@@ -14017,7 +14017,7 @@ class StreamClient {
|
|
|
14017
14017
|
});
|
|
14018
14018
|
};
|
|
14019
14019
|
this.getUserAgent = () => {
|
|
14020
|
-
const version = "0.4.
|
|
14020
|
+
const version = "0.4.9" ;
|
|
14021
14021
|
return (this.userAgent ||
|
|
14022
14022
|
`stream-video-javascript-client-${this.node ? 'node' : 'browser'}-${version}`);
|
|
14023
14023
|
};
|
package/package.json
CHANGED
|
@@ -11,7 +11,7 @@ import {
|
|
|
11
11
|
const apiKey = process.env.STREAM_API_KEY!;
|
|
12
12
|
const secret = process.env.STREAM_SECRET!;
|
|
13
13
|
|
|
14
|
-
describe('call types CRUD API', () => {
|
|
14
|
+
describe.skip('call types CRUD API', () => {
|
|
15
15
|
let client: StreamVideoServerClient;
|
|
16
16
|
const callTypeName = `calltype${generateUUIDv4()}`;
|
|
17
17
|
|