feat: remove legacy ImportManager, standardize getStats() API

- Removed ImportManager class and exports (use brain.import() instead)
- Fixed all documentation: getStatistics() → getStats()
- Updated 41 files across codebase for consistency
- Removed ImportManager section from API docs
- Added v3.30.0 migration guide to CHANGELOG

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
David Snelling 2025-10-09 11:40:31 -07:00
parent 68c989e4f7
commit 58daf09403
31 changed files with 87 additions and 481 deletions

View file

@ -145,7 +145,7 @@ async function runValidation() {
// Test 11: Statistics and monitoring
const statsStart = performance.now()
const stats = await brain.getStatistics()
const stats = brain.getStats()
const statsTime = Math.round(performance.now() - statsStart)
const hasStats = stats && typeof stats.nounCount === 'number' && stats.nounCount > 0
addResult('Statistics Collection', hasStats, `${stats.nounCount} nouns tracked`, statsTime)
@ -184,9 +184,9 @@ async function runValidation() {
// Test 14: Data persistence and retrieval
const integrityStart = performance.now()
const beforeCount = (await brain.getStatistics()).nounCount
const beforeCount = (brain.getStats()).nounCount
const testId = await brain.addNoun('Integrity test data', { critical: true })
const afterCount = (await brain.getStatistics()).nounCount
const afterCount = (brain.getStats()).nounCount
const retrieved2 = await brain.getNoun(testId)
const integrityTime = Math.round(performance.now() - integrityStart)
const isIntact = afterCount > beforeCount && retrieved2 && retrieved2.metadata && retrieved2.metadata.critical === true