trtc-sdk-v5 5.9.2-osm.1 → 5.9.2-osm.3
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 +22 -15
- package/package.json +1 -1
- package/plugins/cdn-streaming/package.json +1 -1
- package/plugins/cross-room/package.json +1 -1
- package/plugins/device-detector/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/virtual-background/package.json +1 -1
- package/plugins/video-effect/watermark/package.json +1 -1
- package/trtc.esm.js +22 -22
- package/trtc.js +1 -1
package/index.d.ts
CHANGED
|
@@ -340,22 +340,29 @@ export declare interface ProxyServer {
|
|
|
340
340
|
unifiedProxy?: string;
|
|
341
341
|
}
|
|
342
342
|
export declare interface EnterRoomConfig {
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
343
|
+
sdkAppId: number;
|
|
344
|
+
userId: string;
|
|
345
|
+
userSig: string;
|
|
346
|
+
roomId?: number;
|
|
347
|
+
strRoomId?: string;
|
|
348
|
+
role?: UserRole;
|
|
349
|
+
autoReceiveAudio?: boolean;
|
|
350
|
+
autoReceiveVideo?: boolean;
|
|
351
|
+
privateMapKey?: string;
|
|
352
|
+
latencyLevel?: number;
|
|
353
|
+
businessInfo?: string;
|
|
354
|
+
enableAutoPlayDialog?: boolean;
|
|
355
|
+
proxy?: ProxyServer | string;
|
|
356
|
+
scene?: Scene;
|
|
357
|
+
userDefineRecordId?: string;
|
|
358
|
+
playoutDelay?: PlayoutDelay;
|
|
358
359
|
}
|
|
360
|
+
|
|
361
|
+
export interface PlayoutDelay {
|
|
362
|
+
min: number;
|
|
363
|
+
max: number;
|
|
364
|
+
}
|
|
365
|
+
|
|
359
366
|
export declare interface ScreenShareConfig {
|
|
360
367
|
view?: string | HTMLElement | HTMLElement[] | null;
|
|
361
368
|
publish?: boolean;
|
package/package.json
CHANGED