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
13 lines (12 loc) • 470 B
TypeScript
import { IExecuteFunctions, IDataObject } from 'n8n-workflow';
import { IRecord } from './batchCreate';
export interface IUpsertResult {
created: IDataObject[];
updated: IDataObject[];
stats: {
total: number;
created: number;
updated: number;
};
}
export declare function upsertByField(this: IExecuteFunctions, accessToken: string, appToken: string, tableId: string, keyField: string, records: IRecord[]): Promise<IUpsertResult>;