/** * W-Dimension: ADR model * Represents an Architecture Decision Record from docs/adr/*.md */ export interface Adr { id: string; plugin_id: string; adr_number: string; title: string; file_name: string; content_markdown: string; content_hash: string; deleted_at: Date | null; created_at: Date; updated_at: Date; } /** * ADR file mapping * Links ADRs to source files they reference */ export interface AdrFileMapping { id: string; adr_id: string; file_path: string; } //# sourceMappingURL=adr.d.ts.map