From 422f966c09c55d6817a85de24bb40852d892ed31 Mon Sep 17 00:00:00 2001 From: didinele Date: Sat, 19 Dec 2020 15:46:39 +0200 Subject: [PATCH] fix(APIAuditLogEntry): user_id is not nullable --- 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 6666fee52..59d44a0d2 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;