* Health Check Response Data Structure
| 64 | * Health Check Response Data Structure |
| 65 | */ |
| 66 | interface HealthCheckResponseData { |
| 67 | status: string; |
| 68 | instanceId?: string; |
| 69 | n8nVersion?: string; |
| 70 | features?: Record<string, unknown>; |
| 71 | apiUrl?: string; |
| 72 | mcpVersion: string; |
| 73 | supportedN8nVersion?: string; |
| 74 | versionCheck: { |
| 75 | current: string; |
| 76 | latest: string | null; |
| 77 | upToDate: boolean; |
| 78 | message: string; |
| 79 | updateCommand?: string; |
| 80 | }; |
| 81 | performance: { |
| 82 | responseTimeMs: number; |
| 83 | cacheHitRate: string; |
| 84 | cachedInstances: number; |
| 85 | }; |
| 86 | nextSteps?: string[]; |
| 87 | updateWarning?: string; |
| 88 | } |
| 89 | |
| 90 | /** |
| 91 | * Cloud Platform Guide Structure |
nothing calls this directly
no outgoing calls
no test coverage detected