File tree 2 files changed +8
-0
lines changed
src/main/scala/algoliasearch/ingestion
2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -25,12 +25,16 @@ package algoliasearch.ingestion
25
25
* Locales for your commercetools stores.
26
26
* @param fallbackIsInStockValue
27
27
* 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).
28
31
*/
29
32
case class SourceCommercetools (
30
33
storeKeys : Option [Seq [String ]] = scala.None ,
31
34
locales : Option [Seq [String ]] = scala.None ,
32
35
url : String ,
33
36
projectKey : String ,
34
37
fallbackIsInStockValue : Option [Boolean ] = scala.None ,
38
+ productQueryPredicate : Option [String ] = scala.None ,
35
39
customFields : Option [CommercetoolsCustomFields ] = scala.None
36
40
) extends SourceInputTrait
Original file line number Diff line number Diff line change @@ -25,11 +25,15 @@ package algoliasearch.ingestion
25
25
* Locales for your commercetools stores.
26
26
* @param fallbackIsInStockValue
27
27
* 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).
28
31
*/
29
32
case class SourceUpdateCommercetools (
30
33
storeKeys : Option [Seq [String ]] = scala.None ,
31
34
locales : Option [Seq [String ]] = scala.None ,
32
35
url : Option [String ] = scala.None ,
33
36
fallbackIsInStockValue : Option [Boolean ] = scala.None ,
37
+ productQueryPredicate : Option [String ] = scala.None ,
34
38
customFields : Option [CommercetoolsCustomFields ] = scala.None
35
39
) extends SourceUpdateInputTrait
You can’t perform that action at this time.
0 commit comments