mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
31 lines
652 B
TypeScript
31 lines
652 B
TypeScript
import type {
|
|
IExecuteFunctions,
|
|
INodeType,
|
|
INodeTypeBaseDescription,
|
|
INodeTypeDescription,
|
|
} from 'n8n-workflow';
|
|
|
|
import { router } from './v1/actions/router';
|
|
import { versionDescription } from './v1/actions/versionDescription';
|
|
import { credentialTest, loadOptions } from './v1/methods';
|
|
|
|
export class BambooHr implements INodeType {
|
|
description: INodeTypeDescription;
|
|
|
|
constructor(baseDescription: INodeTypeBaseDescription) {
|
|
this.description = {
|
|
...baseDescription,
|
|
...versionDescription,
|
|
};
|
|
}
|
|
|
|
methods = {
|
|
loadOptions,
|
|
credentialTest,
|
|
};
|
|
|
|
async execute(this: IExecuteFunctions) {
|
|
return [await router.call(this)];
|
|
}
|
|
}
|