feat: compute step parameters with prior steps

This commit is contained in:
Ali BARIN
2022-02-28 22:01:29 +01:00
parent cdc6168ff4
commit a506d1985f
8 changed files with 78 additions and 42 deletions

View File

@@ -2,14 +2,14 @@ import Base from './base';
import Flow from './flow';
import Connection from './connection';
import ExecutionStep from './execution-step';
import StepEnumType from '../types/step-enum-type';
import { StepType } from '../types/step';
class Step extends Base {
id!: number;
flowId!: string;
key: string;
appKey: string;
type!: StepEnumType;
type!: StepType;
connectionId?: string;
status: string;
position: number;