(inputHash: string)
| 38 | } |
| 39 | |
| 40 | getExecutionIdByInputHash(inputHash: string): string | null { |
| 41 | return this.inputHashToExecutionId.get(inputHash) || null; |
| 42 | } |
| 43 | |
| 44 | update(id: string, message: string, type: "info" | "success" | "error" = "info"): void { |
| 45 | const execution = this.executions.get(id); |