support snapshots
This commit is contained in:
@@ -60,6 +60,29 @@ export interface StartupValidationCheckDto {
|
||||
message: string;
|
||||
}
|
||||
|
||||
export interface BackupChecklistItemDto {
|
||||
id: string;
|
||||
label: string;
|
||||
detail: string;
|
||||
}
|
||||
|
||||
export interface BackupGuidanceDto {
|
||||
dataPath: string;
|
||||
databasePath: string;
|
||||
uploadsPath: string;
|
||||
recommendedBackupTarget: string;
|
||||
backupSteps: BackupChecklistItemDto[];
|
||||
restoreSteps: BackupChecklistItemDto[];
|
||||
}
|
||||
|
||||
export interface SupportSnapshotDto {
|
||||
generatedAt: string;
|
||||
diagnostics: AdminDiagnosticsDto;
|
||||
userCount: number;
|
||||
roleCount: number;
|
||||
activeUserEmails: string[];
|
||||
}
|
||||
|
||||
export interface AdminDiagnosticsDto {
|
||||
serverTime: string;
|
||||
nodeVersion: string;
|
||||
|
||||
Reference in New Issue
Block a user