@hysc/meeting 2.6.47 → 2.6.48
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/BMRoomVM.d.ts +4 -2
- package/esm/index.js +1 -1
- package/esm/index.js.map +2 -2
- package/package.json +3 -3
- package/umd/BMRoom/BMRoomVM.d.ts +4 -2
- package/umd/index.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hysc/meeting",
|
|
3
|
-
"version": "2.6.
|
|
3
|
+
"version": "2.6.48",
|
|
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.32",
|
|
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.32"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"@types/lodash-es": "^4.17.6"
|
package/umd/BMRoom/BMRoomVM.d.ts
CHANGED
|
@@ -12,6 +12,7 @@ declare type giveLikeItem = {
|
|
|
12
12
|
userId: string | undefined;
|
|
13
13
|
nickName: string | undefined;
|
|
14
14
|
time: number;
|
|
15
|
+
type: number;
|
|
15
16
|
};
|
|
16
17
|
export declare type CloudRecord = {
|
|
17
18
|
recordStatus: 0 | 1 | 2;
|
|
@@ -160,9 +161,10 @@ export default class BMRoomVM {
|
|
|
160
161
|
*/
|
|
161
162
|
giveLikeEnable(enable: 0 | 1): Promise<void>;
|
|
162
163
|
/**
|
|
163
|
-
* 观众点赞(走
|
|
164
|
+
* 观众点赞(走customMessage)
|
|
165
|
+
* @param type 1:点赞, 2:送花, 3:爱心, 4: 鼓掌, 5: 喝彩
|
|
164
166
|
*/
|
|
165
|
-
userGiveLike(): Promise<void>;
|
|
167
|
+
userGiveLike(type: 1 | 2 | 3 | 4 | 5): Promise<void>;
|
|
166
168
|
/**
|
|
167
169
|
* 聊天是否可用
|
|
168
170
|
* @param enable 0 不允许 1 允许 2仅主持人 3嘉宾
|