@paystack/checkout-js 1.51.0-dev.4 → 1.51.0-dev.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/checkout.js +1 -1
- package/es/checkout.js +1 -1
- package/lib/checkout.js +1 -1
- package/package.json +1 -1
package/dist/checkout.js
CHANGED
|
@@ -13442,7 +13442,7 @@ var Paystack = (function (exports) {
|
|
|
13442
13442
|
}, language && {
|
|
13443
13443
|
'Accept-Language': language
|
|
13444
13444
|
});
|
|
13445
|
-
return axiosInstance.post(url, {
|
|
13445
|
+
return axiosInstance.post(url, null, {
|
|
13446
13446
|
headers: headers
|
|
13447
13447
|
}).then(function (response) {
|
|
13448
13448
|
return ChargeResponses.parse(response.data);
|
package/es/checkout.js
CHANGED
|
@@ -13439,7 +13439,7 @@ var PayPalAPI = {
|
|
|
13439
13439
|
}, language && {
|
|
13440
13440
|
'Accept-Language': language
|
|
13441
13441
|
});
|
|
13442
|
-
return axiosInstance.post(url, {
|
|
13442
|
+
return axiosInstance.post(url, null, {
|
|
13443
13443
|
headers: headers
|
|
13444
13444
|
}).then(function (response) {
|
|
13445
13445
|
return ChargeResponses.parse(response.data);
|
package/lib/checkout.js
CHANGED
|
@@ -13443,7 +13443,7 @@ var PayPalAPI = {
|
|
|
13443
13443
|
}, language && {
|
|
13444
13444
|
'Accept-Language': language
|
|
13445
13445
|
});
|
|
13446
|
-
return axiosInstance.post(url, {
|
|
13446
|
+
return axiosInstance.post(url, null, {
|
|
13447
13447
|
headers: headers
|
|
13448
13448
|
}).then(function (response) {
|
|
13449
13449
|
return ChargeResponses.parse(response.data);
|