Refactor SDK exports and remove unused functions; update search-server formatting functions to eliminate unused parameters; adjust SQLite migration function parameter; add TypeScript error documentation with detailed fixes and priority order.

This commit is contained in:
Alex Newman
2025-11-06 22:27:12 -05:00
parent 3bdf0b41bc
commit f45c782c07
5 changed files with 299 additions and 119 deletions
+1 -1
View File
@@ -151,7 +151,7 @@ export const migration002: Migration = {
console.log('✅ Added hierarchical memory fields to memories table');
},
down: (db: Database) => {
down: (_db: Database) => {
// Note: SQLite doesn't support DROP COLUMN in all versions
// In production, we'd need to recreate the table without these columns
// For now, we'll just log a warning