diff --git a/src/modules/03_logs/interface/response/Main.ts b/src/modules/03_logs/interface/response/Main.ts index eccb7813..f0f2dd6d 100644 --- a/src/modules/03_logs/interface/response/Main.ts +++ b/src/modules/03_logs/interface/response/Main.ts @@ -13,14 +13,21 @@ interface ResRound { interface ResLog { endTimeStamp: Date; - endpoint: string; - host: string; - logType: string; - method: string; + dataDiff?: { + // + before: string; + after: string; + }; + endpoint: string; // + host: string; // + logType: string; // + method: string; // processTime: number; - responseCode: number; + responseCode: number; // startTimeStamp: Date; systemName: string; + username: string; // + responseDescription: string; // tId: string; }