bc-checkout-sdk
Version:
BetterCommerce's Checkout NodeJS SDK enables BC client applications to integrate with Checkout merchant API system. It publishes an interface to interact with [Checkout API](https://api-reference.checkout.com/#operation/getPaymentDetails/) endpoints.
23 lines (22 loc) • 795 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Endpoints = void 0;
var Endpoints;
(function (Endpoints) {
let Base;
(function (Base) {
let Auth;
(function (Auth) {
Auth.SANDBOX_URL = "https://access.sandbox.checkout.com";
Auth.PRODUCTION_URL = "https://access.checkout.com";
})(Auth = Base.Auth || (Base.Auth = {}));
;
let Api;
(function (Api) {
Api.SANDBOX_URL = "https://api.sandbox.checkout.com";
Api.PRODUCTION_URL = "https://api.checkout.com";
})(Api = Base.Api || (Base.Api = {}));
;
})(Base = Endpoints.Base || (Endpoints.Base = {}));
;
})(Endpoints = exports.Endpoints || (exports.Endpoints = {}));