bc-clearpay-sdk
Version:
BetterCommerce's ClearPay NodeJS SDK enables BC client applications to integrate with ClearPay merchant API system. It publishes an interface to interact with [ClearPay API v2](https://developers.clearpay.co.uk/clearpay-online/reference) endpoints.
24 lines (23 loc) • 830 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.RequestMethod = void 0;
/**
* Enum representing HTTP request methods.
*
* @ordinal {string} POST - The HTTP POST method.
* @ordinal {string} GET - The HTTP GET method.
* @ordinal {string} HEAD - The HTTP HEAD method.
* @ordinal {string} PUT - The HTTP PUT method.
* @ordinal {string} PATCH - The HTTP PATCH method.
* @ordinal {string} DELETE - The HTTP DELETE 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 || (exports.RequestMethod = {}));
;