mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-11 07:04:06 -08:00
26 lines
688 B
TypeScript
26 lines
688 B
TypeScript
|
import { IExecuteFunctions } from 'n8n-core';
|
||
|
import { INodeType, INodeTypeBaseDescription, INodeTypeDescription } from 'n8n-workflow';
|
||
|
import { versionDescription } from './actions/versionDescription';
|
||
|
import { credentialTest, listSearch, loadOptions } from './methods';
|
||
|
import { router } from './actions/router';
|
||
|
|
||
|
export class GoogleSheetsV2 implements INodeType {
|
||
|
description: INodeTypeDescription;
|
||
|
|
||
|
constructor(baseDescription: INodeTypeBaseDescription) {
|
||
|
this.description = {
|
||
|
...baseDescription,
|
||
|
...versionDescription,
|
||
|
};
|
||
|
}
|
||
|
methods = {
|
||
|
loadOptions,
|
||
|
credentialTest,
|
||
|
listSearch,
|
||
|
};
|
||
|
|
||
|
async execute(this: IExecuteFunctions) {
|
||
|
return await router.call(this);
|
||
|
}
|
||
|
}
|