@cfxlabsinc/b2b-services
    Preparing search index...

    A client-fetchable entity source (heading + paged fetch + its own react-query). Used by the global command palette, which owns per-group fetching. The list-page hero instead composes self-fetching server-component groups into the dropdown.

    type CommandSearchSource = {
        fetch: (query: string) => Promise<CommandSearchRow[]>;
        filterKey?: string;
        heading: string;
        onSelect?: (row: CommandSearchRow) => void;
        queryKey: ReadonlyArray<unknown>;
    }
    Index
    fetch: (query: string) => Promise<CommandSearchRow[]>
    filterKey?: string
    heading: string
    onSelect?: (row: CommandSearchRow) => void
    queryKey: ReadonlyArray<unknown>