@snapcall/stream-ui 1.11.2 → 1.11.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/stream-ui.esm.js +92 -53
- package/dist/stream-ui.js +92 -53
- package/dist/stream-ui.umd.js +5 -5
- package/dist/types.d.ts +6 -2
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -312,7 +312,8 @@ declare class StreamerClient extends StreamerEventTargetType implements AudioLev
|
|
|
312
312
|
protoo: protooClient.Peer;
|
|
313
313
|
micProducer?: mediasoupClient.types.Producer;
|
|
314
314
|
webcamProducer: mediasoupClient.types.Producer | null;
|
|
315
|
-
|
|
315
|
+
screenshareVideoProducer?: mediasoupClient.types.Producer;
|
|
316
|
+
screenshareAudioProducer?: mediasoupClient.types.Producer;
|
|
316
317
|
pendingDeviceRequest: Record<string, DeviceRequest>;
|
|
317
318
|
joinOptions: JoinOptions;
|
|
318
319
|
audioInputDefaultDevice?: MediaDeviceInfo;
|
|
@@ -482,7 +483,10 @@ interface ControlSettings {
|
|
|
482
483
|
enabled?: boolean;
|
|
483
484
|
}
|
|
484
485
|
interface StreamUIBaseOptions {
|
|
485
|
-
recorder
|
|
486
|
+
recorder?: {
|
|
487
|
+
enabled: boolean;
|
|
488
|
+
defaultState?: 'photo' | 'video';
|
|
489
|
+
};
|
|
486
490
|
sharedURL?: string;
|
|
487
491
|
audioTiles?: boolean;
|
|
488
492
|
settingsShortcuts?: Array<SettingShortcut>;
|