@spiffcommerce/core 32.3.1-beta.fb24b784-d4cb-5c48-bf28-41a506fc3cc8 → 32.4.0-beta.8897ea88-ee5b-526f-a5cc-8b19f8c7e3a8
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 +2 -0
- package/dist/index.js +116 -116
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1714 -1709
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -27,6 +27,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
27
27
|
- Added GraphQL mutation for updating a transaction's integration product, enabling backend synchronization of integration product changes.
|
28
28
|
- Added `getState()` method to `BundleStateManager` for easier external access to the current bundle state.
|
29
29
|
|
30
|
+
## [32.4.0] - 16-10-2025
|
31
|
+
|
32
|
+
## Added
|
33
|
+
|
34
|
+
- The interface `GetWorkflowFromIntegrationProductOptions` now has optional `quantity` and `recipient` arguments.
|
35
|
+
|
30
36
|
## [32.3.1] - 09-10-2025
|
31
37
|
|
32
38
|
## Added
|
package/dist/index.d.ts
CHANGED
@@ -2411,6 +2411,8 @@ interface GetWorkflowExperienceFromBlankOptions extends GetNewWorkflowExperience
|
|
2411
2411
|
}
|
2412
2412
|
interface GetWorkflowExperienceFromIntegrationProductOptions extends GetNewWorkflowExperienceOptionsBase {
|
2413
2413
|
integrationProductId: string;
|
2414
|
+
quantity?: number;
|
2415
|
+
recipient?: any;
|
2414
2416
|
type: "integration";
|
2415
2417
|
}
|
2416
2418
|
interface GetWorkflowExperienceFromExternalProductOptions extends GetNewWorkflowExperienceOptionsBase {
|