Merge remote-tracking branch 'origin/main'

# Conflicts:
#	packages/communication/src/NitroMessages.ts
This commit is contained in:
Lorenzune
2026-03-21 14:49:08 +01:00
51 changed files with 1469 additions and 120 deletions
@@ -5,6 +5,7 @@ import { IMessageEvent } from './IMessageEvent';
export interface IConnection
{
init(socketUrl: string): void;
dispose(): void;
ready(): void;
authenticated(): void;
send(...composers: IMessageComposer<unknown[]>[]): void;
@@ -7,5 +7,6 @@ export interface IRoomSessionManager
createSession(roomId: number, password?: string): boolean;
startSession(session: IRoomSession): boolean;
removeSession(id: number, openLandingView?: boolean): void;
tryRestoreSession(): boolean;
viewerSession: IRoomSession;
}