apify-cli 1.0.0-beta.92 → 1.0.0-beta.94

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.
@@ -726,7 +726,90 @@
726
726
  "secrets",
727
727
  "rm.js"
728
728
  ]
729
+ },
730
+ "task": {
731
+ "aliases": [],
732
+ "args": {},
733
+ "description": "Commands are designed to be used to interact with Tasks.",
734
+ "flags": {},
735
+ "hasDynamicHelp": false,
736
+ "hiddenAliases": [],
737
+ "id": "task",
738
+ "pluginAlias": "apify-cli",
739
+ "pluginName": "apify-cli",
740
+ "pluginType": "core",
741
+ "strict": true,
742
+ "isESM": true,
743
+ "relativePath": [
744
+ "dist",
745
+ "commands",
746
+ "task",
747
+ "index.js"
748
+ ]
749
+ },
750
+ "task:run": {
751
+ "aliases": [],
752
+ "args": {
753
+ "taskId": {
754
+ "description": "Name or ID of the Task to run (e.g. \"my-task\" or \"E2jjCZBezvAZnX8Rb\").",
755
+ "name": "taskId",
756
+ "required": true
757
+ }
758
+ },
759
+ "description": "Runs a specific Actor remotely on the Apify cloud platform.\nThe Actor is run under your current Apify account. Therefore you need to be logged in by calling \"apify login\". It takes input for the Actor from the default local key-value store by default.",
760
+ "flags": {
761
+ "build": {
762
+ "char": "b",
763
+ "description": "Tag or number of the build to run (e.g. \"latest\" or \"1.2.34\").",
764
+ "name": "build",
765
+ "required": false,
766
+ "hasDynamicHelp": false,
767
+ "multiple": false,
768
+ "type": "option"
769
+ },
770
+ "timeout": {
771
+ "char": "t",
772
+ "description": "Timeout for the Task run in seconds. Zero value means there is no timeout.",
773
+ "name": "timeout",
774
+ "required": false,
775
+ "hasDynamicHelp": false,
776
+ "multiple": false,
777
+ "type": "option"
778
+ },
779
+ "memory": {
780
+ "char": "m",
781
+ "description": "Amount of memory allocated for the Task run, in megabytes.",
782
+ "name": "memory",
783
+ "required": false,
784
+ "hasDynamicHelp": false,
785
+ "multiple": false,
786
+ "type": "option"
787
+ },
788
+ "wait-for-finish": {
789
+ "char": "w",
790
+ "description": "Seconds for waiting to run to finish, if no value passed, it waits forever.",
791
+ "name": "wait-for-finish",
792
+ "required": false,
793
+ "hasDynamicHelp": false,
794
+ "multiple": false,
795
+ "type": "option"
796
+ }
797
+ },
798
+ "hasDynamicHelp": false,
799
+ "hiddenAliases": [],
800
+ "id": "task:run",
801
+ "pluginAlias": "apify-cli",
802
+ "pluginName": "apify-cli",
803
+ "pluginType": "core",
804
+ "strict": true,
805
+ "isESM": true,
806
+ "relativePath": [
807
+ "dist",
808
+ "commands",
809
+ "task",
810
+ "run.js"
811
+ ]
729
812
  }
730
813
  },
731
- "version": "1.0.0-beta.92"
814
+ "version": "1.0.0-beta.94"
732
815
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "apify-cli",
3
- "version": "1.0.0-beta.92",
3
+ "version": "1.0.0-beta.94",
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",
@@ -147,7 +147,7 @@
147
147
  },
148
148
  "volta": {
149
149
  "node": "20.14.0",
150
- "yarn": "4.2.2"
150
+ "yarn": "4.3.0"
151
151
  },
152
- "packageManager": "yarn@4.2.2"
152
+ "packageManager": "yarn@4.3.0"
153
153
  }