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:
22
ts/domain/bulk/index.ts
Normal file
22
ts/domain/bulk/index.ts
Normal file
@@ -0,0 +1,22 @@
|
||||
/**
|
||||
* Bulk Indexing Module
|
||||
*
|
||||
* High-throughput document ingestion with adaptive batching
|
||||
*/
|
||||
|
||||
// Main classes
|
||||
export { BulkIndexer, createBulkIndexer } from './bulk-indexer.js';
|
||||
|
||||
// Types
|
||||
export type {
|
||||
BulkOperationType,
|
||||
BulkOperation,
|
||||
BulkOperationResult,
|
||||
BulkBatchResult,
|
||||
BulkProgressCallback,
|
||||
BulkProgress,
|
||||
BatchingStrategy,
|
||||
BulkIndexerConfig,
|
||||
BulkIndexerStats,
|
||||
BackpressureState,
|
||||
} from './types.js';
|
||||
Reference in New Issue
Block a user