Files
klz-cables.com/.pnpm-store/v10/files/a2/fe5cc6e1fee9fb0e7c39014a78a458a2ee30baf44769af3dd75fb95d949309854d3e80c36eaeab99ba8fb2ee0a99595cb4afe81fc1f822f413d4b6842226bd
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

29 lines
1.1 KiB
Plaintext

import { debug } from '@sentry/core';
import { 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