/** * PostgreSQL Schema Management Tools * * Schema DDL operations: schemas, sequences, views, functions, triggers. * 12 tools total. */ import type { PostgresAdapter } from "../../postgres-adapter.js"; import type { ToolDefinition } from "../../../../types/index.js"; import { createListSchemasTool, createCreateSchemaTool, createDropSchemaTool, createListSequencesTool, createCreateSequenceTool, createDropSequenceTool } from "./objects.js"; import { createListViewsTool, createCreateViewTool, createDropViewTool } from "./views.js"; import { createListFunctionsTool, createListTriggersTool, createListConstraintsTool } from "./catalog.js"; /** * Get all schema management tools */ export declare function getSchemaTools(adapter: PostgresAdapter): ToolDefinition[]; export { createListSchemasTool, createCreateSchemaTool, createDropSchemaTool, createListSequencesTool, createCreateSequenceTool, createDropSequenceTool, createListViewsTool, createCreateViewTool, createDropViewTool, createListFunctionsTool, createListTriggersTool, createListConstraintsTool, }; //# sourceMappingURL=index.d.ts.map