Type Alias WorkflowCurrentState

WorkflowCurrentState: {
    currentStep: string;
    executionSequence: string[];
    metadata: {
        general: any;
        [stepId: string]: {
            inputs?: Record<string, any>;
            [key: string]: any;
        };
    };
}