@spiffcommerce/core 34.4.5 → 34.4.6

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,7 +14,19 @@ 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.5] - 02-02-2026
17
+ ## [34.4.6] - 13-02-2026
18
+
19
+ ### Fixed
20
+
21
+ - Now handles global configuration colors for illustration steps with one color channel.
22
+
23
+ ## [34.4.5] - 13-02-2026
24
+
25
+ ### Changed
26
+
27
+ - 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.
28
+
29
+ ## [34.4.4] - 02-02-2026
18
30
 
19
31
  ### Fixed
20
32
 
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;