n8n/packages/nodes-base/credentials/UptimeRobotApi.credentials.ts

20 lines
389 B
TypeScript
Raw Normal View History

import { ICredentialType, INodeProperties } from 'n8n-workflow';
export class UptimeRobotApi implements ICredentialType {
name = 'uptimeRobotApi';
displayName = 'Uptime Robot API';
documentationUrl = 'uptimeRobot';
properties: INodeProperties[] = [
{
displayName: 'API Key',
name: 'apiKey',
type: 'string',
typeOptions: { password: true },
default: '',
},
];
}