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

    Type Alias TrashedProjectRow

    type TrashedProjectRow = {
        archived_at: string | null;
        color_hex: string | null;
        created_at: string | null;
        deleted_at: string | null;
        description: string;
        id: number;
        name: string;
        paper_count: number;
        project_tags: string[];
        share_id: string | null;
        source_ids: string[];
        status: Status;
        updated_at: string | null;
    }
    Index
    archived_at: string | null
    color_hex: string | null
    created_at: string | null
    deleted_at: string | null
    description: string
    id: number

    Never null: ProjectDetails.id is optional only because that struct doubles as the pre-insert shape; to_out refuses a row without an id.

    name: string
    paper_count: number
    project_tags: string[]
    share_id: string | null
    source_ids: string[]
    status: Status
    updated_at: string | null