@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.
@@ -287,5 +287,6 @@ export default class BMStreamModel {
287
287
  */
288
288
  subscribeStream(): void;
289
289
  unSubscribeStream(): void;
290
+ checkStreamIsPlaying(): void;
290
291
  }
291
292
  export {};
@@ -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
  }
@@ -10,6 +10,7 @@ export declare type PullItem = {
10
10
  id: string;
11
11
  isScreen: boolean;
12
12
  isWeb?: boolean;
13
+ force?: boolean;
13
14
  };
14
15
  export default class SingletonQueue {
15
16
  private static instance;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hysc/meeting",
3
- "version": "5.0.102",
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.100"
28
+ "@hysc/core": "5.0.102"
29
29
  },
30
30
  "devDependencies": {
31
31
  "@types/lodash-es": "^4.17.6"
@@ -287,5 +287,6 @@ export default class BMStreamModel {
287
287
  */
288
288
  subscribeStream(): void;
289
289
  unSubscribeStream(): void;
290
+ checkStreamIsPlaying(): void;
290
291
  }
291
292
  export {};
@@ -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
  }
@@ -10,6 +10,7 @@ export declare type PullItem = {
10
10
  id: string;
11
11
  isScreen: boolean;
12
12
  isWeb?: boolean;
13
+ force?: boolean;
13
14
  };
14
15
  export default class SingletonQueue {
15
16
  private static instance;