@playlive/tiltify-core
    Preparing search index...

    Interface TiltifyLibErrorOptions

    Structured context that can be attached when constructing a TiltifyLibError. Every field is optional; provide whatever is known at the throw site.

    interface TiltifyLibErrorOptions {
        cause?: unknown;
        code?: TiltifyErrorCode;
        cursor?: string | null;
        data?: unknown;
        endpoint?: string;
        fields?: string[];
        max?: number;
        status?: number;
    }
    Index
    cause?: unknown

    Underlying error being wrapped (chained via the native Error.cause).

    Error category. Defaults to "UNKNOWN".

    cursor?: string | null

    Pagination cursor in effect when the error occurred.

    data?: unknown

    Raw response body, if available. Useful for downstream debugging.

    endpoint?: string

    Fully-qualified URL or endpoint path that produced the error.

    fields?: string[]

    Field-level validation errors returned by the API.

    max?: number

    Page size in effect when the error occurred.

    status?: number

    HTTP status code, if the error originated from a response.