From dc3c991aa41f5ddcff321ab2ecbade81f5ada289 Mon Sep 17 00:00:00 2001 From: Leonardo Muniz Date: Mon, 21 Mar 2022 13:32:31 -0300 Subject: [PATCH] feat: added attribValues to product filter query --- packages/api-client/src/types/types.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/api-client/src/types/types.ts b/packages/api-client/src/types/types.ts index 8450e5b1..d4699016 100644 --- a/packages/api-client/src/types/types.ts +++ b/packages/api-client/src/types/types.ts @@ -93,6 +93,7 @@ export type OrderSortInput = { export type ProductFilterInput = { categoryId?: number[]; attributeValueId?: number[]; + attribValues?: string[]; minPrice?: number; maxPrice?: number; }; @@ -567,6 +568,7 @@ export interface AgnosticFacetSearchParams { sort?: string | string[]; filters?: Record; metadata?: any; + fetchCategory?: boolean; [x: string]: any; } export interface SearchResultParams {