trtc-sdk-v5 5.6.2-beta.6 → 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
@@ -307,14 +307,12 @@ declare type PluginStartOptionsMap = {
307
307
  'VirtualBackground': VirtualBackgroundOptions;
308
308
  'Watermark': WatermarkOptions;
309
309
  'Beauty': BeautyOptions;
310
- 'BasicBeauty': BasicBeautyOptions;
311
310
  };
312
311
  declare type PluginUpdateOptionsMap = {
313
312
  'AudioMixer': UpdateAudioMixerOptions;
314
313
  'CDNStreaming': CDNStreamingOptions;
315
314
  'VirtualBackground': UpdateVirtualBackgroundOptions;
316
315
  'Beauty': UpdateBeautyOptions;
317
- 'BasicBeauty': BasicBeautyOptions;
318
316
  };
319
317
  declare type PluginStopOptionsMap = {
320
318
  'AudioMixer': StopAudioMixerOptions;
@@ -323,7 +321,6 @@ declare type PluginStopOptionsMap = {
323
321
  'VirtualBackground': undefined;
324
322
  'Watermark': undefined;
325
323
  'Beauty': undefined;
326
- 'BasicBeauty': undefined;
327
324
  };
328
325
  declare interface TRTCStatistics {
329
326
  rtt: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "trtc-sdk-v5",
3
- "version": "5.6.2-beta.6",
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.6",
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.6",
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.6",
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