chore: add pre-built dist folder for npx usage

This commit is contained in:
thesved
2025-12-04 20:22:02 +02:00
committed by Romuald Członkowski
parent a70d96a373
commit 5057481e70
716 changed files with 48021 additions and 0 deletions

76
dist/mcp/workflow-examples.d.ts vendored Normal file
View 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