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

    Interface IdempotencyCacheEntry

    A stored cache entry for a successfully-executed mutating request.

    interface IdempotencyCacheEntry {
        payloadHash: string;
        response: unknown;
        expiresAt: number;
    }
    Index

    Properties

    payloadHash: string

    SHA-256 of the RFC 8785 JCS form of the request payload (excluding exclusion list).

    response: unknown

    The response payload to replay. Does NOT include the envelope — envelope fields vary per response.

    expiresAt: number

    Unix epoch seconds when this entry expires.