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

25 lines
472 B
TypeScript
Raw Normal View History

2020-01-05 15:47:55 -08:00
import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class BitbucketApi implements ICredentialType {
name = 'bitbucketApi';
displayName = 'Bitbucket API';
documentationUrl = 'bitbucket';
2020-01-05 15:47:55 -08:00
properties = [
{
displayName: 'Username',
name: 'username',
type: 'string' as NodePropertyTypes,
default: '',
},
{
2020-01-06 10:33:22 -08:00
displayName: 'App Password',
2020-01-05 15:47:55 -08:00
name: 'appPassword',
type: 'string' as NodePropertyTypes,
default: '',
},
];
}