Comparing version 0.1.13 to 0.1.14
{ | ||
"name": "redux-nl", | ||
"version": "0.1.13", | ||
"version": "0.1.14", | ||
"description": "A GraphQL inspired rest client side network layer", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
<p align="center"> | ||
<img src="https://raw.githubusercontent.com/aspect-apps/redux-ql/master/assets/thumbnail-dark-redux-ql.png" width="190" height="190"> | ||
<br /> | ||
<a href="https://www.npmjs.com/package/thumbnail-dark-redux-ql" rel="nofollow"> | ||
<img src="https://img.shields.io/npm/v/thumbnail-dark-redux-ql.svg?style=flat-square" alt="version" style="max-width:100%;" /> | ||
</a> | ||
<a href="https://www.npmjs.com/package/thumbnail-dark-redux-ql" rel="nofollow"> | ||
<img src="http://img.shields.io/npm/l/thumbnail-dark-redux-ql.svg?style=flat-square" alt="license" style="max-width:100%;" /> | ||
</a> | ||
<a href="https://www.npmjs.com/package/thumbnail-dark-redux-ql" rel="nofollow"> | ||
<img src="http://img.shields.io/npm/dt/thumbnail-dark-redux-ql.svg?style=flat-square" alt="downloads" style="max-width:100%;" /> | ||
</a> | ||
<a href="https://enjoy.gitstore.app/repositories/aspect-apps/redux-nl"><img src="https://enjoy.gitstore.app/repositories/badge-aspect-apps/redux-nl.svg"></a> | ||
<hr /> | ||
@@ -196,2 +187,2 @@ </p> | ||
- Only supports a single API connection. | ||
- Only supports single path parameter e.g. `"/{user}/orders/{id}"` would break the module. | ||
- Only supports single path parameter e.g. `"/{user}/orders/{id}"` would break the module. |
@@ -29,2 +29,7 @@ /** | ||
// In iOS 13, a GET request is not allowed to have any request body | ||
if (method === "get") { | ||
delete params.data; | ||
} | ||
return Axios(params) | ||
@@ -31,0 +36,0 @@ .then(response => { |
@@ -45,20 +45,3 @@ /** | ||
const url = createRequest.build(pathWithParams, metaInSnakeCase); | ||
// const payload = _mapValues( | ||
// { | ||
// amount: value, | ||
// source, | ||
// use_credits: useCredit, | ||
// campaign_id: campaignId, | ||
// is_gift: isGift, | ||
// gift_name: giftName, | ||
// gift_message: giftMessage, | ||
// gift_send_date: giftDateTime, | ||
// gift_email: giftEmail, | ||
// gift_phone: giftPhone | ||
// }, | ||
// value => (value === "" ? null : value) | ||
// ); | ||
// | ||
createRequest | ||
@@ -65,0 +48,0 @@ .request(baseUrl, method.toLowerCase(), url, payloadInSnakeCase, meta?.headers) |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
35075
583
188