@ikonai/sdk 1.0.76 → 1.0.78
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/client/ikon-client.d.ts +7 -0
- package/index.js +502 -492
- package/package.json +1 -1
package/client/ikon-client.d.ts
CHANGED
|
@@ -215,6 +215,13 @@ export declare class IkonClient {
|
|
|
215
215
|
* Returns false if both audio and video are disabled, even if webRtc.enabled is true.
|
|
216
216
|
*/
|
|
217
217
|
get isWebRtcEnabled(): boolean;
|
|
218
|
+
/**
|
|
219
|
+
* Whether media capture can use the WebRTC transport right now. False when WebRTC is
|
|
220
|
+
* disabled by config, or when the WebRTC session is gone (e.g. connection failure tore
|
|
221
|
+
* down signaling and playback fell back to the protocol channel) — capture must then
|
|
222
|
+
* use the protocol-channel path instead.
|
|
223
|
+
*/
|
|
224
|
+
get isWebRtcCaptureAvailable(): boolean;
|
|
218
225
|
/**
|
|
219
226
|
* All WebRTC video streams keyed by track index.
|
|
220
227
|
*/
|