n8n-nodes-base
Version:
Base nodes of n8n
26 lines (22 loc) • 579 B
text/typescript
/**
* UptimeRobot Node - Version 1
* Discriminator: resource=alertContact, operation=get
*/
interface Credentials {
uptimeRobotApi: CredentialReference;
}
/** Get account details */
export type UptimeRobotV1AlertContactGetParams = {
resource: 'alertContact';
operation: 'get';
/**
* The ID of the alert contact
*/
id?: string | Expression<string> | PlaceholderValue;
};
export type UptimeRobotV1AlertContactGetNode = {
type: 'n8n-nodes-base.uptimeRobot';
version: 1;
credentials?: Credentials;
config: NodeConfig<UptimeRobotV1AlertContactGetParams>;
};