@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.
- package/dist/cdn/{v2-embed-beta2.js → v2-embed-beta3.js} +1 -1
- package/dist/cdn/v2-react-beta3.js +3 -0
- package/dist/core/index.d.ts +2356 -0
- package/dist/core/index.js +62945 -0
- package/dist/embed/index.esm.js +1 -1
- package/dist/react/index.d.ts +2 -0
- package/dist/react/index.esm.js +1086 -145
- package/package.json +9 -2
- package/dist/cdn/v2-react-beta2.js +0 -3
package/dist/embed/index.esm.js
CHANGED
package/dist/react/index.d.ts
CHANGED
|
@@ -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
|
};
|