UNPKG

n8n

Version:

n8n Workflow Automation Tool

10 lines (9 loc) 308 B
import { WithTimestamps } from '@n8n/db'; export type ObservationTaskKind = 'observer' | 'reflector'; export declare class AgentObservationLockEntity extends WithTimestamps { agentId: string; observationScopeId: string; taskKind: ObservationTaskKind; holderId: string; heldUntil: Date; }