@charlesaugust44/nubank-api
Version:
This is a package to easily integrate the nubank web api, supporting QRCode login.
40 lines (39 loc) • 1.89 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.EventCategory = void 0;
/**
* transaction: Transação simples
* transaction_reversed: Transação revertida/cancelada
* bill_flow_closed: Fatura fechada
* bill_flow_paid: Fatura paga
* payment: Confirmação de pagamento da fatura
* top_up: Recarga de celular
* bill_flow_on_one_day_to_due_date: Aviso de um dia para vencimento
* anticipate_event: Parcela antecipada,
* customer_password_changed: Senha da conta alterada
* account_limit_set: limite alterado DEPRECATED
* card_activated: Cartão ativado
* customer_device_authorized: Dispositivo autorizado
* due_day_changed: Data de vencimento alterada
* initial_account_limit: Limite inicial da conta
*/
var EventCategory;
(function (EventCategory) {
EventCategory["TRANSACTION"] = "transaction";
EventCategory["TRANSACTION_REVERSED"] = "transaction_reversed";
EventCategory["BILL_CLOSED"] = "bill_flow_closed";
EventCategory["BILL_PAID"] = "bill_flow_paid";
EventCategory["PAYMENT"] = "payment";
EventCategory["TOP_UP"] = "top_up";
EventCategory["ONE_DAY_TO_DUE_DATE"] = "bill_flow_on_one_day_to_due_date";
EventCategory["ANTICIPATE_EVENT"] = "anticipate_event";
EventCategory["PASSWORD_CHANGED"] = "customer_password_changed";
EventCategory["LIMIT_SET"] = "account_limit_set";
EventCategory["CARD_ACTIVATED"] = "card_activated";
EventCategory["DEVICE_AUTHORIZED"] = "customer_device_authorized";
EventCategory["DUE_DATE_CHANGED"] = "due_day_changed";
EventCategory["INITIAL_LIMIT"] = "initial_account_limit";
EventCategory["TUTORIAL"] = "tutorial";
EventCategory["INVITATIONS_CHANGED"] = "customer_invitations_changed";
EventCategory["WELCOME"] = "welcome";
})(EventCategory = exports.EventCategory || (exports.EventCategory = {}));