Files
Agent-n8n/n8n-n8n-1.109.2/packages/nodes-base/credentials/BitbucketApi.credentials.ts
2025-09-08 04:48:28 +08:00

26 lines
488 B
TypeScript
Executable File

import type { 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',
typeOptions: { password: true },
default: '',
},
];
}