@haus-storefront-react/shared-types 1.0.0-next.9 → 1.0.4-next.1

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.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,74 @@
1
+ ## 1.0.4-next.0 (2026-03-02)
2
+
3
+ ### 🚀 Features
4
+
5
+ - Add onSdkReady callback to VendurePluginConfig
6
+ - enhance form handling and component props across various modules
7
+ - add discount management components and hooks
8
+ - add ProductBadge component for enhanced product presentation
9
+ - add filters component for product listing
10
+ - add ProductListPrice component to handle pricing details
11
+
12
+ ## 1.0.0-next.15 (2026-02-17)
13
+
14
+ ### 🚀 Features
15
+
16
+ - Add onSdkReady callback to VendurePluginConfig
17
+ - enhance form handling and component props across various modules
18
+ - add discount management components and hooks
19
+ - add ProductBadge component for enhanced product presentation
20
+ - add filters component for product listing
21
+ - add ProductListPrice component to handle pricing details
22
+
23
+ ## 1.0.0-next.14 (2026-02-13)
24
+
25
+ ### 🚀 Features
26
+
27
+ - Add onSdkReady callback to VendurePluginConfig
28
+ - enhance form handling and component props across various modules
29
+ - add discount management components and hooks
30
+ - add ProductBadge component for enhanced product presentation
31
+ - add filters component for product listing
32
+ - add ProductListPrice component to handle pricing details
33
+
34
+ ## 1.0.0-next.13 (2026-02-12)
35
+
36
+ ### 🚀 Features
37
+
38
+ - enhance form handling and component props across various modules
39
+ - add discount management components and hooks
40
+ - add ProductBadge component for enhanced product presentation
41
+ - add filters component for product listing
42
+ - add ProductListPrice component to handle pricing details
43
+
44
+ ## 1.0.0-next.12 (2026-02-12)
45
+
46
+ ### 🚀 Features
47
+
48
+ - enhance form handling and component props across various modules
49
+ - add discount management components and hooks
50
+ - add ProductBadge component for enhanced product presentation
51
+ - add filters component for product listing
52
+ - add ProductListPrice component to handle pricing details
53
+
54
+ ## 1.0.0-next.11 (2026-02-09)
55
+
56
+ ### 🚀 Features
57
+
58
+ - enhance form handling and component props across various modules
59
+ - add discount management components and hooks
60
+ - add ProductBadge component for enhanced product presentation
61
+ - add filters component for product listing
62
+ - add ProductListPrice component to handle pricing details
63
+
64
+ ## 1.0.0-next.10 (2026-02-05)
65
+
66
+ This was a version bump only for shared/types to align it with other projects, there were no code changes.
67
+
68
+ ## 1.0.0-next.9 (2026-02-05)
69
+
70
+ This was a version bump only for shared/types to align it with other projects, there were no code changes.
71
+
1
72
  ## 1.0.0-next.8 (2026-02-05)
2
73
 
3
74
  This was a version bump only for shared/types to align it with other projects, there were no code changes.
package/index.d.ts CHANGED
@@ -58,6 +58,7 @@ export interface IVendurePluginConfig<Features extends PluginFeatures, R, S, T>
58
58
  requests?: R;
59
59
  providers?: ProviderDataMap;
60
60
  settings?: S;
61
+ onSdkReady?: (sdk: T) => void | Promise<void>;
61
62
  setSdk: (sdk: T) => void;
62
63
  setProviders: (providers: ProviderDataMap) => void;
63
64
  setEnabled: (enabled: boolean) => void;
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "restricted"
5
5
  },
6
- "version": "1.0.0-next.9",
6
+ "version": "1.0.4-next.1",
7
7
  "main": "./index.js",
8
8
  "types": "./index.d.ts",
9
9
  "exports": {