Add Orbit Node (#1123)

*  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>
This commit is contained in:
Jan
2020-11-03 23:33:10 +01:00
committed by GitHub
parent 247fdec745
commit 638e688f25
10 changed files with 2303 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
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: '',
},
];
}