apify 3.7.3-beta.16 → 3.7.3-beta.18
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/dist/actor.d.ts +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -33,7 +33,7 @@ await Actor.setValue('OUTPUT', {
|
|
|
33
33
|
await Actor.exit();
|
|
34
34
|
```
|
|
35
35
|
|
|
36
|
-
> You can also install the [`crawlee`](https://npmjs.
|
|
36
|
+
> You can also install the [`crawlee`](https://www.npmjs.com/package/crawlee) module, as it now provides the crawlers that were previously exported by Apify SDK. If you don't plan to use crawlers in your Actors, then you don't need to install it. Keep in mind that neither `playwright` nor `puppeteer` are bundled with `crawlee` in order to reduce install size and allow greater flexibility. That's why we manually install it with NPM. You can choose one, both, or neither. For more information and example please check [`documentation.`](https://docs.apify.com/sdk/js/docs/concepts/actor-lifecycle#running-crawlee-code-as-an-actor)
|
|
37
37
|
|
|
38
38
|
## Support
|
|
39
39
|
|
package/dist/actor.d.ts
CHANGED
|
@@ -145,7 +145,7 @@ export interface ApifyEnv {
|
|
|
145
145
|
logLevel: string | null;
|
|
146
146
|
logFormat: string | null;
|
|
147
147
|
/**
|
|
148
|
-
* Origin for the Actor run, i.e. how it was started. See [here](https://docs.apify.com/
|
|
148
|
+
* Origin for the Actor run, i.e. how it was started. See [here](https://docs.apify.com/platform/actors/running/runs-and-builds#origin)
|
|
149
149
|
* for more details. (APIFY_META_ORIGIN)
|
|
150
150
|
*/
|
|
151
151
|
metaOrigin: string | null;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "apify",
|
|
3
|
-
"version": "3.7.3-beta.
|
|
3
|
+
"version": "3.7.3-beta.18",
|
|
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": ">=16.0.0"
|
|
@@ -71,7 +71,7 @@
|
|
|
71
71
|
},
|
|
72
72
|
"devDependencies": {
|
|
73
73
|
"@apify/oxlint-config": "^0.2.5",
|
|
74
|
-
"@apify/tsconfig": "^0.
|
|
74
|
+
"@apify/tsconfig": "^0.2.0",
|
|
75
75
|
"@commitlint/config-conventional": "^21.0.0",
|
|
76
76
|
"@playwright/browser-chromium": "^1.60.0",
|
|
77
77
|
"@types/content-type": "^1.1.8",
|