@hysc/meeting 2.6.66 → 2.6.67
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 +1 -1
- package/esm/index.js.map +2 -2
- package/esm/src/constants.d.ts +16 -12
- package/package.json +3 -3
- package/umd/index.js +1 -1
- package/umd/src/constants.d.ts +16 -12
package/esm/src/constants.d.ts
CHANGED
|
@@ -27,18 +27,22 @@ export declare enum MODEL_SORT_ENUM {
|
|
|
27
27
|
}
|
|
28
28
|
export declare enum STREAM_SORT_NUM {
|
|
29
29
|
MASTER_AUDIO_VIDEO = 0,
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
30
|
+
MASTER_AUDIO = 1,
|
|
31
|
+
MASTER_VIDEO = 2,
|
|
32
|
+
MASTER = 3,
|
|
33
|
+
MANAGER_AUDIO_VIDEO = 4,
|
|
34
|
+
MANAGER_AUDIO = 5,
|
|
35
|
+
MANAGER_VIDEO = 6,
|
|
36
|
+
MANAGER = 7,
|
|
37
|
+
LOCAL = 8,
|
|
38
|
+
GUEST_AUDIO_VIDEO = 9,
|
|
39
|
+
GUEST_AUDIO = 10,
|
|
40
|
+
GUEST_VIDEO = 11,
|
|
41
|
+
AUDIO_VIDEO = 12,
|
|
42
|
+
AUDIO = 13,
|
|
43
|
+
VIDEO = 14,
|
|
44
|
+
GUEST = 15,
|
|
45
|
+
OTHER = 16
|
|
42
46
|
}
|
|
43
47
|
export declare enum STREAM_TYPE {
|
|
44
48
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hysc/meeting",
|
|
3
|
-
"version": "2.6.
|
|
3
|
+
"version": "2.6.67",
|
|
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": "2.6.
|
|
17
|
+
"@hysc/core": "2.6.46",
|
|
18
18
|
"lodash-es": "^4.17.21",
|
|
19
19
|
"mitt": "^3.0.0",
|
|
20
20
|
"@hysc/p-queue": "6.3.0",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"@hysc/utils": "1.2.0"
|
|
24
24
|
},
|
|
25
25
|
"peerDependencies": {
|
|
26
|
-
"@hysc/core": "2.6.
|
|
26
|
+
"@hysc/core": "2.6.46"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"@types/lodash-es": "^4.17.6"
|