@hysc/meeting 5.0.53 → 5.0.55

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.
@@ -15,15 +15,16 @@
15
15
  */
16
16
  /// <reference types="node" />
17
17
  import BMStreamModel, { NoPlayerContainer } from "./BMStreamModel";
18
- import BMUser from '../BMUser/BMUser';
19
- import { SingleLocalStream, SingleRemoteStream, SingleStream } from '../type';
20
- import BMRoom from '../BMRoom/BMRoom';
21
- import { BehaviorSubject, Subject } from 'rxjs';
22
- import { Device } from '@hysc/core/esm/BoomAdapter/type/value';
23
- import BMSpeaker from './BMSpeaker';
18
+ import BMUser from "../BMUser/BMUser";
19
+ import { SingleLocalStream, SingleRemoteStream, SingleStream } from "../type";
20
+ import BMRoom from "../BMRoom/BMRoom";
21
+ import { BehaviorSubject, Subject } from "rxjs";
22
+ import BoomError from "../error/RTCError";
23
+ import { Device } from "@hysc/core/esm/BoomAdapter/type/value";
24
+ import BMSpeaker from "./BMSpeaker";
24
25
  import { ShareMediaOptions } from "@hysc/core/esm/BoomCore/BCClient/BCClient";
25
- import { getHTMLMediaStreamOptions, Result, getMediaStreamInfo } from "./getHTMLMediaStreamOptions";
26
- import { BloudStream } from '@hysc/core';
26
+ import { getHTMLMediaStreamOptions, getMediaStreamInfo, Result } from "./getHTMLMediaStreamOptions";
27
+ import { BloudStream } from "@hysc/core";
27
28
  export declare function transShareScreen2User(userId: string): string;
28
29
  export default class BMStreamModelVM {
29
30
  streamModels: Map<string, BMStreamModel>;
@@ -73,6 +74,7 @@ export default class BMStreamModelVM {
73
74
  * 窗口没有大窗口播放容器的错误处理
74
75
  */
75
76
  noBigContainerWatcher: Subject<BMStreamModel>;
77
+ localStreamConnectErrorWatcher: Subject<BoomError>;
76
78
  constructor();
77
79
  private static filterStreamModels;
78
80
  initWithRoom(room: BMRoom): this;