n8n-nodes-arubacentral
Version:
n8n community node for Aruba Central API integration with comprehensive monitoring, configuration, and management capabilities
31 lines (30 loc) • 860 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.inventoryDomainOperations = exports.inventoryResources = void 0;
// Import resource operations
const devices_operations_1 = require("./devices/devices.operations");
// Define the inventory domain resources
exports.inventoryResources = {
displayName: 'Resource',
name: 'resource',
type: 'options',
noDataExpression: true,
displayOptions: {
show: {
domain: ['inventory'],
},
},
options: [
{
name: 'Devices',
value: 'devices',
description: 'Work with device inventory',
},
],
default: 'devices',
};
// Combine all inventory domain operations
exports.inventoryDomainOperations = [
exports.inventoryResources,
...devices_operations_1.devicesOperations,
];