apify-client 2.5.1-beta.1 → 2.5.1-beta.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,3 +1,14 @@
1
+ 2.5.1 / 2022/06/06
2
+ ===================
3
+ - Add methods to list all requests in queue, `requestQueueClient.listRequests()` and `requestQueueClient.paginateRequests()`.
4
+ The paginate requests returns async iterator, you can use it:
5
+ ```
6
+ for await (const page of rqClient.paginateRequests()) {
7
+ // Do something with page.items
8
+ }
9
+ ```
10
+ - Fix ActorRun - correct type for `status`
11
+
1
12
  2.5.0 / 2022/05/23
2
13
  ===================
3
14
  - Add `origin` param to the last actor/task run endpoints
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "apify-client",
3
- "version": "2.5.1-beta.1",
3
+ "version": "2.5.1-beta.2",
4
4
  "description": "Apify API client for JavaScript",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",