@skriptfabrik/n8n-nodes-otto-market
Version:
OTTO Market nodes for n8n
14 lines (13 loc) • 579 B
TypeScript
import type { Icon, IAuthenticateGeneric, ICredentialDataDecryptedObject, ICredentialTestRequest, ICredentialType, IHttpRequestHelper, INodeProperties } from 'n8n-workflow';
export declare class OttoMarketApi implements ICredentialType {
name: string;
displayName: string;
icon: Icon;
documentationUrl: string;
properties: INodeProperties[];
preAuthentication(this: IHttpRequestHelper, credentials: ICredentialDataDecryptedObject): Promise<{
accessToken: string;
}>;
authenticate: IAuthenticateGeneric;
test: ICredentialTestRequest;
}