alliance-shared-types 1.0.6 → 1.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -5,7 +5,7 @@ export type BookingStatus = 'pending' | 'confirmed' | 'ticketed' | 'cancelled' |
|
|
|
5
5
|
export type PaymentStatus = 'pending' | 'paid' | 'refunded' | 'partial';
|
|
6
6
|
export type PassengerType = 'adult' | 'child' | 'infant';
|
|
7
7
|
export type CabinClass = 'economy' | 'premium_economy' | 'business' | 'first';
|
|
8
|
-
export type BookingType = 'regular' | 'flexible_outbound' | 'flexible_return';
|
|
8
|
+
export type BookingType = 'regular' | 'flexible_outbound' | 'flexible_return' | 'one_way' | 'return' | 'multi_city';
|
|
9
9
|
export declare const BOOKING_STATUSES: BookingStatus[];
|
|
10
10
|
export declare const PAYMENT_STATUSES: PaymentStatus[];
|
|
11
11
|
/**
|