UNPKG

n8n-nodes-soaprequest

Version:
35 lines 985 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.SoapApi = void 0; class SoapApi { constructor() { this.name = 'soapApi'; this.displayName = 'SOAP API'; this.properties = [ { displayName: 'Username', name: 'username', type: 'string', default: '', }, { displayName: 'Password', name: 'password', type: 'string', typeOptions: { password: true }, default: '', } ]; this.authenticate = { type: 'generic', properties: { headers: { username: '={{$credentials.username}}', password: '={{$credentials.password}}', }, }, }; } } exports.SoapApi = SoapApi; //# sourceMappingURL=SoapApi.credentials.js.map