UNPKG

n8n-nodes-sevdesk-v2

Version:

n8n community node for SevDesk API v2 integration with 24 production-ready workflow templates. Direct API access without external dependencies - simplified, secure, and optimized for German accounting automation (n8n 1.101.1 compatible).

42 lines (41 loc) 1.29 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.basicsFields = exports.basicsOperations = void 0; exports.basicsOperations = [ { displayName: "Operation", name: "operation", type: "options", noDataExpression: true, displayOptions: { show: { resource: ["basics"], }, }, options: [ { name: "Get Bookkeeping System Version", value: "getBookkeepingSystemVersion", action: "Get the bookkeeping system version", routing: { request: { method: "GET", url: "/Tools/bookkeepingSystemVersion", }, output: { postReceive: [ { type: "rootProperty", properties: { property: "objects", }, }, ], }, }, }, ], default: "getBookkeepingSystemVersion", }, ]; exports.basicsFields = [];