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

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;
@@ -1585,6 +1582,7 @@ declare interface TRTCEventTypes {
1585
1582
  */
1586
1583
  getVideoSnapshot(config?: VideoFrameConfig): string;
1587
1584
  setCurrentSpeaker(speakerId: string): void;
1585
+ setJitterBufferDelay(delay: number): void;
1588
1586
  /**
1589
1587
  * Send SEI Message <br>
1590
1588
  *
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.7",
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.7",
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.7",
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.7",
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>",