mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
f73100a0bd
* add Hubspot Private App Token Authentication * ⚡ Add credential verification * ⚡ Rename app token Co-authored-by: Rene Wagner <wagner@villacircle.com> Co-authored-by: Jan Oberhauser <janober@users.noreply.github.com>
19 lines
356 B
TypeScript
19 lines
356 B
TypeScript
import {
|
|
ICredentialType,
|
|
INodeProperties,
|
|
} from 'n8n-workflow';
|
|
|
|
export class HubspotAppToken implements ICredentialType {
|
|
name = 'hubspotAppToken';
|
|
displayName = 'Hubspot App Token';
|
|
documentationUrl = 'hubspot';
|
|
properties: INodeProperties[] = [
|
|
{
|
|
displayName: 'APP Token',
|
|
name: 'appToken',
|
|
type: 'string',
|
|
default: '',
|
|
},
|
|
];
|
|
}
|