@findhotel/sapi 1.19.1-beta.0 → 1.20.1
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.
|
@@ -152,6 +152,7 @@ interface BasicAnchorHit {
|
|
|
152
152
|
priceBucketWidth?: number;
|
|
153
153
|
_geoloc: Location;
|
|
154
154
|
navPathNames?: NavPathNames;
|
|
155
|
+
navPathInfo?: NavPathInfo;
|
|
155
156
|
}
|
|
156
157
|
export declare type AnchorType = 'hotel' | 'place';
|
|
157
158
|
export interface HotelAnchorHit extends BasicAnchorHit {
|
|
@@ -235,6 +236,13 @@ export interface NavPathNames {
|
|
|
235
236
|
adminDivisions?: string[];
|
|
236
237
|
country?: string;
|
|
237
238
|
}
|
|
239
|
+
export interface NavPathInfo {
|
|
240
|
+
city?: string;
|
|
241
|
+
adminDivisions?: string[];
|
|
242
|
+
country?: string;
|
|
243
|
+
cityID?: string;
|
|
244
|
+
countryID?: string;
|
|
245
|
+
}
|
|
238
246
|
export interface Hotel extends Omit<Hit, 'hotelName' | 'address' | 'placeDN' | 'placeADName'> {
|
|
239
247
|
displayAddress: string;
|
|
240
248
|
hotelName: string;
|
|
@@ -244,6 +252,7 @@ export interface Hotel extends Omit<Hit, 'hotelName' | 'address' | 'placeDN' | '
|
|
|
244
252
|
vrDetails?: VrDetails;
|
|
245
253
|
isVr?: boolean;
|
|
246
254
|
navPathNames?: NavPathNames;
|
|
255
|
+
navPathInfo?: NavPathInfo;
|
|
247
256
|
partiallyMatched: boolean;
|
|
248
257
|
}
|
|
249
258
|
export interface ContentHotelDescriptions {
|