@spiffcommerce/core 35.0.1 → 36.1.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 +26 -0
- package/dist/index.cjs +2667 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.ts +74 -119
- package/dist/index.mjs +3385 -3597
- package/dist/index.mjs.map +1 -1
- package/package.json +8 -7
- package/dist/index.js +0 -2730
- package/dist/index.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -14,6 +14,32 @@ 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
|
+
## [36.1.0] - 02-03-2026
|
|
18
|
+
|
|
19
|
+
### Added
|
|
20
|
+
|
|
21
|
+
- The option service now has the method `getTagsForAssets`.
|
|
22
|
+
|
|
23
|
+
## [35.0.0] - 24-02-2026
|
|
24
|
+
|
|
25
|
+
### Added
|
|
26
|
+
|
|
27
|
+
- `WorkflowManager` now provides a `getInitialOptionIds(): Set<string>` method that returns the minimal set of option IDs required to satisfy the default initial loaded state of a workflow. The implementation simulates default variant selections, expands active scenes until stable, and collects option IDs from all renderable steps in the resulting state — ensuring options activated by default selections (and any conditions they satisfy) are included.
|
|
28
|
+
|
|
29
|
+
### Changed
|
|
30
|
+
|
|
31
|
+
- `StepHandle.getAvailableVariants()` and `StepHandle.getAllVariants()` are now asynchronous, returning `Promise<Variant[]>`. `getAllVariants()` now lazy-loads variants via the option service if they are not already populated on the step.
|
|
32
|
+
- Workflow initialization now fetches required initial options concurrently with conversion configuration using `Promise.all`, improving load performance.
|
|
33
|
+
|
|
34
|
+
### Removed
|
|
35
|
+
|
|
36
|
+
- **`client.authenticateBundleFromLocalStorage()`** has been removed.
|
|
37
|
+
- **`client.authenticateTransactionFromLocalStorage()`** has been removed.
|
|
38
|
+
- `BundleStateManager.applyStateToWorkflowExperience()`, `updateWorkflowExperienceTransform()`, and `activateWorkflowExperienceTransform()` have been removed. 3D transform management is no longer handled via bundle state.
|
|
39
|
+
- The following types have been removed from the public API: `Vector3`, `Transform`, `TransformCollection`, `TransformCollectionTransform`, and `BundleStateTransform`. The `transform`, `activeTransform`, and `transforms` fields have been removed from `BundleStateTransaction`.
|
|
40
|
+
- `overrideTheme` has been removed from the workflow request payload.
|
|
41
|
+
- The unused `introduction` implicit step type has been removed.
|
|
42
|
+
|
|
17
43
|
## [34.4.8] - 24-02-2026
|
|
18
44
|
|
|
19
45
|
### Changed
|