genshin-manager
    Preparing search index...

    Interface ErrorContext

    Rich error context interface for debugging and troubleshooting

    interface ErrorContext {
        actualValue?: unknown;
        audioFile?: string;
        dataType?: string;
        duration?: number;
        environmentInfo?: Record<string, unknown>;
        expectedValue?: unknown;
        filePath?: string;
        imageFile?: string;
        jsonFile?: string;
        metadata?: Record<string, unknown>;
        operation?: string;
        propertyKey?: string;
        requestMethod?: string;
        responseHeaders?: Record<string, string>;
        sourceData?: string;
        stackTrace?: string;
        statusCode?: number;
        targetData?: string;
        timestamp?: Date;
        url?: string;
        userAgent?: string;
        validationPath?: string;
    }
    Index

    Properties

    actualValue?: unknown

    Actual value that failed validation

    audioFile?: string

    Audio file associated with the error

    dataType?: string

    Type of data being processed

    duration?: number

    Duration of operation in milliseconds

    environmentInfo?: Record<string, unknown>

    Environment information

    expectedValue?: unknown

    Expected value for validation

    filePath?: string

    File path where the error occurred

    imageFile?: string

    Image file associated with the error

    jsonFile?: string

    JSON file associated with the error

    metadata?: Record<string, unknown>

    Additional metadata for the error

    operation?: string

    Operation being performed when error occurred

    propertyKey?: string

    Property or field name that failed validation

    requestMethod?: string

    HTTP request method used

    responseHeaders?: Record<string, string>

    HTTP response headers

    sourceData?: string

    Source data that caused the error

    stackTrace?: string

    Stack trace at error location

    statusCode?: number

    HTTP status code received

    targetData?: string

    Target data expected

    timestamp?: Date

    Timestamp when error occurred

    url?: string

    URL associated with the error

    userAgent?: string

    User agent string

    validationPath?: string

    Path to the property that failed validation