@spiffcommerce/core 33.4.0-beta.a67d15dd-dc23-5bb7-a68b-9af13a38acda → 33.4.1-beta.41566381-4046-57a8-8e86-d2f3aa468813
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 +1 -1
- package/dist/index.js +67 -67
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1109 -1109
- 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.4.1] - 21-10-2025
|
|
18
|
+
|
|
19
|
+
### Fixed
|
|
20
|
+
|
|
21
|
+
- Valid calls to `deleteBundle` should no longer fail due to invalid authorization.
|
|
22
|
+
|
|
17
23
|
## [33.4.0] - 21-10-2025
|
|
18
24
|
|
|
19
25
|
### Added
|
package/dist/index.d.ts
CHANGED
|
@@ -2580,7 +2580,7 @@ declare class SpiffCommerceClient {
|
|
|
2580
2580
|
* @param graphqlOptions Options to configure loading the workflows.
|
|
2581
2581
|
* @returns An array of workflow experiences configured as requested.
|
|
2582
2582
|
*/
|
|
2583
|
-
getWorkflowExperiences(optionsArray: GetWorkflowOptions[], graphqlOptions?: GetWorkflowGraphqlOptions): Promise<WorkflowExperience[]>;
|
|
2583
|
+
getWorkflowExperiences(optionsArray: GetWorkflowOptions[], graphqlOptions?: GetWorkflowGraphqlOptions, transactionInitializedCallback?: () => void): Promise<WorkflowExperience[]>;
|
|
2584
2584
|
/**
|
|
2585
2585
|
* A function used to synchronize transaction state with the server.
|
|
2586
2586
|
* @param options New state details. To be spread into the query.
|