@hysc/meeting 4.0.22 → 4.0.23
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 +5 -0
- package/esm/boom-meeting/src/BMRoom/BMRoomInfo.d.ts +1 -0
- package/esm/boom-meeting/src/BMRoom/BMRoomVM.d.ts +5 -0
- package/esm/boom-meeting/src/type/customStats.d.ts +1 -0
- package/esm/index.js +1 -1
- package/esm/index.js.map +2 -2
- package/esm/src/BMRoom/BMRoom.d.ts +5 -0
- package/esm/src/BMRoom/BMRoomInfo.d.ts +1 -0
- package/esm/src/BMRoom/BMRoomVM.d.ts +5 -0
- package/esm/src/type/customStats.d.ts +1 -0
- package/package.json +3 -3
- package/umd/boom-meeting/src/BMRoom/BMRoom.d.ts +5 -0
- package/umd/boom-meeting/src/BMRoom/BMRoomInfo.d.ts +1 -0
- package/umd/boom-meeting/src/BMRoom/BMRoomVM.d.ts +5 -0
- package/umd/boom-meeting/src/type/customStats.d.ts +1 -0
- package/umd/index.js +1 -1
|
@@ -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: 喝彩
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hysc/meeting",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.23",
|
|
4
4
|
"description": "boom meeting",
|
|
5
5
|
"main": "umd/index.js",
|
|
6
6
|
"module": "esm/index.js",
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"author": "yangliye",
|
|
15
15
|
"license": "MIT",
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@hysc/core": "4.0.
|
|
17
|
+
"@hysc/core": "4.0.23",
|
|
18
18
|
"lodash-es": "^4.17.21",
|
|
19
19
|
"mitt": "^3.0.0",
|
|
20
20
|
"@hysc/p-queue": "6.3.0",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"@hysc/utils": "1.2.3"
|
|
24
24
|
},
|
|
25
25
|
"peerDependencies": {
|
|
26
|
-
"@hysc/core": "4.0.
|
|
26
|
+
"@hysc/core": "4.0.23"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"@types/lodash-es": "^4.17.6"
|
|
@@ -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: 喝彩
|