UNPKG

n8n-nodes-sshv2

Version:

2 N8N ( Node & AI Agent Tool) for SSH operations Dynamically Configurable parameters NO credentials, including command execution, file uploads, and downloads by Hadidiz, HadidizFlow

46 lines 1.34 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ExampleCredentialsApi = void 0; class ExampleCredentialsApi { constructor() { this.name = 'exampleCredentialsApi'; this.displayName = 'Example Credentials API'; this.properties = [ { displayName: 'User Name', name: 'username', type: 'string', default: '', }, { displayName: 'Password', name: 'password', type: 'string', typeOptions: { password: true, }, default: '', }, ]; this.authenticate = { type: 'generic', properties: { auth: { username: '={{ $credentials.username }}', password: '={{ $credentials.password }}', }, qs: { n8n: 'rocks', }, }, }; this.test = { request: { baseURL: 'https://example.com/', url: '', }, }; } } exports.ExampleCredentialsApi = ExampleCredentialsApi; //# sourceMappingURL=ExampleCredentialsApi.credentials.js.map