@spiffcommerce/core 32.3.1 → 32.4.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 +6 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +23 -23
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1427 -1423
- 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
|
+
## [32.4.0] - 16-10-2025
|
18
|
+
|
19
|
+
## Added
|
20
|
+
|
21
|
+
- The interface `GetWorkflowFromIntegrationProductOptions` now has optional `quantity` and `recipient` arguments.
|
22
|
+
|
17
23
|
## [32.3.1] - 09-10-2025
|
18
24
|
|
19
25
|
## Added
|
package/dist/index.d.ts
CHANGED
@@ -2367,6 +2367,8 @@ interface GetNewWorkflowOptionsBase extends GetWorkflowOptionsBase {
|
|
2367
2367
|
}
|
2368
2368
|
interface GetWorkflowFromIntegrationProductOptions extends GetNewWorkflowOptionsBase {
|
2369
2369
|
integrationProductId: string;
|
2370
|
+
quantity?: number;
|
2371
|
+
recipient?: any;
|
2370
2372
|
type: "integration";
|
2371
2373
|
}
|
2372
2374
|
interface GetWorkflowFromExternalProductOptions extends GetNewWorkflowOptionsBase {
|