Remove unused batch methods, dynamic stmt cache, and intent field

- Remove getNodesByIds, getNodesByKinds (zero callers)
- Remove getFileHashMap, getFileSyncMap (zero callers)
- Remove getDynamicStmt cache (only used by removed batch methods)
- Revert getStaleFiles to simple implementation (zero callers, no need to optimize)
- Remove intent field from SearchOptions (never read in search logic)
This commit is contained in:
Colby McHenry
2026-02-10 16:34:13 -06:00
parent 53beb1bd2f
commit 1c023c41cc
2 changed files with 7 additions and 142 deletions
-3
View File
@@ -336,9 +336,6 @@ export interface SearchOptions {
/** Whether search is case-sensitive */
caseSensitive?: boolean;
/** Search intent for biasing results */
intent?: 'api' | 'general';
}
/**