Add possibility to retry with currently saved workflow

This commit is contained in:
Jan Oberhauser
2019-12-12 18:12:38 -06:00
parent b389854046
commit 359dc3b485
4 changed files with 42 additions and 8 deletions

View File

@@ -142,7 +142,7 @@ export interface IRestApi {
getCredentialTypes(): Promise<ICredentialType[]>;
getExecution(id: string): Promise<IExecutionResponse>;
deleteExecutions(sendData: IExecutionDeleteFilter): Promise<void>;
retryExecution(id: string): Promise<boolean>;
retryExecution(id: string, loadWorkflow?: boolean): Promise<boolean>;
getTimezones(): Promise<IDataObject>;
}