apify-cli 0.21.0-beta.16 → 0.21.0-beta.17

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.
Files changed (3) hide show
  1. package/README.md +41 -41
  2. package/oclif.manifest.json +200 -200
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -337,7 +337,7 @@ DESCRIPTION
337
337
  Commands are designed to be used in Actor runs. All commands are in PoC state, do not use in production environments.
338
338
  ```
339
339
 
340
- _See code: [src/commands/actor/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.16/src/commands/actor/index.ts)_
340
+ _See code: [src/commands/actor/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.17/src/commands/actor/index.ts)_
341
341
 
342
342
  ## `apify actor get-input`
343
343
 
@@ -351,7 +351,7 @@ DESCRIPTION
351
351
  Gets the Actor input value from the default key-value store associated with the Actor run.
352
352
  ```
353
353
 
354
- _See code: [src/commands/actor/get-input.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.16/src/commands/actor/get-input.ts)_
354
+ _See code: [src/commands/actor/get-input.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.17/src/commands/actor/get-input.ts)_
355
355
 
356
356
  ## `apify actor get-value KEY`
357
357
 
@@ -368,7 +368,7 @@ DESCRIPTION
368
368
  Gets a value from the default key-value store associated with the Actor run.
369
369
  ```
370
370
 
371
- _See code: [src/commands/actor/get-value.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.16/src/commands/actor/get-value.ts)_
371
+ _See code: [src/commands/actor/get-value.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.17/src/commands/actor/get-value.ts)_
372
372
 
373
373
  ## `apify actor push-data [ITEM]`
374
374
 
@@ -390,7 +390,7 @@ DESCRIPTION
390
390
  $ cat ./test.json | apify actor push-data
391
391
  ```
392
392
 
393
- _See code: [src/commands/actor/push-data.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.16/src/commands/actor/push-data.ts)_
393
+ _See code: [src/commands/actor/push-data.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.17/src/commands/actor/push-data.ts)_
394
394
 
395
395
  ## `apify actor set-value KEY [VALUE]`
396
396
 
@@ -419,7 +419,7 @@ DESCRIPTION
419
419
  $ cat ./my-text-file.txt | apify actor set-value KEY --contentType text/plain
420
420
  ```
421
421
 
422
- _See code: [src/commands/actor/set-value.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.16/src/commands/actor/set-value.ts)_
422
+ _See code: [src/commands/actor/set-value.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.17/src/commands/actor/set-value.ts)_
423
423
 
424
424
  ## `apify actors`
425
425
 
@@ -433,7 +433,7 @@ DESCRIPTION
433
433
  Commands are designed to be used with Actors.
434
434
  ```
435
435
 
436
- _See code: [src/commands/actors/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.16/src/commands/actors/index.ts)_
436
+ _See code: [src/commands/actors/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.17/src/commands/actors/index.ts)_
437
437
 
438
438
  ## `apify actors build [ACTORID]`
439
439
 
@@ -460,7 +460,7 @@ DESCRIPTION
460
460
  Creates a new build of the Actor.
461
461
  ```
462
462
 
463
- _See code: [src/commands/actors/build.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.16/src/commands/actors/build.ts)_
463
+ _See code: [src/commands/actors/build.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.17/src/commands/actors/build.ts)_
464
464
 
465
465
  ## `apify actors call [ACTORID]`
466
466
 
@@ -494,7 +494,7 @@ DESCRIPTION
494
494
  takes input for the Actor from the default local key-value store by default.
495
495
  ```
496
496
 
497
- _See code: [src/commands/actors/call.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.16/src/commands/actors/call.ts)_
497
+ _See code: [src/commands/actors/call.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.17/src/commands/actors/call.ts)_
498
498
 
499
499
  ## `apify actors pull [ACTORID]`
500
500
 
@@ -517,7 +517,7 @@ DESCRIPTION
517
517
  cloned. If it is defined as Web IDE, it will fetch the files.
518
518
  ```
519
519
 
520
- _See code: [src/commands/actors/pull.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.16/src/commands/actors/pull.ts)_
520
+ _See code: [src/commands/actors/pull.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.17/src/commands/actors/pull.ts)_
521
521
 
522
522
  ## `apify actors rm ACTORID`
523
523
 
@@ -534,7 +534,7 @@ DESCRIPTION
534
534
  Deletes an Actor.
535
535
  ```
536
536
 
537
- _See code: [src/commands/actors/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.16/src/commands/actors/rm.ts)_
537
+ _See code: [src/commands/actors/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.17/src/commands/actors/rm.ts)_
538
538
 
539
539
  ## `apify builds`
540
540
 
@@ -548,7 +548,7 @@ DESCRIPTION
548
548
  Commands are designed to be used with Actor Builds.
549
549
  ```
550
550
 
551
- _See code: [src/commands/builds/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.16/src/commands/builds/index.ts)_
551
+ _See code: [src/commands/builds/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.17/src/commands/builds/index.ts)_
552
552
 
553
553
  ## `apify builds create [ACTORID]`
554
554
 
@@ -575,7 +575,7 @@ DESCRIPTION
575
575
  Creates a new build of the Actor.
576
576
  ```
