@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/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
- screenshareProducer: mediasoupClient.types.Producer | null;
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: boolean;
486
+ recorder?: {
487
+ enabled: boolean;
488
+ defaultState?: 'photo' | 'video';
489
+ };
486
490
  sharedURL?: string;
487
491
  audioTiles?: boolean;
488
492
  settingsShortcuts?: Array<SettingShortcut>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@snapcall/stream-ui",
3
- "version": "1.11.2",
3
+ "version": "1.11.3",
4
4
  "description": "",
5
5
  "source": "src/index.tsx",
6
6
  "main": "dist/stream-ui.js",