livekit-client 2.5.7 → 2.5.8
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +2 -2
- package/dist/livekit-client.e2ee.worker.js +1 -1
- package/dist/livekit-client.e2ee.worker.js.map +1 -1
- package/dist/livekit-client.e2ee.worker.mjs +4 -0
- package/dist/livekit-client.e2ee.worker.mjs.map +1 -1
- package/dist/livekit-client.esm.mjs +38 -2
- package/dist/livekit-client.esm.mjs.map +1 -1
- package/dist/livekit-client.umd.js +1 -1
- package/dist/livekit-client.umd.js.map +1 -1
- package/dist/src/room/Room.d.ts +3 -1
- package/dist/src/room/Room.d.ts.map +1 -1
- package/dist/src/room/events.d.ts +5 -1
- package/dist/src/room/events.d.ts.map +1 -1
- package/dist/src/room/participant/LocalParticipant.d.ts +7 -0
- package/dist/src/room/participant/LocalParticipant.d.ts.map +1 -1
- package/dist/ts4.2/src/room/Room.d.ts +3 -1
- package/dist/ts4.2/src/room/events.d.ts +5 -1
- package/dist/ts4.2/src/room/participant/LocalParticipant.d.ts +7 -0
- package/package.json +6 -6
- package/src/room/Room.ts +8 -0
- package/src/room/events.ts +5 -0
- package/src/room/participant/LocalParticipant.ts +22 -0
- package/src/room/track/LocalTrackPublication.ts +1 -1
@@ -4691,6 +4691,10 @@ var RoomEvent;
|
|
4691
4691
|
* fired when the first remote participant has subscribed to the localParticipant's track
|
4692
4692
|
*/
|
4693
4693
|
RoomEvent["LocalTrackSubscribed"] = "localTrackSubscribed";
|
4694
|
+
/**
|
4695
|
+
* fired when the client receives connection metrics from other participants
|
4696
|
+
*/
|
4697
|
+
RoomEvent["MetricsReceived"] = "metricsReceived";
|
4694
4698
|
})(RoomEvent || (RoomEvent = {}));
|
4695
4699
|
var ParticipantEvent;
|
4696
4700
|
(function (ParticipantEvent) {
|