577
577
 
578
- _See code: [src/commands/builds/create.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.16/src/commands/builds/create.ts)_
578
+ _See code: [src/commands/builds/create.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.17/src/commands/builds/create.ts)_
579
579
 
580
580
  ## `apify builds info BUILDID`
581
581
 
@@ -595,7 +595,7 @@ DESCRIPTION
595
595
  Prints information about a specific build.
596
596
  ```
597
597
 
598
- _See code: [src/commands/builds/info.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.16/src/commands/builds/info.ts)_
598
+ _See code: [src/commands/builds/info.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.17/src/commands/builds/info.ts)_
599
599
 
600
600
  ## `apify builds log BUILDID`
601
601
 
@@ -612,7 +612,7 @@ DESCRIPTION
612
612
  Prints the log of a specific build.
613
613
  ```
614
614
 
615
- _See code: [src/commands/builds/log.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.16/src/commands/builds/log.ts)_
615
+ _See code: [src/commands/builds/log.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.17/src/commands/builds/log.ts)_
616
616
 
617
617
  ## `apify builds ls [ACTORID]`
618
618
 
@@ -638,7 +638,7 @@ DESCRIPTION
638
638
  Lists all builds of the Actor.
639
639
  ```
640
640
 
641
- _See code: [src/commands/builds/ls.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.16/src/commands/builds/ls.ts)_
641
+ _See code: [src/commands/builds/ls.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.17/src/commands/builds/ls.ts)_
642
642
 
643
643
  ## `apify builds rm BUILDID`
644
644
 
@@ -655,7 +655,7 @@ DESCRIPTION
655
655
  Deletes an Actor Build.
656
656
  ```
657
657
 
658
- _See code: [src/commands/builds/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.16/src/commands/builds/rm.ts)_
658
+ _See code: [src/commands/builds/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.17/src/commands/builds/rm.ts)_
659
659
 
660
660
  ## `apify call [ACTORID]`
661
661
 
@@ -689,7 +689,7 @@ DESCRIPTION
689
689
  takes input for the Actor from the default local key-value store by default.
690
690
  ```
691
691
 
692
- _See code: [src/commands/call.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.16/src/commands/call.ts)_
692
+ _See code: [src/commands/call.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.17/src/commands/call.ts)_
693
693
 
694
694
  ## `apify create [ACTORNAME]`
695
695
 
@@ -714,7 +714,7 @@ DESCRIPTION
714
714
  Creates a new Actor project directory from a selected boilerplate template.
715
715
  ```
716
716
 
717
- _See code: [src/commands/create.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.16/src/commands/create.ts)_
717
+ _See code: [src/commands/create.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.17/src/commands/create.ts)_
718
718
 
719
719
  ## `apify datasets`
720
720
 
@@ -728,7 +728,7 @@ DESCRIPTION
728
728
  Commands are designed to be used with Datasets.
729
729
  ```
730
730
 
731
- _See code: [src/commands/datasets/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.16/src/commands/datasets/index.ts)_
731
+ _See code: [src/commands/datasets/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.17/src/commands/datasets/index.ts)_
732
732
 
733
733
  ## `apify help [COMMAND]`
734
734
 
@@ -763,7 +763,7 @@ DESCRIPTION
763
763
  The information is printed to the console.
764
764
  ```
765
765
 
766
- _See code: [src/commands/info.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.16/src/commands/info.ts)_
766
+ _See code: [src/commands/info.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.17/src/commands/info.ts)_
767
767
 
768
768
  ## `apify init [ACTORNAME]`
769
769
 
@@ -791,7 +791,7 @@ DESCRIPTION
791
791
  WARNING: The directory at "storage" will be overwritten if it already exists.
792
792
  ```
793
793
 
794
- _See code: [src/commands/init.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.16/src/commands/init.ts)_
794
+ _See code: [src/commands/init.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.17/src/commands/init.ts)_
795
795
 
796
796
  ## `apify key-value-stores`
797
797
 
@@ -805,7 +805,7 @@ DESCRIPTION
805
805
  Commands are designed to be used with Key Value Stores.
806
806
  ```
807
807
 
808
- _See code: [src/commands/key-value-stores/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.16/src/commands/key-value-stores/index.ts)_
808
+ _See code: [src/commands/key-value-stores/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.17/src/commands/key-value-stores/index.ts)_
809
809
 
810
810
  ## `apify login`
811
811
 
@@ -826,7 +826,7 @@ DESCRIPTION
826
826
  "apify" commands. To log out, call "apify logout".
827
827
  ```
828
828
 
829
- _See code: [src/commands/login.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.16/src/commands/login.ts)_
829
+ _See code: [src/commands/login.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.17/src/commands/login.ts)_
830
830
 
831
831
  ## `apify logout`
832
832
 
@@ -842,7 +842,7 @@ DESCRIPTION
842
842
  call "apify login".
843
843
  ```
