@opentok/client 2.21.3 → 2.21.7
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/js/opentok.d.ts +2 -1
- package/dist/js/opentok.js +1201 -1134
- package/dist/js/opentok.js.map +1 -1
- package/dist/js/opentok.min.js +6 -6
- package/dist/js/opentok.min.js.map +1 -1
- package/package.json +1 -1
package/dist/js/opentok.d.ts
CHANGED
|
@@ -487,7 +487,6 @@ declare namespace OT {
|
|
|
487
487
|
getImgData(): string | null;
|
|
488
488
|
getStats(callback: (error?: OTError, stats?: SubscriberStats) => void): void;
|
|
489
489
|
getRtcStatsReport(): Promise<RTCStatsReport>;
|
|
490
|
-
isAudioBlocked(): boolean;
|
|
491
490
|
restrictFrameRate(value: boolean): void;
|
|
492
491
|
setAudioVolume(volume: number): void;
|
|
493
492
|
setPreferredFrameRate(frameRate: number): void;
|
|
@@ -514,6 +513,8 @@ declare namespace OT {
|
|
|
514
513
|
|
|
515
514
|
export function setAudioOutputDevice(deviceId: string): Promise<void>;
|
|
516
515
|
|
|
516
|
+
export function getActiveAudioOutputDevice(): Promise<AudioOutputDevice>;
|
|
517
|
+
|
|
517
518
|
export function setLogLevel(level: number): void;
|
|
518
519
|
|
|
519
520
|
export function upgradeSystemRequirements(): void;
|