@spiffcommerce/core 31.4.0 → 32.0.1

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
@@ -2689,6 +2689,7 @@ interface WorkflowManager {
2689
2689
  setEditedStatus: (stepName: string, status: boolean) => void;
2690
2690
  setInformationResults: (results: InformationResult[]) => void;
2691
2691
  setMandatoryFulfilled: (stepName: string, status: boolean) => void;
2692
+ getMandatoryUnfulfilledSteps: () => string[];
2692
2693
  setSelectionsAndElements: (stepName: string, variants: VariantResource[], elements: RegionElement[], callback?: () => Promise<void>) => Promise<void>;
2693
2694
  setStepError: (stepName: string, field: string, error: string | undefined) => void;
2694
2695
  /** Gets any validation errors for a specific step, or `undefined` if there are none. */
@@ -2754,6 +2755,7 @@ interface WorkflowManager {
2754
2755
  getTemplatingContext(): {
2755
2756
  [key: string]: any;
2756
2757
  };
2758
+ traversableScenes(): Promise<WorkflowScene[]>;
2757
2759
  }
2758
2760
 
2759
2761
  declare enum AssetType {
@@ -5145,6 +5147,8 @@ declare class DigitalContentStepService implements StepService<DigitalContentSte
5145
5147
  declare const digitalContentStepService: DigitalContentStepService;
5146
5148
 
5147
5149
  declare class MockWorkflowManager implements WorkflowManager {
5150
+ traversableScenes(): Promise<WorkflowScene[]>;
5151
+ getMandatoryUnfulfilledSteps: () => string[];
5148
5152
  getTemplatingContext: () => Promise<{
5149
5153
  [key: string]: any;
5150
5154
  }>;