@spiffcommerce/core 33.8.4-beta.ca264159-d680-5f73-a327-2eef32dff950 → 33.8.5-beta.07dfe7ff-934b-5aa4-aac1-5ea1130fb45b
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 +3 -0
- package/dist/index.js +279 -271
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3373 -3344
- 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
|
+
## [33.8.5] - 03-11-2025
|
|
18
|
+
|
|
19
|
+
### Changed
|
|
20
|
+
|
|
21
|
+
- Improved performance when loading many WorkflowExperiences at the same time.
|
|
22
|
+
|
|
17
23
|
## [33.8.3] - 03-11-2025
|
|
18
24
|
|
|
19
25
|
### Fixed
|
package/dist/index.d.ts
CHANGED
|
@@ -3795,6 +3795,9 @@ interface Transaction {
|
|
|
3795
3795
|
* Product that this transaction belongs to.
|
|
3796
3796
|
*/
|
|
3797
3797
|
product?: Product;
|
|
3798
|
+
/**
|
|
3799
|
+
* The ID of the product that this transaction belongs to.
|
|
3800
|
+
*/
|
|
3798
3801
|
/**
|
|
3799
3802
|
* The integration product related to this lineitem.
|
|
3800
3803
|
*/
|