sm-types 1.11.90 → 1.11.92
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.
- package/common/index.d.ts +1 -0
- package/package.json +1 -1
- package/sm-airlines/index.d.ts +3 -0
- package/sm-wcf/index.d.ts +1 -0
package/common/index.d.ts
CHANGED
package/package.json
CHANGED
package/sm-airlines/index.d.ts
CHANGED
|
@@ -30,6 +30,7 @@ export interface ISmWcfOffer {
|
|
|
30
30
|
travelIdentification: string | IJourneyIdentificator[];
|
|
31
31
|
price: number;
|
|
32
32
|
publicPrice?: number;
|
|
33
|
+
isPrivateFare?: boolean;
|
|
33
34
|
priceDetails: IPriceDetails;
|
|
34
35
|
flightIdentification: string;
|
|
35
36
|
stopType: string;
|
|
@@ -55,6 +56,7 @@ export interface ISmWcfFamilyOffer {
|
|
|
55
56
|
totalPublic: number;
|
|
56
57
|
totalTaxes: number;
|
|
57
58
|
};
|
|
59
|
+
isPrivateFare: boolean;
|
|
58
60
|
supplier: string;
|
|
59
61
|
outbound: ISmWcfFamilyOfferBound;
|
|
60
62
|
inbound?: ISmWcfFamilyOfferBound;
|
|
@@ -109,6 +111,7 @@ export interface ISmWcfBound {
|
|
|
109
111
|
totalStops: number;
|
|
110
112
|
carrier: ISmWcfCarrier;
|
|
111
113
|
durationMinutes: number;
|
|
114
|
+
airTimeMinutes: number;
|
|
112
115
|
cabinClass: string;
|
|
113
116
|
family?: string;
|
|
114
117
|
familyCode?: string;
|