apify-cli 0.21.0-beta.55 → 0.21.0-beta.57
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/CHANGELOG.md +2 -0
- package/README.md +83 -58
- package/dist/.tsbuildinfo +1 -1
- package/dist/commands/actors/info.d.ts +22 -0
- package/dist/commands/actors/info.d.ts.map +1 -0
- package/dist/commands/actors/info.js +201 -0
- package/dist/commands/actors/info.js.map +1 -0
- package/dist/typechecking.tsbuildinfo +1 -1
- package/oclif.manifest.json +54 -1
- package/package.json +5 -4
package/CHANGELOG.md
CHANGED
|
@@ -25,6 +25,8 @@ All notable changes to this project will be documented in this file.
|
|
|
25
25
|
- `key-value-stores get-value` ([#678](https://github.com/apify/apify-cli/pull/678)) ([67cfefe](https://github.com/apify/apify-cli/commit/67cfefef88fac220a1c959aaaecf3d051e482236)) by [@vladfrangu](https://github.com/vladfrangu)
|
|
26
26
|
- `datasets get-items` ([#679](https://github.com/apify/apify-cli/pull/679)) ([b521546](https://github.com/apify/apify-cli/commit/b521546df195bab7bedf5534167b6edae6a5e69e)) by [@vladfrangu](https://github.com/vladfrangu)
|
|
27
27
|
- `datasets` / `key-value-stores` commands ([#685](https://github.com/apify/apify-cli/pull/685)) ([c7d77e1](https://github.com/apify/apify-cli/commit/c7d77e1cec711edd9996cbb1249e489fbf3db547)) by [@vladfrangu](https://github.com/vladfrangu)
|
|
28
|
+
- Key-value-store commands ([#700](https://github.com/apify/apify-cli/pull/700)) ([eb8ff3b](https://github.com/apify/apify-cli/commit/eb8ff3b9c7f1319d0937543f7b0b97cb25d6390a)) by [@vladfrangu](https://github.com/vladfrangu)
|
|
29
|
+
- `actors info` ([#701](https://github.com/apify/apify-cli/pull/701)) ([0f4b3f0](https://github.com/apify/apify-cli/commit/0f4b3f08dd5937ca6664342c2510a9f4f3fa52f6)) by [@vladfrangu](https://github.com/vladfrangu)
|
|
28
30
|
|
|
29
31
|
### 🐛 Bug Fixes
|
|
30
32
|
|
package/README.md
CHANGED
|
@@ -290,6 +290,7 @@ This section contains printouts of `apify help` for all commands.
|
|
|
290
290
|
* [`apify actors`](#apify-actors)
|
|
291
291
|
* [`apify actors build [ACTORID]`](#apify-actors-build-actorid)
|
|
292
292
|
* [`apify actors call [ACTORID]`](#apify-actors-call-actorid)
|
|
293
|
+
* [`apify actors info ACTORID`](#apify-actors-info-actorid)
|
|
293
294
|
* [`apify actors ls`](#apify-actors-ls)
|
|
294
295
|
* [`apify actors pull [ACTORID]`](#apify-actors-pull-actorid)
|
|
295
296
|
* [`apify actors push [ACTORID]`](#apify-actors-push-actorid)
|
|
@@ -354,7 +355,7 @@ DESCRIPTION
|
|
|
354
355
|
Commands are designed to be used in Actor runs. All commands are in PoC state, do not use in production environments.
|
|
355
356
|
```
|
|
356
357
|
|
|
357
|
-
_See code: [src/commands/actor/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
358
|
+
_See code: [src/commands/actor/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.57/src/commands/actor/index.ts)_
|
|
358
359
|
|
|
359
360
|
## `apify actor get-input`
|
|
360
361
|
|
|
@@ -368,7 +369,7 @@ DESCRIPTION
|
|
|
368
369
|
Gets the Actor input value from the default key-value store associated with the Actor run.
|
|
369
370
|
```
|
|
370
371
|
|
|
371
|
-
_See code: [src/commands/actor/get-input.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
372
|
+
_See code: [src/commands/actor/get-input.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.57/src/commands/actor/get-input.ts)_
|
|
372
373
|
|
|
373
374
|
## `apify actor get-value KEY`
|
|
374
375
|
|
|
@@ -385,7 +386,7 @@ DESCRIPTION
|
|
|
385
386
|
Gets a value from the default key-value store associated with the Actor run.
|
|
386
387
|
```
|
|
387
388
|
|
|
388
|
-
_See code: [src/commands/actor/get-value.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
389
|
+
_See code: [src/commands/actor/get-value.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.57/src/commands/actor/get-value.ts)_
|
|
389
390
|
|
|
390
391
|
## `apify actor push-data [ITEM]`
|
|
391
392
|
|
|
@@ -407,7 +408,7 @@ DESCRIPTION
|
|
|
407
408
|
$ cat ./test.json | apify actor push-data
|
|
408
409
|
```
|
|
409
410
|
|
|
410
|
-
_See code: [src/commands/actor/push-data.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
411
|
+
_See code: [src/commands/actor/push-data.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.57/src/commands/actor/push-data.ts)_
|
|
411
412
|
|
|
412
413
|
## `apify actor set-value KEY [VALUE]`
|
|
413
414
|
|
|
@@ -436,7 +437,7 @@ DESCRIPTION
|
|
|
436
437
|
$ cat ./my-text-file.txt | apify actor set-value KEY --contentType text/plain
|
|
437
438
|
```
|
|
438
439
|
|
|
439
|
-
_See code: [src/commands/actor/set-value.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
440
|
+
_See code: [src/commands/actor/set-value.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.57/src/commands/actor/set-value.ts)_
|
|
440
441
|
|
|
441
442
|
## `apify actors`
|
|
442
443
|
|
|
@@ -450,7 +451,7 @@ DESCRIPTION
|
|
|
450
451
|
Commands are designed to be used with Actors.
|
|
451
452
|
```
|
|
452
453
|
|
|
453
|
-
_See code: [src/commands/actors/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
454
|
+
_See code: [src/commands/actors/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.57/src/commands/actors/index.ts)_
|
|
454
455
|
|
|
455
456
|
## `apify actors build [ACTORID]`
|
|
456
457
|
|
|
@@ -477,7 +478,7 @@ DESCRIPTION
|
|
|
477
478
|
Creates a new build of the Actor.
|
|
478
479
|
```
|
|
479
480
|
|
|
480
|
-
_See code: [src/commands/actors/build.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
481
|
+
_See code: [src/commands/actors/build.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.57/src/commands/actors/build.ts)_
|
|
481
482
|
|
|
482
483
|
## `apify actors call [ACTORID]`
|
|
483
484
|
|
|
@@ -511,7 +512,31 @@ DESCRIPTION
|
|
|
511
512
|
takes input for the Actor from the default local key-value store by default.
|
|
512
513
|
```
|
|
513
514
|
|
|
514
|
-
_See code: [src/commands/actors/call.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
515
|
+
_See code: [src/commands/actors/call.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.57/src/commands/actors/call.ts)_
|
|
516
|
+
|
|
517
|
+
## `apify actors info ACTORID`
|
|
518
|
+
|
|
519
|
+
Get information about an Actor.
|
|
520
|
+
|
|
521
|
+
```
|
|
522
|
+
USAGE
|
|
523
|
+
$ apify actors info ACTORID [--json] [--readme | --input]
|
|
524
|
+
|
|
525
|
+
ARGUMENTS
|
|
526
|
+
ACTORID The ID of the Actor to return information about.
|
|
527
|
+
|
|
528
|
+
FLAGS
|
|
529
|
+
--input Return the Actor input schema.
|
|
530
|
+
--readme Return the Actor README.
|
|
531
|
+
|
|
532
|
+
GLOBAL FLAGS
|
|
533
|
+
--json Format output as json.
|
|
534
|
+
|
|
535
|
+
DESCRIPTION
|
|
536
|
+
Get information about an Actor.
|
|
537
|
+
```
|
|
538
|
+
|
|
539
|
+
_See code: [src/commands/actors/info.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.57/src/commands/actors/info.ts)_
|
|
515
540
|
|
|
516
541
|
## `apify actors ls`
|
|
517
542
|
|
|
@@ -534,7 +559,7 @@ DESCRIPTION
|
|
|
534
559
|
Lists all recently ran Actors or your own Actors.
|
|
535
560
|
```
|
|
536
561
|
|
|
537
|
-
_See code: [src/commands/actors/ls.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
562
|
+
_See code: [src/commands/actors/ls.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.57/src/commands/actors/ls.ts)_
|
|
538
563
|
|
|
539
564
|
## `apify actors pull [ACTORID]`
|
|
540
565
|
|
|
@@ -557,7 +582,7 @@ DESCRIPTION
|
|
|
557
582
|
cloned. If it is defined as Web IDE, it will fetch the files.
|
|
558
583
|
```
|
|
559
584
|
|
|
560
|
-
_See code: [src/commands/actors/pull.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
585
|
+
_See code: [src/commands/actors/pull.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.57/src/commands/actors/pull.ts)_
|
|
561
586
|
|
|
562
587
|
## `apify actors push [ACTORID]`
|
|
563
588
|
|
|
@@ -593,7 +618,7 @@ DESCRIPTION
|
|
|
593
618
|
overwritten with --force flag.
|
|
594
619
|
```
|
|
595
620
|
|
|
596
|
-
_See code: [src/commands/actors/push.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
621
|
+
_See code: [src/commands/actors/push.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.57/src/commands/actors/push.ts)_
|
|
597
622
|
|
|
598
623
|
## `apify actors rm ACTORID`
|
|
599
624
|
|
|
@@ -610,7 +635,7 @@ DESCRIPTION
|
|
|
610
635
|
Deletes an Actor.
|
|
611
636
|
```
|
|
612
637
|
|
|
613
|
-
_See code: [src/commands/actors/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
638
|
+
_See code: [src/commands/actors/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.57/src/commands/actors/rm.ts)_
|
|
614
639
|
|
|
615
640
|
## `apify actors start [ACTORID]`
|
|
616
641
|
|
|
@@ -642,7 +667,7 @@ DESCRIPTION
|
|
|
642
667
|
takes input for the Actor from the default local key-value store by default.
|
|
643
668
|
```
|
|
644
669
|
|
|
645
|
-
_See code: [src/commands/actors/start.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
670
|
+
_See code: [src/commands/actors/start.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.57/src/commands/actors/start.ts)_
|
|
646
671
|
|
|
647
672
|
## `apify builds`
|
|
648
673
|
|
|
@@ -656,7 +681,7 @@ DESCRIPTION
|
|
|
656
681
|
Commands are designed to be used with Actor Builds.
|
|
657
682
|
```
|
|
658
683
|
|
|
659
|
-
_See code: [src/commands/builds/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
684
|
+
_See code: [src/commands/builds/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.57/src/commands/builds/index.ts)_
|
|
660
685
|
|
|
661
686
|
## `apify builds create [ACTORID]`
|
|
662
687
|
|
|
@@ -683,7 +708,7 @@ DESCRIPTION
|
|
|
683
708
|
Creates a new build of the Actor.
|
|
684
709
|
```
|
|
685
710
|
|
|
686
|
-
_See code: [src/commands/builds/create.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
711
|
+
_See code: [src/commands/builds/create.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.57/src/commands/builds/create.ts)_
|
|
687
712
|
|
|
688
713
|
## `apify builds info BUILDID`
|
|
689
714
|
|
|
@@ -703,7 +728,7 @@ DESCRIPTION
|
|
|
703
728
|
Prints information about a specific build.
|
|
704
729
|
```
|
|
705
730
|
|
|
706
|
-
_See code: [src/commands/builds/info.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
731
|
+
_See code: [src/commands/builds/info.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.57/src/commands/builds/info.ts)_
|
|
707
732
|
|
|
708
733
|
## `apify builds log BUILDID`
|
|
709
734
|
|
|
@@ -720,7 +745,7 @@ DESCRIPTION
|
|
|
720
745
|
Prints the log of a specific build.
|
|
721
746
|
```
|
|
722
747
|
|
|
723
|
-
_See code: [src/commands/builds/log.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
748
|
+
_See code: [src/commands/builds/log.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.57/src/commands/builds/log.ts)_
|
|
724
749
|
|
|
725
750
|
## `apify builds ls [ACTORID]`
|
|
726
751
|
|
|
@@ -746,7 +771,7 @@ DESCRIPTION
|
|
|
746
771
|
Lists all builds of the Actor.
|
|
747
772
|
```
|
|
748
773
|
|
|
749
|
-
_See code: [src/commands/builds/ls.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
774
|
+
_See code: [src/commands/builds/ls.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.57/src/commands/builds/ls.ts)_
|
|
750
775
|
|
|
751
776
|
## `apify builds rm BUILDID`
|
|
752
777
|
|
|
@@ -763,7 +788,7 @@ DESCRIPTION
|
|
|
763
788
|
Deletes an Actor Build.
|
|
764
789
|
```
|
|
765
790
|
|
|
766
|
-
_See code: [src/commands/builds/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
791
|
+
_See code: [src/commands/builds/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.57/src/commands/builds/rm.ts)_
|
|
767
792
|
|
|
768
793
|
## `apify call [ACTORID]`
|
|
769
794
|
|
|
@@ -797,7 +822,7 @@ DESCRIPTION
|
|
|
797
822
|
takes input for the Actor from the default local key-value store by default.
|
|
798
823
|
```
|
|
799
824
|
|
|
800
|
-
_See code: [src/commands/call.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
825
|
+
_See code: [src/commands/call.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.57/src/commands/call.ts)_
|
|
801
826
|
|
|
802
827
|
## `apify create [ACTORNAME]`
|
|
803
828
|
|
|
@@ -822,7 +847,7 @@ DESCRIPTION
|
|
|
822
847
|
Creates a new Actor project directory from a selected boilerplate template.
|
|
823
848
|
```
|
|
824
849
|
|
|
825
|
-
_See code: [src/commands/create.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
850
|
+
_See code: [src/commands/create.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.57/src/commands/create.ts)_
|
|
826
851
|
|
|
827
852
|
## `apify datasets`
|
|
828
853
|
|
|
@@ -836,7 +861,7 @@ DESCRIPTION
|
|
|
836
861
|
Commands are designed to be used with Datasets.
|
|
837
862
|
```
|
|
838
863
|
|
|
839
|
-
_See code: [src/commands/datasets/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
864
|
+
_See code: [src/commands/datasets/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.57/src/commands/datasets/index.ts)_
|
|
840
865
|
|
|
841
866
|
## `apify datasets create [DATASETNAME]`
|
|
842
867
|
|
|
@@ -856,7 +881,7 @@ DESCRIPTION
|
|
|
856
881
|
Creates a new Dataset on your account
|
|
857
882
|
```
|
|
858
883
|
|
|
859
|
-
_See code: [src/commands/datasets/create.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
884
|
+
_See code: [src/commands/datasets/create.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.57/src/commands/datasets/create.ts)_
|
|
860
885
|
|
|
861
886
|
## `apify datasets get-items DATASETID`
|
|
862
887
|
|
|
@@ -879,7 +904,7 @@ DESCRIPTION
|
|
|
879
904
|
Exports the items present in a Dataset.
|
|
880
905
|
```
|
|
881
906
|
|
|
882
|
-
_See code: [src/commands/datasets/get-items.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
907
|
+
_See code: [src/commands/datasets/get-items.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.57/src/commands/datasets/get-items.ts)_
|
|
883
908
|
|
|
884
909
|
## `apify datasets ls`
|
|
885
910
|
|
|
@@ -902,7 +927,7 @@ DESCRIPTION
|
|
|
902
927
|
Lists all Datasets on your account.
|
|
903
928
|
```
|
|
904
929
|
|
|
905
|
-
_See code: [src/commands/datasets/ls.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
930
|
+
_See code: [src/commands/datasets/ls.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.57/src/commands/datasets/ls.ts)_
|
|
906
931
|
|
|
907
932
|
## `apify datasets push-items NAMEORID ITEM`
|
|
908
933
|
|
|
@@ -920,7 +945,7 @@ DESCRIPTION
|
|
|
920
945
|
Pushes an object or an array of objects to the provided Dataset.
|
|
921
946
|
```
|
|
922
947
|
|
|
923
|
-
_See code: [src/commands/datasets/push-items.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
948
|
+
_See code: [src/commands/datasets/push-items.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.57/src/commands/datasets/push-items.ts)_
|
|
924
949
|
|
|
925
950
|
## `apify datasets rename NAMEORID [NEWNAME]`
|
|
926
951
|
|
|
@@ -941,7 +966,7 @@ DESCRIPTION
|
|
|
941
966
|
Renames a Dataset, or removes its unique name
|
|
942
967
|
```
|
|
943
968
|
|
|
944
|
-
_See code: [src/commands/datasets/rename.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
969
|
+
_See code: [src/commands/datasets/rename.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.57/src/commands/datasets/rename.ts)_
|
|
945
970
|
|
|
946
971
|
## `apify datasets rm DATASETNAMEORID`
|
|
947
972
|
|
|
@@ -958,7 +983,7 @@ DESCRIPTION
|
|
|
958
983
|
Deletes a Dataset
|
|
959
984
|
```
|
|
960
985
|
|
|
961
|
-
_See code: [src/commands/datasets/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
986
|
+
_See code: [src/commands/datasets/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.57/src/commands/datasets/rm.ts)_
|
|
962
987
|
|
|
963
988
|
## `apify help [COMMAND]`
|
|
964
989
|
|
|
@@ -993,7 +1018,7 @@ DESCRIPTION
|
|
|
993
1018
|
The information is printed to the console.
|
|
994
1019
|
```
|
|
995
1020
|
|
|
996
|
-
_See code: [src/commands/info.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1021
|
+
_See code: [src/commands/info.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.57/src/commands/info.ts)_
|
|
997
1022
|
|
|
998
1023
|
## `apify init [ACTORNAME]`
|
|
999
1024
|
|
|
@@ -1021,7 +1046,7 @@ DESCRIPTION
|
|
|
1021
1046
|
WARNING: The directory at "storage" will be overwritten if it already exists.
|
|
1022
1047
|
```
|
|
1023
1048
|
|
|
1024
|
-
_See code: [src/commands/init.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1049
|
+
_See code: [src/commands/init.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.57/src/commands/init.ts)_
|
|
1025
1050
|
|
|
1026
1051
|
## `apify key-value-stores`
|
|
1027
1052
|
|
|
@@ -1037,7 +1062,7 @@ DESCRIPTION
|
|
|
1037
1062
|
Aliases: kvs
|
|
1038
1063
|
```
|
|
1039
1064
|
|
|
1040
|
-
_See code: [src/commands/key-value-stores/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1065
|
+
_See code: [src/commands/key-value-stores/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.57/src/commands/key-value-stores/index.ts)_
|
|
1041
1066
|
|
|
1042
1067
|
## `apify key-value-stores create [KEYVALUESTORENAME]`
|
|
1043
1068
|
|
|
@@ -1057,7 +1082,7 @@ DESCRIPTION
|
|
|
1057
1082
|
Creates a new Key-value store on your account
|
|
1058
1083
|
```
|
|
1059
1084
|
|
|
1060
|
-
_See code: [src/commands/key-value-stores/create.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1085
|
+
_See code: [src/commands/key-value-stores/create.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.57/src/commands/key-value-stores/create.ts)_
|
|
1061
1086
|
|
|
1062
1087
|
## `apify key-value-stores delete-value STOREID ITEMKEY`
|
|
1063
1088
|
|
|
@@ -1075,7 +1100,7 @@ DESCRIPTION
|
|
|
1075
1100
|
Delete a value from a key-value store.
|
|
1076
1101
|
```
|
|
1077
1102
|
|
|
1078
|
-
_See code: [src/commands/key-value-stores/delete-value.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1103
|
+
_See code: [src/commands/key-value-stores/delete-value.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.57/src/commands/key-value-stores/delete-value.ts)_
|
|
1079
1104
|
|
|
1080
1105
|
## `apify key-value-stores get-value KEYVALUESTOREID ITEMKEY`
|
|
1081
1106
|
|
|
@@ -1096,7 +1121,7 @@ DESCRIPTION
|
|
|
1096
1121
|
Gets a value by key in the given key-value store.
|
|
1097
1122
|
```
|
|
1098
1123
|
|
|
1099
|
-
_See code: [src/commands/key-value-stores/get-value.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1124
|
+
_See code: [src/commands/key-value-stores/get-value.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.57/src/commands/key-value-stores/get-value.ts)_
|
|
1100
1125
|
|
|
1101
1126
|
## `apify key-value-stores keys STOREID`
|
|
1102
1127
|
|
|
@@ -1120,7 +1145,7 @@ DESCRIPTION
|
|
|
1120
1145
|
Lists all keys in a key-value store.
|
|
1121
1146
|
```
|
|
1122
1147
|
|
|
1123
|
-
_See code: [src/commands/key-value-stores/keys.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1148
|
+
_See code: [src/commands/key-value-stores/keys.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.57/src/commands/key-value-stores/keys.ts)_
|
|
1124
1149
|
|
|
1125
1150
|
## `apify key-value-stores ls`
|
|
1126
1151
|
|
|
@@ -1143,7 +1168,7 @@ DESCRIPTION
|
|
|
1143
1168
|
Lists all Key-value stores on your account.
|
|
1144
1169
|
```
|
|
1145
1170
|
|
|
1146
|
-
_See code: [src/commands/key-value-stores/ls.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1171
|
+
_See code: [src/commands/key-value-stores/ls.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.57/src/commands/key-value-stores/ls.ts)_
|
|
1147
1172
|
|
|
1148
1173
|
## `apify key-value-stores rename KEYVALUESTORENAMEORID [NEWNAME]`
|
|
1149
1174
|
|
|
@@ -1164,7 +1189,7 @@ DESCRIPTION
|
|
|
1164
1189
|
Renames a Key-value store, or removes its unique name
|
|
1165
1190
|
```
|
|
1166
1191
|
|
|
1167
|
-
_See code: [src/commands/key-value-stores/rename.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1192
|
+
_See code: [src/commands/key-value-stores/rename.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.57/src/commands/key-value-stores/rename.ts)_
|
|
1168
1193
|
|
|
1169
1194
|
## `apify key-value-stores rm KEYVALUESTORENAMEORID`
|
|
1170
1195
|
|
|
@@ -1181,7 +1206,7 @@ DESCRIPTION
|
|
|
1181
1206
|
Deletes a Key-value store
|
|
1182
1207
|
```
|
|
1183
1208
|
|
|
1184
|
-
_See code: [src/commands/key-value-stores/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1209
|
+
_See code: [src/commands/key-value-stores/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.57/src/commands/key-value-stores/rm.ts)_
|
|
1185
1210
|
|
|
1186
1211
|
## `apify key-value-stores set-value STOREID ITEMKEY [VALUE]`
|
|
1187
1212
|
|
|
@@ -1204,7 +1229,7 @@ DESCRIPTION
|
|
|
1204
1229
|
Sets a value in a key-value store.
|
|
1205
1230
|
```
|
|
1206
1231
|
|
|
1207
|
-
_See code: [src/commands/key-value-stores/set-value.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1232
|
+
_See code: [src/commands/key-value-stores/set-value.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.57/src/commands/key-value-stores/set-value.ts)_
|
|
1208
1233
|
|
|
1209
1234
|
## `apify login`
|
|
1210
1235
|
|
|
@@ -1225,7 +1250,7 @@ DESCRIPTION
|
|
|
1225
1250
|
"apify" commands. To log out, call "apify logout".
|
|
1226
1251
|
```
|
|
1227
1252
|
|
|
1228
|
-
_See code: [src/commands/login.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1253
|
+
_See code: [src/commands/login.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.57/src/commands/login.ts)_
|
|
1229
1254
|
|
|
1230
1255
|
## `apify logout`
|
|
1231
1256
|
|
|
@@ -1241,7 +1266,7 @@ DESCRIPTION
|
|
|
1241
1266
|
call "apify login".
|
|
1242
1267
|
```
|
|
1243
1268
|
|
|
1244
|
-
_See code: [src/commands/logout.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1269
|
+
_See code: [src/commands/logout.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.57/src/commands/logout.ts)_
|
|
1245
1270
|
|
|
1246
1271
|
## `apify pull [ACTORID]`
|
|
1247
1272
|
|
|
@@ -1264,7 +1289,7 @@ DESCRIPTION
|
|
|
1264
1289
|
cloned. If it is defined as Web IDE, it will fetch the files.
|
|
1265
1290
|
```
|
|
1266
1291
|
|
|
1267
|
-
_See code: [src/commands/pull.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1292
|
+
_See code: [src/commands/pull.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.57/src/commands/pull.ts)_
|
|
1268
1293
|
|
|
1269
1294
|
## `apify push [ACTORID]`
|
|
1270
1295
|
|
|
@@ -1300,7 +1325,7 @@ DESCRIPTION
|
|
|
1300
1325
|
overwritten with --force flag.
|
|
1301
1326
|
```
|
|
1302
1327
|
|
|
1303
|
-
_See code: [src/commands/push.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1328
|
+
_See code: [src/commands/push.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.57/src/commands/push.ts)_
|
|
1304
1329
|
|
|
1305
1330
|
## `apify request-queues`
|
|
1306
1331
|
|
|
@@ -1314,7 +1339,7 @@ DESCRIPTION
|
|
|
1314
1339
|
Commands are designed to be used with Request Queues.
|
|
1315
1340
|
```
|
|
1316
1341
|
|
|
1317
|
-
_See code: [src/commands/request-queues/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1342
|
+
_See code: [src/commands/request-queues/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.57/src/commands/request-queues/index.ts)_
|
|
1318
1343
|
|
|
1319
1344
|
## `apify run`
|
|
1320
1345
|
|
|
@@ -1350,7 +1375,7 @@ DESCRIPTION
|
|
|
1350
1375
|
package.json file. You can set up your own main file or environment variables by changing it.
|
|
1351
1376
|
```
|
|
1352
1377
|
|
|
1353
|
-
_See code: [src/commands/run.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1378
|
+
_See code: [src/commands/run.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.57/src/commands/run.ts)_
|
|
1354
1379
|
|
|
1355
1380
|
## `apify runs`
|
|
1356
1381
|
|
|
@@ -1364,7 +1389,7 @@ DESCRIPTION
|
|
|
1364
1389
|
Commands are designed to be used with Actor Runs.
|
|
1365
1390
|
```
|
|
1366
1391
|
|
|
1367
|
-
_See code: [src/commands/runs/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1392
|
+
_See code: [src/commands/runs/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.57/src/commands/runs/index.ts)_
|
|
1368
1393
|
|
|
1369
1394
|
## `apify runs abort RUNID`
|
|
1370
1395
|
|
|
@@ -1387,7 +1412,7 @@ DESCRIPTION
|
|
|
1387
1412
|
Aborts an Actor Run.
|
|
1388
1413
|
```
|
|
1389
1414
|
|
|
1390
|
-
_See code: [src/commands/runs/abort.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1415
|
+
_See code: [src/commands/runs/abort.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.57/src/commands/runs/abort.ts)_
|
|
1391
1416
|
|
|
1392
1417
|
## `apify runs info RUNID`
|
|
1393
1418
|
|
|
@@ -1410,7 +1435,7 @@ DESCRIPTION
|
|
|
1410
1435
|
Prints information about an Actor Run.
|
|
1411
1436
|
```
|
|
1412
1437
|
|
|
1413
|
-
_See code: [src/commands/runs/info.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1438
|
+
_See code: [src/commands/runs/info.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.57/src/commands/runs/info.ts)_
|
|
1414
1439
|
|
|
1415
1440
|
## `apify runs log RUNID`
|
|
1416
1441
|
|
|
@@ -1427,7 +1452,7 @@ DESCRIPTION
|
|
|
1427
1452
|
Prints the log of a specific run.
|
|
1428
1453
|
```
|
|
1429
1454
|
|
|
1430
|
-
_See code: [src/commands/runs/log.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1455
|
+
_See code: [src/commands/runs/log.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.57/src/commands/runs/log.ts)_
|
|
1431
1456
|
|
|
1432
1457
|
## `apify runs ls [ACTORID]`
|
|
1433
1458
|
|
|
@@ -1453,7 +1478,7 @@ DESCRIPTION
|
|
|
1453
1478
|
Lists all runs of the Actor.
|
|
1454
1479
|
```
|
|
1455
1480
|
|
|
1456
|
-
_See code: [src/commands/runs/ls.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1481
|
+
_See code: [src/commands/runs/ls.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.57/src/commands/runs/ls.ts)_
|
|
1457
1482
|
|
|
1458
1483
|
## `apify runs resurrect RUNID`
|
|
1459
1484
|
|
|
@@ -1473,7 +1498,7 @@ DESCRIPTION
|
|
|
1473
1498
|
Resurrects an aborted or finished Actor Run.
|
|
1474
1499
|
```
|
|
1475
1500
|
|
|
1476
|
-
_See code: [src/commands/runs/resurrect.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1501
|
+
_See code: [src/commands/runs/resurrect.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.57/src/commands/runs/resurrect.ts)_
|
|
1477
1502
|
|
|
1478
1503
|
## `apify runs rm RUNID`
|
|
1479
1504
|
|
|
@@ -1490,7 +1515,7 @@ DESCRIPTION
|
|
|
1490
1515
|
Deletes an Actor Run.
|
|
1491
1516
|
```
|
|
1492
1517
|
|
|
1493
|
-
_See code: [src/commands/runs/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1518
|
+
_See code: [src/commands/runs/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.57/src/commands/runs/rm.ts)_
|
|
1494
1519
|
|
|
1495
1520
|
## `apify secrets`
|
|
1496
1521
|
|
|
@@ -1520,7 +1545,7 @@ DESCRIPTION
|
|
|
1520
1545
|
of the Actor.
|
|
1521
1546
|
```
|
|
1522
1547
|
|
|
1523
|
-
_See code: [src/commands/secrets/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1548
|
+
_See code: [src/commands/secrets/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.57/src/commands/secrets/index.ts)_
|
|
1524
1549
|
|
|
1525
1550
|
## `apify secrets add NAME VALUE`
|
|
1526
1551
|
|
|
@@ -1539,7 +1564,7 @@ DESCRIPTION
|
|
|
1539
1564
|
The secrets are stored to a file at ~/.apify
|
|
1540
1565
|
```
|
|
1541
1566
|
|
|
1542
|
-
_See code: [src/commands/secrets/add.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1567
|
+
_See code: [src/commands/secrets/add.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.57/src/commands/secrets/add.ts)_
|
|
1543
1568
|
|
|
1544
1569
|
## `apify secrets rm NAME`
|
|
1545
1570
|
|
|
@@ -1556,7 +1581,7 @@ DESCRIPTION
|
|
|
1556
1581
|
Removes the secret.
|
|
1557
1582
|
```
|
|
1558
1583
|
|
|
1559
|
-
_See code: [src/commands/secrets/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1584
|
+
_See code: [src/commands/secrets/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.57/src/commands/secrets/rm.ts)_
|
|
1560
1585
|
|
|
1561
1586
|
## `apify task`
|
|
1562
1587
|
|
|
@@ -1570,7 +1595,7 @@ DESCRIPTION
|
|
|
1570
1595
|
Commands are designed to be used to interact with Tasks.
|
|
1571
1596
|
```
|
|
1572
1597
|
|
|
1573
|
-
_See code: [src/commands/task/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1598
|
+
_See code: [src/commands/task/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.57/src/commands/task/index.ts)_
|
|
1574
1599
|
|
|
1575
1600
|
## `apify task run TASKID`
|
|
1576
1601
|
|
|
@@ -1594,7 +1619,7 @@ DESCRIPTION
|
|
|
1594
1619
|
takes input for the Actor from the default local key-value store by default.
|
|
1595
1620
|
```
|
|
1596
1621
|
|
|
1597
|
-
_See code: [src/commands/task/run.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1622
|
+
_See code: [src/commands/task/run.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.57/src/commands/task/run.ts)_
|
|
1598
1623
|
|
|
1599
1624
|
## `apify validate-schema [PATH]`
|
|
1600
1625
|
|
|
@@ -1619,6 +1644,6 @@ DESCRIPTION
|
|
|
1619
1644
|
You can also pass any custom path to your input schema to have it validated instead.
|
|
1620
1645
|
```
|
|
1621
1646
|
|
|
1622
|
-
_See code: [src/commands/validate-schema.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1647
|
+
_See code: [src/commands/validate-schema.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.57/src/commands/validate-schema.ts)_
|
|
1623
1648
|
<!-- commandsstop -->
|
|
1624
1649
|
<!-- prettier-ignore-end -->
|