/** * Z-Dimension: Dependency model * Represents a module dependency from docs/system/DEPENDENCY_GRAPH.md */ export interface Dependency { id: string; plugin_id: string; from_module: string; to_module: string; dependency_type: 'import' | 'export' | 'require'; symbols_json: string | null; content_hash: string; is_type_only: boolean; is_reexport: boolean; created_at: Date; updated_at: Date; } /** * Dependency graph cache * Stores the parsed Mermaid graph */ export interface DependencyGraphCache { id: string; plugin_id: string; mermaid_graph: string; generated_at: Date; } /** * Dependency symbol evidence * Links Z-Dimension dependencies to Y-Dimension symbol dependencies */ export interface DependencySymbolEvidence { id: string; dependency_id: string; symbol_dependency_id: string; } //# sourceMappingURL=dependency.d.ts.map