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

19 lines
351 B
TypeScript
Raw Normal View History

2020-06-30 15:46:45 -07:00
import {
ICredentialType,
INodeProperties,
2020-06-30 15:46:45 -07:00
} from 'n8n-workflow';
export class CircleCiApi implements ICredentialType {
name = 'circleCiApi';
displayName = 'CircleCI API';
documentationUrl = 'circleCi';
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',
type: 'string',
2020-06-30 15:46:45 -07:00
default: '',
},
];
}