@findhotel/sapi 1.29.5 → 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
|
/**
|