/** * UptimeRobot Node - Version 1 * Discriminator: resource=maintenanceWindow, operation=getAll */ interface Credentials { uptimeRobotApi: CredentialReference; } /** Get many monitors */ export type UptimeRobotV1MaintenanceWindowGetAllParams = { resource: 'maintenanceWindow'; operation: 'getAll'; /** * Whether to return all results or only up to a given limit * @default false */ returnAll?: boolean | Expression; /** * Max number of results to return * @displayOptions.show { returnAll: [false] } * @default 50 */ limit?: number | Expression; /** * Filters * @default {} */ filters?: { /** Maintenance windows IDs separated with dash, e.g. 236-1782-4790 */ mwindow?: string | Expression | PlaceholderValue; }; }; export type UptimeRobotV1MaintenanceWindowGetAllNode = { type: 'n8n-nodes-base.uptimeRobot'; version: 1; credentials?: Credentials; config: NodeConfig; };