|
@@ -824,11 +824,19 @@ export interface BaseGroup {
|
|
|
integrationIssues?: ExternalIssue[];
|
|
|
latestEvent?: Event;
|
|
|
latestEventHasAttachments?: boolean;
|
|
|
+ openPeriods?: GroupOpenPeriod[] | null;
|
|
|
owners?: SuggestedOwner[] | null;
|
|
|
sentryAppIssues?: PlatformExternalIssue[];
|
|
|
substatus?: GroupSubstatus | null;
|
|
|
}
|
|
|
|
|
|
+export interface GroupOpenPeriod {
|
|
|
+ duration: string;
|
|
|
+ end: string;
|
|
|
+ isOpen: boolean;
|
|
|
+ start: string;
|
|
|
+}
|
|
|
+
|
|
|
export interface GroupReprocessing extends BaseGroup, GroupStats {
|
|
|
status: GroupStatus.REPROCESSING;
|
|
|
statusDetails: ReprocessingStatusDetails;
|