n8n-nodes-explorium
Version:
Explorium MCP node for n8n
28 lines • 994 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.HttpHeaderAuthApi = void 0;
class HttpHeaderAuthApi {
constructor() {
this.name = 'httpHeaderAuthApi';
this.displayName = 'HTTP Header Auth';
this.documentationUrl = 'https://developers.explorium.ai/';
this.properties = [
{
displayName: 'Authentication Header Name',
name: 'name',
type: 'string',
default: 'Authorization',
description: 'Name of the header to use for authentication',
},
{
displayName: 'Authentication Header Value',
name: 'value',
type: 'string',
default: '',
description: 'Value of the header to use for authentication',
},
];
}
}
exports.HttpHeaderAuthApi = HttpHeaderAuthApi;
//# sourceMappingURL=HttpHeaderAuthApi.credentials.js.map