File tree Expand file tree Collapse file tree 10 files changed +20
-0
lines changed
google-cloud-serverless/src Expand file tree Collapse file tree 10 files changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -134,6 +134,8 @@ export {
134
134
logger ,
135
135
consoleLoggingIntegration ,
136
136
wrapMcpServerWithSentry ,
137
+ featureFlagsIntegration ,
138
+ type FeatureFlagsIntegration ,
137
139
} from '@sentry/node' ;
138
140
139
141
export { init } from './server/sdk' ;
Original file line number Diff line number Diff line change @@ -120,6 +120,8 @@ export {
120
120
logger ,
121
121
consoleLoggingIntegration ,
122
122
wrapMcpServerWithSentry ,
123
+ featureFlagsIntegration ,
124
+ type FeatureFlagsIntegration ,
123
125
} from '@sentry/node' ;
124
126
125
127
export {
Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ export type {
15
15
Stacktrace ,
16
16
Thread ,
17
17
User ,
18
+ FeatureFlagsIntegration ,
18
19
} from '@sentry/core' ;
19
20
20
21
export {
@@ -139,6 +140,7 @@ export {
139
140
consoleLoggingIntegration ,
140
141
createSentryWinstonTransport ,
141
142
wrapMcpServerWithSentry ,
143
+ featureFlagsIntegration ,
142
144
} from '@sentry/node' ;
143
145
144
146
export {
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ export type {
8
8
EventHint ,
9
9
ErrorEvent ,
10
10
Exception ,
11
+ FeatureFlagsIntegration ,
11
12
Session ,
12
13
SeverityLevel ,
13
14
Span ,
@@ -91,6 +92,7 @@ export {
91
92
updateSpanName ,
92
93
wrapMcpServerWithSentry ,
93
94
consoleLoggingIntegration ,
95
+ featureFlagsIntegration ,
94
96
} from '@sentry/core' ;
95
97
96
98
export * as logger from './logs/exports' ;
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ export type {
8
8
EventHint ,
9
9
ErrorEvent ,
10
10
Exception ,
11
+ FeatureFlagsIntegration ,
11
12
Session ,
12
13
SeverityLevel ,
13
14
Span ,
@@ -87,6 +88,7 @@ export {
87
88
spanToBaggageHeader ,
88
89
updateSpanName ,
89
90
wrapMcpServerWithSentry ,
91
+ featureFlagsIntegration ,
90
92
} from '@sentry/core' ;
91
93
92
94
export { DenoClient } from './client' ;
Original file line number Diff line number Diff line change @@ -120,6 +120,8 @@ export {
120
120
logger ,
121
121
consoleLoggingIntegration ,
122
122
wrapMcpServerWithSentry ,
123
+ featureFlagsIntegration ,
124
+ type FeatureFlagsIntegration ,
123
125
} from '@sentry/node' ;
124
126
125
127
export {
Original file line number Diff line number Diff line change @@ -138,6 +138,7 @@ export {
138
138
consoleLoggingIntegration ,
139
139
consoleIntegration ,
140
140
wrapMcpServerWithSentry ,
141
+ featureFlagsIntegration ,
141
142
} from '@sentry/core' ;
142
143
143
144
export type {
@@ -157,6 +158,7 @@ export type {
157
158
Thread ,
158
159
User ,
159
160
Span ,
161
+ FeatureFlagsIntegration ,
160
162
} from '@sentry/core' ;
161
163
162
164
export { logger } ;
Original file line number Diff line number Diff line change @@ -32,6 +32,7 @@ export type {
32
32
EventHint ,
33
33
ErrorEvent ,
34
34
Exception ,
35
+ FeatureFlagsIntegration ,
35
36
Session ,
36
37
SeverityLevel ,
37
38
Span ,
@@ -109,4 +110,5 @@ export {
109
110
spanToTraceHeader ,
110
111
spanToBaggageHeader ,
111
112
updateSpanName ,
113
+ featureFlagsIntegration ,
112
114
} from '@sentry/core' ;
Original file line number Diff line number Diff line change @@ -82,6 +82,8 @@ export {
82
82
supabaseIntegration ,
83
83
instrumentSupabaseClient ,
84
84
zodErrorsIntegration ,
85
+ featureFlagsIntegration ,
86
+ type FeatureFlagsIntegration ,
85
87
} from '@sentry/cloudflare' ;
86
88
87
89
/**
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ export type {
8
8
EventHint ,
9
9
ErrorEvent ,
10
10
Exception ,
11
+ FeatureFlagsIntegration ,
11
12
Session ,
12
13
SeverityLevel ,
13
14
Span ,
@@ -90,6 +91,7 @@ export {
90
91
spanToBaggageHeader ,
91
92
wrapMcpServerWithSentry ,
92
93
consoleLoggingIntegration ,
94
+ featureFlagsIntegration ,
93
95
} from '@sentry/core' ;
94
96
95
97
export { VercelEdgeClient } from './client' ;
You can’t perform that action at this time.
0 commit comments