mirror of
https://github.com/pacnpal/thrilltrack-explorer.git
synced 2025-12-23 08:31:12 -05:00
Implement all phases sequentially
This commit is contained in:
@@ -211,7 +211,7 @@ export interface AccountDeletionRequest {
|
||||
scheduled_deletion_at: string;
|
||||
confirmation_code: string;
|
||||
confirmation_code_sent_at?: string;
|
||||
status: 'pending' | 'confirmed' | 'cancelled' | 'completed';
|
||||
status: 'pending' | 'confirmed' | 'cancelled' | 'completed'; // Account deletion specific status
|
||||
cancelled_at?: string;
|
||||
completed_at?: string;
|
||||
cancellation_reason?: string;
|
||||
@@ -232,7 +232,7 @@ export interface Review {
|
||||
photos?: any;
|
||||
helpful_votes: number;
|
||||
total_votes: number;
|
||||
moderation_status: 'pending' | 'approved' | 'rejected' | 'flagged';
|
||||
moderation_status: 'pending' | 'approved' | 'rejected' | 'flagged'; // Review moderation status
|
||||
created_at: string;
|
||||
updated_at: string;
|
||||
}
|
||||
|
||||
@@ -33,9 +33,10 @@ export interface SubmissionItemData {
|
||||
id: string;
|
||||
submission_id: string;
|
||||
item_type: EntityType | 'photo' | 'ride_model';
|
||||
action_type: 'create' | 'edit' | 'delete';
|
||||
item_data: Record<string, unknown>;
|
||||
original_data?: Record<string, unknown>;
|
||||
status: 'pending' | 'approved' | 'rejected';
|
||||
status: 'pending' | 'approved' | 'rejected' | 'flagged' | 'skipped'; // Use ReviewStatus type
|
||||
depends_on: string | null;
|
||||
order_index: number;
|
||||
approved_entity_id: string | null;
|
||||
|
||||
Reference in New Issue
Block a user