UNPKG

n8n-nodes-feishu-fork

Version:

n8n custom nodes for n8n to interact with Feishu/Lark, including Lark Bot, Lark MCP, and Lark Trigger.

22 lines (21 loc) 1.48 kB
import { IExecuteFunctions, INodeListSearchResult, ILoadOptionsFunctions, INodeExecutionData, INodeType, INodeTypeDescription } from 'n8n-workflow'; export declare class Lark implements INodeType { description: INodeTypeDescription; methods: { listSearch: { searchBitables(this: ILoadOptionsFunctions): Promise<INodeListSearchResult>; searchFolders(this: ILoadOptionsFunctions): Promise<INodeListSearchResult>; searchTables(this: ILoadOptionsFunctions): Promise<INodeListSearchResult>; searchTableViews(this: ILoadOptionsFunctions): Promise<INodeListSearchResult>; searchTableFields(this: ILoadOptionsFunctions): Promise<INodeListSearchResult>; searchBaseRoles(this: ILoadOptionsFunctions): Promise<INodeListSearchResult>; searchUserIds(this: ILoadOptionsFunctions, query?: string): Promise<INodeListSearchResult>; searchDocuments(this: ILoadOptionsFunctions): Promise<INodeListSearchResult>; searchSpreadsheets(this: ILoadOptionsFunctions): Promise<INodeListSearchResult>; searchFiles(this: ILoadOptionsFunctions): Promise<INodeListSearchResult>; searchCalendars(this: ILoadOptionsFunctions): Promise<INodeListSearchResult>; searchCalendarEvents(this: ILoadOptionsFunctions, query?: string): Promise<INodeListSearchResult>; }; }; execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>; }