Skip to content

Commit 5bbe375

Browse files
authored
feat: Export isEnabled from all SDKs (#16405)
This was forgotten to re-export. We actually document this, but have not exported it, oops.
1 parent 90f6619 commit 5bbe375

File tree

14 files changed

+14
-0
lines changed

14 files changed

+14
-0
lines changed

packages/astro/src/index.server.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ export {
6363
eventFiltersIntegration,
6464
initOpenTelemetry,
6565
isInitialized,
66+
isEnabled,
6667
kafkaIntegration,
6768
koaIntegration,
6869
knexIntegration,

packages/aws-serverless/src/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ export {
1414
createTransport,
1515
getClient,
1616
isInitialized,
17+
isEnabled,
1718
generateInstrumentOnce,
1819
getCurrentScope,
1920
getGlobalScope,

packages/browser/src/exports.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ export {
3232
flush,
3333
getClient,
3434
isInitialized,
35+
isEnabled,
3536
getCurrentScope,
3637
getIsolationScope,
3738
getGlobalScope,

packages/bun/src/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ export {
3333
createTransport,
3434
getClient,
3535
isInitialized,
36+
isEnabled,
3637
generateInstrumentOnce,
3738
getCurrentScope,
3839
getGlobalScope,

packages/cloudflare/src/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ export {
3333
flush,
3434
getClient,
3535
isInitialized,
36+
isEnabled,
3637
getCurrentScope,
3738
getGlobalScope,
3839
getIsolationScope,

packages/deno/src/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ export {
3333
flush,
3434
getClient,
3535
isInitialized,
36+
isEnabled,
3637
getCurrentScope,
3738
getGlobalScope,
3839
getIsolationScope,

packages/google-cloud-serverless/src/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ export {
1414
createTransport,
1515
getClient,
1616
isInitialized,
17+
isEnabled,
1718
generateInstrumentOnce,
1819
getCurrentScope,
1920
getGlobalScope,

packages/node/src/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ export {
6565
export {
6666
addBreadcrumb,
6767
isInitialized,
68+
isEnabled,
6869
getGlobalScope,
6970
lastEventId,
7071
close,

packages/remix/src/cloudflare/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ export {
5555
flush,
5656
getClient,
5757
isInitialized,
58+
isEnabled,
5859
getCurrentScope,
5960
getGlobalScope,
6061
getIsolationScope,

packages/remix/src/server/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ export {
5252
eventFiltersIntegration,
5353
initOpenTelemetry,
5454
isInitialized,
55+
isEnabled,
5556
knexIntegration,
5657
kafkaIntegration,
5758
koaIntegration,

packages/solidstart/src/server/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ export {
5555
eventFiltersIntegration,
5656
initOpenTelemetry,
5757
isInitialized,
58+
isEnabled,
5859
knexIntegration,
5960
kafkaIntegration,
6061
koaIntegration,

packages/sveltekit/src/server/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ export {
5757
eventFiltersIntegration,
5858
initOpenTelemetry,
5959
isInitialized,
60+
isEnabled,
6061
knexIntegration,
6162
kafkaIntegration,
6263
koaIntegration,

packages/sveltekit/src/worker/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ export {
4646
// eslint-disable-next-line deprecation/deprecation
4747
inboundFiltersIntegration,
4848
isInitialized,
49+
isEnabled,
4950
lastEventId,
5051
linkedErrorsIntegration,
5152
requestDataIntegration,

packages/vercel-edge/src/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ export {
3333
flush,
3434
getClient,
3535
isInitialized,
36+
isEnabled,
3637
getCurrentScope,
3738
getGlobalScope,
3839
getIsolationScope,

0 commit comments

Comments
 (0)