diff --git a/sentry/api/sentry.api b/sentry/api/sentry.api index d63572987d..18930d1e87 100644 --- a/sentry/api/sentry.api +++ b/sentry/api/sentry.api @@ -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; diff --git a/sentry/src/main/java/io/sentry/SentryItemType.java b/sentry/src/main/java/io/sentry/SentryItemType.java index 77d1cc23f7..04f62de339 100644 --- a/sentry/src/main/java/io/sentry/SentryItemType.java +++ b/sentry/src/main/java/io/sentry/SentryItemType.java @@ -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;