mirror of
https://github.com/n8n-io/n8n.git
synced 2026-05-12 16:10:30 +02:00
20 lines
392 B
TypeScript
20 lines
392 B
TypeScript
import type { ICredentialType, INodeProperties } from 'n8n-workflow';
|
|
|
|
export class CircleCiApi implements ICredentialType {
|
|
name = 'circleCiApi';
|
|
|
|
displayName = 'CircleCI API';
|
|
|
|
documentationUrl = 'circleci';
|
|
|
|
properties: INodeProperties[] = [
|
|
{
|
|
displayName: 'Personal API Token',
|
|
name: 'apiKey',
|
|
type: 'string',
|
|
typeOptions: { password: true },
|
|
default: '',
|
|
},
|
|
];
|
|
}
|