@hysc/meeting 4.0.12 → 4.0.14

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.
@@ -118,6 +118,16 @@ export default class BMUserVM {
118
118
  * @param total
119
119
  */
120
120
  initUsers(total: number): Promise<void>;
121
+ /**
122
+ * 拉取bloud全量用户
123
+ * @param pullQueue
124
+ */
125
+ /**
126
+ * 把bloud用户转化为当前的BMUser 和创建对应的BMStreamModel
127
+ * @param page
128
+ * @param permission
129
+ */
130
+ transBloudUsers: (page: number, permission?: string) => Promise<void>;
121
131
  /**
122
132
  * 本地嘉宾用户降级为普通参会者之后要取消拉流
123
133
  */
@@ -0,0 +1,12 @@
1
+ /**
2
+ * @name: Thread
3
+ * @author: yangliye
4
+ * @date: 2023-05-06 15:33
5
+ * @description:Thread
6
+ * @update: 2023-05-06 15:33
7
+ */
8
+ /**
9
+ * 休眠 ms
10
+ * @param ms
11
+ */
12
+ export declare function sleep(ms: number): Promise<unknown>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hysc/meeting",
3
- "version": "4.0.12",
3
+ "version": "4.0.14",
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": "4.0.12",
17
+ "@hysc/core": "4.0.14",
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.3"
24
24
  },
25
25
  "peerDependencies": {
26
- "@hysc/core": "4.0.12"
26
+ "@hysc/core": "4.0.14"
27
27
  },
28
28
  "devDependencies": {
29
29
  "@types/lodash-es": "^4.17.6"
@@ -118,6 +118,16 @@ export default class BMUserVM {
118
118
  * @param total
119
119
  */
120
120
  initUsers(total: number): Promise<void>;
121
+ /**
122
+ * 拉取bloud全量用户
123
+ * @param pullQueue
124
+ */
125
+ /**
126
+ * 把bloud用户转化为当前的BMUser 和创建对应的BMStreamModel
127
+ * @param page
128
+ * @param permission
129
+ */
130
+ transBloudUsers: (page: number, permission?: string) => Promise<void>;
121
131
  /**
122
132
  * 本地嘉宾用户降级为普通参会者之后要取消拉流
123
133
  */
@@ -0,0 +1,12 @@
1
+ /**
2
+ * @name: Thread
3
+ * @author: yangliye
4
+ * @date: 2023-05-06 15:33
5
+ * @description:Thread
6
+ * @update: 2023-05-06 15:33
7
+ */
8
+ /**
9
+ * 休眠 ms
10
+ * @param ms
11
+ */
12
+ export declare function sleep(ms: number): Promise<unknown>;