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