@stream-io/video-client 0.1.6 → 0.1.7

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.1.7](https://github.com/GetStream/stream-video-js/compare/client0.1.6...client0.1.7) (2023-07-26)
6
+
7
+
8
+ ### Features
9
+
10
+ * support goLive({ notify: true }) ([#848](https://github.com/GetStream/stream-video-js/issues/848)) ([ed67b28](https://github.com/GetStream/stream-video-js/commit/ed67b280082e91e356ee7c0063f2dafab6f8e0c2))
11
+
5
12
  ### [0.1.6](https://github.com/GetStream/stream-video-js/compare/client0.1.5...client0.1.6) (2023-07-26)
6
13
 
7
14
 
@@ -10268,8 +10268,8 @@ class Call {
10268
10268
  /**
10269
10269
  * Starts the livestreaming of the call.
10270
10270
  */
10271
- this.goLive = () => __awaiter(this, void 0, void 0, function* () {
10272
- return this.streamClient.post(`${this.streamClientBasePath}/go_live`, {});
10271
+ this.goLive = (params) => __awaiter(this, void 0, void 0, function* () {
10272
+ return this.streamClient.post(`${this.streamClientBasePath}/go_live`, {}, params);
10273
10273
  });
10274
10274
  /**
10275
10275
  * Stops the livestreaming of the call.
@@ -11636,7 +11636,7 @@ class WSConnectionFallback {
11636
11636
  }
11637
11637
  }
11638
11638
 
11639
- const version = '0.1.6';
11639
+ const version = '0.1.7';
11640
11640
 
11641
11641
  const logger = getLogger(['location']);
11642
11642
  const HINT_URL = `https://hint.stream-io-video.com/`;
@@ -11977,14 +11977,14 @@ class StreamClient {
11977
11977
  params,
11978
11978
  });
11979
11979
  };
11980
- this.put = (url, data) => {
11981
- return this.doAxiosRequest('put', url, data);
11980
+ this.put = (url, data, params) => {
11981
+ return this.doAxiosRequest('put', url, data, { params });
11982
11982
  };
11983
- this.post = (url, data) => {
11984
- return this.doAxiosRequest('post', url, data);
11983
+ this.post = (url, data, params) => {
11984
+ return this.doAxiosRequest('post', url, data, { params });
11985
11985
  };
11986
- this.patch = (url, data) => {
11987
- return this.doAxiosRequest('patch', url, data);
11986
+ this.patch = (url, data, params) => {
11987
+ return this.doAxiosRequest('patch', url, data, { params });
11988
11988
  };
11989
11989
  this.delete = (url, params) => {
11990
11990
  return this.doAxiosRequest('delete', url, null, {