File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed
src/main/scala/algoliasearch/ingestion Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -25,12 +25,16 @@ package algoliasearch.ingestion
2525 * Locales for your commercetools stores.
2626 * @param fallbackIsInStockValue
2727 * Whether a fallback value is stored in the Algolia record if there's no inventory information about the product.
28+ * @param productQueryPredicate
29+ * Predicate to filter out specific products when indexing. For more information, see [Query
30+ * Predicate](https://docs.commercetools.com/api/predicates/query).
2831 */
2932case class SourceCommercetools (
3033 storeKeys : Option [Seq [String ]] = scala.None ,
3134 locales : Option [Seq [String ]] = scala.None ,
3235 url : String ,
3336 projectKey : String ,
3437 fallbackIsInStockValue : Option [Boolean ] = scala.None ,
38+ productQueryPredicate : Option [String ] = scala.None ,
3539 customFields : Option [CommercetoolsCustomFields ] = scala.None
3640) extends SourceInputTrait
Original file line number Diff line number Diff line change @@ -25,11 +25,15 @@ package algoliasearch.ingestion
2525 * Locales for your commercetools stores.
2626 * @param fallbackIsInStockValue
2727 * Whether a fallback value is stored in the Algolia record if there's no inventory information about the product.
28+ * @param productQueryPredicate
29+ * Predicate to filter out specific products when indexing. For more information, see [Query
30+ * Predicate](https://docs.commercetools.com/api/predicates/query).
2831 */
2932case class SourceUpdateCommercetools (
3033 storeKeys : Option [Seq [String ]] = scala.None ,
3134 locales : Option [Seq [String ]] = scala.None ,
3235 url : Option [String ] = scala.None ,
3336 fallbackIsInStockValue : Option [Boolean ] = scala.None ,
37+ productQueryPredicate : Option [String ] = scala.None ,
3438 customFields : Option [CommercetoolsCustomFields ] = scala.None
3539) extends SourceUpdateInputTrait
You can’t perform that action at this time.
0 commit comments