UNPKG

n8n

Version:

n8n Workflow Automation Tool

11 lines (10 loc) 359 B
import { WithTimestampsAndStringId } from '@n8n/db'; export type ObservationScopeKind = 'thread' | 'resource' | 'agent'; export declare class AgentObservationEntity extends WithTimestampsAndStringId { scopeKind: ObservationScopeKind; scopeId: string; kind: string; payload: unknown; durationMs: number | null; schemaVersion: number; }