UNPKG

n8n-nodes-a2a

Version:

n8n community node for A2A (Account to Account) transfers, account management, and Google Agent2Agent protocol communication with advanced features including file upload, custom JSON fields, custom requests, and streaming support

47 lines 1.4 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.documentationUrl = 'https://your-docs-url'; 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