n8n
Version:
n8n Workflow Automation Tool
14 lines (13 loc) • 591 B
TypeScript
import type { User } from '@n8n/db';
import z from 'zod';
import type { ToolDefinition } from '../../mcp.types';
import type { DataTableUserOperations } from '../../../../modules/data-table/data-table-proxy.service';
import type { Telemetry } from '../../../../telemetry';
declare const inputSchema: {
dataTableId: z.ZodString;
projectId: z.ZodString;
columnId: z.ZodString;
name: z.ZodString;
};
export declare const createRenameDataTableColumnTool: (user: User, dataTableOps: DataTableUserOperations, telemetry: Telemetry) => ToolDefinition<typeof inputSchema>;
export {};