You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
549 B
TypeScript
28 lines
549 B
TypeScript
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;
|
|
};
|