This commit is contained in:
2025-12-16 18:17:48 +01:00
parent 362894d1a5
commit ec7c0b8f2a
94 changed files with 4240 additions and 983 deletions

View File

@@ -1,8 +1,5 @@
import type { Team } from '../../domain/entities/Team';
import type {
TeamJoinRequest,
TeamMembership,
} from '../../domain/types/TeamMembership';
import type { TeamMembership } from '../../domain/types/TeamMembership';
export interface JoinTeamCommandDTO {
teamId: string;
@@ -15,6 +12,7 @@ export interface LeaveTeamCommandDTO {
}
export interface ApproveTeamJoinRequestCommandDTO {
teamId: string;
requestId: string;
}