@rxap/n8n-utilities
Version:
This package provides utility functions and classes for n8n nodes, including custom authentication methods (Bearer Auth, Oauth2 Proxy Auth, Base URL), a decorator for capturing execution errors, and base classes for creating nodes from OpenAPI specificati
21 lines • 581 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.BaseUrl = void 0;
class BaseUrl {
constructor() {
this.name = 'baseUrl';
this.displayName = 'Base URL';
this.genericAuth = true;
this.icon = 'node:n8n-nodes-base.httpRequest';
this.properties = [
{
displayName: 'Base URL',
name: 'baseUrl',
type: 'string',
default: '',
}
];
}
}
exports.BaseUrl = BaseUrl;
//# sourceMappingURL=BaseUrl.credentials.js.map