auth.provider API
    Preparing search index...

    Interface AuditEvent

    interface AuditEvent {
        clientId?: string;
        details?: Record<string, unknown>;
        ip?: string;
        subject?: string;
        timestamp: Date;
        type: string;
        userAgent?: string;
    }
    Index
    clientId?: string
    details?: Record<string, unknown>
    ip?: string
    subject?: string
    timestamp: Date
    type: string

    The event's type. The built-in vocabulary is BUILT_IN_AUDIT_EVENT_TYPES — a constant rather than prose, so the inventory cannot drift from the emission sites again. Kept an open string because consumers emit custom, namespaced types of their own.

    userAgent?: string