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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
376 B
TypeScript
Raw Normal View History

import type { 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',
typeOptions: { password: true },
default: '',
},
];
}