@opentok/client 2.23.4 → 2.23.5
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 +116 -50
- package/dist/js/opentok.js.map +1 -1
- package/dist/js/opentok.min.js +5 -5
- package/dist/js/opentok.min.js.map +1 -1
- package/package.json +1 -1
package/dist/js/opentok.d.ts
CHANGED
|
@@ -274,7 +274,7 @@ declare namespace OT {
|
|
|
274
274
|
getImgData(): string | null;
|
|
275
275
|
getStats(callback: (error?: OTError, stats?: PublisherStatsArr) => void): void;
|
|
276
276
|
getRtcStatsReport(): Promise<PublisherRtcStatsReportArr>;
|
|
277
|
-
getStyle():
|
|
277
|
+
getStyle(): PublisherStyle;
|
|
278
278
|
applyVideoFilter(videoFilter: VideoFilter): Promise<void>;
|
|
279
279
|
getVideoFilter(): VideoFilter | null;
|
|
280
280
|
clearVideoFilter(): Promise<void>;
|
|
@@ -292,6 +292,7 @@ declare namespace OT {
|
|
|
292
292
|
videoWidth(): number | undefined;
|
|
293
293
|
videoHeight(): number | undefined;
|
|
294
294
|
setVideoMediaProcessorConnector(connector: MediaProcessorConnector | null): Promise<void>;
|
|
295
|
+
setAudioMediaProcessorConnector(connector: MediaProcessorConnector | null): Promise<void>;
|
|
295
296
|
}
|
|
296
297
|
|
|
297
298
|
export function getUserMedia(
|