mirror of
https://github.com/czlonkowski/n8n-mcp.git
synced 2026-02-06 21:43:07 +00:00
chore: add pre-built dist folder for npx usage
This commit is contained in:
committed by
Romuald Członkowski
parent
a70d96a373
commit
5057481e70
28
dist/services/breaking-changes-registry.d.ts
vendored
Normal file
28
dist/services/breaking-changes-registry.d.ts
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
export interface BreakingChange {
|
||||
nodeType: string;
|
||||
fromVersion: string;
|
||||
toVersion: string;
|
||||
propertyName: string;
|
||||
changeType: 'added' | 'removed' | 'renamed' | 'type_changed' | 'requirement_changed' | 'default_changed';
|
||||
isBreaking: boolean;
|
||||
oldValue?: string;
|
||||
newValue?: string;
|
||||
migrationHint: string;
|
||||
autoMigratable: boolean;
|
||||
migrationStrategy?: {
|
||||
type: 'add_property' | 'remove_property' | 'rename_property' | 'set_default';
|
||||
defaultValue?: any;
|
||||
sourceProperty?: string;
|
||||
targetProperty?: string;
|
||||
};
|
||||
severity: 'LOW' | 'MEDIUM' | 'HIGH';
|
||||
}
|
||||
export declare const BREAKING_CHANGES_REGISTRY: BreakingChange[];
|
||||
export declare function getBreakingChangesForNode(nodeType: string, fromVersion: string, toVersion: string): BreakingChange[];
|
||||
export declare function getAllChangesForNode(nodeType: string, fromVersion: string, toVersion: string): BreakingChange[];
|
||||
export declare function getAutoMigratableChanges(nodeType: string, fromVersion: string, toVersion: string): BreakingChange[];
|
||||
export declare function hasBreakingChanges(nodeType: string, fromVersion: string, toVersion: string): boolean;
|
||||
export declare function getMigrationHints(nodeType: string, fromVersion: string, toVersion: string): string[];
|
||||
export declare function getNodesWithVersionMigrations(): string[];
|
||||
export declare function getTrackedVersionsForNode(nodeType: string): string[];
|
||||
//# sourceMappingURL=breaking-changes-registry.d.ts.map
|
||||
Reference in New Issue
Block a user