n8n/packages/nodes-base/credentials/OrbitApi.credentials.ts
Jan 638e688f25
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>
2020-11-03 23:33:10 +01:00

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: '',
},
];
}