mirror of
https://github.com/czlonkowski/n8n-mcp.git
synced 2026-03-20 17:33:08 +00:00
fix: add suggestion property to ValidationError interface
- Add optional suggestion property to ValidationError type - Fixes TypeScript errors in enhanced-config-validator-integration tests - All lint and typecheck tests now pass 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -19,7 +19,9 @@ export interface ValidationError {
|
||||
type: 'missing_required' | 'invalid_type' | 'invalid_value' | 'incompatible' | 'invalid_configuration' | 'syntax_error';
|
||||
property: string;
|
||||
message: string;
|
||||
fix?: string;}
|
||||
fix?: string;
|
||||
suggestion?: string;
|
||||
}
|
||||
|
||||
export interface ValidationWarning {
|
||||
type: 'missing_common' | 'deprecated' | 'inefficient' | 'security' | 'best_practice' | 'invalid_value';
|
||||
|
||||
Reference in New Issue
Block a user