n8n/packages/nodes-base/nodes/Airtable/v2/AirtableV2.node.ts

32 lines
665 B
TypeScript
Raw Normal View History

2023-07-17 09:42:30 -07:00
import type {
IExecuteFunctions,
INodeType,
INodeTypeDescription,
INodeTypeBaseDescription,
} from 'n8n-workflow';
import { versionDescription } from './actions/versionDescription';
import { router } from './actions/router';
import { listSearch, loadOptions, resourceMapping } from './methods';
export class AirtableV2 implements INodeType {
description: INodeTypeDescription;
constructor(baseDescription: INodeTypeBaseDescription) {
this.description = {
...baseDescription,
...versionDescription,
};
}
methods = {
listSearch,
loadOptions,
resourceMapping,
};
async execute(this: IExecuteFunctions) {
return router.call(this);
}
}