UNPKG

n8n

Version:

n8n Workflow Automation Tool

17 lines (16 loc) 838 B
import type { User } from '@n8n/db'; import z from 'zod'; import type { ToolDefinition } from '../mcp.types'; import type { CollaborationService } from '../../../collaboration/collaboration.service'; import type { Telemetry } from '../../../telemetry'; import type { WorkflowFinderService } from '../../../workflows/workflow-finder.service'; import type { WorkflowService } from '../../../workflows/workflow.service'; declare const inputSchema: z.ZodObject<{ workflowId: z.ZodString; }, "strip", z.ZodTypeAny, { workflowId: string; }, { workflowId: string; }>; export declare const createUnpublishWorkflowTool: (user: User, workflowFinderService: WorkflowFinderService, workflowService: WorkflowService, telemetry: Telemetry, collaborationService: CollaborationService) => ToolDefinition<typeof inputSchema.shape>; export {};