@whereby.com/browser-sdk 2.1.0-beta2 → 2.1.0-beta3

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.
@@ -20,7 +20,7 @@ function parseRoomUrlAndSubdomain(roomAttribute, subdomainAttribute) {
20
20
  };
21
21
  }
22
22
 
23
- const sdkVersion = "2.1.0-beta2";
23
+ const sdkVersion = "2.1.0-beta3";
24
24
 
25
25
  const boolAttrs = [
26
26
  "audio",
@@ -555,6 +555,7 @@ interface AppState {
555
555
  displayName: string | null;
556
556
  sdkVersion: string | null;
557
557
  externalId: string | null;
558
+ isNodeSdk: boolean;
558
559
  }
559
560
 
560
561
  /**
@@ -704,6 +705,7 @@ interface WaitingParticipantsState {
704
705
  }
705
706
 
706
707
  type LocalMediaOptions = {
708
+ disabled?: boolean;
707
709
  audio: boolean;
708
710
  video: boolean;
709
711
  };