@spiffcommerce/core 33.6.0-beta.7a84179a-d020-5bb7-a38a-3ec41980ae98 → 33.7.0-beta.43c5510b-4565-5c5a-995f-48543b01eb45

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