2022-11-15 05:57:07 -08:00
|
|
|
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,
|
|
|
|
};
|
|
|
|
}
|
2022-12-02 12:54:28 -08:00
|
|
|
|
2022-11-15 05:57:07 -08:00
|
|
|
methods = {
|
|
|
|
loadOptions,
|
|
|
|
credentialTest,
|
|
|
|
listSearch,
|
|
|
|
};
|
|
|
|
|
|
|
|
async execute(this: IExecuteFunctions) {
|
2022-12-02 12:54:28 -08:00
|
|
|
return router.call(this);
|
2022-11-15 05:57:07 -08:00
|
|
|
}
|
|
|
|
}
|