@spiffcommerce/core 34.4.4 → 34.4.5-beta.1aa1daaa-2cd4-58ba-8dc8-d403085ec7de
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 +187 -191
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2781 -2754
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -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
|
+
## [34.4.6] - 13-02-2026
|
|
18
|
+
|
|
19
|
+
### Changed
|
|
20
|
+
|
|
21
|
+
- Updated network requests to only include ID for default variants reducing duplication and simplifying logic around variants. This should not have any effect on functionality but will improve performance in some cases.
|
|
22
|
+
|
|
17
23
|
## [34.4.5] - 02-02-2026
|
|
18
24
|
|
|
19
25
|
### Fixed
|
package/dist/index.d.ts
CHANGED
|
@@ -3098,7 +3098,7 @@ interface OptionResource {
|
|
|
3098
3098
|
name: string;
|
|
3099
3099
|
type?: string;
|
|
3100
3100
|
variants?: VariantResource[];
|
|
3101
|
-
defaultVariant?: VariantResource
|
|
3101
|
+
defaultVariant?: Pick<VariantResource, "id">;
|
|
3102
3102
|
workflowId?: string;
|
|
3103
3103
|
public?: boolean;
|
|
3104
3104
|
displayType?: string;
|