n8n-nodes-innotes
Version:
N8N node for InNotes CRM API integration
35 lines (33 loc) • 803 B
JavaScript
;
/**
* @author Marco Visin
* @date 2025-05-30
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.tagFields = exports.tagOperations = void 0;
exports.tagOperations = [
{
displayName: 'Operation',
name: 'operation',
type: 'options',
noDataExpression: true,
displayOptions: {
show: {
resource: ['tag'],
},
},
options: [
{
name: 'Get All',
value: 'getAll',
description: 'Get all tags',
action: 'Get all tags',
},
],
default: 'getAll',
},
];
exports.tagFields = [
// No additional fields needed for tag operations
];
//# sourceMappingURL=TagDescription.js.map