mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 01:56:46 +00:00
✨ Add OneSimpleAPI Node (#2360)
* Start of OneSimpleAPI Node * Node functionality is complete * ⚡ Improvements to #2357 * ⚡ Add internal feedback * ⚡ Minor improvements Co-authored-by: Jonathan <jonathan.bennetts@gmail.com> Co-authored-by: Jan Oberhauser <jan.oberhauser@gmail.com>
This commit is contained in:
19
packages/nodes-base/credentials/OneSimpleApi.credentials.ts
Normal file
19
packages/nodes-base/credentials/OneSimpleApi.credentials.ts
Normal file
@@ -0,0 +1,19 @@
|
||||
import {
|
||||
ICredentialType,
|
||||
INodeProperties,
|
||||
} from 'n8n-workflow';
|
||||
|
||||
|
||||
export class OneSimpleApi implements ICredentialType {
|
||||
name = 'oneSimpleApi';
|
||||
displayName = 'One Simple API';
|
||||
documentationUrl = 'oneSimpleApi';
|
||||
properties: INodeProperties[] = [
|
||||
{
|
||||
displayName: 'API Token',
|
||||
name: 'apiToken',
|
||||
type: 'string',
|
||||
default: '',
|
||||
},
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user