trtc-sdk-v5 5.10.2-beta.5 → 5.10.2-beta.6

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
@@ -9,9 +9,7 @@ import { CustomEncryption, EncryptionOptions } from './plugins/custom-encryption
9
9
 
10
10
  export { CDNStreamingOptions, DeviceDetectorOptions, VirtualBackgroundOptions, UpdateVirtualBackgroundOptions, WatermarkOptions, BeautyOptions, UpdateBeautyOptions, BasicBeautyOptions, StartCrossRoomOption, UpdateCrossRoomOption, StopCrossRoomOption };
11
11
  type TRTCPlugin = typeof CrossRoom | typeof CDNStreaming | typeof DeviceDetector | typeof VirtualBackground | typeof Watermark | typeof Beauty | typeof BasicBeauty | typeof CustomEncryption;
12
- export declare const enum ExperimentalAPIFunction {
13
- EnableAudioFrameEvent = 'enableAudioFrameEvent'
14
- }
12
+
15
13
  export declare type PluginStartOptionsMap = {
16
14
  'AudioMixer': AudioMixerOptions;
17
15
  'AIDenoiser': AIDenoiserOptions;
@@ -103,7 +101,7 @@ export declare class RtcError extends Error implements RTCErrorInterface {
103
101
  static convertFrom(originError: Error, fnName?: string, fnParams?: any): RtcError;
104
102
  }
105
103
 
106
- export declare const enum LOG_LEVEL {
104
+ export declare enum LOG_LEVEL {
107
105
  /**
108
106
  * 输出所有日志
109
107
  */
@@ -448,12 +446,12 @@ export declare const enum TRTCStreamType {
448
446
  Main = 'main',
449
447
  Sub = 'sub'
450
448
  }
451
- export declare const enum TRTCDeviceType {
449
+ export declare enum TRTCDeviceType {
452
450
  Camera = 'camera',
453
451
  Microphone = 'microphone',
454
452
  Speaker = 'speaker'
455
453
  }
456
- export declare const enum TRTCDeviceAction {
454
+ export declare enum TRTCDeviceAction {
457
455
  Remove = 'remove',
458
456
  Add = 'add',
459
457
  Active = 'active'
@@ -642,7 +640,7 @@ export declare interface LocalStatistic {
642
640
  videoType: TRTCVideoType;
643
641
  }[];
644
642
  }
645
- export declare const enum TRTCVideoType {
643
+ export declare enum TRTCVideoType {
646
644
  Big = 'big',
647
645
  Small = 'small',
648
646
  Sub = 'sub'
@@ -665,7 +663,7 @@ export declare interface VideoFrameConfig {
665
663
  userId?: string;
666
664
  streamType?: TRTCStreamType;
667
665
  }
668
- export declare const enum AutoStartPluginName {
666
+ export declare enum AutoStartPluginName {
669
667
  Debug = 'Debug'
670
668
  }
671
669
 
@@ -2024,21 +2022,6 @@ export declare class TRTC {
2024
2022
  * })
2025
2023
  */
2026
2024
  sendCustomMessage(message: CustomMessageData): void;
2027
- /**
2028
- * call experimental API
2029
- *
2030
- * | API name | options | description |
2031
- * | ------------------- | ----------------------------------------------- | ------------------------------------------------------------ |
2032
- * | enableAudioFrameEvent | - enable type: `boolean` <br></br> - userId type: `string` <br></br> - sampleRate type: `number` <br></br> - channelCount type: `number` <br></br>| Configure the callback data of {@link module:EVENT.AUDIO_FRAME AUDIO_FRAME} event |
2033
- * @private
2034
- * @param {string} name
2035
- * @param {object} options
2036
- * @example
2037
- * await trtc.callExperimentalAPI('enableAudioFrameEvent', { enable: true, userId: 'user_A'}) // 监听远端用户 user_A 的音频数据,默认 pcm 数据为 48kHZ,单声道
2038
- * await trtc.callExperimentalAPI('enableAudioFrameEvent', { enable: true, userId: '*', sampleRate: 16000, channelCount: 2 }) // 监听所有远端音频数据,设置 pcm 数据为 16kHZ,双声道
2039
- * await trtc.callExperimentalAPI('enableAudioFrameEvent', { enable: false, userId: '', sampleRate: 48000, channelCount: 1 }) // 取消监听本地麦克风数据
2040
- */
2041
- callExperimentalAPI(name: ExperimentalAPIFunction, options: any): Promise<void>;
2042
2025
  static EVENT: typeof TRTCEvent;
2043
2026
  static ERROR_CODE: {
2044
2027
  INVALID_PARAMETER: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "trtc-sdk-v5",
3
- "version": "5.10.2-beta.5",
3
+ "version": "5.10.2-beta.6",
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.10.2-beta.5",
3
+ "version": "5.10.2-beta.6",
4
4
  "description": "TRTC Web SDK 5.x CDN streaming plugin",
5
5
  "main": "./cdn-streaming.esm.js",
6
6
  "module": "./cdn-streaming.esm.js",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rtc-plugin/cross-room",
3
- "version": "5.10.2-beta.5",
3
+ "version": "5.10.2-beta.6",
4
4
  "description": "TRTC Web SDK 5.x Cross Room plugin",
5
5
  "main": "./cross-room.esm.js",
6
6
  "module": "./cross-room.esm.js",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rtc-plugin/custom-encryption",
3
- "version": "5.10.2-beta.5",
3
+ "version": "5.10.2-beta.6",
4
4
  "main": "./custom-encryption.esm.js",
5
5
  "module": "./custom-encryption.esm.js",
6
6
  "types": "./custom-encryption.esm.d.ts"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rtc-plugin/device-detector",
3
- "version": "5.10.2-beta.5",
3
+ "version": "5.10.2-beta.6",
4
4
  "description": "TRTC Web SDK 5.x device detector plugin",
5
5
  "main": "./device-detector.esm.js",
6
6
  "module": "./device-detector.esm.js",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rtc-plugin/video-decoder",
3
- "version": "5.10.2-beta.5",
3
+ "version": "5.10.2-beta.6",
4
4
  "description": "Video decoder plugin for TRTC",
5
5
  "main": "./video-decoder.esm.js",
6
6
  "module": "./video-decoder.esm.js",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rtc-plugin/basic-beauty",
3
- "version": "5.10.2-beta.5",
3
+ "version": "5.10.2-beta.6",
4
4
  "description": "TRTC Web SDK 5.x basic-beauty plugin",
5
5
  "main": "./basic-beauty.esm.js",
6
6
  "module": "./basic-beauty.esm.js",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rtc-plugin/beauty",
3
- "version": "5.10.2-beta.5",
3
+ "version": "5.10.2-beta.6",
4
4
  "description": "TRTC Web SDK 5.x beauty plugin",
5
5
  "main": "./beauty.esm.js",
6
6
  "module": "./beauty.esm.js",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rtc-plugin/virtual-background",
3
- "version": "5.10.2-beta.5",
3
+ "version": "5.10.2-beta.6",
4
4
  "description": "TRTC Web SDK 5.x virtual background plugin",
5
5
  "main": "./virtual-background.esm.js",
6
6
  "module": "./virtual-background.esm.js",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rtc-plugin/watermark",
3
- "version": "5.10.2-beta.5",
3
+ "version": "5.10.2-beta.6",
4
4
  "description": "TRTC Web SDK 5.x watermark plugin",
5
5
  "main": "./watermark.esm.js",
6
6
  "module": "./watermark.esm.js",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rtc-plugin/voice-changer",
3
- "version": "5.10.2-beta.5",
3
+ "version": "5.10.2-beta.6",
4
4
  "description": "",
5
5
  "main": "./voice-changer.esm.js",
6
6
  "keywords": [],