feat: Implement complete plan for "coming soon" placeholders

This commit is contained in:
gpt-engineer-app[bot]
2025-10-16 14:47:18 +00:00
parent 8d26ac0749
commit 198742e165
7 changed files with 1123 additions and 69 deletions

View File

@@ -281,6 +281,18 @@ export interface AuditLogEntry {
created_at: string;
}
// User ride credit tracking
export interface UserRideCredit {
id: string;
user_id: string;
ride_id: string;
first_ride_date?: string;
ride_count: number;
created_at: string;
updated_at: string;
rides?: Ride & { parks?: Park };
}
// Activity entry - discriminated union for different activity types
export type ActivityEntry =
| ReviewActivity