@hysc/meeting 3.0.21 → 3.0.23
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/index.js +7 -7
- package/esm/index.js.map +2 -2
- package/esm/src/BMRoom/BMRoom.d.ts +1 -15
- package/esm/src/type/stream.d.ts +0 -2
- package/package.json +3 -3
- package/umd/index.js +7 -7
- package/umd/src/BMRoom/BMRoom.d.ts +1 -15
- package/umd/src/type/stream.d.ts +0 -2
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import BoomCore from '@hysc/core';
|
|
2
2
|
import BMRoomVM, { AudioProfileInfo } from "./BMRoomVM";
|
|
3
3
|
import BMUserVM from '../BMUser/BMUserVM';
|
|
4
|
-
import { SingleLocalStream, SingleRemoteStream,
|
|
4
|
+
import { SingleLocalStream, SingleRemoteStream, SubscribeOptions } from '../type';
|
|
5
5
|
import BMChatVM from '../BMChat/BMChatVM';
|
|
6
6
|
import BMStreamModelVM from '../BMStream/BMStreamModelVM';
|
|
7
7
|
import { Device, VideoProfile } from '@hysc/core/esm/BoomAdapter/type/value';
|
|
@@ -265,20 +265,6 @@ export default class BMRoom {
|
|
|
265
265
|
video: boolean;
|
|
266
266
|
audio: boolean;
|
|
267
267
|
} | undefined, sid: string): Promise<any>;
|
|
268
|
-
/**
|
|
269
|
-
* 创建单一模式远端流
|
|
270
|
-
* @param options
|
|
271
|
-
* @returns stream 返回的流实例
|
|
272
|
-
* @example
|
|
273
|
-
const remoteStreamParams = {
|
|
274
|
-
uid: 996,
|
|
275
|
-
stream: stream,
|
|
276
|
-
subStream: subStreams,
|
|
277
|
-
sid: streamId,
|
|
278
|
-
}
|
|
279
|
-
let remoteStream = boomMeeting.createRemoteStream(remoteStreamParams)
|
|
280
|
-
*/
|
|
281
|
-
createSingleRemoteStream(options: SingleRemoteStreamOption): import("@hysc/core/esm/BoomAdapter/singleMode/stream/RemoteStream").default;
|
|
282
268
|
/**
|
|
283
269
|
* 枚举视频输入设备
|
|
284
270
|
*
|
package/umd/src/type/stream.d.ts
CHANGED
|
@@ -8,10 +8,8 @@
|
|
|
8
8
|
import LocalStream from '@hysc/core/esm/BoomAdapter/singleMode/stream/LocalStream';
|
|
9
9
|
import RemoteStream from '@hysc/core/esm/BoomAdapter/singleMode/stream/RemoteStream';
|
|
10
10
|
import { StreamDeviceOption } from '@hysc/core/esm/BoomAdapter/type/BRTCStream';
|
|
11
|
-
import { RemoteStreamOptions } from '@hysc/core/esm/BoomCore/BCClient/BCClient';
|
|
12
11
|
export { SubscribeOptions } from '@hysc/core/esm/BoomAdapter/type/BRTCClient';
|
|
13
12
|
export declare type SingleLocalStream = LocalStream;
|
|
14
13
|
export declare type SingleRemoteStream = RemoteStream;
|
|
15
14
|
export declare type SingleStream = SingleLocalStream | SingleRemoteStream;
|
|
16
15
|
export declare type SingleStreamDeviceOption = StreamDeviceOption;
|
|
17
|
-
export declare type SingleRemoteStreamOption = Pick<RemoteStreamOptions, 'uid' | 'stream' | 'subStream' | 'sid'>;
|