@hysc/meeting 3.0.17 → 3.0.19
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/index.js +1 -1
- package/esm/index.js.map +2 -2
- package/esm/src/BMRoom/BMRoomInfo.d.ts +4 -0
- package/esm/src/BMRoom/BMRoomVM.d.ts +5 -0
- package/esm/src/BMUser/BMUserVM.d.ts +4 -4
- package/esm/src/type/customStats.d.ts +1 -0
- package/package.json +3 -3
- package/umd/index.js +1 -1
- package/umd/src/BMRoom/BMRoomInfo.d.ts +4 -0
- package/umd/src/BMRoom/BMRoomVM.d.ts +5 -0
- package/umd/src/BMUser/BMUserVM.d.ts +4 -4
- package/umd/src/type/customStats.d.ts +1 -0
|
@@ -216,6 +216,11 @@ export default class BMRoomVM {
|
|
|
216
216
|
*/
|
|
217
217
|
forceOpenUserMic(enable: true | false): Promise<void>;
|
|
218
218
|
/**
|
|
219
|
+
* 入会提示音设置
|
|
220
|
+
* @param enable 0关闭 1开启
|
|
221
|
+
*/
|
|
222
|
+
joinCueVoice(enable: 0 | 1): Promise<void>;
|
|
223
|
+
/**
|
|
219
224
|
* 是否全员可录制
|
|
220
225
|
* @param enable 0全员 1嘉宾 2仅主持人
|
|
221
226
|
*/
|
|
@@ -129,10 +129,10 @@ export default class BMUserVM {
|
|
|
129
129
|
getTotalUserNumber(): Promise<number>;
|
|
130
130
|
clearUsers(): void;
|
|
131
131
|
/**
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
132
|
+
* 参会者列表搜索(嘉宾及以上才能搜索)
|
|
133
|
+
* @param searchTxt 搜索文本
|
|
134
|
+
* @param pageSize 一页几个
|
|
135
|
+
*/
|
|
136
136
|
searchUsers(searchTxt: string, pageSize: number): Promise<{
|
|
137
137
|
userList: BMUser[];
|
|
138
138
|
commonUserList: BMUser[];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hysc/meeting",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.19",
|
|
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": "3.0.
|
|
17
|
+
"@hysc/core": "3.0.16",
|
|
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.0"
|
|
24
24
|
},
|
|
25
25
|
"peerDependencies": {
|
|
26
|
-
"@hysc/core": "3.0.
|
|
26
|
+
"@hysc/core": "3.0.16"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"@types/lodash-es": "^4.17.6"
|