mirror of
https://github.com/lukaszraczylo/claude-mnemonic.git
synced 2026-06-09 23:59:40 +00:00
Fix autoupdate, add healtcheck status to the dashboard
This commit is contained in:
@@ -50,3 +50,16 @@ export interface SSEEvent {
|
||||
}
|
||||
|
||||
export type FilterType = 'all' | 'observations' | 'summaries' | 'prompts'
|
||||
|
||||
export interface ComponentHealth {
|
||||
name: string
|
||||
status: 'healthy' | 'degraded' | 'unhealthy'
|
||||
message?: string
|
||||
}
|
||||
|
||||
export interface SelfCheckResponse {
|
||||
overall: 'healthy' | 'degraded' | 'unhealthy'
|
||||
version: string
|
||||
uptime: string
|
||||
components: ComponentHealth[]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user