apify-client 2.7.1 → 2.7.2-beta.0
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/dist/resource_clients/actor.d.ts +1 -1
- package/package.json +104 -104
|
@@ -160,7 +160,7 @@ export interface ActorStartOptions {
|
|
|
160
160
|
/**
|
|
161
161
|
* Specifies maximum number of items that the actor run should return.
|
|
162
162
|
* This is used by pay per result actors to limit the maximum number of results that will be charged to customer.
|
|
163
|
-
* Value can be accessed in actor run using `
|
|
163
|
+
* Value can be accessed in actor run using `ACTOR_MAX_PAID_DATASET_ITEMS` environment variable.
|
|
164
164
|
*/
|
|
165
165
|
maxItems?: number;
|
|
166
166
|
}
|
package/package.json
CHANGED
|
@@ -1,106 +1,106 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
2
|
+
"name": "apify-client",
|
|
3
|
+
"version": "2.7.2-beta.0",
|
|
4
|
+
"description": "Apify API client for JavaScript",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"module": "dist/index.mjs",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
"./package.json": "./package.json",
|
|
10
|
+
".": {
|
|
11
|
+
"import": "./dist/index.mjs",
|
|
12
|
+
"require": "./dist/index.js",
|
|
13
|
+
"types": "./dist/index.d.ts"
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
"keywords": [
|
|
17
|
+
"apify",
|
|
18
|
+
"api",
|
|
19
|
+
"apifier",
|
|
20
|
+
"crawler",
|
|
21
|
+
"scraper"
|
|
22
|
+
],
|
|
23
|
+
"author": {
|
|
24
|
+
"name": "Apify",
|
|
25
|
+
"email": "support@apify.com",
|
|
26
|
+
"url": "https://apify.com"
|
|
27
|
+
},
|
|
28
|
+
"contributors": [
|
|
29
|
+
"Jan Curn <jan@apify.com>",
|
|
30
|
+
"Marek Trunkát <marek@apify.com>",
|
|
31
|
+
"Ondra Urban <ondra@apify.com>",
|
|
32
|
+
"Jakub Drobník <jakub.drobnik@apify.com>"
|
|
33
|
+
],
|
|
34
|
+
"license": "Apache-2.0",
|
|
35
|
+
"repository": {
|
|
36
|
+
"type": "git",
|
|
37
|
+
"url": "git+https://github.com/apify/apify-client-js"
|
|
38
|
+
},
|
|
39
|
+
"bugs": {
|
|
40
|
+
"url": "https://github.com/apify/apify-client-js/issues"
|
|
41
|
+
},
|
|
42
|
+
"homepage": "https://docs.apify.com/api/client/js/",
|
|
43
|
+
"files": [
|
|
44
|
+
"dist",
|
|
45
|
+
"!dist/*.tsbuildinfo",
|
|
46
|
+
"!dist/bundle.js"
|
|
47
|
+
],
|
|
48
|
+
"scripts": {
|
|
49
|
+
"build": "npm run clean && npm run build:node && npm run build:browser",
|
|
50
|
+
"postbuild": "gen-esm-wrapper dist/index.js dist/index.mjs",
|
|
51
|
+
"prepublishOnly": "(test $CI || (echo \"Publishing is reserved to CI!\"; exit 1))",
|
|
52
|
+
"clean": "rimraf dist",
|
|
53
|
+
"test": "npm run build && jest",
|
|
54
|
+
"lint": "eslint src test --ext js,jsx,mjs,ts",
|
|
55
|
+
"lint:fix": "eslint src test --ext js,jsx,mjs,ts --fix",
|
|
56
|
+
"build:node": "tsc",
|
|
57
|
+
"build:browser": "webpack"
|
|
58
|
+
},
|
|
59
|
+
"dependencies": {
|
|
60
|
+
"@apify/consts": "^2.9.0",
|
|
61
|
+
"@apify/log": "^2.2.6",
|
|
62
|
+
"@crawlee/types": "^3.3.0",
|
|
63
|
+
"agentkeepalive": "^4.2.1",
|
|
64
|
+
"async-retry": "^1.3.3",
|
|
65
|
+
"axios": "^0.21.1",
|
|
66
|
+
"content-type": "^1.0.5",
|
|
67
|
+
"ow": "^0.28.2",
|
|
68
|
+
"tslib": "^2.5.0",
|
|
69
|
+
"type-fest": "^3.6.1"
|
|
70
|
+
},
|
|
71
|
+
"devDependencies": {
|
|
72
|
+
"@apify/eslint-config-ts": "^0.2.3",
|
|
73
|
+
"@apify/tsconfig": "^0.1.0",
|
|
74
|
+
"@babel/cli": "^7.21.0",
|
|
75
|
+
"@babel/core": "^7.21.0",
|
|
76
|
+
"@babel/preset-env": "^7.20.2",
|
|
77
|
+
"@babel/register": "^7.21.0",
|
|
78
|
+
"@crawlee/puppeteer": "^3.2.2",
|
|
79
|
+
"@types/async-retry": "^1.4.5",
|
|
80
|
+
"@types/content-type": "^1.1.5",
|
|
81
|
+
"@types/express": "^4.17.17",
|
|
82
|
+
"@types/fs-extra": "^11.0.1",
|
|
83
|
+
"@types/jest": "^29.4.0",
|
|
84
|
+
"@types/node": "^18.14.4",
|
|
85
|
+
"@typescript-eslint/eslint-plugin": "^5.54.0",
|
|
86
|
+
"@typescript-eslint/parser": "^5.54.0",
|
|
87
|
+
"babel-loader": "^9.1.2",
|
|
88
|
+
"body-parser": "^1.19.0",
|
|
89
|
+
"compression": "^1.7.4",
|
|
90
|
+
"eslint": "^8.35.0",
|
|
91
|
+
"express": "^4.18.2",
|
|
92
|
+
"fs-extra": "^11.1.0",
|
|
93
|
+
"gen-esm-wrapper": "^1.1.2",
|
|
94
|
+
"jest": "^29.4.3",
|
|
95
|
+
"process": "^0.11.10",
|
|
96
|
+
"puppeteer": "^20.0.0",
|
|
97
|
+
"rimraf": "^5.0.0",
|
|
98
|
+
"terser-webpack-plugin": "^5.3.6",
|
|
99
|
+
"ts-jest": "^29.0.5",
|
|
100
|
+
"ts-loader": "^9.4.2",
|
|
101
|
+
"ts-node": "^10.9.1",
|
|
102
|
+
"typescript": "^5.0.0",
|
|
103
|
+
"webpack": "^5.75.0",
|
|
104
|
+
"webpack-cli": "^5.0.1"
|
|
105
|
+
}
|
|
106
106
|
}
|