import type { CommittedMessage } from "../types"; import type { Users } from "./generated/public/Users"; export type Conversation = { id: string; title: string; userId: string; createdAt?: string; }; export type Fact = { id: string; userId: string; sourceMessageId: string; content: string; createdAt?: string; }; export type FactTrigger = { id: string; sourceFactId: string; content: string; priorityMultiplier: number; priorityMultiplierReason: string | null; scopeConversationId: string; createdAt?: string; };