Skip to content

Commit e0d5af2

Browse files
committed
clean up exports
1 parent 709c313 commit e0d5af2

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

dev-packages/e2e-tests/test-applications/node-exports-test-app/scripts/consistentExports.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ const DEPENDENTS: Dependent[] = [
8686
package: '@sentry/google-cloud',
8787
compareWith: nodeExports,
8888
exports: Object.keys(SentryGoogleCloud),
89-
ignoreExports: ['cron'],
89+
ignoreExports: ['makeMain'],
9090
},
9191
{
9292
package: '@sentry/sveltekit',

packages/google-cloud/src/index.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
export {
22
addEventProcessor,
33
addBreadcrumb,
4+
addIntegration,
45
captureException,
56
captureEvent,
67
captureMessage,
78
captureCheckIn,
9+
startSession,
10+
captureSession,
11+
endSession,
812
withMonitor,
913
createTransport,
1014
// eslint-disable-next-line deprecation/deprecation
@@ -29,14 +33,19 @@ export {
2933
withScope,
3034
withIsolationScope,
3135
makeNodeTransport,
36+
NodeClient,
3237
defaultStackParser,
3338
flush,
3439
close,
3540
getSentryRelease,
3641
addRequestDataToEvent,
3742
DEFAULT_USER_INCLUDES,
3843
extractRequestData,
44+
createGetModuleFromFilename,
45+
anrIntegration,
3946
consoleIntegration,
47+
httpIntegration,
48+
nativeNodeFetchIntegration,
4049
onUncaughtExceptionIntegration,
4150
onUnhandledRejectionIntegration,
4251
modulesIntegration,
@@ -55,6 +64,7 @@ export {
5564
withActiveSpan,
5665
getSpanDescendants,
5766
continueTrace,
67+
getAutoPerformanceIntegrations,
5868
cron,
5969
metrics,
6070
parameterize,

0 commit comments

Comments
 (0)