@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/dist/index.es.js CHANGED
@@ -10479,9 +10479,12 @@ class Call {
10479
10479
  });
10480
10480
  /**
10481
10481
  * Starts the livestreaming of the call.
10482
+ *
10483
+ * @param data the request data.
10484
+ * @param params the request params.
10482
10485
  */
10483
- this.goLive = (params) => __awaiter(this, void 0, void 0, function* () {
10484
- return this.streamClient.post(`${this.streamClientBasePath}/go_live`, {}, params);
10486
+ this.goLive = (data = {}, params) => __awaiter(this, void 0, void 0, function* () {
10487
+ return this.streamClient.post(`${this.streamClientBasePath}/go_live`, data, params);
10485
10488
  });
10486
10489
  /**
10487
10490
  * Stops the livestreaming of the call.
@@ -11881,7 +11884,7 @@ class WSConnectionFallback {
11881
11884
  }
11882
11885
  }
11883
11886
 
11884
- const version = '0.2.2';
11887
+ const version = '0.2.3';
11885
11888
 
11886
11889
  const logger = getLogger(['location']);
11887
11890
  const HINT_URL = `https://hint.stream-io-video.com/`;