Agent Client Protocol - v1.2.1
    Preparing search index...

    Type Alias AnyRequest

    Raw JSON-RPC request message.

    type AnyRequest = {
        jsonrpc: "2.0";
        id: string | number | null;
        method: string;
        params?: unknown;
    }
    Index
    jsonrpc: "2.0"

    JSON-RPC protocol version.

    id: string | number | null

    Request identifier echoed by the response.

    method: string

    Method name to invoke.

    params?: unknown

    Optional method params.