@100mslive/hms-video-store 0.2.68 → 0.2.69

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.
@@ -1,5 +1,5 @@
1
1
  import { HMSConfig, HMSSimulcastLayer, HMSAudioTrackSettings, HMSVideoTrackSettings, HMSLogLevel, HMSVideoPlugin, HMSAudioPlugin } from '@100mslive/hms-video';
2
- import { HMSMessageID, HMSPeerID, HMSRoleName, HMSTrackID, HMSTrackSource, IHMSPlaylistActions, HMSChangeMultiTrackStateRequest } from './schema';
2
+ import { HMSMessageID, HMSPeerID, HMSRoleName, HMSTrackID, HMSTrackSource, IHMSPlaylistActions, HMSChangeMultiTrackStateParams } from './schema';
3
3
  import { HMSRoleChangeRequest } from './selectors';
4
4
  import { RTMPRecordingConfig } from './hmsSDKStore/sdkTypes';
5
5
  /**
@@ -193,9 +193,9 @@ export interface IHMSActions {
193
193
  setRemoteTrackEnabled(forRemoteTrackID: HMSTrackID | HMSTrackID[], enabled: boolean): Promise<void>;
194
194
  /**
195
195
  * Use this to mute/unmute multipe tracks by source, role or type
196
- * @param {HMSChangeMultiTrackStateRequest} params
196
+ * @param {HMSChangeMultiTrackStateParams} params
197
197
  */
198
- setRemoteTracksEnabled(params: HMSChangeMultiTrackStateRequest): Promise<void>;
198
+ setRemoteTracksEnabled(params: HMSChangeMultiTrackStateParams): Promise<void>;
199
199
  /**
200
200
  * Method to be called with some UI interaction after autoplay error is received
201
201
  * Most browsers have limitations where an audio can not be played if there was no user interaction.
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.2.68",
2
+ "version": "0.2.69",
3
3
  "license": "MIT",
4
4
  "main": "dist/index.js",
5
5
  "typings": "dist/index.d.ts",
@@ -14,7 +14,7 @@ import {
14
14
  HMSTrackID,
15
15
  HMSTrackSource,
16
16
  IHMSPlaylistActions,
17
- HMSChangeMultiTrackStateRequest,
17
+ HMSChangeMultiTrackStateParams,
18
18
  } from './schema';
19
19
  import { HMSRoleChangeRequest } from './selectors';
20
20
  import { RTMPRecordingConfig } from './hmsSDKStore/sdkTypes';
@@ -238,9 +238,9 @@ export interface IHMSActions {
238
238
 
239
239
  /**
240
240
  * Use this to mute/unmute multipe tracks by source, role or type
241
- * @param {HMSChangeMultiTrackStateRequest} params
241
+ * @param {HMSChangeMultiTrackStateParams} params
242
242
  */
243
- setRemoteTracksEnabled(params: HMSChangeMultiTrackStateRequest): Promise<void>;
243
+ setRemoteTracksEnabled(params: HMSChangeMultiTrackStateParams): Promise<void>;
244
244
 
245
245
  /**
246
246
  * Method to be called with some UI interaction after autoplay error is received