844
844
 
845
- _See code: [src/commands/logout.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.16/src/commands/logout.ts)_
845
+ _See code: [src/commands/logout.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.17/src/commands/logout.ts)_
846
846
 
847
847
  ## `apify pull [ACTORID]`
848
848
 
@@ -865,7 +865,7 @@ DESCRIPTION
865
865
  cloned. If it is defined as Web IDE, it will fetch the files.
866
866
  ```
867
867
 
868
- _See code: [src/commands/pull.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.16/src/commands/pull.ts)_
868
+ _See code: [src/commands/pull.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.17/src/commands/pull.ts)_
869
869
 
870
870
  ## `apify push [ACTORID]`
871
871
 
@@ -903,7 +903,7 @@ DESCRIPTION
903
903
  overwritten with --force flag.
904
904
  ```
905
905
 
906
- _See code: [src/commands/push.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.16/src/commands/push.ts)_
906
+ _See code: [src/commands/push.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.17/src/commands/push.ts)_
907
907
 
908
908
  ## `apify request-queues`
909
909
 
@@ -917,7 +917,7 @@ DESCRIPTION
917
917
  Commands are designed to be used with Request Queues.
918
918
  ```
919
919
 
920
- _See code: [src/commands/request-queues/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.16/src/commands/request-queues/index.ts)_
920
+ _See code: [src/commands/request-queues/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.17/src/commands/request-queues/index.ts)_
921
921
 
922
922
  ## `apify run`
923
923
 
@@ -953,7 +953,7 @@ DESCRIPTION
953
953
  package.json file. You can set up your own main file or environment variables by changing it.
954
954
  ```
955
955
 
956
- _See code: [src/commands/run.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.16/src/commands/run.ts)_
956
+ _See code: [src/commands/run.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.17/src/commands/run.ts)_
957
957
 
958
958
  ## `apify runs`
959
959
 
@@ -967,7 +967,7 @@ DESCRIPTION
967
967
  Commands are designed to be used with Actor Runs.
968
968
  ```
969
969
 
970
- _See code: [src/commands/runs/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.16/src/commands/runs/index.ts)_
970
+ _See code: [src/commands/runs/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.17/src/commands/runs/index.ts)_
971
971
 
972
972
  ## `apify runs abort RUNID`
973
973
 
@@ -990,7 +990,7 @@ DESCRIPTION
990
990
  Aborts an Actor Run.
991
991
  ```
992
992
 
993
- _See code: [src/commands/runs/abort.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.16/src/commands/runs/abort.ts)_
993
+ _See code: [src/commands/runs/abort.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.17/src/commands/runs/abort.ts)_
994
994
 
995
995
  ## `apify runs info RUNID`
996
996
 
@@ -1013,7 +1013,7 @@ DESCRIPTION
1013
1013
  Prints information about an Actor Run.
1014
1014
  ```
1015
1015
 
1016
- _See code: [src/commands/runs/info.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.16/src/commands/runs/info.ts)_
1016
+ _See code: [src/commands/runs/info.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.17/src/commands/runs/info.ts)_
1017
1017
 
1018
1018
  ## `apify runs log RUNID`
1019
1019
 
@@ -1030,7 +1030,7 @@ DESCRIPTION
1030
1030
  Prints the log of a specific run.
1031
1031
  ```
1032
1032
 
1033
- _See code: [src/commands/runs/log.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.16/src/commands/runs/log.ts)_
1033
+ _See code: [src/commands/runs/log.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.17/src/commands/runs/log.ts)_
1034
1034
 
1035
1035
  ## `apify runs ls [ACTORID]`
1036
1036
 
@@ -1056,7 +1056,7 @@ DESCRIPTION
1056
1056
  Lists all runs of the Actor.
1057
1057
  ```
1058
1058
 
1059
- _See code: [src/commands/runs/ls.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.16/src/commands/runs/ls.ts)_
1059
+ _See code: [src/commands/runs/ls.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.17/src/commands/runs/ls.ts)_
1060
1060
 
1061
1061
  ## `apify runs resurrect RUNID`
1062
1062
 
@@ -1076,7 +1076,7 @@ DESCRIPTION
1076
1076
  Resurrects an aborted or finished Actor Run.
1077
1077
  ```
1078
1078
 
1079
- _See code: [src/commands/runs/resurrect.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.16/src/commands/runs/resurrect.ts)_
1079
+ _See code: [src/commands/runs/resurrect.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.17/src/commands/runs/resurrect.ts)_
1080
1080
 
1081
1081
  ## `apify runs rm RUNID`
1082
1082
 
@@ -1093,7 +1093,7 @@ DESCRIPTION
1093
1093
  Deletes an Actor Run.
1094
1094
  ```
1095
1095
 
1096
- _See code: [src/commands/runs/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.16/src/commands/runs/rm.ts)_
1096
+ _See code: [src/commands/runs/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.17/src/commands/runs/rm.ts)_
1097
1097
 
1098
1098
  ## `apify secrets`
1099
1099
 
@@ -1123,7 +1123,7 @@ DESCRIPTION
1123
1123
  of the Actor.
1124
1124
  ```
