rekwest 4.5.1 → 4.5.2
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/README.md +1 -1
- package/package.json +4 -2
package/README.md
CHANGED
|
@@ -123,7 +123,7 @@ console.log(res.body);
|
|
|
123
123
|
* `baseURL` **{string | URL}** The base URL to use in cases where `url` is a relative URL
|
|
124
124
|
* `body` **{string | Array | ArrayBuffer | ArrayBufferView | AsyncIterator | Blob | Buffer | DataView | File |
|
|
125
125
|
FormData | Iterator | Object | Readable | SharedArrayBuffer | URLSearchParams}** The body to send with the request
|
|
126
|
-
* `cookies` **{boolean | Array<[k, v]> | Array<string
|
|
126
|
+
* `cookies` **{boolean | Array<[k, v]> | Array<string\> | Cookies | Object | URLSearchParams}** `Default: true` The
|
|
127
127
|
cookies to add to
|
|
128
128
|
the request
|
|
129
129
|
* `cookiesTTL` **{boolean}** `Default: false` Controls enablement of TTL for the cookies cache
|
package/package.json
CHANGED
|
@@ -31,6 +31,7 @@
|
|
|
31
31
|
],
|
|
32
32
|
"homepage": "https://github.com/bricss/rekwest#readme",
|
|
33
33
|
"keywords": [
|
|
34
|
+
"alpn",
|
|
34
35
|
"backoff",
|
|
35
36
|
"brotli",
|
|
36
37
|
"cookie",
|
|
@@ -48,7 +49,8 @@
|
|
|
48
49
|
"redirect",
|
|
49
50
|
"retry",
|
|
50
51
|
"retry-after",
|
|
51
|
-
"stream"
|
|
52
|
+
"stream",
|
|
53
|
+
"upload"
|
|
52
54
|
],
|
|
53
55
|
"license": "MIT",
|
|
54
56
|
"name": "rekwest",
|
|
@@ -67,5 +69,5 @@
|
|
|
67
69
|
"test:bail": "mocha --bail",
|
|
68
70
|
"test:cover": "c8 --include=src --reporter=lcov --reporter=text npm test"
|
|
69
71
|
},
|
|
70
|
-
"version": "4.5.
|
|
72
|
+
"version": "4.5.2"
|
|
71
73
|
}
|