nestjs-khalti
Version:
This is simple wrapper for Khalti Payment extended from @dallotech/nestjs-khalti. It supports ePayment Gateway(NEW) and transaction verification, but later more will be added. Just ping us or open pull request and contribute :)
15 lines • 957 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PaymentMode = exports.KHALTI_VERIFY_URL = exports.KHALTI_LOOKUP_URL = exports.KHALTI_LOOKUP_TEST_URL = exports.KHALTI_PAYMENT_URL = exports.KHALTI_PAYMENT_TEST_URL = exports.KHALTI_CONFIG_OPTIONS = void 0;
exports.KHALTI_CONFIG_OPTIONS = 'KHALTI_CONFIG_OPTIONS';
exports.KHALTI_PAYMENT_TEST_URL = 'https://dev.khalti.com/api/v2/epayment/initiate/';
exports.KHALTI_PAYMENT_URL = 'https://khalti.com/api/v2/epayment/initiate/';
exports.KHALTI_LOOKUP_TEST_URL = 'https://dev.khalti.com/api/v2/epayment/lookup/';
exports.KHALTI_LOOKUP_URL = 'https://khalti.com/api/v2/epayment/lookup/';
exports.KHALTI_VERIFY_URL = 'https://khalti.com/api/v2/payment/verify/';
var PaymentMode;
(function (PaymentMode) {
PaymentMode["TEST"] = "TEST";
PaymentMode["LIVE"] = "LIVE";
})(PaymentMode || (exports.PaymentMode = PaymentMode = {}));
//# sourceMappingURL=khalti.interface.js.map