feat: add Audit logs event
All checks were successful
Publish / Publish Job (push) Successful in 2m29s

This commit is contained in:
Дмитрий
2026-04-10 16:59:08 +03:00
parent 12ff7f9827
commit aa1cf43e09
5 changed files with 12 additions and 1 deletions

1
src/events/index.ts Normal file
View File

@@ -0,0 +1 @@
export * from "./users";

View File

@@ -0,0 +1,8 @@
export interface AuditLog {
accountId?: string;
type?: string;
action?: string;
ipAddress?: string;
userAgent?: string;
detail?: string;
}

View File

@@ -0,0 +1 @@
export * from "./audit-logs.interface";

View File

@@ -1 +1,2 @@
export * from "./proto";
export * from "./events";