@hysc/meeting 4.0.34 → 4.0.36
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 +2 -1
- package/esm/index.js +2 -2
- package/esm/index.js.map +3 -3
- package/esm/src/BMRoom/BMRoom.d.ts +2 -1
- package/esm/src/BMStream/BMStreamModelVM.d.ts +2 -2
- package/package.json +3 -3
- package/umd/boom-meeting/src/BMRoom/BMRoom.d.ts +2 -1
- package/umd/index.js +2 -2
|
@@ -611,8 +611,9 @@ export default class BMRoom {
|
|
|
611
611
|
* 将用户移动到等候室
|
|
612
612
|
* @param target 用户id
|
|
613
613
|
* @param toWait 是否移动到等候室
|
|
614
|
+
* @param autoJoin 是否自动准入
|
|
614
615
|
*/
|
|
615
|
-
moveUserRoom(target: string, toWait
|
|
616
|
+
moveUserRoom(target: string, toWait?: boolean, autoJoin?: boolean): Promise<any>;
|
|
616
617
|
/**
|
|
617
618
|
* 获取业务端是否开启参会者进入/离开直播通知
|
|
618
619
|
* @param status
|
|
@@ -189,8 +189,8 @@ export default class BMStreamModelVM {
|
|
|
189
189
|
/**
|
|
190
190
|
* 排序变化之后的处理逻辑
|
|
191
191
|
*/
|
|
192
|
-
updateUserSort:
|
|
193
|
-
updateModelSort:
|
|
192
|
+
updateUserSort: import("lodash-es").DebouncedFunc<() => void>;
|
|
193
|
+
updateModelSort: import("lodash-es").DebouncedFunc<() => void>;
|
|
194
194
|
handleNoContainer: (info: NoPlayerContainer) => void;
|
|
195
195
|
/**
|
|
196
196
|
* 创建canvas,目的是为了捕获空track流,给brtc使用
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hysc/meeting",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.36",
|
|
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.36",
|
|
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.36"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"@types/lodash-es": "^4.17.6"
|
|
@@ -611,8 +611,9 @@ export default class BMRoom {
|
|
|
611
611
|
* 将用户移动到等候室
|
|
612
612
|
* @param target 用户id
|
|
613
613
|
* @param toWait 是否移动到等候室
|
|
614
|
+
* @param autoJoin 是否自动准入
|
|
614
615
|
*/
|
|
615
|
-
moveUserRoom(target: string, toWait
|
|
616
|
+
moveUserRoom(target: string, toWait?: boolean, autoJoin?: boolean): Promise<any>;
|
|
616
617
|
/**
|
|
617
618
|
* 获取业务端是否开启参会者进入/离开直播通知
|
|
618
619
|
* @param status
|