@100mslive/hms-video-store 0.3.5-alpha.0 → 0.4.1-alpha.0
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/core/index.d.ts +1 -1
- package/dist/core/schema/device-change.d.ts +1 -0
- package/dist/core/schema/peer.d.ts +2 -2
- package/dist/core/schema/room.d.ts +2 -1
- package/dist/core/selectors/selectorsByID.d.ts +1 -1
- package/dist/index.cjs.js.map +2 -2
- package/dist/index.js.map +2 -2
- package/package.json +3 -3
- package/src/core/index.ts +0 -5
- package/src/core/schema/device-change.ts +2 -0
- package/src/core/schema/peer.ts +2 -3
- package/src/core/schema/room.ts +2 -1
package/dist/core/index.d.ts
CHANGED
|
@@ -7,4 +7,4 @@ export * from './schema';
|
|
|
7
7
|
export * from './selectors';
|
|
8
8
|
export { HMSLogLevel, HMSAudioPluginType, HMSVideoPluginType, HMSVideoPluginCanvasContextType, parsedUserAgent, } from './hmsSDKStore/sdkTypes';
|
|
9
9
|
export * from './webrtc-stats';
|
|
10
|
-
export type { HMSConfig, HMSConfigInitialSettings, HMSAudioTrackSettings, HMSVideoTrackSettings,
|
|
10
|
+
export type { HMSConfig, HMSConfigInitialSettings, HMSAudioTrackSettings, HMSVideoTrackSettings, RTMPRecordingConfig, HMSPeerStats, HMSTrackStats, HMSLocalTrackStats, HMSRemoteTrackStats, HLSConfig, HLSMeetingURLVariant, } from './hmsSDKStore/sdkTypes';
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { DeviceMap } from '../hmsSDKStore/sdkTypes';
|
|
2
2
|
import { HMSException } from './error';
|
|
3
|
+
export type { DeviceMap };
|
|
3
4
|
/**
|
|
4
5
|
* Test fails when adding InputDeviceInfo[error TS2304: Cannot find name 'InputDeviceInfo'.]
|
|
5
6
|
* InputDeviceInfo extends MediaDeviceInfo. See https://w3c.github.io/mediacapture-main/#input-specific-device-info
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { SimulcastLayerDefinition } from '
|
|
2
|
-
import { HMSSimulcastLayer } from '../hmsSDKStore/sdkTypes';
|
|
1
|
+
import { HMSSimulcastLayer, SimulcastLayerDefinition } from '../hmsSDKStore/sdkTypes';
|
|
3
2
|
import { HMSRoleName } from './role';
|
|
3
|
+
export type { SimulcastLayerDefinition, HMSSimulcastLayer };
|
|
4
4
|
export declare type HMSPeerID = string;
|
|
5
5
|
export declare type HMSTrackID = string;
|
|
6
6
|
export declare type HMSTrackSource = 'regular' | 'screen' | 'plugin' | 'audioplaylist' | 'videoplaylist' | string;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import { HMSRecording, HMSRTMP, HMSHLS } from '@100mslive/hms-video';
|
|
1
|
+
import { HMSRecording, HMSRTMP, HMSHLS, HLSVariant } from '@100mslive/hms-video';
|
|
2
2
|
import { HMSPeerID } from './peer';
|
|
3
|
+
export type { HMSRecording, HMSRTMP, HMSHLS, HLSVariant };
|
|
3
4
|
export declare type HMSRoomID = string;
|
|
4
5
|
/**
|
|
5
6
|
* Check out internal-docs/RoomStateFlow.tldr for flow of room state
|
|
@@ -106,7 +106,7 @@ export declare const selectScreenshareAudioVolumeByPeerID: (id?: string | undefi
|
|
|
106
106
|
/**
|
|
107
107
|
* Select the current simulcast layer of a track given a track ID.
|
|
108
108
|
*/
|
|
109
|
-
export declare const selectSimulcastLayerByTrack: (id?: string | undefined) => import("./common").StoreSelector<HMSStore, import("@100mslive/hms-video").HMSSimulcastLayer | undefined>;
|
|
109
|
+
export declare const selectSimulcastLayerByTrack: (id?: string | undefined) => import("./common").StoreSelector<HMSStore, import("@100mslive/hms-video/dist/interfaces/simulcast-layers").HMSSimulcastLayer | undefined>;
|
|
110
110
|
export declare const selectBroadcastMessages: import("reselect").OutputSelector<HMSStore, import("../schema").HMSMessage[], (res: import("../schema").HMSMessage[]) => import("../schema").HMSMessage[]>;
|
|
111
111
|
export declare const selectBroadcastMessagesUnreadCount: import("reselect").OutputSelector<HMSStore, number, (res: import("../schema").HMSMessage[]) => number>;
|
|
112
112
|
export declare const selectMessagesByPeerID: (id?: string | undefined) => import("./common").StoreSelector<HMSStore, import("../schema").HMSMessage[] | undefined>;
|