@spiffcommerce/core 26.15.1 → 26.16.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 +6 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +31 -24
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +127 -120
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -14,6 +14,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
14
14
|
- `Fixed` for any bug fixes.
|
|
15
15
|
- `Security` in case of vulnerabilities.
|
|
16
16
|
|
|
17
|
+
## [26.16.1] - 18-03-2025
|
|
18
|
+
|
|
19
|
+
### Changed
|
|
20
|
+
|
|
21
|
+
- If both the partner and workflow have terms and conditions, the workflow wins.
|
|
22
|
+
|
|
17
23
|
## [26.15.0] - 03-03-2025
|
|
18
24
|
|
|
19
25
|
### Added
|
package/dist/index.d.ts
CHANGED
|
@@ -3742,6 +3742,7 @@ interface Product {
|
|
|
3742
3742
|
* The weight of this product.
|
|
3743
3743
|
*/
|
|
3744
3744
|
weight?: number;
|
|
3745
|
+
minimumOrderQuantity?: number;
|
|
3745
3746
|
/**
|
|
3746
3747
|
* When specified, represents a pre-rendered image of this product to be
|
|
3747
3748
|
* displayed to customers while the 3D preview is loading.
|