File tree 4 files changed +9
-4
lines changed
4 files changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -9,11 +9,16 @@ import type {
9
9
Scope ,
10
10
SeverityLevel ,
11
11
} from '@sentry/core' ;
12
- import { Client , applySdkMetadata , getSDKSource } from '@sentry/core' ;
12
+ import {
13
+ Client ,
14
+ addAutoIpAddressToSession ,
15
+ addAutoIpAddressToUser ,
16
+ applySdkMetadata ,
17
+ getSDKSource ,
18
+ } from '@sentry/core' ;
13
19
import { eventFromException , eventFromMessage } from './eventbuilder' ;
14
20
import { WINDOW } from './helpers' ;
15
21
import type { BrowserTransportOptions } from './transports/types' ;
16
- import { addAutoIpAddressToSession , addAutoIpAddressToUser } from './utils/ipAddress' ;
17
22
18
23
/**
19
24
* Configuration options for the Sentry Browser SDK.
Original file line number Diff line number Diff line change @@ -99,4 +99,3 @@ export { linkedErrorsIntegration } from './integrations/linkederrors';
99
99
export { browserApiErrorsIntegration } from './integrations/browserapierrors' ;
100
100
101
101
export { lazyLoadIntegration } from './utils/lazyLoadIntegration' ;
102
- export { addAutoIpAddressToSession , addAutoIpAddressToUser } from './utils/ipAddress' ;
Original file line number Diff line number Diff line change @@ -72,6 +72,7 @@ export { hasTracingEnabled } from './utils/hasTracingEnabled';
72
72
export { isSentryRequestUrl } from './utils/isSentryRequestUrl' ;
73
73
export { handleCallbackErrors } from './utils/handleCallbackErrors' ;
74
74
export { parameterize } from './utils/parameterize' ;
75
+ export { addAutoIpAddressToSession , addAutoIpAddressToUser } from './utils/ipAddress' ;
75
76
export {
76
77
spanToTraceHeader ,
77
78
spanToJSON ,
Original file line number Diff line number Diff line change 1
- import type { Session , SessionAggregates , User } from '@sentry/core ' ;
1
+ import type { Session , SessionAggregates , User } from '../types-hoist ' ;
2
2
3
3
// By default, we want to infer the IP address, unless this is explicitly set to `null`
4
4
// We do this after all other processing is done
You can’t perform that action at this time.
0 commit comments