trtc-sdk-v5 5.15.1-beta.5 → 5.15.1-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/assets/debug-dialog.js +2 -2
- package/index.d.ts +5 -0
- package/package.json +1 -1
- package/plugins/cdn-streaming/package.json +1 -1
- package/plugins/chorus/package.json +1 -1
- package/plugins/cross-room/package.json +1 -1
- package/plugins/custom-encryption/package.json +1 -1
- package/plugins/device-detector/package.json +1 -1
- package/plugins/lebplayer/package.json +1 -1
- package/plugins/realtime-transcriber/package.json +1 -1
- package/plugins/small-stream-auto-switcher/package.json +1 -1
- package/plugins/video-decoder/package.json +1 -1
- package/plugins/video-effect/basic-beauty/package.json +1 -1
- package/plugins/video-effect/beauty/package.json +1 -1
- package/plugins/video-effect/face-detection/package.json +1 -1
- package/plugins/video-effect/video-mixer/package.json +1 -1
- package/plugins/video-effect/virtual-background/package.json +1 -1
- package/plugins/video-effect/watermark/package.json +1 -1
- package/plugins/voice-changer/package.json +1 -1
- package/trtc.esm.js +28 -28
- package/trtc.js +1 -1
package/index.d.ts
CHANGED
|
@@ -14,12 +14,17 @@ import { RealtimeTranscriber, StartRealtimeTranscriberOption, StopRealtimeTransc
|
|
|
14
14
|
|
|
15
15
|
export { CDNStreamingOptions, DeviceDetectorOptions, VirtualBackgroundOptions, UpdateVirtualBackgroundOptions, WatermarkOptions, BeautyOptions, UpdateBeautyOptions, BasicBeautyOptions, StartCrossRoomOption, UpdateCrossRoomOption, StopCrossRoomOption, SmallStreamAutoSwitcherOptions, VideoMixerOptions, UpdateVideoMixerOptions, StartRealtimeTranscriberOption, StopRealtimeTranscriberOption };
|
|
16
16
|
type TRTCPlugin = typeof CrossRoom | typeof CDNStreaming | typeof DeviceDetector | typeof VirtualBackground | typeof Watermark | typeof Beauty | typeof BasicBeauty | typeof CustomEncryption | typeof SmallStreamAutoSwitcher | typeof VideoMixer | typeof Chorus | typeof LEBPlayer | typeof RealtimeTranscriber;
|
|
17
|
+
|
|
17
18
|
export type ExperimentalAPIFunctionMap = {
|
|
18
19
|
'enableAudioFrameEvent': EnableAudioFrameEventOptions;
|
|
19
20
|
'resumeRemotePlayer': RemotePlayerOptions;
|
|
20
21
|
'pauseRemotePlayer': RemotePlayerOptions;
|
|
22
|
+
'requestPictureInPicture': RequestPictureInPictureOptions;
|
|
23
|
+
'requestFullScreen': RequestFullScreenOptions;
|
|
21
24
|
}
|
|
22
25
|
|
|
26
|
+
export interface RequestPictureInPictureOptions { enable: boolean }
|
|
27
|
+
export interface RequestFullScreenOptions { enable: boolean }
|
|
23
28
|
export interface RemotePlayerOptions { userId: string, streamType?: TRTCStreamType }
|
|
24
29
|
|
|
25
30
|
export declare type PluginStartOptionsMap = {
|
package/package.json
CHANGED