Files
klz-cables.com/.pnpm-store/v10/files/32/66acc283b42bc757eac1719a9e99523b2fe82d54d8e73801a4890725b4401d6c76d8203aac5fa3c8b60c035e61d97a9e6d606311ca89af2a43289fa33b4500
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
1.1 KiB
Plaintext

import { debug } from '@sentry/core';
import type { NetworkMetaWarning } from './types';
export declare const ORIGINAL_REQ_BODY: unique symbol;
/**
* Serializes FormData.
*
* This is a bit simplified, but gives us a decent estimate.
* This converts e.g. { name: 'Anne Smith', age: 13 } to 'name=Anne+Smith&age=13'.
*
*/
export declare function serializeFormData(formData: FormData): string;
/** Get the string representation of a body. */
export declare function getBodyString(body: unknown, _debug?: typeof debug): [string | undefined, NetworkMetaWarning?];
/**
* Parses the fetch arguments to extract the request payload.
*
* In case of a Request object, this function attempts to retrieve the original body by looking for a Sentry-patched symbol.
*/
export declare function getFetchRequestArgBody(fetchArgs?: unknown[]): RequestInit['body'] | undefined;
/**
* Parses XMLHttpRequest response headers into a Record.
* Extracted from replay internals to be reusable.
*/
export declare function parseXhrResponseHeaders(xhr: XMLHttpRequest): Record<string, string>;
//# sourceMappingURL=networkUtils.d.ts.map