dtamind-components
Version:
DTAmindai Components
27 lines • 1.09 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
class ConfluenceCloudApi {
constructor() {
this.label = 'Confluence Cloud API';
this.name = 'confluenceCloudApi';
this.version = 1.0;
this.description =
'Refer to <a target="_blank" href="https://support.atlassian.com/confluence-cloud/docs/manage-oauth-access-tokens/">official guide</a> on how to get Access Token or <a target="_blank" href="https://id.atlassian.com/manage-profile/security/api-tokens">API Token</a> on Confluence';
this.inputs = [
{
label: 'Access Token',
name: 'accessToken',
type: 'password',
placeholder: '<CONFLUENCE_ACCESS_TOKEN>'
},
{
label: 'Username',
name: 'username',
type: 'string',
placeholder: '<CONFLUENCE_USERNAME>'
}
];
}
}
module.exports = { credClass: ConfluenceCloudApi };
//# sourceMappingURL=ConfluenceCloudApi.credential.js.map