@@ -24,12 +24,17 @@ export const AuditAction = {
2424 CHAT_UPDATED : 'chat.updated' ,
2525 CHAT_DELETED : 'chat.deleted' ,
2626
27+ // Billing
28+ CREDIT_PURCHASED : 'credit.purchased' ,
29+
2730 // Credential Sets
2831 CREDENTIAL_SET_CREATED : 'credential_set.created' ,
2932 CREDENTIAL_SET_UPDATED : 'credential_set.updated' ,
3033 CREDENTIAL_SET_DELETED : 'credential_set.deleted' ,
3134 CREDENTIAL_SET_MEMBER_REMOVED : 'credential_set_member.removed' ,
35+ CREDENTIAL_SET_MEMBER_LEFT : 'credential_set_member.left' ,
3236 CREDENTIAL_SET_INVITATION_CREATED : 'credential_set_invitation.created' ,
37+ CREDENTIAL_SET_INVITATION_ACCEPTED : 'credential_set_invitation.accepted' ,
3338 CREDENTIAL_SET_INVITATION_REVOKED : 'credential_set_invitation.revoked' ,
3439
3540 // Documents
@@ -81,6 +86,9 @@ export const AuditAction = {
8186 // OAuth
8287 OAUTH_DISCONNECTED : 'oauth.disconnected' ,
8388
89+ // Password
90+ PASSWORD_RESET : 'password.reset' ,
91+
8492 // Organizations
8593 ORGANIZATION_CREATED : 'organization.created' ,
8694 ORGANIZATION_UPDATED : 'organization.updated' ,
@@ -103,6 +111,11 @@ export const AuditAction = {
103111 // Schedules
104112 SCHEDULE_UPDATED : 'schedule.updated' ,
105113
114+ // Templates
115+ TEMPLATE_CREATED : 'template.created' ,
116+ TEMPLATE_UPDATED : 'template.updated' ,
117+ TEMPLATE_DELETED : 'template.deleted' ,
118+
106119 // Webhooks
107120 WEBHOOK_CREATED : 'webhook.created' ,
108121 WEBHOOK_DELETED : 'webhook.deleted' ,
@@ -113,6 +126,7 @@ export const AuditAction = {
113126 WORKFLOW_DEPLOYED : 'workflow.deployed' ,
114127 WORKFLOW_UNDEPLOYED : 'workflow.undeployed' ,
115128 WORKFLOW_DUPLICATED : 'workflow.duplicated' ,
129+ WORKFLOW_DEPLOYMENT_ACTIVATED : 'workflow.deployment_activated' ,
116130 WORKFLOW_DEPLOYMENT_REVERTED : 'workflow.deployment_reverted' ,
117131 WORKFLOW_VARIABLES_UPDATED : 'workflow.variables_updated' ,
118132
@@ -129,6 +143,7 @@ export type AuditActionType = (typeof AuditAction)[keyof typeof AuditAction]
129143 */
130144export const AuditResourceType = {
131145 API_KEY : 'api_key' ,
146+ BILLING : 'billing' ,
132147 BYOK_KEY : 'byok_key' ,
133148 CHAT : 'chat' ,
134149 CREDENTIAL_SET : 'credential_set' ,
@@ -142,8 +157,10 @@ export const AuditResourceType = {
142157 NOTIFICATION : 'notification' ,
143158 OAUTH : 'oauth' ,
144159 ORGANIZATION : 'organization' ,
160+ PASSWORD : 'password' ,
145161 PERMISSION_GROUP : 'permission_group' ,
146162 SCHEDULE : 'schedule' ,
163+ TEMPLATE : 'template' ,
147164 WEBHOOK : 'webhook' ,
148165 WORKFLOW : 'workflow' ,
149166 WORKSPACE : 'workspace' ,
0 commit comments