Start using next step ids (#11683)

- update workflow executor
- update next step ids on step creation/deletion
- use these in workflow run
- use these in variables
This commit is contained in:
Thomas Trompette
2025-04-29 16:29:25 +02:00
committed by GitHub
parent 19f46a0091
commit d8b2e1fb34
28 changed files with 325 additions and 105 deletions

View File

@ -21,4 +21,7 @@ export class WorkflowActionDTO {
@Field(() => Boolean)
valid: boolean;
@Field(() => [UUIDScalarType], { nullable: true })
nextStepIds?: string[];
}