agentic-openapi-parser
    Preparing search index...

    Interface RetryInfo

    interface RetryInfo {
        attempt: number;
        delayMs: number;
        requestId: string;
        statusCode?: number;
        toolName: string;
    }

    Hierarchy (View Summary)

    Index
    attempt: number

    1-based: the attempt that just failed and is about to be retried.

    delayMs: number
    requestId: string

    Correlates this call's start/end/retry events — needed because executeMany can run the same toolName concurrently more than once.

    statusCode?: number
    toolName: string