@@ -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
startSpan ,
@@ -60,53 +75,35 @@ export {
60
75
withActiveSpan ,
61
76
getSpanDescendants ,
62
77
continueTrace ,
63
- metricsDefault as metrics ,
64
- functionToStringIntegration ,
65
- inboundFiltersIntegration ,
66
- linkedErrorsIntegration ,
67
- requestDataIntegration ,
68
- captureConsoleIntegration ,
69
- debugIntegration ,
70
- dedupeIntegration ,
71
- extraErrorDataIntegration ,
72
- rewriteFramesIntegration ,
73
- sessionTimingIntegration ,
74
- parameterize ,
75
- startSession ,
76
- captureSession ,
77
- endSession ,
78
- } from '@sentry/core' ;
79
- export {
80
- DEFAULT_USER_INCLUDES ,
81
- autoDiscoverNodePerformanceMonitoringIntegrations ,
82
78
cron ,
83
- createGetModuleFromFilename ,
84
- defaultStackParser ,
85
- extractRequestData ,
86
- getSentryRelease ,
87
- addRequestDataToEvent ,
88
- anrIntegration ,
89
- consoleIntegration ,
90
- contextLinesIntegration ,
91
- hapiIntegration ,
92
- httpIntegration ,
93
- localVariablesIntegration ,
94
- modulesIntegration ,
95
- nativeNodeFetchintegration ,
96
- nodeContextIntegration ,
97
- onUncaughtExceptionIntegration ,
98
- onUnhandledRejectionIntegration ,
99
- spotlightIntegration ,
79
+ parameterize ,
100
80
SEMANTIC_ATTRIBUTE_SENTRY_OP ,
101
81
SEMANTIC_ATTRIBUTE_SENTRY_ORIGIN ,
102
82
SEMANTIC_ATTRIBUTE_SENTRY_SOURCE ,
103
83
SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE ,
104
- } from '@sentry/node-experimental' ;
84
+ expressIntegration ,
85
+ expressErrorHandler ,
86
+ setupExpressErrorHandler ,
87
+ fastifyIntegration ,
88
+ graphqlIntegration ,
89
+ mongoIntegration ,
90
+ mongooseIntegration ,
91
+ mysqlIntegration ,
92
+ mysql2Integration ,
93
+ nestIntegration ,
94
+ postgresIntegration ,
95
+ prismaIntegration ,
96
+ hapiIntegration ,
97
+ setupHapiErrorHandler ,
98
+ spotlightIntegration ,
99
+ } from '@sentry/node' ;
100
+
101
+ export type { BunOptions } from './types' ;
105
102
106
103
export { BunClient } from './client' ;
107
104
export {
108
105
getDefaultIntegrations ,
109
106
init ,
110
107
} from './sdk' ;
111
-
112
108
export { bunServerIntegration } from './integrations/bunserver' ;
109
+ export { makeFetchTransport } from './transports' ;
0 commit comments