apify-cli 0.21.0-beta.4 → 0.21.0-beta.6
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 +51 -33
- package/dist/.tsbuildinfo +1 -1
- package/dist/commands/runs/log.d.ts +9 -0
- package/dist/commands/runs/log.d.ts.map +1 -0
- package/dist/commands/runs/log.js +41 -0
- package/dist/commands/runs/log.js.map +1 -0
- package/dist/lib/input_schema.d.ts.map +1 -1
- package/dist/lib/input_schema.js +14 -12
- package/dist/lib/input_schema.js.map +1 -1
- package/dist/typechecking.tsbuildinfo +1 -1
- package/oclif.manifest.json +27 -1
- package/package.json +1 -1
package/oclif.manifest.json
CHANGED
|
@@ -1061,6 +1061,32 @@
|
|
|
1061
1061
|
"index.js"
|
|
1062
1062
|
]
|
|
1063
1063
|
},
|
|
1064
|
+
"runs:log": {
|
|
1065
|
+
"aliases": [],
|
|
1066
|
+
"args": {
|
|
1067
|
+
"runId": {
|
|
1068
|
+
"description": "The run ID to get the log from.",
|
|
1069
|
+
"name": "runId",
|
|
1070
|
+
"required": true
|
|
1071
|
+
}
|
|
1072
|
+
},
|
|
1073
|
+
"description": "Prints the log of a specific run.",
|
|
1074
|
+
"flags": {},
|
|
1075
|
+
"hasDynamicHelp": false,
|
|
1076
|
+
"hiddenAliases": [],
|
|
1077
|
+
"id": "runs:log",
|
|
1078
|
+
"pluginAlias": "apify-cli",
|
|
1079
|
+
"pluginName": "apify-cli",
|
|
1080
|
+
"pluginType": "core",
|
|
1081
|
+
"strict": true,
|
|
1082
|
+
"isESM": true,
|
|
1083
|
+
"relativePath": [
|
|
1084
|
+
"dist",
|
|
1085
|
+
"commands",
|
|
1086
|
+
"runs",
|
|
1087
|
+
"log.js"
|
|
1088
|
+
]
|
|
1089
|
+
},
|
|
1064
1090
|
"runs:ls": {
|
|
1065
1091
|
"aliases": [],
|
|
1066
1092
|
"args": {},
|
|
@@ -1322,5 +1348,5 @@
|
|
|
1322
1348
|
]
|
|
1323
1349
|
}
|
|
1324
1350
|
},
|
|
1325
|
-
"version": "0.21.0-beta.
|
|
1351
|
+
"version": "0.21.0-beta.6"
|
|
1326
1352
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "apify-cli",
|
|
3
|
-
"version": "0.21.0-beta.
|
|
3
|
+
"version": "0.21.0-beta.6",
|
|
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
|
"types": "./dist/index.d.ts",
|