UNPKG

n8n-nodes-nextcloud-tables

Version:

Production-Ready n8n Node für Nextcloud Tables - Vollständige API-Abdeckung mit erweiterten Filtern, Multi-Column-Sorting, CSV-Import und professioneller Datenvalidierung

25 lines (24 loc) 567 B
import { IExecuteFunctions } from 'n8n-workflow'; export declare class TableHandler { static execute(context: IExecuteFunctions, operation: string, itemIndex: number): Promise<any>; /** * Alle Tabellen abrufen */ private static getAll; /** * Eine spezifische Tabelle abrufen */ private static get; /** * Eine neue Tabelle erstellen */ private static create; /** * Eine Tabelle aktualisieren */ private static update; /** * Eine Tabelle löschen */ private static delete; }