@hysc/meeting 3.0.25 → 3.0.27

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.
@@ -82,6 +82,7 @@ export default class BMRoom {
82
82
  roomInfo: BMRoomInfo;
83
83
  localUser: BMUser;
84
84
  bmLiveVM: BMLiveVM;
85
+ isInWaitRoom: boolean;
85
86
  constructor({ initDevices }?: BMRoomProps);
86
87
  /**
87
88
  * 初始化底层会控相关
@@ -399,6 +400,7 @@ export default class BMRoom {
399
400
  * @param {Boolean} options.switch - 房间是否开启准入开关,可选
400
401
  * @param {Boolean} options.lock - 房间是否锁定
401
402
  * @param {Boolean} options.secret - 不为空时表示房间密码,为以`md5(${room}.${secret})`计算所得值为参数
403
+ * @param {Boolean} options.waitroom - 开关等候室 false 关闭
402
404
  * @returns {Promise}
403
405
  */
404
406
  update(options: any): Promise<any>;
@@ -73,4 +73,5 @@ export declare function sortStreamModelsOrUser<T extends BMUser | BMStreamModel>
73
73
  */
74
74
  export declare function getIsCommonUser(permission: string): boolean;
75
75
  export declare function getIsManager(permission: string): boolean;
76
+ export declare function getIsMaster(permission: string): boolean;
76
77
  export declare function getPermission(permission: string, p: string): boolean;