diff --git a/dev-packages/e2e-tests/test-applications/node-exports-test-app/scripts/consistentExports.ts b/dev-packages/e2e-tests/test-applications/node-exports-test-app/scripts/consistentExports.ts index a488ef463412..a4a5142b3e98 100644 --- a/dev-packages/e2e-tests/test-applications/node-exports-test-app/scripts/consistentExports.ts +++ b/dev-packages/e2e-tests/test-applications/node-exports-test-app/scripts/consistentExports.ts @@ -22,8 +22,6 @@ const NODE_EXPORTS_IGNORE = [ 'DebugSession', 'AnrIntegrationOptions', 'LocalVariablesIntegrationOptions', - // deprecated - 'spanStatusfromHttpCode', ]; type Dependent = { @@ -70,8 +68,6 @@ const DEPENDENTS: Dependent[] = [ { package: '@sentry/sveltekit', exports: Object.keys(SentrySvelteKit), - // TODO: Fix exports in sveltekit - skip: true, }, ]; diff --git a/packages/sveltekit/src/server/index.ts b/packages/sveltekit/src/server/index.ts index eb021c6c76cd..32fcec426df4 100644 --- a/packages/sveltekit/src/server/index.ts +++ b/packages/sveltekit/src/server/index.ts @@ -30,6 +30,7 @@ export { getGlobalScope, getIsolationScope, Hub, + NodeClient, // eslint-disable-next-line deprecation/deprecation makeMain, setCurrentClient, @@ -78,6 +79,18 @@ export { continueTrace, cron, parameterize, + // eslint-disable-next-line deprecation/deprecation + getModuleFromFilename, + createGetModuleFromFilename, + functionToStringIntegration, + hapiErrorPlugin, + inboundFiltersIntegration, + linkedErrorsIntegration, + requestDataIntegration, + metrics, + runWithAsyncContext, + // eslint-disable-next-line deprecation/deprecation + enableAnrDetection, } from '@sentry/node'; // We can still leave this for the carrier init and type exports