refactor: remove optional resource_id from AuditLogEntry interface to streamline audit log structure

This commit is contained in:
Usman Baig
2026-02-05 13:38:31 +01:00
parent 508b110adf
commit f97681c8a3

View File

@@ -11,7 +11,6 @@ export interface AuditLogEntry {
actor_email?: string
action: string
resource_type: string
resource_id?: string
occurred_at: string
payload?: Record<string, unknown>
}