Skip to content

Commit

Permalink
feat: added attribValues to product filter query
Browse files Browse the repository at this point in the history
  • Loading branch information
LeoMunizOdoo committed Mar 21, 2022
1 parent 13ffcbf commit dc3c991
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/api-client/src/types/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ export type OrderSortInput = {
export type ProductFilterInput = {
categoryId?: number[];
attributeValueId?: number[];
attribValues?: string[];
minPrice?: number;
maxPrice?: number;
};
Expand Down Expand Up @@ -567,6 +568,7 @@ export interface AgnosticFacetSearchParams {
sort?: string | string[];
filters?: Record<string, string[]>;
metadata?: any;
fetchCategory?: boolean;
[x: string]: any;
}
export interface SearchResultParams<S> {
Expand Down

0 comments on commit dc3c991

Please sign in to comment.