n8n-nodes-larkbase-v3
Version:
n8n node to connect with Larkbase API with UTF-8 support, date filtering, array filter values, text field processing, improved field type handling, pagination fixes, advanced data type conversion, proper date filtering with ExactDate format, updated node
15 lines (14 loc) • 520 B
TypeScript
import { IExecuteFunctions, ILoadOptionsFunctions } from 'n8n-core';
import { INodeExecutionData, INodeType, INodeTypeDescription } from 'n8n-workflow';
export declare class Larkbase implements INodeType {
description: INodeTypeDescription;
methods: {
loadOptions: {
getTableFields(this: ILoadOptionsFunctions): Promise<{
name: string;
value: string;
}[]>;
};
};
execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
}