n8n/packages/nodes-base/credentials/BitbucketApi.credentials.ts
2021-06-12 18:39:55 +02:00

25 lines
447 B
TypeScript

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