Skip to content

Commit 95647bd

Browse files
Add Replay Item types (#2441)
1 parent b3704c8 commit 95647bd

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

sentry/api/sentry.api

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1343,6 +1343,8 @@ public final class io/sentry/SentryItemType : java/lang/Enum, io/sentry/JsonSeri
13431343
public static final field ClientReport Lio/sentry/SentryItemType;
13441344
public static final field Event Lio/sentry/SentryItemType;
13451345
public static final field Profile Lio/sentry/SentryItemType;
1346+
public static final field ReplayEvent Lio/sentry/SentryItemType;
1347+
public static final field ReplayRecording Lio/sentry/SentryItemType;
13461348
public static final field Session Lio/sentry/SentryItemType;
13471349
public static final field Transaction Lio/sentry/SentryItemType;
13481350
public static final field Unknown Lio/sentry/SentryItemType;

sentry/src/main/java/io/sentry/SentryItemType.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ public enum SentryItemType implements JsonSerializable {
1616
Transaction("transaction"),
1717
Profile("profile"),
1818
ClientReport("client_report"),
19+
ReplayEvent("replay_event"),
20+
ReplayRecording("replay_recording"),
1921
Unknown("__unknown__"); // DataCategory.Unknown
2022

2123
private final String itemType;

0 commit comments

Comments
 (0)