feat(smartdb): add operation log APIs, point-in-time revert support, and a web-based debug dashboard

This commit is contained in:
2026-04-02 17:02:03 +00:00
parent 943302f789
commit d34b8673e1
27 changed files with 3536 additions and 64 deletions

12
ts_debugui/index.ts Normal file
View File

@@ -0,0 +1,12 @@
export { SmartdbDebugUi } from './smartdb-debugui.js';
// Re-export relevant types from the main module
export type {
IOpLogEntry,
IOpLogResult,
IOpLogStats,
IRevertResult,
ICollectionInfo,
IDocumentsResult,
ISmartDbMetrics,
} from '../ts/index.js';