@spiffcommerce/core 36.1.1 → 37.0.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
@@ -14,6 +14,18 @@ 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
+ ## [37.0.0] - 04-03-2026
18
+
19
+ ### Added
20
+
21
+ - `Bundle` now provides `getProductIds(): undefined | string[]`, `addProductId(id: string): Promise<void>;`, and `removeProductIds(ids: string[]): Promise<void>`. These replace the existing methods related to integration product ids.
22
+ - `Bundle` events: `bundle-products-added` and `bundle-products-removed`, related to the new methods.
23
+
24
+ ### Removed
25
+
26
+ - `Bundle` methods `getIntegrationProductIds`, `addIntegrationProductId`, and `removeIntegrationProductIds`.
27
+ - `Bundle` events: `bundle-integration-products-added` and `bundle-integration-products-removed`.
28
+
17
29
  ## [36.1.0] - 02-03-2026
18
30
 
19
31
  ### Added