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

16 lines
727 B
Plaintext

import { NextApiRequest } from 'next';
import { NextApiHandler } from '../types';
export type AugmentedNextApiRequest = NextApiRequest & {
__withSentry_applied__?: boolean;
};
/**
* Wrap the given API route handler with error nad performance monitoring.
*
* @param apiHandler The handler exported from the user's API page route file, which may or may not already be
* wrapped with `withSentry`
* @param parameterizedRoute The page's parameterized route.
* @returns The wrapped handler which will always return a Promise.
*/
export declare function wrapApiHandlerWithSentry(apiHandler: NextApiHandler, parameterizedRoute: string): NextApiHandler;
//# sourceMappingURL=wrapApiHandlerWithSentry.d.ts.map