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 CHANGED
@@ -3,7 +3,7 @@
3
3
  "author": "Smartrips",
4
4
  "license": "ISC",
5
5
  "keywords": [],
6
- "version": "1.5.8",
6
+ "version": "1.5.10",
7
7
  "description": "",
8
8
  "repository": {
9
9
  "type": "git",
@@ -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
- cheapestStopPricesMap: Record<string, number>;
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
  }