fixes
Some checks failed
Architecture Governance / architecture (push) Has been cancelled

This commit is contained in:
sdarbinyan
2026-07-10 15:55:38 +04:00
parent 49d8226411
commit ee269a9e33
33 changed files with 559 additions and 52 deletions

View File

@@ -0,0 +1,37 @@
export interface MarketplaceFeaturesConfig {
wishlist?: boolean;
compare?: boolean;
reviews?: boolean;
comments?: boolean;
questions?: boolean;
recommendations?: boolean;
recentlyViewed?: boolean;
searchHistory?: boolean;
recentlySearched?: boolean;
ratings?: boolean;
share?: boolean;
brands?: boolean;
manufacturers?: boolean;
availability?: boolean;
discounts?: boolean;
badges?: boolean;
}
export const DEFAULT_MARKETPLACE_FEATURES_CONFIG: Required<MarketplaceFeaturesConfig> = {
wishlist: true,
compare: true,
reviews: true,
comments: true,
questions: true,
recommendations: true,
recentlyViewed: true,
searchHistory: true,
recentlySearched: true,
ratings: true,
share: true,
brands: true,
manufacturers: true,
availability: true,
discounts: true,
badges: true,
};