@stream-io/video-client 0.2.1 → 0.2.2
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/dist/index.browser.es.js +3 -3
- package/dist/index.browser.es.js.map +1 -1
- package/dist/index.cjs.js +3 -3
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +3 -3
- package/dist/index.es.js.map +1 -1
- package/dist/src/Call.d.ts +2 -2
- package/dist/version.d.ts +1 -1
- package/package.json +1 -1
- package/src/Call.ts +2 -2
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.2.2](https://github.com/GetStream/stream-video-js/compare/client0.2.1...client0.2.2) (2023-08-08)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* **livestream:** Livestream tutorial rewrite ([#909](https://github.com/GetStream/stream-video-js/issues/909)) ([49efdaa](https://github.com/GetStream/stream-video-js/commit/49efdaa14faccaa4848e8f9bdf3abb7748b925ac))
|
|
11
|
+
|
|
5
12
|
### [0.2.1](https://github.com/GetStream/stream-video-js/compare/client0.2.0...client0.2.1) (2023-08-07)
|
|
6
13
|
|
|
7
14
|
|
package/dist/index.browser.es.js
CHANGED
|
@@ -10489,13 +10489,13 @@ class Call {
|
|
|
10489
10489
|
/**
|
|
10490
10490
|
* Starts the broadcasting of the call.
|
|
10491
10491
|
*/
|
|
10492
|
-
this.
|
|
10492
|
+
this.startHLS = () => __awaiter(this, void 0, void 0, function* () {
|
|
10493
10493
|
return this.streamClient.post(`${this.streamClientBasePath}/start_broadcasting`, {});
|
|
10494
10494
|
});
|
|
10495
10495
|
/**
|
|
10496
10496
|
* Stops the broadcasting of the call.
|
|
10497
10497
|
*/
|
|
10498
|
-
this.
|
|
10498
|
+
this.stopHLS = () => __awaiter(this, void 0, void 0, function* () {
|
|
10499
10499
|
return this.streamClient.post(`${this.streamClientBasePath}/stop_broadcasting`, {});
|
|
10500
10500
|
});
|
|
10501
10501
|
/**
|
|
@@ -11877,7 +11877,7 @@ class WSConnectionFallback {
|
|
|
11877
11877
|
}
|
|
11878
11878
|
}
|
|
11879
11879
|
|
|
11880
|
-
const version = '0.2.
|
|
11880
|
+
const version = '0.2.2';
|
|
11881
11881
|
|
|
11882
11882
|
const logger = getLogger(['location']);
|
|
11883
11883
|
const HINT_URL = `https://hint.stream-io-video.com/`;
|