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

40 lines 1.6 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.NextcloudTablesApi = void 0; class NextcloudTablesApi { constructor() { this.name = 'nextcloudTablesApi'; this.displayName = 'Nextcloud Tables API'; this.documentationUrl = 'https://github.com/nextcloud/tables/blob/main/docs/API.md'; this.properties = [ { displayName: 'Nextcloud URL', name: 'serverUrl', type: 'string', default: 'https://cloud.example.com', placeholder: 'https://ihre-nextcloud-instanz.de', description: 'Die URL Ihrer Nextcloud-Instanz (ohne /ocs/v2.php/apps/tables/api/)', }, { displayName: 'Benutzername', name: 'username', type: 'string', default: '', placeholder: 'max.mustermann', description: 'Ihr Nextcloud Benutzername', }, { displayName: 'Passwort oder App Passwort', name: 'password', type: 'string', typeOptions: { password: true, }, default: '', description: 'Ihr Nextcloud Passwort oder ein App-Passwort (empfohlen). Bei 401-Fehlern erstellen Sie ein App-Passwort unter Einstellungen > Sicherheit > App-Passwörter.', }, ]; } } exports.NextcloudTablesApi = NextcloudTablesApi; //# sourceMappingURL=NextcloudTablesApi.credentials.js.map