@hysc/meeting 5.0.15 → 5.0.17
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/esm/boom-core/src/BoomCore/BCClient/clientEventType.d.ts +2 -1
- package/esm/boom-meeting/src/handleEvent/handleParticipantEvent.d.ts +1 -0
- package/esm/index.js +2 -2
- package/esm/index.js.map +2 -2
- package/esm/src/handleEvent/handleParticipantEvent.d.ts +1 -0
- package/package.json +3 -3
- package/umd/boom-core/src/BoomCore/BCClient/clientEventType.d.ts +2 -1
- package/umd/boom-meeting/src/handleEvent/handleParticipantEvent.d.ts +1 -0
- package/umd/index.js +2 -2
|
@@ -420,6 +420,7 @@ export declare enum BCEvent {
|
|
|
420
420
|
BRTC_ROOM_ROCONNECTING = "brtc-room-reconnecting",
|
|
421
421
|
BRTC_ROOM_RECONNECTED = "brtc-room-reconnected",
|
|
422
422
|
JOIN_READY = "join-ready",
|
|
423
|
-
BRTC_SHARE_SYNC_ROOM_COMPLETED = "brtc-share-sync-room-completed"
|
|
423
|
+
BRTC_SHARE_SYNC_ROOM_COMPLETED = "brtc-share-sync-room-completed",
|
|
424
|
+
LEAVE_USERS = "leaveUsers"
|
|
424
425
|
}
|
|
425
426
|
export default BCEvent;
|
|
@@ -14,6 +14,7 @@ import BoomCore from "@hysc/core";
|
|
|
14
14
|
import BCUser from "@hysc/core/esm/BoomAdapter/User/User";
|
|
15
15
|
import BMUser from "../BMUser/BMUser";
|
|
16
16
|
export declare function handleParticipantJoin(data: any, userVM: BMUserVM, bmStreamVm: BMStreamModelVM, boomCore: BoomCore, chatVM: BMChatVM, observes: any): void;
|
|
17
|
+
export declare function handleLeaveUsers(data: any, userVM: BMUserVM, bmRoom: BMRoom, observes: any, bmStreamVm: BMStreamModelVM, boomCore: BCClient, chatVM: BMChatVM): void;
|
|
17
18
|
export declare function handleParticipantLeft(data: any, userVM: BMUserVM, bmRoom: BMRoom, observes: any, bmStreamVm: BMStreamModelVM, boomCore: BCClient, chatVM: BMChatVM): void;
|
|
18
19
|
export declare function handleChangeMaster(data: any, userVM: BMUserVM, bmRoom: BMRoom, observes: any, bmStreamVm: BMStreamModelVM): void;
|
|
19
20
|
export declare function handleEvict(data: any, userVM: BMUserVM, bmStreamVm: BMStreamModelVM, bmRoom: BMRoom, observes: any): void;
|