UNPKG

bc-payments-sdk

Version:

BetterCommerce's Payments NodeJS SDK is a complete solution for storefront clients that integrate payments. `bc-payments-sdk` is a single point interface for storefront clients for interacting with payment gateways.

24 lines (23 loc) 869 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.RequestMethod = void 0; /** * Enum {RequestMethod} provides a list of HTTP request methods. * * @ordinal {string} POST - The HTTP POST request method. * @ordinal {string} GET - The HTTP GET request method. * @ordinal {string} HEAD - The HTTP HEAD request method. * @ordinal {string} PUT - The HTTP PUT request method. * @ordinal {string} PATCH - The HTTP PATCH request method. * @ordinal {string} DELETE - The HTTP DELETE request method. */ var RequestMethod; (function (RequestMethod) { RequestMethod["POST"] = "POST"; RequestMethod["GET"] = "GET"; RequestMethod["HEAD"] = "HEAD"; RequestMethod["PUT"] = "PUT"; RequestMethod["PATCH"] = "PATCH"; RequestMethod["DELETE"] = "DELETE"; })(RequestMethod || (exports.RequestMethod = RequestMethod = {})); ;