curl-wrap 1.0.2 → 1.0.3

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.
Files changed (2) hide show
  1. package/index.js +0 -3
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -127,9 +127,6 @@ class Curl {
127
127
  timeout: 120 * 1000,
128
128
  // whether to verify ssl certificate
129
129
  ignoreSSLError: true,
130
- // proxy details (should be {address, port, type, auth: {username, password}})
131
- // type can be http, https, socks
132
- proxy: {},
133
130
  // body of the request (valid in case of POST / PUT / PATCH / DELETE)
134
131
  body: '',
135
132
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "curl-wrap",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "Nodejs library that wraps curl command line",
5
5
  "main": "index.js",
6
6
  "repository": {