Skip to content

Commit 0cc946d

Browse files
author
Luca Forstner
authored
fix: Export session API (#10712)
1 parent 74b0f11 commit 0cc946d

File tree

6 files changed

+17
-2
lines changed

6 files changed

+17
-2
lines changed

.github/workflows/enforce-license-compliance.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: Enforce License Compliance
22

33
on:
44
push:
5-
branches: [master, develop, release/*]
5+
branches: [master, develop, release/*, v7]
66
pull_request:
7-
branches: [master, develop]
7+
branches: [master, develop, v7]
88

99
jobs:
1010
enforce-license-compliance:

packages/browser/src/exports.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,9 @@ export {
7474
functionToStringIntegration,
7575
inboundFiltersIntegration,
7676
parameterize,
77+
startSession,
78+
captureSession,
79+
endSession,
7780
} from '@sentry/core';
7881

7982
export {

packages/bun/src/index.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,9 @@ export {
8888
linkedErrorsIntegration,
8989
requestDataIntegration,
9090
parameterize,
91+
startSession,
92+
captureSession,
93+
endSession,
9194
} from '@sentry/core';
9295
export type { SpanStatusType } from '@sentry/core';
9396
export {

packages/deno/src/index.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,9 @@ export {
8989
SEMANTIC_ATTRIBUTE_SENTRY_ORIGIN,
9090
SEMANTIC_ATTRIBUTE_SENTRY_SOURCE,
9191
SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE,
92+
startSession,
93+
captureSession,
94+
endSession,
9295
} from '@sentry/core';
9396

9497
export type { SpanStatusType } from '@sentry/core';

packages/node/src/index.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,9 @@ export {
8989
inboundFiltersIntegration,
9090
linkedErrorsIntegration,
9191
requestDataIntegration,
92+
startSession,
93+
captureSession,
94+
endSession,
9295
} from '@sentry/core';
9396

9497
export {

packages/serverless/src/index.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,4 +111,7 @@ export {
111111
SEMANTIC_ATTRIBUTE_SENTRY_ORIGIN,
112112
SEMANTIC_ATTRIBUTE_SENTRY_SOURCE,
113113
SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE,
114+
startSession,
115+
captureSession,
116+
endSession,
114117
} from '@sentry/node';

0 commit comments

Comments
 (0)