Files
klz-cables.com/.pnpm-store/v10/files/39/021606a7849dcddc06504e38555319c5142e1b15b77a123ebfdf5d555983b6955d5d60fe0f6d5b5cc7e9d997454daea8184d1d3e785c5733e6b8afc94a6cb0
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

22 lines
758 B
Plaintext

interface RequestDataIncludeOptions {
cookies?: boolean;
data?: boolean;
headers?: boolean;
ip?: boolean;
query_string?: boolean;
url?: boolean;
}
type RequestDataIntegrationOptions = {
/**
* Controls what data is pulled from the request and added to the event.
*/
include?: RequestDataIncludeOptions;
};
/**
* Add data about a request to an event. Primarily for use in Node-based SDKs, but included in `@sentry/core`
* so it can be used in cross-platform SDKs like `@sentry/nextjs`.
*/
export declare const requestDataIntegration: (options?: RequestDataIntegrationOptions | undefined) => import("../types-hoist/integration").Integration;
export {};
//# sourceMappingURL=requestdata.d.ts.map