@spiffcommerce/core 31.2.2 → 31.2.3-beta.026ad90d-92e9-500b-a212-bd6dfa71283c
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 +4 -0
- package/dist/index.js +54 -54
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +273 -255
- 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
|
+
## [30.2.2] - 01-09-2025
|
18
|
+
|
19
|
+
## Added
|
20
|
+
|
21
|
+
- The `collectionId`field will now be available on the complete event.
|
22
|
+
|
17
23
|
## [31.2.2] - 01-09-2025
|
18
24
|
|
19
25
|
## Fixed
|
package/dist/index.d.ts
CHANGED
@@ -3657,6 +3657,10 @@ interface BundleDesignCreationMessage {
|
|
3657
3657
|
* The purchase order associated with this bundle.
|
3658
3658
|
*/
|
3659
3659
|
purchaseOrder: string;
|
3660
|
+
/**
|
3661
|
+
* The ID of the collection this bundle is using.
|
3662
|
+
*/
|
3663
|
+
collectionId: string;
|
3660
3664
|
/**
|
3661
3665
|
* The name of the collection this bundle is using.
|
3662
3666
|
*/
|