UNPKG

n8n-nodes-outseta

Version:

n8n community node for Outseta CRM integration - manage people, accounts, and deals

17 lines (16 loc) 475 B
import type { ICredentialType, INodeProperties, ICredentialTestRequest } from 'n8n-workflow'; export declare class OutsetaApiCredentialsApi implements ICredentialType { name: string; displayName: string; documentationUrl: string; properties: INodeProperties[]; authenticate: { type: "generic"; properties: { headers: { Authorization: string; }; }; }; test: ICredentialTestRequest; }