rename log (#6124)

* rename log

* mq del log
This commit is contained in:
Archer
2025-12-19 12:13:44 +08:00
committed by GitHub
parent d398c9cd39
commit 5631ec781e
7 changed files with 32 additions and 28 deletions

View File

@@ -1,7 +1,7 @@
import type { SourceMemberType } from '../user/type';
import type { AuditEventEnum } from './constants';
export type OperationLogSchema = {
export type TeamAuditSchemaType = {
_id: string;
tmbId: string;
teamId: string;
@@ -10,7 +10,7 @@ export type OperationLogSchema = {
metadata?: Record<string, string>;
};
export type OperationListItemType = {
export type TeamAuditListItemType = {
_id: string;
sourceMember: SourceMemberType;
event: `${AuditEventEnum}`;