n8n/packages/nodes-base/credentials/ProfitWellApi.credentials.ts
Jan 9f4d6f44cb
Add ProfitWell Node (#1204)
*  Improvements to ProfitWell Node

 Improvements to Pro

*  Improvements to ProfitWell-Node

*  improvements simplifying data

*  Small formatting improvement

Co-authored-by: ricardo <ricardoespinoza105@gmail.com>
2020-11-25 11:44:50 +01:00

19 lines
396 B
TypeScript

import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class ProfitWellApi implements ICredentialType {
name = 'profitWellApi';
displayName = 'ProfitWell API';
documentationUrl = 'profitWell';
properties = [
{
displayName: 'API Token',
name: 'accessToken',
type: 'string' as NodePropertyTypes,
default: '',
description: 'Your Private Token',
},
];
}