Skip to content

Graphorin API reference v0.5.0


Graphorin API reference / @graphorin/security / / AuthAuditAction

Type Alias: AuthAuditAction

ts
type AuthAuditAction = 
  | "token:create"
  | "token:revoke"
  | "token:rotate"
  | "token:rekey"
  | "auth:granted"
  | "auth:denied:unauth"
  | "auth:denied:scope"
  | "auth:denied:lockout";

Defined in: packages/security/src/auth/audit-emitter.ts:18

Discriminator for AuthAuditEvent. The token:* actions cover the CRUD lifecycle; auth:granted / auth:denied:* cover verification outcomes.

Stable