mirror of
https://github.com/czlonkowski/n8n-mcp.git
synced 2026-02-06 13:33:11 +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
35
dist/parsers/node-parser.d.ts
vendored
Normal file
35
dist/parsers/node-parser.d.ts
vendored
Normal file
@@ -0,0 +1,35 @@
|
||||
import type { NodeClass } from '../types/node-types';
|
||||
export interface ParsedNode {
|
||||
style: 'declarative' | 'programmatic';
|
||||
nodeType: string;
|
||||
displayName: string;
|
||||
description?: string;
|
||||
category?: string;
|
||||
properties: any[];
|
||||
credentials: any[];
|
||||
isAITool: boolean;
|
||||
isTrigger: boolean;
|
||||
isWebhook: boolean;
|
||||
operations: any[];
|
||||
version?: string;
|
||||
isVersioned: boolean;
|
||||
packageName: string;
|
||||
documentation?: string;
|
||||
outputs?: any[];
|
||||
outputNames?: string[];
|
||||
}
|
||||
export declare class NodeParser {
|
||||
private propertyExtractor;
|
||||
private currentNodeClass;
|
||||
parse(nodeClass: NodeClass, packageName: string): ParsedNode;
|
||||
private getNodeDescription;
|
||||
private detectStyle;
|
||||
private extractNodeType;
|
||||
private extractCategory;
|
||||
private detectTrigger;
|
||||
private detectWebhook;
|
||||
private extractVersion;
|
||||
private detectVersioned;
|
||||
private extractOutputs;
|
||||
}
|
||||
//# sourceMappingURL=node-parser.d.ts.map
|
||||
Reference in New Issue
Block a user