@sentry/replay
Advanced tools
Comparing version 7.80.0 to 7.80.1
{ | ||
"name": "@sentry/replay", | ||
"version": "7.80.0", | ||
"version": "7.80.1", | ||
"description": "User replays for Sentry", | ||
@@ -28,3 +28,3 @@ "main": "cjs/index.js", | ||
"@babel/core": "^7.17.5", | ||
"@sentry-internal/replay-worker": "7.80.0", | ||
"@sentry-internal/replay-worker": "7.80.1", | ||
"@sentry-internal/rrweb": "2.2.0", | ||
@@ -36,6 +36,6 @@ "@sentry-internal/rrweb-snapshot": "2.2.0", | ||
"dependencies": { | ||
"@sentry-internal/tracing": "7.80.0", | ||
"@sentry/core": "7.80.0", | ||
"@sentry/types": "7.80.0", | ||
"@sentry/utils": "7.80.0" | ||
"@sentry-internal/tracing": "7.80.1", | ||
"@sentry/core": "7.80.1", | ||
"@sentry/types": "7.80.1", | ||
"@sentry/utils": "7.80.1" | ||
}, | ||
@@ -42,0 +42,0 @@ "engines": { |
@@ -9,3 +9,3 @@ import { Breadcrumb, FetchBreadcrumbData, TextEncoderInternal } from '@sentry/types'; | ||
data: FetchBreadcrumbData; | ||
}, hint: FetchHint, options: ReplayNetworkOptions & { | ||
}, hint: Partial<FetchHint>, options: ReplayNetworkOptions & { | ||
textEncoder: TextEncoderInternal; | ||
@@ -21,5 +21,5 @@ replay: ReplayContainer; | ||
data: FetchBreadcrumbData; | ||
}, hint: FetchHint, options: { | ||
}, hint: Partial<FetchHint>, options: { | ||
textEncoder: TextEncoderInternal; | ||
}): void; | ||
//# sourceMappingURL=fetchUtils.d.ts.map |
@@ -9,3 +9,3 @@ import { Breadcrumb, TextEncoderInternal, XhrBreadcrumbData } from '@sentry/types'; | ||
data: XhrBreadcrumbData; | ||
}, hint: XhrHint, options: ReplayNetworkOptions & { | ||
}, hint: Partial<XhrHint>, options: ReplayNetworkOptions & { | ||
replay: ReplayContainer; | ||
@@ -20,5 +20,5 @@ }): Promise<void>; | ||
data: XhrBreadcrumbData; | ||
}, hint: XhrHint, options: { | ||
}, hint: Partial<XhrHint>, options: { | ||
textEncoder: TextEncoderInternal; | ||
}): void; | ||
//# sourceMappingURL=xhrUtils.d.ts.map |
@@ -103,3 +103,10 @@ import { Breadcrumb } from '@sentry/types'; | ||
} | ||
export type ReplayBreadcrumbFrame = ReplayConsoleFrame | ReplayClickFrame | ReplayInputFrame | ReplayKeyboardEventFrame | ReplayBlurFrame | ReplayFocusFrame | ReplaySlowClickFrame | ReplayMultiClickFrame | ReplayMutationFrame | ReplayBaseBreadcrumbFrame; | ||
interface ReplayFeedbackFrameData { | ||
feedback_id: string; | ||
} | ||
interface ReplayFeedbackFrame extends ReplayBaseBreadcrumbFrame { | ||
category: 'sentry.feedback'; | ||
data: ReplayFeedbackFrameData; | ||
} | ||
export type ReplayBreadcrumbFrame = ReplayConsoleFrame | ReplayClickFrame | ReplayInputFrame | ReplayKeyboardEventFrame | ReplayBlurFrame | ReplayFocusFrame | ReplaySlowClickFrame | ReplayMultiClickFrame | ReplayMutationFrame | ReplayFeedbackFrame | ReplayBaseBreadcrumbFrame; | ||
interface ReplayBaseSpanFrame { | ||
@@ -106,0 +113,0 @@ op: string; |
@@ -1,2 +0,2 @@ | ||
import { ErrorEvent, Event, ReplayEvent, TransactionEvent } from '@sentry/types'; | ||
import { ErrorEvent, Event, FeedbackEvent, ReplayEvent, TransactionEvent } from '@sentry/types'; | ||
/** If the event is an error event */ | ||
@@ -8,2 +8,4 @@ export declare function isErrorEvent(event: Event): event is ErrorEvent; | ||
export declare function isReplayEvent(event: Event): event is ReplayEvent; | ||
/** If the event is a feedback event */ | ||
export declare function isFeedbackEvent(event: Event): event is FeedbackEvent; | ||
//# sourceMappingURL=eventUtils.d.ts.map |
@@ -9,3 +9,3 @@ import type { Breadcrumb, FetchBreadcrumbData, TextEncoderInternal } from '@sentry/types'; | ||
data: FetchBreadcrumbData; | ||
}, hint: FetchHint, options: ReplayNetworkOptions & { | ||
}, hint: Partial<FetchHint>, options: ReplayNetworkOptions & { | ||
textEncoder: TextEncoderInternal; | ||
@@ -21,5 +21,5 @@ replay: ReplayContainer; | ||
data: FetchBreadcrumbData; | ||
}, hint: FetchHint, options: { | ||
}, hint: Partial<FetchHint>, options: { | ||
textEncoder: TextEncoderInternal; | ||
}): void; | ||
//# sourceMappingURL=fetchUtils.d.ts.map |
@@ -9,3 +9,3 @@ import type { Breadcrumb, TextEncoderInternal, XhrBreadcrumbData } from '@sentry/types'; | ||
data: XhrBreadcrumbData; | ||
}, hint: XhrHint, options: ReplayNetworkOptions & { | ||
}, hint: Partial<XhrHint>, options: ReplayNetworkOptions & { | ||
replay: ReplayContainer; | ||
@@ -20,5 +20,5 @@ }): Promise<void>; | ||
data: XhrBreadcrumbData; | ||
}, hint: XhrHint, options: { | ||
}, hint: Partial<XhrHint>, options: { | ||
textEncoder: TextEncoderInternal; | ||
}): void; | ||
//# sourceMappingURL=xhrUtils.d.ts.map |
@@ -103,3 +103,10 @@ import type { Breadcrumb } from '@sentry/types'; | ||
} | ||
export type ReplayBreadcrumbFrame = ReplayConsoleFrame | ReplayClickFrame | ReplayInputFrame | ReplayKeyboardEventFrame | ReplayBlurFrame | ReplayFocusFrame | ReplaySlowClickFrame | ReplayMultiClickFrame | ReplayMutationFrame | ReplayBaseBreadcrumbFrame; | ||
interface ReplayFeedbackFrameData { | ||
feedback_id: string; | ||
} | ||
interface ReplayFeedbackFrame extends ReplayBaseBreadcrumbFrame { | ||
category: 'sentry.feedback'; | ||
data: ReplayFeedbackFrameData; | ||
} | ||
export type ReplayBreadcrumbFrame = ReplayConsoleFrame | ReplayClickFrame | ReplayInputFrame | ReplayKeyboardEventFrame | ReplayBlurFrame | ReplayFocusFrame | ReplaySlowClickFrame | ReplayMultiClickFrame | ReplayMutationFrame | ReplayFeedbackFrame | ReplayBaseBreadcrumbFrame; | ||
interface ReplayBaseSpanFrame { | ||
@@ -106,0 +113,0 @@ op: string; |
@@ -1,2 +0,2 @@ | ||
import type { ErrorEvent, Event, ReplayEvent, TransactionEvent } from '@sentry/types'; | ||
import type { ErrorEvent, Event, FeedbackEvent, ReplayEvent, TransactionEvent } from '@sentry/types'; | ||
/** If the event is an error event */ | ||
@@ -8,2 +8,4 @@ export declare function isErrorEvent(event: Event): event is ErrorEvent; | ||
export declare function isReplayEvent(event: Event): event is ReplayEvent; | ||
/** If the event is a feedback event */ | ||
export declare function isFeedbackEvent(event: Event): event is FeedbackEvent; | ||
//# sourceMappingURL=eventUtils.d.ts.map |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
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
Sorry, the diff of this file is not supported yet
2270074
220
20483
+ Added@sentry-internal/tracing@7.80.1(transitive)
+ Added@sentry/core@7.80.1(transitive)
+ Added@sentry/types@7.80.1(transitive)
+ Added@sentry/utils@7.80.1(transitive)
- Removed@sentry-internal/tracing@7.80.0(transitive)
- Removed@sentry/core@7.80.0(transitive)
- Removed@sentry/types@7.80.0(transitive)
- Removed@sentry/utils@7.80.0(transitive)
Updated@sentry/core@7.80.1
Updated@sentry/types@7.80.1
Updated@sentry/utils@7.80.1