apify-cli 0.21.2 → 0.21.3-beta.0

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
@@ -2,6 +2,16 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
+ <!-- git-cliff-unreleased-start -->
6
+
7
+ ## 0.21.3 - **not yet released**
8
+
9
+ ### 🚀 Features
10
+
11
+ - Add signature to actor get-public-url ([#767](https://github.com/apify/apify-cli/pull/767)) ([4641053](https://github.com/apify/apify-cli/commit/464105310d52bb78dbf979cc6d7d31c3ee30003d)) by [@danpoletaev](https://github.com/danpoletaev)
12
+
13
+ <!-- git-cliff-unreleased-end -->
14
+
5
15
  ## [0.21.2](https://github.com/apify/apify-cli/releases/tag/v0.21.2) (2025-02-26)
6
16
 
7
17
  ### 🚀 Features
package/README.md CHANGED
@@ -359,7 +359,7 @@ DESCRIPTION
359
359
  Manages runtime data operations inside of a running Actor.
360
360
  ```
361
361
 
362
- _See code: [src/commands/actor/index.ts](https://github.com/apify/apify-cli/blob/v0.21.2/src/commands/actor/index.ts)_
362
+ _See code: [src/commands/actor/index.ts](https://github.com/apify/apify-cli/blob/v0.21.3-beta.0/src/commands/actor/index.ts)_
363
363
 
364
364
  ## `apify actor charge EVENTNAME`
365
365
 
@@ -381,7 +381,7 @@ DESCRIPTION
381
381
  Charge for a specific event in the pay-per-event Actor run.
382
382
  ```
383
383
 
384
- _See code: [src/commands/actor/charge.ts](https://github.com/apify/apify-cli/blob/v0.21.2/src/commands/actor/charge.ts)_
384
+ _See code: [src/commands/actor/charge.ts](https://github.com/apify/apify-cli/blob/v0.21.3-beta.0/src/commands/actor/charge.ts)_
385
385
 
386
386
  ## `apify actor get-input`
387
387
 
@@ -395,7 +395,7 @@ DESCRIPTION
395
395
  Gets the Actor input value from the default key-value store associated with the Actor run.
396
396
  ```
397
397
 
398
- _See code: [src/commands/actor/get-input.ts](https://github.com/apify/apify-cli/blob/v0.21.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.3-beta.0/src/commands/actor/get-input.ts)_
399
399
 
400
400
  ## `apify actor get-public-url KEY`
401
401
 
@@ -412,7 +412,7 @@ DESCRIPTION
412
412
  Get an HTTP URL that allows public access to a key-value store item.
413
413
  ```
414
414
 
415
- _See code: [src/commands/actor/get-public-url.ts](https://github.com/apify/apify-cli/blob/v0.21.2/src/commands/actor/get-public-url.ts)_
415
+ _See code: [src/commands/actor/get-public-url.ts](https://github.com/apify/apify-cli/blob/v0.21.3-beta.0/src/commands/actor/get-public-url.ts)_
416
416
 
417
417
  ## `apify actor get-value KEY`
418
418
 
@@ -429,7 +429,7 @@ DESCRIPTION
429
429
  Gets a value from the default key-value store associated with the Actor run.
430
430
  ```
431
431
 
432
- _See code: [src/commands/actor/get-value.ts](https://github.com/apify/apify-cli/blob/v0.21.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.3-beta.0/src/commands/actor/get-value.ts)_
433
433
 
434
434
  ## `apify actor push-data [ITEM]`
435
435
 
@@ -452,7 +452,7 @@ DESCRIPTION
452
452
  $ cat ./test.json | apify actor push-data
453
453
  ```
454
454
 
455
- _See code: [src/commands/actor/push-data.ts](https://github.com/apify/apify-cli/blob/v0.21.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.3-beta.0/src/commands/actor/push-data.ts)_
456
456
 
457
457
  ## `apify actor set-value KEY [VALUE]`
458
458
 
@@ -484,7 +484,7 @@ DESCRIPTION
484
484
  $ cat ./my-text-file.txt | apify actor set-value KEY --contentType text/plain
485
485
  ```
486
486
 
487
- _See code: [src/commands/actor/set-value.ts](https://github.com/apify/apify-cli/blob/v0.21.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.3-beta.0/src/commands/actor/set-value.ts)_
488
488
 
489
489
  ## `apify actors`
490
490
 
@@ -498,7 +498,7 @@ DESCRIPTION
498
498
  Manages Actor creation, deployment, and execution on the Apify platform.
499
499
  ```
500
500
 
501
- _See code: [src/commands/actors/index.ts](https://github.com/apify/apify-cli/blob/v0.21.2/src/commands/actors/index.ts)_
501
+ _See code: [src/commands/actors/index.ts](https://github.com/apify/apify-cli/blob/v0.21.3-beta.0/src/commands/actors/index.ts)_
502
502
 
503
503
  ## `apify actors build [ACTORID]`
504
504
 
@@ -525,7 +525,7 @@ DESCRIPTION
525
525
  Creates a new build of the Actor.
526
526
  ```
527
527
 
528
- _See code: [src/commands/actors/build.ts](https://github.com/apify/apify-cli/blob/v0.21.2/src/commands/actors/build.ts)_
528
+ _See code: [src/commands/actors/build.ts](https://github.com/apify/apify-cli/blob/v0.21.3-beta.0/src/commands/actors/build.ts)_
529
529
 
530
530
  ## `apify actors call [ACTORID]`
531
531
 
@@ -558,7 +558,7 @@ DESCRIPTION
558
558
  Reads input from local key-value store by default.
559
559
  ```
560
560
 
561
- _See code: [src/commands/actors/call.ts](https://github.com/apify/apify-cli/blob/v0.21.2/src/commands/actors/call.ts)_
561
+ _See code: [src/commands/actors/call.ts](https://github.com/apify/apify-cli/blob/v0.21.3-beta.0/src/commands/actors/call.ts)_
562
562
 
563
563
  ## `apify actors info ACTORID`
564
564
 
@@ -582,7 +582,7 @@ DESCRIPTION
582
582
  Get information about an Actor.
583
583
  ```
584
584
 
585
- _See code: [src/commands/actors/info.ts](https://github.com/apify/apify-cli/blob/v0.21.2/src/commands/actors/info.ts)_
585
+ _See code: [src/commands/actors/info.ts](https://github.com/apify/apify-cli/blob/v0.21.3-beta.0/src/commands/actors/info.ts)_
586
586
 
587
587
  ## `apify actors ls`
588
588
 
@@ -605,7 +605,7 @@ DESCRIPTION
605
605
  Prints a list of recently executed Actors or Actors you own.
606
606
  ```
607
607
 
608
- _See code: [src/commands/actors/ls.ts](https://github.com/apify/apify-cli/blob/v0.21.2/src/commands/actors/ls.ts)_
608
+ _See code: [src/commands/actors/ls.ts](https://github.com/apify/apify-cli/blob/v0.21.3-beta.0/src/commands/actors/ls.ts)_
609
609
 
610
610
  ## `apify actors pull [ACTORID]`
611
611
 
@@ -627,7 +627,7 @@ DESCRIPTION
627
627
  Download Actor code to current directory. Clones Git repositories or fetches Actor files based on the source type.
628
628
  ```
629
629
 
630
- _See code: [src/commands/actors/pull.ts](https://github.com/apify/apify-cli/blob/v0.21.2/src/commands/actors/pull.ts)_
630
+ _See code: [src/commands/actors/pull.ts](https://github.com/apify/apify-cli/blob/v0.21.3-beta.0/src/commands/actors/pull.ts)_
631
631
 
632
632
  ## `apify actors push [ACTORID]`
633
633
 
@@ -658,7 +658,7 @@ DESCRIPTION
658
658
  Use --force to override newer remote versions.
659
659
  ```
660
660
 
661
- _See code: [src/commands/actors/push.ts](https://github.com/apify/apify-cli/blob/v0.21.2/src/commands/actors/push.ts)_
661
+ _See code: [src/commands/actors/push.ts](https://github.com/apify/apify-cli/blob/v0.21.3-beta.0/src/commands/actors/push.ts)_
662
662
 
663
663
  ## `apify actors rm ACTORID`
664
664
 
@@ -675,7 +675,7 @@ DESCRIPTION
675
675
  Permanently removes an Actor from your account.
676
676
  ```
677
677
 
678
- _See code: [src/commands/actors/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.2/src/commands/actors/rm.ts)_
678
+ _See code: [src/commands/actors/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.3-beta.0/src/commands/actors/rm.ts)_
679
679
 
680
680
  ## `apify actors start [ACTORID]`
681
681
 
@@ -706,7 +706,7 @@ DESCRIPTION
706
706
  Uses authenticated account and local key-value store for input.
707
707
  ```
708
708
 
709
- _See code: [src/commands/actors/start.ts](https://github.com/apify/apify-cli/blob/v0.21.2/src/commands/actors/start.ts)_
709
+ _See code: [src/commands/actors/start.ts](https://github.com/apify/apify-cli/blob/v0.21.3-beta.0/src/commands/actors/start.ts)_
710
710
 
711
711
  ## `apify builds`
712
712
 
@@ -720,7 +720,7 @@ DESCRIPTION
720
720
  Manages Actor build processes and versioning.
721
721
  ```
722
722
 
723
- _See code: [src/commands/builds/index.ts](https://github.com/apify/apify-cli/blob/v0.21.2/src/commands/builds/index.ts)_
723
+ _See code: [src/commands/builds/index.ts](https://github.com/apify/apify-cli/blob/v0.21.3-beta.0/src/commands/builds/index.ts)_
724
724
 
725
725
  ## `apify builds create [ACTORID]`
726
726
 
@@ -747,7 +747,7 @@ DESCRIPTION
747
747
  Creates a new build of the Actor.
748
748
  ```
749
749
 
750
- _See code: [src/commands/builds/create.ts](https://github.com/apify/apify-cli/blob/v0.21.2/src/commands/builds/create.ts)_
750
+ _See code: [src/commands/builds/create.ts](https://github.com/apify/apify-cli/blob/v0.21.3-beta.0/src/commands/builds/create.ts)_
751
751
 
752
752
  ## `apify builds info BUILDID`
753
753
 
@@ -767,7 +767,7 @@ DESCRIPTION
767
767
  Prints information about a specific build.
768
768
  ```
769
769
 
770
- _See code: [src/commands/builds/info.ts](https://github.com/apify/apify-cli/blob/v0.21.2/src/commands/builds/info.ts)_
770
+ _See code: [src/commands/builds/info.ts](https://github.com/apify/apify-cli/blob/v0.21.3-beta.0/src/commands/builds/info.ts)_
771
771
 
772
772
  ## `apify builds log BUILDID`
773
773
 
@@ -784,7 +784,7 @@ DESCRIPTION
784
784
  Prints the log of a specific build.
785
785
  ```
786
786
 
787
- _See code: [src/commands/builds/log.ts](https://github.com/apify/apify-cli/blob/v0.21.2/src/commands/builds/log.ts)_
787
+ _See code: [src/commands/builds/log.ts](https://github.com/apify/apify-cli/blob/v0.21.3-beta.0/src/commands/builds/log.ts)_
788
788
 
789
789
  ## `apify builds ls [ACTORID]`
790
790
 
@@ -810,7 +810,7 @@ DESCRIPTION
810
810
  Lists all builds of the Actor.
811
811
  ```
812
812
 
813
- _See code: [src/commands/builds/ls.ts](https://github.com/apify/apify-cli/blob/v0.21.2/src/commands/builds/ls.ts)_
813
+ _See code: [src/commands/builds/ls.ts](https://github.com/apify/apify-cli/blob/v0.21.3-beta.0/src/commands/builds/ls.ts)_
814
814
 
815
815
  ## `apify builds rm BUILDID`
816
816
 
@@ -827,7 +827,7 @@ DESCRIPTION
827
827
  Permanently removes an Actor build from the Apify platform.
828
828
  ```
829
829
 
830
- _See code: [src/commands/builds/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.2/src/commands/builds/rm.ts)_
830
+ _See code: [src/commands/builds/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.3-beta.0/src/commands/builds/rm.ts)_
831
831
 
832
832
  ## `apify call [ACTORID]`
833
833
 
@@ -860,7 +860,7 @@ DESCRIPTION
860
860
  Reads input from local key-value store by default.
861
861
  ```
862
862
 
863
- _See code: [src/commands/call.ts](https://github.com/apify/apify-cli/blob/v0.21.2/src/commands/call.ts)_
863
+ _See code: [src/commands/call.ts](https://github.com/apify/apify-cli/blob/v0.21.3-beta.0/src/commands/call.ts)_
864
864
 
865
865
  ## `apify create [ACTORNAME]`
866
866
 
@@ -885,7 +885,7 @@ DESCRIPTION
885
885
  Creates an Actor project from a template in a new directory.
886
886
  ```
887
887
 
888
- _See code: [src/commands/create.ts](https://github.com/apify/apify-cli/blob/v0.21.2/src/commands/create.ts)_
888
+ _See code: [src/commands/create.ts](https://github.com/apify/apify-cli/blob/v0.21.3-beta.0/src/commands/create.ts)_
889
889
 
890
890
  ## `apify datasets`
891
891
 
@@ -899,7 +899,7 @@ DESCRIPTION
899
899
  Manages structured data storage and retrieval.
900
900
  ```
901
901
 
902
- _See code: [src/commands/datasets/index.ts](https://github.com/apify/apify-cli/blob/v0.21.2/src/commands/datasets/index.ts)_
902
+ _See code: [src/commands/datasets/index.ts](https://github.com/apify/apify-cli/blob/v0.21.3-beta.0/src/commands/datasets/index.ts)_
903
903
 
904
904
  ## `apify datasets create [DATASETNAME]`
905
905
 
@@ -919,7 +919,7 @@ DESCRIPTION
919
919
  Creates a new dataset for storing structured data on your account.
920
920
  ```
921
921
 
922
- _See code: [src/commands/datasets/create.ts](https://github.com/apify/apify-cli/blob/v0.21.2/src/commands/datasets/create.ts)_
922
+ _See code: [src/commands/datasets/create.ts](https://github.com/apify/apify-cli/blob/v0.21.3-beta.0/src/commands/datasets/create.ts)_
923
923
 
924
924
  ## `apify datasets get-items DATASETID`
925
925
 
@@ -942,7 +942,7 @@ DESCRIPTION
942
942
  Retrieves dataset items in specified format (JSON, CSV, etc).
943
943
  ```
944
944
 
945
- _See code: [src/commands/datasets/get-items.ts](https://github.com/apify/apify-cli/blob/v0.21.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.3-beta.0/src/commands/datasets/get-items.ts)_
946
946
 
947
947
  ## `apify datasets info STOREID`
948
948
 
@@ -962,7 +962,7 @@ DESCRIPTION
962
962
  Prints information about a specific dataset.
963
963
  ```
964
964
 
965
- _See code: [src/commands/datasets/info.ts](https://github.com/apify/apify-cli/blob/v0.21.2/src/commands/datasets/info.ts)_
965
+ _See code: [src/commands/datasets/info.ts](https://github.com/apify/apify-cli/blob/v0.21.3-beta.0/src/commands/datasets/info.ts)_
966
966
 
967
967
  ## `apify datasets ls`
968
968
 
@@ -985,7 +985,7 @@ DESCRIPTION
985
985
  Prints all datasets on your account.
986
986
  ```
987
987
 
988
- _See code: [src/commands/datasets/ls.ts](https://github.com/apify/apify-cli/blob/v0.21.2/src/commands/datasets/ls.ts)_
988
+ _See code: [src/commands/datasets/ls.ts](https://github.com/apify/apify-cli/blob/v0.21.3-beta.0/src/commands/datasets/ls.ts)_
989
989
 
990
990
  ## `apify datasets push-items NAMEORID [ITEM]`
991
991
 
@@ -1003,7 +1003,7 @@ DESCRIPTION
1003
1003
  Adds data items to specified dataset. Accepts single object or array of objects.
1004
1004
  ```
1005
1005
 
1006
- _See code: [src/commands/datasets/push-items.ts](https://github.com/apify/apify-cli/blob/v0.21.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.3-beta.0/src/commands/datasets/push-items.ts)_
1007
1007
 
1008
1008
  ## `apify datasets rename NAMEORID [NEWNAME]`
1009
1009
 
@@ -1024,7 +1024,7 @@ DESCRIPTION
1024
1024
  Change dataset name or removes name with --unname flag.
1025
1025
  ```
1026
1026
 
1027
- _See code: [src/commands/datasets/rename.ts](https://github.com/apify/apify-cli/blob/v0.21.2/src/commands/datasets/rename.ts)_
1027
+ _See code: [src/commands/datasets/rename.ts](https://github.com/apify/apify-cli/blob/v0.21.3-beta.0/src/commands/datasets/rename.ts)_
1028
1028
 
1029
1029
  ## `apify datasets rm DATASETNAMEORID`
1030
1030
 
@@ -1041,7 +1041,7 @@ DESCRIPTION
1041
1041
  Permanently removes a dataset.
1042
1042
  ```
1043
1043
 
1044
- _See code: [src/commands/datasets/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.2/src/commands/datasets/rm.ts)_
1044
+ _See code: [src/commands/datasets/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.3-beta.0/src/commands/datasets/rm.ts)_
1045
1045
 
1046
1046
  ## `apify help [COMMAND]`
1047
1047
 
@@ -1061,7 +1061,7 @@ DESCRIPTION
1061
1061
  Display help for apify.
1062
1062
  ```
1063
1063
 
1064
- _See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v6.2.26/src/commands/help.ts)_
1064
+ _See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v6.2.27/src/commands/help.ts)_
1065
1065
 
1066
1066
  ## `apify info`
1067
1067
 
@@ -1075,7 +1075,7 @@ DESCRIPTION
1075
1075
  Prints details about your currently authenticated Apify account.
1076
1076
  ```
1077
1077
 
1078
- _See code: [src/commands/info.ts](https://github.com/apify/apify-cli/blob/v0.21.2/src/commands/info.ts)_
1078
+ _See code: [src/commands/info.ts](https://github.com/apify/apify-cli/blob/v0.21.3-beta.0/src/commands/info.ts)_
1079
1079
 
1080
1080
  ## `apify init [ACTORNAME]`
1081
1081
 
@@ -1102,7 +1102,7 @@ DESCRIPTION
1102
1102
  WARNING: Overwrites existing 'storage' directory.
1103
1103
  ```
1104
1104
 
1105
- _See code: [src/commands/init.ts](https://github.com/apify/apify-cli/blob/v0.21.2/src/commands/init.ts)_
1105
+ _See code: [src/commands/init.ts](https://github.com/apify/apify-cli/blob/v0.21.3-beta.0/src/commands/init.ts)_
1106
1106
 
1107
1107
  ## `apify key-value-stores`
1108
1108
 
@@ -1118,7 +1118,7 @@ DESCRIPTION
1118
1118
  Alias: kvs
1119
1119
  ```
1120
1120
 
1121
- _See code: [src/commands/key-value-stores/index.ts](https://github.com/apify/apify-cli/blob/v0.21.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.3-beta.0/src/commands/key-value-stores/index.ts)_
1122
1122
 
1123
1123
  ## `apify key-value-stores create [KEYVALUESTORENAME]`
1124
1124
 
@@ -1138,7 +1138,7 @@ DESCRIPTION
1138
1138
  Creates a new key-value store on your account.
1139
1139
  ```
1140
1140
 
1141
- _See code: [src/commands/key-value-stores/create.ts](https://github.com/apify/apify-cli/blob/v0.21.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.3-beta.0/src/commands/key-value-stores/create.ts)_
1142
1142
 
1143
1143
  ## `apify key-value-stores delete-value STOREID ITEMKEY`
1144
1144
 
@@ -1156,7 +1156,7 @@ DESCRIPTION
1156
1156
  Delete a value from a key-value store.
1157
1157
  ```
1158
1158
 
1159
- _See code: [src/commands/key-value-stores/delete-value.ts](https://github.com/apify/apify-cli/blob/v0.21.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.3-beta.0/src/commands/key-value-stores/delete-value.ts)_
1160
1160
 
1161
1161
  ## `apify key-value-stores get-value KEYVALUESTOREID ITEMKEY`
1162
1162
 
@@ -1177,7 +1177,7 @@ DESCRIPTION
1177
1177
  Retrieves stored value for specified key. Use --only-content-type to check MIME type.
1178
1178
  ```
1179
1179
 
1180
- _See code: [src/commands/key-value-stores/get-value.ts](https://github.com/apify/apify-cli/blob/v0.21.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.3-beta.0/src/commands/key-value-stores/get-value.ts)_
1181
1181
 
1182
1182
  ## `apify key-value-stores info STOREID`
1183
1183
 
@@ -1197,7 +1197,7 @@ DESCRIPTION
1197
1197
  Shows information about a key-value store.
1198
1198
  ```
1199
1199
 
1200
- _See code: [src/commands/key-value-stores/info.ts](https://github.com/apify/apify-cli/blob/v0.21.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.3-beta.0/src/commands/key-value-stores/info.ts)_
1201
1201
 
1202
1202
  ## `apify key-value-stores keys STOREID`
1203
1203
 
@@ -1221,7 +1221,7 @@ DESCRIPTION
1221
1221
  Lists all keys in a key-value store.
1222
1222
  ```
1223
1223
 
1224
- _See code: [src/commands/key-value-stores/keys.ts](https://github.com/apify/apify-cli/blob/v0.21.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.3-beta.0/src/commands/key-value-stores/keys.ts)_
1225
1225
 
1226
1226
  ## `apify key-value-stores ls`
1227
1227
 
@@ -1244,7 +1244,7 @@ DESCRIPTION
1244
1244
  Lists all key-value stores on your account.
1245
1245
  ```
1246
1246
 
1247
- _See code: [src/commands/key-value-stores/ls.ts](https://github.com/apify/apify-cli/blob/v0.21.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.3-beta.0/src/commands/key-value-stores/ls.ts)_
1248
1248
 
1249
1249
  ## `apify key-value-stores rename KEYVALUESTORENAMEORID [NEWNAME]`
1250
1250
 
@@ -1265,7 +1265,7 @@ DESCRIPTION
1265
1265
  Renames a key-value store, or removes its unique name.
1266
1266
  ```
1267
1267
 
1268
- _See code: [src/commands/key-value-stores/rename.ts](https://github.com/apify/apify-cli/blob/v0.21.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.3-beta.0/src/commands/key-value-stores/rename.ts)_
1269
1269
 
1270
1270
  ## `apify key-value-stores rm KEYVALUESTORENAMEORID`
1271
1271
 
@@ -1282,7 +1282,7 @@ DESCRIPTION
1282
1282
  Permanently removes a key-value store.
1283
1283
  ```
1284
1284
 
1285
- _See code: [src/commands/key-value-stores/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.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.3-beta.0/src/commands/key-value-stores/rm.ts)_
1286
1286
 
1287
1287
  ## `apify key-value-stores set-value STOREID ITEMKEY [VALUE]`
1288
1288
 
@@ -1305,7 +1305,7 @@ DESCRIPTION
1305
1305
  Stores value with specified key. Set content-type with --content-type flag.
1306
1306
  ```
1307
1307
 
1308
- _See code: [src/commands/key-value-stores/set-value.ts](https://github.com/apify/apify-cli/blob/v0.21.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.3-beta.0/src/commands/key-value-stores/set-value.ts)_
1309
1309
 
1310
1310
  ## `apify login`
1311
1311
 
@@ -1327,7 +1327,7 @@ DESCRIPTION
1327
1327
  Run 'apify logout' to remove authentication.
1328
1328
  ```
1329
1329
 
1330
- _See code: [src/commands/login.ts](https://github.com/apify/apify-cli/blob/v0.21.2/src/commands/login.ts)_
1330
+ _See code: [src/commands/login.ts](https://github.com/apify/apify-cli/blob/v0.21.3-beta.0/src/commands/login.ts)_
1331
1331
 
1332
1332
  ## `apify logout`
1333
1333
 
@@ -1342,7 +1342,7 @@ DESCRIPTION
1342
1342
  Run 'apify login' to authenticate again.
1343
1343
  ```
1344
1344
 
1345
- _See code: [src/commands/logout.ts](https://github.com/apify/apify-cli/blob/v0.21.2/src/commands/logout.ts)_
1345
+ _See code: [src/commands/logout.ts](https://github.com/apify/apify-cli/blob/v0.21.3-beta.0/src/commands/logout.ts)_
1346
1346
 
1347
1347
  ## `apify pull [ACTORID]`
1348
1348
 
@@ -1364,7 +1364,7 @@ DESCRIPTION
1364
1364
  Download Actor code to current directory. Clones Git repositories or fetches Actor files based on the source type.
1365
1365
  ```
1366
1366
 
1367
- _See code: [src/commands/pull.ts](https://github.com/apify/apify-cli/blob/v0.21.2/src/commands/pull.ts)_
1367
+ _See code: [src/commands/pull.ts](https://github.com/apify/apify-cli/blob/v0.21.3-beta.0/src/commands/pull.ts)_
1368
1368
 
1369
1369
  ## `apify push [ACTORID]`
1370
1370
 
@@ -1395,7 +1395,7 @@ DESCRIPTION
1395
1395
  Use --force to override newer remote versions.
1396
1396
  ```
1397
1397
 
1398
- _See code: [src/commands/push.ts](https://github.com/apify/apify-cli/blob/v0.21.2/src/commands/push.ts)_
1398
+ _See code: [src/commands/push.ts](https://github.com/apify/apify-cli/blob/v0.21.3-beta.0/src/commands/push.ts)_
1399
1399
 
1400
1400
  ## `apify request-queues`
1401
1401
 
@@ -1409,7 +1409,7 @@ DESCRIPTION
1409
1409
  Manages URL queues for web scraping and automation tasks.
1410
1410
  ```
1411
1411
 
1412
- _See code: [src/commands/request-queues/index.ts](https://github.com/apify/apify-cli/blob/v0.21.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.3-beta.0/src/commands/request-queues/index.ts)_
1413
1413
 
1414
1414
  ## `apify run`
1415
1415
 
@@ -1442,7 +1442,7 @@ DESCRIPTION
1442
1442
  NOTE: For Node.js Actors, customize behavior by modifying the 'start' script in package.json file.
1443
1443
  ```
1444
1444
 
1445
- _See code: [src/commands/run.ts](https://github.com/apify/apify-cli/blob/v0.21.2/src/commands/run.ts)_
1445
+ _See code: [src/commands/run.ts](https://github.com/apify/apify-cli/blob/v0.21.3-beta.0/src/commands/run.ts)_
1446
1446
 
1447
1447
  ## `apify runs`
1448
1448
 
@@ -1456,7 +1456,7 @@ DESCRIPTION
1456
1456
  Manages Actor run operations
1457
1457
  ```
1458
1458
 
1459
- _See code: [src/commands/runs/index.ts](https://github.com/apify/apify-cli/blob/v0.21.2/src/commands/runs/index.ts)_
1459
+ _See code: [src/commands/runs/index.ts](https://github.com/apify/apify-cli/blob/v0.21.3-beta.0/src/commands/runs/index.ts)_
1460
1460
 
1461
1461
  ## `apify runs abort RUNID`
1462
1462
 
@@ -1479,7 +1479,7 @@ DESCRIPTION
1479
1479
  Aborts an Actor run.
1480
1480
  ```
1481
1481
 
1482
- _See code: [src/commands/runs/abort.ts](https://github.com/apify/apify-cli/blob/v0.21.2/src/commands/runs/abort.ts)_
1482
+ _See code: [src/commands/runs/abort.ts](https://github.com/apify/apify-cli/blob/v0.21.3-beta.0/src/commands/runs/abort.ts)_
1483
1483
 
1484
1484
  ## `apify runs info RUNID`
1485
1485
 
@@ -1502,7 +1502,7 @@ DESCRIPTION
1502
1502
  Prints information about an Actor run.
1503
1503
  ```
1504
1504
 
1505
- _See code: [src/commands/runs/info.ts](https://github.com/apify/apify-cli/blob/v0.21.2/src/commands/runs/info.ts)_
1505
+ _See code: [src/commands/runs/info.ts](https://github.com/apify/apify-cli/blob/v0.21.3-beta.0/src/commands/runs/info.ts)_
1506
1506
 
1507
1507
  ## `apify runs log RUNID`
1508
1508
 
@@ -1519,7 +1519,7 @@ DESCRIPTION
1519
1519
  Prints the log of a specific run.
1520
1520
  ```
1521
1521
 
1522
- _See code: [src/commands/runs/log.ts](https://github.com/apify/apify-cli/blob/v0.21.2/src/commands/runs/log.ts)_
1522
+ _See code: [src/commands/runs/log.ts](https://github.com/apify/apify-cli/blob/v0.21.3-beta.0/src/commands/runs/log.ts)_
1523
1523
 
1524
1524
  ## `apify runs ls [ACTORID]`
1525
1525
 
@@ -1545,7 +1545,7 @@ DESCRIPTION
1545
1545
  Lists all runs of the Actor.
1546
1546
  ```
1547
1547
 
1548
- _See code: [src/commands/runs/ls.ts](https://github.com/apify/apify-cli/blob/v0.21.2/src/commands/runs/ls.ts)_
1548
+ _See code: [src/commands/runs/ls.ts](https://github.com/apify/apify-cli/blob/v0.21.3-beta.0/src/commands/runs/ls.ts)_
1549
1549
 
1550
1550
  ## `apify runs resurrect RUNID`
1551
1551
 
@@ -1565,7 +1565,7 @@ DESCRIPTION
1565
1565
  Resurrects an aborted or finished Actor Run.
1566
1566
  ```
1567
1567
 
1568
- _See code: [src/commands/runs/resurrect.ts](https://github.com/apify/apify-cli/blob/v0.21.2/src/commands/runs/resurrect.ts)_
1568
+ _See code: [src/commands/runs/resurrect.ts](https://github.com/apify/apify-cli/blob/v0.21.3-beta.0/src/commands/runs/resurrect.ts)_
1569
1569
 
1570
1570
  ## `apify runs rm RUNID`
1571
1571
 
@@ -1582,7 +1582,7 @@ DESCRIPTION
1582
1582
  Deletes an Actor Run.
1583
1583
  ```
1584
1584
 
1585
- _See code: [src/commands/runs/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.2/src/commands/runs/rm.ts)_
1585
+ _See code: [src/commands/runs/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.3-beta.0/src/commands/runs/rm.ts)_
1586
1586
 
1587
1587
  ## `apify secrets`
1588
1588
 
@@ -1612,7 +1612,7 @@ DESCRIPTION
1612
1612
  of the Actor.
1613
1613
  ```
1614
1614
 
1615
- _See code: [src/commands/secrets/index.ts](https://github.com/apify/apify-cli/blob/v0.21.2/src/commands/secrets/index.ts)_
1615
+ _See code: [src/commands/secrets/index.ts](https://github.com/apify/apify-cli/blob/v0.21.3-beta.0/src/commands/secrets/index.ts)_
1616
1616
 
1617
1617
  ## `apify secrets add NAME VALUE`
1618
1618
 
@@ -1630,7 +1630,7 @@ DESCRIPTION
1630
1630
  Adds a new secret to '~/.apify' for use in Actor environment variables.
1631
1631
  ```
1632
1632
 
1633
- _See code: [src/commands/secrets/add.ts](https://github.com/apify/apify-cli/blob/v0.21.2/src/commands/secrets/add.ts)_
1633
+ _See code: [src/commands/secrets/add.ts](https://github.com/apify/apify-cli/blob/v0.21.3-beta.0/src/commands/secrets/add.ts)_
1634
1634
 
1635
1635
  ## `apify secrets rm NAME`
1636
1636
 
@@ -1647,7 +1647,7 @@ DESCRIPTION
1647
1647
  Permanently deletes a secret from your stored credentials.
1648
1648
  ```
1649
1649
 
1650
- _See code: [src/commands/secrets/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.2/src/commands/secrets/rm.ts)_
1650
+ _See code: [src/commands/secrets/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.3-beta.0/src/commands/secrets/rm.ts)_
1651
1651
 
1652
1652
  ## `apify task`
1653
1653
 
@@ -1661,7 +1661,7 @@ DESCRIPTION
1661
1661
  Manages scheduled and predefined Actor configurations.
1662
1662
  ```
1663
1663
 
1664
- _See code: [src/commands/task/index.ts](https://github.com/apify/apify-cli/blob/v0.21.2/src/commands/task/index.ts)_
1664
+ _See code: [src/commands/task/index.ts](https://github.com/apify/apify-cli/blob/v0.21.3-beta.0/src/commands/task/index.ts)_
1665
1665
 
1666
1666
  ## `apify task run TASKID`
1667
1667
 
@@ -1684,7 +1684,7 @@ DESCRIPTION
1684
1684
  Customize with --memory and --timeout flags.
1685
1685
  ```
1686
1686
 
1687
- _See code: [src/commands/task/run.ts](https://github.com/apify/apify-cli/blob/v0.21.2/src/commands/task/run.ts)_
1687
+ _See code: [src/commands/task/run.ts](https://github.com/apify/apify-cli/blob/v0.21.3-beta.0/src/commands/task/run.ts)_
1688
1688
 
1689
1689
  ## `apify validate-schema [PATH]`
1690
1690
 
@@ -1707,6 +1707,6 @@ DESCRIPTION
1707
1707
  Optionally specify custom schema path to validate.
1708
1708
  ```
1709
1709
 
1710
- _See code: [src/commands/validate-schema.ts](https://github.com/apify/apify-cli/blob/v0.21.2/src/commands/validate-schema.ts)_
1710
+ _See code: [src/commands/validate-schema.ts](https://github.com/apify/apify-cli/blob/v0.21.3-beta.0/src/commands/validate-schema.ts)_
1711
1711
  <!-- commandsstop -->
1712
1712
  <!-- prettier-ignore-end -->