/** * Storage Services * * Re-exports all storage-related functionality for clean imports. */ export { opensearchStorage, storageAdmin, testCaseStorage, benchmarkStorage, experimentStorage, // Backwards compatibility alias runStorage, analyticsStorage, type StorageTestCase, type StorageBenchmark, type StorageBenchmarkRunConfig, type StorageExperiment, // Backwards compatibility alias type StorageExperimentRunConfig, // Backwards compatibility alias type StorageRun, type StorageRunAnnotation, type StorageAnalyticsRecord, } from './opensearchClient.js'; export { default } from './opensearchClient.js'; export { asyncTestCaseStorage } from './asyncTestCaseStorage.js'; export type { CreateTestCaseInput, UpdateTestCaseInput } from './asyncTestCaseStorage.js'; export { asyncBenchmarkStorage, asyncExperimentStorage } from './asyncBenchmarkStorage.js'; export { asyncRunStorage, asyncReportStorage } from './asyncRunStorage.js'; export type { SearchQuery, GetReportsOptions } from './asyncRunStorage.js'; export { migrateToOpenSearch, hasLocalStorageData, getLocalStorageCounts, clearLocalStorageData, exportLocalStorageData, type MigrationStats, type MigrationOptions, } from './migration.js'; //# sourceMappingURL=index.d.ts.map