mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
9f4d6f44cb
* ⚡ Improvements to ProfitWell Node ⚡ Improvements to Pro * ⚡ Improvements to ProfitWell-Node * ⚡ improvements simplifying data * ⚡ Small formatting improvement Co-authored-by: ricardo <ricardoespinoza105@gmail.com>
19 lines
396 B
TypeScript
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',
|
|
},
|
|
];
|
|
} |