Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Replay Item types #2441

Merged
merged 7 commits into from Dec 29, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions sentry/api/sentry.api
Expand Up @@ -1343,6 +1343,8 @@ public final class io/sentry/SentryItemType : java/lang/Enum, io/sentry/JsonSeri
public static final field ClientReport Lio/sentry/SentryItemType;
public static final field Event Lio/sentry/SentryItemType;
public static final field Profile Lio/sentry/SentryItemType;
public static final field ReplayEvent Lio/sentry/SentryItemType;
public static final field ReplayRecording Lio/sentry/SentryItemType;
public static final field Session Lio/sentry/SentryItemType;
public static final field Transaction Lio/sentry/SentryItemType;
public static final field Unknown Lio/sentry/SentryItemType;
Expand Down
2 changes: 2 additions & 0 deletions sentry/src/main/java/io/sentry/SentryItemType.java
Expand Up @@ -16,6 +16,8 @@ public enum SentryItemType implements JsonSerializable {
Transaction("transaction"),
Profile("profile"),
ClientReport("client_report"),
ReplayEvent("replay_event"),
ReplayRecording("replay_recording"),
Unknown("__unknown__"); // DataCategory.Unknown

private final String itemType;
Expand Down