Skip to content

Commit

Permalink
fix: Export session API (#10712)
Browse files Browse the repository at this point in the history
  • Loading branch information
lforst committed Feb 20, 2024
1 parent 74b0f11 commit 0cc946d
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/enforce-license-compliance.yml
Expand Up @@ -2,9 +2,9 @@ name: Enforce License Compliance

on:
push:
branches: [master, develop, release/*]
branches: [master, develop, release/*, v7]
pull_request:
branches: [master, develop]
branches: [master, develop, v7]

jobs:
enforce-license-compliance:
Expand Down
3 changes: 3 additions & 0 deletions packages/browser/src/exports.ts
Expand Up @@ -74,6 +74,9 @@ export {
functionToStringIntegration,
inboundFiltersIntegration,
parameterize,
startSession,
captureSession,
endSession,
} from '@sentry/core';

export {
Expand Down
3 changes: 3 additions & 0 deletions packages/bun/src/index.ts
Expand Up @@ -88,6 +88,9 @@ export {
linkedErrorsIntegration,
requestDataIntegration,
parameterize,
startSession,
captureSession,
endSession,
} from '@sentry/core';
export type { SpanStatusType } from '@sentry/core';
export {
Expand Down
3 changes: 3 additions & 0 deletions packages/deno/src/index.ts
Expand Up @@ -89,6 +89,9 @@ export {
SEMANTIC_ATTRIBUTE_SENTRY_ORIGIN,
SEMANTIC_ATTRIBUTE_SENTRY_SOURCE,
SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE,
startSession,
captureSession,
endSession,
} from '@sentry/core';

export type { SpanStatusType } from '@sentry/core';
Expand Down
3 changes: 3 additions & 0 deletions packages/node/src/index.ts
Expand Up @@ -89,6 +89,9 @@ export {
inboundFiltersIntegration,
linkedErrorsIntegration,
requestDataIntegration,
startSession,
captureSession,
endSession,
} from '@sentry/core';

export {
Expand Down
3 changes: 3 additions & 0 deletions packages/serverless/src/index.ts
Expand Up @@ -111,4 +111,7 @@ export {
SEMANTIC_ATTRIBUTE_SENTRY_ORIGIN,
SEMANTIC_ATTRIBUTE_SENTRY_SOURCE,
SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE,
startSession,
captureSession,
endSession,
} from '@sentry/node';

0 comments on commit 0cc946d

Please sign in to comment.