/** * PostgreSQL Core Database Tools * * Fundamental database operations: read, write, table management, indexes, and convenience utilities. * 20 tools total. */ import type { PostgresAdapter } from "../../postgres-adapter.js"; import type { ToolDefinition } from "../../../../types/index.js"; export { ListObjectsSchema, ObjectDetailsSchema, ObjectDetailsSchemaBase, AnalyzeDbHealthSchema, AnalyzeWorkloadIndexesSchema, AnalyzeQueryIndexesSchema, AnalyzeQueryIndexesSchemaBase, } from "./schemas/index.js"; export { UpsertSchema, BatchInsertSchema } from "./convenience.js"; export { CountSchema, ExistsSchema, TruncateSchema } from "./utility.js"; /** * Get all core database tools */ export declare function getCoreTools(adapter: PostgresAdapter): ToolDefinition[]; //# sourceMappingURL=index.d.ts.map