Skip to content

Commit c71d36f

Browse files
committed
correct exports
1 parent 0d31878 commit c71d36f

File tree

1 file changed

+20
-1
lines changed

1 file changed

+20
-1
lines changed

packages/bun/src/index.ts

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,14 @@ export type { AddRequestDataToEventOptions } from '@sentry/utils';
2121
export {
2222
addEventProcessor,
2323
addBreadcrumb,
24+
addIntegration,
2425
captureException,
2526
captureEvent,
2627
captureMessage,
2728
captureCheckIn,
29+
startSession,
30+
captureSession,
31+
endSession,
2832
withMonitor,
2933
createTransport,
3034
// eslint-disable-next-line deprecation/deprecation
@@ -49,14 +53,19 @@ export {
4953
withScope,
5054
withIsolationScope,
5155
makeNodeTransport,
56+
NodeClient,
5257
defaultStackParser,
5358
flush,
5459
close,
5560
getSentryRelease,
5661
addRequestDataToEvent,
5762
DEFAULT_USER_INCLUDES,
5863
extractRequestData,
64+
createGetModuleFromFilename,
65+
anrIntegration,
5966
consoleIntegration,
67+
httpIntegration,
68+
nativeNodeFetchIntegration,
6069
onUncaughtExceptionIntegration,
6170
onUnhandledRejectionIntegration,
6271
modulesIntegration,
@@ -69,13 +78,14 @@ export {
6978
linkedErrorsIntegration,
7079
setMeasurement,
7180
getActiveSpan,
72-
getRootSpan,
7381
startSpan,
7482
startInactiveSpan,
7583
startSpanManual,
7684
withActiveSpan,
85+
getRootSpan,
7786
getSpanDescendants,
7887
continueTrace,
88+
getAutoPerformanceIntegrations,
7989
cron,
8090
metrics,
8191
parameterize,
@@ -100,6 +110,15 @@ export {
100110
spotlightIntegration,
101111
} from '@sentry/node';
102112

113+
export {
114+
captureConsoleIntegration,
115+
debugIntegration,
116+
dedupeIntegration,
117+
extraErrorDataIntegration,
118+
rewriteFramesIntegration,
119+
sessionTimingIntegration,
120+
} from '@sentry/core';
121+
103122
export type { BunOptions } from './types';
104123

105124
export { BunClient } from './client';

0 commit comments

Comments
 (0)