@stream-io/video-client 0.2.0 → 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 CHANGED
@@ -2,6 +2,20 @@
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
+
12
+ ### [0.2.1](https://github.com/GetStream/stream-video-js/compare/client0.2.0...client0.2.1) (2023-08-07)
13
+
14
+
15
+ ### Features
16
+
17
+ * enhanced call session ([#900](https://github.com/GetStream/stream-video-js/issues/900)) ([dd4f1ea](https://github.com/GetStream/stream-video-js/commit/dd4f1ea03dbab0661a8b79dd55f51b0e9477ae75))
18
+
5
19
  ## [0.2.0](https://github.com/GetStream/stream-video-js/compare/client0.1.11...client0.2.0) (2023-08-07)
6
20
 
7
21
 
@@ -8462,6 +8462,7 @@ const watchCallEnded = (call) => {
8462
8462
  if (call.state.callingState === CallingState.RINGING ||
8463
8463
  call.state.callingState === CallingState.JOINED ||
8464
8464
  call.state.callingState === CallingState.JOINING) {
8465
+ call.state.setMetadata(event.call);
8465
8466
  yield call.leave();
8466
8467
  }
8467
8468
  });
@@ -10488,13 +10489,13 @@ class Call {
10488
10489
  /**
10489
10490
  * Starts the broadcasting of the call.
10490
10491
  */
10491
- this.startBroadcasting = () => __awaiter(this, void 0, void 0, function* () {
10492
+ this.startHLS = () => __awaiter(this, void 0, void 0, function* () {
10492
10493
  return this.streamClient.post(`${this.streamClientBasePath}/start_broadcasting`, {});
10493
10494
  });
10494
10495
  /**
10495
10496
  * Stops the broadcasting of the call.
10496
10497
  */
10497
- this.stopBroadcasting = () => __awaiter(this, void 0, void 0, function* () {
10498
+ this.stopHLS = () => __awaiter(this, void 0, void 0, function* () {
10498
10499
  return this.streamClient.post(`${this.streamClientBasePath}/stop_broadcasting`, {});
10499
10500
  });
10500
10501
  /**
@@ -11876,7 +11877,7 @@ class WSConnectionFallback {
11876
11877
  }
11877
11878
  }
11878
11879
 
11879
- const version = '0.2.0';
11880
+ const version = '0.2.2';
11880
11881
 
11881
11882
  const logger = getLogger(['location']);
11882
11883
  const HINT_URL = `https://hint.stream-io-video.com/`;