@haus-storefront-react/shared-types 0.0.32-5 → 0.0.32-7

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +35 -0
  2. package/index.d.ts +35 -0
  3. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,3 +1,38 @@
1
+ ## 0.0.32-6 (2025-09-17)
2
+
3
+ ### 🚀 Features
4
+
5
+ - add collection and collections functionality to SDK ([79c1d54](https://github.com/WeAreHausTech/haus-storefront-components/commit/79c1d54))
6
+ - enhance SDK context and add active plugin configuration support ([bc7e8ac](https://github.com/WeAreHausTech/haus-storefront-components/commit/bc7e8ac))
7
+ - add Vendure Elastic Search Plugin integration ([6aaa641](https://github.com/WeAreHausTech/haus-storefront-components/commit/6aaa641))
8
+ - enhance form handling and component props across various modules ([21edaa1](https://github.com/WeAreHausTech/haus-storefront-components/commit/21edaa1))
9
+ - add discount management components and hooks ([#33](https://github.com/WeAreHausTech/haus-storefront-components/pull/33))
10
+ - add ProductBadge component for enhanced product presentation ([#26](https://github.com/WeAreHausTech/haus-storefront-components/pull/26))
11
+ - add filters component for product listing ([d780517](https://github.com/WeAreHausTech/haus-storefront-components/commit/d780517))
12
+ - add ProductListPrice component to handle pricing details ([4f53f48](https://github.com/WeAreHausTech/haus-storefront-components/commit/4f53f48))
13
+
14
+ ### ❤️ Thank You
15
+
16
+ - Johanna Bertils @johannabertils
17
+ - Mathias Saxenstrand
18
+
19
+ ## 0.0.32-5 (2025-09-17)
20
+
21
+ ### 🚀 Features
22
+
23
+ - enhance SDK context and add active plugin configuration support ([bc7e8ac](https://github.com/WeAreHausTech/haus-storefront-components/commit/bc7e8ac))
24
+ - add Vendure Elastic Search Plugin integration ([6aaa641](https://github.com/WeAreHausTech/haus-storefront-components/commit/6aaa641))
25
+ - enhance form handling and component props across various modules ([21edaa1](https://github.com/WeAreHausTech/haus-storefront-components/commit/21edaa1))
26
+ - add discount management components and hooks ([#33](https://github.com/WeAreHausTech/haus-storefront-components/pull/33))
27
+ - add ProductBadge component for enhanced product presentation ([#26](https://github.com/WeAreHausTech/haus-storefront-components/pull/26))
28
+ - add filters component for product listing ([d780517](https://github.com/WeAreHausTech/haus-storefront-components/commit/d780517))
29
+ - add ProductListPrice component to handle pricing details ([4f53f48](https://github.com/WeAreHausTech/haus-storefront-components/commit/4f53f48))
30
+
31
+ ### ❤️ Thank You
32
+
33
+ - Johanna Bertils @johannabertils
34
+ - Mathias Saxenstrand
35
+
1
36
  ## 0.0.32-4 (2025-09-16)
2
37
 
3
38
  ### 🚀 Features
package/index.d.ts CHANGED
@@ -616,6 +616,41 @@ export interface OrderList extends PaginatedList {
616
616
  items: Array<Order>;
617
617
  totalItems: number;
618
618
  }
619
+ export interface CollectionSortParameter {
620
+ id?: Maybe<SortOrder>;
621
+ createdAt?: Maybe<SortOrder>;
622
+ updatedAt?: Maybe<SortOrder>;
623
+ name?: Maybe<SortOrder>;
624
+ slug?: Maybe<SortOrder>;
625
+ position?: Maybe<SortOrder>;
626
+ description?: Maybe<SortOrder>;
627
+ parentId?: Maybe<SortOrder>;
628
+ }
629
+ export interface CollectionFilterParameter {
630
+ id?: Maybe<IdOperators>;
631
+ createdAt?: Maybe<DateOperators>;
632
+ updatedAt?: Maybe<DateOperators>;
633
+ languageCode?: Maybe<StringOperators>;
634
+ name?: Maybe<StringOperators>;
635
+ slug?: Maybe<StringOperators>;
636
+ position?: Maybe<NumberOperators>;
637
+ description?: Maybe<StringOperators>;
638
+ parentId?: Maybe<IdOperators>;
639
+ _and?: Maybe<CollectionFilterParameter[]>;
640
+ _or?: Maybe<CollectionFilterParameter[]>;
641
+ }
642
+ export interface CollectionListOptions {
643
+ topLevelOnly?: Maybe<boolean>;
644
+ skip?: Maybe<number>;
645
+ take?: Maybe<number>;
646
+ sort?: Maybe<CollectionSortParameter>;
647
+ filter?: Maybe<CollectionFilterParameter>;
648
+ filterOperator?: Maybe<LogicalOperator>;
649
+ }
650
+ export interface CollectionList extends PaginatedList {
651
+ items: Array<Collection>;
652
+ totalItems: number;
653
+ }
619
654
  export interface Badge {
620
655
  id: string;
621
656
  createdAt: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@haus-storefront-react/shared-types",
3
- "version": "0.0.32-5",
3
+ "version": "0.0.32-7",
4
4
  "main": "./index.js",
5
5
  "types": "./index.d.ts",
6
6
  "exports": {