Skip to content

Commit

Permalink
chore: add CHANGE_REQUEST_SCHEDULED to event types. (#5162)
Browse files Browse the repository at this point in the history
This is a new event type that will be used to schedule a change
request. It's required in enterprise for the build to work as expected.
  • Loading branch information
thomasheartman committed Oct 26, 2023
1 parent 0c8d070 commit acb23e8
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/lib/types/events.ts
Expand Up @@ -127,6 +127,7 @@ export const CHANGE_REQUEST_CANCELLED = 'change-request-cancelled' as const;
export const CHANGE_REQUEST_SENT_TO_REVIEW =
'change-request-sent-to-review' as const;
export const CHANGE_REQUEST_APPLIED = 'change-request-applied' as const;
export const CHANGE_REQUEST_SCHEDULED = 'change-request-scheduled' as const;

export const API_TOKEN_CREATED = 'api-token-created' as const;
export const API_TOKEN_UPDATED = 'api-token-updated' as const;
Expand Down Expand Up @@ -247,6 +248,7 @@ export const IEventTypes = [
CHANGE_REQUEST_CANCELLED,
CHANGE_REQUEST_SENT_TO_REVIEW,
CHANGE_REQUEST_APPLIED,
CHANGE_REQUEST_SCHEDULED,
API_TOKEN_CREATED,
API_TOKEN_UPDATED,
API_TOKEN_DELETED,
Expand Down

0 comments on commit acb23e8

Please sign in to comment.