fix(automation): add stopAutomation to IAutomationEngine interface and fix interval cleanup

This commit is contained in:
2025-11-22 01:50:37 +01:00
parent 3a60ffae91
commit bd198a78ad
2 changed files with 46 additions and 9 deletions

View File

@@ -9,4 +9,5 @@ export interface ValidationResult {
export interface IAutomationEngine {
validateConfiguration(config: HostedSessionConfig): Promise<ValidationResult>;
executeStep(stepId: StepId, config: HostedSessionConfig): Promise<void>;
stopAutomation(): void;
}