@findhotel/sapi 1.29.4 → 1.29.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.
|
@@ -119,10 +119,11 @@ export declare type SearchParameters = ApiSearchParameters & {
|
|
|
119
119
|
};
|
|
120
120
|
export declare type Facets = Record<string, Record<string, number>>;
|
|
121
121
|
export interface FacetFilters {
|
|
122
|
-
neighborhoods?:
|
|
123
|
-
brands?:
|
|
122
|
+
neighborhoods?: [FacetFilter];
|
|
123
|
+
brands?: [FacetFilter];
|
|
124
124
|
}
|
|
125
125
|
export interface FacetFilter {
|
|
126
|
+
id: string;
|
|
126
127
|
value: string;
|
|
127
128
|
}
|
|
128
129
|
/**
|
|
@@ -290,6 +291,7 @@ export declare type Hotel = {
|
|
|
290
291
|
isVr?: boolean;
|
|
291
292
|
navPathInfo?: NavPathInfo;
|
|
292
293
|
partiallyMatched: boolean;
|
|
294
|
+
descriptions?: ContentHotelDescriptions;
|
|
293
295
|
} & Omit<Hit, 'hotelName' | 'address' | 'placeDN' | 'placeADName'>;
|
|
294
296
|
export interface ContentHotelDescriptions {
|
|
295
297
|
overall?: string;
|