/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ export type PatchedClawMentorConfig = { readonly id?: number; readonly mentor?: string; readonly mentor_name?: string; readonly mentor_slug?: string; server?: number; readonly server_name?: string; readonly server_status?: string; readonly server_last_health_status?: string | null; readonly server_last_health_check?: string | null; agent_config?: any; /** * Worker-side agent id. System-minted from the mentor's unique_id on creation, immutable and read-only. Legacy configs may carry a hand-entered value such as 'main'. */ readonly agent_id?: string; enabled?: boolean; /** * When True, saving the mentor's AgentConfig triggers an async config push to the worker. */ auto_push?: boolean; readonly last_config_push?: string | null; readonly last_config_push_status?: string | null; /** * Warnings from the last config push (baseline verification and per-agent skill upload). */ readonly last_push_warnings?: any; };