@@ -18,19 +18,17 @@ export type {
18
18
} from '@sentry/types' ;
19
19
export type { AddRequestDataToEventOptions } from '@sentry/utils' ;
20
20
21
- export type { TransactionNamingScheme } from '@sentry/node-experimental' ;
22
- export type { BunOptions } from './types' ;
23
-
24
21
export {
25
22
addEventProcessor ,
26
23
addBreadcrumb ,
27
- addIntegration ,
28
24
captureException ,
29
25
captureEvent ,
30
26
captureMessage ,
31
- close ,
27
+ captureCheckIn ,
28
+ withMonitor ,
32
29
createTransport ,
33
- flush ,
30
+ // eslint-disable-next-line deprecation/deprecation
31
+ getCurrentHub ,
34
32
getClient ,
35
33
isInitialized ,
36
34
getCurrentScope ,
@@ -50,8 +48,25 @@ export {
50
48
setHttpStatus ,
51
49
withScope ,
52
50
withIsolationScope ,
53
- captureCheckIn ,
54
- withMonitor ,
51
+ makeNodeTransport ,
52
+ defaultStackParser ,
53
+ flush ,
54
+ close ,
55
+ getSentryRelease ,
56
+ addRequestDataToEvent ,
57
+ DEFAULT_USER_INCLUDES ,
58
+ extractRequestData ,
59
+ consoleIntegration ,
60
+ onUncaughtExceptionIntegration ,
61
+ onUnhandledRejectionIntegration ,
62
+ modulesIntegration ,
63
+ contextLinesIntegration ,
64
+ nodeContextIntegration ,
65
+ localVariablesIntegration ,
66
+ requestDataIntegration ,
67
+ functionToStringIntegration ,
68
+ inboundFiltersIntegration ,
69
+ linkedErrorsIntegration ,
55
70
setMeasurement ,
56
71
getActiveSpan ,
57
72
getRootSpan ,
@@ -61,53 +76,35 @@ export {
61
76
withActiveSpan ,
62
77
getSpanDescendants ,
63
78
continueTrace ,
64
- metricsDefault as metrics ,
65
- functionToStringIntegration ,
66
- inboundFiltersIntegration ,
67
- linkedErrorsIntegration ,
68
- requestDataIntegration ,
69
- captureConsoleIntegration ,
70
- debugIntegration ,
71
- dedupeIntegration ,
72
- extraErrorDataIntegration ,
73
- rewriteFramesIntegration ,
74
- sessionTimingIntegration ,
75
- parameterize ,
76
- startSession ,
77
- captureSession ,
78
- endSession ,
79
- } from '@sentry/core' ;
80
- export {
81
- DEFAULT_USER_INCLUDES ,
82
- autoDiscoverNodePerformanceMonitoringIntegrations ,
83
79
cron ,
84
- createGetModuleFromFilename ,
85
- defaultStackParser ,
86
- extractRequestData ,
87
- getSentryRelease ,
88
- addRequestDataToEvent ,
89
- anrIntegration ,
90
- consoleIntegration ,
91
- contextLinesIntegration ,
92
- hapiIntegration ,
93
- httpIntegration ,
94
- localVariablesIntegration ,
95
- modulesIntegration ,
96
- nativeNodeFetchintegration ,
97
- nodeContextIntegration ,
98
- onUncaughtExceptionIntegration ,
99
- onUnhandledRejectionIntegration ,
100
- spotlightIntegration ,
80
+ parameterize ,
101
81
SEMANTIC_ATTRIBUTE_SENTRY_OP ,
102
82
SEMANTIC_ATTRIBUTE_SENTRY_ORIGIN ,
103
83
SEMANTIC_ATTRIBUTE_SENTRY_SOURCE ,
104
84
SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE ,
105
- } from '@sentry/node-experimental' ;
85
+ expressIntegration ,
86
+ expressErrorHandler ,
87
+ setupExpressErrorHandler ,
88
+ fastifyIntegration ,
89
+ graphqlIntegration ,
90
+ mongoIntegration ,
91
+ mongooseIntegration ,
92
+ mysqlIntegration ,
93
+ mysql2Integration ,
94
+ nestIntegration ,
95
+ postgresIntegration ,
96
+ prismaIntegration ,
97
+ hapiIntegration ,
98
+ setupHapiErrorHandler ,
99
+ spotlightIntegration ,
100
+ } from '@sentry/node' ;
101
+
102
+ export type { BunOptions } from './types' ;
106
103
107
104
export { BunClient } from './client' ;
108
105
export {
109
106
getDefaultIntegrations ,
110
107
init ,
111
108
} from './sdk' ;
112
-
113
109
export { bunServerIntegration } from './integrations/bunserver' ;
110
+ export { makeFetchTransport } from './transports' ;
0 commit comments