AutomateFixes (#4281)

can edit automations
drop down styles
drop down bug fixes

---------

Co-authored-by: Connor Yoh <[email protected]>
This commit is contained in:
ConnorYoh
2025-08-26 09:44:30 +01:00
committed by GitHub
co-authored by Connor Yoh
parent 42d7664e25
commit fe9d2367d5
10 changed files with 264 additions and 174 deletions
+3 -1
View File
@@ -24,8 +24,10 @@ export interface AutomationTool {
parameters?: Record<string, any>;
}
export type AutomationStep = typeof import('../constants/automation').AUTOMATION_STEPS[keyof typeof import('../constants/automation').AUTOMATION_STEPS];
export interface AutomationStepData {
step: 'selection' | 'creation' | 'run';
step: AutomationStep;
mode?: AutomationMode;
automation?: AutomationConfig;
}