@findhotel/sapi 1.18.3 → 1.19.0

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.
@@ -79,6 +79,7 @@ export interface SplitBookingBundle {
79
79
  inProgress: boolean;
80
80
  url?: string;
81
81
  links?: Link[];
82
+ cancellationPenalties?: CancellationPenalties[];
82
83
  }
83
84
  export declare type Promos = Record<string, Offer>;
84
85
  /**
@@ -145,6 +146,7 @@ interface SapiSplitBookingBundle {
145
146
  inProgress: boolean;
146
147
  canPayLater?: boolean;
147
148
  accessTier?: AccessTier;
149
+ cancellationPenalties?: CancellationPenalties[];
148
150
  }
149
151
  export interface HasMoreOffersWithoutFiltering {
150
152
  byType: boolean;
@@ -126,6 +126,7 @@ export interface RoomsSplitBooking {
126
126
  matchType?: 'exact' | 'by_price' | 'by_terms';
127
127
  matchedDim?: MatchedDim;
128
128
  matchedOfferPriceDiff?: number;
129
+ cancellationPenalties?: CancellationPenalties[];
129
130
  }
130
131
  export interface RoomsResults {
131
132
  hotelId: HotelId;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@findhotel/sapi",
3
- "version": "1.18.3",
3
+ "version": "1.19.0",
4
4
  "description": "FindHotel Search API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/types/packages/core/src",