/** * postgres-mcp - Introspection Input Schemas * * Input validation schemas for agent-optimized introspection and migration tools. */ import { z } from "zod"; /** * pg_dependency_graph input */ export declare const DependencyGraphSchemaBase: z.ZodObject<{ schema: z.ZodOptional; includeRowCounts: z.ZodOptional; excludeExtensionSchemas: z.ZodOptional; compact: z.ZodOptional; limit: z.ZodOptional>; }, z.core.$strip>; export declare const DependencyGraphSchema: z.ZodDefault; includeRowCounts: z.ZodOptional; excludeExtensionSchemas: z.ZodOptional; compact: z.ZodOptional; limit: z.ZodPreprocess>>; }, z.core.$strip>>; /** * pg_topological_sort input */ export declare const TopologicalSortSchemaBase: z.ZodObject<{ schema: z.ZodOptional; direction: z.ZodOptional; excludeExtensionSchemas: z.ZodOptional; }, z.core.$strip>; export declare const TopologicalSortSchema: z.ZodDefault; direction: z.ZodOptional>; excludeExtensionSchemas: z.ZodOptional; }, z.core.$strip>>; /** * pg_cascade_simulator input */ export declare const CascadeSimulatorSchemaBase: z.ZodObject<{ table: z.ZodOptional; schema: z.ZodOptional; operation: z.ZodOptional; }, z.core.$strip>; export declare const CascadeSimulatorSchema: z.ZodPreprocess; operation: z.ZodOptional>; }, z.core.$strip>>; /** * pg_schema_snapshot input */ export declare const SchemaSnapshotSchemaBase: z.ZodObject<{ schema: z.ZodOptional; includeSystem: z.ZodOptional; excludeExtensionSchemas: z.ZodOptional; sections: z.ZodOptional>; compact: z.ZodOptional; limit: z.ZodOptional>; }, z.core.$strip>; export declare const SchemaSnapshotSchema: z.ZodDefault; includeSystem: z.ZodOptional; excludeExtensionSchemas: z.ZodOptional; sections: z.ZodOptional>>; compact: z.ZodDefault>; limit: z.ZodPreprocess>>; }, z.core.$strip>>; /** * pg_constraint_analysis input */ export declare const ConstraintAnalysisSchemaBase: z.ZodObject<{ schema: z.ZodOptional; table: z.ZodOptional; checks: z.ZodOptional>; excludeExtensionSchemas: z.ZodOptional; }, z.core.$strip>; export declare const ConstraintAnalysisSchema: z.ZodPreprocess; table: z.ZodOptional; checks: z.ZodOptional>>; excludeExtensionSchemas: z.ZodOptional; }, z.core.$strip>>>; /** * pg_migration_risks input */ export declare const MigrationRisksSchemaBase: z.ZodObject<{ statements: z.ZodOptional>; statement: z.ZodOptional; sql: z.ZodOptional; schema: z.ZodOptional; }, z.core.$strip>; export declare const MigrationRisksSchema: z.ZodPreprocess>>; statement: z.ZodOptional; sql: z.ZodOptional; schema: z.ZodOptional; }, z.core.$strip>>; //# sourceMappingURL=input.d.ts.map