UNPKG

@lskjs/billing

Version:

LSK.js module for adding billing in cabinet

34 lines (32 loc) 2.64 kB
"use strict"; var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); Object.defineProperty(exports, "__esModule", { value: true }); exports["default"] = void 0; var _createClass2 = _interopRequireDefault(require("@babel/runtime/helpers/createClass")); var _classCallCheck2 = _interopRequireDefault(require("@babel/runtime/helpers/classCallCheck")); var _inherits2 = _interopRequireDefault(require("@babel/runtime/helpers/inherits")); var _possibleConstructorReturn2 = _interopRequireDefault(require("@babel/runtime/helpers/possibleConstructorReturn")); var _getPrototypeOf2 = _interopRequireDefault(require("@babel/runtime/helpers/getPrototypeOf")); var _BillingProvider2 = _interopRequireDefault(require("./BillingProvider")); function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = (0, _getPrototypeOf2["default"])(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = (0, _getPrototypeOf2["default"])(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return (0, _possibleConstructorReturn2["default"])(this, result); }; } function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } } var productionQuoteUrl = 'https://checkout.pay.g2a.com/index/createQuote'; var sandboxQuoteUrl = 'https://checkout.test.pay.g2a.com/index/createQuote'; var productionRedirectUrl = 'https://checkout.pay.g2a.com/index/gateway?token='; var sandboxRedirectUrl = 'https://checkout.test.pay.g2a.com/index/gateway?token='; var productionTransactionDataUrl = 'https://pay.g2a.com/rest/transactions/'; var sandboxTransactionDataUrl = 'https://www.test.pay.g2a.com/rest/transactions/'; // We have realization of this billing provider, just text us https://t.me/lskjs var G2aBillingProvider = /*#__PURE__*/function (_BillingProvider) { (0, _inherits2["default"])(G2aBillingProvider, _BillingProvider); var _super = _createSuper(G2aBillingProvider); function G2aBillingProvider() { (0, _classCallCheck2["default"])(this, G2aBillingProvider); return _super.apply(this, arguments); } return (0, _createClass2["default"])(G2aBillingProvider); }(_BillingProvider2["default"]); exports["default"] = G2aBillingProvider; //# sourceMappingURL=G2aBillingProvider.js.map