feat(Simulate Node): New node (no-changelog) (#9109)

This commit is contained in:
Michael Kret
2024-05-08 14:02:36 +03:00
committed by GitHub
parent c4bf5b2b92
commit 6b6e8dfc33
15 changed files with 344 additions and 1 deletions

View File

@@ -0,0 +1,26 @@
import type { ILoadOptionsFunctions, INodePropertyOptions } from 'n8n-workflow';
export async function getNodeTypes(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
const types = this.getKnownNodeTypes() as {
[key: string]: {
className: string;
};
};
const returnData: INodePropertyOptions[] = [];
let typeNames = Object.keys(types);
if (this.getNode().type === 'n8n-nodes-base.simulateTrigger') {
typeNames = typeNames.filter((type) => type.toLowerCase().includes('trigger'));
}
for (const type of typeNames) {
returnData.push({
name: types[type].className,
value: type,
});
}
return returnData;
}