Inttegro TypeScript SDK - v8.2.0
    Preparing search index...

    Interface ErrorReport

    A privacy-safe description of a failed Inttegro SDK operation.

    interface ErrorReport {
        apiError?: { code?: string; fixCode?: string; type?: string };
        category: string;
        eventId: string;
        exceptionType: string;
        fingerprint: string;
        http: {
            durationMs: number;
            method: string;
            requestId?: string;
            route?: string;
            serverAddress: string;
            statusCode?: number;
        };
        occurredAt: string;
        operation: string;
        schemaVersion: 1;
        sdk: { language: "typescript"; version: string };
        severity: "error";
        trace?: { spanId: string; traceId: string };
    }
    Index
    apiError?: { code?: string; fixCode?: string; type?: string }
    category: string
    eventId: string
    exceptionType: string
    fingerprint: string
    http: {
        durationMs: number;
        method: string;
        requestId?: string;
        route?: string;
        serverAddress: string;
        statusCode?: number;
    }
    occurredAt: string
    operation: string
    schemaVersion: 1
    sdk: { language: "typescript"; version: string }
    severity: "error"
    trace?: { spanId: string; traceId: string }