feat(SeaTable Node): Update node with new options (#11431)

This commit is contained in:
Jon
2025-03-17 14:40:58 +00:00
committed by GitHub
parent 97339eaf73
commit d0fdb11499
46 changed files with 4275 additions and 615 deletions

View File

@@ -0,0 +1,27 @@
import type {
IExecuteFunctions,
INodeType,
INodeTypeDescription,
INodeTypeBaseDescription,
} from 'n8n-workflow';
import { router } from './actions/router';
import { versionDescription } from './actions/SeaTable.node';
import { loadOptions } from './methods';
export class SeaTableV2 implements INodeType {
description: INodeTypeDescription;
constructor(baseDescription: INodeTypeBaseDescription) {
this.description = {
...baseDescription,
...versionDescription,
};
}
methods = { loadOptions };
async execute(this: IExecuteFunctions) {
return await router.call(this);
}
}