@opentok/client 2.27.7 → 2.28.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/js/opentok.d.ts +3 -2
- package/dist/js/opentok.js +775 -665
- package/dist/js/opentok.js.map +1 -1
- package/dist/js/opentok.min.js +8 -8
- package/dist/js/opentok.min.js.map +1 -1
- package/package.json +1 -1
package/dist/js/opentok.d.ts
CHANGED
|
@@ -150,6 +150,7 @@ declare namespace OT {
|
|
|
150
150
|
enableStereo?: boolean;
|
|
151
151
|
videoFilter?: VideoFilter;
|
|
152
152
|
audioFilter?: AudioFilter;
|
|
153
|
+
disableAudioInputDeviceManagement?: boolean;
|
|
153
154
|
};
|
|
154
155
|
|
|
155
156
|
export type SubscriberStyle = WidgetStyle & {
|
|
@@ -322,11 +323,11 @@ declare namespace OT {
|
|
|
322
323
|
applyVideoFilter(videoFilter: VideoFilter): Promise<void>;
|
|
323
324
|
getVideoFilter(): VideoFilter | null;
|
|
324
325
|
clearVideoFilter(): Promise<void>;
|
|
325
|
-
applyAudioFilter(AudioFilter): Promise<void>;
|
|
326
|
+
applyAudioFilter(audioFilter: AudioFilter): Promise<void>;
|
|
326
327
|
clearAudioFilter(): Promise<void>;
|
|
327
328
|
getAudioFilter(): AudioFilter | null;
|
|
328
329
|
publishAudio(value: boolean): void;
|
|
329
|
-
publishVideo(value: boolean): void;
|
|
330
|
+
publishVideo(value: boolean, callback?: (error?: OTError) => void): void;
|
|
330
331
|
publishCaptions(value: boolean): void;
|
|
331
332
|
cycleVideo(): Promise<{ deviceId: string }>;
|
|
332
333
|
setAudioSource(audioSource:string | MediaStreamTrack): Promise<undefined>;
|