n8n-nodes-feegow
Version:
Integração completa da API Feegow para n8n
23 lines • 751 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.FeegowApi = void 0;
class FeegowApi {
constructor() {
this.name = 'feegowApi';
this.displayName = 'Feegow API';
this.documentationUrl = 'https://docs.feegow.com/';
this.properties = [
{
displayName: 'Token (x-access-token)',
name: 'token',
type: 'string',
typeOptions: { password: true },
default: '',
description: 'Token gerado na Feegow (Authorization → x-access-token)',
required: true,
},
];
}
}
exports.FeegowApi = FeegowApi;
//# sourceMappingURL=FeegowApi.credentials.js.map