Corrected Korea

This commit is contained in:
2026-04-09 11:20:16 +10:00
parent 43f5c8ac3e
commit 7a07616f03
19 changed files with 1530 additions and 399 deletions
+21
View File
@@ -23,6 +23,18 @@ export type SharedProps = import('@inertiajs/core').PageProps & {
logo_api_url: string
}
export interface Region {
id: number
name: string
code: string
local_code: string
country_id: number
continent_id: number
created_at: string | null
updated_at: string | null
country: Country
}
export interface Airport {
id: number
name: string
@@ -30,6 +42,7 @@ export interface Airport {
longitude_deg: number
elevation_ft: number | null
region_id: number
region?: Region
municipality: string | null
icao_code: string | null
iata_code: string | null
@@ -109,11 +122,19 @@ export interface Flight {
note: string | null
departure_airport: Airport
arrival_airport: Airport
departure_date_display: string,
arrival_date_display: string,
departure_time_display: string,
arrival_time_display: string,
arrival_day_difference: number,
airline: Airline | null
aircraft: Aircraft | null
seat_type: SeatType | null
flight_reason: FlightReason | null
flight_class: FlightClass | null
duration_display: string
duration: number
distance: number
}
declare module '@inertiajs/vue3' {