17 lines
436 B
TypeScript
17 lines
436 B
TypeScript
|
|
/**
|
||
|
|
* 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';
|