fix: Fix multiple bugs with new authentication flow

This commit is contained in:
2026-06-07 15:04:21 +02:00
parent 9fc26b1ccf
commit 83456c018c
137 changed files with 4710 additions and 281 deletions

View File

@@ -26,6 +26,8 @@ export interface Message {
isDeleted: boolean;
replyToId?: string;
linkMetadata?: LinkMetadata[];
/** Originating client instance when relayed through signaling for multi-device sync. */
clientInstanceId?: string;
}
export interface Reaction {

View File

@@ -7,6 +7,8 @@ export interface VoiceState {
volume?: number;
roomId?: string;
serverId?: string;
/** Install-scoped client id that currently owns active voice for this user. */
clientInstanceId?: string;
}
export interface ScreenShareState {