@vendure/common
Advanced tools
Comparing version 0.2.0 to 0.2.1
@@ -1125,2 +1125,11 @@ export declare type Maybe<T> = T | null; | ||
}; | ||
export declare type PriceRangeBucket = { | ||
__typename?: 'PriceRangeBucket'; | ||
to: Scalars['Int']; | ||
count: Scalars['Int']; | ||
}; | ||
export declare type PriceRangeInput = { | ||
min: Scalars['Int']; | ||
max: Scalars['Int']; | ||
}; | ||
export declare type Product = Node & { | ||
@@ -1404,2 +1413,4 @@ __typename?: 'Product'; | ||
sort?: Maybe<SearchResultSortParameter>; | ||
priceRange?: Maybe<PriceRangeInput>; | ||
priceRangeWithTax?: Maybe<PriceRangeInput>; | ||
}; | ||
@@ -1415,3 +1426,11 @@ export declare type SearchReindexResponse = { | ||
facetValues: Array<FacetValueResult>; | ||
prices: SearchResponsePriceData; | ||
}; | ||
export declare type SearchResponsePriceData = { | ||
__typename?: 'SearchResponsePriceData'; | ||
range: PriceRange; | ||
rangeWithTax: PriceRange; | ||
buckets: Array<PriceRangeBucket>; | ||
bucketsWithTax: Array<PriceRangeBucket>; | ||
}; | ||
export declare type SearchResult = { | ||
@@ -1418,0 +1437,0 @@ __typename?: 'SearchResult'; |
{ | ||
"name": "@vendure/common", | ||
"version": "0.2.0", | ||
"version": "0.2.1", | ||
"main": "index.js", | ||
@@ -21,3 +21,3 @@ "license": "MIT", | ||
}, | ||
"gitHead": "707ae5911386fbb7deff3f50b36a0d2d811c5a3b" | ||
"gitHead": "802cc805e3e9a0d999ca70169c6fab6e80bc461b" | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
180928
5177