n8n-nodes-efibank
Version:
Nó personalizado para integração com as APIs Cobranças e Pix do Efi Bank, permitindo operações de pagamentos, recebimentos e gerenciamento de transações financeiras.
17 lines • 663 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.notificacaoService = void 0;
const getNotification_1 = require("../endpoints/charge/notification/getNotification");
async function notificacaoService(endpoint, i) {
let requestOptions;
switch (endpoint) {
case 'getNotification':
requestOptions = await (0, getNotification_1.getNotification)(this, i);
break;
default:
throw new Error(`Endpoint de Cartão não implementado: ${endpoint}`);
}
return requestOptions;
}
exports.notificacaoService = notificacaoService;
//# sourceMappingURL=notificacaoService.js.map