@spiffcommerce/core 32.2.7-beta.fe525a16-f209-5cb8-95bc-b269e8ebcfcc → 32.3.0-beta.0b8f2e31-be99-5e83-b9f9-3c0530b9e37e

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.3.0] - 08-10-2025
18
+
19
+ ## Added
20
+
21
+ - Added the new global function `deleteBundle` which takes a bundle id string and deletes the marks the bundle as deleted on the server.
22
+
17
23
  ## [32.2.6] - 08-10-2025
18
24
 
19
25
  ## Fixed
package/dist/index.d.ts CHANGED
@@ -2365,6 +2365,8 @@ interface GetNewWorkflowOptionsBase extends GetWorkflowOptionsBase {
2365
2365
  }
2366
2366
  interface GetWorkflowFromIntegrationProductOptions extends GetNewWorkflowOptionsBase {
2367
2367
  integrationProductId: string;
2368
+ quantity?: number;
2369
+ recipient?: any;
2368
2370
  type: "integration";
2369
2371
  }
2370
2372
  interface GetWorkflowFromExternalProductOptions extends GetNewWorkflowOptionsBase {
@@ -2563,7 +2565,7 @@ declare const getOverrideThemeConfiguration: (overrideThemeConfigurationId: stri
2563
2565
  declare const getBundleThemeConfiguration: (bundleId: string) => Promise<ThemeInstallConfigurationGraphQl | undefined>;
2564
2566
  declare const getTransactionThemeConfiguration: (transactionId: string) => Promise<ThemeInstallConfigurationGraphQl | undefined>;
2565
2567
  /**
2566
- * Marks the Bundle with the provided id as deleted. The Bundle's data will still persist on the server and as such it is still safe to keep a reference to this object,
2568
+ * Marks the Bundle with the provided id as deleted. The Bundle's data will still persist on the server and as such you can still retrieve it directly via id,
2567
2569
  * but it will no longer be visible in list/feed queries and it can no longer be converted into an Order.
2568
2570
  */
2569
2571
  declare const deleteBundle: (id: string) => Promise<void>;