@spiffcommerce/core 26.17.0 → 26.18.0

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
@@ -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.18.0] - 24-03-2025
18
+
19
+ ### Added
20
+
21
+ - Added `OneToOne` mode to `BundleDesignCreationCartAddMode`, which adds each Transaction of a Bundle to the cart as individual line items.
22
+
17
23
  ## [26.17.0] - 24-03-2025
18
24
 
19
25
  ### Added
package/dist/index.d.ts CHANGED
@@ -3414,7 +3414,9 @@ declare enum BundleDesignCreationCartAddMode {
3414
3414
  /** Uses default grouping method, which consolidates products into as few line items as possible */
3415
3415
  Default = "Default",
3416
3416
  /** Only adds the first transaction to the cart. */
3417
- FirstTransaction = "FirstTransaction"
3417
+ FirstTransaction = "FirstTransaction",
3418
+ /** Adds each transaction in the Bundle to the cart, without consolidation. */
3419
+ OneToOne = "OneToOne"
3418
3420
  }
3419
3421
  interface BundleDesignCreationMessage {
3420
3422
  bundleId: string;