/** * UptimeRobot Node - Version 1 * Discriminator: resource=publicStatusPage, operation=get */ interface Credentials { uptimeRobotApi: CredentialReference; } /** Get account details */ export type UptimeRobotV1PublicStatusPageGetParams = { resource: 'publicStatusPage'; operation: 'get'; /** * The ID of the public status page */ id?: string | Expression | PlaceholderValue; }; export type UptimeRobotV1PublicStatusPageGetNode = { type: 'n8n-nodes-base.uptimeRobot'; version: 1; credentials?: Credentials; config: NodeConfig; };