@findhotel/sapi 1.14.6 → 1.15.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.
@@ -89,6 +89,10 @@ export interface BedType {
89
89
  id: string;
90
90
  name: string;
91
91
  }
92
+ export interface Area {
93
+ squareMeters?: number;
94
+ squareFeet?: number;
95
+ }
92
96
  export interface Room {
93
97
  amenities: string[];
94
98
  occupationPerRoom: number;
@@ -103,6 +107,7 @@ export interface Room {
103
107
  offers: RoomOffer[];
104
108
  hasClickedOffer?: boolean;
105
109
  squashedIds?: string[];
110
+ area: Area;
106
111
  }
107
112
  export interface RoomSplitBookingOffer {
108
113
  checkIn: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@findhotel/sapi",
3
- "version": "1.14.6",
3
+ "version": "1.15.0",
4
4
  "description": "FindHotel Search API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/types/packages/core/src",