apify-cli 0.21.0-beta.43 → 0.21.0-beta.44
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 +69 -45
- package/dist/.tsbuildinfo +1 -1
- package/dist/commands/datasets/get-items.d.ts +17 -0
- package/dist/commands/datasets/get-items.d.ts.map +1 -0
- package/dist/commands/datasets/get-items.js +82 -0
- package/dist/commands/datasets/get-items.js.map +1 -0
- package/dist/typechecking.tsbuildinfo +1 -1
- package/oclif.manifest.json +284 -226
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -304,6 +304,7 @@ This section contains printouts of `apify help` for all commands.
|
|
|
304
304
|
* [`apify call [ACTORID]`](#apify-call-actorid)
|
|
305
305
|
* [`apify create [ACTORNAME]`](#apify-create-actorname)
|
|
306
306
|
* [`apify datasets`](#apify-datasets)
|
|
307
|
+
* [`apify datasets get-items DATASETID`](#apify-datasets-get-items-datasetid)
|
|
307
308
|
* [`apify help [COMMAND]`](#apify-help-command)
|
|
308
309
|
* [`apify info`](#apify-info)
|
|
309
310
|
* [`apify init [ACTORNAME]`](#apify-init-actorname)
|
|
@@ -341,7 +342,7 @@ DESCRIPTION
|
|
|
341
342
|
Commands are designed to be used in Actor runs. All commands are in PoC state, do not use in production environments.
|
|
342
343
|
```
|
|
343
344
|
|
|
344
|
-
_See code: [src/commands/actor/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
345
|
+
_See code: [src/commands/actor/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.44/src/commands/actor/index.ts)_
|
|
345
346
|
|
|
346
347
|
## `apify actor get-input`
|
|
347
348
|
|
|
@@ -355,7 +356,7 @@ DESCRIPTION
|
|
|
355
356
|
Gets the Actor input value from the default key-value store associated with the Actor run.
|
|
356
357
|
```
|
|
357
358
|
|
|
358
|
-
_See code: [src/commands/actor/get-input.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
359
|
+
_See code: [src/commands/actor/get-input.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.44/src/commands/actor/get-input.ts)_
|
|
359
360
|
|
|
360
361
|
## `apify actor get-value KEY`
|
|
361
362
|
|
|
@@ -372,7 +373,7 @@ DESCRIPTION
|
|
|
372
373
|
Gets a value from the default key-value store associated with the Actor run.
|
|
373
374
|
```
|
|
374
375
|
|
|
375
|
-
_See code: [src/commands/actor/get-value.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
376
|
+
_See code: [src/commands/actor/get-value.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.44/src/commands/actor/get-value.ts)_
|
|
376
377
|
|
|
377
378
|
## `apify actor push-data [ITEM]`
|
|
378
379
|
|
|
@@ -394,7 +395,7 @@ DESCRIPTION
|
|
|
394
395
|
$ cat ./test.json | apify actor push-data
|
|
395
396
|
```
|
|
396
397
|
|
|
397
|
-
_See code: [src/commands/actor/push-data.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
398
|
+
_See code: [src/commands/actor/push-data.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.44/src/commands/actor/push-data.ts)_
|
|
398
399
|
|
|
399
400
|
## `apify actor set-value KEY [VALUE]`
|
|
400
401
|
|
|
@@ -423,7 +424,7 @@ DESCRIPTION
|
|
|
423
424
|
$ cat ./my-text-file.txt | apify actor set-value KEY --contentType text/plain
|
|
424
425
|
```
|
|
425
426
|
|
|
426
|
-
_See code: [src/commands/actor/set-value.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
427
|
+
_See code: [src/commands/actor/set-value.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.44/src/commands/actor/set-value.ts)_
|
|
427
428
|
|
|
428
429
|
## `apify actors`
|
|
429
430
|
|
|
@@ -437,7 +438,7 @@ DESCRIPTION
|
|
|
437
438
|
Commands are designed to be used with Actors.
|
|
438
439
|
```
|
|
439
440
|
|
|
440
|
-
_See code: [src/commands/actors/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
441
|
+
_See code: [src/commands/actors/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.44/src/commands/actors/index.ts)_
|
|
441
442
|
|
|
442
443
|
## `apify actors build [ACTORID]`
|
|
443
444
|
|
|
@@ -464,7 +465,7 @@ DESCRIPTION
|
|
|
464
465
|
Creates a new build of the Actor.
|
|
465
466
|
```
|
|
466
467
|
|
|
467
|
-
_See code: [src/commands/actors/build.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
468
|
+
_See code: [src/commands/actors/build.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.44/src/commands/actors/build.ts)_
|
|
468
469
|
|
|
469
470
|
## `apify actors call [ACTORID]`
|
|
470
471
|
|
|
@@ -498,7 +499,7 @@ DESCRIPTION
|
|
|
498
499
|
takes input for the Actor from the default local key-value store by default.
|
|
499
500
|
```
|
|
500
501
|
|
|
501
|
-
_See code: [src/commands/actors/call.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
502
|
+
_See code: [src/commands/actors/call.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.44/src/commands/actors/call.ts)_
|
|
502
503
|
|
|
503
504
|
## `apify actors ls`
|
|
504
505
|
|
|
@@ -521,7 +522,7 @@ DESCRIPTION
|
|
|
521
522
|
Lists all recently ran Actors or your own Actors.
|
|
522
523
|
```
|
|
523
524
|
|
|
524
|
-
_See code: [src/commands/actors/ls.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
525
|
+
_See code: [src/commands/actors/ls.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.44/src/commands/actors/ls.ts)_
|
|
525
526
|
|
|
526
527
|
## `apify actors pull [ACTORID]`
|
|
527
528
|
|
|
@@ -544,7 +545,7 @@ DESCRIPTION
|
|
|
544
545
|
cloned. If it is defined as Web IDE, it will fetch the files.
|
|
545
546
|
```
|
|
546
547
|
|
|
547
|
-
_See code: [src/commands/actors/pull.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
548
|
+
_See code: [src/commands/actors/pull.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.44/src/commands/actors/pull.ts)_
|
|
548
549
|
|
|
549
550
|
## `apify actors push [ACTORID]`
|
|
550
551
|
|
|
@@ -580,7 +581,7 @@ DESCRIPTION
|
|
|
580
581
|
overwritten with --force flag.
|
|
581
582
|
```
|
|
582
583
|
|
|
583
|
-
_See code: [src/commands/actors/push.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
584
|
+
_See code: [src/commands/actors/push.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.44/src/commands/actors/push.ts)_
|
|
584
585
|
|
|
585
586
|
## `apify actors rm ACTORID`
|
|
586
587
|
|
|
@@ -597,7 +598,7 @@ DESCRIPTION
|
|
|
597
598
|
Deletes an Actor.
|
|
598
599
|
```
|
|
599
600
|
|
|
600
|
-
_See code: [src/commands/actors/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
601
|
+
_See code: [src/commands/actors/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.44/src/commands/actors/rm.ts)_
|
|
601
602
|
|
|
602
603
|
## `apify actors start [ACTORID]`
|
|
603
604
|
|
|
@@ -629,7 +630,7 @@ DESCRIPTION
|
|
|
629
630
|
takes input for the Actor from the default local key-value store by default.
|
|
630
631
|
```
|
|
631
632
|
|
|
632
|
-
_See code: [src/commands/actors/start.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
633
|
+
_See code: [src/commands/actors/start.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.44/src/commands/actors/start.ts)_
|
|
633
634
|
|
|
634
635
|
## `apify builds`
|
|
635
636
|
|
|
@@ -643,7 +644,7 @@ DESCRIPTION
|
|
|
643
644
|
Commands are designed to be used with Actor Builds.
|
|
644
645
|
```
|
|
645
646
|
|
|
646
|
-
_See code: [src/commands/builds/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
647
|
+
_See code: [src/commands/builds/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.44/src/commands/builds/index.ts)_
|
|
647
648
|
|
|
648
649
|
## `apify builds create [ACTORID]`
|
|
649
650
|
|
|
@@ -670,7 +671,7 @@ DESCRIPTION
|
|
|
670
671
|
Creates a new build of the Actor.
|
|
671
672
|
```
|
|
672
673
|
|
|
673
|
-
_See code: [src/commands/builds/create.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
674
|
+
_See code: [src/commands/builds/create.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.44/src/commands/builds/create.ts)_
|
|
674
675
|
|
|
675
676
|
## `apify builds info BUILDID`
|
|
676
677
|
|
|
@@ -690,7 +691,7 @@ DESCRIPTION
|
|
|
690
691
|
Prints information about a specific build.
|
|
691
692
|
```
|
|
692
693
|
|
|
693
|
-
_See code: [src/commands/builds/info.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
694
|
+
_See code: [src/commands/builds/info.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.44/src/commands/builds/info.ts)_
|
|
694
695
|
|
|
695
696
|
## `apify builds log BUILDID`
|
|
696
697
|
|
|
@@ -707,7 +708,7 @@ DESCRIPTION
|
|
|
707
708
|
Prints the log of a specific build.
|
|
708
709
|
```
|
|
709
710
|
|
|
710
|
-
_See code: [src/commands/builds/log.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
711
|
+
_See code: [src/commands/builds/log.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.44/src/commands/builds/log.ts)_
|
|
711
712
|
|
|
712
713
|
## `apify builds ls [ACTORID]`
|
|
713
714
|
|
|
@@ -733,7 +734,7 @@ DESCRIPTION
|
|
|
733
734
|
Lists all builds of the Actor.
|
|
734
735
|
```
|
|
735
736
|
|
|
736
|
-
_See code: [src/commands/builds/ls.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
737
|
+
_See code: [src/commands/builds/ls.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.44/src/commands/builds/ls.ts)_
|
|
737
738
|
|
|
738
739
|
## `apify builds rm BUILDID`
|
|
739
740
|
|
|
@@ -750,7 +751,7 @@ DESCRIPTION
|
|
|
750
751
|
Deletes an Actor Build.
|
|
751
752
|
```
|
|
752
753
|
|
|
753
|
-
_See code: [src/commands/builds/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
754
|
+
_See code: [src/commands/builds/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.44/src/commands/builds/rm.ts)_
|
|
754
755
|
|
|
755
756
|
## `apify call [ACTORID]`
|
|
756
757
|
|
|
@@ -784,7 +785,7 @@ DESCRIPTION
|
|
|
784
785
|
takes input for the Actor from the default local key-value store by default.
|
|
785
786
|
```
|
|
786
787
|
|
|
787
|
-
_See code: [src/commands/call.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
788
|
+
_See code: [src/commands/call.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.44/src/commands/call.ts)_
|
|
788
789
|
|
|
789
790
|
## `apify create [ACTORNAME]`
|
|
790
791
|
|
|
@@ -809,7 +810,7 @@ DESCRIPTION
|
|
|
809
810
|
Creates a new Actor project directory from a selected boilerplate template.
|
|
810
811
|
```
|
|
811
812
|
|
|
812
|
-
_See code: [src/commands/create.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
813
|
+
_See code: [src/commands/create.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.44/src/commands/create.ts)_
|
|
813
814
|
|
|
814
815
|
## `apify datasets`
|
|
815
816
|
|
|
@@ -823,7 +824,30 @@ DESCRIPTION
|
|
|
823
824
|
Commands are designed to be used with Datasets.
|
|
824
825
|
```
|
|
825
826
|
|
|
826
|
-
_See code: [src/commands/datasets/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
827
|
+
_See code: [src/commands/datasets/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.44/src/commands/datasets/index.ts)_
|
|
828
|
+
|
|
829
|
+
## `apify datasets get-items DATASETID`
|
|
830
|
+
|
|
831
|
+
Exports the items present in a Dataset.
|
|
832
|
+
|
|
833
|
+
```
|
|
834
|
+
USAGE
|
|
835
|
+
$ apify datasets get-items DATASETID [--limit <value>] [--offset <value>] [--format json|jsonl|csv|html|rss|xml|xlsx]
|
|
836
|
+
|
|
837
|
+
ARGUMENTS
|
|
838
|
+
DATASETID The ID of the Dataset to export the items for
|
|
839
|
+
|
|
840
|
+
FLAGS
|
|
841
|
+
--format=<option> [default: json] The format of the returned output. By default, it is set to 'json'
|
|
842
|
+
<options: json|jsonl|csv|html|rss|xml|xlsx>
|
|
843
|
+
--limit=<value> The amount of elements to get from the dataset. By default, it will return all available items.
|
|
844
|
+
--offset=<value> The offset in the dataset where to start getting items.
|
|
845
|
+
|
|
846
|
+
DESCRIPTION
|
|
847
|
+
Exports the items present in a Dataset.
|
|
848
|
+
```
|
|
849
|
+
|
|
850
|
+
_See code: [src/commands/datasets/get-items.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.44/src/commands/datasets/get-items.ts)_
|
|
827
851
|
|
|
828
852
|
## `apify help [COMMAND]`
|
|
829
853
|
|
|
@@ -858,7 +882,7 @@ DESCRIPTION
|
|
|
858
882
|
The information is printed to the console.
|
|
859
883
|
```
|
|
860
884
|
|
|
861
|
-
_See code: [src/commands/info.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
885
|
+
_See code: [src/commands/info.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.44/src/commands/info.ts)_
|
|
862
886
|
|
|
863
887
|
## `apify init [ACTORNAME]`
|
|
864
888
|
|
|
@@ -886,7 +910,7 @@ DESCRIPTION
|
|
|
886
910
|
WARNING: The directory at "storage" will be overwritten if it already exists.
|
|
887
911
|
```
|
|
888
912
|
|
|
889
|
-
_See code: [src/commands/init.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
913
|
+
_See code: [src/commands/init.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.44/src/commands/init.ts)_
|
|
890
914
|
|
|
891
915
|
## `apify key-value-stores`
|
|
892
916
|
|
|
@@ -902,7 +926,7 @@ DESCRIPTION
|
|
|
902
926
|
Aliases: kvs
|
|
903
927
|
```
|
|
904
928
|
|
|
905
|
-
_See code: [src/commands/key-value-stores/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
929
|
+
_See code: [src/commands/key-value-stores/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.44/src/commands/key-value-stores/index.ts)_
|
|
906
930
|
|
|
907
931
|
## `apify key-value-stores get-value KEYVALUESTOREID ITEMKEY`
|
|
908
932
|
|
|
@@ -923,7 +947,7 @@ DESCRIPTION
|
|
|
923
947
|
Gets a value by key in the given key-value store.
|
|
924
948
|
```
|
|
925
949
|
|
|
926
|
-
_See code: [src/commands/key-value-stores/get-value.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
950
|
+
_See code: [src/commands/key-value-stores/get-value.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.44/src/commands/key-value-stores/get-value.ts)_
|
|
927
951
|
|
|
928
952
|
## `apify login`
|
|
929
953
|
|
|
@@ -944,7 +968,7 @@ DESCRIPTION
|
|
|
944
968
|
"apify" commands. To log out, call "apify logout".
|
|
945
969
|
```
|
|
946
970
|
|
|
947
|
-
_See code: [src/commands/login.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
971
|
+
_See code: [src/commands/login.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.44/src/commands/login.ts)_
|
|
948
972
|
|
|
949
973
|
## `apify logout`
|
|
950
974
|
|
|
@@ -960,7 +984,7 @@ DESCRIPTION
|
|
|
960
984
|
call "apify login".
|
|
961
985
|
```
|
|
962
986
|
|
|
963
|
-
_See code: [src/commands/logout.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
987
|
+
_See code: [src/commands/logout.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.44/src/commands/logout.ts)_
|
|
964
988
|
|
|
965
989
|
## `apify pull [ACTORID]`
|
|
966
990
|
|
|
@@ -983,7 +1007,7 @@ DESCRIPTION
|
|
|
983
1007
|
cloned. If it is defined as Web IDE, it will fetch the files.
|
|
984
1008
|
```
|
|
985
1009
|
|
|
986
|
-
_See code: [src/commands/pull.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1010
|
+
_See code: [src/commands/pull.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.44/src/commands/pull.ts)_
|
|
987
1011
|
|
|
988
1012
|
## `apify push [ACTORID]`
|
|
989
1013
|
|
|
@@ -1019,7 +1043,7 @@ DESCRIPTION
|
|
|
1019
1043
|
overwritten with --force flag.
|
|
1020
1044
|
```
|
|
1021
1045
|
|
|
1022
|
-
_See code: [src/commands/push.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1046
|
+
_See code: [src/commands/push.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.44/src/commands/push.ts)_
|
|
1023
1047
|
|
|
1024
1048
|
## `apify request-queues`
|
|
1025
1049
|
|
|
@@ -1033,7 +1057,7 @@ DESCRIPTION
|
|
|
1033
1057
|
Commands are designed to be used with Request Queues.
|
|
1034
1058
|
```
|
|
1035
1059
|
|
|
1036
|
-
_See code: [src/commands/request-queues/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1060
|
+
_See code: [src/commands/request-queues/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.44/src/commands/request-queues/index.ts)_
|
|
1037
1061
|
|
|
1038
1062
|
## `apify run`
|
|
1039
1063
|
|
|
@@ -1069,7 +1093,7 @@ DESCRIPTION
|
|
|
1069
1093
|
package.json file. You can set up your own main file or environment variables by changing it.
|
|
1070
1094
|
```
|
|
1071
1095
|
|
|
1072
|
-
_See code: [src/commands/run.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1096
|
+
_See code: [src/commands/run.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.44/src/commands/run.ts)_
|
|
1073
1097
|
|
|
1074
1098
|
## `apify runs`
|
|
1075
1099
|
|
|
@@ -1083,7 +1107,7 @@ DESCRIPTION
|
|
|
1083
1107
|
Commands are designed to be used with Actor Runs.
|
|
1084
1108
|
```
|
|
1085
1109
|
|
|
1086
|
-
_See code: [src/commands/runs/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1110
|
+
_See code: [src/commands/runs/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.44/src/commands/runs/index.ts)_
|
|
1087
1111
|
|
|
1088
1112
|
## `apify runs abort RUNID`
|
|
1089
1113
|
|
|
@@ -1106,7 +1130,7 @@ DESCRIPTION
|
|
|
1106
1130
|
Aborts an Actor Run.
|
|
1107
1131
|
```
|
|
1108
1132
|
|
|
1109
|
-
_See code: [src/commands/runs/abort.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1133
|
+
_See code: [src/commands/runs/abort.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.44/src/commands/runs/abort.ts)_
|
|
1110
1134
|
|
|
1111
1135
|
## `apify runs info RUNID`
|
|
1112
1136
|
|
|
@@ -1129,7 +1153,7 @@ DESCRIPTION
|
|
|
1129
1153
|
Prints information about an Actor Run.
|
|
1130
1154
|
```
|
|
1131
1155
|
|
|
1132
|
-
_See code: [src/commands/runs/info.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1156
|
+
_See code: [src/commands/runs/info.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.44/src/commands/runs/info.ts)_
|
|
1133
1157
|
|
|
1134
1158
|
## `apify runs log RUNID`
|
|
1135
1159
|
|
|
@@ -1146,7 +1170,7 @@ DESCRIPTION
|
|
|
1146
1170
|
Prints the log of a specific run.
|
|
1147
1171
|
```
|
|
1148
1172
|
|
|
1149
|
-
_See code: [src/commands/runs/log.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1173
|
+
_See code: [src/commands/runs/log.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.44/src/commands/runs/log.ts)_
|
|
1150
1174
|
|
|
1151
1175
|
## `apify runs ls [ACTORID]`
|
|
1152
1176
|
|
|
@@ -1172,7 +1196,7 @@ DESCRIPTION
|
|
|
1172
1196
|
Lists all runs of the Actor.
|
|
1173
1197
|
```
|
|
1174
1198
|
|
|
1175
|
-
_See code: [src/commands/runs/ls.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1199
|
+
_See code: [src/commands/runs/ls.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.44/src/commands/runs/ls.ts)_
|
|
1176
1200
|
|
|
1177
1201
|
## `apify runs resurrect RUNID`
|
|
1178
1202
|
|
|
@@ -1192,7 +1216,7 @@ DESCRIPTION
|
|
|
1192
1216
|
Resurrects an aborted or finished Actor Run.
|
|
1193
1217
|
```
|
|
1194
1218
|
|
|
1195
|
-
_See code: [src/commands/runs/resurrect.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1219
|
+
_See code: [src/commands/runs/resurrect.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.44/src/commands/runs/resurrect.ts)_
|
|
1196
1220
|
|
|
1197
1221
|
## `apify runs rm RUNID`
|
|
1198
1222
|
|
|
@@ -1209,7 +1233,7 @@ DESCRIPTION
|
|
|
1209
1233
|
Deletes an Actor Run.
|
|
1210
1234
|
```
|
|
1211
1235
|
|
|
1212
|
-
_See code: [src/commands/runs/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1236
|
+
_See code: [src/commands/runs/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.44/src/commands/runs/rm.ts)_
|
|
1213
1237
|
|
|
1214
1238
|
## `apify secrets`
|
|
1215
1239
|
|
|
@@ -1239,7 +1263,7 @@ DESCRIPTION
|
|
|
1239
1263
|
of the Actor.
|
|
1240
1264
|
```
|
|
1241
1265
|
|
|
1242
|
-
_See code: [src/commands/secrets/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1266
|
+
_See code: [src/commands/secrets/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.44/src/commands/secrets/index.ts)_
|
|
1243
1267
|
|
|
1244
1268
|
## `apify secrets add NAME VALUE`
|
|
1245
1269
|
|
|
@@ -1258,7 +1282,7 @@ DESCRIPTION
|
|
|
1258
1282
|
The secrets are stored to a file at ~/.apify
|
|
1259
1283
|
```
|
|
1260
1284
|
|
|
1261
|
-
_See code: [src/commands/secrets/add.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1285
|
+
_See code: [src/commands/secrets/add.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.44/src/commands/secrets/add.ts)_
|
|
1262
1286
|
|
|
1263
1287
|
## `apify secrets rm NAME`
|
|
1264
1288
|
|
|
@@ -1275,7 +1299,7 @@ DESCRIPTION
|
|
|
1275
1299
|
Removes the secret.
|
|
1276
1300
|
```
|
|
1277
1301
|
|
|
1278
|
-
_See code: [src/commands/secrets/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1302
|
+
_See code: [src/commands/secrets/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.44/src/commands/secrets/rm.ts)_
|
|
1279
1303
|
|
|
1280
1304
|
## `apify task`
|
|
1281
1305
|
|
|
@@ -1289,7 +1313,7 @@ DESCRIPTION
|
|
|
1289
1313
|
Commands are designed to be used to interact with Tasks.
|
|
1290
1314
|
```
|
|
1291
1315
|
|
|
1292
|
-
_See code: [src/commands/task/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1316
|
+
_See code: [src/commands/task/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.44/src/commands/task/index.ts)_
|
|
1293
1317
|
|
|
1294
1318
|
## `apify task run TASKID`
|
|
1295
1319
|
|
|
@@ -1313,7 +1337,7 @@ DESCRIPTION
|
|
|
1313
1337
|
takes input for the Actor from the default local key-value store by default.
|
|
1314
1338
|
```
|
|
1315
1339
|
|
|
1316
|
-
_See code: [src/commands/task/run.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1340
|
+
_See code: [src/commands/task/run.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.44/src/commands/task/run.ts)_
|
|
1317
1341
|
|
|
1318
1342
|
## `apify validate-schema [PATH]`
|
|
1319
1343
|
|
|
@@ -1338,6 +1362,6 @@ DESCRIPTION
|
|
|
1338
1362
|
You can also pass any custom path to your input schema to have it validated instead.
|
|
1339
1363
|
```
|
|
1340
1364
|
|
|
1341
|
-
_See code: [src/commands/validate-schema.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1365
|
+
_See code: [src/commands/validate-schema.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.44/src/commands/validate-schema.ts)_
|
|
1342
1366
|
<!-- commandsstop -->
|
|
1343
1367
|
<!-- prettier-ignore-end -->
|