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
10 lines (9 loc) • 541 B
TypeScript
import { IExecuteFunctions, IDataObject } from 'n8n-workflow';
export interface IRecord {
fields: IDataObject;
}
export interface IBatchCreateOptions {
records: IRecord[];
}
export declare function batchCreate(this: IExecuteFunctions, accessToken: string, appToken: string, tableId: string, options: IBatchCreateOptions): Promise<IDataObject>;
export declare function batchCreateChunked(this: IExecuteFunctions, accessToken: string, appToken: string, tableId: string, records: IRecord[], chunkSize?: number): Promise<IDataObject[]>;