openvidu-testapp: udpate dependencies

pull/882/head
pabloFuente 2026-04-07 13:04:55 +02:00
parent 5c31691885
commit 266e30cd1f
3 changed files with 294 additions and 288 deletions

File diff suppressed because it is too large Load Diff

View File

@ -30,8 +30,8 @@
"buffer": "^6.0.3", "buffer": "^6.0.3",
"crypto-browserify": "^3.12.1", "crypto-browserify": "^3.12.1",
"json-stringify-safe": "5.0.1", "json-stringify-safe": "5.0.1",
"livekit-client": "^2.18.0", "livekit-client": "^2.18.1",
"livekit-server-sdk": "^2.15.0", "livekit-server-sdk": "^2.15.1",
"rxjs": "~7.8.2", "rxjs": "~7.8.2",
"stream-browserify": "^3.0.0", "stream-browserify": "^3.0.0",
"tslib": "^2.8.1", "tslib": "^2.8.1",

View File

@ -17,6 +17,7 @@ import {
ConnectionQuality, ConnectionQuality,
ConnectionState, ConnectionState,
CreateLocalTracksOptions, CreateLocalTracksOptions,
DataChannelKind,
DataPacket_Kind, DataPacket_Kind,
DataPublishOptions, DataPublishOptions,
DisconnectReason, DisconnectReason,
@ -996,7 +997,7 @@ export class OpenviduInstanceComponent {
if (this.roomEvents.get(RoomEvent.DCBufferStatusChanged)) { if (this.roomEvents.get(RoomEvent.DCBufferStatusChanged)) {
this.room!.on( this.room!.on(
RoomEvent.DCBufferStatusChanged, RoomEvent.DCBufferStatusChanged,
(isLow: boolean, kind: DataPacket_Kind) => { (isLow: boolean, kind: DataChannelKind) => {
this.updateEventList( this.updateEventList(
RoomEvent.DCBufferStatusChanged, RoomEvent.DCBufferStatusChanged,
{ isLow, kind }, { isLow, kind },