@@ -18,19 +18,21 @@ export type {
1818} from '@sentry/types' ;
1919export type { AddRequestDataToEventOptions } from '@sentry/utils' ;
2020
21- export type { TransactionNamingScheme } from '@sentry/node-experimental' ;
22- export type { BunOptions } from './types' ;
23-
2421export {
2522 addEventProcessor ,
2623 addBreadcrumb ,
2724 addIntegration ,
2825 captureException ,
2926 captureEvent ,
3027 captureMessage ,
31- close ,
28+ captureCheckIn ,
29+ startSession ,
30+ captureSession ,
31+ endSession ,
32+ withMonitor ,
3233 createTransport ,
33- flush ,
34+ // eslint-disable-next-line deprecation/deprecation
35+ getCurrentHub ,
3436 getClient ,
3537 isInitialized ,
3638 getCurrentScope ,
@@ -50,64 +52,80 @@ export {
5052 setHttpStatus ,
5153 withScope ,
5254 withIsolationScope ,
53- captureCheckIn ,
54- withMonitor ,
55+ makeNodeTransport ,
56+ NodeClient ,
57+ defaultStackParser ,
58+ flush ,
59+ close ,
60+ getSentryRelease ,
61+ addRequestDataToEvent ,
62+ DEFAULT_USER_INCLUDES ,
63+ extractRequestData ,
64+ createGetModuleFromFilename ,
65+ anrIntegration ,
66+ consoleIntegration ,
67+ httpIntegration ,
68+ nativeNodeFetchIntegration ,
69+ onUncaughtExceptionIntegration ,
70+ onUnhandledRejectionIntegration ,
71+ modulesIntegration ,
72+ contextLinesIntegration ,
73+ nodeContextIntegration ,
74+ localVariablesIntegration ,
75+ requestDataIntegration ,
76+ functionToStringIntegration ,
77+ inboundFiltersIntegration ,
78+ linkedErrorsIntegration ,
5579 setMeasurement ,
5680 getActiveSpan ,
57- getRootSpan ,
5881 startSpan ,
5982 startInactiveSpan ,
6083 startSpanManual ,
6184 withActiveSpan ,
85+ getRootSpan ,
6286 getSpanDescendants ,
6387 continueTrace ,
64- metricsDefault as metrics ,
65- functionToStringIntegration ,
66- inboundFiltersIntegration ,
67- linkedErrorsIntegration ,
68- requestDataIntegration ,
88+ getAutoPerformanceIntegrations ,
89+ cron ,
90+ metrics ,
91+ parameterize ,
92+ SEMANTIC_ATTRIBUTE_SENTRY_OP ,
93+ SEMANTIC_ATTRIBUTE_SENTRY_ORIGIN ,
94+ SEMANTIC_ATTRIBUTE_SENTRY_SOURCE ,
95+ SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE ,
96+ expressIntegration ,
97+ expressErrorHandler ,
98+ setupExpressErrorHandler ,
99+ fastifyIntegration ,
100+ setupFastifyErrorHandler ,
101+ graphqlIntegration ,
102+ mongoIntegration ,
103+ mongooseIntegration ,
104+ mysqlIntegration ,
105+ mysql2Integration ,
106+ nestIntegration ,
107+ postgresIntegration ,
108+ prismaIntegration ,
109+ hapiIntegration ,
110+ setupHapiErrorHandler ,
111+ spotlightIntegration ,
112+ } from '@sentry/node' ;
113+
114+ export {
69115 captureConsoleIntegration ,
70116 debugIntegration ,
71117 dedupeIntegration ,
72118 extraErrorDataIntegration ,
73119 rewriteFramesIntegration ,
74120 sessionTimingIntegration ,
75- parameterize ,
76- startSession ,
77- captureSession ,
78- endSession ,
79121} from '@sentry/core' ;
80- export {
81- DEFAULT_USER_INCLUDES ,
82- autoDiscoverNodePerformanceMonitoringIntegrations ,
83- 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 ,
101- SEMANTIC_ATTRIBUTE_SENTRY_OP ,
102- SEMANTIC_ATTRIBUTE_SENTRY_ORIGIN ,
103- SEMANTIC_ATTRIBUTE_SENTRY_SOURCE ,
104- SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE ,
105- } from '@sentry/node-experimental' ;
122+
123+ export type { BunOptions } from './types' ;
106124
107125export { BunClient } from './client' ;
108126export {
109127 getDefaultIntegrations ,
110128 init ,
111129} from './sdk' ;
112-
113130export { bunServerIntegration } from './integrations/bunserver' ;
131+ export { makeFetchTransport } from './transports' ;
0 commit comments