2022-07-24 08:36:17 -07:00
|
|
|
import { ICredentialType, INodeProperties } from 'n8n-workflow';
|
2020-08-04 06:48:05 -07:00
|
|
|
|
|
|
|
export class TravisCiApi implements ICredentialType {
|
|
|
|
name = 'travisCiApi';
|
2022-12-02 12:54:28 -08:00
|
|
|
|
2020-08-04 06:48:05 -07:00
|
|
|
displayName = 'Travis API';
|
2022-12-02 12:54:28 -08:00
|
|
|
|
2020-08-17 05:42:09 -07:00
|
|
|
documentationUrl = 'travisCi';
|
2022-12-02 12:54:28 -08:00
|
|
|
|
2021-06-12 09:39:55 -07:00
|
|
|
properties: INodeProperties[] = [
|
2020-08-04 06:48:05 -07:00
|
|
|
{
|
|
|
|
displayName: 'API Token',
|
|
|
|
name: 'apiToken',
|
2021-06-12 09:39:55 -07:00
|
|
|
type: 'string',
|
2020-08-04 06:48:05 -07:00
|
|
|
default: '',
|
|
|
|
},
|
|
|
|
];
|
|
|
|
}
|