feat(shared): extend CreateDmRequest and AddDmMemberRequest with federated identity fields

This commit is contained in:
Jannis Braun
2026-04-01 12:36:20 +02:00
parent 02fa64c3f3
commit 518b3eb786
+6 -2
View File
@@ -519,11 +519,15 @@ export interface LiveKitTokenResponse {
} }
export interface CreateDmRequest { export interface CreateDmRequest {
userId: string; userId?: string;
homeUserId?: string;
homeInstance?: string;
} }
export interface AddDmMemberRequest { export interface AddDmMemberRequest {
userId: string; userId?: string;
homeUserId?: string;
homeInstance?: string;
} }
export interface GroupDmUserIdentity { export interface GroupDmUserIdentity {