trtc-sdk-v5 5.6.2-beta.7 → 5.6.2-beta.8

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/index.d.ts CHANGED
@@ -1582,7 +1582,6 @@ declare interface TRTCEventTypes {
1582
1582
  */
1583
1583
  getVideoSnapshot(config?: VideoFrameConfig): string;
1584
1584
  setCurrentSpeaker(speakerId: string): void;
1585
- setJitterBufferDelay(delay: number): void;
1586
1585
  /**
1587
1586
  * Send SEI Message <br>
1588
1587
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "trtc-sdk-v5",
3
- "version": "5.6.2-beta.7",
3
+ "version": "5.6.2-beta.8",
4
4
  "description": "Tencent Cloud RTC SDK for Web",
5
5
  "main": "trtc.js",
6
6
  "types": "index.d.ts",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rtc-plugin/cdn-streaming",
3
- "version": "5.6.2-beta.7",
3
+ "version": "5.6.2-beta.8",
4
4
  "description": "TRTC Web SDK 5.x CDN streaming plugin",
5
5
  "main": "./cdn-streaming.esm.js",
6
6
  "author": "longyuqi <longyuqi@tencent.com>",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rtc-plugin/beauty",
3
- "version": "5.6.2-beta.7",
3
+ "version": "5.6.2-beta.8",
4
4
  "description": "TRTC Web SDK 5.x beauty plugin",
5
5
  "main": "./beauty.esm.js",
6
6
  "author": "longyuqi <longyuqi@tencent.com>",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rtc-plugin/virtual-background",
3
- "version": "5.6.2-beta.7",
3
+ "version": "5.6.2-beta.8",
4
4
  "description": "TRTC Web SDK 5.x virtual background plugin",
5
5
  "main": "./virtual-background.esm.js",
6
6
  "author": "longyuqi <longyuqi@tencent.com>",
@@ -9,12 +9,14 @@ export interface VirtualBackgroundOptions {
9
9
  userId: string;
10
10
  userSig: string;
11
11
  type?: 'image' | 'blur';
12
+ blurLevel?: number;
12
13
  src?: string;
13
14
  }
14
15
 
15
16
 
16
17
  export interface UpdateVirtualBackgroundOptions {
17
18
  type: 'image' | 'blur';
19
+ blurLevel?: number;
18
20
  src?: string;
19
21
  }
20
22