Imrpove chat with gifs, videos, music player, redesigns and improved filesharing errors

This commit is contained in:
2026-03-06 04:47:07 +01:00
parent 2d84fbd91a
commit fe2347b54e
65 changed files with 3593 additions and 1030 deletions

View File

@@ -331,6 +331,7 @@ export type ChatEventType =
| 'kick'
| 'ban'
| 'room-deleted'
| 'host-change'
| 'room-settings-update'
| 'voice-state'
| 'chat-inventory-request'
@@ -364,6 +365,14 @@ export interface ChatEvent {
targetUserId?: string;
/** Room ID the event pertains to. */
roomId?: string;
/** Updated room host ID after an ownership change. */
hostId?: string;
/** Updated room host `oderId` after an ownership change. */
hostOderId?: string;
/** Previous room host ID before the ownership change. */
previousHostId?: string;
/** Previous room host `oderId` before the ownership change. */
previousHostOderId?: string;
/** User who issued a kick. */
kickedBy?: string;
/** User who issued a ban. */