sm-types 1.5.8 → 1.5.10
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/package.json +1 -1
- package/sm-airlines/index.d.ts +3 -1
package/package.json
CHANGED
package/sm-airlines/index.d.ts
CHANGED
|
@@ -254,6 +254,7 @@ export interface ISmWcfSegment {
|
|
|
254
254
|
durationHours: string;
|
|
255
255
|
origin: ISmWcfStation;
|
|
256
256
|
destination: ISmWcfStation;
|
|
257
|
+
seller?: ISmWcfCarrier;
|
|
257
258
|
carrier: ISmWcfCarrier;
|
|
258
259
|
family: string;
|
|
259
260
|
familyCode: string;
|
|
@@ -411,8 +412,9 @@ export interface IPaxInfo {
|
|
|
411
412
|
}
|
|
412
413
|
export interface IListOffersFiltersInfo {
|
|
413
414
|
carriersDataByName: Record<string, any>;
|
|
414
|
-
|
|
415
|
+
cheapestPrice: number;
|
|
415
416
|
cheapestMinStopPrice: number;
|
|
417
|
+
cheapestStopPricesMap: Record<string, number>;
|
|
416
418
|
cheapestCarrierPricesMap: Record<string, number>;
|
|
417
419
|
cheapestAirportPricesMap: Record<string, number>;
|
|
418
420
|
}
|