@hysc/meeting 2.6.55 → 2.6.57
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/BMChat/BMChatVM.d.ts +1 -0
- package/esm/BMUser/BMUser.d.ts +1 -0
- package/esm/index.js +1 -1
- package/esm/index.js.map +2 -2
- package/esm/util/sortUtils.d.ts +10 -0
- package/package.json +3 -3
- package/umd/BMChat/BMChatVM.d.ts +1 -0
- package/umd/BMUser/BMUser.d.ts +1 -0
- package/umd/index.js +1 -1
- package/umd/util/sortUtils.d.ts +10 -0
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @name: sortUtils
|
|
3
|
+
* @author: yangliye
|
|
4
|
+
* @date: 2023-02-22 18:17
|
|
5
|
+
* @description:sortUtils
|
|
6
|
+
* @update: 2023-02-22 18:17
|
|
7
|
+
*/
|
|
8
|
+
import BMUser from "../BMUser/BMUser";
|
|
9
|
+
import { MODEL_SORT_ENUM_STAND, MODEL_SORT_ENUM_ZY } from "../constants";
|
|
10
|
+
export declare function getSortNum(user: BMUser): MODEL_SORT_ENUM_ZY | MODEL_SORT_ENUM_STAND;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hysc/meeting",
|
|
3
|
-
"version": "2.6.
|
|
3
|
+
"version": "2.6.57",
|
|
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.39",
|
|
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.39"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"@types/lodash-es": "^4.17.6"
|
package/umd/BMChat/BMChatVM.d.ts
CHANGED
|
@@ -17,6 +17,7 @@ export default class BMChatVM {
|
|
|
17
17
|
*/
|
|
18
18
|
sendMessage(talkMsg: string, userId: string | undefined, lostNet: boolean): Promise<void>;
|
|
19
19
|
addMessage(info: BMMessageInfo, isParticipantNotice: boolean): void;
|
|
20
|
+
updateMessageListWatcher(messageList: Array<BMMessageInfo>): void;
|
|
20
21
|
/**
|
|
21
22
|
* 获取历史消息
|
|
22
23
|
*/
|