n8n-nodes-netbox
Version:
n8n community node for NetBox API integration with comprehensive DCIM, IPAM, Virtualization, Circuits, Wireless, and data center management operations
29 lines (28 loc) • 780 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.limitOption = exports.returnAllOption = exports.baseProperties = void 0;
exports.baseProperties = {
displayOptions: {
show: {
resource: [], // Overridden by specific resources
domain: [], // Overridden by specific domains
},
},
};
exports.returnAllOption = {
displayName: 'Return All',
name: 'returnAll',
type: 'boolean',
default: false,
description: 'Whether to return all results or only up to a specified limit',
};
exports.limitOption = {
displayName: 'Limit',
name: 'limit',
type: 'number',
typeOptions: {
minValue: 1,
},
default: 50,
description: 'Max number of results to return',
};