Circle V2 API Docs
    Preparing search index...

    Type Alias ChartTextInput

    The columns of a patient_charts row needed to render its text.

    Structural rather than one of the generated row types because callers hold different ones: the v2 agents pass the Kysely TableRow<"patient_charts"> (branded ids), legacy chart-review passes the Supabase-generated Row (id: number, Json columns). Both satisfy this.

    type ChartTextInput = {
        circle_metadata: unknown;
        external_document_created_at: string | null;
        external_document_type: string | null;
        file_name: string | null;
        file_type: string | null;
        raw_document: unknown;
    }
    Index

    Properties

    circle_metadata: unknown
    external_document_created_at: string | null
    external_document_type: string | null
    file_name: string | null
    file_type: string | null
    raw_document: unknown