apify-cli 0.21.0-beta.21 → 0.21.0-beta.23
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 +74 -41
- package/dist/.tsbuildinfo +1 -1
- package/dist/commands/actors/call.d.ts +11 -2
- package/dist/commands/actors/call.d.ts.map +1 -1
- package/dist/commands/actors/call.js.map +1 -1
- package/dist/commands/actors/start.d.ts +18 -0
- package/dist/commands/actors/start.d.ts.map +1 -0
- package/dist/commands/actors/start.js +144 -0
- package/dist/commands/actors/start.js.map +1 -0
- package/dist/typechecking.tsbuildinfo +1 -1
- package/oclif.manifest.json +198 -110
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -292,6 +292,7 @@ This section contains printouts of `apify help` for all commands.
|
|
|
292
292
|
* [`apify actors call [ACTORID]`](#apify-actors-call-actorid)
|
|
293
293
|
* [`apify actors pull [ACTORID]`](#apify-actors-pull-actorid)
|
|
294
294
|
* [`apify actors rm ACTORID`](#apify-actors-rm-actorid)
|
|
295
|
+
* [`apify actors start [ACTORID]`](#apify-actors-start-actorid)
|
|
295
296
|
* [`apify builds`](#apify-builds)
|
|
296
297
|
* [`apify builds create [ACTORID]`](#apify-builds-create-actorid)
|
|
297
298
|
* [`apify builds info BUILDID`](#apify-builds-info-buildid)
|
|
@@ -337,7 +338,7 @@ DESCRIPTION
|
|
|
337
338
|
Commands are designed to be used in Actor runs. All commands are in PoC state, do not use in production environments.
|
|
338
339
|
```
|
|
339
340
|
|
|
340
|
-
_See code: [src/commands/actor/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
341
|
+
_See code: [src/commands/actor/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.23/src/commands/actor/index.ts)_
|
|
341
342
|
|
|
342
343
|
## `apify actor get-input`
|
|
343
344
|
|
|
@@ -351,7 +352,7 @@ DESCRIPTION
|
|
|
351
352
|
Gets the Actor input value from the default key-value store associated with the Actor run.
|
|
352
353
|
```
|
|
353
354
|
|
|
354
|
-
_See code: [src/commands/actor/get-input.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
355
|
+
_See code: [src/commands/actor/get-input.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.23/src/commands/actor/get-input.ts)_
|
|
355
356
|
|
|
356
357
|
## `apify actor get-value KEY`
|
|
357
358
|
|
|
@@ -368,7 +369,7 @@ DESCRIPTION
|
|
|
368
369
|
Gets a value from the default key-value store associated with the Actor run.
|
|
369
370
|
```
|
|
370
371
|
|
|
371
|
-
_See code: [src/commands/actor/get-value.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
372
|
+
_See code: [src/commands/actor/get-value.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.23/src/commands/actor/get-value.ts)_
|
|
372
373
|
|
|
373
374
|
## `apify actor push-data [ITEM]`
|
|
374
375
|
|
|
@@ -390,7 +391,7 @@ DESCRIPTION
|
|
|
390
391
|
$ cat ./test.json | apify actor push-data
|
|
391
392
|
```
|
|
392
393
|
|
|
393
|
-
_See code: [src/commands/actor/push-data.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
394
|
+
_See code: [src/commands/actor/push-data.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.23/src/commands/actor/push-data.ts)_
|
|
394
395
|
|
|
395
396
|
## `apify actor set-value KEY [VALUE]`
|
|
396
397
|
|
|
@@ -419,7 +420,7 @@ DESCRIPTION
|
|
|
419
420
|
$ cat ./my-text-file.txt | apify actor set-value KEY --contentType text/plain
|
|
420
421
|
```
|
|
421
422
|
|
|
422
|
-
_See code: [src/commands/actor/set-value.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
423
|
+
_See code: [src/commands/actor/set-value.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.23/src/commands/actor/set-value.ts)_
|
|
423
424
|
|
|
424
425
|
## `apify actors`
|
|
425
426
|
|
|
@@ -433,7 +434,7 @@ DESCRIPTION
|
|
|
433
434
|
Commands are designed to be used with Actors.
|
|
434
435
|
```
|
|
435
436
|
|
|
436
|
-
_See code: [src/commands/actors/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
437
|
+
_See code: [src/commands/actors/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.23/src/commands/actors/index.ts)_
|
|
437
438
|
|
|
438
439
|
## `apify actors build [ACTORID]`
|
|
439
440
|
|
|
@@ -460,7 +461,7 @@ DESCRIPTION
|
|
|
460
461
|
Creates a new build of the Actor.
|
|
461
462
|
```
|
|
462
463
|
|
|
463
|
-
_See code: [src/commands/actors/build.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
464
|
+
_See code: [src/commands/actors/build.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.23/src/commands/actors/build.ts)_
|
|
464
465
|
|
|
465
466
|
## `apify actors call [ACTORID]`
|
|
466
467
|
|
|
@@ -494,7 +495,7 @@ DESCRIPTION
|
|
|
494
495
|
takes input for the Actor from the default local key-value store by default.
|
|
495
496
|
```
|
|
496
497
|
|
|
497
|
-
_See code: [src/commands/actors/call.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
498
|
+
_See code: [src/commands/actors/call.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.23/src/commands/actors/call.ts)_
|
|
498
499
|
|
|
499
500
|
## `apify actors pull [ACTORID]`
|
|
500
501
|
|
|
@@ -517,7 +518,7 @@ DESCRIPTION
|
|
|
517
518
|
cloned. If it is defined as Web IDE, it will fetch the files.
|
|
518
519
|
```
|
|
519
520
|
|
|
520
|
-
_See code: [src/commands/actors/pull.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
521
|
+
_See code: [src/commands/actors/pull.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.23/src/commands/actors/pull.ts)_
|
|
521
522
|
|
|
522
523
|
## `apify actors rm ACTORID`
|
|
523
524
|
|
|
@@ -534,7 +535,39 @@ DESCRIPTION
|
|
|
534
535
|
Deletes an Actor.
|
|
535
536
|
```
|
|
536
537
|
|
|
537
|
-
_See code: [src/commands/actors/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
538
|
+
_See code: [src/commands/actors/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.23/src/commands/actors/rm.ts)_
|
|
539
|
+
|
|
540
|
+
## `apify actors start [ACTORID]`
|
|
541
|
+
|
|
542
|
+
Runs a specific Actor remotely on the Apify cloud platform and immediately returns information about the run.
|
|
543
|
+
|
|
544
|
+
```
|
|
545
|
+
USAGE
|
|
546
|
+
$ apify actors start [ACTORID] [--json] [-b <value>] [-t <value>] [-m <value>] [-i <value> | --input-file
|
|
547
|
+
<value>]
|
|
548
|
+
|
|
549
|
+
ARGUMENTS
|
|
550
|
+
ACTORID Name or ID of the Actor to run (e.g. "my-actor", "apify/hello-world" or "E2jjCZBezvAZnX8Rb"). If not
|
|
551
|
+
provided, the command runs the remote Actor specified in the ".actor/actor.json" file.
|
|
552
|
+
|
|
553
|
+
FLAGS
|
|
554
|
+
-b, --build=<value> Tag or number of the build to run (e.g. "latest" or "1.2.34").
|
|
555
|
+
-i, --input=<value> Optional JSON input to be given to the Actor.
|
|
556
|
+
-m, --memory=<value> Amount of memory allocated for the Actor run, in megabytes.
|
|
557
|
+
-t, --timeout=<value> Timeout for the Actor run in seconds. Zero value means there is no timeout.
|
|
558
|
+
--input-file=<value> Optional path to a file with JSON input to be given to the Actor. The file must be a valid
|
|
559
|
+
JSON file. You can also specify `-` to read from standard input.
|
|
560
|
+
|
|
561
|
+
GLOBAL FLAGS
|
|
562
|
+
--json Format output as json.
|
|
563
|
+
|
|
564
|
+
DESCRIPTION
|
|
565
|
+
Runs a specific Actor remotely on the Apify cloud platform and immediately returns information about the run.
|
|
566
|
+
The Actor is run under your current Apify account. Therefore you need to be logged in by calling "apify login". It
|
|
567
|
+
takes input for the Actor from the default local key-value store by default.
|
|
568
|
+
```
|
|
569
|
+
|
|
570
|
+
_See code: [src/commands/actors/start.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.23/src/commands/actors/start.ts)_
|
|
538
571
|
|
|
539
572
|
## `apify builds`
|
|
540
573
|
|
|
@@ -548,7 +581,7 @@ DESCRIPTION
|
|
|
548
581
|
Commands are designed to be used with Actor Builds.
|
|
549
582
|
```
|
|
550
583
|
|
|
551
|
-
_See code: [src/commands/builds/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
584
|
+
_See code: [src/commands/builds/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.23/src/commands/builds/index.ts)_
|
|
552
585
|
|
|
553
586
|
## `apify builds create [ACTORID]`
|
|
554
587
|
|
|
@@ -575,7 +608,7 @@ DESCRIPTION
|
|
|
575
608
|
Creates a new build of the Actor.
|
|
576
609
|
```
|
|
577
610
|
|
|
578
|
-
_See code: [src/commands/builds/create.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
611
|
+
_See code: [src/commands/builds/create.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.23/src/commands/builds/create.ts)_
|
|
579
612
|
|
|
580
613
|
## `apify builds info BUILDID`
|
|
581
614
|
|
|
@@ -595,7 +628,7 @@ DESCRIPTION
|
|
|
595
628
|
Prints information about a specific build.
|
|
596
629
|
```
|
|
597
630
|
|
|
598
|
-
_See code: [src/commands/builds/info.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
631
|
+
_See code: [src/commands/builds/info.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.23/src/commands/builds/info.ts)_
|
|
599
632
|
|
|
600
633
|
## `apify builds log BUILDID`
|
|
601
634
|
|
|
@@ -612,7 +645,7 @@ DESCRIPTION
|
|
|
612
645
|
Prints the log of a specific build.
|
|
613
646
|
```
|
|
614
647
|
|
|
615
|
-
_See code: [src/commands/builds/log.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
648
|
+
_See code: [src/commands/builds/log.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.23/src/commands/builds/log.ts)_
|
|
616
649
|
|
|
617
650
|
## `apify builds ls [ACTORID]`
|
|
618
651
|
|
|
@@ -638,7 +671,7 @@ DESCRIPTION
|
|
|
638
671
|
Lists all builds of the Actor.
|
|
639
672
|
```
|
|
640
673
|
|
|
641
|
-
_See code: [src/commands/builds/ls.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
674
|
+
_See code: [src/commands/builds/ls.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.23/src/commands/builds/ls.ts)_
|
|
642
675
|
|
|
643
676
|
## `apify builds rm BUILDID`
|
|
644
677
|
|
|
@@ -655,7 +688,7 @@ DESCRIPTION
|
|
|
655
688
|
Deletes an Actor Build.
|
|
656
689
|
```
|
|
657
690
|
|
|
658
|
-
_See code: [src/commands/builds/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
691
|
+
_See code: [src/commands/builds/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.23/src/commands/builds/rm.ts)_
|
|
659
692
|
|
|
660
693
|
## `apify call [ACTORID]`
|
|
661
694
|
|
|
@@ -689,7 +722,7 @@ DESCRIPTION
|
|
|
689
722
|
takes input for the Actor from the default local key-value store by default.
|
|
690
723
|
```
|
|
691
724
|
|
|
692
|
-
_See code: [src/commands/call.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
725
|
+
_See code: [src/commands/call.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.23/src/commands/call.ts)_
|
|
693
726
|
|
|
694
727
|
## `apify create [ACTORNAME]`
|
|
695
728
|
|
|
@@ -714,7 +747,7 @@ DESCRIPTION
|
|
|
714
747
|
Creates a new Actor project directory from a selected boilerplate template.
|
|
715
748
|
```
|
|
716
749
|
|
|
717
|
-
_See code: [src/commands/create.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
750
|
+
_See code: [src/commands/create.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.23/src/commands/create.ts)_
|
|
718
751
|
|
|
719
752
|
## `apify datasets`
|
|
720
753
|
|
|
@@ -728,7 +761,7 @@ DESCRIPTION
|
|
|
728
761
|
Commands are designed to be used with Datasets.
|
|
729
762
|
```
|
|
730
763
|
|
|
731
|
-
_See code: [src/commands/datasets/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
764
|
+
_See code: [src/commands/datasets/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.23/src/commands/datasets/index.ts)_
|
|
732
765
|
|
|
733
766
|
## `apify help [COMMAND]`
|
|
734
767
|
|
|
@@ -763,7 +796,7 @@ DESCRIPTION
|
|
|
763
796
|
The information is printed to the console.
|
|
764
797
|
```
|
|
765
798
|
|
|
766
|
-
_See code: [src/commands/info.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
799
|
+
_See code: [src/commands/info.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.23/src/commands/info.ts)_
|
|
767
800
|
|
|
768
801
|
## `apify init [ACTORNAME]`
|
|
769
802
|
|
|
@@ -791,7 +824,7 @@ DESCRIPTION
|
|
|
791
824
|
WARNING: The directory at "storage" will be overwritten if it already exists.
|
|
792
825
|
```
|
|
793
826
|
|
|
794
|
-
_See code: [src/commands/init.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
827
|
+
_See code: [src/commands/init.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.23/src/commands/init.ts)_
|
|
795
828
|
|
|
796
829
|
## `apify key-value-stores`
|
|
797
830
|
|
|
@@ -805,7 +838,7 @@ DESCRIPTION
|
|
|
805
838
|
Commands are designed to be used with Key Value Stores.
|
|
806
839
|
```
|
|
807
840
|
|
|
808
|
-
_See code: [src/commands/key-value-stores/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
841
|
+
_See code: [src/commands/key-value-stores/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.23/src/commands/key-value-stores/index.ts)_
|
|
809
842
|
|
|
810
843
|
## `apify login`
|
|
811
844
|
|
|
@@ -826,7 +859,7 @@ DESCRIPTION
|
|
|
826
859
|
"apify" commands. To log out, call "apify logout".
|
|
827
860
|
```
|
|
828
861
|
|
|
829
|
-
_See code: [src/commands/login.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
862
|
+
_See code: [src/commands/login.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.23/src/commands/login.ts)_
|
|
830
863
|
|
|
831
864
|
## `apify logout`
|
|
832
865
|
|
|
@@ -842,7 +875,7 @@ DESCRIPTION
|
|
|
842
875
|
call "apify login".
|
|
843
876
|
```
|
|
844
877
|
|
|
845
|
-
_See code: [src/commands/logout.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
878
|
+
_See code: [src/commands/logout.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.23/src/commands/logout.ts)_
|
|
846
879
|
|
|
847
880
|
## `apify pull [ACTORID]`
|
|
848
881
|
|
|
@@ -865,7 +898,7 @@ DESCRIPTION
|
|
|
865
898
|
cloned. If it is defined as Web IDE, it will fetch the files.
|
|
866
899
|
```
|
|
867
900
|
|
|
868
|
-
_See code: [src/commands/pull.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
901
|
+
_See code: [src/commands/pull.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.23/src/commands/pull.ts)_
|
|
869
902
|
|
|
870
903
|
## `apify push [ACTORID]`
|
|
871
904
|
|
|
@@ -903,7 +936,7 @@ DESCRIPTION
|
|
|
903
936
|
overwritten with --force flag.
|
|
904
937
|
```
|
|
905
938
|
|
|
906
|
-
_See code: [src/commands/push.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
939
|
+
_See code: [src/commands/push.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.23/src/commands/push.ts)_
|
|
907
940
|
|
|
908
941
|
## `apify request-queues`
|
|
909
942
|
|
|
@@ -917,7 +950,7 @@ DESCRIPTION
|
|
|
917
950
|
Commands are designed to be used with Request Queues.
|
|
918
951
|
```
|
|
919
952
|
|
|
920
|
-
_See code: [src/commands/request-queues/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
953
|
+
_See code: [src/commands/request-queues/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.23/src/commands/request-queues/index.ts)_
|
|
921
954
|
|
|
922
955
|
## `apify run`
|
|
923
956
|
|
|
@@ -953,7 +986,7 @@ DESCRIPTION
|
|
|
953
986
|
package.json file. You can set up your own main file or environment variables by changing it.
|
|
954
987
|
```
|
|
955
988
|
|
|
956
|
-
_See code: [src/commands/run.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
989
|
+
_See code: [src/commands/run.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.23/src/commands/run.ts)_
|
|
957
990
|
|
|
958
991
|
## `apify runs`
|
|
959
992
|
|
|
@@ -967,7 +1000,7 @@ DESCRIPTION
|
|
|
967
1000
|
Commands are designed to be used with Actor Runs.
|
|
968
1001
|
```
|
|
969
1002
|
|
|
970
|
-
_See code: [src/commands/runs/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1003
|
+
_See code: [src/commands/runs/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.23/src/commands/runs/index.ts)_
|
|
971
1004
|
|
|
972
1005
|
## `apify runs abort RUNID`
|
|
973
1006
|
|
|
@@ -990,7 +1023,7 @@ DESCRIPTION
|
|
|
990
1023
|
Aborts an Actor Run.
|
|
991
1024
|
```
|
|
992
1025
|
|
|
993
|
-
_See code: [src/commands/runs/abort.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1026
|
+
_See code: [src/commands/runs/abort.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.23/src/commands/runs/abort.ts)_
|
|
994
1027
|
|
|
995
1028
|
## `apify runs info RUNID`
|
|
996
1029
|
|
|
@@ -1013,7 +1046,7 @@ DESCRIPTION
|
|
|
1013
1046
|
Prints information about an Actor Run.
|
|
1014
1047
|
```
|
|
1015
1048
|
|
|
1016
|
-
_See code: [src/commands/runs/info.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1049
|
+
_See code: [src/commands/runs/info.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.23/src/commands/runs/info.ts)_
|
|
1017
1050
|
|
|
1018
1051
|
## `apify runs log RUNID`
|
|
1019
1052
|
|
|
@@ -1030,7 +1063,7 @@ DESCRIPTION
|
|
|
1030
1063
|
Prints the log of a specific run.
|
|
1031
1064
|
```
|
|
1032
1065
|
|
|
1033
|
-
_See code: [src/commands/runs/log.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1066
|
+
_See code: [src/commands/runs/log.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.23/src/commands/runs/log.ts)_
|
|
1034
1067
|
|
|
1035
1068
|
## `apify runs ls [ACTORID]`
|
|
1036
1069
|
|
|
@@ -1056,7 +1089,7 @@ DESCRIPTION
|
|
|
1056
1089
|
Lists all runs of the Actor.
|
|
1057
1090
|
```
|
|
1058
1091
|
|
|
1059
|
-
_See code: [src/commands/runs/ls.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1092
|
+
_See code: [src/commands/runs/ls.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.23/src/commands/runs/ls.ts)_
|
|
1060
1093
|
|
|
1061
1094
|
## `apify runs resurrect RUNID`
|
|
1062
1095
|
|
|
@@ -1076,7 +1109,7 @@ DESCRIPTION
|
|
|
1076
1109
|
Resurrects an aborted or finished Actor Run.
|
|
1077
1110
|
```
|
|
1078
1111
|
|
|
1079
|
-
_See code: [src/commands/runs/resurrect.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1112
|
+
_See code: [src/commands/runs/resurrect.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.23/src/commands/runs/resurrect.ts)_
|
|
1080
1113
|
|
|
1081
1114
|
## `apify runs rm RUNID`
|
|
1082
1115
|
|
|
@@ -1093,7 +1126,7 @@ DESCRIPTION
|
|
|
1093
1126
|
Deletes an Actor Run.
|
|
1094
1127
|
```
|
|
1095
1128
|
|
|
1096
|
-
_See code: [src/commands/runs/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1129
|
+
_See code: [src/commands/runs/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.23/src/commands/runs/rm.ts)_
|
|
1097
1130
|
|
|
1098
1131
|
## `apify secrets`
|
|
1099
1132
|
|
|
@@ -1123,7 +1156,7 @@ DESCRIPTION
|
|
|
1123
1156
|
of the Actor.
|
|
1124
1157
|
```
|
|
1125
1158
|
|
|
1126
|
-
_See code: [src/commands/secrets/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1159
|
+
_See code: [src/commands/secrets/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.23/src/commands/secrets/index.ts)_
|
|
1127
1160
|
|
|
1128
1161
|
## `apify secrets add NAME VALUE`
|
|
1129
1162
|
|
|
@@ -1142,7 +1175,7 @@ DESCRIPTION
|
|
|
1142
1175
|
The secrets are stored to a file at ~/.apify
|
|
1143
1176
|
```
|
|
1144
1177
|
|
|
1145
|
-
_See code: [src/commands/secrets/add.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1178
|
+
_See code: [src/commands/secrets/add.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.23/src/commands/secrets/add.ts)_
|
|
1146
1179
|
|
|
1147
1180
|
## `apify secrets rm NAME`
|
|
1148
1181
|
|
|
@@ -1159,7 +1192,7 @@ DESCRIPTION
|
|
|
1159
1192
|
Removes the secret.
|
|
1160
1193
|
```
|
|
1161
1194
|
|
|
1162
|
-
_See code: [src/commands/secrets/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1195
|
+
_See code: [src/commands/secrets/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.23/src/commands/secrets/rm.ts)_
|
|
1163
1196
|
|
|
1164
1197
|
## `apify task`
|
|
1165
1198
|
|
|
@@ -1173,7 +1206,7 @@ DESCRIPTION
|
|
|
1173
1206
|
Commands are designed to be used to interact with Tasks.
|
|
1174
1207
|
```
|
|
1175
1208
|
|
|
1176
|
-
_See code: [src/commands/task/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1209
|
+
_See code: [src/commands/task/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.23/src/commands/task/index.ts)_
|
|
1177
1210
|
|
|
1178
1211
|
## `apify task run TASKID`
|
|
1179
1212
|
|
|
@@ -1197,7 +1230,7 @@ DESCRIPTION
|
|
|
1197
1230
|
takes input for the Actor from the default local key-value store by default.
|
|
1198
1231
|
```
|
|
1199
1232
|
|
|
1200
|
-
_See code: [src/commands/task/run.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1233
|
+
_See code: [src/commands/task/run.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.23/src/commands/task/run.ts)_
|
|
1201
1234
|
|
|
1202
1235
|
## `apify validate-schema [PATH]`
|
|
1203
1236
|
|
|
@@ -1222,6 +1255,6 @@ DESCRIPTION
|
|
|
1222
1255
|
You can also pass any custom path to your input schema to have it validated instead.
|
|
1223
1256
|
```
|
|
1224
1257
|
|
|
1225
|
-
_See code: [src/commands/validate-schema.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1258
|
+
_See code: [src/commands/validate-schema.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.23/src/commands/validate-schema.ts)_
|
|
1226
1259
|
<!-- commandsstop -->
|
|
1227
1260
|
<!-- prettier-ignore-end -->
|