apify-cli 0.21.0-beta.89 → 0.21.0-beta.90
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 +101 -59
- package/dist/.tsbuildinfo +1 -1
- package/dist/commands/datasets/info.d.ts +29 -0
- package/dist/commands/datasets/info.d.ts.map +1 -0
- package/dist/commands/datasets/info.js +124 -0
- package/dist/commands/datasets/info.js.map +1 -0
- package/dist/commands/key-value-stores/info.d.ts +27 -0
- package/dist/commands/key-value-stores/info.d.ts.map +1 -0
- package/dist/commands/key-value-stores/info.js +127 -0
- package/dist/commands/key-value-stores/info.js.map +1 -0
- package/dist/lib/commands/pretty-print-bytes.js +2 -2
- package/dist/lib/commands/responsive-table.d.ts +5 -1
- package/dist/lib/commands/responsive-table.d.ts.map +1 -1
- package/dist/lib/commands/responsive-table.js +23 -1
- package/dist/lib/commands/responsive-table.js.map +1 -1
- package/dist/lib/commands/storage-size.d.ts +6 -0
- package/dist/lib/commands/storage-size.d.ts.map +1 -0
- package/dist/lib/commands/storage-size.js +8 -0
- package/dist/lib/commands/storage-size.js.map +1 -0
- package/dist/typechecking.tsbuildinfo +1 -1
- package/oclif.manifest.json +304 -232
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -307,6 +307,7 @@ This section contains printouts of `apify help` for all commands.
|
|
|
307
307
|
* [`apify datasets`](#apify-datasets)
|
|
308
308
|
* [`apify datasets create [DATASETNAME]`](#apify-datasets-create-datasetname)
|
|
309
309
|
* [`apify datasets get-items DATASETID`](#apify-datasets-get-items-datasetid)
|
|
310
|
+
* [`apify datasets info STOREID`](#apify-datasets-info-storeid)
|
|
310
311
|
* [`apify datasets ls`](#apify-datasets-ls)
|
|
311
312
|
* [`apify datasets push-items NAMEORID [ITEM]`](#apify-datasets-push-items-nameorid-item)
|
|
312
313
|
* [`apify datasets rename NAMEORID [NEWNAME]`](#apify-datasets-rename-nameorid-newname)
|
|
@@ -318,6 +319,7 @@ This section contains printouts of `apify help` for all commands.
|
|
|
318
319
|
* [`apify key-value-stores create [KEYVALUESTORENAME]`](#apify-key-value-stores-create-keyvaluestorename)
|
|
319
320
|
* [`apify key-value-stores delete-value STOREID ITEMKEY`](#apify-key-value-stores-delete-value-storeid-itemkey)
|
|
320
321
|
* [`apify key-value-stores get-value KEYVALUESTOREID ITEMKEY`](#apify-key-value-stores-get-value-keyvaluestoreid-itemkey)
|
|
322
|
+
* [`apify key-value-stores info STOREID`](#apify-key-value-stores-info-storeid)
|
|
321
323
|
* [`apify key-value-stores keys STOREID`](#apify-key-value-stores-keys-storeid)
|
|
322
324
|
* [`apify key-value-stores ls`](#apify-key-value-stores-ls)
|
|
323
325
|
* [`apify key-value-stores rename KEYVALUESTORENAMEORID [NEWNAME]`](#apify-key-value-stores-rename-keyvaluestorenameorid-newname)
|
|
@@ -355,7 +357,7 @@ DESCRIPTION
|
|
|
355
357
|
Commands are designed to be used in Actor runs. All commands are in PoC state, do not use in production environments.
|
|
356
358
|
```
|
|
357
359
|
|
|
358
|
-
_See code: [src/commands/actor/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
360
|
+
_See code: [src/commands/actor/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.90/src/commands/actor/index.ts)_
|
|
359
361
|
|
|
360
362
|
## `apify actor get-input`
|
|
361
363
|
|
|
@@ -369,7 +371,7 @@ DESCRIPTION
|
|
|
369
371
|
Gets the Actor input value from the default key-value store associated with the Actor run.
|
|
370
372
|
```
|
|
371
373
|
|
|
372
|
-
_See code: [src/commands/actor/get-input.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
374
|
+
_See code: [src/commands/actor/get-input.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.90/src/commands/actor/get-input.ts)_
|
|
373
375
|
|
|
374
376
|
## `apify actor get-value KEY`
|
|
375
377
|
|
|
@@ -386,7 +388,7 @@ DESCRIPTION
|
|
|
386
388
|
Gets a value from the default key-value store associated with the Actor run.
|
|
387
389
|
```
|
|
388
390
|
|
|
389
|
-
_See code: [src/commands/actor/get-value.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
391
|
+
_See code: [src/commands/actor/get-value.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.90/src/commands/actor/get-value.ts)_
|
|
390
392
|
|
|
391
393
|
## `apify actor push-data [ITEM]`
|
|
392
394
|
|
|
@@ -408,7 +410,7 @@ DESCRIPTION
|
|
|
408
410
|
$ cat ./test.json | apify actor push-data
|
|
409
411
|
```
|
|
410
412
|
|
|
411
|
-
_See code: [src/commands/actor/push-data.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
413
|
+
_See code: [src/commands/actor/push-data.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.90/src/commands/actor/push-data.ts)_
|
|
412
414
|
|
|
413
415
|
## `apify actor set-value KEY [VALUE]`
|
|
414
416
|
|
|
@@ -437,7 +439,7 @@ DESCRIPTION
|
|
|
437
439
|
$ cat ./my-text-file.txt | apify actor set-value KEY --contentType text/plain
|
|
438
440
|
```
|
|
439
441
|
|
|
440
|
-
_See code: [src/commands/actor/set-value.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
442
|
+
_See code: [src/commands/actor/set-value.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.90/src/commands/actor/set-value.ts)_
|
|
441
443
|
|
|
442
444
|
## `apify actors`
|
|
443
445
|
|
|
@@ -451,7 +453,7 @@ DESCRIPTION
|
|
|
451
453
|
Commands are designed to be used with Actors.
|
|
452
454
|
```
|
|
453
455
|
|
|
454
|
-
_See code: [src/commands/actors/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
456
|
+
_See code: [src/commands/actors/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.90/src/commands/actors/index.ts)_
|
|
455
457
|
|
|
456
458
|
## `apify actors build [ACTORID]`
|
|
457
459
|
|
|
@@ -478,7 +480,7 @@ DESCRIPTION
|
|
|
478
480
|
Creates a new build of the Actor.
|
|
479
481
|
```
|
|
480
482
|
|
|
481
|
-
_See code: [src/commands/actors/build.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
483
|
+
_See code: [src/commands/actors/build.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.90/src/commands/actors/build.ts)_
|
|
482
484
|
|
|
483
485
|
## `apify actors call [ACTORID]`
|
|
484
486
|
|
|
@@ -512,7 +514,7 @@ DESCRIPTION
|
|
|
512
514
|
takes input for the Actor from the default local key-value store by default.
|
|
513
515
|
```
|
|
514
516
|
|
|
515
|
-
_See code: [src/commands/actors/call.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
517
|
+
_See code: [src/commands/actors/call.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.90/src/commands/actors/call.ts)_
|
|
516
518
|
|
|
517
519
|
## `apify actors info ACTORID`
|
|
518
520
|
|
|
@@ -536,7 +538,7 @@ DESCRIPTION
|
|
|
536
538
|
Get information about an Actor.
|
|
537
539
|
```
|
|
538
540
|
|
|
539
|
-
_See code: [src/commands/actors/info.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
541
|
+
_See code: [src/commands/actors/info.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.90/src/commands/actors/info.ts)_
|
|
540
542
|
|
|
541
543
|
## `apify actors ls`
|
|
542
544
|
|
|
@@ -559,7 +561,7 @@ DESCRIPTION
|
|
|
559
561
|
Lists all recently ran Actors or your own Actors.
|
|
560
562
|
```
|
|
561
563
|
|
|
562
|
-
_See code: [src/commands/actors/ls.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
564
|
+
_See code: [src/commands/actors/ls.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.90/src/commands/actors/ls.ts)_
|
|
563
565
|
|
|
564
566
|
## `apify actors pull [ACTORID]`
|
|
565
567
|
|
|
@@ -582,7 +584,7 @@ DESCRIPTION
|
|
|
582
584
|
cloned. If it is defined as Web IDE, it will fetch the files.
|
|
583
585
|
```
|
|
584
586
|
|
|
585
|
-
_See code: [src/commands/actors/pull.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
587
|
+
_See code: [src/commands/actors/pull.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.90/src/commands/actors/pull.ts)_
|
|
586
588
|
|
|
587
589
|
## `apify actors push [ACTORID]`
|
|
588
590
|
|
|
@@ -618,7 +620,7 @@ DESCRIPTION
|
|
|
618
620
|
overwritten with --force flag.
|
|
619
621
|
```
|
|
620
622
|
|
|
621
|
-
_See code: [src/commands/actors/push.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
623
|
+
_See code: [src/commands/actors/push.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.90/src/commands/actors/push.ts)_
|
|
622
624
|
|
|
623
625
|
## `apify actors rm ACTORID`
|
|
624
626
|
|
|
@@ -635,7 +637,7 @@ DESCRIPTION
|
|
|
635
637
|
Deletes an Actor.
|
|
636
638
|
```
|
|
637
639
|
|
|
638
|
-
_See code: [src/commands/actors/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
640
|
+
_See code: [src/commands/actors/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.90/src/commands/actors/rm.ts)_
|
|
639
641
|
|
|
640
642
|
## `apify actors start [ACTORID]`
|
|
641
643
|
|
|
@@ -667,7 +669,7 @@ DESCRIPTION
|
|
|
667
669
|
takes input for the Actor from the default local key-value store by default.
|
|
668
670
|
```
|
|
669
671
|
|
|
670
|
-
_See code: [src/commands/actors/start.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
672
|
+
_See code: [src/commands/actors/start.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.90/src/commands/actors/start.ts)_
|
|
671
673
|
|
|
672
674
|
## `apify builds`
|
|
673
675
|
|
|
@@ -681,7 +683,7 @@ DESCRIPTION
|
|
|
681
683
|
Commands are designed to be used with Actor Builds.
|
|
682
684
|
```
|
|
683
685
|
|
|
684
|
-
_See code: [src/commands/builds/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
686
|
+
_See code: [src/commands/builds/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.90/src/commands/builds/index.ts)_
|
|
685
687
|
|
|
686
688
|
## `apify builds create [ACTORID]`
|
|
687
689
|
|
|
@@ -708,7 +710,7 @@ DESCRIPTION
|
|
|
708
710
|
Creates a new build of the Actor.
|
|
709
711
|
```
|
|
710
712
|
|
|
711
|
-
_See code: [src/commands/builds/create.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
713
|
+
_See code: [src/commands/builds/create.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.90/src/commands/builds/create.ts)_
|
|
712
714
|
|
|
713
715
|
## `apify builds info BUILDID`
|
|
714
716
|
|
|
@@ -728,7 +730,7 @@ DESCRIPTION
|
|
|
728
730
|
Prints information about a specific build.
|
|
729
731
|
```
|
|
730
732
|
|
|
731
|
-
_See code: [src/commands/builds/info.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
733
|
+
_See code: [src/commands/builds/info.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.90/src/commands/builds/info.ts)_
|
|
732
734
|
|
|
733
735
|
## `apify builds log BUILDID`
|
|
734
736
|
|
|
@@ -745,7 +747,7 @@ DESCRIPTION
|
|
|
745
747
|
Prints the log of a specific build.
|
|
746
748
|
```
|
|
747
749
|
|
|
748
|
-
_See code: [src/commands/builds/log.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
750
|
+
_See code: [src/commands/builds/log.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.90/src/commands/builds/log.ts)_
|
|
749
751
|
|
|
750
752
|
## `apify builds ls [ACTORID]`
|
|
751
753
|
|
|
@@ -771,7 +773,7 @@ DESCRIPTION
|
|
|
771
773
|
Lists all builds of the Actor.
|
|
772
774
|
```
|
|
773
775
|
|
|
774
|
-
_See code: [src/commands/builds/ls.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
776
|
+
_See code: [src/commands/builds/ls.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.90/src/commands/builds/ls.ts)_
|
|
775
777
|
|
|
776
778
|
## `apify builds rm BUILDID`
|
|
777
779
|
|
|
@@ -788,7 +790,7 @@ DESCRIPTION
|
|
|
788
790
|
Deletes an Actor Build.
|
|
789
791
|
```
|
|
790
792
|
|
|
791
|
-
_See code: [src/commands/builds/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
793
|
+
_See code: [src/commands/builds/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.90/src/commands/builds/rm.ts)_
|
|
792
794
|
|
|
793
795
|
## `apify call [ACTORID]`
|
|
794
796
|
|
|
@@ -822,7 +824,7 @@ DESCRIPTION
|
|
|
822
824
|
takes input for the Actor from the default local key-value store by default.
|
|
823
825
|
```
|
|
824
826
|
|
|
825
|
-
_See code: [src/commands/call.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
827
|
+
_See code: [src/commands/call.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.90/src/commands/call.ts)_
|
|
826
828
|
|
|
827
829
|
## `apify create [ACTORNAME]`
|
|
828
830
|
|
|
@@ -847,7 +849,7 @@ DESCRIPTION
|
|
|
847
849
|
Creates a new Actor project directory from a selected boilerplate template.
|
|
848
850
|
```
|
|
849
851
|
|
|
850
|
-
_See code: [src/commands/create.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
852
|
+
_See code: [src/commands/create.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.90/src/commands/create.ts)_
|
|
851
853
|
|
|
852
854
|
## `apify datasets`
|
|
853
855
|
|
|
@@ -861,7 +863,7 @@ DESCRIPTION
|
|
|
861
863
|
Commands are designed to be used with Datasets.
|
|
862
864
|
```
|
|
863
865
|
|
|
864
|
-
_See code: [src/commands/datasets/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
866
|
+
_See code: [src/commands/datasets/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.90/src/commands/datasets/index.ts)_
|
|
865
867
|
|
|
866
868
|
## `apify datasets create [DATASETNAME]`
|
|
867
869
|
|
|
@@ -881,7 +883,7 @@ DESCRIPTION
|
|
|
881
883
|
Creates a new Dataset on your account
|
|
882
884
|
```
|
|
883
885
|
|
|
884
|
-
_See code: [src/commands/datasets/create.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
886
|
+
_See code: [src/commands/datasets/create.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.90/src/commands/datasets/create.ts)_
|
|
885
887
|
|
|
886
888
|
## `apify datasets get-items DATASETID`
|
|
887
889
|
|
|
@@ -904,7 +906,27 @@ DESCRIPTION
|
|
|
904
906
|
Exports the items present in a Dataset.
|
|
905
907
|
```
|
|
906
908
|
|
|
907
|
-
_See code: [src/commands/datasets/get-items.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
909
|
+
_See code: [src/commands/datasets/get-items.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.90/src/commands/datasets/get-items.ts)_
|
|
910
|
+
|
|
911
|
+
## `apify datasets info STOREID`
|
|
912
|
+
|
|
913
|
+
Shows information about a dataset.
|
|
914
|
+
|
|
915
|
+
```
|
|
916
|
+
USAGE
|
|
917
|
+
$ apify datasets info STOREID [--json]
|
|
918
|
+
|
|
919
|
+
ARGUMENTS
|
|
920
|
+
STOREID The dataset store ID to print information about.
|
|
921
|
+
|
|
922
|
+
GLOBAL FLAGS
|
|
923
|
+
--json Format output as json.
|
|
924
|
+
|
|
925
|
+
DESCRIPTION
|
|
926
|
+
Shows information about a dataset.
|
|
927
|
+
```
|
|
928
|
+
|
|
929
|
+
_See code: [src/commands/datasets/info.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.90/src/commands/datasets/info.ts)_
|
|
908
930
|
|
|
909
931
|
## `apify datasets ls`
|
|
910
932
|
|
|
@@ -927,7 +949,7 @@ DESCRIPTION
|
|
|
927
949
|
Lists all Datasets on your account.
|
|
928
950
|
```
|
|
929
951
|
|
|
930
|
-
_See code: [src/commands/datasets/ls.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
952
|
+
_See code: [src/commands/datasets/ls.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.90/src/commands/datasets/ls.ts)_
|
|
931
953
|
|
|
932
954
|
## `apify datasets push-items NAMEORID [ITEM]`
|
|
933
955
|
|
|
@@ -945,7 +967,7 @@ DESCRIPTION
|
|
|
945
967
|
Pushes an object or an array of objects to the provided Dataset.
|
|
946
968
|
```
|
|
947
969
|
|
|
948
|
-
_See code: [src/commands/datasets/push-items.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
970
|
+
_See code: [src/commands/datasets/push-items.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.90/src/commands/datasets/push-items.ts)_
|
|
949
971
|
|
|
950
972
|
## `apify datasets rename NAMEORID [NEWNAME]`
|
|
951
973
|
|
|
@@ -966,7 +988,7 @@ DESCRIPTION
|
|
|
966
988
|
Renames a Dataset, or removes its unique name
|
|
967
989
|
```
|
|
968
990
|
|
|
969
|
-
_See code: [src/commands/datasets/rename.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
991
|
+
_See code: [src/commands/datasets/rename.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.90/src/commands/datasets/rename.ts)_
|
|
970
992
|
|
|
971
993
|
## `apify datasets rm DATASETNAMEORID`
|
|
972
994
|
|
|
@@ -983,7 +1005,7 @@ DESCRIPTION
|
|
|
983
1005
|
Deletes a Dataset
|
|
984
1006
|
```
|
|
985
1007
|
|
|
986
|
-
_See code: [src/commands/datasets/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1008
|
+
_See code: [src/commands/datasets/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.90/src/commands/datasets/rm.ts)_
|
|
987
1009
|
|
|
988
1010
|
## `apify help [COMMAND]`
|
|
989
1011
|
|
|
@@ -1018,7 +1040,7 @@ DESCRIPTION
|
|
|
1018
1040
|
The information is printed to the console.
|
|
1019
1041
|
```
|
|
1020
1042
|
|
|
1021
|
-
_See code: [src/commands/info.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1043
|
+
_See code: [src/commands/info.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.90/src/commands/info.ts)_
|
|
1022
1044
|
|
|
1023
1045
|
## `apify init [ACTORNAME]`
|
|
1024
1046
|
|
|
@@ -1046,7 +1068,7 @@ DESCRIPTION
|
|
|
1046
1068
|
WARNING: The directory at "storage" will be overwritten if it already exists.
|
|
1047
1069
|
```
|
|
1048
1070
|
|
|
1049
|
-
_See code: [src/commands/init.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1071
|
+
_See code: [src/commands/init.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.90/src/commands/init.ts)_
|
|
1050
1072
|
|
|
1051
1073
|
## `apify key-value-stores`
|
|
1052
1074
|
|
|
@@ -1062,7 +1084,7 @@ DESCRIPTION
|
|
|
1062
1084
|
Aliases: kvs
|
|
1063
1085
|
```
|
|
1064
1086
|
|
|
1065
|
-
_See code: [src/commands/key-value-stores/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1087
|
+
_See code: [src/commands/key-value-stores/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.90/src/commands/key-value-stores/index.ts)_
|
|
1066
1088
|
|
|
1067
1089
|
## `apify key-value-stores create [KEYVALUESTORENAME]`
|
|
1068
1090
|
|
|
@@ -1082,7 +1104,7 @@ DESCRIPTION
|
|
|
1082
1104
|
Creates a new Key-value store on your account
|
|
1083
1105
|
```
|
|
1084
1106
|
|
|
1085
|
-
_See code: [src/commands/key-value-stores/create.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1107
|
+
_See code: [src/commands/key-value-stores/create.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.90/src/commands/key-value-stores/create.ts)_
|
|
1086
1108
|
|
|
1087
1109
|
## `apify key-value-stores delete-value STOREID ITEMKEY`
|
|
1088
1110
|
|
|
@@ -1100,7 +1122,7 @@ DESCRIPTION
|
|
|
1100
1122
|
Delete a value from a key-value store.
|
|
1101
1123
|
```
|
|
1102
1124
|
|
|
1103
|
-
_See code: [src/commands/key-value-stores/delete-value.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1125
|
+
_See code: [src/commands/key-value-stores/delete-value.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.90/src/commands/key-value-stores/delete-value.ts)_
|
|
1104
1126
|
|
|
1105
1127
|
## `apify key-value-stores get-value KEYVALUESTOREID ITEMKEY`
|
|
1106
1128
|
|
|
@@ -1121,7 +1143,27 @@ DESCRIPTION
|
|
|
1121
1143
|
Gets a value by key in the given key-value store.
|
|
1122
1144
|
```
|
|
1123
1145
|
|
|
1124
|
-
_See code: [src/commands/key-value-stores/get-value.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1146
|
+
_See code: [src/commands/key-value-stores/get-value.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.90/src/commands/key-value-stores/get-value.ts)_
|
|
1147
|
+
|
|
1148
|
+
## `apify key-value-stores info STOREID`
|
|
1149
|
+
|
|
1150
|
+
Shows information about a key-value store.
|
|
1151
|
+
|
|
1152
|
+
```
|
|
1153
|
+
USAGE
|
|
1154
|
+
$ apify key-value-stores info STOREID [--json]
|
|
1155
|
+
|
|
1156
|
+
ARGUMENTS
|
|
1157
|
+
STOREID The key-value store ID to print information about.
|
|
1158
|
+
|
|
1159
|
+
GLOBAL FLAGS
|
|
1160
|
+
--json Format output as json.
|
|
1161
|
+
|
|
1162
|
+
DESCRIPTION
|
|
1163
|
+
Shows information about a key-value store.
|
|
1164
|
+
```
|
|
1165
|
+
|
|
1166
|
+
_See code: [src/commands/key-value-stores/info.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.90/src/commands/key-value-stores/info.ts)_
|
|
1125
1167
|
|
|
1126
1168
|
## `apify key-value-stores keys STOREID`
|
|
1127
1169
|
|
|
@@ -1145,7 +1187,7 @@ DESCRIPTION
|
|
|
1145
1187
|
Lists all keys in a key-value store.
|
|
1146
1188
|
```
|
|
1147
1189
|
|
|
1148
|
-
_See code: [src/commands/key-value-stores/keys.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1190
|
+
_See code: [src/commands/key-value-stores/keys.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.90/src/commands/key-value-stores/keys.ts)_
|
|
1149
1191
|
|
|
1150
1192
|
## `apify key-value-stores ls`
|
|
1151
1193
|
|
|
@@ -1168,7 +1210,7 @@ DESCRIPTION
|
|
|
1168
1210
|
Lists all Key-value stores on your account.
|
|
1169
1211
|
```
|
|
1170
1212
|
|
|
1171
|
-
_See code: [src/commands/key-value-stores/ls.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1213
|
+
_See code: [src/commands/key-value-stores/ls.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.90/src/commands/key-value-stores/ls.ts)_
|
|
1172
1214
|
|
|
1173
1215
|
## `apify key-value-stores rename KEYVALUESTORENAMEORID [NEWNAME]`
|
|
1174
1216
|
|
|
@@ -1189,7 +1231,7 @@ DESCRIPTION
|
|
|
1189
1231
|
Renames a Key-value store, or removes its unique name
|
|
1190
1232
|
```
|
|
1191
1233
|
|
|
1192
|
-
_See code: [src/commands/key-value-stores/rename.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1234
|
+
_See code: [src/commands/key-value-stores/rename.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.90/src/commands/key-value-stores/rename.ts)_
|
|
1193
1235
|
|
|
1194
1236
|
## `apify key-value-stores rm KEYVALUESTORENAMEORID`
|
|
1195
1237
|
|
|
@@ -1206,7 +1248,7 @@ DESCRIPTION
|
|
|
1206
1248
|
Deletes a Key-value store
|
|
1207
1249
|
```
|
|
1208
1250
|
|
|
1209
|
-
_See code: [src/commands/key-value-stores/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1251
|
+
_See code: [src/commands/key-value-stores/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.90/src/commands/key-value-stores/rm.ts)_
|
|
1210
1252
|
|
|
1211
1253
|
## `apify key-value-stores set-value STOREID ITEMKEY [VALUE]`
|
|
1212
1254
|
|
|
@@ -1229,7 +1271,7 @@ DESCRIPTION
|
|
|
1229
1271
|
Sets a value in a key-value store.
|
|
1230
1272
|
```
|
|
1231
1273
|
|
|
1232
|
-
_See code: [src/commands/key-value-stores/set-value.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1274
|
+
_See code: [src/commands/key-value-stores/set-value.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.90/src/commands/key-value-stores/set-value.ts)_
|
|
1233
1275
|
|
|
1234
1276
|
## `apify login`
|
|
1235
1277
|
|
|
@@ -1250,7 +1292,7 @@ DESCRIPTION
|
|
|
1250
1292
|
"apify" commands. To log out, call "apify logout".
|
|
1251
1293
|
```
|
|
1252
1294
|
|
|
1253
|
-
_See code: [src/commands/login.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1295
|
+
_See code: [src/commands/login.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.90/src/commands/login.ts)_
|
|
1254
1296
|
|
|
1255
1297
|
## `apify logout`
|
|
1256
1298
|
|
|
@@ -1266,7 +1308,7 @@ DESCRIPTION
|
|
|
1266
1308
|
call "apify login".
|
|
1267
1309
|
```
|
|
1268
1310
|
|
|
1269
|
-
_See code: [src/commands/logout.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1311
|
+
_See code: [src/commands/logout.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.90/src/commands/logout.ts)_
|
|
1270
1312
|
|
|
1271
1313
|
## `apify pull [ACTORID]`
|
|
1272
1314
|
|
|
@@ -1289,7 +1331,7 @@ DESCRIPTION
|
|
|
1289
1331
|
cloned. If it is defined as Web IDE, it will fetch the files.
|
|
1290
1332
|
```
|
|
1291
1333
|
|
|
1292
|
-
_See code: [src/commands/pull.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1334
|
+
_See code: [src/commands/pull.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.90/src/commands/pull.ts)_
|
|
1293
1335
|
|
|
1294
1336
|
## `apify push [ACTORID]`
|
|
1295
1337
|
|
|
@@ -1325,7 +1367,7 @@ DESCRIPTION
|
|
|
1325
1367
|
overwritten with --force flag.
|
|
1326
1368
|
```
|
|
1327
1369
|
|
|
1328
|
-
_See code: [src/commands/push.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1370
|
+
_See code: [src/commands/push.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.90/src/commands/push.ts)_
|
|
1329
1371
|
|
|
1330
1372
|
## `apify request-queues`
|
|
1331
1373
|
|
|
@@ -1339,7 +1381,7 @@ DESCRIPTION
|
|
|
1339
1381
|
Commands are designed to be used with Request Queues.
|
|
1340
1382
|
```
|
|
1341
1383
|
|
|
1342
|
-
_See code: [src/commands/request-queues/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1384
|
+
_See code: [src/commands/request-queues/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.90/src/commands/request-queues/index.ts)_
|
|
1343
1385
|
|
|
1344
1386
|
## `apify run`
|
|
1345
1387
|
|
|
@@ -1375,7 +1417,7 @@ DESCRIPTION
|
|
|
1375
1417
|
package.json file. You can set up your own main file or environment variables by changing it.
|
|
1376
1418
|
```
|
|
1377
1419
|
|
|
1378
|
-
_See code: [src/commands/run.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1420
|
+
_See code: [src/commands/run.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.90/src/commands/run.ts)_
|
|
1379
1421
|
|
|
1380
1422
|
## `apify runs`
|
|
1381
1423
|
|
|
@@ -1389,7 +1431,7 @@ DESCRIPTION
|
|
|
1389
1431
|
Commands are designed to be used with Actor Runs.
|
|
1390
1432
|
```
|
|
1391
1433
|
|
|
1392
|
-
_See code: [src/commands/runs/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1434
|
+
_See code: [src/commands/runs/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.90/src/commands/runs/index.ts)_
|
|
1393
1435
|
|
|
1394
1436
|
## `apify runs abort RUNID`
|
|
1395
1437
|
|
|
@@ -1412,7 +1454,7 @@ DESCRIPTION
|
|
|
1412
1454
|
Aborts an Actor Run.
|
|
1413
1455
|
```
|
|
1414
1456
|
|
|
1415
|
-
_See code: [src/commands/runs/abort.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1457
|
+
_See code: [src/commands/runs/abort.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.90/src/commands/runs/abort.ts)_
|
|
1416
1458
|
|
|
1417
1459
|
## `apify runs info RUNID`
|
|
1418
1460
|
|
|
@@ -1435,7 +1477,7 @@ DESCRIPTION
|
|
|
1435
1477
|
Prints information about an Actor Run.
|
|
1436
1478
|
```
|
|
1437
1479
|
|
|
1438
|
-
_See code: [src/commands/runs/info.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1480
|
+
_See code: [src/commands/runs/info.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.90/src/commands/runs/info.ts)_
|
|
1439
1481
|
|
|
1440
1482
|
## `apify runs log RUNID`
|
|
1441
1483
|
|
|
@@ -1452,7 +1494,7 @@ DESCRIPTION
|
|
|
1452
1494
|
Prints the log of a specific run.
|
|
1453
1495
|
```
|
|
1454
1496
|
|
|
1455
|
-
_See code: [src/commands/runs/log.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1497
|
+
_See code: [src/commands/runs/log.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.90/src/commands/runs/log.ts)_
|
|
1456
1498
|
|
|
1457
1499
|
## `apify runs ls [ACTORID]`
|
|
1458
1500
|
|
|
@@ -1478,7 +1520,7 @@ DESCRIPTION
|
|
|
1478
1520
|
Lists all runs of the Actor.
|
|
1479
1521
|
```
|
|
1480
1522
|
|
|
1481
|
-
_See code: [src/commands/runs/ls.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1523
|
+
_See code: [src/commands/runs/ls.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.90/src/commands/runs/ls.ts)_
|
|
1482
1524
|
|
|
1483
1525
|
## `apify runs resurrect RUNID`
|
|
1484
1526
|
|
|
@@ -1498,7 +1540,7 @@ DESCRIPTION
|
|
|
1498
1540
|
Resurrects an aborted or finished Actor Run.
|
|
1499
1541
|
```
|
|
1500
1542
|
|
|
1501
|
-
_See code: [src/commands/runs/resurrect.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1543
|
+
_See code: [src/commands/runs/resurrect.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.90/src/commands/runs/resurrect.ts)_
|
|
1502
1544
|
|
|
1503
1545
|
## `apify runs rm RUNID`
|
|
1504
1546
|
|
|
@@ -1515,7 +1557,7 @@ DESCRIPTION
|
|
|
1515
1557
|
Deletes an Actor Run.
|
|
1516
1558
|
```
|
|
1517
1559
|
|
|
1518
|
-
_See code: [src/commands/runs/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1560
|
+
_See code: [src/commands/runs/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.90/src/commands/runs/rm.ts)_
|
|
1519
1561
|
|
|
1520
1562
|
## `apify secrets`
|
|
1521
1563
|
|
|
@@ -1545,7 +1587,7 @@ DESCRIPTION
|
|
|
1545
1587
|
of the Actor.
|
|
1546
1588
|
```
|
|
1547
1589
|
|
|
1548
|
-
_See code: [src/commands/secrets/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1590
|
+
_See code: [src/commands/secrets/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.90/src/commands/secrets/index.ts)_
|
|
1549
1591
|
|
|
1550
1592
|
## `apify secrets add NAME VALUE`
|
|
1551
1593
|
|
|
@@ -1564,7 +1606,7 @@ DESCRIPTION
|
|
|
1564
1606
|
The secrets are stored to a file at ~/.apify
|
|
1565
1607
|
```
|
|
1566
1608
|
|
|
1567
|
-
_See code: [src/commands/secrets/add.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1609
|
+
_See code: [src/commands/secrets/add.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.90/src/commands/secrets/add.ts)_
|
|
1568
1610
|
|
|
1569
1611
|
## `apify secrets rm NAME`
|
|
1570
1612
|
|
|
@@ -1581,7 +1623,7 @@ DESCRIPTION
|
|
|
1581
1623
|
Removes the secret.
|
|
1582
1624
|
```
|
|
1583
1625
|
|
|
1584
|
-
_See code: [src/commands/secrets/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1626
|
+
_See code: [src/commands/secrets/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.90/src/commands/secrets/rm.ts)_
|
|
1585
1627
|
|
|
1586
1628
|
## `apify task`
|
|
1587
1629
|
|
|
@@ -1595,7 +1637,7 @@ DESCRIPTION
|
|
|
1595
1637
|
Commands are designed to be used to interact with Tasks.
|
|
1596
1638
|
```
|
|
1597
1639
|
|
|
1598
|
-
_See code: [src/commands/task/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1640
|
+
_See code: [src/commands/task/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.90/src/commands/task/index.ts)_
|
|
1599
1641
|
|
|
1600
1642
|
## `apify task run TASKID`
|
|
1601
1643
|
|
|
@@ -1619,7 +1661,7 @@ DESCRIPTION
|
|
|
1619
1661
|
takes input for the Actor from the default local key-value store by default.
|
|
1620
1662
|
```
|
|
1621
1663
|
|
|
1622
|
-
_See code: [src/commands/task/run.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1664
|
+
_See code: [src/commands/task/run.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.90/src/commands/task/run.ts)_
|
|
1623
1665
|
|
|
1624
1666
|
## `apify validate-schema [PATH]`
|
|
1625
1667
|
|
|
@@ -1644,6 +1686,6 @@ DESCRIPTION
|
|
|
1644
1686
|
You can also pass any custom path to your input schema to have it validated instead.
|
|
1645
1687
|
```
|
|
1646
1688
|
|
|
1647
|
-
_See code: [src/commands/validate-schema.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1689
|
+
_See code: [src/commands/validate-schema.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.90/src/commands/validate-schema.ts)_
|
|
1648
1690
|
<!-- commandsstop -->
|
|
1649
1691
|
<!-- prettier-ignore-end -->
|