admin services
This commit is contained in:
@@ -53,6 +53,13 @@ export interface AdminUserInput {
|
||||
password: string | null;
|
||||
}
|
||||
|
||||
export interface StartupValidationCheckDto {
|
||||
id: string;
|
||||
label: string;
|
||||
status: "PASS" | "WARN" | "FAIL";
|
||||
message: string;
|
||||
}
|
||||
|
||||
export interface AdminDiagnosticsDto {
|
||||
serverTime: string;
|
||||
nodeVersion: string;
|
||||
@@ -76,5 +83,7 @@ export interface AdminDiagnosticsDto {
|
||||
shipmentCount: number;
|
||||
attachmentCount: number;
|
||||
auditEventCount: number;
|
||||
startupStatus: "PASS" | "WARN" | "FAIL";
|
||||
startupChecks: StartupValidationCheckDto[];
|
||||
recentAuditEvents: AuditEventDto[];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user