/** * Generated by orval v8.3.0 🍺 * Do not edit manually. * Mission Control API * OpenAPI spec version: 0.1.0 */ import type { BoardOnboardingLeadAgentDraftIdentityProfile } from "./boardOnboardingLeadAgentDraftIdentityProfile"; /** * Editable lead-agent draft configuration. */ export interface BoardOnboardingLeadAgentDraft { autonomy_level?: "ask_first" | "balanced" | "autonomous" | null; custom_instructions?: string | null; identity_profile?: BoardOnboardingLeadAgentDraftIdentityProfile; name?: string | null; output_format?: "bullets" | "mixed" | "narrative" | null; update_cadence?: "asap" | "hourly" | "daily" | "weekly" | null; verbosity?: "concise" | "balanced" | "detailed" | null; }