apify 4.0.0-beta.26 → 4.0.0-beta.28
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/configuration.d.ts +7 -7
- package/package.json +34 -37
package/dist/configuration.d.ts
CHANGED
|
@@ -2,6 +2,13 @@ import type { ConfigField, FieldsInput, FieldsOutput } from '@crawlee/core';
|
|
|
2
2
|
import { Configuration as CoreConfiguration } from '@crawlee/core';
|
|
3
3
|
import { z } from 'zod';
|
|
4
4
|
export declare const apifyConfigFields: {
|
|
5
|
+
maxUsedCpuRatio: ConfigField<z.ZodDefault<z.ZodPreprocess<z.ZodNumber>>>;
|
|
6
|
+
internalTimeoutMillis: ConfigField<z.ZodOptional<z.ZodPreprocess<z.ZodNumber>>>;
|
|
7
|
+
systemInfoIntervalMillis: ConfigField<z.ZodDefault<z.ZodPreprocess<z.ZodNumber>>>;
|
|
8
|
+
logLevel: ConfigField<z.ZodOptional<z.ZodPreprocess<z.ZodEnum<typeof import("@apify/log").LogLevel>>>>;
|
|
9
|
+
persistStorage: ConfigField<z.ZodDefault<z.ZodPreprocess<z.ZodBoolean>>>;
|
|
10
|
+
storageDir: ConfigField<z.ZodDefault<z.ZodString>>;
|
|
11
|
+
containerized: ConfigField<z.ZodOptional<z.ZodPreprocess<z.ZodBoolean>>>;
|
|
5
12
|
defaultDatasetId: ConfigField<z.ZodDefault<z.ZodString>>;
|
|
6
13
|
defaultKeyValueStoreId: ConfigField<z.ZodDefault<z.ZodString>>;
|
|
7
14
|
defaultRequestQueueId: ConfigField<z.ZodDefault<z.ZodString>>;
|
|
@@ -46,13 +53,6 @@ export declare const apifyConfigFields: {
|
|
|
46
53
|
chargedEventCounts: ConfigField<z.ZodOptional<z.ZodString>>;
|
|
47
54
|
actorStoragesJson: ConfigField<z.ZodOptional<z.ZodString>>;
|
|
48
55
|
storageClientOptions: ConfigField<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
49
|
-
maxUsedCpuRatio: ConfigField<z.ZodDefault<z.ZodPreprocess<z.ZodNumber>>>;
|
|
50
|
-
internalTimeoutMillis: ConfigField<z.ZodOptional<z.ZodPreprocess<z.ZodNumber>>>;
|
|
51
|
-
systemInfoIntervalMillis: ConfigField<z.ZodDefault<z.ZodPreprocess<z.ZodNumber>>>;
|
|
52
|
-
logLevel: ConfigField<z.ZodOptional<z.ZodPreprocess<z.ZodEnum<typeof import("@apify/log").LogLevel>>>>;
|
|
53
|
-
persistStorage: ConfigField<z.ZodDefault<z.ZodPreprocess<z.ZodBoolean>>>;
|
|
54
|
-
storageDir: ConfigField<z.ZodDefault<z.ZodString>>;
|
|
55
|
-
containerized: ConfigField<z.ZodOptional<z.ZodPreprocess<z.ZodBoolean>>>;
|
|
56
56
|
};
|
|
57
57
|
export type ApifyConfigurationInput = FieldsInput<typeof apifyConfigFields>;
|
|
58
58
|
export type ApifyResolvedConfigValues = FieldsOutput<typeof apifyConfigFields>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "apify",
|
|
3
|
-
"version": "4.0.0-beta.
|
|
3
|
+
"version": "4.0.0-beta.28",
|
|
4
4
|
"description": "The scalable web crawling and scraping library for JavaScript/Node.js. Enables development of data extraction and web automation jobs (not only) with headless Chrome and Puppeteer.",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": ">=22.0.0"
|
|
@@ -53,48 +53,45 @@
|
|
|
53
53
|
]
|
|
54
54
|
},
|
|
55
55
|
"dependencies": {
|
|
56
|
-
"@apify/consts": "^2.57.
|
|
57
|
-
"@apify/datastructures": "^2.0.
|
|
58
|
-
"@apify/input_secrets": "^1.2.
|
|
59
|
-
"@apify/log": "^2.5.
|
|
60
|
-
"@apify/pseudo_url": "^2.0.
|
|
61
|
-
"@apify/timeout": "^0.4.
|
|
62
|
-
"@apify/utilities": "^2.
|
|
63
|
-
"@crawlee/core": "^4.0.0-
|
|
64
|
-
"@crawlee/types": "^4.0.0-
|
|
65
|
-
"@crawlee/utils": "^4.0.0-
|
|
66
|
-
"apify-client": "^2.
|
|
67
|
-
"minimatch": "^10.
|
|
68
|
-
"semver": "^7.5
|
|
69
|
-
"tslib": "^2.
|
|
70
|
-
"ws": "^8.
|
|
71
|
-
"zod": "^4.
|
|
56
|
+
"@apify/consts": "^2.57.2",
|
|
57
|
+
"@apify/datastructures": "^2.0.6",
|
|
58
|
+
"@apify/input_secrets": "^1.2.56",
|
|
59
|
+
"@apify/log": "^2.5.50",
|
|
60
|
+
"@apify/pseudo_url": "^2.0.91",
|
|
61
|
+
"@apify/timeout": "^0.4.10",
|
|
62
|
+
"@apify/utilities": "^2.35.7",
|
|
63
|
+
"@crawlee/core": "^4.0.0-rc.0",
|
|
64
|
+
"@crawlee/types": "^4.0.0-rc.0",
|
|
65
|
+
"@crawlee/utils": "^4.0.0-rc.0",
|
|
66
|
+
"apify-client": "^2.25.0",
|
|
67
|
+
"minimatch": "^10.2.6",
|
|
68
|
+
"semver": "^7.8.5",
|
|
69
|
+
"tslib": "^2.8.1",
|
|
70
|
+
"ws": "^8.21.3",
|
|
71
|
+
"zod": "^4.4.3"
|
|
72
72
|
},
|
|
73
73
|
"devDependencies": {
|
|
74
74
|
"@apify/oxlint-config": "^0.3.0",
|
|
75
75
|
"@apify/tsconfig": "^0.2.0",
|
|
76
|
-
"@commitlint/config-conventional": "^21.
|
|
77
|
-
"@playwright/browser-chromium": "^1.
|
|
78
|
-
"@types/
|
|
79
|
-
"@types/
|
|
80
|
-
"@types/semver": "^7.5.8",
|
|
76
|
+
"@commitlint/config-conventional": "^21.2.2",
|
|
77
|
+
"@playwright/browser-chromium": "^1.62.1",
|
|
78
|
+
"@types/node": "^26.2.0",
|
|
79
|
+
"@types/semver": "^7.8.0",
|
|
81
80
|
"@types/tough-cookie": "^4.0.5",
|
|
82
|
-
"@types/ws": "^8.
|
|
83
|
-
"commitlint": "^21.
|
|
84
|
-
"crawlee": "^4.0.0-
|
|
85
|
-
"globby": "^16.0.0",
|
|
81
|
+
"@types/ws": "^8.18.1",
|
|
82
|
+
"commitlint": "^21.2.2",
|
|
83
|
+
"crawlee": "^4.0.0-rc.0",
|
|
86
84
|
"husky": "^9.1.7",
|
|
87
|
-
"lint-staged": "^17.
|
|
88
|
-
"oxfmt": "0.
|
|
89
|
-
"oxlint": "1.
|
|
90
|
-
"oxlint-tsgolint": "0.
|
|
91
|
-
"playwright": "^1.
|
|
92
|
-
"puppeteer": "^25.
|
|
93
|
-
"rimraf": "^6.
|
|
94
|
-
"tsx": "^4.
|
|
95
|
-
"typescript": "~
|
|
96
|
-
"
|
|
97
|
-
"vitest": "^4.0.0"
|
|
85
|
+
"lint-staged": "^17.3.0",
|
|
86
|
+
"oxfmt": "0.64.0",
|
|
87
|
+
"oxlint": "1.79.0",
|
|
88
|
+
"oxlint-tsgolint": "7.0.2001",
|
|
89
|
+
"playwright": "^1.62.1",
|
|
90
|
+
"puppeteer": "^25.8.0",
|
|
91
|
+
"rimraf": "^6.1.3",
|
|
92
|
+
"tsx": "^4.23.12",
|
|
93
|
+
"typescript": "~7.0.2",
|
|
94
|
+
"vitest": "^4.1.11"
|
|
98
95
|
},
|
|
99
96
|
"devEngines": {
|
|
100
97
|
"packageManager": {
|