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

28 lines
739 B
Plaintext

import { defineIntegration } from '@sentry/core';
import { generateInstrumentOnce } from '../../otel/instrument.js';
import { SentryNodeFetchInstrumentation } from './SentryNodeFetchInstrumentation.js';
const INTEGRATION_NAME = 'NodeFetch';
const instrumentSentryNodeFetch = generateInstrumentOnce(
`${INTEGRATION_NAME}.sentry`,
SentryNodeFetchInstrumentation,
(options) => {
return options;
},
);
const _nativeNodeFetchIntegration = ((options = {}) => {
return {
name: 'NodeFetch',
setupOnce() {
instrumentSentryNodeFetch(options);
},
};
}) ;
const nativeNodeFetchIntegration = defineIntegration(_nativeNodeFetchIntegration);
export { nativeNodeFetchIntegration };
//# sourceMappingURL=index.js.map