@contaazul/n8n-nodes-contaazul
Version:
Node for integration with Conta Azul API in n8n
46 lines • 1.52 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ContaAzulOAuth2Api = void 0;
class ContaAzulOAuth2Api {
constructor() {
this.name = 'contaAzulOAuth2Api';
this.displayName = 'Conta Azul OAuth2 API';
this.documentationUrl = 'https://developers.contaazul.com/auth';
this.extends = ['oAuth2Api'];
this.properties = [
{
displayName: 'Client ID',
name: 'clientId',
type: 'string',
default: '',
},
{
displayName: 'Client Secret',
name: 'clientSecret',
type: 'string',
typeOptions: { password: true },
default: '',
},
{
displayName: 'Scope',
name: 'scope',
type: 'string',
default: 'openid profile aws.cognito.signin.user.admin',
},
{
displayName: 'Auth URL',
name: 'authUrl',
type: 'string',
default: 'https://auth.contaazul.com/oauth2/authorize',
},
{
displayName: 'Token URL',
name: 'tokenUrl',
type: 'string',
default: 'https://auth.contaazul.com/oauth2/token',
},
];
}
}
exports.ContaAzulOAuth2Api = ContaAzulOAuth2Api;
//# sourceMappingURL=ContaAzulOAuth2Api.credentials.js.map