dingrtc 3.9.16 → 3.9.18-beta.1
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/dist/index.d.ts +3 -3
- package/dist/index.esm.js +2 -2
- package/dist/index.js +2 -2
- package/dist/index.umd.js +8 -4
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2695,7 +2695,7 @@ interface GlobalClientConfigInfo {
|
|
|
2695
2695
|
disableTransportCC?: boolean;
|
|
2696
2696
|
highStartBitrate?: boolean;
|
|
2697
2697
|
connectPcTimeoutMs?: number;
|
|
2698
|
-
preferH264CbProfile?:
|
|
2698
|
+
preferH264CbProfile?: boolean;
|
|
2699
2699
|
}
|
|
2700
2700
|
/**
|
|
2701
2701
|
* 加入频道所需信息
|
|
@@ -3191,7 +3191,7 @@ declare class Track extends EventEmitter<ITrackEvent> {
|
|
|
3191
3191
|
cycleStatsTimer: number;
|
|
3192
3192
|
cycleStatsInterval: number;
|
|
3193
3193
|
eventTriggedInterval: number;
|
|
3194
|
-
|
|
3194
|
+
readonly securityToken: string;
|
|
3195
3195
|
stopUpdateToken(): void;
|
|
3196
3196
|
send(param: any): void;
|
|
3197
3197
|
sendStats(param: any): void;
|
|
@@ -3210,7 +3210,7 @@ declare class Track extends EventEmitter<ITrackEvent> {
|
|
|
3210
3210
|
started: boolean;
|
|
3211
3211
|
start(slsConfig: _dingrtc_shared.SLSClientConfig): void;
|
|
3212
3212
|
stop(): void;
|
|
3213
|
-
|
|
3213
|
+
readonly securityToken: string;
|
|
3214
3214
|
updateSecurityToken(securityToken: _dingrtc_shared.SecurityTokenDTO): void;
|
|
3215
3215
|
sendMetric(param: any): void;
|
|
3216
3216
|
sendEvent(param: any): void;
|