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
38 lines
3.6 KiB
Plaintext
38 lines
3.6 KiB
Plaintext
/**
|
|
* Common exports shared between the main entry point (index.ts) and the light entry point (light/index.ts).
|
|
*
|
|
* Add exports here that should be available in both entry points. Entry-point-specific exports
|
|
* (e.g., OTel-dependent ones for index.ts, or light-specific ones for light/index.ts) should
|
|
* remain in their respective index files.
|
|
*
|
|
* Deprecated exports should NOT go in this file — they belong in the entry point that still
|
|
* needs to ship them for backwards compatibility.
|
|
*/
|
|
import * as logger from './logs/exports';
|
|
export { nodeContextIntegration } from './integrations/context';
|
|
export { contextLinesIntegration } from './integrations/contextlines';
|
|
export { localVariablesIntegration } from './integrations/local-variables';
|
|
export { modulesIntegration } from './integrations/modules';
|
|
export { onUncaughtExceptionIntegration } from './integrations/onuncaughtexception';
|
|
export { onUnhandledRejectionIntegration } from './integrations/onunhandledrejection';
|
|
export { spotlightIntegration } from './integrations/spotlight';
|
|
export { systemErrorIntegration } from './integrations/systemError';
|
|
export { childProcessIntegration } from './integrations/childProcess';
|
|
export { createSentryWinstonTransport } from './integrations/winston';
|
|
export { pinoIntegration } from './integrations/pino';
|
|
export { getSentryRelease, defaultStackParser } from './sdk/api';
|
|
export { createGetModuleFromFilename } from './utils/module';
|
|
export { addOriginToSpan } from './utils/addOriginToSpan';
|
|
export { getRequestUrl } from './utils/getRequestUrl';
|
|
export { initializeEsmLoader } from './sdk/esmLoader';
|
|
export { isCjs } from './utils/detection';
|
|
export { createMissingInstrumentationContext } from './utils/createMissingInstrumentationContext';
|
|
export { makeNodeTransport, type NodeTransportOptions } from './transports';
|
|
export type { HTTPModuleRequestIncomingMessage } from './transports/http-module';
|
|
export { cron } from './cron';
|
|
export { NODE_VERSION } from './nodeVersion';
|
|
export type { NodeOptions } from './types';
|
|
export { addBreadcrumb, isInitialized, isEnabled, getGlobalScope, lastEventId, close, createTransport, flush, SDK_VERSION, getSpanStatusFromHttpCode, setHttpStatus, captureCheckIn, withMonitor, requestDataIntegration, functionToStringIntegration, eventFiltersIntegration, linkedErrorsIntegration, addEventProcessor, setContext, setExtra, setExtras, setTag, setTags, setUser, SEMANTIC_ATTRIBUTE_SENTRY_OP, SEMANTIC_ATTRIBUTE_SENTRY_ORIGIN, SEMANTIC_ATTRIBUTE_SENTRY_SOURCE, SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE, setCurrentClient, Scope, setMeasurement, getSpanDescendants, parameterize, getClient, getCurrentScope, getIsolationScope, getTraceData, getTraceMetaTags, continueTrace, withScope, withIsolationScope, captureException, captureEvent, captureMessage, captureFeedback, captureConsoleIntegration, dedupeIntegration, extraErrorDataIntegration, rewriteFramesIntegration, startSession, captureSession, endSession, addIntegration, startSpan, startSpanManual, startInactiveSpan, startNewTrace, suppressTracing, getActiveSpan, withActiveSpan, getRootSpan, spanToJSON, spanToTraceHeader, spanToBaggageHeader, trpcMiddleware, updateSpanName, supabaseIntegration, instrumentSupabaseClient, zodErrorsIntegration, profiler, consoleLoggingIntegration, createConsolaReporter, consoleIntegration, wrapMcpServerWithSentry, featureFlagsIntegration, metrics, envToBool, } from '@sentry/core';
|
|
export type { Breadcrumb, BreadcrumbHint, PolymorphicRequest, RequestEventData, SdkInfo, Event, EventHint, ErrorEvent, Exception, Session, SeverityLevel, StackFrame, Stacktrace, Thread, User, Span, FeatureFlagsIntegration, } from '@sentry/core';
|
|
export { logger };
|
|
//# sourceMappingURL=common-exports.d.ts.map |