Skip to content

Commit

Permalink
feat: add status events (#137)
Browse files Browse the repository at this point in the history
  • Loading branch information
bobbyg603 authored Nov 18, 2024
1 parent b04820d commit 7bd115d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/events/events-api-client/event.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,10 @@ export enum EventType {
AddCrashDefect = 'AddCrashDefect',
RemoveCrashDefect = 'RemoveCrashDefect',
AddStackKeyDefect = 'AddStackKeyDefect',
RemoveStackKeyDefect = 'RemoveStackKeyDefect'
RemoveStackKeyDefect = 'RemoveStackKeyDefect',
StackKeyDefectStatusOpen = 'StackKeyDefectStatusOpen',
StackKeyDefectStatusClosed = 'StackKeyDefectStatusClosed',
StackKeyDefectStatusRegression = 'StackKeyDefectStatusRegression'
}

export function createEvents(events: Array<EventResponseObject>): Array<Event> {
Expand Down

0 comments on commit 7bd115d

Please sign in to comment.