v1 Release
This commit is contained in:
Vendored
+9
-1
@@ -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[]
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user