@spiffcommerce/core 33.5.1 → 33.5.3-beta.351644d4-2701-5f34-b1ad-175550c00306

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/dist/index.d.ts CHANGED
@@ -2948,6 +2948,7 @@ interface Step<T extends AnyStepData = AnyStepData> {
2948
2948
  conditions?: Condition[];
2949
2949
  data: T;
2950
2950
  globalPropertyAspectConfigurations?: GlobalPropertyAspectConfiguration[];
2951
+ conversionConfigurationFieldLinks?: ConversionConfigurationLink[];
2951
2952
  helpText?: string;
2952
2953
  mandatory?: boolean;
2953
2954
  relevantPanelName?: string;
@@ -2963,6 +2964,10 @@ interface GlobalPropertyAspectConfiguration {
2963
2964
  aspectName?: string;
2964
2965
  globalPropertyConfigurationId?: string;
2965
2966
  }
2967
+ interface ConversionConfigurationLink {
2968
+ identifier?: string;
2969
+ conversionConfigurationId?: string;
2970
+ }
2966
2971
  interface GlobalPropertyConfiguration {
2967
2972
  id: string;
2968
2973
  aspects: GlobalPropertyConfigurationAspect[];