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
11 lines (10 loc) • 582 B
TypeScript
import { IExecuteFunctions, IDataObject } from 'n8n-workflow';
export interface IUpdateRecord {
record_id: string;
fields: IDataObject;
}
export interface IBatchUpdateOptions {
records: IUpdateRecord[];
}
export declare function batchUpdate(this: IExecuteFunctions, accessToken: string, appToken: string, tableId: string, options: IBatchUpdateOptions): Promise<IDataObject>;
export declare function batchUpdateChunked(this: IExecuteFunctions, accessToken: string, appToken: string, tableId: string, records: IUpdateRecord[], chunkSize?: number): Promise<IDataObject[]>;