Skip to content

Commit

Permalink
fix(APIAuditLogEntry): user_id is not nullable (#52)
Browse files Browse the repository at this point in the history
  • Loading branch information
didinele committed Dec 19, 2020
1 parent ec9002f commit 2b89beb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion v8/payloads/auditLog.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export interface APIAuditLog {
export interface APIAuditLogEntry {
target_id: string | null;
changes?: APIAuditLogChange[];
user_id: string | null;
user_id: string;
id: string;
action_type: AuditLogEvent;
options?: APIAuditLogOptions;
Expand Down

0 comments on commit 2b89beb

Please sign in to comment.