@squawk
    Preparing search index...

    Interface ProcedureSearchQuery

    Options for a fuzzy text search query against procedure identifiers and names.

    interface ProcedureSearchQuery {
        approachType?: ApproachType;
        limit?: number;
        minScore?: number;
        text: string;
        type?: ProcedureType;
    }
    Index

    Properties

    approachType?: ApproachType

    Optional approach type filter (applied only when matching IAPs).

    limit?: number

    Maximum number of results to return. Defaults to 20.

    minScore?: number

    Minimum match score (exclusive) in [0, 1] a result must reach. Defaults to 0, which keeps every match. Raise it to drop weak fuzzy matches.

    text: string

    Search text, matched fuzzily and case-insensitively against each procedure's identifier and name.

    Optional procedure type to filter by.