@hysc/meeting 5.0.36 → 5.0.37

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.
@@ -111,6 +111,8 @@ export default class BMRoom {
111
111
  bmLiveVM: BMLiveVM;
112
112
  isInWaitRoom: boolean;
113
113
  constructor({ initDevices }?: BMRoomProps);
114
+ handleReprocessStreamError: () => void;
115
+ initAudioPlayer(playerContainerId: string): void;
114
116
  /**
115
117
  * 初始化底层会控相关
116
118
  * @param options
@@ -55,6 +55,11 @@ export default class BMStreamModel {
55
55
  isInBigObserve: Subject<boolean>;
56
56
  _hasPulled: boolean;
57
57
  playerId: string;
58
+ /**
59
+ * 手动拉流配置
60
+ * shouldPull 是否应该拉
61
+ */
62
+ shouldPull: boolean;
58
63
  get hasPulled(): boolean;
59
64
  set hasPulled(value: boolean);
60
65
  /**