n8n/packages/nodes-base/nodes/Simulate/methods/loadOptions.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
648 B
TypeScript
Raw Normal View History

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;
}