mirror of
https://github.com/czlonkowski/n8n-mcp.git
synced 2026-01-30 06:22:04 +00:00
27 lines
843 B
TypeScript
27 lines
843 B
TypeScript
export interface TaskTemplate {
|
|
task: string;
|
|
description: string;
|
|
nodeType: string;
|
|
configuration: Record<string, any>;
|
|
userMustProvide: Array<{
|
|
property: string;
|
|
description: string;
|
|
example?: any;
|
|
}>;
|
|
optionalEnhancements?: Array<{
|
|
property: string;
|
|
description: string;
|
|
when?: string;
|
|
}>;
|
|
notes?: string[];
|
|
}
|
|
export declare class TaskTemplates {
|
|
private static templates;
|
|
static getAllTasks(): string[];
|
|
static getTasksForNode(nodeType: string): string[];
|
|
static getTaskTemplate(task: string): TaskTemplate | undefined;
|
|
static getTemplate(task: string): TaskTemplate | undefined;
|
|
static searchTasks(keyword: string): string[];
|
|
static getTaskCategories(): Record<string, string[]>;
|
|
}
|
|
//# sourceMappingURL=task-templates.d.ts.map
|