n8n-nodes-base
Version:
Base nodes of n8n
25 lines • 678 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.BitbucketApi = void 0;
class BitbucketApi {
name = 'bitbucketApi';
displayName = 'Bitbucket API';
documentationUrl = 'bitbucket';
properties = [
{
displayName: 'Username',
name: 'username',
type: 'string',
default: '',
},
{
displayName: 'App Password',
name: 'appPassword',
type: 'string',
typeOptions: { password: true },
default: '',
},
];
}
exports.BitbucketApi = BitbucketApi;
//# sourceMappingURL=BitbucketApi.credentials.js.map