@hysc/meeting 5.0.102 → 5.0.104
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/BMStream/BMStreamModel.d.ts +1 -0
- package/esm/boom-meeting/src/BMStream/BMStreamModelVM.d.ts +5 -0
- package/esm/boom-meeting/src/SingletonQueue/SingletonQueue.d.ts +1 -0
- package/esm/index.js +1 -1
- package/esm/index.js.map +3 -3
- package/esm/src/BMRoom/BMRoom.d.ts +696 -696
- package/esm/src/BMStream/BMStreamModel.d.ts +1 -0
- package/esm/src/BMStream/BMStreamModelVM.d.ts +5 -0
- package/esm/src/SingletonQueue/SingletonQueue.d.ts +1 -0
- package/package.json +4 -4
- package/umd/boom-meeting/src/BMStream/BMStreamModel.d.ts +1 -0
- package/umd/boom-meeting/src/BMStream/BMStreamModelVM.d.ts +5 -0
- package/umd/boom-meeting/src/SingletonQueue/SingletonQueue.d.ts +1 -0
- package/umd/index.js +1 -1
|
@@ -260,5 +260,10 @@ export default class BMStreamModelVM {
|
|
|
260
260
|
* 更新流信息 会给服务端发送updateStream信令,会收到updateStream的广播
|
|
261
261
|
*/
|
|
262
262
|
updateBloudStreamCustomStats(uid: string, streamId: string, streamInfo: StreamCustomInfo): Promise<any> | undefined;
|
|
263
|
+
/**
|
|
264
|
+
* 布局发生变化之后去调用一下这个方法去检测所有流的播放状态
|
|
265
|
+
* @param {string} status tag 用于区分是什么状态下调用的
|
|
266
|
+
*/
|
|
267
|
+
checkStreamStats(status: string): void;
|
|
263
268
|
clearCache(): void;
|
|
264
269
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hysc/meeting",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.104",
|
|
4
4
|
"description": "boom meeting",
|
|
5
5
|
"main": "umd/index.js",
|
|
6
6
|
"module": "esm/index.js",
|
|
@@ -19,13 +19,13 @@
|
|
|
19
19
|
"@hysc/p-queue": "6.3.0",
|
|
20
20
|
"rxjs": "^7.5.5",
|
|
21
21
|
"typescript": "^4.6.3",
|
|
22
|
-
"@hysc/bloud": "1.0.100",
|
|
23
|
-
"@hysc/core": "5.0.100",
|
|
24
22
|
"@hysc/logger": "1.0.0",
|
|
23
|
+
"@hysc/bloud": "1.0.102",
|
|
24
|
+
"@hysc/core": "5.0.102",
|
|
25
25
|
"@hysc/utils": "1.2.4"
|
|
26
26
|
},
|
|
27
27
|
"peerDependencies": {
|
|
28
|
-
"@hysc/core": "5.0.
|
|
28
|
+
"@hysc/core": "5.0.102"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"@types/lodash-es": "^4.17.6"
|
|
@@ -260,5 +260,10 @@ export default class BMStreamModelVM {
|
|
|
260
260
|
* 更新流信息 会给服务端发送updateStream信令,会收到updateStream的广播
|
|
261
261
|
*/
|
|
262
262
|
updateBloudStreamCustomStats(uid: string, streamId: string, streamInfo: StreamCustomInfo): Promise<any> | undefined;
|
|
263
|
+
/**
|
|
264
|
+
* 布局发生变化之后去调用一下这个方法去检测所有流的播放状态
|
|
265
|
+
* @param {string} status tag 用于区分是什么状态下调用的
|
|
266
|
+
*/
|
|
267
|
+
checkStreamStats(status: string): void;
|
|
263
268
|
clearCache(): void;
|
|
264
269
|
}
|