mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
✨ Add Tapfiliate Node (#1399)
* ✨ Tapfiliate Node * ⚡ Improvements * ⚡ Minor improvements to Tapfiliate Node Co-authored-by: Jan Oberhauser <jan.oberhauser@gmail.com>
This commit is contained in:
19
packages/nodes-base/credentials/TapfiliateApi.credentials.ts
Normal file
19
packages/nodes-base/credentials/TapfiliateApi.credentials.ts
Normal file
@@ -0,0 +1,19 @@
|
||||
import {
|
||||
ICredentialType,
|
||||
NodePropertyTypes,
|
||||
} from 'n8n-workflow';
|
||||
|
||||
export class TapfiliateApi implements ICredentialType {
|
||||
name = 'tapfiliateApi';
|
||||
displayName = 'Tapfiliate API';
|
||||
documentationUrl = 'tapfiliate';
|
||||
properties = [
|
||||
{
|
||||
displayName: 'API Key',
|
||||
name: 'apiKey',
|
||||
required: true,
|
||||
type: 'string' as NodePropertyTypes,
|
||||
default: '',
|
||||
},
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user