Skip to main content
Glama
node-migration-service.d.ts1.48 kB
import { BreakingChangeDetector } from './breaking-change-detector'; import { NodeVersionService } from './node-version-service'; export interface MigrationResult { success: boolean; nodeId: string; nodeName: string; fromVersion: string; toVersion: string; appliedMigrations: AppliedMigration[]; remainingIssues: string[]; confidence: 'HIGH' | 'MEDIUM' | 'LOW'; updatedNode: any; } export interface AppliedMigration { propertyName: string; action: string; oldValue?: any; newValue?: any; description: string; } export declare class NodeMigrationService { private versionService; private breakingChangeDetector; constructor(versionService: NodeVersionService, breakingChangeDetector: BreakingChangeDetector); migrateNode(node: any, fromVersion: string, toVersion: string): Promise<MigrationResult>; private applyMigration; private addProperty; private removeProperty; private renameProperty; private setDefault; private resolveDefaultValue; private parseVersion; validateMigratedNode(node: any, nodeType: string): Promise<{ valid: boolean; errors: string[]; warnings: string[]; }>; migrateWorkflowNodes(workflow: any, targetVersions: Record<string, string>): Promise<{ success: boolean; results: MigrationResult[]; overallConfidence: 'HIGH' | 'MEDIUM' | 'LOW'; }>; } //# sourceMappingURL=node-migration-service.d.ts.map

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/czlonkowski/n8n-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server