UNPKG

n8n-nodes-api-key-validator

Version:

N8N Community Node for validating API keys, tokens and sensitive authentication data

24 lines (23 loc) 712 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ApiKeyCredentials = void 0; class ApiKeyCredentials { constructor() { this.name = 'apiKeyCredentials'; this.displayName = 'API Key Credentials'; this.documentationUrl = 'https://docs.n8n.io/credentials/'; this.properties = [ { displayName: 'API Key', name: 'apiKey', type: 'string', typeOptions: { password: true, }, default: '', description: 'Your secret API key', }, ]; } } exports.ApiKeyCredentials = ApiKeyCredentials;