feat: maintenance flow UX redesign — batch hub, context strip, run history upgrades #89

Merged
chihlasm merged 39 commits from feat/maintenance-ux-redesign into main 2026-02-26 04:17:29 +00:00
Showing only changes of commit bb8d2fbcb2 - Show all commits

View File

@@ -123,6 +123,18 @@ export interface ProceduralStep {
reference_url?: string
}
export interface CustomProceduralStep {
id: string
type: 'procedure_step'
title: string
description?: string
content_type: 'action'
commands?: CommandBlock[]
isCustom: true
}
export type RuntimeStep = ProceduralStep | CustomProceduralStep
export interface ProceduralTreeStructure {
steps: ProceduralStep[]
}