mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-21 11:49:59 +00:00
✨ 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:
19
packages/nodes-base/credentials/ProfitWellApi.credentials.ts
Normal file
19
packages/nodes-base/credentials/ProfitWellApi.credentials.ts
Normal 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',
|
||||
},
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user