comic-vine-sdk 1.2.0 → 1.2.1
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 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -34,8 +34,6 @@ There's a good change you may find an issue with the typings in the API response
|
|
|
34
34
|
|
|
35
35
|
## Roadmap
|
|
36
36
|
|
|
37
|
-
- Automatic Pagination
|
|
38
|
-
|
|
39
37
|
- Expandable responses
|
|
40
38
|
|
|
41
39
|
- Cached responses
|
|
@@ -253,7 +251,7 @@ const comicVine = new ComicVine('your-api-key-here');
|
|
|
253
251
|
try {
|
|
254
252
|
const listOptions = {
|
|
255
253
|
filter: { name: 'The Boys' },
|
|
256
|
-
limit,
|
|
254
|
+
limit: 50,
|
|
257
255
|
};
|
|
258
256
|
|
|
259
257
|
let issueNames = [];
|