/** Shared types for the temporal narrative pipeline. */ export type NarrativeResolution = "day" | "week" | "month" | "quarter" | "half_year"; export interface TemporalNarrative { id: number; threadId: number; resolution: NarrativeResolution; periodStart: string; periodEnd: string; narrative: string; sourceEpisodeCount: number; sourceNoteCount: number; model: string | null; createdAt: string; } //# sourceMappingURL=narrative-types.d.ts.map