UNPKG

n8n-nodes-arubacentral

Version:

n8n community node for Aruba Central API integration with comprehensive monitoring, configuration, and management capabilities

10 lines (9 loc) 242 B
export interface IDataObject { [key: string]: any; } export interface IPaginatedParameters { returnAll?: boolean; limit?: number; } export type ResourceType = 'ap' | 'sites' | 'labels'; export type OperationType = 'list' | 'get';