UNPKG

mercadopago

Version:
10 lines (9 loc) 430 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = create; const restClient_1 = require("../../../utils/restClient"); function create({ body, config }) { return restClient_1.RestClient.fetch('/checkout/preferences/', Object.assign({ method: 'POST', headers: { 'Authorization': `Bearer ${config.accessToken}`, }, body: JSON.stringify(body) }, config.options)); }