Skip to content

Commit 2d2eb10

Browse files
committed
exports
1 parent c729b6e commit 2d2eb10

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

packages/browser/src/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,3 +76,4 @@ export { unleashIntegration } from './integrations/featureFlags/unleash';
7676
export { statsigIntegration } from './integrations/featureFlags/statsig';
7777
export { diagnoseSdkConnectivity } from './diagnose-sdk';
7878
export { webWorkerIntegration, registerWebWorker } from './integrations/webWorker';
79+
export { spanStreamingIntegration } from './integrations/spanstreaming';

packages/browser/src/integrations/spanstreaming.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
import type { IntegrationFn, Span, SpanV2JSON } from '@sentry/core';
22
import {
3+
createSpanV2Envelope,
34
debug,
45
defineIntegration,
56
getDynamicSamplingContextFromSpan,
67
isV2BeforeSendSpanCallback,
78
spanToV2JSON,
89
} from '@sentry/core';
910
import { DEBUG_BUILD } from '../debug-build';
10-
import { createSpanV2Envelope } from '@sentry/core/build/types/envelope';
1111

1212
export interface SpanStreamingOptions {
1313
batchLimit: number;

packages/core/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export type { IntegrationIndex } from './integration';
99

1010
export * from './tracing';
1111
export * from './semanticAttributes';
12-
export { createEventEnvelope, createSessionEnvelope, createSpanEnvelope } from './envelope';
12+
export { createEventEnvelope, createSessionEnvelope, createSpanEnvelope, createSpanV2Envelope } from './envelope';
1313
export {
1414
captureCheckIn,
1515
withMonitor,

0 commit comments

Comments
 (0)