Skip to content
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/sentry/api/serializers/models/group.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,8 @@ class BaseGroupSerializerResponse(BaseGroupResponseOptional):
platform: str | None
priority: str | None
priorityLockedAt: datetime | None
seerFixabilityScore: float | None
seerAutofixLastTriggered: datetime | None
project: GroupProjectResponse
type: str
issueType: str
Expand Down Expand Up @@ -361,6 +363,8 @@ def serialize(
"issueCategory": issue_category,
"priority": priority_label,
"priorityLockedAt": obj.priority_locked_at,
"seerFixabilityScore": obj.seer_fixability_score,
"seerAutofixLastTriggered": obj.seer_autofix_last_triggered,
}

# This attribute is currently feature gated
Expand Down
2 changes: 2 additions & 0 deletions src/sentry/api/serializers/models/group_stream.py
Original file line number Diff line number Diff line change
Expand Up @@ -278,6 +278,8 @@ class StreamGroupSerializerSnubaResponse(TypedDict):
platform: NotRequired[str | None]
priority: NotRequired[str | None]
priorityLockedAt: NotRequired[datetime | None]
seerFixabilityScore: NotRequired[float | None]
seerAutofixLastTriggered: NotRequired[datetime | None]
project: NotRequired[GroupProjectResponse]
type: NotRequired[str]
issueType: NotRequired[str]
Expand Down
2 changes: 2 additions & 0 deletions src/sentry/apidocs/examples/issue_examples.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,8 @@
"firstSeen": datetime.fromisoformat("2018-11-06T21:19:55Z"),
"lastSeen": datetime.fromisoformat("2018-12-06T21:19:55Z"),
},
"seerAutofixLastTriggered": None,
"seerFixabilityScore": None,
"status": "ignored",
"substatus": "archived_until_condition_met",
"statusDetails": {},
Expand Down
Loading