@opentok/client 2.21.2 → 2.21.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/dist/js/opentok.d.ts +3 -0
- package/dist/js/opentok.js +2033 -1842
- package/dist/js/opentok.js.map +1 -1
- package/dist/js/opentok.min.js +7 -7
- package/dist/js/opentok.min.js.map +1 -1
- package/package.json +1 -1
package/dist/js/opentok.d.ts
CHANGED
|
@@ -487,6 +487,7 @@ 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;
|
|
490
491
|
restrictFrameRate(value: boolean): void;
|
|
491
492
|
setAudioVolume(volume: number): void;
|
|
492
493
|
setPreferredFrameRate(frameRate: number): void;
|
|
@@ -511,6 +512,8 @@ declare namespace OT {
|
|
|
511
512
|
|
|
512
513
|
export function reportIssue(callback: (error?: OTError, reportId?: string) => void): void;
|
|
513
514
|
|
|
515
|
+
export function setAudioOutputDevice(deviceId: string): Promise<void>;
|
|
516
|
+
|
|
514
517
|
export function setLogLevel(level: number): void;
|
|
515
518
|
|
|
516
519
|
export function upgradeSystemRequirements(): void;
|