mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-25 00:07:47 +01:00
chore: add CHANGE_REQUEST_SCHEDULED to event types. (#5162)
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.
This commit is contained in:
parent
0c8d0704f3
commit
acb23e8b87
@ -127,6 +127,7 @@ export const CHANGE_REQUEST_CANCELLED = 'change-request-cancelled' as const;
|
|||||||
export const CHANGE_REQUEST_SENT_TO_REVIEW =
|
export const CHANGE_REQUEST_SENT_TO_REVIEW =
|
||||||
'change-request-sent-to-review' as const;
|
'change-request-sent-to-review' as const;
|
||||||
export const CHANGE_REQUEST_APPLIED = 'change-request-applied' 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_CREATED = 'api-token-created' as const;
|
||||||
export const API_TOKEN_UPDATED = 'api-token-updated' as const;
|
export const API_TOKEN_UPDATED = 'api-token-updated' as const;
|
||||||
@ -247,6 +248,7 @@ export const IEventTypes = [
|
|||||||
CHANGE_REQUEST_CANCELLED,
|
CHANGE_REQUEST_CANCELLED,
|
||||||
CHANGE_REQUEST_SENT_TO_REVIEW,
|
CHANGE_REQUEST_SENT_TO_REVIEW,
|
||||||
CHANGE_REQUEST_APPLIED,
|
CHANGE_REQUEST_APPLIED,
|
||||||
|
CHANGE_REQUEST_SCHEDULED,
|
||||||
API_TOKEN_CREATED,
|
API_TOKEN_CREATED,
|
||||||
API_TOKEN_UPDATED,
|
API_TOKEN_UPDATED,
|
||||||
API_TOKEN_DELETED,
|
API_TOKEN_DELETED,
|
||||||
|
Loading…
Reference in New Issue
Block a user