File tree Expand file tree Collapse file tree 5 files changed +29
-5
lines changed Expand file tree Collapse file tree 5 files changed +29
-5
lines changed Original file line number Diff line number Diff line change @@ -45,10 +45,6 @@ export {
4545 Scope ,
4646 // eslint-disable-next-line deprecation/deprecation
4747 startTransaction ,
48- getActiveSpan ,
49- startSpan ,
50- startInactiveSpan ,
51- startSpanManual ,
5248 continueTrace ,
5349 SDK_VERSION ,
5450 setContext ,
@@ -59,7 +55,6 @@ export {
5955 setUser ,
6056 withScope ,
6157 withIsolationScope ,
62- withActiveSpan ,
6358 functionToStringIntegration ,
6459 inboundFiltersIntegration ,
6560 dedupeIntegration ,
Original file line number Diff line number Diff line change @@ -14,6 +14,14 @@ Sentry.Integrations.Replay = Replay;
1414// We are patching the global object with our hub extension methods
1515addTracingExtensions ( ) ;
1616
17+ export {
18+ getActiveSpan ,
19+ startSpan ,
20+ startInactiveSpan ,
21+ startSpanManual ,
22+ withActiveSpan ,
23+ } from '@sentry/core' ;
24+
1725export {
1826 // eslint-disable-next-line deprecation/deprecation
1927 Feedback ,
Original file line number Diff line number Diff line change @@ -14,6 +14,14 @@ Sentry.Integrations.Replay = Replay;
1414// We are patching the global object with our hub extension methods
1515addTracingExtensions ( ) ;
1616
17+ export {
18+ getActiveSpan ,
19+ startSpan ,
20+ startInactiveSpan ,
21+ startSpanManual ,
22+ withActiveSpan ,
23+ } from '@sentry/core' ;
24+
1725export {
1826 // eslint-disable-next-line deprecation/deprecation
1927 FeedbackShim as Feedback ,
Original file line number Diff line number Diff line change @@ -19,6 +19,14 @@ Sentry.Integrations.Replay = ReplayShim;
1919// We are patching the global object with our hub extension methods
2020addTracingExtensions ( ) ;
2121
22+ export {
23+ getActiveSpan ,
24+ startSpan ,
25+ startInactiveSpan ,
26+ startSpanManual ,
27+ withActiveSpan ,
28+ } from '@sentry/core' ;
29+
2230export {
2331 // eslint-disable-next-line deprecation/deprecation
2432 FeedbackShim as Feedback ,
Original file line number Diff line number Diff line change @@ -70,6 +70,11 @@ export {
7070export type { RequestInstrumentationOptions } from '@sentry-internal/tracing' ;
7171export {
7272 addTracingExtensions ,
73+ getActiveSpan ,
74+ startSpan ,
75+ startInactiveSpan ,
76+ startSpanManual ,
77+ withActiveSpan ,
7378 setMeasurement ,
7479 // eslint-disable-next-line deprecation/deprecation
7580 getActiveTransaction ,
You can’t perform that action at this time.
0 commit comments