1125
1125
 
1126
- _See code: [src/commands/secrets/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.16/src/commands/secrets/index.ts)_
1126
+ _See code: [src/commands/secrets/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.17/src/commands/secrets/index.ts)_
1127
1127
 
1128
1128
  ## `apify secrets add NAME VALUE`
1129
1129
 
@@ -1142,7 +1142,7 @@ DESCRIPTION
1142
1142
  The secrets are stored to a file at ~/.apify
1143
1143
  ```
1144
1144
 
1145
- _See code: [src/commands/secrets/add.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.16/src/commands/secrets/add.ts)_
1145
+ _See code: [src/commands/secrets/add.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.17/src/commands/secrets/add.ts)_
1146
1146
 
1147
1147
  ## `apify secrets rm NAME`
1148
1148
 
@@ -1159,7 +1159,7 @@ DESCRIPTION
1159
1159
  Removes the secret.
1160
1160
  ```
1161
1161
 
1162
- _See code: [src/commands/secrets/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.16/src/commands/secrets/rm.ts)_
1162
+ _See code: [src/commands/secrets/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.17/src/commands/secrets/rm.ts)_
1163
1163
 
1164
1164
  ## `apify task`
1165
1165
 
@@ -1173,7 +1173,7 @@ DESCRIPTION
1173
1173
  Commands are designed to be used to interact with Tasks.
1174
1174
  ```
1175
1175
 
1176
- _See code: [src/commands/task/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.16/src/commands/task/index.ts)_
1176
+ _See code: [src/commands/task/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.17/src/commands/task/index.ts)_
1177
1177
 
1178
1178
  ## `apify task run TASKID`
1179
1179
 
@@ -1197,7 +1197,7 @@ DESCRIPTION
1197
1197
  takes input for the Actor from the default local key-value store by default.
1198
1198
  ```
1199
1199
 
1200
- _See code: [src/commands/task/run.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.16/src/commands/task/run.ts)_
1200
+ _See code: [src/commands/task/run.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.17/src/commands/task/run.ts)_
1201
1201
 
1202
1202
  ## `apify validate-schema [PATH]`
1203
1203
 
@@ -1222,6 +1222,6 @@ DESCRIPTION
1222
1222
  You can also pass any custom path to your input schema to have it validated instead.
