mirror of
https://github.com/pacnpal/thrilltrack-explorer.git
synced 2025-12-24 10:31:12 -05:00
Fix: Implement Phase 1 and 2 for Account & Profile tab
This commit is contained in:
@@ -186,6 +186,26 @@ export interface Profile {
|
||||
park_count: number;
|
||||
review_count: number;
|
||||
reputation_score: number;
|
||||
banned: boolean;
|
||||
deactivated: boolean;
|
||||
deactivated_at?: string;
|
||||
deactivation_reason?: string;
|
||||
oauth_provider?: string;
|
||||
created_at: string;
|
||||
updated_at: string;
|
||||
}
|
||||
|
||||
export interface AccountDeletionRequest {
|
||||
id: string;
|
||||
user_id: string;
|
||||
requested_at: string;
|
||||
scheduled_deletion_at: string;
|
||||
confirmation_code: string;
|
||||
confirmation_code_sent_at?: string;
|
||||
status: 'pending' | 'confirmed' | 'cancelled' | 'completed';
|
||||
cancelled_at?: string;
|
||||
completed_at?: string;
|
||||
cancellation_reason?: string;
|
||||
created_at: string;
|
||||
updated_at: string;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user