tt-entities 0.1.19 → 0.1.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -29,11 +29,11 @@ export interface BannerFilters {
|
|
|
29
29
|
categoryIds?: number[]; // products/bundles in these categories
|
|
30
30
|
brandIds?: number[]; // products belonging to these brands
|
|
31
31
|
tagSlugs?: string[]; // products tagged with any of these slugs
|
|
32
|
+
skus?: string[]; // explicit SKU list — overrides category/brand/tag filtering
|
|
32
33
|
types?: ('product' | 'bundle')[]; // limit to only products or only bundles
|
|
33
34
|
isFeatured?: boolean; // only featured items
|
|
34
35
|
minPrice?: number;
|
|
35
36
|
maxPrice?: number;
|
|
36
|
-
// Future: collectionId, promotionId, etc.
|
|
37
37
|
}
|
|
38
38
|
|
|
39
39
|
@Table
|