@@ -32,19 +32,19 @@ import type { SeverityLevel } from './types-hoist/severity';
3232import type { Span , SpanAttributes , SpanContextData , SpanJSON } from './types-hoist/span' ;
3333import type { StartSpanOptions } from './types-hoist/startSpanOptions' ;
3434import type { Transport , TransportMakeRequestResponse } from './types-hoist/transport' ;
35+ import { createClientReportEnvelope } from './utils/clientreport' ;
36+ import { dsnToString , makeDsn } from './utils/dsn' ;
37+ import { addItemToEnvelope , createAttachmentEnvelopeItem } from './utils/envelope' ;
3538import { getPossibleEventMessages } from './utils/eventUtils' ;
39+ import { isParameterizedString , isPlainObject , isPrimitive , isThenable } from './utils/is' ;
40+ import { logger } from './utils/logger' ;
3641import { merge } from './utils/merge' ;
42+ import { checkOrSetAlreadyCaught , uuid4 } from './utils/misc' ;
3743import { parseSampleRate } from './utils/parseSampleRate' ;
3844import { prepareEvent } from './utils/prepareEvent' ;
3945import { getActiveSpan , showSpanDropWarning , spanToTraceContext } from './utils/spanUtils' ;
46+ import { rejectedSyncPromise , resolvedSyncPromise , SyncPromise } from './utils/syncpromise' ;
4047import { convertSpanJsonToTransactionEvent , convertTransactionEventToSpanJson } from './utils/transactionEvent' ;
41- import { createClientReportEnvelope } from './utils-hoist/clientreport' ;
42- import { dsnToString , makeDsn } from './utils-hoist/dsn' ;
43- import { addItemToEnvelope , createAttachmentEnvelopeItem } from './utils-hoist/envelope' ;
44- import { isParameterizedString , isPlainObject , isPrimitive , isThenable } from './utils-hoist/is' ;
45- import { logger } from './utils-hoist/logger' ;
46- import { checkOrSetAlreadyCaught , uuid4 } from './utils-hoist/misc' ;
47- import { rejectedSyncPromise , resolvedSyncPromise , SyncPromise } from './utils-hoist/syncpromise' ;
4848
4949const ALREADY_SEEN_ERROR = "Not capturing exception because it's already been captured." ;
5050const MISSING_RELEASE_FOR_SESSION_ERROR = 'Discarded session because of missing or non-string release' ;
0 commit comments