@findhotel/sapi 1.28.11 → 1.28.12

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.
@@ -291,6 +291,7 @@ export interface ContentHotel {
291
291
  _geoloc: Location;
292
292
  hotelName: string;
293
293
  imageURIs: string[];
294
+ images?: Image[];
294
295
  guestType: GuestType;
295
296
  guestRating: GuestRating;
296
297
  descriptions?: ContentHotelDescriptions;
@@ -406,4 +407,12 @@ export interface PropertySize {
406
407
  measurement: number;
407
408
  units: number;
408
409
  }
410
+ export interface Image {
411
+ category: ImageCategory[];
412
+ href: string;
413
+ }
414
+ export interface ImageCategory {
415
+ id: string;
416
+ name: string;
417
+ }
409
418
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@findhotel/sapi",
3
- "version": "1.28.11",
3
+ "version": "1.28.12",
4
4
  "description": "FindHotel Search API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/types/packages/core/src",