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>
This commit is contained in:
Jan
2020-11-25 11:44:50 +01:00
committed by GitHub
parent be828a3808
commit 9f4d6f44cb
7 changed files with 716 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
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',
},
];
}