UNPKG

n8n-nodes-zalo-tools

Version:
31 lines 977 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.N8nApi = void 0; class N8nApi { constructor() { this.name = 'n8nApi'; this.displayName = 'n8n Account Credential'; this.documentationUrl = 'n8n-n8n-api'; this.iconUrl = 'file:./shared/n8n.png'; this.properties = [ { displayName: 'API Key', name: 'apiKey', type: 'string', default: '', description: 'The API key used to authenticate with the n8n API.', required: true, }, { displayName: 'URL', name: 'url', type: 'string', default: 'http://127.0.0.1:5678', description: 'The URL of the n8n instance', required: true, } ]; } } exports.N8nApi = N8nApi; //# sourceMappingURL=N8nApi.credentials.js.map