Browse Source

chore: Regenerate docs

Closes #3168
Michael Bromley 1 year ago
parent
commit
cd5b722af0
1 changed files with 3 additions and 2 deletions
  1. 3 2
      docs/docs/reference/core-plugins/elasticsearch-plugin/index.md

+ 3 - 2
docs/docs/reference/core-plugins/elasticsearch-plugin/index.md

@@ -11,7 +11,7 @@ import MemberDescription from '@site/src/components/MemberDescription';
 
 
 ## ElasticsearchPlugin
 ## ElasticsearchPlugin
 
 
-<GenerationInfo sourceFile="packages/elasticsearch-plugin/src/plugin.ts" sourceLine="224" packageName="@vendure/elasticsearch-plugin" />
+<GenerationInfo sourceFile="packages/elasticsearch-plugin/src/plugin.ts" sourceLine="225" packageName="@vendure/elasticsearch-plugin" />
 
 
 This plugin allows your product search to be powered by [Elasticsearch](https://github.com/elastic/elasticsearch) - a powerful Open Source search
 This plugin allows your product search to be powered by [Elasticsearch](https://github.com/elastic/elasticsearch) - a powerful Open Source search
 engine. This is a drop-in replacement for the DefaultSearchPlugin which exposes many powerful configuration options enabling your storefront
 engine. This is a drop-in replacement for the DefaultSearchPlugin which exposes many powerful configuration options enabling your storefront
@@ -53,7 +53,7 @@ const config: VendureConfig = {
 ## Search API Extensions
 ## Search API Extensions
 This plugin extends the default search query of the Shop API, allowing richer querying of your product data.
 This plugin extends the default search query of the Shop API, allowing richer querying of your product data.
 
 
-The [SearchResponse](/reference/graphql-api/admin/object-types/#searchresponse) type is extended with information
+The [SearchResponse](/reference/graphql-api/shop/object-types/#searchresponse) type is extended with information
 about price ranges in the result set:
 about price ranges in the result set:
 ```graphql
 ```graphql
 extend type SearchResponse {
 extend type SearchResponse {
@@ -75,6 +75,7 @@ type PriceRangeBucket {
 extend input SearchInput {
 extend input SearchInput {
     priceRange: PriceRangeInput
     priceRange: PriceRangeInput
     priceRangeWithTax: PriceRangeInput
     priceRangeWithTax: PriceRangeInput
+    inStock: Boolean
 }
 }
 
 
 input PriceRangeInput {
 input PriceRangeInput {