2023-01-27 03:22:44 -08:00
import type { ICredentialType , INodeProperties } from 'n8n-workflow' ;
2020-11-03 14:33:10 -08:00
export class OrbitApi implements ICredentialType {
name = 'orbitApi' ;
2022-12-02 12:54:28 -08:00
2020-11-03 14:33:10 -08:00
displayName = 'Orbit API' ;
2022-12-02 12:54:28 -08:00
2020-11-03 14:33:10 -08:00
documentationUrl = 'orbit' ;
2022-12-02 12:54:28 -08:00
2021-06-12 09:39:55 -07:00
properties : INodeProperties [ ] = [
2024-07-10 00:30:49 -07:00
{
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 : '' ,
} ,
2020-11-03 14:33:10 -08:00
{
displayName : 'API Token' ,
name : 'accessToken' ,
2021-06-12 09:39:55 -07:00
type : 'string' ,
2022-11-01 09:41:45 -07:00
typeOptions : { password : true } ,
2020-11-03 14:33:10 -08:00
default : '' ,
} ,
] ;
}