apify-cli 1.8.1-beta.0 → 1.8.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.
package/dist/actor.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import{i as e,r as t,t as n}from"./_register-
|
|
2
|
+
import{i as e,r as t,t as n}from"./_register-Do2iXtDB.js";t(`Actor`);for(let e of n)e.registerCommand(`actor`);await e(`actor`);export{};
|
|
3
3
|
//# sourceMappingURL=actor.js.map
|
package/dist/apify.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import{i as e,n as t,r as n}from"./_register-
|
|
2
|
+
import{i as e,n as t,r as n}from"./_register-Do2iXtDB.js";n(`Apify`);for(let e of t)e.registerCommand(`apify`);await e(`apify`);export{};
|
|
3
3
|
//# sourceMappingURL=apify.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "apify-cli",
|
|
3
|
-
"version": "1.8.1-beta.
|
|
3
|
+
"version": "1.8.1-beta.2",
|
|
4
4
|
"description": "Apify command-line interface (CLI) helps you manage the Apify cloud platform and develop, build, and deploy Apify Actors.",
|
|
5
5
|
"exports": "./dist/index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
"@skyra/jaro-winkler": "^1.1.1",
|
|
64
64
|
"adm-zip": "~0.6.0",
|
|
65
65
|
"ajv": "~8.20.0",
|
|
66
|
-
"apify-client": "^2.
|
|
66
|
+
"apify-client": "^2.25.0",
|
|
67
67
|
"archiver": "~8.0.0",
|
|
68
68
|
"axios": "^1.15.0",
|
|
69
69
|
"chalk": "~6.0.0",
|
package/skills/apify/SKILL.md
CHANGED
|
@@ -29,6 +29,7 @@ See https://apify.com/auth.md for how to authenticate. Do not assume `APIFY_TOKE
|
|
|
29
29
|
## Structured output
|
|
30
30
|
|
|
31
31
|
- `--json` is supported on most list/info commands (`apify actors ls --json`, `apify actors info <id> --json`, `apify datasets info <id> --json`, `apify runs ls --json`, etc.). Use it and parse with `jq`; don't scrape the human table.
|
|
32
|
+
- `apify create <name> --template <template> --json` prints `{ dir, actorJsonPath, template, source, nextSteps, postCreate, gitRepositoryInitialized }` on stdout. Everything else goes to stderr, so stdout is safe to pipe into `jq`. `postCreate` is non-null when the template needs extra setup before `apify run` works.
|
|
32
33
|
- List commands paginate — control with `--limit` / `--offset` (and `--desc`).
|
|
33
34
|
- Dataset items: `apify datasets get-items <datasetId> --format json`. Use `--limit` / `--offset`.
|
|
34
35
|
|