@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,
|
|
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 {
|
|
196
|
+
* @param {HMSChangeMultiTrackStateParams} params
|
|
197
197
|
*/
|
|
198
|
-
setRemoteTracksEnabled(params:
|
|
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
package/src/core/IHMSActions.ts
CHANGED
|
@@ -14,7 +14,7 @@ import {
|
|
|
14
14
|
HMSTrackID,
|
|
15
15
|
HMSTrackSource,
|
|
16
16
|
IHMSPlaylistActions,
|
|
17
|
-
|
|
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 {
|
|
241
|
+
* @param {HMSChangeMultiTrackStateParams} params
|
|
242
242
|
*/
|
|
243
|
-
setRemoteTracksEnabled(params:
|
|
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
|