@findhotel/sapi 1.4.5 → 1.4.6

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.
@@ -144,6 +144,7 @@ interface BasicAnchorHit {
144
144
  placeDN: TranslatedArray;
145
145
  priceBucketWidth?: number;
146
146
  _geoloc: Location;
147
+ navPathNames?: NavPathNames;
147
148
  }
148
149
  export declare type AnchorType = 'hotel' | 'place';
149
150
  export interface HotelAnchorHit extends BasicAnchorHit {
@@ -226,6 +227,11 @@ export interface TranslatedLOVItem {
226
227
  id: number;
227
228
  value: string;
228
229
  }
230
+ export interface NavPathNames {
231
+ city?: string;
232
+ adminDivisions?: string[];
233
+ country?: string;
234
+ }
229
235
  export interface Hotel extends Omit<Hit, 'hotelName' | 'address' | 'placeDN' | 'placeADName'> {
230
236
  displayAddress: string;
231
237
  hotelName: string;
@@ -234,6 +240,7 @@ export interface Hotel extends Omit<Hit, 'hotelName' | 'address' | 'placeDN' | '
234
240
  indexedDiscountModifier?: string;
235
241
  vrDetails?: VrDetails;
236
242
  isGvr?: boolean;
243
+ navPathNames?: NavPathNames;
237
244
  }
238
245
  export interface ContentHotel {
239
246
  objectID: HotelId;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@findhotel/sapi",
3
- "version": "1.4.5",
3
+ "version": "1.4.6",
4
4
  "description": "FindHotel Search API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/types/packages/core/src",