Files
n8n_Demo/n8n-n8n-1.109.2/packages/nodes-base/nodes/Google/Sheet/v2/GoogleSheetsV2.node.ts
2025-09-08 04:48:28 +08:00

33 lines
709 B
TypeScript
Executable File

import type {
IExecuteFunctions,
INodeType,
INodeTypeBaseDescription,
INodeTypeDescription,
} from 'n8n-workflow';
import { router } from './actions/router';
import { versionDescription } from './actions/versionDescription';
import { credentialTest, listSearch, loadOptions, resourceMapping } from './methods';
export class GoogleSheetsV2 implements INodeType {
description: INodeTypeDescription;
constructor(baseDescription: INodeTypeBaseDescription) {
this.description = {
...baseDescription,
...versionDescription,
};
}
methods = {
loadOptions,
credentialTest,
listSearch,
resourceMapping,
};
async execute(this: IExecuteFunctions) {
return await router.call(this);
}
}