@adcp/sdk API Reference - v7.9.0
    Preparing search index...

    Interface SessionKeyContext<TAccount>

    Request metadata passed to resolveSessionKey so the hook can derive a key from any field.

    interface SessionKeyContext<TAccount = unknown> {
        toolName: keyof AdcpToolMap;
        params: Record<string, unknown>;
        account?: TAccount;
        agent?: BuyerAgent;
    }

    Type Parameters

    • TAccount = unknown
    Index

    Properties

    toolName: keyof AdcpToolMap
    params: Record<string, unknown>
    account?: TAccount
    agent?: BuyerAgent

    Resolved buyer agent (Phase 1 of #1269), when agentRegistry is configured.