mirror of
https://github.com/pacnpal/thrilltrack-explorer.git
synced 2025-12-23 11:11:14 -05:00
feat: Implement complete plan for "coming soon" placeholders
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user