|
1 | 1 | export type { |
2 | 2 | Breadcrumb, |
3 | 3 | BreadcrumbHint, |
4 | | - PolymorphicRequest, |
5 | | - SdkInfo, |
| 4 | + ErrorEvent, |
6 | 5 | Event, |
7 | 6 | EventHint, |
8 | | - ErrorEvent, |
9 | 7 | Exception, |
| 8 | + PolymorphicRequest, |
| 9 | + SdkInfo, |
10 | 10 | Session, |
11 | 11 | SeverityLevel, |
| 12 | + Span, |
12 | 13 | StackFrame, |
13 | 14 | Stacktrace, |
14 | 15 | Thread, |
15 | 16 | User, |
16 | | - Span, |
17 | 17 | } from '@sentry/core'; |
18 | 18 |
|
19 | 19 | export { |
@@ -80,19 +80,23 @@ export { |
80 | 80 | // eslint-disable-next-line deprecation/deprecation |
81 | 81 | inboundFiltersIntegration, |
82 | 82 | initOpenTelemetry, |
| 83 | + instrumentAnthropicAiClient, |
| 84 | + instrumentGoogleGenAIClient, |
| 85 | + instrumentLangGraph, |
83 | 86 | instrumentOpenAiClient, |
| 87 | + instrumentStateGraphCompile, |
84 | 88 | instrumentSupabaseClient, |
85 | 89 | isEnabled, |
86 | 90 | isInitialized, |
87 | 91 | kafkaIntegration, |
88 | 92 | knexIntegration, |
89 | 93 | koaIntegration, |
| 94 | + langChainIntegration, |
90 | 95 | langGraphIntegration, |
91 | 96 | lastEventId, |
92 | 97 | launchDarklyIntegration, |
93 | 98 | linkedErrorsIntegration, |
94 | 99 | localVariablesIntegration, |
95 | | - langChainIntegration, |
96 | 100 | logger, |
97 | 101 | lruMemoizerIntegration, |
98 | 102 | metrics, |
@@ -123,6 +127,7 @@ export { |
123 | 127 | SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE, |
124 | 128 | SEMANTIC_ATTRIBUTE_SENTRY_SOURCE, |
125 | 129 | SentryContextManager, |
| 130 | + setConversationId, |
126 | 131 | setContext, |
127 | 132 | setCurrentClient, |
128 | 133 | setExtra, |
@@ -168,29 +173,29 @@ export { |
168 | 173 |
|
169 | 174 | export type { NodeOptions } from '@sentry/node'; |
170 | 175 |
|
171 | | -export { electronBreadcrumbsIntegration } from './integrations/electron-breadcrumbs.js'; |
172 | | -export { onUncaughtExceptionIntegration } from './integrations/onuncaughtexception.js'; |
173 | | -export { sentryMinidumpIntegration } from './integrations/sentry-minidump/index.js'; |
174 | | -export { electronMinidumpIntegration } from './integrations/electron-minidump.js'; |
175 | | -export { preloadInjectionIntegration } from './integrations/preload-injection.js'; |
176 | | -export { mainProcessSessionIntegration } from './integrations/main-process-session.js'; |
177 | | -export { browserWindowSessionIntegration } from './integrations/browser-window-session.js'; |
178 | 176 | export { additionalContextIntegration } from './integrations/additional-context.js'; |
179 | | -export { electronNetIntegration } from './integrations/net-breadcrumbs.js'; |
| 177 | +export { browserWindowSessionIntegration } from './integrations/browser-window-session.js'; |
180 | 178 | export { childProcessIntegration } from './integrations/child-process.js'; |
181 | | -export { screenshotsIntegration } from './integrations/screenshots.js'; |
182 | | -export { rendererProfileFromIpc } from './integrations/renderer-profiling.js'; |
183 | | -export { normalizePathsIntegration } from './integrations/normalize-paths.js'; |
| 179 | +export { electronBreadcrumbsIntegration } from './integrations/electron-breadcrumbs.js'; |
184 | 180 | export { electronContextIntegration } from './integrations/electron-context.js'; |
| 181 | +export { electronMinidumpIntegration } from './integrations/electron-minidump.js'; |
| 182 | +export { electronNetIntegration } from './integrations/net-breadcrumbs.js'; |
185 | 183 | export { gpuContextIntegration } from './integrations/gpu-context.js'; |
| 184 | +export { mainProcessSessionIntegration } from './integrations/main-process-session.js'; |
| 185 | +export { normalizePathsIntegration } from './integrations/normalize-paths.js'; |
| 186 | +export { onUncaughtExceptionIntegration } from './integrations/onuncaughtexception.js'; |
| 187 | +export { preloadInjectionIntegration } from './integrations/preload-injection.js'; |
186 | 188 | export { rendererEventLoopBlockIntegration } from './integrations/renderer-anr.js'; |
| 189 | +export { rendererProfileFromIpc } from './integrations/renderer-profiling.js'; |
| 190 | +export { screenshotsIntegration } from './integrations/screenshots.js'; |
| 191 | +export { sentryMinidumpIntegration } from './integrations/sentry-minidump/index.js'; |
187 | 192 | export { startupTracingIntegration } from './integrations/startup-tracing.js'; |
188 | 193 |
|
189 | | -export { makeElectronTransport } from './transports/electron-net.js'; |
190 | 194 | export { makeElectronOfflineTransport } from './transports/electron-offline-net.js'; |
| 195 | +export { makeElectronTransport } from './transports/electron-net.js'; |
191 | 196 |
|
192 | | -export type { ElectronMainOptions } from './sdk.js'; |
193 | | -export { init, getDefaultIntegrations } from './sdk.js'; |
194 | 197 | export { defaultStackParser } from './stack-parse.js'; |
| 198 | +export type { ElectronMainOptions } from './sdk.js'; |
| 199 | +export { getDefaultIntegrations, init } from './sdk.js'; |
195 | 200 |
|
196 | 201 | export { IPCMode } from '../common/ipc.js'; |
0 commit comments