mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
feat(Hubspot): Add support for Private App Token Authentication
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
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: '',
|
||||
},
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user