UNPKG

n8n-nodes-netsuite-markival

Version:

NetSuite integration node for n8n with SuiteQL, RESTlet, and Raw REST support

15 lines (14 loc) 541 B
import { ICredentialTestRequest, ICredentialType, INodeProperties, IHttpRequestHelper, ICredentialDataDecryptedObject } from 'n8n-workflow'; export declare class NetSuiteOAuth1Api implements ICredentialType { name: string; displayName: string; documentationUrl: string; description: { icon: string; }; properties: INodeProperties[]; preAuthentication(this: IHttpRequestHelper, credentials: ICredentialDataDecryptedObject): Promise<{ authHeader: string; }>; test: ICredentialTestRequest; }