@hysc/meeting 5.0.74 → 5.0.76

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.
@@ -638,6 +638,7 @@ export default class BMRoom {
638
638
  * @param event
639
639
  */
640
640
  private handleStreamConnectError;
641
+ republishLocalStream: any;
641
642
  /**
642
643
  * 设置用户禁止/允许发言
643
644
  * @param bmUser
@@ -142,7 +142,7 @@ export default class BMStreamModelVM {
142
142
  * @param audio
143
143
  * @param video
144
144
  */
145
- joinWithAudioAndAudio(audio: boolean, video: boolean): Promise<undefined>;
145
+ joinWithAudioAndAudio(audio: boolean, video: boolean): Promise<void>;
146
146
  /**
147
147
  * 切换扬声器
148
148
  * @param device
@@ -19,6 +19,7 @@ export default class AudioPlay {
19
19
  constructor(containerId: string, room: BMRoom);
20
20
  addStream(stream: SingleStream): void;
21
21
  removeStream(stream: SingleStream): void;
22
+ removeStreamByUid(uid: string): void;
22
23
  play(stream: SingleStream): Promise<void>;
23
24
  mute(mute: boolean): void;
24
25
  setVolume(streamId: string, volume: number): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hysc/meeting",
3
- "version": "5.0.74",
3
+ "version": "5.0.76",
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": "5.0.72",
17
+ "@hysc/core": "5.0.74",
18
18
  "@hysc/logger": "1.0.0",
19
19
  "lodash-es": "^4.17.21",
20
20
  "mitt": "^3.0.0",
@@ -24,7 +24,7 @@
24
24
  "@hysc/utils": "1.2.4"
25
25
  },
26
26
  "peerDependencies": {
27
- "@hysc/core": "5.0.72"
27
+ "@hysc/core": "5.0.74"
28
28
  },
29
29
  "devDependencies": {
30
30
  "@types/lodash-es": "^4.17.6"
@@ -142,7 +142,7 @@ export default class BMStreamModelVM {
142
142
  * @param audio
143
143
  * @param video
144
144
  */
145
- joinWithAudioAndAudio(audio: boolean, video: boolean): Promise<undefined>;
145
+ joinWithAudioAndAudio(audio: boolean, video: boolean): Promise<void>;
146
146
  /**
147
147
  * 切换扬声器
148
148
  * @param device
@@ -19,6 +19,7 @@ export default class AudioPlay {
19
19
  constructor(containerId: string, room: BMRoom);
20
20
  addStream(stream: SingleStream): void;
21
21
  removeStream(stream: SingleStream): void;
22
+ removeStreamByUid(uid: string): void;
22
23
  play(stream: SingleStream): Promise<void>;
23
24
  mute(mute: boolean): void;
24
25
  setVolume(streamId: string, volume: number): void;