@battle-racing/br-common-lib
Version:
Common library for all Battle Racing Repositorios
15 lines (14 loc) • 377 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PAYMENT_STATUSES = exports.PAYMENT_PROVIDERS = void 0;
exports.PAYMENT_PROVIDERS = {
STRIPE: 'stripe',
PAYPAL: 'paypal',
};
exports.PAYMENT_STATUSES = {
PENDING: 'pending',
COMPLETED: 'completed',
FAILED: 'failed',
REFUNDED: 'refunded',
CANCELLED: 'cancelled',
};