export interface SearchTemporalFact { /** Chunk that provides evidence for this relation. */ chunkId?: string; /** * DatePrecision is the resolution of the resolved dates: "day", "month", * "year" (coarser-than-day dates are floored to bracket starts). */ datePrecision?: string; eventEnd?: number; eventStart?: number; /** * EvidencePhrase is the verbatim source phrase the dates were resolved * from (e.g. "today", "two weeks ago"). */ evidencePhrase?: string; factType?: string; object?: string; relation?: string; /** Unique identifier for this relationship instance. */ relationshipId?: string; sourceId?: string; /** Current lifecycle or processing state. */ status?: string; subject?: string; }