Files
klz-cables.com/.pnpm-store/v10/files/4e/e0ea92b6b6b28ab8b8f9598c37ec01f7d45830b3f3fba9338807ed925a79b68261e4c655b3844fe1b59226a3a6d2b361069d316495d8b6b8a81b5d1581ff50
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

23 lines
1.2 KiB
Plaintext

import type { Breadcrumb, FetchBreadcrumbData } from '@sentry/core';
import type { FetchHint } from '@sentry-internal/browser-utils';
import type { ReplayContainer, ReplayNetworkOptions, ReplayNetworkRequestOrResponse } from '../../types';
/**
* Capture a fetch breadcrumb to a replay.
* This adds additional data (where appropriate).
*/
export declare function captureFetchBreadcrumbToReplay(breadcrumb: Breadcrumb & {
data: FetchBreadcrumbData;
}, hint: Partial<FetchHint>, options: ReplayNetworkOptions & {
replay: ReplayContainer;
}): Promise<void>;
/**
* Enrich a breadcrumb with additional data.
* This has to be sync & mutate the given breadcrumb,
* as the breadcrumb is afterwards consumed by other handlers.
*/
export declare function enrichFetchBreadcrumb(breadcrumb: Breadcrumb & {
data: FetchBreadcrumbData;
}, hint: Partial<FetchHint>): void;
/** Exported only for tests. */
export declare function _getResponseInfo(captureDetails: boolean, { networkCaptureBodies, networkResponseHeaders, }: Pick<ReplayNetworkOptions, 'networkCaptureBodies' | 'networkResponseHeaders'>, response: Response | undefined, responseBodySize?: number): Promise<ReplayNetworkRequestOrResponse | undefined>;
//# sourceMappingURL=fetchUtils.d.ts.map