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.
@@ -15,6 +15,7 @@ export interface BannerFilters {
15
15
  categoryIds?: number[];
16
16
  brandIds?: number[];
17
17
  tagSlugs?: string[];
18
+ skus?: string[];
18
19
  types?: ('product' | 'bundle')[];
19
20
  isFeatured?: boolean;
20
21
  minPrice?: number;
@@ -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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tt-entities",
3
- "version": "0.1.19",
3
+ "version": "0.1.20",
4
4
  "description": "Tatayab entities library",
5
5
  "main": "dist/libs/tatayab-entities-library/index.js",
6
6
  "types": "dist/libs/tatayab-entities-library/index.d.ts",