UNPKG

n8n

Version:

n8n Workflow Automation Tool

9 lines (8 loc) 455 B
import type { AgentIntegrationConfig, AgentJsonConfig } from '@n8n/api-types'; import type { Agent } from '../entities/agent.entity'; export declare function composeJsonConfig(agent: Agent): AgentJsonConfig | null; export declare function decomposeJsonConfig(config: AgentJsonConfig): { schemaConfig: Omit<AgentJsonConfig, 'integrations'>; integrations: AgentIntegrationConfig[]; }; export declare function sanitizeToolName(name: string): string;