@hysc/meeting 4.0.51 → 4.0.52
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/esm/boom-meeting/src/BMRoom/BMRoom.d.ts +1 -8
- package/esm/boom-meeting/src/constants.d.ts +6 -5
- package/esm/boom-meeting/src/handleEvent/handleRoomEvent.d.ts +1 -1
- package/esm/index.js +1 -1
- package/esm/index.js.map +3 -3
- package/esm/src/BMRoom/BMRoom.d.ts +639 -639
- package/esm/src/constants.d.ts +6 -5
- package/esm/src/handleEvent/handleRoomEvent.d.ts +1 -1
- package/package.json +3 -3
- package/umd/boom-meeting/src/BMRoom/BMRoom.d.ts +1 -8
- package/umd/boom-meeting/src/constants.d.ts +6 -5
- package/umd/boom-meeting/src/handleEvent/handleRoomEvent.d.ts +1 -1
- package/umd/index.js +1 -1
- package/umd/src/BMRoom/BMRoom.d.ts +8 -2
|
@@ -3,13 +3,14 @@ import BMRoomVM, { AudioProfileInfo } from "./BMRoomVM";
|
|
|
3
3
|
import BMUserVM from '../BMUser/BMUserVM';
|
|
4
4
|
import { SingleLocalStream, SingleRemoteStream, SubscribeOptions } from '../type';
|
|
5
5
|
import BMChatVM from '../BMChat/BMChatVM';
|
|
6
|
-
import BMStreamModelVM from
|
|
6
|
+
import BMStreamModelVM from "../BMStream/BMStreamModelVM";
|
|
7
7
|
import { Device, VideoProfile } from '@hysc/core/esm/BoomAdapter/type/value';
|
|
8
8
|
import BMRoomInfo from './BMRoomInfo';
|
|
9
9
|
import { BehaviorSubject, Subject } from 'rxjs';
|
|
10
10
|
import BMStreamModel from '../BMStream/BMStreamModel';
|
|
11
11
|
import BMUser from '../BMUser/BMUser';
|
|
12
12
|
import BMLiveVM from './BMLiveVM';
|
|
13
|
+
import SingletonQueue, { PullItem } from "../SingletonQueue/SingletonQueue";
|
|
13
14
|
interface BMRoomProps {
|
|
14
15
|
initDevices: boolean;
|
|
15
16
|
}
|
|
@@ -27,6 +28,7 @@ export default class BMRoom {
|
|
|
27
28
|
selectVideoDevice: Device | null;
|
|
28
29
|
selectAudioDevice: Device | null;
|
|
29
30
|
selectAudioOutputDevice: Device | null;
|
|
31
|
+
streamQueue: SingletonQueue;
|
|
30
32
|
/**
|
|
31
33
|
* 这个参数是和业务相关的功能,业务上的参会者列表是可以配置的,如果设置了只展示一列,那么所有的用户都要存储
|
|
32
34
|
* 在commonUserList中
|
|
@@ -75,6 +77,7 @@ export default class BMRoom {
|
|
|
75
77
|
* 会控底层相关处理, 比如是否取消自动拉流
|
|
76
78
|
*/
|
|
77
79
|
private meetingControlOptions;
|
|
80
|
+
forceId: string;
|
|
78
81
|
get isSingleColumns(): boolean;
|
|
79
82
|
/**
|
|
80
83
|
* 传递信息用的,主要是用于message信令往上层业务发送消息
|
|
@@ -246,7 +249,6 @@ export default class BMRoom {
|
|
|
246
249
|
*/
|
|
247
250
|
setLocalSpeakerEnable(status: boolean): Promise<void>;
|
|
248
251
|
private _attachEvents;
|
|
249
|
-
private _attachBrtcEvent;
|
|
250
252
|
/**
|
|
251
253
|
* 创建本地流
|
|
252
254
|
* @param options
|
|
@@ -634,6 +636,10 @@ export default class BMRoom {
|
|
|
634
636
|
* 重拉远端流
|
|
635
637
|
*/
|
|
636
638
|
handleResetOtherStreamStatus(): void;
|
|
639
|
+
addUser2Queue(pullItem: PullItem): Promise<void>;
|
|
640
|
+
queueProcessor: any;
|
|
641
|
+
handleAddStreams(streams: SingleRemoteStream[]): void;
|
|
642
|
+
queryBrtcStreams(uids: string[]): Promise<any>;
|
|
637
643
|
getVersion(): string;
|
|
638
644
|
}
|
|
639
645
|
export {};
|