Files
klz-cables.com/.pnpm-store/v10/files/64/68988112ec7dd398c069f98608b4293384fe8d141de8d097d821446d91b6ddc6c12ef32b76790e3e0a19efd4413f13a5f58940d234b8dfaf156966d34b1f1f
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

25 lines
974 B
Plaintext

import type { Integration } from '@sentry/core';
export interface NativeNodeFetchIntegrationOptions {
/**
* Whether breadcrumbs should be recorded for requests.
*
* @default `true`
*/
breadcrumbs?: boolean;
/**
* Do not capture breadcrumbs or inject headers for outgoing fetch requests to URLs
* where the given callback returns `true`.
*
* @param url Contains the entire URL, including query string (if any), protocol, host, etc. of the outgoing request.
*/
ignoreOutgoingRequests?: (url: string) => boolean;
}
/**
* This integration handles outgoing fetch (undici) requests in light mode (without OpenTelemetry).
* It propagates trace headers and creates breadcrumbs for responses.
*/
export declare const nativeNodeFetchIntegration: (options?: NativeNodeFetchIntegrationOptions) => Integration & {
name: "NodeFetch";
setupOnce: () => void;
};
//# sourceMappingURL=nativeNodeFetchIntegration.d.ts.map