From f6fade477793635ca15350be7330edf3ee039e32 Mon Sep 17 00:00:00 2001 From: Akalanka Perera Date: Sun, 10 Mar 2024 18:38:20 +0000 Subject: [PATCH] Fix(mongoose-audit): audit type defintion --- plugins/mongoose-audit/types/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/mongoose-audit/types/index.d.ts b/plugins/mongoose-audit/types/index.d.ts index 32495ac..33a7a57 100644 --- a/plugins/mongoose-audit/types/index.d.ts +++ b/plugins/mongoose-audit/types/index.d.ts @@ -1,6 +1,6 @@ import mongoose from "mongoose"; -type auditType = "add" | "edit" | "delete"; +type auditType = "Add" | "Edit" | "Delete"; interface Audit { entity_id: any;