UNPKG

n8n-nodes-arubacentral

Version:

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

13 lines (10 loc) 272 B
// ArubaCentral/shared/interfaces.ts export interface IDataObject { [key: string]: any; } export interface IPaginatedParameters { returnAll?: boolean; limit?: number; } export type ResourceType = 'ap' | 'sites' | 'labels'; export type OperationType = 'list' | 'get';