feat(federation): client voice store handles federated call data (FED-009)

This commit is contained in:
Jannis Braun
2026-03-31 23:40:11 +02:00
parent 09916917f1
commit 24571edc34
3 changed files with 36 additions and 10 deletions
+1 -1
View File
@@ -383,7 +383,7 @@ export type ServerEvent =
| { type: 'channel_ack'; channelId: string; messageId: string }
| { type: 'friend_request_received'; request: FriendRequest }
| { type: 'friend_request_accepted'; friend: Friend; requestId: string }
| { type: 'dm_call_incoming'; dmChannelId: string; callerId: string; callerName: string }
| { type: 'dm_call_incoming'; dmChannelId: string; callerId: string; callerName: string; livekitUrl?: string; livekitToken?: string }
| { type: 'dm_call_accepted'; dmChannelId: string }
| { type: 'dm_call_rejected'; dmChannelId: string }
| { type: 'dm_call_ended'; dmChannelId: string }