From ae12aa49c3f246f0c92b824fe629e31ae24fd042 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Tue, 7 Apr 2026 10:01:15 +0100 Subject: [PATCH] Config: fix audit base record type --- src/config/io.audit.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/config/io.audit.ts b/src/config/io.audit.ts index 56ff7a37c30..db40375d381 100644 --- a/src/config/io.audit.ts +++ b/src/config/io.audit.ts @@ -121,14 +121,14 @@ export type ConfigAuditProcessInfo = { export type ConfigWriteAuditRecordBase = Omit< ConfigWriteAuditRecord, | "result" - | "errorCode" - | "errorMessage" | "nextDev" | "nextIno" | "nextMode" | "nextNlink" | "nextUid" | "nextGid" + | "errorCode" + | "errorMessage" > & { nextHash: string; nextBytes: number;