@@ -14,43 +14,43 @@ export { prismaIntegration } from './integrations/tracing/prisma';
14
14
export { init , getDefaultIntegrations } from './sdk/init' ;
15
15
export { getAutoPerformanceIntegrations } from './integrations/tracing' ;
16
16
export * as Handlers from './sdk/handlers' ;
17
- export type { Span } from './types' ;
18
-
19
- export { startSpan , startSpanManual , startInactiveSpan , getActiveSpan , withActiveSpan } from '@sentry/opentelemetry' ;
20
17
export { getClient , getSentryRelease , defaultStackParser } from './sdk/api' ;
21
18
export { createGetModuleFromFilename } from './utils/module' ;
19
+ export { makeNodeTransport } from './transports' ;
22
20
// eslint-disable-next-line deprecation/deprecation
23
21
export { getCurrentHub } from './sdk/hub' ;
24
22
23
+ export type { Span , NodeOptions } from './types' ;
24
+
25
+ export { startSpan , startSpanManual , startInactiveSpan , getActiveSpan , withActiveSpan } from '@sentry/opentelemetry' ;
26
+
27
+ export { addRequestDataToEvent , DEFAULT_USER_INCLUDES , extractRequestData } from '@sentry/utils' ;
28
+
29
+ export {
30
+ hapiErrorPlugin ,
31
+ consoleIntegration ,
32
+ onUncaughtExceptionIntegration ,
33
+ onUnhandledRejectionIntegration ,
34
+ modulesIntegration ,
35
+ contextLinesIntegration ,
36
+ nodeContextIntegration ,
37
+ localVariablesIntegration ,
38
+ cron ,
39
+ } from '@sentry/node' ;
40
+
25
41
export {
26
42
addBreadcrumb ,
27
43
isInitialized ,
28
- makeNodeTransport ,
29
44
getGlobalScope ,
30
- addRequestDataToEvent ,
31
- DEFAULT_USER_INCLUDES ,
32
- extractRequestData ,
33
- // eslint-disable-next-line deprecation/deprecation
34
- getModuleFromFilename ,
35
45
close ,
36
46
createTransport ,
37
47
flush ,
38
48
Hub ,
39
- // eslint-disable-next-line deprecation/deprecation
40
- runWithAsyncContext ,
41
49
SDK_VERSION ,
42
50
getSpanStatusFromHttpCode ,
43
51
setHttpStatus ,
44
52
captureCheckIn ,
45
53
withMonitor ,
46
- hapiErrorPlugin ,
47
- consoleIntegration ,
48
- onUncaughtExceptionIntegration ,
49
- onUnhandledRejectionIntegration ,
50
- modulesIntegration ,
51
- contextLinesIntegration ,
52
- nodeContextIntegration ,
53
- localVariablesIntegration ,
54
54
requestDataIntegration ,
55
55
functionToStringIntegration ,
56
56
inboundFiltersIntegration ,
@@ -70,23 +70,17 @@ export {
70
70
Scope ,
71
71
setMeasurement ,
72
72
continueTrace ,
73
- cron ,
74
73
parameterize ,
75
- // eslint-disable-next-line deprecation/deprecation
76
- makeMain ,
77
74
getCurrentScope ,
78
75
getIsolationScope ,
79
76
withScope ,
80
77
withIsolationScope ,
81
78
captureException ,
82
79
captureEvent ,
83
80
captureMessage ,
84
- } from '@sentry/node ' ;
81
+ } from '@sentry/core ' ;
85
82
86
83
export type {
87
- SpanStatusType ,
88
- TransactionNamingScheme ,
89
- AddRequestDataToEventOptions ,
90
84
Breadcrumb ,
91
85
BreadcrumbHint ,
92
86
PolymorphicRequest ,
@@ -100,6 +94,6 @@ export type {
100
94
StackFrame ,
101
95
Stacktrace ,
102
96
Thread ,
97
+ Transaction ,
103
98
User ,
104
- NodeOptions ,
105
- } from '@sentry/node' ;
99
+ } from '@sentry/types' ;
0 commit comments