File tree Expand file tree Collapse file tree 1 file changed +20
-1
lines changed Expand file tree Collapse file tree 1 file changed +20
-1
lines changed Original file line number Diff line number Diff line change @@ -21,10 +21,14 @@ export type { AddRequestDataToEventOptions } from '@sentry/utils';
21
21
export {
22
22
addEventProcessor ,
23
23
addBreadcrumb ,
24
+ addIntegration ,
24
25
captureException ,
25
26
captureEvent ,
26
27
captureMessage ,
27
28
captureCheckIn ,
29
+ startSession ,
30
+ captureSession ,
31
+ endSession ,
28
32
withMonitor ,
29
33
createTransport ,
30
34
// eslint-disable-next-line deprecation/deprecation
@@ -49,14 +53,19 @@ export {
49
53
withScope ,
50
54
withIsolationScope ,
51
55
makeNodeTransport ,
56
+ NodeClient ,
52
57
defaultStackParser ,
53
58
flush ,
54
59
close ,
55
60
getSentryRelease ,
56
61
addRequestDataToEvent ,
57
62
DEFAULT_USER_INCLUDES ,
58
63
extractRequestData ,
64
+ createGetModuleFromFilename ,
65
+ anrIntegration ,
59
66
consoleIntegration ,
67
+ httpIntegration ,
68
+ nativeNodeFetchIntegration ,
60
69
onUncaughtExceptionIntegration ,
61
70
onUnhandledRejectionIntegration ,
62
71
modulesIntegration ,
@@ -69,13 +78,14 @@ export {
69
78
linkedErrorsIntegration ,
70
79
setMeasurement ,
71
80
getActiveSpan ,
72
- getRootSpan ,
73
81
startSpan ,
74
82
startInactiveSpan ,
75
83
startSpanManual ,
76
84
withActiveSpan ,
85
+ getRootSpan ,
77
86
getSpanDescendants ,
78
87
continueTrace ,
88
+ getAutoPerformanceIntegrations ,
79
89
cron ,
80
90
metrics ,
81
91
parameterize ,
@@ -100,6 +110,15 @@ export {
100
110
spotlightIntegration ,
101
111
} from '@sentry/node' ;
102
112
113
+ export {
114
+ captureConsoleIntegration ,
115
+ debugIntegration ,
116
+ dedupeIntegration ,
117
+ extraErrorDataIntegration ,
118
+ rewriteFramesIntegration ,
119
+ sessionTimingIntegration ,
120
+ } from '@sentry/core' ;
121
+
103
122
export type { BunOptions } from './types' ;
104
123
105
124
export { BunClient } from './client' ;
You can’t perform that action at this time.
0 commit comments