apify-cli 0.21.2-beta.2 → 0.21.2-beta.3

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 CHANGED
@@ -9,6 +9,7 @@ All notable changes to this project will be documented in this file.
9
9
  ### 🚀 Features
10
10
 
11
11
  - Actor charge command ([#748](https://github.com/apify/apify-cli/pull/748)) ([766c647](https://github.com/apify/apify-cli/commit/766c6470fe8c84fa1be663ee3251b48830f3cc27)) by [@mhamas](https://github.com/mhamas)
12
+ - Add get-public-url command ([#756](https://github.com/apify/apify-cli/pull/756)) ([88aadee](https://github.com/apify/apify-cli/commit/88aadee4621438b5df180a27f0ffc2a6b6bee946)) by [@janbuchar](https://github.com/janbuchar)
12
13
 
13
14
  ### 🐛 Bug Fixes
14
15
 
package/README.md CHANGED
@@ -285,6 +285,7 @@ This section contains printouts of `apify help` for all commands.
285
285
  * [`apify actor`](#apify-actor)
286
286
  * [`apify actor charge EVENTNAME`](#apify-actor-charge-eventname)
287
287
  * [`apify actor get-input`](#apify-actor-get-input)
288
+ * [`apify actor get-public-url KEY`](#apify-actor-get-public-url-key)
288
289
  * [`apify actor get-value KEY`](#apify-actor-get-value-key)
289
290
  * [`apify actor push-data [ITEM]`](#apify-actor-push-data-item)
290
291
  * [`apify actor set-value KEY [VALUE]`](#apify-actor-set-value-key-value)
@@ -358,7 +359,7 @@ DESCRIPTION
358
359
  Manages runtime data operations inside of a running Actor.
359
360
  ```
360
361
 
361
- _See code: [src/commands/actor/index.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.2/src/commands/actor/index.ts)_
362
+ _See code: [src/commands/actor/index.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.3/src/commands/actor/index.ts)_
362
363
 
363
364
  ## `apify actor charge EVENTNAME`
364
365
 
@@ -380,7 +381,7 @@ DESCRIPTION
380
381
  Charge for a specific event in the pay-per-event Actor run.
381
382
  ```
382
383
 
383
- _See code: [src/commands/actor/charge.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.2/src/commands/actor/charge.ts)_
384
+ _See code: [src/commands/actor/charge.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.3/src/commands/actor/charge.ts)_
384
385
 
385
386
  ## `apify actor get-input`
386
387
 
@@ -394,7 +395,24 @@ DESCRIPTION
394
395
  Gets the Actor input value from the default key-value store associated with the Actor run.
395
396
  ```
396
397
 
397
- _See code: [src/commands/actor/get-input.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.2/src/commands/actor/get-input.ts)_
398
+ _See code: [src/commands/actor/get-input.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.3/src/commands/actor/get-input.ts)_
399
+
400
+ ## `apify actor get-public-url KEY`
401
+
402
+ Get an HTTP URL that allows public access to a key-value store item.
403
+
404
+ ```
405
+ USAGE
406
+ $ apify actor get-public-url KEY
407
+
408
+ ARGUMENTS
409
+ KEY Key of the record in key-value store
410
+
411
+ DESCRIPTION
412
+ Get an HTTP URL that allows public access to a key-value store item.
413
+ ```
414
+
415
+ _See code: [src/commands/actor/get-public-url.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.3/src/commands/actor/get-public-url.ts)_
398
416
 
399
417
  ## `apify actor get-value KEY`
400
418
 
@@ -411,7 +429,7 @@ DESCRIPTION
411
429
  Gets a value from the default key-value store associated with the Actor run.
412
430
  ```
413
431
 
414
- _See code: [src/commands/actor/get-value.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.2/src/commands/actor/get-value.ts)_
432
+ _See code: [src/commands/actor/get-value.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.3/src/commands/actor/get-value.ts)_
415
433
 
416
434
  ## `apify actor push-data [ITEM]`
417
435
 
@@ -434,7 +452,7 @@ DESCRIPTION
434
452
  $ cat ./test.json | apify actor push-data
435
453
  ```
436
454
 
437
- _See code: [src/commands/actor/push-data.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.2/src/commands/actor/push-data.ts)_
455
+ _See code: [src/commands/actor/push-data.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.3/src/commands/actor/push-data.ts)_
438
456
 
439
457
  ## `apify actor set-value KEY [VALUE]`
440
458
 
@@ -466,7 +484,7 @@ DESCRIPTION
466
484
  $ cat ./my-text-file.txt | apify actor set-value KEY --contentType text/plain
467
485
  ```
468
486
 
469
- _See code: [src/commands/actor/set-value.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.2/src/commands/actor/set-value.ts)_
487
+ _See code: [src/commands/actor/set-value.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.3/src/commands/actor/set-value.ts)_
470
488
 
471
489
  ## `apify actors`
472
490
 
@@ -480,7 +498,7 @@ DESCRIPTION
480
498
  Manages Actor creation, deployment, and execution on the Apify platform.
481
499
  ```
482
500
 
483
- _See code: [src/commands/actors/index.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.2/src/commands/actors/index.ts)_
501
+ _See code: [src/commands/actors/index.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.3/src/commands/actors/index.ts)_
484
502
 
485
503
  ## `apify actors build [ACTORID]`
486
504
 
@@ -507,7 +525,7 @@ DESCRIPTION
507
525
  Creates a new build of the Actor.
508
526
  ```
509
527
 
510
- _See code: [src/commands/actors/build.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.2/src/commands/actors/build.ts)_
528
+ _See code: [src/commands/actors/build.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.3/src/commands/actors/build.ts)_
511
529
 
512
530
  ## `apify actors call [ACTORID]`
513
531
 
@@ -540,7 +558,7 @@ DESCRIPTION
540
558
  Reads input from local key-value store by default.
541
559
  ```
542
560
 
543
- _See code: [src/commands/actors/call.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.2/src/commands/actors/call.ts)_
561
+ _See code: [src/commands/actors/call.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.3/src/commands/actors/call.ts)_
544
562
 
545
563
  ## `apify actors info ACTORID`
546
564
 
@@ -564,7 +582,7 @@ DESCRIPTION
564
582
  Get information about an Actor.
565
583
  ```
566
584
 
567
- _See code: [src/commands/actors/info.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.2/src/commands/actors/info.ts)_
585
+ _See code: [src/commands/actors/info.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.3/src/commands/actors/info.ts)_
568
586
 
569
587
  ## `apify actors ls`
570
588
 
@@ -587,7 +605,7 @@ DESCRIPTION
587
605
  Prints a list of recently executed Actors or Actors you own.
588
606
  ```
589
607
 
590
- _See code: [src/commands/actors/ls.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.2/src/commands/actors/ls.ts)_
608
+ _See code: [src/commands/actors/ls.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.3/src/commands/actors/ls.ts)_
591
609
 
592
610
  ## `apify actors pull [ACTORID]`
593
611
 
@@ -609,7 +627,7 @@ DESCRIPTION
609
627
  Download Actor code to current directory. Clones Git repositories or fetches Actor files based on the source type.
610
628
  ```
611
629
 
612
- _See code: [src/commands/actors/pull.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.2/src/commands/actors/pull.ts)_
630
+ _See code: [src/commands/actors/pull.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.3/src/commands/actors/pull.ts)_
613
631
 
614
632
  ## `apify actors push [ACTORID]`
615
633
 
@@ -640,7 +658,7 @@ DESCRIPTION
640
658
  Use --force to override newer remote versions.
641
659
  ```
642
660
 
643
- _See code: [src/commands/actors/push.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.2/src/commands/actors/push.ts)_
661
+ _See code: [src/commands/actors/push.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.3/src/commands/actors/push.ts)_
644
662
 
645
663
  ## `apify actors rm ACTORID`
646
664
 
@@ -657,7 +675,7 @@ DESCRIPTION
657
675
  Permanently removes an Actor from your account.
658
676
  ```
659
677
 
660
- _See code: [src/commands/actors/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.2/src/commands/actors/rm.ts)_
678
+ _See code: [src/commands/actors/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.3/src/commands/actors/rm.ts)_
661
679
 
662
680
  ## `apify actors start [ACTORID]`
663
681
 
@@ -688,7 +706,7 @@ DESCRIPTION
688
706
  Uses authenticated account and local key-value store for input.
689
707
  ```
690
708
 
691
- _See code: [src/commands/actors/start.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.2/src/commands/actors/start.ts)_
709
+ _See code: [src/commands/actors/start.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.3/src/commands/actors/start.ts)_
692
710
 
693
711
  ## `apify builds`
694
712
 
@@ -702,7 +720,7 @@ DESCRIPTION
702
720
  Manages Actor build processes and versioning.
703
721
  ```
704
722
 
705
- _See code: [src/commands/builds/index.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.2/src/commands/builds/index.ts)_
723
+ _See code: [src/commands/builds/index.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.3/src/commands/builds/index.ts)_
706
724
 
707
725
  ## `apify builds create [ACTORID]`
708
726
 
@@ -729,7 +747,7 @@ DESCRIPTION
729
747
  Creates a new build of the Actor.
730
748
  ```
731
749
 
732
- _See code: [src/commands/builds/create.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.2/src/commands/builds/create.ts)_
750
+ _See code: [src/commands/builds/create.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.3/src/commands/builds/create.ts)_
733
751
 
734
752
  ## `apify builds info BUILDID`
735
753
 
@@ -749,7 +767,7 @@ DESCRIPTION
749
767
  Prints information about a specific build.
750
768
  ```
751
769
 
752
- _See code: [src/commands/builds/info.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.2/src/commands/builds/info.ts)_
770
+ _See code: [src/commands/builds/info.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.3/src/commands/builds/info.ts)_
753
771
 
754
772
  ## `apify builds log BUILDID`
755
773
 
@@ -766,7 +784,7 @@ DESCRIPTION
766
784
  Prints the log of a specific build.
767
785
  ```
768
786
 
769
- _See code: [src/commands/builds/log.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.2/src/commands/builds/log.ts)_
787
+ _See code: [src/commands/builds/log.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.3/src/commands/builds/log.ts)_
770
788
 
771
789
  ## `apify builds ls [ACTORID]`
772
790
 
@@ -792,7 +810,7 @@ DESCRIPTION
792
810
  Lists all builds of the Actor.
793
811
  ```
794
812
 
795
- _See code: [src/commands/builds/ls.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.2/src/commands/builds/ls.ts)_
813
+ _See code: [src/commands/builds/ls.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.3/src/commands/builds/ls.ts)_
796
814
 
797
815
  ## `apify builds rm BUILDID`
798
816
 
@@ -809,7 +827,7 @@ DESCRIPTION
809
827
  Permanently removes an Actor build from the Apify platform.
810
828
  ```
811
829
 
812
- _See code: [src/commands/builds/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.2/src/commands/builds/rm.ts)_
830
+ _See code: [src/commands/builds/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.3/src/commands/builds/rm.ts)_
813
831
 
814
832
  ## `apify call [ACTORID]`
815
833
 
@@ -842,7 +860,7 @@ DESCRIPTION
842
860
  Reads input from local key-value store by default.
843
861
  ```
844
862
 
845
- _See code: [src/commands/call.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.2/src/commands/call.ts)_
863
+ _See code: [src/commands/call.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.3/src/commands/call.ts)_
846
864
 
847
865
  ## `apify create [ACTORNAME]`
848
866
 
@@ -867,7 +885,7 @@ DESCRIPTION
867
885
  Creates an Actor project from a template in a new directory.
868
886
  ```
869
887
 
870
- _See code: [src/commands/create.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.2/src/commands/create.ts)_
888
+ _See code: [src/commands/create.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.3/src/commands/create.ts)_
871
889
 
872
890
  ## `apify datasets`
873
891
 
@@ -881,7 +899,7 @@ DESCRIPTION
881
899
  Manages structured data storage and retrieval.
882
900
  ```
883
901
 
884
- _See code: [src/commands/datasets/index.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.2/src/commands/datasets/index.ts)_
902
+ _See code: [src/commands/datasets/index.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.3/src/commands/datasets/index.ts)_
885
903
 
886
904
  ## `apify datasets create [DATASETNAME]`
887
905
 
@@ -901,7 +919,7 @@ DESCRIPTION
901
919
  Creates a new dataset for storing structured data on your account.
902
920
  ```
903
921
 
904
- _See code: [src/commands/datasets/create.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.2/src/commands/datasets/create.ts)_
922
+ _See code: [src/commands/datasets/create.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.3/src/commands/datasets/create.ts)_
905
923
 
906
924
  ## `apify datasets get-items DATASETID`
907
925
 
@@ -924,7 +942,7 @@ DESCRIPTION
924
942
  Retrieves dataset items in specified format (JSON, CSV, etc).
925
943
  ```
926
944
 
927
- _See code: [src/commands/datasets/get-items.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.2/src/commands/datasets/get-items.ts)_
945
+ _See code: [src/commands/datasets/get-items.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.3/src/commands/datasets/get-items.ts)_
928
946
 
929
947
  ## `apify datasets info STOREID`
930
948
 
@@ -944,7 +962,7 @@ DESCRIPTION
944
962
  Prints information about a specific dataset.
945
963
  ```
946
964
 
947
- _See code: [src/commands/datasets/info.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.2/src/commands/datasets/info.ts)_
965
+ _See code: [src/commands/datasets/info.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.3/src/commands/datasets/info.ts)_
948
966
 
949
967
  ## `apify datasets ls`
950
968
 
@@ -967,7 +985,7 @@ DESCRIPTION
967
985
  Prints all datasets on your account.
968
986
  ```
969
987
 
970
- _See code: [src/commands/datasets/ls.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.2/src/commands/datasets/ls.ts)_
988
+ _See code: [src/commands/datasets/ls.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.3/src/commands/datasets/ls.ts)_
971
989
 
972
990
  ## `apify datasets push-items NAMEORID [ITEM]`
973
991
 
@@ -985,7 +1003,7 @@ DESCRIPTION
985
1003
  Adds data items to specified dataset. Accepts single object or array of objects.
986
1004
  ```
987
1005
 
988
- _See code: [src/commands/datasets/push-items.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.2/src/commands/datasets/push-items.ts)_
1006
+ _See code: [src/commands/datasets/push-items.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.3/src/commands/datasets/push-items.ts)_
989
1007
 
990
1008
  ## `apify datasets rename NAMEORID [NEWNAME]`
991
1009
 
@@ -1006,7 +1024,7 @@ DESCRIPTION
1006
1024
  Change dataset name or removes name with --unname flag.
1007
1025
  ```
1008
1026
 
1009
- _See code: [src/commands/datasets/rename.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.2/src/commands/datasets/rename.ts)_
1027
+ _See code: [src/commands/datasets/rename.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.3/src/commands/datasets/rename.ts)_
1010
1028
 
1011
1029
  ## `apify datasets rm DATASETNAMEORID`
1012
1030
 
@@ -1023,7 +1041,7 @@ DESCRIPTION
1023
1041
  Permanently removes a dataset.
1024
1042
  ```
1025
1043
 
1026
- _See code: [src/commands/datasets/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.2/src/commands/datasets/rm.ts)_
1044
+ _See code: [src/commands/datasets/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.3/src/commands/datasets/rm.ts)_
1027
1045
 
1028
1046
  ## `apify help [COMMAND]`
1029
1047
 
@@ -1057,7 +1075,7 @@ DESCRIPTION
1057
1075
  Prints details about your currently authenticated Apify account.
1058
1076
  ```
1059
1077
 
1060
- _See code: [src/commands/info.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.2/src/commands/info.ts)_
1078
+ _See code: [src/commands/info.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.3/src/commands/info.ts)_
1061
1079
 
1062
1080
  ## `apify init [ACTORNAME]`
1063
1081
 
@@ -1084,7 +1102,7 @@ DESCRIPTION
1084
1102
  WARNING: Overwrites existing 'storage' directory.
1085
1103
  ```
1086
1104
 
1087
- _See code: [src/commands/init.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.2/src/commands/init.ts)_
1105
+ _See code: [src/commands/init.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.3/src/commands/init.ts)_
1088
1106
 
1089
1107
  ## `apify key-value-stores`
1090
1108
 
@@ -1100,7 +1118,7 @@ DESCRIPTION
1100
1118
  Alias: kvs
1101
1119
  ```
1102
1120
 
1103
- _See code: [src/commands/key-value-stores/index.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.2/src/commands/key-value-stores/index.ts)_
1121
+ _See code: [src/commands/key-value-stores/index.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.3/src/commands/key-value-stores/index.ts)_
1104
1122
 
1105
1123
  ## `apify key-value-stores create [KEYVALUESTORENAME]`
1106
1124
 
@@ -1120,7 +1138,7 @@ DESCRIPTION
1120
1138
  Creates a new key-value store on your account.
1121
1139
  ```
1122
1140
 
1123
- _See code: [src/commands/key-value-stores/create.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.2/src/commands/key-value-stores/create.ts)_
1141
+ _See code: [src/commands/key-value-stores/create.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.3/src/commands/key-value-stores/create.ts)_
1124
1142
 
1125
1143
  ## `apify key-value-stores delete-value STOREID ITEMKEY`
1126
1144
 
@@ -1138,7 +1156,7 @@ DESCRIPTION
1138
1156
  Delete a value from a key-value store.
1139
1157
  ```
1140
1158
 
1141
- _See code: [src/commands/key-value-stores/delete-value.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.2/src/commands/key-value-stores/delete-value.ts)_
1159
+ _See code: [src/commands/key-value-stores/delete-value.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.3/src/commands/key-value-stores/delete-value.ts)_
1142
1160
 
1143
1161
  ## `apify key-value-stores get-value KEYVALUESTOREID ITEMKEY`
1144
1162
 
@@ -1159,7 +1177,7 @@ DESCRIPTION
1159
1177
  Retrieves stored value for specified key. Use --only-content-type to check MIME type.
1160
1178
  ```
1161
1179
 
1162
- _See code: [src/commands/key-value-stores/get-value.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.2/src/commands/key-value-stores/get-value.ts)_
1180
+ _See code: [src/commands/key-value-stores/get-value.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.3/src/commands/key-value-stores/get-value.ts)_
1163
1181
 
1164
1182
  ## `apify key-value-stores info STOREID`
1165
1183
 
@@ -1179,7 +1197,7 @@ DESCRIPTION
1179
1197
  Shows information about a key-value store.
1180
1198
  ```
1181
1199
 
1182
- _See code: [src/commands/key-value-stores/info.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.2/src/commands/key-value-stores/info.ts)_
1200
+ _See code: [src/commands/key-value-stores/info.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.3/src/commands/key-value-stores/info.ts)_
1183
1201
 
1184
1202
  ## `apify key-value-stores keys STOREID`
1185
1203
 
@@ -1203,7 +1221,7 @@ DESCRIPTION
1203
1221
  Lists all keys in a key-value store.
1204
1222
  ```
1205
1223
 
1206
- _See code: [src/commands/key-value-stores/keys.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.2/src/commands/key-value-stores/keys.ts)_
1224
+ _See code: [src/commands/key-value-stores/keys.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.3/src/commands/key-value-stores/keys.ts)_
1207
1225
 
1208
1226
  ## `apify key-value-stores ls`
1209
1227
 
@@ -1226,7 +1244,7 @@ DESCRIPTION
1226
1244
  Lists all key-value stores on your account.
1227
1245
  ```
1228
1246
 
1229
- _See code: [src/commands/key-value-stores/ls.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.2/src/commands/key-value-stores/ls.ts)_
1247
+ _See code: [src/commands/key-value-stores/ls.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.3/src/commands/key-value-stores/ls.ts)_
1230
1248
 
1231
1249
  ## `apify key-value-stores rename KEYVALUESTORENAMEORID [NEWNAME]`
1232
1250
 
@@ -1247,7 +1265,7 @@ DESCRIPTION
1247
1265
  Renames a key-value store, or removes its unique name.
1248
1266
  ```
1249
1267
 
1250
- _See code: [src/commands/key-value-stores/rename.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.2/src/commands/key-value-stores/rename.ts)_
1268
+ _See code: [src/commands/key-value-stores/rename.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.3/src/commands/key-value-stores/rename.ts)_
1251
1269
 
1252
1270
  ## `apify key-value-stores rm KEYVALUESTORENAMEORID`
1253
1271
 
@@ -1264,7 +1282,7 @@ DESCRIPTION
1264
1282
  Permanently removes a key-value store.
1265
1283
  ```
1266
1284
 
1267
- _See code: [src/commands/key-value-stores/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.2/src/commands/key-value-stores/rm.ts)_
1285
+ _See code: [src/commands/key-value-stores/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.3/src/commands/key-value-stores/rm.ts)_
1268
1286
 
1269
1287
  ## `apify key-value-stores set-value STOREID ITEMKEY [VALUE]`
1270
1288
 
@@ -1287,7 +1305,7 @@ DESCRIPTION
1287
1305
  Stores value with specified key. Set content-type with --content-type flag.
1288
1306
  ```
1289
1307
 
1290
- _See code: [src/commands/key-value-stores/set-value.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.2/src/commands/key-value-stores/set-value.ts)_
1308
+ _See code: [src/commands/key-value-stores/set-value.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.3/src/commands/key-value-stores/set-value.ts)_
1291
1309
 
1292
1310
  ## `apify login`
1293
1311
 
@@ -1309,7 +1327,7 @@ DESCRIPTION
1309
1327
  Run 'apify logout' to remove authentication.
1310
1328
  ```
1311
1329
 
1312
- _See code: [src/commands/login.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.2/src/commands/login.ts)_
1330
+ _See code: [src/commands/login.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.3/src/commands/login.ts)_
1313
1331
 
1314
1332
  ## `apify logout`
1315
1333
 
@@ -1324,7 +1342,7 @@ DESCRIPTION
1324
1342
  Run 'apify login' to authenticate again.
1325
1343
  ```
1326
1344
 
1327
- _See code: [src/commands/logout.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.2/src/commands/logout.ts)_
1345
+ _See code: [src/commands/logout.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.3/src/commands/logout.ts)_
1328
1346
 
1329
1347
  ## `apify pull [ACTORID]`
1330
1348
 
@@ -1346,7 +1364,7 @@ DESCRIPTION
1346
1364
  Download Actor code to current directory. Clones Git repositories or fetches Actor files based on the source type.
1347
1365
  ```
1348
1366
 
1349
- _See code: [src/commands/pull.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.2/src/commands/pull.ts)_
1367
+ _See code: [src/commands/pull.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.3/src/commands/pull.ts)_
1350
1368
 
1351
1369
  ## `apify push [ACTORID]`
1352
1370
 
@@ -1377,7 +1395,7 @@ DESCRIPTION
1377
1395
  Use --force to override newer remote versions.
1378
1396
  ```
1379
1397
 
1380
- _See code: [src/commands/push.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.2/src/commands/push.ts)_
1398
+ _See code: [src/commands/push.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.3/src/commands/push.ts)_
1381
1399
 
1382
1400
  ## `apify request-queues`
1383
1401
 
@@ -1391,7 +1409,7 @@ DESCRIPTION
1391
1409
  Manages URL queues for web scraping and automation tasks.
1392
1410
  ```
1393
1411
 
1394
- _See code: [src/commands/request-queues/index.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.2/src/commands/request-queues/index.ts)_
1412
+ _See code: [src/commands/request-queues/index.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.3/src/commands/request-queues/index.ts)_
1395
1413
 
1396
1414
  ## `apify run`
1397
1415
 
@@ -1424,7 +1442,7 @@ DESCRIPTION
1424
1442
  NOTE: For Node.js Actors, customize behavior by modifying the 'start' script in package.json file.
1425
1443
  ```
1426
1444
 
1427
- _See code: [src/commands/run.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.2/src/commands/run.ts)_
1445
+ _See code: [src/commands/run.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.3/src/commands/run.ts)_
1428
1446
 
1429
1447
  ## `apify runs`
1430
1448
 
@@ -1438,7 +1456,7 @@ DESCRIPTION
1438
1456
  Manages Actor run operations
1439
1457
  ```
1440
1458
 
1441
- _See code: [src/commands/runs/index.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.2/src/commands/runs/index.ts)_
1459
+ _See code: [src/commands/runs/index.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.3/src/commands/runs/index.ts)_
1442
1460
 
1443
1461
  ## `apify runs abort RUNID`
1444
1462
 
@@ -1461,7 +1479,7 @@ DESCRIPTION
1461
1479
  Aborts an Actor run.
1462
1480
  ```
1463
1481
 
1464
- _See code: [src/commands/runs/abort.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.2/src/commands/runs/abort.ts)_
1482
+ _See code: [src/commands/runs/abort.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.3/src/commands/runs/abort.ts)_
1465
1483
 
1466
1484
  ## `apify runs info RUNID`
1467
1485
 
@@ -1484,7 +1502,7 @@ DESCRIPTION
1484
1502
  Prints information about an Actor run.
1485
1503
  ```
1486
1504
 
1487
- _See code: [src/commands/runs/info.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.2/src/commands/runs/info.ts)_
1505
+ _See code: [src/commands/runs/info.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.3/src/commands/runs/info.ts)_
1488
1506
 
1489
1507
  ## `apify runs log RUNID`
1490
1508
 
@@ -1501,7 +1519,7 @@ DESCRIPTION
1501
1519
  Prints the log of a specific run.
1502
1520
  ```
1503
1521
 
1504
- _See code: [src/commands/runs/log.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.2/src/commands/runs/log.ts)_
1522
+ _See code: [src/commands/runs/log.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.3/src/commands/runs/log.ts)_
1505
1523
 
1506
1524
  ## `apify runs ls [ACTORID]`
1507
1525
 
@@ -1527,7 +1545,7 @@ DESCRIPTION
1527
1545
  Lists all runs of the Actor.
1528
1546
  ```
1529
1547
 
1530
- _See code: [src/commands/runs/ls.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.2/src/commands/runs/ls.ts)_
1548
+ _See code: [src/commands/runs/ls.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.3/src/commands/runs/ls.ts)_
1531
1549
 
1532
1550
  ## `apify runs resurrect RUNID`
1533
1551
 
@@ -1547,7 +1565,7 @@ DESCRIPTION
1547
1565
  Resurrects an aborted or finished Actor Run.
1548
1566
  ```
1549
1567
 
1550
- _See code: [src/commands/runs/resurrect.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.2/src/commands/runs/resurrect.ts)_
1568
+ _See code: [src/commands/runs/resurrect.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.3/src/commands/runs/resurrect.ts)_
1551
1569
 
1552
1570
  ## `apify runs rm RUNID`
1553
1571
 
@@ -1564,7 +1582,7 @@ DESCRIPTION
1564
1582
  Deletes an Actor Run.
1565
1583
  ```
1566
1584
 
1567
- _See code: [src/commands/runs/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.2/src/commands/runs/rm.ts)_
1585
+ _See code: [src/commands/runs/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.3/src/commands/runs/rm.ts)_
1568
1586
 
1569
1587
  ## `apify secrets`
1570
1588
 
@@ -1594,7 +1612,7 @@ DESCRIPTION
1594
1612
  of the Actor.
1595
1613
  ```
1596
1614
 
1597
- _See code: [src/commands/secrets/index.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.2/src/commands/secrets/index.ts)_
1615
+ _See code: [src/commands/secrets/index.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.3/src/commands/secrets/index.ts)_
1598
1616
 
1599
1617
  ## `apify secrets add NAME VALUE`
1600
1618
 
@@ -1612,7 +1630,7 @@ DESCRIPTION
1612
1630
  Adds a new secret to '~/.apify' for use in Actor environment variables.
1613
1631
  ```
1614
1632
 
1615
- _See code: [src/commands/secrets/add.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.2/src/commands/secrets/add.ts)_
1633
+ _See code: [src/commands/secrets/add.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.3/src/commands/secrets/add.ts)_
1616
1634
 
1617
1635
  ## `apify secrets rm NAME`
1618
1636
 
@@ -1629,7 +1647,7 @@ DESCRIPTION
1629
1647
  Permanently deletes a secret from your stored credentials.
1630
1648
  ```
1631
1649
 
1632
- _See code: [src/commands/secrets/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.2/src/commands/secrets/rm.ts)_
1650
+ _See code: [src/commands/secrets/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.3/src/commands/secrets/rm.ts)_
1633
1651
 
1634
1652
  ## `apify task`
1635
1653
 
@@ -1643,7 +1661,7 @@ DESCRIPTION
1643
1661
  Manages scheduled and predefined Actor configurations.
1644
1662
  ```
1645
1663
 
1646
- _See code: [src/commands/task/index.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.2/src/commands/task/index.ts)_
1664
+ _See code: [src/commands/task/index.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.3/src/commands/task/index.ts)_
1647
1665
 
1648
1666
  ## `apify task run TASKID`
1649
1667
 
@@ -1666,7 +1684,7 @@ DESCRIPTION
1666
1684
  Customize with --memory and --timeout flags.
1667
1685
  ```
1668
1686
 
1669
- _See code: [src/commands/task/run.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.2/src/commands/task/run.ts)_
1687
+ _See code: [src/commands/task/run.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.3/src/commands/task/run.ts)_
1670
1688
 
1671
1689
  ## `apify validate-schema [PATH]`
1672
1690
 
@@ -1689,6 +1707,6 @@ DESCRIPTION
1689
1707
  Optionally specify custom schema path to validate.
1690
1708
  ```
1691
1709
 
1692
- _See code: [src/commands/validate-schema.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.2/src/commands/validate-schema.ts)_
1710
+ _See code: [src/commands/validate-schema.ts](https://github.com/apify/apify-cli/blob/v0.21.2-beta.3/src/commands/validate-schema.ts)_
1693
1711
  <!-- commandsstop -->
1694
1712
  <!-- prettier-ignore-end -->