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
33 lines (32 loc) • 883 B
TypeScript
import { IExecuteFunctions } from 'n8n-workflow';
export declare class ImportHandler {
static execute(context: IExecuteFunctions, operation: string, itemIndex: number): Promise<any>;
/**
* CSV-Datei in eine Tabelle importieren
*/
private static importCsv;
/**
* Status eines Imports abrufen
*/
private static getImportStatus;
/**
* Hilfsfunktion: Spalten-Mapping aufbauen
*/
private static buildColumnMapping;
/**
* Hilfsfunktion: CSV-Inhalt validieren
*/
private static validateCsvContent;
/**
* Hilfsfunktion: Trennzeichen validieren
*/
private static validateDelimiter;
/**
* Hilfsfunktion: Import-Optionen validieren
*/
private static validateImportOptions;
/**
* Hilfsfunktion: Spalten-Mapping validieren
*/
private static validateColumnMapping;
}