linXiv frontend (TS/JS)
    Preparing search index...

    Type Alias NoteDetails

    type NoteDetails = {
        content: string;
        created_at: string | null;
        id: number;
        paper_id_fk: number | null;
        project_id: number | null;
        source_fk: number;
        title: string;
        updated_at: string | null;
        uuid: string;
    }
    Index
    content: string
    created_at: string | null
    id: number

    NOTE_SK is the primary key; a read row always has one.

    paper_id_fk: number | null
    project_id: number | null
    source_fk: number
    title: string
    updated_at: string | null
    uuid: string

    Stable identity (uuid v4) surviving export/import + share.