@spiffcommerce/core 0.10.161 → 0.10.163
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/main.js +10 -10
- package/dist/module.js +10 -10
- package/dist/types.d.ts +1 -3
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -596,7 +596,6 @@ export interface WorkflowManager {
|
|
|
596
596
|
*/
|
|
597
597
|
updateStateWithServerImmediate: (getReducerState: () => _CommandState1) => Promise<void>;
|
|
598
598
|
updateStorage: (stepName: string, update: _StepStorage1) => Promise<void>;
|
|
599
|
-
traversableScenes(): Promise<WorkflowScene[]>;
|
|
600
599
|
}
|
|
601
600
|
interface StepService<T extends _AnyStepData1> {
|
|
602
601
|
/**
|
|
@@ -1471,7 +1470,7 @@ export interface WorkflowExperience {
|
|
|
1471
1470
|
/**
|
|
1472
1471
|
* Returns the bulk step, undefined if not found.
|
|
1473
1472
|
*/
|
|
1474
|
-
|
|
1473
|
+
getBulkStep(): StepHandle<_BulkStepData1> | undefined;
|
|
1475
1474
|
/**
|
|
1476
1475
|
* Returns the step matching a given name, undefined if not found.
|
|
1477
1476
|
* @param name The name the step must match.
|
|
@@ -1652,7 +1651,6 @@ export class MockWorkflowManager implements WorkflowManager {
|
|
|
1652
1651
|
toggleDesignConfirmed(): void;
|
|
1653
1652
|
updateMetadata(_stepName: string, _update: any): void;
|
|
1654
1653
|
updateStorage(_stepName: string, _update: _StepStorage1): Promise<void>;
|
|
1655
|
-
traversableScenes(): Promise<WorkflowScene[]>;
|
|
1656
1654
|
}
|
|
1657
1655
|
export enum FrameStep {
|
|
1658
1656
|
SelectFrame = "SelectFrame",
|