asaaas
Version:
Unofficial Asaas Payment Gateway SDK
39 lines (38 loc) • 1.21 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.InvoicesWebhook = void 0;
var InvoicesWebhook;
(function (InvoicesWebhook) {
/**
* Geração de nova nota fiscal.
*/
InvoicesWebhook["INVOICE_CREATED"] = "INVOICE_CREATED";
/**
* Alteração na nota fiscal.
*/
InvoicesWebhook["INVOICE_UPDATED"] = "INVOICE_UPDATED";
/**
* Nota fiscal enviada para prefeitura.
*/
InvoicesWebhook["INVOICE_SYNCHRONIZED"] = "INVOICE_SYNCHRONIZED";
/**
* Nota fiscal emitida.
*/
InvoicesWebhook["INVOICE_AUTHORIZED"] = "INVOICE_AUTHORIZED";
/**
* Nota fiscal processando cancelamento.
*/
InvoicesWebhook["INVOICE_PROCESSING_CANCELLATION"] = "INVOICE_PROCESSING_CANCELLATION";
/**
* Nota fiscal cancelada.
*/
InvoicesWebhook["INVOICE_CANCELED"] = "INVOICE_CANCELED";
/**
* Recusado o cancelamento da nota fiscal.
*/
InvoicesWebhook["INVOICE_CANCELLATION_DENIED"] = "INVOICE_CANCELLATION_DENIED";
/**
* Nota fiscal com erro.
*/
InvoicesWebhook["INVOICE_ERROR"] = "INVOICE_ERROR";
})(InvoicesWebhook || (exports.InvoicesWebhook = InvoicesWebhook = {}));