n8n/packages/nodes-base/credentials/OrbitApi.credentials.ts

19 lines
335 B
TypeScript
Raw Normal View History

import {
ICredentialType,
INodeProperties,
} from 'n8n-workflow';
export class OrbitApi implements ICredentialType {
name = 'orbitApi';
displayName = 'Orbit API';
documentationUrl = 'orbit';
properties: INodeProperties[] = [
{
displayName: 'API Token',
name: 'accessToken',
type: 'string',
default: '',
},
];
}