n8n/packages/nodes-base/credentials/BitbucketApi.credentials.ts
Ricardo Espinoza 9e0ba42945 bitbucket trigger
2020-01-05 18:47:55 -05:00

24 lines
439 B
TypeScript

import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class BitbucketApi implements ICredentialType {
name = 'bitbucketApi';
displayName = 'Bitbucket API';
properties = [
{
displayName: 'Username',
name: 'username',
type: 'string' as NodePropertyTypes,
default: '',
},
{
displayName: 'APP Password',
name: 'appPassword',
type: 'string' as NodePropertyTypes,
default: '',
},
];
}