v1 Release

This commit is contained in:
2026-07-11 18:44:40 +10:00
parent 85eeba982f
commit 5ac580bb06
15 changed files with 171 additions and 72 deletions
+9 -1
View File
@@ -278,6 +278,13 @@ export type RegionRange = "intraregional" | "interregional"
export type FlightScope = 'domestic' | 'international'
export type FlightRange = 'intracontinental' | 'intercontinental'
export interface Livery{
image_url: string,
is_ai: boolean,
attribution: string,
attribution_url: string,
}
export interface Flight {
id: number
flight_number: string | null
@@ -305,9 +312,10 @@ export interface Flight {
scope: FlightScope
range: FlightRange
region_range: RegionRange
livery_url?: string
livery: Livery | null
user?: User | null
class_seat_combined: number
other_users_on_flight: string[]
}