mirror of
https://github.com/czlonkowski/n8n-mcp.git
synced 2026-02-06 05:23:08 +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
76
dist/mcp/workflow-examples.d.ts
vendored
Normal file
76
dist/mcp/workflow-examples.d.ts
vendored
Normal file
@@ -0,0 +1,76 @@
|
||||
export declare const MINIMAL_WORKFLOW_EXAMPLE: {
|
||||
nodes: {
|
||||
name: string;
|
||||
type: string;
|
||||
typeVersion: number;
|
||||
position: number[];
|
||||
parameters: {
|
||||
httpMethod: string;
|
||||
path: string;
|
||||
};
|
||||
}[];
|
||||
connections: {};
|
||||
};
|
||||
export declare const SIMPLE_WORKFLOW_EXAMPLE: {
|
||||
nodes: ({
|
||||
name: string;
|
||||
type: string;
|
||||
typeVersion: number;
|
||||
position: number[];
|
||||
parameters: {
|
||||
httpMethod: string;
|
||||
path: string;
|
||||
mode?: undefined;
|
||||
assignments?: undefined;
|
||||
respondWith?: undefined;
|
||||
};
|
||||
} | {
|
||||
name: string;
|
||||
type: string;
|
||||
typeVersion: number;
|
||||
position: number[];
|
||||
parameters: {
|
||||
mode: string;
|
||||
assignments: {
|
||||
assignments: {
|
||||
name: string;
|
||||
type: string;
|
||||
value: string;
|
||||
}[];
|
||||
};
|
||||
httpMethod?: undefined;
|
||||
path?: undefined;
|
||||
respondWith?: undefined;
|
||||
};
|
||||
} | {
|
||||
name: string;
|
||||
type: string;
|
||||
typeVersion: number;
|
||||
position: number[];
|
||||
parameters: {
|
||||
respondWith: string;
|
||||
httpMethod?: undefined;
|
||||
path?: undefined;
|
||||
mode?: undefined;
|
||||
assignments?: undefined;
|
||||
};
|
||||
})[];
|
||||
connections: {
|
||||
Webhook: {
|
||||
main: {
|
||||
node: string;
|
||||
type: string;
|
||||
index: number;
|
||||
}[][];
|
||||
};
|
||||
Set: {
|
||||
main: {
|
||||
node: string;
|
||||
type: string;
|
||||
index: number;
|
||||
}[][];
|
||||
};
|
||||
};
|
||||
};
|
||||
export declare function getWorkflowExampleString(): string;
|
||||
//# sourceMappingURL=workflow-examples.d.ts.map
|
||||
Reference in New Issue
Block a user