n8n
Version:
n8n Workflow Automation Tool
5 lines (4 loc) • 310 B
TypeScript
import { type AgentIntegration } from '@n8n/api-types';
import type { Logger } from '@n8n/backend-common';
import type { Agent } from '../entities/agent.entity';
export declare function syncAgentIntegrations(agent: Agent, previous: AgentIntegration[], next: AgentIntegration[], logger: Logger): Promise<void>;