@spiffcommerce/core 32.3.1 → 32.4.0-beta.02fb8112-9c0b-55b0-b7eb-873793f6a97a

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,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
@@ -1555,6 +1555,7 @@ interface GlobalPropertyStateManager {
1555
1555
  setBundleOptions(bundleOptions?: BundleOptions): void;
1556
1556
  getBundleOptions(): BundleOptions | undefined;
1557
1557
  setConfiguration(configuration: GlobalPropertyConfiguration | undefined): void;
1558
+ clearAspects(names: string[]): Promise<void>;
1558
1559
  }
1559
1560
  interface BundleOptions {
1560
1561
  additionalHeaders?: {
@@ -2367,6 +2368,8 @@ interface GetNewWorkflowOptionsBase extends GetWorkflowOptionsBase {
2367
2368
  }
2368
2369
  interface GetWorkflowFromIntegrationProductOptions extends GetNewWorkflowOptionsBase {
2369
2370
  integrationProductId: string;
2371
+ quantity?: number;
2372
+ recipient?: any;
2370
2373
  type: "integration";
2371
2374
  }
2372
2375
  interface GetWorkflowFromExternalProductOptions extends GetNewWorkflowOptionsBase {