mirror of
https://github.com/n8n-io/n8n.git
synced 2026-05-12 16:10:30 +02:00
fix(HubSpot Node): Rename HubSpot "App Token" auth to "Service Key" (#28479)
Some checks are pending
CI: Master (Build, Test, Lint) / Build for Github Cache (push) Waiting to run
CI: Master (Build, Test, Lint) / Unit tests (22.x) (push) Waiting to run
CI: Master (Build, Test, Lint) / Unit tests (24.14.1) (push) Waiting to run
CI: Master (Build, Test, Lint) / Unit tests (25.x) (push) Waiting to run
CI: Master (Build, Test, Lint) / Lint (push) Waiting to run
CI: Master (Build, Test, Lint) / Performance (push) Waiting to run
CI: Master (Build, Test, Lint) / Notify Slack on failure (push) Blocked by required conditions
Some checks are pending
CI: Master (Build, Test, Lint) / Build for Github Cache (push) Waiting to run
CI: Master (Build, Test, Lint) / Unit tests (22.x) (push) Waiting to run
CI: Master (Build, Test, Lint) / Unit tests (24.14.1) (push) Waiting to run
CI: Master (Build, Test, Lint) / Unit tests (25.x) (push) Waiting to run
CI: Master (Build, Test, Lint) / Lint (push) Waiting to run
CI: Master (Build, Test, Lint) / Performance (push) Waiting to run
CI: Master (Build, Test, Lint) / Notify Slack on failure (push) Blocked by required conditions
Co-authored-by: Jon <jonathan.bennetts@gmail.com>
This commit is contained in:
parent
ef4bfbfe94
commit
8c3e692174
|
|
@ -8,13 +8,13 @@ import type {
|
|||
export class HubspotAppToken implements ICredentialType {
|
||||
name = 'hubspotAppToken';
|
||||
|
||||
displayName = 'HubSpot App Token';
|
||||
displayName = 'HubSpot Service Key';
|
||||
|
||||
documentationUrl = 'hubspot';
|
||||
|
||||
properties: INodeProperties[] = [
|
||||
{
|
||||
displayName: 'APP Token',
|
||||
displayName: 'Service Key',
|
||||
name: 'appToken',
|
||||
type: 'string',
|
||||
typeOptions: { password: true },
|
||||
|
|
|
|||
|
|
@ -93,7 +93,7 @@ export class HubspotV1 implements INodeType {
|
|||
value: 'apiKey',
|
||||
},
|
||||
{
|
||||
name: 'APP Token',
|
||||
name: 'Service Key',
|
||||
value: 'appToken',
|
||||
},
|
||||
{
|
||||
|
|
|
|||
|
|
@ -98,7 +98,7 @@ export class HubspotV2 implements INodeType {
|
|||
value: 'apiKey',
|
||||
},
|
||||
{
|
||||
name: 'APP Token',
|
||||
name: 'Service Key',
|
||||
value: 'appToken',
|
||||
},
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user