n8n-nodes-base
Version:
Base nodes of n8n
42 lines (38 loc) • 974 B
text/typescript
/**
* UptimeRobot Node - Version 1
* Discriminator: resource=alertContact, operation=getAll
*/
interface Credentials {
uptimeRobotApi: CredentialReference;
}
/** Get many monitors */
export type UptimeRobotV1AlertContactGetAllParams = {
resource: 'alertContact';
operation: 'getAll';
/**
* Whether to return all results or only up to a given limit
* @default false
*/
returnAll?: boolean | Expression<boolean>;
/**
* Max number of results to return
* @displayOptions.show { returnAll: [false] }
* @default 50
*/
limit?: number | Expression<number>;
/**
* Filters
* @default {}
*/
filters?: {
/** Alert contact IDs separated with dash, e.g. 236-1782-4790
*/
alert_contacts?: string | Expression<string> | PlaceholderValue;
};
};
export type UptimeRobotV1AlertContactGetAllNode = {
type: 'n8n-nodes-base.uptimeRobot';
version: 1;
credentials?: Credentials;
config: NodeConfig<UptimeRobotV1AlertContactGetAllParams>;
};