n8n/packages/nodes-base/nodes/Google/Drive/v2/GoogleDriveV2.node.ts
2023-06-27 11:51:41 +03:00

29 lines
669 B
TypeScript

/* eslint-disable n8n-nodes-base/node-filename-against-convention */
import type {
IExecuteFunctions,
INodeType,
INodeTypeBaseDescription,
INodeTypeDescription,
} from 'n8n-workflow';
import { versionDescription } from './actions/versionDescription';
import { listSearch } from './methods';
import { router } from './actions/router';
export class GoogleDriveV2 implements INodeType {
description: INodeTypeDescription;
constructor(baseDescription: INodeTypeBaseDescription) {
this.description = {
...baseDescription,
...versionDescription,
};
}
methods = { listSearch };
async execute(this: IExecuteFunctions) {
return router.call(this);
}
}