frontend: update openvidu-components-angular to version 3.2.0-dev12 and add reason to participant left event

This commit is contained in:
Carlos Santos 2025-05-08 17:24:22 +02:00
parent 468278d9d1
commit 4baa1c124f
3 changed files with 7 additions and 6 deletions

View File

@ -21,7 +21,7 @@
"core-js": "^3.38.1",
"jwt-decode": "^4.0.0",
"livekit-server-sdk": "^2.10.2",
"openvidu-components-angular": "^3.2.0-dev10",
"openvidu-components-angular": "^3.2.0-dev12",
"rxjs": "7.8.1",
"tslib": "^2.3.0",
"unique-names-generator": "^4.7.1",
@ -13901,9 +13901,9 @@
}
},
"node_modules/openvidu-components-angular": {
"version": "3.2.0-dev10",
"resolved": "https://registry.npmjs.org/openvidu-components-angular/-/openvidu-components-angular-3.2.0-dev10.tgz",
"integrity": "sha512-LIr8EFfwdpMmF3uGpy1St1onLZNoJK4J1ZxW3j6rT24wXf+PZG6BIIxWBAS4ciA3VhmtYW6nSXHlFunc53KZPQ==",
"version": "3.2.0-dev12",
"resolved": "https://registry.npmjs.org/openvidu-components-angular/-/openvidu-components-angular-3.2.0-dev12.tgz",
"integrity": "sha512-OkgnWVI55lmQPKvmY/cct2l0P5SJoCR24R1283X8gOwHuLSPARa8HyksAjxV2lEHdG8FXP0ohvHwUAUrm9lvqQ==",
"dependencies": {
"tslib": "^2.3.0"
},

View File

@ -38,7 +38,7 @@
"core-js": "^3.38.1",
"jwt-decode": "^4.0.0",
"livekit-server-sdk": "^2.10.2",
"openvidu-components-angular": "^3.2.0-dev10",
"openvidu-components-angular": "^3.2.0-dev12",
"rxjs": "7.8.1",
"tslib": "^2.3.0",
"unique-names-generator": "^4.7.1",

View File

@ -134,7 +134,8 @@ export class VideoRoomComponent implements OnInit, OnDestroy {
event: WebComponentEvent.LEFT,
payload: {
roomId: event.roomName,
participantName: event.participantName
participantName: event.participantName,
reason: event.reason
}
};
this.wcManagerService.sendMessageToParent(message);