mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 22:54:05 -08:00
60d66426ff
* 🔥 Remove Prettier exceptions * 👕 Start linting on formatting * ⚡ Update `format` command * 🎨 Apply formatting
37 lines
696 B
TypeScript
37 lines
696 B
TypeScript
import {
|
|
IAuthenticateGeneric,
|
|
ICredentialTestRequest,
|
|
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: '',
|
|
},
|
|
];
|
|
|
|
authenticate: IAuthenticateGeneric = {
|
|
type: 'generic',
|
|
properties: {
|
|
headers: {
|
|
Authorization: '=Bearer {{$credentials.appToken}}',
|
|
},
|
|
},
|
|
};
|
|
|
|
test: ICredentialTestRequest = {
|
|
request: {
|
|
baseURL: 'https://api.hubapi.com',
|
|
url: '/account-info/v3/details',
|
|
},
|
|
};
|
|
}
|