sm-types 1.9.14 → 1.9.16

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.9.14",
6
+ "version": "1.9.16",
7
7
  "description": "",
8
8
  "repository": {
9
9
  "type": "git",
@@ -1,4 +1,4 @@
1
- import { IListOffersFiltersInfo, ISmAzulOffer, ISmWcfOffer, IPriceDetails, ISuppliers, IWcfCredentials, ITTravelCredentialItem } from "../index";
1
+ import { IListOffersFiltersInfo, ISmAzulOffer, ISmWcfOffer, IPriceDetails, IWcfCredentials, ITTravelCredentialItem } from "../index";
2
2
  import { CredentialTypeEnum } from "../../common";
3
3
  import { IAzulCredentials } from "../../sm-azul";
4
4
  export interface IListOffersResDto {
@@ -57,7 +57,7 @@ export interface IBuyOfferResDto {
57
57
  emittedAt: Date;
58
58
  }
59
59
  export interface ICancelOfferResDto {
60
- supplier: ISuppliers;
60
+ supplier: string;
61
61
  recordLocator: string;
62
62
  costToCancel?: number;
63
63
  refundedValue?: number;
@@ -112,6 +112,7 @@ export interface IBoundFareInfo {
112
112
  farePrice: number;
113
113
  tax: number;
114
114
  duFee: number;
115
+ duFeeMinimal?: number;
115
116
  total: number;
116
117
  }
117
118
  export interface IBoundFareDetails {
@@ -141,6 +141,7 @@ export interface IAirSearchPassengerFare {
141
141
  }
142
142
  export interface IAirSearchPassengerFareCharge {
143
143
  amount: number;
144
+ minimal?: number;
144
145
  type: 'Fare' | 'TaxSum' | 'duFee';
145
146
  currencyCode?: string;
146
147
  }