@hysc/meeting 4.0.22 → 4.0.24

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.
@@ -477,6 +477,11 @@ export default class BMRoom {
477
477
  * @return {Promise}
478
478
  */
479
479
  setAudioOff(audiooff: boolean, selfopenaudio: boolean): Promise<any>;
480
+ /**
481
+ * 更新房间状态
482
+ * @param opts
483
+ */
484
+ updateRoom(opts: any): Promise<void>;
480
485
  /**
481
486
  * 设置全员禁用摄像头
482
487
  * @param {Boolean} videooff - 是否禁用摄像头
@@ -149,6 +149,7 @@ export default class BMRoomInfo {
149
149
  chatNoticeWatcher: Subject<unknown>;
150
150
  totalUserWatcher: BehaviorSubject<number>;
151
151
  totalWaitRoomUserWatcher: BehaviorSubject<number>;
152
+ isOpenWaitRoom: Subject<boolean>;
152
153
  constructor();
153
154
  get roomName(): string;
154
155
  /**
@@ -160,6 +160,11 @@ export default class BMRoomVM {
160
160
  * @param enable 0 不允许 1 允许
161
161
  */
162
162
  giveLikeEnable(enable: 0 | 1): Promise<void>;
163
+ /**
164
+ * 入会自动静音配置 0 关闭 1 开启自动静音 2 超过6个人入会自动静音
165
+ * @param enable
166
+ */
167
+ changeAutoMute(enable: 0 | 1 | 2): Promise<void>;
163
168
  /**
164
169
  * 观众点赞(走customMessage)
165
170
  * @param type 1:点赞, 2:送花, 3:爱心, 4: 鼓掌, 5: 喝彩
@@ -115,5 +115,6 @@ export interface CustomStats {
115
115
  onlyOnePersonShare: number;
116
116
  raiseHandEnable: number;
117
117
  joinCueVoice: number;
118
+ autoMute: number;
118
119
  }
119
120
  export declare type PartialCustomStats = Partial<CustomStats>;