import type { FileTypeEnum } from './FileTypeEnum'; export type AgentSkillResource = { readonly id: number; skill: number; file_type: FileTypeEnum; filename: string; /** * Text content for script/reference resources. */ content?: string; /** * Binary file for asset resources. */ file?: string | null; readonly created_at: string; readonly updated_at: string; };