diff --git a/src/lib/events/index.ts b/src/lib/events/index.ts index 88901fb9d4..5f1c95dfbf 100644 --- a/src/lib/events/index.ts +++ b/src/lib/events/index.ts @@ -155,6 +155,8 @@ export const CHANGE_REQUEST_SCHEDULED_APPLICATION_FAILURE = 'change-request-scheduled-application-failure' as const; export const CHANGE_REQUEST_CONFIGURATION_UPDATED = 'change-request-configuration-updated' as const; +export const CHANGE_REQUEST_REQUESTED_APPROVERS_UPDATED = + 'change-request-requested-approvers-updated' as const; export const API_TOKEN_CREATED = 'api-token-created' as const; export const API_TOKEN_UPDATED = 'api-token-updated' as const; @@ -372,6 +374,7 @@ export const IEventTypes = [ SCIM_USERS_DELETED, SCIM_GROUPS_DELETED, CDN_TOKEN_CREATED, + CHANGE_REQUEST_REQUESTED_APPROVERS_UPDATED, ] as const; export type IEventType = (typeof IEventTypes)[number];