apify-cli 0.21.0-beta.6 → 0.21.0-beta.8

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 (35) hide show
  1. package/README.md +113 -35
  2. package/dist/.tsbuildinfo +1 -1
  3. package/dist/commands/actors/rm.d.ts +9 -0
  4. package/dist/commands/actors/rm.d.ts.map +1 -0
  5. package/dist/commands/actors/rm.js +52 -0
  6. package/dist/commands/actors/rm.js.map +1 -0
  7. package/dist/commands/builds/info.js +1 -1
  8. package/dist/commands/builds/info.js.map +1 -1
  9. package/dist/commands/builds/rm.d.ts +9 -0
  10. package/dist/commands/builds/rm.d.ts.map +1 -0
  11. package/dist/commands/builds/rm.js +66 -0
  12. package/dist/commands/builds/rm.js.map +1 -0
  13. package/dist/commands/runs/info.d.ts +45 -0
  14. package/dist/commands/runs/info.d.ts.map +1 -0
  15. package/dist/commands/runs/info.js +256 -0
  16. package/dist/commands/runs/info.js.map +1 -0
  17. package/dist/commands/runs/rm.d.ts +9 -0
  18. package/dist/commands/runs/rm.d.ts.map +1 -0
  19. package/dist/commands/runs/rm.js +67 -0
  20. package/dist/commands/runs/rm.js.map +1 -0
  21. package/dist/lib/apify_command.d.ts +1 -0
  22. package/dist/lib/apify_command.d.ts.map +1 -1
  23. package/dist/lib/apify_command.js +3 -0
  24. package/dist/lib/apify_command.js.map +1 -1
  25. package/dist/lib/commands/confirm.d.ts +6 -0
  26. package/dist/lib/commands/confirm.d.ts.map +1 -0
  27. package/dist/lib/commands/confirm.js +26 -0
  28. package/dist/lib/commands/confirm.js.map +1 -0
  29. package/dist/lib/commands/pretty-print-bytes.d.ts +1 -1
  30. package/dist/lib/commands/pretty-print-bytes.d.ts.map +1 -1
  31. package/dist/lib/commands/pretty-print-bytes.js +6 -3
  32. package/dist/lib/commands/pretty-print-bytes.js.map +1 -1
  33. package/dist/typechecking.tsbuildinfo +1 -1
  34. package/oclif.manifest.json +121 -1
  35. package/package.json +4 -4
