BREAKING CHANGE(core): Refactor to v3: introduce modular core/domain architecture, plugin system, observability and strict TypeScript configuration; remove legacy classes
This commit is contained in:
16
ts/domain/documents/index.ts
Normal file
16
ts/domain/documents/index.ts
Normal file
@@ -0,0 +1,16 @@
|
||||
/**
|
||||
* Document management API
|
||||
*
|
||||
* This module provides:
|
||||
* - Fluent document manager with full CRUD operations
|
||||
* - Session-based batch operations with automatic cleanup
|
||||
* - Snapshot functionality for point-in-time analytics
|
||||
* - Async iteration over documents
|
||||
* - Optimistic locking support
|
||||
*
|
||||
* @packageDocumentation
|
||||
*/
|
||||
|
||||
export * from './types.js';
|
||||
export * from './document-session.js';
|
||||
export * from './document-manager.js';
|
||||
Reference in New Issue
Block a user