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).
43 lines (42 loc) • 1.25 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.countryFields = exports.countryOperations = void 0;
exports.countryOperations = [
{
displayName: "Operation",
name: "operation",
type: "options",
default: "getMany",
noDataExpression: true,
displayOptions: {
show: {
resource: ["country"],
},
},
options: [
{
name: "Get Many",
value: "getMany",
action: "Gets many countries",
description: "Gets many countries",
routing: {
request: {
method: "GET",
url: "/StaticCountry",
},
output: {
postReceive: [
{
type: "rootProperty",
properties: {
property: "objects",
},
},
],
},
},
},
],
},
];
exports.countryFields = [];