@spiffcommerce/core 33.7.0 → 33.8.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 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.8.0] - 29-10-2025
18
+
19
+ ### Added
20
+
21
+ - Custom data fields on Conversion Configurations may now optionally link to an Option. You should use this Option to drive the selections and provide the selected variant ID as the user's selection when updating a recipient. This process may be more strongly enforced in the future.
22
+
17
23
  ## [33.4.1] - 21-10-2025
18
24
 
19
25
  ### Fixed
package/dist/index.d.ts CHANGED
@@ -2953,6 +2953,7 @@ interface Step<T extends AnyStepData = AnyStepData> {
2953
2953
  conditions?: Condition[];
2954
2954
  data: T;
2955
2955
  globalPropertyAspectConfigurations?: GlobalPropertyAspectConfiguration[];
2956
+ conversionConfigurationFieldLinks?: ConversionConfigurationLink[];
2956
2957
  helpText?: string;
2957
2958
  mandatory?: boolean;
2958
2959
  relevantPanelName?: string;
@@ -2968,6 +2969,10 @@ interface GlobalPropertyAspectConfiguration {
2968
2969
  aspectName?: string;
2969
2970
  globalPropertyConfigurationId?: string;
2970
2971
  }
2972
+ interface ConversionConfigurationLink {
2973
+ identifier?: string;
2974
+ conversionConfigurationId?: string;
2975
+ }
2971
2976
  interface GlobalPropertyConfiguration {
2972
2977
  id: string;
2973
2978
  aspects: GlobalPropertyConfigurationAspect[];