@spiffcommerce/core 33.6.0-beta.6777176c-b8db-52a5-893e-9e283fb90463 → 33.6.0-beta.7a84179a-d020-5bb7-a38a-3ec41980ae98

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
@@ -1113,10 +1113,6 @@ interface WorkflowExperience {
1113
1113
  * @param product The new product to set.
1114
1114
  */
1115
1115
  setProduct(integrationProductId: string): Promise<void>;
1116
- /**
1117
- * Clear the product from this experience.
1118
- */
1119
- clearProduct(): Promise<void>;
1120
1116
  /**
1121
1117
  * Get the current workflow for this experience. May be undefined.
1122
1118
  */
@@ -1334,7 +1330,6 @@ declare class WorkflowExperienceImpl implements WorkflowExperience {
1334
1330
  getProduct(): Product | undefined;
1335
1331
  getProfanityList(): string[];
1336
1332
  setProduct(integrationProductId: string): Promise<void>;
1337
- clearProduct(): Promise<void>;
1338
1333
  getWorkflow(): Workflow | undefined;
1339
1334
  setWorkflow(workflow: Workflow): Promise<void>;
1340
1335
  attachAddress(streetAddress?: string, apartment?: string, city?: string, country?: string, state?: string, postCode?: string): Promise<void>;
@@ -2953,6 +2948,7 @@ interface Step<T extends AnyStepData = AnyStepData> {
2953
2948
  conditions?: Condition[];
2954
2949
  data: T;
2955
2950
  globalPropertyAspectConfigurations?: GlobalPropertyAspectConfiguration[];
2951
+ conversionConfigurationFieldLinks?: ConversionConfigurationLink[];
2956
2952
  helpText?: string;
2957
2953
  mandatory?: boolean;
2958
2954
  relevantPanelName?: string;
@@ -2968,6 +2964,10 @@ interface GlobalPropertyAspectConfiguration {
2968
2964
  aspectName?: string;
2969
2965
  globalPropertyConfigurationId?: string;
2970
2966
  }
2967
+ interface ConversionConfigurationLink {
2968
+ identifier?: string;
2969
+ conversionConfigurationId?: string;
2970
+ }
2971
2971
  interface GlobalPropertyConfiguration {
2972
2972
  id: string;
2973
2973
  aspects: GlobalPropertyConfigurationAspect[];