Rename CustomExecution2 to CustomExecution

Part of #80375
This commit is contained in:
Alex Ross
2019-10-11 14:43:23 +02:00
parent 6251b1c226
commit dc4b1c231c
11 changed files with 74 additions and 74 deletions

View File

@@ -66,8 +66,8 @@ export interface ShellExecutionDTO {
options?: ShellExecutionOptionsDTO;
}
export interface CustomExecution2DTO {
customExecution: 'customExecution2';
export interface CustomExecutionDTO {
customExecution: 'customExecution';
}
export interface TaskSourceDTO {
@@ -84,7 +84,7 @@ export interface TaskHandleDTO {
export interface TaskDTO {
_id: string;
name?: string;
execution: ProcessExecutionDTO | ShellExecutionDTO | CustomExecution2DTO | undefined;
execution: ProcessExecutionDTO | ShellExecutionDTO | CustomExecutionDTO | undefined;
definition: TaskDefinitionDTO;
isBackground?: boolean;
source: TaskSourceDTO;