mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
3c6f38d045
* 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>
20 lines
353 B
TypeScript
20 lines
353 B
TypeScript
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: '',
|
|
},
|
|
];
|
|
}
|