@hysc/meeting 0.7.0 → 0.8.0
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/BMRoom/attachEvents.d.ts +27 -27
- package/esm/index.js +2 -2
- package/esm/index.js.map +2 -2
- package/package.json +3 -3
- package/umd/BMRoom/attachEvents.d.ts +27 -0
- package/umd/index.js +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hysc/meeting",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.8.0",
|
|
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": "0.
|
|
17
|
+
"@hysc/core": "0.7.0",
|
|
18
18
|
"lodash-es": "^4.17.21",
|
|
19
19
|
"mitt": "^3.0.0",
|
|
20
20
|
"p-queue": "git+ssh://git@git.baijiashilian.com:LLL/frondend/p-queue.git#master",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"@hysc/utils": "0.1.0"
|
|
24
24
|
},
|
|
25
25
|
"peerDependencies": {
|
|
26
|
-
"@hysc/core": "0.
|
|
26
|
+
"@hysc/core": "0.7.0"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"@types/lodash-es": "^4.17.6"
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import BoomCore from '@hysc/core/esm';
|
|
2
|
+
import BMStreamModelVM from "../BMStream/BMStreamModelVM";
|
|
3
|
+
import BMRoom from './BMRoom';
|
|
4
|
+
import BMUserVM from "../BMUser/BMUserVM";
|
|
5
|
+
import BMChatVM from '../BMChat/BMChatVM';
|
|
6
|
+
import BMStreamModel from "../BMStream/BMStreamModel";
|
|
7
|
+
export declare const shouldProcessQueue: Map<string, import("@hysc/core/esm/BoomAdapter/singleMode/stream/RemoteStream").default>;
|
|
8
|
+
/**
|
|
9
|
+
* 收到消息信令的集合
|
|
10
|
+
*/
|
|
11
|
+
export declare enum MessageType {
|
|
12
|
+
/**
|
|
13
|
+
* 初始化watcher用
|
|
14
|
+
*/
|
|
15
|
+
INIT = "init",
|
|
16
|
+
/**
|
|
17
|
+
* 收到远端控制本地摄像头的消息
|
|
18
|
+
*/
|
|
19
|
+
VIDEO_FORCE_CHANGE = "video-force-change",
|
|
20
|
+
/**
|
|
21
|
+
* 收到远端控制本地麦克风的消息
|
|
22
|
+
*/
|
|
23
|
+
AUDIO_FORCE_CHANGE = "audio-force-change"
|
|
24
|
+
}
|
|
25
|
+
export declare function attachBRTCEvent(boomCore: BoomCore, bmStreamVm: BMStreamModelVM, userVM: BMUserVM): void;
|
|
26
|
+
export declare function attachEvents(boomCore: BoomCore, userVM: BMUserVM, bmStreamVm: BMStreamModelVM, chatVM: BMChatVM, bmRoom: BMRoom): any;
|
|
27
|
+
export declare function checkStreamIsNormal(streamModel: BMStreamModel | undefined): void;
|