@stream-io/video-client 0.2.2 → 0.2.3

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.2.3](https://github.com/GetStream/stream-video-js/compare/client0.2.2...client0.2.3) (2023-08-14)
6
+
7
+
8
+ ### Features
9
+
10
+ * extra config params in goLive() API ([#924](https://github.com/GetStream/stream-video-js/issues/924)) ([e14a082](https://github.com/GetStream/stream-video-js/commit/e14a0829460a3c5ff6d249dd159e6118df0b8352))
11
+
5
12
  ### [0.2.2](https://github.com/GetStream/stream-video-js/compare/client0.2.1...client0.2.2) (2023-08-08)
6
13
 
7
14
 
@@ -10476,9 +10476,12 @@ class Call {
10476
10476
  });
10477
10477
  /**
10478
10478
  * Starts the livestreaming of the call.
10479
+ *
10480
+ * @param data the request data.
10481
+ * @param params the request params.
10479
10482
  */
10480
- this.goLive = (params) => __awaiter(this, void 0, void 0, function* () {
10481
- return this.streamClient.post(`${this.streamClientBasePath}/go_live`, {}, params);
10483
+ this.goLive = (data = {}, params) => __awaiter(this, void 0, void 0, function* () {
10484
+ return this.streamClient.post(`${this.streamClientBasePath}/go_live`, data, params);
10482
10485
  });
10483
10486
  /**
10484
10487
  * Stops the livestreaming of the call.
@@ -11877,7 +11880,7 @@ class WSConnectionFallback {
11877
11880
  }
11878
11881
  }
11879
11882
 
11880
- const version = '0.2.2';
11883
+ const version = '0.2.3';
11881
11884
 
11882
11885
  const logger = getLogger(['location']);
11883
11886
  const HINT_URL = `https://hint.stream-io-video.com/`;