mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-14 08:34:07 -08:00
27 lines
637 B
TypeScript
27 lines
637 B
TypeScript
import type { ICredentialType, INodeProperties } from 'n8n-workflow';
|
|
|
|
export class OrbitApi implements ICredentialType {
|
|
name = 'orbitApi';
|
|
|
|
displayName = 'Orbit API';
|
|
|
|
documentationUrl = 'orbit';
|
|
|
|
properties: INodeProperties[] = [
|
|
{
|
|
displayName:
|
|
'Orbit has been shutdown and will no longer function from July 11th, You can read more <a target="_blank" href="https://orbit.love/blog/orbit-is-joining-postman">here</a>.',
|
|
name: 'deprecated',
|
|
type: 'notice',
|
|
default: '',
|
|
},
|
|
{
|
|
displayName: 'API Token',
|
|
name: 'accessToken',
|
|
type: 'string',
|
|
typeOptions: { password: true },
|
|
default: '',
|
|
},
|
|
];
|
|
}
|