Add seperation of voice channels, creation of new ones, and move around users
This commit is contained in:
@@ -204,6 +204,13 @@ export interface VoiceStateEvent extends ChatEventBase {
|
||||
voiceState: Partial<VoiceState>;
|
||||
}
|
||||
|
||||
export interface VoiceChannelMoveEvent extends ChatEventBase {
|
||||
type: 'voice-channel-move';
|
||||
roomId: string;
|
||||
targetUserId: string;
|
||||
voiceState: Partial<VoiceState>;
|
||||
}
|
||||
|
||||
export interface ScreenStateEvent extends ChatEventBase {
|
||||
type: 'screen-state';
|
||||
isScreenSharing: boolean;
|
||||
@@ -323,6 +330,7 @@ export type ChatEvent =
|
||||
| RoomPermissionsUpdateEvent
|
||||
| HostChangeEvent
|
||||
| VoiceStateEvent
|
||||
| VoiceChannelMoveEvent
|
||||
| ScreenStateEvent
|
||||
| VoiceStateRequestEvent
|
||||
| StateRequestEvent
|
||||
|
||||
Reference in New Issue
Block a user