fix(editor): Recover from unsaved finished execution (#5121)

* 🐛 Recover from unsaved fixed execution

* 🔥 Remove logging

* ✏️ Use i18n
This commit is contained in:
Iván Ovejero
2023-01-11 10:52:32 +01:00
committed by GitHub
parent 819c4adb3c
commit af55ecd64b
4 changed files with 33 additions and 2 deletions

View File

@@ -544,6 +544,11 @@ export interface IPushDataExecutionFinished {
retryOf?: string;
}
export interface IPushDataUnsavedExecutionFinished {
executionId: string;
data: { finished: true; stoppedAt: Date };
}
export interface IPushDataExecutionStarted {
executionId: string;
}