diff --git a/src/lib/types/events.ts b/src/lib/types/events.ts index 80e92d92b5..0b545ebbaf 100644 --- a/src/lib/types/events.ts +++ b/src/lib/types/events.ts @@ -186,6 +186,10 @@ export const INCOMING_WEBHOOK_TOKEN_UPDATED = export const INCOMING_WEBHOOK_TOKEN_DELETED = 'incoming-webhook-token-deleted' as const; +export const ACTIONS_CREATED = 'actions-created' as const; +export const ACTIONS_UPDATED = 'actions-updated' as const; +export const ACTIONS_DELETED = 'actions-deleted' as const; + export const IEventTypes = [ APPLICATION_CREATED, FEATURE_CREATED, @@ -326,6 +330,9 @@ export const IEventTypes = [ INCOMING_WEBHOOK_TOKEN_CREATED, INCOMING_WEBHOOK_TOKEN_UPDATED, INCOMING_WEBHOOK_TOKEN_DELETED, + ACTIONS_CREATED, + ACTIONS_UPDATED, + ACTIONS_DELETED, ] as const; export type IEventType = (typeof IEventTypes)[number];