n8n-nodes-nextcloud-deck
Version:
n8n Node für die Integration mit Nextcloud Deck - AI Agent Tool Support
20 lines (19 loc) • 1.19 kB
TypeScript
import { IExecuteFunctions, ILoadOptionsFunctions, INodeExecutionData, INodePropertyOptions, INodeType, INodeTypeDescription, INodeListSearchResult } from 'n8n-workflow';
export declare class NextcloudDeck implements INodeType {
description: INodeTypeDescription;
methods: {
loadOptions: {
getBoards(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
getStacks(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
getLabels(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
};
listSearch: {
getBoards(this: ILoadOptionsFunctions, filter?: string): Promise<INodeListSearchResult>;
getStacks(this: ILoadOptionsFunctions, filter?: string): Promise<INodeListSearchResult>;
getCards(this: ILoadOptionsFunctions, filter?: string): Promise<INodeListSearchResult>;
getUsers(this: ILoadOptionsFunctions, filter?: string): Promise<INodeListSearchResult>;
getLabels(this: ILoadOptionsFunctions, filter?: string): Promise<INodeListSearchResult>;
};
};
execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
}