From 2b89beb52b66a4865124b75069ca6bc3d5886c48 Mon Sep 17 00:00:00 2001 From: didinele Date: Sat, 19 Dec 2020 16:00:08 +0200 Subject: [PATCH] fix(APIAuditLogEntry): user_id is not nullable (#52) --- v8/payloads/auditLog.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/v8/payloads/auditLog.ts b/v8/payloads/auditLog.ts index 5b3658bd..944f20a7 100644 --- a/v8/payloads/auditLog.ts +++ b/v8/payloads/auditLog.ts @@ -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;