@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.
@@ -3,14 +3,13 @@ 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 "../BMStream/BMStreamModelVM";
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";
14
13
  interface BMRoomProps {
15
14
  initDevices: boolean;
16
15
  }
@@ -28,7 +27,6 @@ export default class BMRoom {
28
27
  selectVideoDevice: Device | null;
29
28
  selectAudioDevice: Device | null;
30
29
  selectAudioOutputDevice: Device | null;
31
- streamQueue: SingletonQueue;
32
30
  /**
33
31
  * 这个参数是和业务相关的功能,业务上的参会者列表是可以配置的,如果设置了只展示一列,那么所有的用户都要存储
34
32
  * 在commonUserList中
@@ -77,7 +75,6 @@ export default class BMRoom {
77
75
  * 会控底层相关处理, 比如是否取消自动拉流
78
76
  */
79
77
  private meetingControlOptions;
80
- forceId: string;
81
78
  get isSingleColumns(): boolean;
82
79
  /**
83
80
  * 传递信息用的,主要是用于message信令往上层业务发送消息
@@ -637,10 +634,6 @@ export default class BMRoom {
637
634
  * 重拉远端流
638
635
  */
639
636
  handleResetOtherStreamStatus(): void;
640
- addUser2Queue(pullItem: PullItem): Promise<void>;
641
- queueProcessor: any;
642
- handleAddStreams(streams: SingleRemoteStream[]): void;
643
- queryBrtcStreams(uids: string[]): Promise<any>;
644
637
  getVersion(): string;
645
638
  }
646
639
  export {};
@@ -22,11 +22,12 @@ export declare enum MODEL_SORT_ENUM_STAND {
22
22
  GUEST_AUDIO_VIDEO = 10,
23
23
  GUEST_AUDIO = 11,
24
24
  GUEST_VIDEO = 12,
25
- SIGNAL = 13,
26
- COMMONUSER_AUDIO_VIDEO = 14,
27
- COMMONUSER_AUDIO = 15,
28
- COMMONUSER_VIDEO = 16,
29
- OTHER = 17
25
+ GUEST = 13,
26
+ SIGNAL = 14,
27
+ COMMONUSER_AUDIO_VIDEO = 15,
28
+ COMMONUSER_AUDIO = 16,
29
+ COMMONUSER_VIDEO = 17,
30
+ OTHER = 18
30
31
  }
31
32
  /**
32
33
  * 中移排序规则
@@ -8,7 +8,7 @@
8
8
  import BMRoom from "../BMRoom/BMRoom";
9
9
  import BMUserVM from "../BMUser/BMUserVM";
10
10
  import BMStreamModelVM from "../BMStream/BMStreamModelVM";
11
- export declare function handleRoomConnected(data: any, bmRoom: BMRoom, userVM: BMUserVM, observes: any): Promise<void>;
11
+ export declare function handleRoomConnected(data: any, bmRoom: BMRoom, userVM: BMUserVM, observes: any, shouldNotification?: boolean): Promise<void>;
12
12
  export declare function handleRoomUpdated(data: any, bmRoom: BMRoom): void;
13
13
  export declare function handleInitRoomInfo(data: any, bmRoom: BMRoom): Promise<void>;
14
14
  export declare function handleRoomSync(data: any, bmRoom: BMRoom, userVm: BMUserVM, bmStreamVm: BMStreamModelVM): Promise<void>;