🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

@sentry/browser

Package Overview
Dependencies
Maintainers
11
Versions
624
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@sentry/browser - npm Package Compare versions

Comparing version

to
7.109.0

6

cjs/index.js

@@ -138,5 +138,5 @@ Object.defineProperty(exports, '__esModule', { value: true });

exports.browserApiErrorsIntegration = trycatch.browserApiErrorsIntegration;
exports.Replay = replay.Replay;
exports.getReplay = replay.getReplay;
exports.replayIntegration = replay.replayIntegration;
exports.Replay = replay.InternalReplay;
exports.getReplay = replay.internalGetReplay;
exports.replayIntegration = replay.internalReplayIntegration;
exports.ReplayCanvas = replayCanvas.ReplayCanvas;

@@ -143,0 +143,0 @@ exports.replayCanvasIntegration = replayCanvas.replayCanvasIntegration;

@@ -19,3 +19,3 @@ import { Integrations } from '@sentry/core';

import * as index from './integrations/index.js';
export { Replay, getReplay, replayIntegration } from '@sentry/replay';
export { InternalReplay as Replay, internalGetReplay as getReplay, internalReplayIntegration as replayIntegration } from '@sentry/replay';
export { ReplayCanvas, replayCanvasIntegration } from '@sentry-internal/replay-canvas';

@@ -22,0 +22,0 @@ export { Feedback, feedbackIntegration, sendFeedback } from '@sentry-internal/feedback';

