vani-meeting-client 0.5.2 → 0.5.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.
@@ -229,7 +229,7 @@ var MeetingHandler = /** @class */ (function () {
229
229
  };
230
230
  MeetingHandler.prototype.resumeStreamWithoutStopping = function (streamKind) {
231
231
  var _a;
232
- return (_a = this.userMediaHandler) === null || _a === void 0 ? void 0 : _a.resumeStreamWithoutStopping(streamKind);
232
+ return (_a = this.userMediaHandler) === null || _a === void 0 ? void 0 : _a.resumeStreamWithoutAdding(streamKind);
233
233
  };
234
234
  MeetingHandler.prototype.pauseStreamWithoutStopping = function (streamKind) {
235
235
  var _a;
@@ -32,5 +32,5 @@ export declare class UserMediaHandler extends Base {
32
32
  resumeCamera(userId?: string): Promise<TaskResponse>;
33
33
  unmute(userId?: string): Promise<TaskResponse>;
34
34
  pauseStreamWithoutStopping(streamKind: TrackKind): TaskResponse;
35
- resumeStreamWithoutStopping(streamKind: TrackKind): TaskResponse;
35
+ resumeStreamWithoutAdding(streamKind: TrackKind): TaskResponse;
36
36
  }
@@ -690,7 +690,7 @@ var UserMediaHandler = /** @class */ (function (_super) {
690
690
  return ({ message: "No Track Found", error: 'NoDevice', isSuccess: false });
691
691
  }
692
692
  };
693
- UserMediaHandler.prototype.resumeStreamWithoutStopping = function (streamKind) {
693
+ UserMediaHandler.prototype.resumeStreamWithoutAdding = function (streamKind) {
694
694
  var _a, _b, _c;
695
695
  var track = (_a = this.communicationHandler) === null || _a === void 0 ? void 0 : _a.getSelfTrackByType(streamKind);
696
696
  if (track && track.track) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vani-meeting-client",
3
- "version": "0.5.2",
3
+ "version": "0.5.3",
4
4
  "description": "Vani Meeting Clinet SDK",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",