feat: Implement authentication checks for profile actions and user layout, and add presigned URL fetching for file viewing.

This commit is contained in:
pradeepkumar
2026-01-29 00:02:59 +05:30
parent 4ffd6305b1
commit b41bd8a3eb
9 changed files with 243 additions and 40 deletions

View File

@@ -8,6 +8,7 @@ export interface RegisterRequest {
email: string;
password: string;
role: 'USER' | 'AGENT';
agentTypeId?: string;
}
export interface LoginRequest {