@100mslive/hms-video-store 0.12.8 → 0.12.9-alpha.1
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/device-manager/DeviceManager.d.ts +6 -0
- package/dist/index.cjs.js +6 -6
- package/dist/index.cjs.js.map +3 -3
- package/dist/index.js +6 -6
- package/dist/index.js.map +3 -3
- package/dist/reactive-store/HMSSDKActions.d.ts +2 -0
- package/dist/sdk/index.d.ts +2 -0
- package/dist/signal/jsonrpc/index.d.ts +2 -2
- package/package.json +2 -2
- package/src/device-manager/DeviceManager.ts +19 -1
- package/src/notification-manager/managers/RoomUpdateManager.ts +1 -0
- package/src/reactive-store/HMSSDKActions.ts +9 -0
- package/src/sdk/index.ts +9 -0
- package/src/signal/jsonrpc/index.ts +3 -3
|
@@ -28,6 +28,12 @@ export declare class DeviceManager implements HMSDeviceManager {
|
|
|
28
28
|
private createIdentifier;
|
|
29
29
|
private computeChange;
|
|
30
30
|
private enumerateDevices;
|
|
31
|
+
/**
|
|
32
|
+
* For example, if a different device, say OBS is selected as default from chrome settings, when you do getUserMedia with default, that is not the device
|
|
33
|
+
* you get. So update to the browser settings default device
|
|
34
|
+
* Update only when initial deviceId is not passed
|
|
35
|
+
*/
|
|
36
|
+
private updateToActualDefaultDevice;
|
|
31
37
|
private handleDeviceChange;
|
|
32
38
|
/**
|
|
33
39
|
* Function to get the device after device change
|