pull:初次提交
This commit is contained in:
21
n8n-n8n-1.109.2/packages/nodes-base/credentials/HarvestApi.credentials.ts
Executable file
21
n8n-n8n-1.109.2/packages/nodes-base/credentials/HarvestApi.credentials.ts
Executable file
@@ -0,0 +1,21 @@
|
||||
import type { ICredentialType, INodeProperties } from 'n8n-workflow';
|
||||
|
||||
export class HarvestApi implements ICredentialType {
|
||||
name = 'harvestApi';
|
||||
|
||||
displayName = 'Harvest API';
|
||||
|
||||
documentationUrl = 'harvest';
|
||||
|
||||
properties: INodeProperties[] = [
|
||||
{
|
||||
displayName: 'Access Token',
|
||||
name: 'accessToken',
|
||||
type: 'string',
|
||||
typeOptions: { password: true },
|
||||
default: '',
|
||||
description:
|
||||
'Visit your account details page, and grab the Access Token. See <a href="https://help.getharvest.com/api-v2/authentication-api/authentication/authentication/">Harvest Personal Access Tokens</a>.',
|
||||
},
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user