@whereby.com/browser-sdk 2.0.0-alpha12 → 2.0.0-alpha14
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/README.md +2 -3
- package/dist/lib.cjs +3117 -42
- package/dist/lib.esm.js +3076 -8
- package/dist/types.d.ts +2 -1
- package/dist/{v2-alpha12.js → v2-alpha14.js} +3 -3
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -239,6 +239,7 @@ declare class RoomConnection extends TypedEventTarget {
|
|
|
239
239
|
private rtcManagerDispatcher?;
|
|
240
240
|
private rtcManager?;
|
|
241
241
|
private roomConnectionStatus;
|
|
242
|
+
private selfId;
|
|
242
243
|
private logger;
|
|
243
244
|
private _ownsLocalMedia;
|
|
244
245
|
private displayName?;
|
|
@@ -303,6 +304,6 @@ type RoomConnectionRef = {
|
|
|
303
304
|
};
|
|
304
305
|
declare function useRoomConnection(roomUrl: string, roomConnectionOptions: UseRoomConnectionOptions): RoomConnectionRef;
|
|
305
306
|
|
|
306
|
-
declare const sdkVersion = "2.0.0-
|
|
307
|
+
declare const sdkVersion = "2.0.0-alpha14";
|
|
307
308
|
|
|
308
309
|
export { _default as VideoView, sdkVersion, useLocalMedia, useRoomConnection };
|