@hysc/meeting 3.0.17 → 3.0.19

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.
@@ -81,6 +81,10 @@ interface OperationCustomStats {
81
81
  * 是否允许举手 0禁止全员 1允许嘉宾 2全员可举手
82
82
  */
83
83
  raiseHandEnable: 0 | 1 | 2;
84
+ /**
85
+ * 入会提示音设置
86
+ */
87
+ joinCueVoice: 0 | 1;
84
88
  }
85
89
  export default class BMRoomInfo {
86
90
  private room;
@@ -216,6 +216,11 @@ export default class BMRoomVM {
216
216
  */
217
217
  forceOpenUserMic(enable: true | false): Promise<void>;
218
218
  /**
219
+ * 入会提示音设置
220
+ * @param enable 0关闭 1开启
221
+ */
222
+ joinCueVoice(enable: 0 | 1): Promise<void>;
223
+ /**
219
224
  * 是否全员可录制
220
225
  * @param enable 0全员 1嘉宾 2仅主持人
221
226
  */
@@ -129,10 +129,10 @@ export default class BMUserVM {
129
129
  getTotalUserNumber(): Promise<number>;
130
130
  clearUsers(): void;
131
131
  /**
132
- * 参会者列表搜索(嘉宾及以上才能搜索)
133
- * @param searchTxt 搜索文本
134
- * @param pageSize 一页几个
135
- */
132
+ * 参会者列表搜索(嘉宾及以上才能搜索)
133
+ * @param searchTxt 搜索文本
134
+ * @param pageSize 一页几个
135
+ */
136
136
  searchUsers(searchTxt: string, pageSize: number): Promise<{
137
137
  userList: BMUser[];
138
138
  commonUserList: BMUser[];
@@ -114,5 +114,6 @@ export interface CustomStats {
114
114
  forceOpenUserCamera: boolean;
115
115
  onlyOnePersonShare: number;
116
116
  raiseHandEnable: number;
117
+ joinCueVoice: number;
117
118
  }
118
119
  export declare type PartialCustomStats = Partial<CustomStats>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hysc/meeting",
3
- "version": "3.0.17",
3
+ "version": "3.0.19",
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": "3.0.14",
17
+ "@hysc/core": "3.0.16",
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": "3.0.14"
26
+ "@hysc/core": "3.0.16"
27
27
  },
28
28
  "devDependencies": {
29
29
  "@types/lodash-es": "^4.17.6"