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 CHANGED
@@ -135,6 +135,7 @@ export interface IFlightBound {
135
135
  arrivalWeekDay?: string;
136
136
  arrivalTextDate?: string;
137
137
  durationMinutes: number;
138
+ airTimeMinutes: number;
138
139
  departureWeekDay?: string;
139
140
  departureTextDate?: string;
140
141
  }
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "author": "Smartrips",
4
4
  "license": "ISC",
5
5
  "keywords": [],
6
- "version": "1.11.90",
6
+ "version": "1.11.92",
7
7
  "description": "",
8
8
  "repository": {
9
9
  "type": "git",
@@ -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;
package/sm-wcf/index.d.ts CHANGED
@@ -32,6 +32,7 @@ export interface IWcfBound {
32
32
  totalStops: number;
33
33
  carrier: IWcfCarrier;
34
34
  durationMinutes: number;
35
+ airTimeMinutes: number;
35
36
  cabinClass: string;
36
37
  family: string;
37
38
  baggage: boolean;