@findhotel/sapi 1.19.1-beta.0 → 1.20.2
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.
- package/README.md +123 -143
- package/dist/index.js +1 -1
- package/dist/types/packages/core/src/types/types.d.ts +6 -0
- package/package.json +1 -1
- package/dist/index.js.map +0 -1
|
@@ -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,10 @@ export interface NavPathNames {
|
|
|
235
236
|
adminDivisions?: string[];
|
|
236
237
|
country?: string;
|
|
237
238
|
}
|
|
239
|
+
export interface NavPathInfo {
|
|
240
|
+
id?: string;
|
|
241
|
+
name?: string;
|
|
242
|
+
}
|
|
238
243
|
export interface Hotel extends Omit<Hit, 'hotelName' | 'address' | 'placeDN' | 'placeADName'> {
|
|
239
244
|
displayAddress: string;
|
|
240
245
|
hotelName: string;
|
|
@@ -244,6 +249,7 @@ export interface Hotel extends Omit<Hit, 'hotelName' | 'address' | 'placeDN' | '
|
|
|
244
249
|
vrDetails?: VrDetails;
|
|
245
250
|
isVr?: boolean;
|
|
246
251
|
navPathNames?: NavPathNames;
|
|
252
|
+
navPathInfo?: NavPathInfo[];
|
|
247
253
|
partiallyMatched: boolean;
|
|
248
254
|
}
|
|
249
255
|
export interface ContentHotelDescriptions {
|