2022-07-24 08:36:17 -07:00
|
|
|
import { ICredentialType, INodeProperties } from 'n8n-workflow';
|
2020-06-30 15:46:45 -07:00
|
|
|
|
|
|
|
export class CircleCiApi implements ICredentialType {
|
|
|
|
name = 'circleCiApi';
|
|
|
|
displayName = 'CircleCI API';
|
2020-08-17 05:42:09 -07:00
|
|
|
documentationUrl = 'circleCi';
|
2021-06-12 09:39:55 -07:00
|
|
|
properties: INodeProperties[] = [
|
2020-06-30 15:46:45 -07:00
|
|
|
{
|
2020-07-06 09:18:36 -07:00
|
|
|
displayName: 'Personal API Token',
|
2020-06-30 15:46:45 -07:00
|
|
|
name: 'apiKey',
|
2021-06-12 09:39:55 -07:00
|
|
|
type: 'string',
|
2022-11-01 09:41:45 -07:00
|
|
|
typeOptions: { password: true },
|
2020-06-30 15:46:45 -07:00
|
|
|
default: '',
|
|
|
|
},
|
|
|
|
];
|
|
|
|
}
|