@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.
@@ -387,11 +387,11 @@ export declare class Call {
387
387
  /**
388
388
  * Starts the broadcasting of the call.
389
389
  */
390
- startBroadcasting: () => Promise<StartBroadcastingResponse>;
390
+ startHLS: () => Promise<StartBroadcastingResponse>;
391
391
  /**
392
392
  * Stops the broadcasting of the call.
393
393
  */
394
- stopBroadcasting: () => Promise<StopBroadcastingResponse>;
394
+ stopHLS: () => Promise<StopBroadcastingResponse>;
395
395
  /**
396
396
  * Updates the call settings or custom data.
397
397
  *
package/dist/version.d.ts CHANGED
@@ -1 +1 @@
1
- export declare const version = "0.2.1";
1
+ export declare const version = "0.2.2";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stream-io/video-client",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "packageManager": "yarn@3.2.4",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.es.js",
package/src/Call.ts CHANGED
@@ -1483,7 +1483,7 @@ export class Call {
1483
1483
  /**
1484
1484
  * Starts the broadcasting of the call.
1485
1485
  */
1486
- startBroadcasting = async () => {
1486
+ startHLS = async () => {
1487
1487
  return this.streamClient.post<StartBroadcastingResponse>(
1488
1488
  `${this.streamClientBasePath}/start_broadcasting`,
1489
1489
  {},
@@ -1493,7 +1493,7 @@ export class Call {
1493
1493
  /**
1494
1494
  * Stops the broadcasting of the call.
1495
1495
  */
1496
- stopBroadcasting = async () => {
1496
+ stopHLS = async () => {
1497
1497
  return this.streamClient.post<StopBroadcastingResponse>(
1498
1498
  `${this.streamClientBasePath}/stop_broadcasting`,
1499
1499
  {},