quickvo-sdk-js 0.4.7 → 0.4.9

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.
@@ -15,10 +15,18 @@ export declare class RoomUsers extends RoomMedias {
15
15
  * 设置音频过滤
16
16
  */
17
17
  setAudioFilter: (options?: Partial<UserAudioFilterOptions>) => Promise<void>;
18
+ /**
19
+ * 设置增强音量
20
+ * @param userId
21
+ * @param mediaType
22
+ * @param gain
23
+ */
24
+ setEnhanceGain: (userId: string, mediaType: K_mediaType, gain: number) => Promise<void>;
18
25
  /**
19
26
  * 设置音量
20
27
  * @param userId
21
28
  * @param mediaType
29
+ * @param gain
22
30
  */
23
31
  setVolume: (userId: string, mediaType: K_mediaType, gain: number) => void;
24
32
  /**
@@ -33,6 +33,10 @@ export declare class AudioMediaContext {
33
33
  * 静音
34
34
  */
35
35
  setMute: (state?: boolean) => void;
36
+ /**
37
+ * 设置增强音量
38
+ */
39
+ setEnhanceGain: (gain: number) => Promise<void>;
36
40
  /**
37
41
  * 设置音量
38
42
  */
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "quickvo-sdk-js",
3
3
  "description": "提供快捷接入单对单、单对多、群体会议、舞台会议等音视频功能。",
4
- "version": "0.4.7",
4
+ "version": "0.4.9",
5
5
  "type": "module",
6
6
  "files": [
7
7
  "dist"
@@ -20,7 +20,7 @@
20
20
  },
21
21
  "dependencies": {
22
22
  "pako": "^2.1.0",
23
- "pr-task-queue": "^0.1.3",
23
+ "pr-task-queue": "^0.1.8",
24
24
  "pr-tools": "^1.5.1",
25
25
  "pr-ws": "^0.2.5",
26
26
  "sdp-transform": "^2.15.0"