11// Node SDK exports
2- // Unfortunately, we cannot `export * from '@sentry/node-experimental '` because in prod builds,
2+ // Unfortunately, we cannot `export * from '@sentry/node'` because in prod builds,
33// Vite puts these exports into a `default` property (Sentry.default) rather than
44// on the top - level namespace.
55// Hence, we export everything from the Node SDK explicitly:
66export {
7- // eslint-disable-next-line deprecation/deprecation
8- addGlobalEventProcessor ,
97 addEventProcessor ,
108 addBreadcrumb ,
119 addIntegration ,
@@ -15,10 +13,6 @@ export {
1513 captureCheckIn ,
1614 withMonitor ,
1715 createTransport ,
18- // eslint-disable-next-line deprecation/deprecation
19- getActiveTransaction ,
20- // eslint-disable-next-line deprecation/deprecation
21- getCurrentHub ,
2216 getClient ,
2317 isInitialized ,
2418 getCurrentScope ,
@@ -41,7 +35,6 @@ export {
4135 setHttpStatus ,
4236 withScope ,
4337 withIsolationScope ,
44- autoDiscoverNodePerformanceMonitoringIntegrations ,
4538 makeNodeTransport ,
4639 getDefaultIntegrations ,
4740 defaultStackParser ,
@@ -51,7 +44,6 @@ export {
5144 addRequestDataToEvent ,
5245 DEFAULT_USER_INCLUDES ,
5346 extractRequestData ,
54- Integrations ,
5547 consoleIntegration ,
5648 onUncaughtExceptionIntegration ,
5749 onUnhandledRejectionIntegration ,
@@ -63,7 +55,6 @@ export {
6355 functionToStringIntegration ,
6456 inboundFiltersIntegration ,
6557 linkedErrorsIntegration ,
66- Handlers ,
6758 setMeasurement ,
6859 getActiveSpan ,
6960 getRootSpan ,
@@ -75,16 +66,15 @@ export {
7566 cron ,
7667 parameterize ,
7768 createGetModuleFromFilename ,
78- hapiErrorPlugin ,
7969 metrics ,
8070 SEMANTIC_ATTRIBUTE_SENTRY_OP ,
8171 SEMANTIC_ATTRIBUTE_SENTRY_ORIGIN ,
8272 SEMANTIC_ATTRIBUTE_SENTRY_SOURCE ,
8373 SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE ,
84- } from '@sentry/node-experimental ' ;
74+ } from '@sentry/node' ;
8575
8676// We can still leave this for the carrier init and type exports
87- export * from '@sentry/node-experimental ' ;
77+ export * from '@sentry/node' ;
8878
8979// -------------------------
9080// SvelteKit SDK exports:
0 commit comments