trtc-sdk-v5 5.11.2-beta.4 → 5.11.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 +0 -4
- package/package.json +1 -1
- package/plugins/cdn-streaming/package.json +1 -1
- package/plugins/cross-room/package.json +1 -1
- package/plugins/custom-encryption/package.json +1 -1
- package/plugins/device-detector/device-detector.esm.js +18 -16
- package/plugins/device-detector/device-detector.umd.js +2 -2
- package/plugins/device-detector/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/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 +26 -26
- package/trtc.js +1 -1
package/index.d.ts
CHANGED
|
@@ -340,8 +340,6 @@ export declare interface LocalVideoConfig {
|
|
|
340
340
|
videoTrack?: MediaStreamTrack;
|
|
341
341
|
avoidCropping?: boolean;
|
|
342
342
|
rotation?: 0 | 90 | 180 | 270;
|
|
343
|
-
|
|
344
|
-
enableAutoSwitchWhenRecapturing?: boolean;
|
|
345
343
|
};
|
|
346
344
|
}
|
|
347
345
|
export interface TurnServerOptions {
|
|
@@ -443,8 +441,6 @@ export declare interface LocalAudioConfig {
|
|
|
443
441
|
echoCancellation?: boolean;
|
|
444
442
|
autoGainControl?: boolean;
|
|
445
443
|
noiseSuppression?: boolean;
|
|
446
|
-
|
|
447
|
-
enableAutoSwitchWhenRecapturing?: boolean;
|
|
448
444
|
};
|
|
449
445
|
}
|
|
450
446
|
export declare interface UpdateLocalAudioConfig extends LocalAudioConfig {
|
package/package.json
CHANGED