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