@100mslive/hms-video-store 0.12.22-alpha.4 → 0.12.22
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/events/EventBus.d.ts +1 -0
- package/dist/index.cjs.js +5 -5
- package/dist/index.cjs.js.map +2 -2
- package/dist/index.js +5 -5
- package/dist/index.js.map +2 -2
- package/dist/media/tracks/HMSLocalAudioTrack.d.ts +1 -1
- package/dist/media/tracks/HMSLocalVideoTrack.d.ts +1 -1
- package/dist/utils/constants.d.ts +1 -0
- package/package.json +2 -2
- package/src/audio-sink-manager/AudioSinkManager.ts +2 -0
- package/src/events/EventBus.ts +1 -0
- package/src/media/tracks/HMSLocalAudioTrack.ts +4 -2
- package/src/media/tracks/HMSLocalVideoTrack.ts +7 -5
- package/src/sdk/index.ts +4 -0
- package/src/utils/constants.ts +1 -0
|
@@ -19,6 +19,7 @@ export declare class EventBus {
|
|
|
19
19
|
track: HMSLocalVideoTrack;
|
|
20
20
|
}>;
|
|
21
21
|
readonly localVideoUnmutedNatively: HMSInternalEvent<unknown>;
|
|
22
|
+
readonly localAudioUnmutedNatively: HMSInternalEvent<unknown>;
|
|
22
23
|
/**
|
|
23
24
|
* Emitter which processes raw RTC stats from rtcStatsUpdate and calls client callback
|
|
24
25
|
*/
|