package/README.md CHANGED
@@ -288,11 +288,13 @@ This section contains printouts of `apify help` for all commands.
288
288
  * [`apify actor push-data [ITEM]`](#apify-actor-push-data-item)
289
289
  * [`apify actor set-value KEY [VALUE]`](#apify-actor-set-value-key-value)
290
290
  * [`apify actors`](#apify-actors)
291
+ * [`apify actors rm ACTORID`](#apify-actors-rm-actorid)
291
292
  * [`apify builds`](#apify-builds)
292
293
  * [`apify builds create`](#apify-builds-create)
293
294
  * [`apify builds info BUILDID`](#apify-builds-info-buildid)
294
295
  * [`apify builds log BUILDID`](#apify-builds-log-buildid)
295
296
  * [`apify builds ls`](#apify-builds-ls)
297
+ * [`apify builds rm BUILDID`](#apify-builds-rm-buildid)
296
298
  * [`apify call [ACTORID]`](#apify-call-actorid)
297
299
  * [`apify create [ACTORNAME]`](#apify-create-actorname)
298
300
  * [`apify datasets`](#apify-datasets)
@@ -308,9 +310,11 @@ This section contains printouts of `apify help` for all commands.
308
310
  * [`apify run`](#apify-run)
309
311
  * [`apify runs`](#apify-runs)
310
312
  * [`apify runs abort RUNID`](#apify-runs-abort-runid)
313
+ * [`apify runs info RUNID`](#apify-runs-info-runid)
311
314
  * [`apify runs log RUNID`](#apify-runs-log-runid)
312
315
  * [`apify runs ls`](#apify-runs-ls)
313
316
  * [`apify runs resurrect RUNID`](#apify-runs-resurrect-runid)
317
+ * [`apify runs rm RUNID`](#apify-runs-rm-runid)
314
318
  * [`apify secrets`](#apify-secrets)
315
319
  * [`apify secrets add NAME VALUE`](#apify-secrets-add-name-value)
316
320
  * [`apify secrets rm NAME`](#apify-secrets-rm-name)
@@ -330,7 +334,7 @@ DESCRIPTION
330
334
  Commands are designed to be used in Actor runs. All commands are in PoC state, do not use in production environments.
331
335
  ```
332
336
 
333
- _See code: [src/commands/actor/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.6/src/commands/actor/index.ts)_
337
+ _See code: [src/commands/actor/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.8/src/commands/actor/index.ts)_
334
338
 
335
339
  ## `apify actor get-input`
336
340
 
@@ -344,7 +348,7 @@ DESCRIPTION
344
348
  Gets the Actor input value from the default key-value store associated with the Actor run.
345
349
  ```
346
350
 
347
- _See code: [src/commands/actor/get-input.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.6/src/commands/actor/get-input.ts)_
351
+ _See code: [src/commands/actor/get-input.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.8/src/commands/actor/get-input.ts)_
348
352
 
349
353
  ## `apify actor get-value KEY`
350
354
 
@@ -361,7 +365,7 @@ DESCRIPTION
361
365
  Gets a value from the default key-value store associated with the Actor run.
362
366
  ```
363
367
 
364
- _See code: [src/commands/actor/get-value.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.6/src/commands/actor/get-value.ts)_
368
+ _See code: [src/commands/actor/get-value.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.8/src/commands/actor/get-value.ts)_
365
369
 
366
370
  ## `apify actor push-data [ITEM]`
367
371
 
@@ -383,7 +387,7 @@ DESCRIPTION
383
387
  $ cat ./test.json | apify actor push-data
384
388
  ```
385
389
 
386
- _See code: [src/commands/actor/push-data.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.6/src/commands/actor/push-data.ts)_
390
+ _See code: [src/commands/actor/push-data.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.8/src/commands/actor/push-data.ts)_
387
391
 
388
392
  ## `apify actor set-value KEY [VALUE]`
389
393
 
@@ -412,7 +416,7 @@ DESCRIPTION
412
416
  $ cat ./my-text-file.txt | apify actor set-value KEY --contentType text/plain
413
417
  ```
414
418
 
415
- _See code: [src/commands/actor/set-value.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.6/src/commands/actor/set-value.ts)_
419
+ _See code: [src/commands/actor/set-value.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.8/src/commands/actor/set-value.ts)_
416
420
 
417
421
  ## `apify actors`
418
422
 
@@ -426,7 +430,24 @@ DESCRIPTION
426
430
  Commands are designed to be used with Actors.
427
431
  ```
428
432
 
429
- _See code: [src/commands/actors/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.6/src/commands/actors/index.ts)_
433
+ _See code: [src/commands/actors/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.8/src/commands/actors/index.ts)_
434
+
435
+ ## `apify actors rm ACTORID`
436
+
437
+ Deletes an Actor.
438
+
439
+ ```
440
+ USAGE
441
+ $ apify actors rm ACTORID
442
+
443
+ ARGUMENTS
444
+ ACTORID The Actor ID to delete.
445
+
446
+ DESCRIPTION
447
+ Deletes an Actor.
448
+ ```
449
+
450
+ _See code: [src/commands/actors/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.8/src/commands/actors/rm.ts)_
430
451
 
431
452
  ## `apify builds`
432
453
 
@@ -440,7 +461,7 @@ DESCRIPTION
440
461
  Commands are designed to be used with Actor Builds.
441
462
  ```
442
463
 
443
- _See code: [src/commands/builds/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.6/src/commands/builds/index.ts)_
464
+ _See code: [src/commands/builds/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.8/src/commands/builds/index.ts)_
444
465
 
445
466
  ## `apify builds create`
446
467
 
@@ -465,7 +486,7 @@ DESCRIPTION
465
486
  Creates a new build of the Actor.
466
487
  ```
467
488
 
468
- _See code: [src/commands/builds/create.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.6/src/commands/builds/create.ts)_
489
+ _See code: [src/commands/builds/create.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.8/src/commands/builds/create.ts)_
469
490
 
470
491
  ## `apify builds info BUILDID`
471
492
 
@@ -485,7 +506,7 @@ DESCRIPTION
485
506
  Prints information about a specific build.
486
507
  ```
487
508
 
488
- _See code: [src/commands/builds/info.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.6/src/commands/builds/info.ts)_
509
+ _See code: [src/commands/builds/info.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.8/src/commands/builds/info.ts)_
489
510
 
490
511
  ## `apify builds log BUILDID`
491
512
 
@@ -502,7 +523,7 @@ DESCRIPTION
502
523
  Prints the log of a specific build.
503
524
  ```
504
525
 
505
- _See code: [src/commands/builds/log.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.6/src/commands/builds/log.ts)_
526
+ _See code: [src/commands/builds/log.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.8/src/commands/builds/log.ts)_
506
527
 
507
528
  ## `apify builds ls`
508
529
 
@@ -527,7 +548,24 @@ DESCRIPTION
527
548
  Lists all builds of the Actor.
528
549
  ```
529
550
 
530
- _See code: [src/commands/builds/ls.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.6/src/commands/builds/ls.ts)_
551
+ _See code: [src/commands/builds/ls.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.8/src/commands/builds/ls.ts)_
552
+
553
+ ## `apify builds rm BUILDID`
554
+
555
+ Deletes an Actor Build.
556
+
557
+ ```
558
+ USAGE
559
+ $ apify builds rm BUILDID
560
+
561
+ ARGUMENTS
562
+ BUILDID The build ID to delete.
563
+
564
+ DESCRIPTION
565
+ Deletes an Actor Build.
566
+ ```
567
+
568
+ _See code: [src/commands/builds/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.8/src/commands/builds/rm.ts)_
531
569
 
532
570
  ## `apify call [ACTORID]`
533
571
 
@@ -559,7 +597,7 @@ DESCRIPTION
559
597
  takes input for the Actor from the default local key-value store by default.
560
598
  ```
561
599
 
562
- _See code: [src/commands/call.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.6/src/commands/call.ts)_
600
+ _See code: [src/commands/call.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.8/src/commands/call.ts)_
563
601
 
564
602
  ## `apify create [ACTORNAME]`
565
603
 
@@ -584,7 +622,7 @@ DESCRIPTION
584
622
  Creates a new Actor project directory from a selected boilerplate template.
585
623
  ```
586
624
 
587
- _See code: [src/commands/create.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.6/src/commands/create.ts)_
625
+ _See code: [src/commands/create.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.8/src/commands/create.ts)_
588
626
 
589
627
  ## `apify datasets`
590
628
 
@@ -598,7 +636,7 @@ DESCRIPTION
598
636
  Commands are designed to be used with Datasets.
599
637
  ```
600
638
 
601
- _See code: [src/commands/datasets/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.6/src/commands/datasets/index.ts)_
639
+ _See code: [src/commands/datasets/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.8/src/commands/datasets/index.ts)_
602
640
 
603
641
  ## `apify help [COMMAND]`
604
642
 
@@ -618,7 +656,7 @@ DESCRIPTION
618
656
  Display help for apify.
619
657
  ```
620
658
 
621
- _See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v6.2.11/src/commands/help.ts)_
659
+ _See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v6.2.12/src/commands/help.ts)_
622
660
 
623
661
  ## `apify info`
624
662
 
@@ -633,7 +671,7 @@ DESCRIPTION
633
671
  The information is printed to the console.
634
672
  ```
635
673
 
636
- _See code: [src/commands/info.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.6/src/commands/info.ts)_
674
+ _See code: [src/commands/info.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.8/src/commands/info.ts)_
637
675
 
638
676
  ## `apify init [ACTORNAME]`
639
677
 
@@ -661,7 +699,7 @@ DESCRIPTION
661
699
  WARNING: The directory at "storage" will be overwritten if it already exists.
662
700
  ```
663
701
 
664
- _See code: [src/commands/init.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.6/src/commands/init.ts)_
702
+ _See code: [src/commands/init.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.8/src/commands/init.ts)_
665
703
 
666
704
  ## `apify key-value-stores`
667
705
 
@@ -675,7 +713,7 @@ DESCRIPTION
675
713
  Commands are designed to be used with Key Value Stores.
676
714
  ```
677
715
 
678
- _See code: [src/commands/key-value-stores/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.6/src/commands/key-value-stores/index.ts)_
716
+ _See code: [src/commands/key-value-stores/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.8/src/commands/key-value-stores/index.ts)_
679
717
 
680
718
  ## `apify login`
681
719
 
@@ -696,7 +734,7 @@ DESCRIPTION
696
734
  "apify" commands. To log out, call "apify logout".
697
735
  ```
698
736
 
699
- _See code: [src/commands/login.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.6/src/commands/login.ts)_
737
+ _See code: [src/commands/login.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.8/src/commands/login.ts)_
700
738
 
701
739
  ## `apify logout`
702
740
 
@@ -712,7 +750,7 @@ DESCRIPTION
712
750
  call "apify login".
713
751
  ```
714
752
 
715
- _See code: [src/commands/logout.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.6/src/commands/logout.ts)_
753
+ _See code: [src/commands/logout.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.8/src/commands/logout.ts)_
716
754
 
717
755
  ## `apify pull [ACTORID]`
718
756
 
@@ -734,7 +772,7 @@ DESCRIPTION
734
772
  cloned. If it is defined as Web IDE, it will fetch the files.
735
773
  ```
736
774
 
737
- _See code: [src/commands/pull.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.6/src/commands/pull.ts)_
775
+ _See code: [src/commands/pull.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.8/src/commands/pull.ts)_
738
776
 
739
777
  ## `apify push [ACTORID]`
740
778
 
@@ -772,7 +810,7 @@ DESCRIPTION
772
810
  overwritten with --force flag.
773
811
  ```
774
812
 
775
- _See code: [src/commands/push.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.6/src/commands/push.ts)_
813
+ _See code: [src/commands/push.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.8/src/commands/push.ts)_
776
814
 
777
815
  ## `apify request-queues`
778
816
 
@@ -786,7 +824,7 @@ DESCRIPTION
786
824
  Commands are designed to be used with Request Queues.
787
825
  ```
788
826
 
789
- _See code: [src/commands/request-queues/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.6/src/commands/request-queues/index.ts)_
827
+ _See code: [src/commands/request-queues/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.8/src/commands/request-queues/index.ts)_
790
828
 
791
829
  ## `apify run`
792
830
 
@@ -822,7 +860,7 @@ DESCRIPTION
822
860
  package.json file. You can set up your own main file or environment variables by changing it.
823
861
  ```
824
862
 
825
- _See code: [src/commands/run.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.6/src/commands/run.ts)_
863
+ _See code: [src/commands/run.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.8/src/commands/run.ts)_
826
864
 
827
865
  ## `apify runs`
828
866
 
@@ -836,7 +874,7 @@ DESCRIPTION
836
874
  Commands are designed to be used with Actor Runs.
837
875
  ```
838
876
 
839
- _See code: [src/commands/runs/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.6/src/commands/runs/index.ts)_
877
+ _See code: [src/commands/runs/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.8/src/commands/runs/index.ts)_
840
878
 
841
879
  ## `apify runs abort RUNID`
842
880
 
@@ -859,7 +897,30 @@ DESCRIPTION
859
897
  Aborts an Actor Run.
860
898
  ```
861
899
 
862
- _See code: [src/commands/runs/abort.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.6/src/commands/runs/abort.ts)_
900
+ _See code: [src/commands/runs/abort.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.8/src/commands/runs/abort.ts)_
901
+
902
+ ## `apify runs info RUNID`
903
+
904
+ Prints information about an Actor Run.
905
+
906
+ ```
907
+ USAGE
908
+ $ apify runs info RUNID [--json] [-v]
909
+
910
+ ARGUMENTS
911
+ RUNID The run ID to print information about.
912
+
913
+ FLAGS
914
+ -v, --verbose Prints more in-depth information about the Actor Run.
915
+
916
+ GLOBAL FLAGS
917
+ --json Format output as json.
918
+
919
+ DESCRIPTION
920
+ Prints information about an Actor Run.
921
+ ```
922
+
923
+ _See code: [src/commands/runs/info.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.8/src/commands/runs/info.ts)_
863
924
 
864
925
  ## `apify runs log RUNID`
865
926
 
@@ -876,7 +937,7 @@ DESCRIPTION
876
937
  Prints the log of a specific run.
877
938
  ```
878
939
 
879
- _See code: [src/commands/runs/log.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.6/src/commands/runs/log.ts)_
940
+ _See code: [src/commands/runs/log.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.8/src/commands/runs/log.ts)_
880
941
 
881
942
  ## `apify runs ls`
882
943
 
@@ -901,7 +962,7 @@ DESCRIPTION
901
962
  Lists all runs of the Actor.
902
963
  ```
903
964
 
904
- _See code: [src/commands/runs/ls.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.6/src/commands/runs/ls.ts)_
965
+ _See code: [src/commands/runs/ls.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.8/src/commands/runs/ls.ts)_
905
966
 
906
967
  ## `apify runs resurrect RUNID`
907
968
 
@@ -921,7 +982,24 @@ DESCRIPTION
921
982
  Resurrects an aborted or finished Actor Run.
922
983
  ```
923
984
 
924
- _See code: [src/commands/runs/resurrect.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.6/src/commands/runs/resurrect.ts)_
985
+ _See code: [src/commands/runs/resurrect.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.8/src/commands/runs/resurrect.ts)_
986
+
987
+ ## `apify runs rm RUNID`
988
+
989
+ Deletes an Actor Run.
990
+
991
+ ```
992
+ USAGE
993
+ $ apify runs rm RUNID
994
+
995
+ ARGUMENTS
996
+ RUNID The run ID to delete.
997
+
998
+ DESCRIPTION
999
+ Deletes an Actor Run.
1000
+ ```
1001
+
1002
+ _See code: [src/commands/runs/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.8/src/commands/runs/rm.ts)_
925
1003
 
926
1004
  ## `apify secrets`
927
1005
 
@@ -951,7 +1029,7 @@ DESCRIPTION
951
1029
  of the Actor.
952
1030
  ```
953
1031
 
954
- _See code: [src/commands/secrets/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.6/src/commands/secrets/index.ts)_
1032
+ _See code: [src/commands/secrets/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.8/src/commands/secrets/index.ts)_
955
1033
 
956
1034
  ## `apify secrets add NAME VALUE`
957
1035
 
@@ -970,7 +1048,7 @@ DESCRIPTION
970
1048
  The secrets are stored to a file at ~/.apify
971
1049
  ```
972
1050
 
973
- _See code: [src/commands/secrets/add.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.6/src/commands/secrets/add.ts)_
1051
+ _See code: [src/commands/secrets/add.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.8/src/commands/secrets/add.ts)_
974
1052
 
975
1053
  ## `apify secrets rm NAME`
976
1054
 
@@ -987,7 +1065,7 @@ DESCRIPTION
987
1065
  Removes the secret.
988
1066
  ```
989
1067
 
990
- _See code: [src/commands/secrets/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.6/src/commands/secrets/rm.ts)_
1068
+ _See code: [src/commands/secrets/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.8/src/commands/secrets/rm.ts)_
991
1069
 
992
1070
  ## `apify task`
993
1071
 
@@ -1001,7 +1079,7 @@ DESCRIPTION
1001
1079
  Commands are designed to be used to interact with Tasks.
1002
1080
  ```
1003
1081
 
1004
- _See code: [src/commands/task/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.6/src/commands/task/index.ts)_
1082
+ _See code: [src/commands/task/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.8/src/commands/task/index.ts)_
1005
1083
 
1006
1084
  ## `apify task run TASKID`
1007
1085
 
@@ -1026,7 +1104,7 @@ DESCRIPTION
1026
1104
  takes input for the Actor from the default local key-value store by default.
1027
1105
  ```
1028
1106
 
1029
- _See code: [src/commands/task/run.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.6/src/commands/task/run.ts)_
1107
+ _See code: [src/commands/task/run.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.8/src/commands/task/run.ts)_
1030
1108
 
1031
1109
  ## `apify validate-schema [PATH]`
1032
1110
 
@@ -1051,6 +1129,6 @@ DESCRIPTION
1051
1129
  You can also pass any custom path to your input schema to have it validated instead.
1052
1130
  ```
1053
1131
 
1054
- _See code: [src/commands/validate-schema.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.6/src/commands/validate-schema.ts)_
1132
+ _See code: [src/commands/validate-schema.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.8/src/commands/validate-schema.ts)_
1055
1133
  <!-- commandsstop -->
1056
1134
  <!-- prettier-ignore-end -->