1
1
// 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,
3
3
// Vite puts these exports into a `default` property (Sentry.default) rather than
4
4
// on the top - level namespace.
5
5
// Hence, we export everything from the Node SDK explicitly:
6
6
export {
7
- // eslint-disable-next-line deprecation/deprecation
8
- addGlobalEventProcessor ,
9
7
addEventProcessor ,
10
8
addBreadcrumb ,
11
9
addIntegration ,
@@ -15,10 +13,6 @@ export {
15
13
captureCheckIn ,
16
14
withMonitor ,
17
15
createTransport ,
18
- // eslint-disable-next-line deprecation/deprecation
19
- getActiveTransaction ,
20
- // eslint-disable-next-line deprecation/deprecation
21
- getCurrentHub ,
22
16
getClient ,
23
17
isInitialized ,
24
18
getCurrentScope ,
@@ -41,7 +35,6 @@ export {
41
35
setHttpStatus ,
42
36
withScope ,
43
37
withIsolationScope ,
44
- autoDiscoverNodePerformanceMonitoringIntegrations ,
45
38
makeNodeTransport ,
46
39
getDefaultIntegrations ,
47
40
defaultStackParser ,
@@ -51,7 +44,6 @@ export {
51
44
addRequestDataToEvent ,
52
45
DEFAULT_USER_INCLUDES ,
53
46
extractRequestData ,
54
- Integrations ,
55
47
consoleIntegration ,
56
48
onUncaughtExceptionIntegration ,
57
49
onUnhandledRejectionIntegration ,
@@ -63,7 +55,6 @@ export {
63
55
functionToStringIntegration ,
64
56
inboundFiltersIntegration ,
65
57
linkedErrorsIntegration ,
66
- Handlers ,
67
58
setMeasurement ,
68
59
getActiveSpan ,
69
60
getRootSpan ,
@@ -75,16 +66,15 @@ export {
75
66
cron ,
76
67
parameterize ,
77
68
createGetModuleFromFilename ,
78
- hapiErrorPlugin ,
79
69
metrics ,
80
70
SEMANTIC_ATTRIBUTE_SENTRY_OP ,
81
71
SEMANTIC_ATTRIBUTE_SENTRY_ORIGIN ,
82
72
SEMANTIC_ATTRIBUTE_SENTRY_SOURCE ,
83
73
SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE ,
84
- } from '@sentry/node-experimental ' ;
74
+ } from '@sentry/node' ;
85
75
86
76
// We can still leave this for the carrier init and type exports
87
- export * from '@sentry/node-experimental ' ;
77
+ export * from '@sentry/node' ;
88
78
89
79
// -------------------------
90
80
// SvelteKit SDK exports:
0 commit comments