@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
10 lines (9 loc) • 326 B
TypeScript
import type { IAuthenticateGeneric, Icon, ICredentialType, INodeProperties } from 'n8n-workflow';
export declare class Oauth2ProxyAuth implements ICredentialType {
name: string;
displayName: string;
genericAuth: boolean;
icon: Icon;
properties: INodeProperties[];
authenticate: IAuthenticateGeneric;
}