UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

23 lines 798 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.HttpCustomAuth = void 0; class HttpCustomAuth { name = 'httpCustomAuth'; displayName = 'Custom Auth'; documentationUrl = 'httprequest'; genericAuth = true; icon = 'node:n8n-nodes-base.httpRequest'; properties = [ { displayName: 'JSON', name: 'json', type: 'json', required: true, description: 'Use json to specify authentication values for headers, body and qs.', placeholder: '{ "headers": { "key" : "value" }, "body": { "key": "value" }, "qs": { "key": "value" } }', default: '', }, ]; } exports.HttpCustomAuth = HttpCustomAuth; //# sourceMappingURL=HttpCustomAuth.credentials.js.map