UNPKG

n8n

Version:

n8n Workflow Automation Tool

17 lines (16 loc) 515 B
import { Project, WithTimestampsAndStringId } from '@n8n/db'; import { type Relation } from '@n8n/typeorm'; import { Agent } from './agent.entity'; export declare class AgentChatAttachment extends WithTimestampsAndStringId { agent: Relation<Agent> | null; agentId: string | null; project: Relation<Project>; projectId: string; threadId: string; resourceId: string | null; binaryDataId: string; fileName: string; mimeType: string; fileSizeBytes: number; source: string; }