mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
638e688f25
* ✨ Add Orbit node * 🔨 Refactor and add new functionality * ⚡ Improvements to Orbit-Node * ⚡ Improvements * ⚡ Minor improvements to Orbit-Node Co-authored-by: Tanay Pant <tanaypant@protonmail.com> Co-authored-by: ricardo <ricardoespinoza105@gmail.com>
19 lines
339 B
TypeScript
19 lines
339 B
TypeScript
import {
|
|
ICredentialType,
|
|
NodePropertyTypes,
|
|
} from 'n8n-workflow';
|
|
|
|
export class OrbitApi implements ICredentialType {
|
|
name = 'orbitApi';
|
|
displayName = 'Orbit API';
|
|
documentationUrl = 'orbit';
|
|
properties = [
|
|
{
|
|
displayName: 'API Token',
|
|
name: 'accessToken',
|
|
type: 'string' as NodePropertyTypes,
|
|
default: '',
|
|
},
|
|
];
|
|
}
|