feat(workspaces): expand detail page member list

This commit is contained in:
2026-04-28 10:46:15 +03:30
parent b1ad372474
commit 581cfab1ac
4 changed files with 292 additions and 248 deletions

View File

@@ -19,13 +19,15 @@ export interface PaginatedResponse<T> {
export interface WorkspaceMembership {
id: string;
workspace: string;
user: {
id: string;
email: string;
first_name?: string;
last_name?: string;
[key: string]: any;
};
user: {
id: string;
email?: string;
first_name?: string;
last_name?: string;
mobile?: string;
profile_picture?: string | null;
[key: string]: any;
};
role: 'owner' | 'admin' | 'member' | 'guest';
is_active: boolean;
joined_at?: string;