1223
1223
  ```
1224
1224
 
1225
- _See code: [src/commands/validate-schema.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.16/src/commands/validate-schema.ts)_
1225
+ _See code: [src/commands/validate-schema.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.17/src/commands/validate-schema.ts)_
1226
1226
  <!-- commandsstop -->
1227
1227
  <!-- prettier-ignore-end -->
@@ -721,7 +721,7 @@
721
721
  "set-value.js"
722
722
  ]
723
723
  },
724
- "builds:create": {
724
+ "actors:build": {
725
725
  "aliases": [],
726
726
  "args": {
727
727
  "actorId": {
@@ -762,50 +762,29 @@
762
762
  },
763
763
  "hasDynamicHelp": false,
764
764
  "hiddenAliases": [],
765
- "id": "builds:create",
765
+ "id": "actors:build",
766
766
  "pluginAlias": "apify-cli",
767
767
  "pluginName": "apify-cli",
768
768
  "pluginType": "core",
769
- "strict": true,
770
769
  "enableJsonFlag": true,
771
770
  "isESM": true,
772
771
  "relativePath": [
773
772
  "dist",
774
773
  "commands",
775
- "builds",
776
- "create.js"
777
- ]
778
- },
779
- "builds": {
780
- "aliases": [],
781
- "args": {},
782
- "description": "Commands are designed to be used with Actor Builds.",
783
- "flags": {},
784
- "hasDynamicHelp": false,
785
- "hiddenAliases": [],
786
- "id": "builds",
787
- "pluginAlias": "apify-cli",
788
- "pluginName": "apify-cli",
789
- "pluginType": "core",
790
- "strict": true,
791
- "isESM": true,
792
- "relativePath": [
793
- "dist",
794
- "commands",
795
- "builds",
796
- "index.js"
774
+ "actors",
775
+ "build.js"
797
776
  ]
798
777
  },
799
- "builds:info": {
778
+ "actors:call": {
800
779
  "aliases": [],
801
780
  "args": {
802
- "buildId": {
803
- "description": "The build ID to get information about.",
804
- "name": "buildId",
805
- "required": true
781
+ "actorId": {
782
+ "description": "Name or ID of the Actor to run (e.g. \"my-actor\", \"apify/hello-world\" or \"E2jjCZBezvAZnX8Rb\"). If not provided, the command runs the remote Actor specified in the \".actor/actor.json\" file.",
783
+ "name": "actorId",
784
+ "required": false
806
785
  }
807
786
  },
808
- "description": "Prints information about a specific build.",
787
+ "description": "Runs a specific Actor remotely on the Apify cloud platform.\nThe Actor is run under your current Apify account. Therefore you need to be logged in by calling \"apify login\". It takes input for the Actor from the default local key-value store by default.",
809
788
  "flags": {
810
789
  "json": {
811
790
  "description": "Format output as json.",
@@ -813,11 +792,78 @@
813
792
  "name": "json",
814
793
  "allowNo": false,
815
794
  "type": "boolean"
795
+ },
796
+ "build": {
797
+ "char": "b",
798
+ "description": "Tag or number of the build to run (e.g. \"latest\" or \"1.2.34\").",
799
+ "name": "build",
800
+ "required": false,
801
+ "hasDynamicHelp": false,
802
+ "multiple": false,
803
+ "type": "option"
804
+ },
805
+ "timeout": {
806
+ "char": "t",
807
+ "description": "Timeout for the Actor run in seconds. Zero value means there is no timeout.",
808
+ "name": "timeout",
809
+ "required": false,
810
+ "hasDynamicHelp": false,
811
+ "multiple": false,
812
+ "type": "option"
813
+ },
814
+ "memory": {
815
+ "char": "m",
816
+ "description": "Amount of memory allocated for the Actor run, in megabytes.",
817
+ "name": "memory",
818
+ "required": false,
819
+ "hasDynamicHelp": false,
820
+ "multiple": false,
821
+ "type": "option"
822
+ },
823
+ "input": {
824
+ "char": "i",
825
+ "description": "Optional JSON input to be given to the Actor.",
826
+ "exclusive": [
827
+ "input-file"
828
+ ],
829
+ "name": "input",
830
+ "required": false,
831
+ "hasDynamicHelp": false,
832
+ "multiple": false,
833
+ "type": "option"
834
+ },
835
+ "input-file": {
836
+ "aliases": [
837
+ "if"
838
+ ],
839
+ "description": "Optional path to a file with JSON input to be given to the Actor. The file must be a valid JSON file. You can also specify `-` to read from standard input.",
840
+ "exclusive": [
841
+ "input"
842
+ ],
843
+ "name": "input-file",
844
+ "required": false,
845
+ "hasDynamicHelp": false,
846
+ "multiple": false,
847
+ "type": "option"
848
+ },
849
+ "silent": {
850
+ "char": "s",
851
+ "description": "Prevents printing the logs of the Actor run to the console.",
852
+ "name": "silent",
853
+ "allowNo": false,
854
+ "type": "boolean"
855
+ },
856
+ "output-dataset": {
857
+ "char": "o",
858
+ "description": "Prints out the entire default dataset on successful run of the Actor.",
859
+ "name": "output-dataset",
860
+ "allowNo": false,
861
+ "type": "boolean"
816
862
  }
817
863
  },
818
864
  "hasDynamicHelp": false,
819
865
  "hiddenAliases": [],
820
- "id": "builds:info",
866
+ "id": "actors:call",
821
867
  "pluginAlias": "apify-cli",
822
868
  "pluginName": "apify-cli",
823
869
  "pluginType": "core",
@@ -827,24 +873,18 @@
827
873
  "relativePath": [
828
874
  "dist",
829
875
  "commands",
830
- "builds",
831
- "info.js"
876
+ "actors",
877
+ "call.js"
832
878
  ]
833
879
  },
834
- "builds:log": {
880
+ "actors": {
835
881
  "aliases": [],
836
- "args": {
837
- "buildId": {
838
- "description": "The build ID to get the log from.",
839
- "name": "buildId",
840
- "required": true
841
- }
842
- },
843
- "description": "Prints the log of a specific build.",
882
+ "args": {},
883
+ "description": "Commands are designed to be used with Actors.",
844
884
  "flags": {},
845
885
  "hasDynamicHelp": false,
846
886
  "hiddenAliases": [],
847
- "id": "builds:log",
887
+ "id": "actors",
848
888
  "pluginAlias": "apify-cli",
849
889
  "pluginName": "apify-cli",
850
890
  "pluginType": "core",
@@ -853,87 +893,68 @@
853
893
  "relativePath": [
854
894
  "dist",
855
895
  "commands",
856
- "builds",
857
- "log.js"
896
+ "actors",
897
+ "index.js"
858
898
  ]
859
899
  },
860
- "builds:ls": {
900
+ "actors:pull": {
861
901
  "aliases": [],
862
902
  "args": {
863
903
  "actorId": {
864
- "description": "Optional Actor ID or Name to list runs for. By default, it will use the Actor from the current directory.",
865
- "name": "actorId"
904
+ "description": "Name or ID of the Actor to run (e.g. \"apify/hello-world\" or \"E2jjCZBezvAZnX8Rb\"). If not provided, the command will update the Actor in the current directory based on its name in \".actor/actor.json\" file.",
905
+ "name": "actorId",
906
+ "required": false
866
907
  }
867
908
  },
868
- "description": "Lists all builds of the Actor.",
909
+ "description": "Pulls an Actor from the Apify platform to the current directory. If it is defined as Git repository, it will be cloned. If it is defined as Web IDE, it will fetch the files.",
869
910
  "flags": {
870
- "json": {
871
- "description": "Format output as json.",
872
- "helpGroup": "GLOBAL",
873
- "name": "json",
874
- "allowNo": false,
875
- "type": "boolean"
876
- },
877
- "offset": {
878
- "description": "Number of builds that will be skipped.",
879
- "name": "offset",
880
- "default": 0,
911
+ "version": {
912
+ "char": "v",
913
+ "description": "Actor version number which will be pulled, e.g. 1.2. Default: the highest version",
914
+ "name": "version",
915
+ "required": false,
881
916
  "hasDynamicHelp": false,
882
917
  "multiple": false,
883
918
  "type": "option"
884
919
  },
885
- "limit": {
886
- "description": "Number of builds that will be listed.",
887
- "name": "limit",
888
- "default": 10,
920
+ "dir": {
921
+ "description": "Directory where the Actor should be pulled to",
922
+ "name": "dir",
923
+ "required": false,
889
924
  "hasDynamicHelp": false,
890
925
  "multiple": false,
891
926
  "type": "option"
892
- },
893
- "desc": {
894
- "description": "Sort builds in descending order.",
895
- "name": "desc",
896
- "allowNo": false,
897
- "type": "boolean"
898
- },
899
- "compact": {
900
- "char": "c",
901
- "description": "Display a compact table.",
902
- "name": "compact",
903
- "allowNo": false,
904
- "type": "boolean"
905
927
  }
906
928
  },
907
929
  "hasDynamicHelp": false,
908
930
  "hiddenAliases": [],
909
- "id": "builds:ls",
931
+ "id": "actors:pull",
910
932
  "pluginAlias": "apify-cli",
911
933
  "pluginName": "apify-cli",
912
934
  "pluginType": "core",
913
935
  "strict": true,
914
- "enableJsonFlag": true,
915
936
  "isESM": true,
916
937
  "relativePath": [
917
938
  "dist",
918
939
  "commands",
919
- "builds",
920
- "ls.js"
940
+ "actors",
941
+ "pull.js"
921
942
  ]
922
943
  },
923
- "builds:rm": {
944
+ "actors:rm": {
924
945
  "aliases": [],
925
946
  "args": {
926
- "buildId": {
927
- "description": "The build ID to delete.",
928
- "name": "buildId",
947
+ "actorId": {
948
+ "description": "The Actor ID to delete.",
949
+ "name": "actorId",
929
950
  "required": true
930
951
  }
931
952
  },
932
- "description": "Deletes an Actor Build.",
953
+ "description": "Deletes an Actor.",
933
954
  "flags": {},
934
955
  "hasDynamicHelp": false,
935
956
  "hiddenAliases": [],
936
- "id": "builds:rm",
957
+ "id": "actors:rm",
937
958
  "pluginAlias": "apify-cli",
938
959
  "pluginName": "apify-cli",
939
960
  "pluginType": "core",
@@ -942,11 +963,11 @@
942
963
  "relativePath": [
943
964
  "dist",
944
965
  "commands",
945
- "builds",
966
+ "actors",
946
967
  "rm.js"
947
968
  ]
948
969
  },
949
- "actors:build": {
970
+ "builds:create": {
950
971
  "aliases": [],
951
972
  "args": {
952
973
  "actorId": {
@@ -987,29 +1008,50 @@
987
1008
  },
988
1009
  "hasDynamicHelp": false,
989
1010
  "hiddenAliases": [],
990
- "id": "actors:build",
1011
+ "id": "builds:create",
991
1012
  "pluginAlias": "apify-cli",
992
1013
  "pluginName": "apify-cli",
993
1014
  "pluginType": "core",
1015
+ "strict": true,
994
1016
  "enableJsonFlag": true,
995
1017
  "isESM": true,
996
1018
  "relativePath": [
997
1019
  "dist",
998
1020
  "commands",
999
- "actors",
1000
- "build.js"
1021
+ "builds",
1022
+ "create.js"
1001
1023
  ]
1002
1024
  },
1003
- "actors:call": {
1025
+ "builds": {
1026
+ "aliases": [],
1027
+ "args": {},
1028
+ "description": "Commands are designed to be used with Actor Builds.",
1029
+ "flags": {},
1030
+ "hasDynamicHelp": false,
1031
+ "hiddenAliases": [],
1032
+ "id": "builds",
1033
+ "pluginAlias": "apify-cli",
1034
+ "pluginName": "apify-cli",
1035
+ "pluginType": "core",
1036
+ "strict": true,
1037
+ "isESM": true,
1038
+ "relativePath": [
1039
+ "dist",
1040
+ "commands",
1041
+ "builds",
1042
+ "index.js"
1043
+ ]
1044
+ },
1045
+ "builds:info": {
1004
1046
  "aliases": [],
1005
1047
  "args": {
1006
- "actorId": {
1007
- "description": "Name or ID of the Actor to run (e.g. \"my-actor\", \"apify/hello-world\" or \"E2jjCZBezvAZnX8Rb\"). If not provided, the command runs the remote Actor specified in the \".actor/actor.json\" file.",
1008
- "name": "actorId",
1009
- "required": false
1048
+ "buildId": {
1049
+ "description": "The build ID to get information about.",
1050
+ "name": "buildId",
1051
+ "required": true
1010
1052
  }
1011
1053
  },
1012
- "description": "Runs a specific Actor remotely on the Apify cloud platform.\nThe Actor is run under your current Apify account. Therefore you need to be logged in by calling \"apify login\". It takes input for the Actor from the default local key-value store by default.",
1054
+ "description": "Prints information about a specific build.",
1013
1055
  "flags": {
1014
1056
  "json": {
1015
1057
  "description": "Format output as json.",
@@ -1017,78 +1059,11 @@
1017
1059
  "name": "json",
1018
1060
  "allowNo": false,
1019
1061
  "type": "boolean"
1020
- },
1021
- "build": {
1022
- "char": "b",
1023
- "description": "Tag or number of the build to run (e.g. \"latest\" or \"1.2.34\").",
1024
- "name": "build",
1025
- "required": false,
1026
- "hasDynamicHelp": false,
1027
- "multiple": false,
1028
- "type": "option"
1029
- },
1030
- "timeout": {
1031
- "char": "t",
1032
- "description": "Timeout for the Actor run in seconds. Zero value means there is no timeout.",
1033
- "name": "timeout",
1034
- "required": false,
1035
- "hasDynamicHelp": false,
1036
- "multiple": false,
1037
- "type": "option"
1038
- },
1039
- "memory": {
1040
- "char": "m",
1041
- "description": "Amount of memory allocated for the Actor run, in megabytes.",
1042
- "name": "memory",
1043
- "required": false,
1044
- "hasDynamicHelp": false,
1045
- "multiple": false,
1046
- "type": "option"
1047
- },
1048
- "input": {
1049
- "char": "i",
1050
- "description": "Optional JSON input to be given to the Actor.",
1051
- "exclusive": [
1052
- "input-file"
1053
- ],
1054
- "name": "input",
1055
- "required": false,
1056
- "hasDynamicHelp": false,
1057
- "multiple": false,
1058
- "type": "option"
1059
- },
1060
- "input-file": {
1061
- "aliases": [
1062
- "if"
1063
- ],
1064
- "description": "Optional path to a file with JSON input to be given to the Actor. The file must be a valid JSON file. You can also specify `-` to read from standard input.",
1065
- "exclusive": [
1066
- "input"
1067
- ],
1068
- "name": "input-file",
1069
- "required": false,
1070
- "hasDynamicHelp": false,
1071
- "multiple": false,
1072
- "type": "option"
1073
- },
1074
- "silent": {
1075
- "char": "s",
1076
- "description": "Prevents printing the logs of the Actor run to the console.",
1077
- "name": "silent",
1078
- "allowNo": false,
1079
- "type": "boolean"
1080
- },
1081
- "output-dataset": {
1082
- "char": "o",
1083
- "description": "Prints out the entire default dataset on successful run of the Actor.",
1084
- "name": "output-dataset",
1085
- "allowNo": false,
1086
- "type": "boolean"
1087
1062
  }
1088
1063
  },
1089
1064
  "hasDynamicHelp": false,
1090
1065
  "hiddenAliases": [],
1091
- "id": "actors:call",
1066
+ "id": "builds:info",
1092
1067
  "pluginAlias": "apify-cli",
1093
1068
  "pluginName": "apify-cli",
1094
1069
  "pluginType": "core",
@@ -1098,18 +1073,24 @@
1098
1073
  "relativePath": [
1099
1074
  "dist",
1100
1075
  "commands",
1101
- "actors",
1102
- "call.js"
1076
+ "builds",
1077
+ "info.js"
1103
1078
  ]
1104
1079
  },
1105
- "actors": {
1080
+ "builds:log": {
1106
1081
  "aliases": [],
1107
- "args": {},
1108
- "description": "Commands are designed to be used with Actors.",
1082
+ "args": {
1083
+ "buildId": {
1084
+ "description": "The build ID to get the log from.",
1085
+ "name": "buildId",
1086
+ "required": true
1087
+ }
1088
+ },
1089
+ "description": "Prints the log of a specific build.",
1109
1090
  "flags": {},
1110
1091
  "hasDynamicHelp": false,
1111
1092
  "hiddenAliases": [],
1112
- "id": "actors",
1093
+ "id": "builds:log",
1113
1094
  "pluginAlias": "apify-cli",
1114
1095
  "pluginName": "apify-cli",
1115
1096
  "pluginType": "core",
@@ -1118,68 +1099,87 @@
1118
1099
  "relativePath": [
1119
1100
  "dist",
1120
1101
  "commands",
1121
- "actors",
1122
- "index.js"
1102
+ "builds",
1103
+ "log.js"
1123
1104
  ]
1124
1105
  },
1125
- "actors:pull": {
1106
+ "builds:ls": {
1126
1107
  "aliases": [],
1127
1108
  "args": {
1128
1109
  "actorId": {
1129
- "description": "Name or ID of the Actor to run (e.g. \"apify/hello-world\" or \"E2jjCZBezvAZnX8Rb\"). If not provided, the command will update the Actor in the current directory based on its name in \".actor/actor.json\" file.",
1130
- "name": "actorId",
1131
- "required": false
1110
+ "description": "Optional Actor ID or Name to list runs for. By default, it will use the Actor from the current directory.",
1111
+ "name": "actorId"
1132
1112
  }
1133
1113
  },
1134
- "description": "Pulls an Actor from the Apify platform to the current directory. If it is defined as Git repository, it will be cloned. If it is defined as Web IDE, it will fetch the files.",
1114
+ "description": "Lists all builds of the Actor.",
1135
1115
  "flags": {
1136
- "version": {
1137
- "char": "v",
1138
- "description": "Actor version number which will be pulled, e.g. 1.2. Default: the highest version",
1139
- "name": "version",
1140
- "required": false,
1116
+ "json": {
1117
+ "description": "Format output as json.",
1118
+ "helpGroup": "GLOBAL",
1119
+ "name": "json",
1120
+ "allowNo": false,
1121
+ "type": "boolean"
1122
+ },
1123
+ "offset": {
1124
+ "description": "Number of builds that will be skipped.",
1125
+ "name": "offset",
1126
+ "default": 0,
1141
1127
  "hasDynamicHelp": false,
1142
1128
  "multiple": false,
1143
1129
  "type": "option"
1144
1130
  },
1145
- "dir": {
1146
- "description": "Directory where the Actor should be pulled to",
1147
- "name": "dir",
1148
- "required": false,
1131
+ "limit": {
1132
+ "description": "Number of builds that will be listed.",
1133
+ "name": "limit",
1134
+ "default": 10,
1149
1135
  "hasDynamicHelp": false,
1150
1136
  "multiple": false,
1151
1137
  "type": "option"
1138
+ },
1139
+ "desc": {
1140
+ "description": "Sort builds in descending order.",
1141
+ "name": "desc",
1142
+ "allowNo": false,
1143
+ "type": "boolean"
1144
+ },
1145
+ "compact": {
1146
+ "char": "c",
1147
+ "description": "Display a compact table.",
1148
+ "name": "compact",
1149
+ "allowNo": false,
1150
+ "type": "boolean"
1152
1151
  }
1153
1152
  },
1154
1153
  "hasDynamicHelp": false,
1155
1154
  "hiddenAliases": [],
1156
- "id": "actors:pull",
1155
+ "id": "builds:ls",
1157
1156
  "pluginAlias": "apify-cli",
1158
1157
  "pluginName": "apify-cli",
1159
1158
  "pluginType": "core",
1160
1159
  "strict": true,
1160
+ "enableJsonFlag": true,
1161
1161
  "isESM": true,
1162
1162
  "relativePath": [
1163
1163
  "dist",
1164
1164
  "commands",
1165
- "actors",
1166
- "pull.js"
1165
+ "builds",
1166
+ "ls.js"
1167
1167
  ]
1168
1168
  },
1169
- "actors:rm": {
1169
+ "builds:rm": {
1170
1170
  "aliases": [],
1171
1171
  "args": {
1172
- "actorId": {
1173
- "description": "The Actor ID to delete.",
1174
- "name": "actorId",
1172
+ "buildId": {
1173
+ "description": "The build ID to delete.",
1174
+ "name": "buildId",
1175
1175
  "required": true
1176
1176
  }
1177
1177
  },
1178
- "description": "Deletes an Actor.",
1178
+ "description": "Deletes an Actor Build.",
1179
1179
  "flags": {},
1180
1180
  "hasDynamicHelp": false,
1181
1181
  "hiddenAliases": [],
1182
- "id": "actors:rm",
1182
+ "id": "builds:rm",
1183
1183
  "pluginAlias": "apify-cli",
1184
1184
  "pluginName": "apify-cli",
1185
1185
  "pluginType": "core",
@@ -1188,7 +1188,7 @@
1188
1188
  "relativePath": [
1189
1189
  "dist",
1190
1190
  "commands",
1191
- "actors",
1191
+ "builds",
1192
1192
  "rm.js"
1193
1193
  ]
1194
1194
  },
@@ -1658,5 +1658,5 @@
1658
1658
  ]
1659
1659
  }
1660
1660
  },
1661
- "version": "0.21.0-beta.16"
1661
+ "version": "0.21.0-beta.17"
1662
1662
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "apify-cli",
3
- "version": "0.21.0-beta.16",
3
+ "version": "0.21.0-beta.17",
4
4
  "description": "Apify command-line interface (CLI) helps you manage the Apify cloud platform and develop, build, and deploy Apify Actors.",
5
5
  "exports": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",