{
"name": "@sentry/browser",
"version": "7.108.0",
"version": "7.109.0",
"description": "Official Sentry SDK for browsers",

@@ -32,12 +32,12 @@ "repository": "git://github.com/getsentry/sentry-javascript.git",

"dependencies": {
"@sentry-internal/feedback": "7.108.0",
"@sentry-internal/replay-canvas": "7.108.0",
"@sentry-internal/tracing": "7.108.0",
"@sentry/core": "7.108.0",
"@sentry/replay": "7.108.0",
"@sentry/types": "7.108.0",
"@sentry/utils": "7.108.0"
"@sentry-internal/feedback": "7.109.0",
"@sentry-internal/replay-canvas": "7.109.0",
"@sentry-internal/tracing": "7.109.0",
"@sentry/core": "7.109.0",
"@sentry/replay": "7.109.0",
"@sentry/types": "7.109.0",
"@sentry/utils": "7.109.0"
},
"devDependencies": {
"@sentry-internal/integration-shims": "7.108.0",
"@sentry-internal/integration-shims": "7.109.0",
"@types/md5": "2.1.33",

@@ -44,0 +44,0 @@ "btoa": "^1.2.1",

import { BrowserTracing, Feedback, addTracingExtensions, browserTracingIntegration, feedbackIntegration } from '@sentry-internal/integration-shims';
import { Replay, replayIntegration } from '@sentry/replay';
import { InternalReplay, internalReplayIntegration } from '@sentry/replay';
export * from './index.bundle.base';
export { BrowserTracing, browserTracingIntegration, addTracingExtensions, Replay, replayIntegration, Feedback, feedbackIntegration, };
export { BrowserTracing, browserTracingIntegration, addTracingExtensions, InternalReplay as Replay, internalReplayIntegration as replayIntegration, Feedback, feedbackIntegration, };
//# sourceMappingURL=index.bundle.replay.d.ts.map
import { Feedback, feedbackIntegration } from '@sentry-internal/integration-shims';
import { BrowserTracing, Span, addExtensionMethods } from '@sentry-internal/tracing';
import { Replay, replayIntegration } from '@sentry/replay';
import { InternalReplay, internalReplayIntegration } from '@sentry/replay';
import { bundleBrowserTracingIntegration as browserTracingIntegration } from './helpers';
export { Feedback, Replay, replayIntegration, feedbackIntegration, BrowserTracing, browserTracingIntegration, Span, addExtensionMethods, };
export { Feedback, InternalReplay as Replay, internalReplayIntegration as replayIntegration, feedbackIntegration, BrowserTracing, browserTracingIntegration, Span, addExtensionMethods, };
export * from './index.bundle.base';
//# sourceMappingURL=index.bundle.tracing.replay.d.ts.map
import { Feedback, feedbackIntegration } from '@sentry-internal/feedback';
import { BrowserTracing, Span, addExtensionMethods } from '@sentry-internal/tracing';
import { Replay, replayIntegration } from '@sentry/replay';
import { InternalReplay, internalReplayIntegration } from '@sentry/replay';
import { bundleBrowserTracingIntegration as browserTracingIntegration } from './helpers';
export { Feedback, Replay, feedbackIntegration, replayIntegration, BrowserTracing, browserTracingIntegration, Span, addExtensionMethods, };
export { Feedback, InternalReplay as Replay, feedbackIntegration, internalReplayIntegration as replayIntegration, BrowserTracing, browserTracingIntegration, Span, addExtensionMethods, };
export * from './index.bundle.base';
//# sourceMappingURL=index.bundle.tracing.replay.feedback.d.ts.map

@@ -58,4 +58,4 @@ export * from './exports';

export { INTEGRATIONS as Integrations };
export { Replay, replayIntegration, getReplay, } from '@sentry/replay';
export { ReplayEventType, ReplayEventWithTime, ReplayBreadcrumbFrame, ReplayBreadcrumbFrameEvent, ReplayOptionFrameEvent, ReplayFrame, ReplayFrameEvent, ReplaySpanFrame, ReplaySpanFrameEvent, } from '@sentry/replay';
export { InternalReplay as Replay, internalReplayIntegration as replayIntegration, internalGetReplay as getReplay, } from '@sentry/replay';
export { InternalReplayEventType as ReplayEventType, InternalReplayEventWithTime as ReplayEventWithTime, InternalReplayBreadcrumbFrame as ReplayBreadcrumbFrame, InternalReplayBreadcrumbFrameEvent as ReplayBreadcrumbFrameEvent, InternalReplayOptionFrameEvent as ReplayOptionFrameEvent, InternalReplayFrame as ReplayFrame, InternalReplayFrameEvent as ReplayFrameEvent, InternalReplaySpanFrame as ReplaySpanFrame, InternalReplaySpanFrameEvent as ReplaySpanFrameEvent, } from '@sentry/replay';
export { ReplayCanvas, replayCanvasIntegration, } from '@sentry-internal/replay-canvas';

@@ -62,0 +62,0 @@ export { Feedback, feedbackIntegration, sendFeedback, } from '@sentry-internal/feedback';

import { BrowserTracing, Feedback, addTracingExtensions, browserTracingIntegration, feedbackIntegration } from '@sentry-internal/integration-shims';
import { Replay, replayIntegration } from '@sentry/replay';
import { InternalReplay, internalReplayIntegration } from '@sentry/replay';
export * from './index.bundle.base';
export { BrowserTracing, browserTracingIntegration, addTracingExtensions, Replay, replayIntegration, Feedback, feedbackIntegration, };
export { BrowserTracing, browserTracingIntegration, addTracingExtensions, InternalReplay as Replay, internalReplayIntegration as replayIntegration, Feedback, feedbackIntegration, };
//# sourceMappingURL=index.bundle.replay.d.ts.map
import { Feedback, feedbackIntegration } from '@sentry-internal/integration-shims';
import { BrowserTracing, Span, addExtensionMethods } from '@sentry-internal/tracing';
import { Replay, replayIntegration } from '@sentry/replay';
import { InternalReplay, internalReplayIntegration } from '@sentry/replay';
import { bundleBrowserTracingIntegration as browserTracingIntegration } from './helpers';
export { Feedback, Replay, replayIntegration, feedbackIntegration, BrowserTracing, browserTracingIntegration, Span, addExtensionMethods, };
export { Feedback, InternalReplay as Replay, internalReplayIntegration as replayIntegration, feedbackIntegration, BrowserTracing, browserTracingIntegration, Span, addExtensionMethods, };
export * from './index.bundle.base';
//# sourceMappingURL=index.bundle.tracing.replay.d.ts.map
import { Feedback, feedbackIntegration } from '@sentry-internal/feedback';
import { BrowserTracing, Span, addExtensionMethods } from '@sentry-internal/tracing';
import { Replay, replayIntegration } from '@sentry/replay';
import { InternalReplay, internalReplayIntegration } from '@sentry/replay';
import { bundleBrowserTracingIntegration as browserTracingIntegration } from './helpers';
export { Feedback, Replay, feedbackIntegration, replayIntegration, BrowserTracing, browserTracingIntegration, Span, addExtensionMethods, };
export { Feedback, InternalReplay as Replay, feedbackIntegration, internalReplayIntegration as replayIntegration, BrowserTracing, browserTracingIntegration, Span, addExtensionMethods, };
export * from './index.bundle.base';
//# sourceMappingURL=index.bundle.tracing.replay.feedback.d.ts.map

@@ -58,4 +58,4 @@ export * from './exports';

export { INTEGRATIONS as Integrations };
export { Replay, replayIntegration, getReplay, } from '@sentry/replay';
export type { ReplayEventType, ReplayEventWithTime, ReplayBreadcrumbFrame, ReplayBreadcrumbFrameEvent, ReplayOptionFrameEvent, ReplayFrame, ReplayFrameEvent, ReplaySpanFrame, ReplaySpanFrameEvent, } from '@sentry/replay';
export { InternalReplay as Replay, internalReplayIntegration as replayIntegration, internalGetReplay as getReplay, } from '@sentry/replay';
export type { InternalReplayEventType as ReplayEventType, InternalReplayEventWithTime as ReplayEventWithTime, InternalReplayBreadcrumbFrame as ReplayBreadcrumbFrame, InternalReplayBreadcrumbFrameEvent as ReplayBreadcrumbFrameEvent, InternalReplayOptionFrameEvent as ReplayOptionFrameEvent, InternalReplayFrame as ReplayFrame, InternalReplayFrameEvent as ReplayFrameEvent, InternalReplaySpanFrame as ReplaySpanFrame, InternalReplaySpanFrameEvent as ReplaySpanFrameEvent, } from '@sentry/replay';
export { ReplayCanvas, replayCanvasIntegration, } from '@sentry-internal/replay-canvas';

@@ -62,0 +62,0 @@ export { Feedback, feedbackIntegration, sendFeedback, } from '@sentry-internal/feedback';

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet