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
27
dist/services/task-templates.d.ts
vendored
Normal file
27
dist/services/task-templates.d.ts
vendored
Normal file
@@ -0,0 +1,27 @@
|
||||
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
|
||||
Reference in New Issue
Block a user