n8n
Version:
n8n Workflow Automation Tool
13 lines (12 loc) • 380 B
TypeScript
import { WithTimestamps } from '@n8n/db';
import { type Relation } from '@n8n/typeorm';
import { AgentHistory } from './agent-history.entity';
export declare class AgentTaskSnapshot extends WithTimestamps {
versionId: string;
version: Relation<AgentHistory>;
taskId: string;
enabled: boolean;
name: string;
objective: string;
cronExpression: string;
}