apify-cli 0.21.0-beta.4 → 0.21.0-beta.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +51 -33
- package/dist/.tsbuildinfo +1 -1
- package/dist/commands/runs/log.d.ts +9 -0
- package/dist/commands/runs/log.d.ts.map +1 -0
- package/dist/commands/runs/log.js +41 -0
- package/dist/commands/runs/log.js.map +1 -0
- package/dist/lib/input_schema.d.ts.map +1 -1
- package/dist/lib/input_schema.js +14 -12
- package/dist/lib/input_schema.js.map +1 -1
- package/dist/typechecking.tsbuildinfo +1 -1
- package/oclif.manifest.json +27 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -308,6 +308,7 @@ This section contains printouts of `apify help` for all commands.
|
|
|
308
308
|
* [`apify run`](#apify-run)
|
|
309
309
|
* [`apify runs`](#apify-runs)
|
|
310
310
|
* [`apify runs abort RUNID`](#apify-runs-abort-runid)
|
|
311
|
+
* [`apify runs log RUNID`](#apify-runs-log-runid)
|
|
311
312
|
* [`apify runs ls`](#apify-runs-ls)
|
|
312
313
|
* [`apify runs resurrect RUNID`](#apify-runs-resurrect-runid)
|
|
313
314
|
* [`apify secrets`](#apify-secrets)
|
|
@@ -329,7 +330,7 @@ DESCRIPTION
|
|
|
329
330
|
Commands are designed to be used in Actor runs. All commands are in PoC state, do not use in production environments.
|
|
330
331
|
```
|
|
331
332
|
|
|
332
|
-
_See code: [src/commands/actor/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
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)_
|
|
333
334
|
|
|
334
335
|
## `apify actor get-input`
|
|
335
336
|
|
|
@@ -343,7 +344,7 @@ DESCRIPTION
|
|
|
343
344
|
Gets the Actor input value from the default key-value store associated with the Actor run.
|
|
344
345
|
```
|
|
345
346
|
|
|
346
|
-
_See code: [src/commands/actor/get-input.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
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)_
|
|
347
348
|
|
|
348
349
|
## `apify actor get-value KEY`
|
|
349
350
|
|
|
@@ -360,7 +361,7 @@ DESCRIPTION
|
|
|
360
361
|
Gets a value from the default key-value store associated with the Actor run.
|
|
361
362
|
```
|
|
362
363
|
|
|
363
|
-
_See code: [src/commands/actor/get-value.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
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)_
|
|
364
365
|
|
|
365
366
|
## `apify actor push-data [ITEM]`
|
|
366
367
|
|
|
@@ -382,7 +383,7 @@ DESCRIPTION
|
|
|
382
383
|
$ cat ./test.json | apify actor push-data
|
|
383
384
|
```
|
|
384
385
|
|
|
385
|
-
_See code: [src/commands/actor/push-data.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
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)_
|
|
386
387
|
|
|
387
388
|
## `apify actor set-value KEY [VALUE]`
|
|
388
389
|
|
|
@@ -411,7 +412,7 @@ DESCRIPTION
|
|
|
411
412
|
$ cat ./my-text-file.txt | apify actor set-value KEY --contentType text/plain
|
|
412
413
|
```
|
|
413
414
|
|
|
414
|
-
_See code: [src/commands/actor/set-value.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
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)_
|
|
415
416
|
|
|
416
417
|
## `apify actors`
|
|
417
418
|
|
|
@@ -425,7 +426,7 @@ DESCRIPTION
|
|
|
425
426
|
Commands are designed to be used with Actors.
|
|
426
427
|
```
|
|
427
428
|
|
|
428
|
-
_See code: [src/commands/actors/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
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)_
|
|
429
430
|
|
|
430
431
|
## `apify builds`
|
|
431
432
|
|
|
@@ -439,7 +440,7 @@ DESCRIPTION
|
|
|
439
440
|
Commands are designed to be used with Actor Builds.
|
|
440
441
|
```
|
|
441
442
|
|
|
442
|
-
_See code: [src/commands/builds/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
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)_
|
|
443
444
|
|
|
444
445
|
## `apify builds create`
|
|
445
446
|
|
|
@@ -464,7 +465,7 @@ DESCRIPTION
|
|
|
464
465
|
Creates a new build of the Actor.
|
|
465
466
|
```
|
|
466
467
|
|
|
467
|
-
_See code: [src/commands/builds/create.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
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)_
|
|
468
469
|
|
|
469
470
|
## `apify builds info BUILDID`
|
|
470
471
|
|
|
@@ -484,7 +485,7 @@ DESCRIPTION
|
|
|
484
485
|
Prints information about a specific build.
|
|
485
486
|
```
|
|
486
487
|
|
|
487
|
-
_See code: [src/commands/builds/info.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
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)_
|
|
488
489
|
|
|
489
490
|
## `apify builds log BUILDID`
|
|
490
491
|
|
|
@@ -501,7 +502,7 @@ DESCRIPTION
|
|
|
501
502
|
Prints the log of a specific build.
|
|
502
503
|
```
|
|
503
504
|
|
|
504
|
-
_See code: [src/commands/builds/log.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
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)_
|
|
505
506
|
|
|
506
507
|
## `apify builds ls`
|
|
507
508
|
|
|
@@ -526,7 +527,7 @@ DESCRIPTION
|
|
|
526
527
|
Lists all builds of the Actor.
|
|
527
528
|
```
|
|
528
529
|
|
|
529
|
-
_See code: [src/commands/builds/ls.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
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)_
|
|
530
531
|
|
|
531
532
|
## `apify call [ACTORID]`
|
|
532
533
|
|
|
@@ -558,7 +559,7 @@ DESCRIPTION
|
|
|
558
559
|
takes input for the Actor from the default local key-value store by default.
|
|
559
560
|
```
|
|
560
561
|
|
|
561
|
-
_See code: [src/commands/call.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
562
|
+
_See code: [src/commands/call.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.6/src/commands/call.ts)_
|
|
562
563
|
|
|
563
564
|
## `apify create [ACTORNAME]`
|
|
564
565
|
|
|
@@ -583,7 +584,7 @@ DESCRIPTION
|
|
|
583
584
|
Creates a new Actor project directory from a selected boilerplate template.
|
|
584
585
|
```
|
|
585
586
|
|
|
586
|
-
_See code: [src/commands/create.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
587
|
+
_See code: [src/commands/create.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.6/src/commands/create.ts)_
|
|
587
588
|
|
|
588
589
|
## `apify datasets`
|
|
589
590
|
|
|
@@ -597,7 +598,7 @@ DESCRIPTION
|
|
|
597
598
|
Commands are designed to be used with Datasets.
|
|
598
599
|
```
|
|
599
600
|
|
|
600
|
-
_See code: [src/commands/datasets/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
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)_
|
|
601
602
|
|
|
602
603
|
## `apify help [COMMAND]`
|
|
603
604
|
|
|
@@ -632,7 +633,7 @@ DESCRIPTION
|
|
|
632
633
|
The information is printed to the console.
|
|
633
634
|
```
|
|
634
635
|
|
|
635
|
-
_See code: [src/commands/info.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
636
|
+
_See code: [src/commands/info.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.6/src/commands/info.ts)_
|
|
636
637
|
|
|
637
638
|
## `apify init [ACTORNAME]`
|
|
638
639
|
|
|
@@ -660,7 +661,7 @@ DESCRIPTION
|
|
|
660
661
|
WARNING: The directory at "storage" will be overwritten if it already exists.
|
|
661
662
|
```
|
|
662
663
|
|
|
663
|
-
_See code: [src/commands/init.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
664
|
+
_See code: [src/commands/init.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.6/src/commands/init.ts)_
|
|
664
665
|
|
|
665
666
|
## `apify key-value-stores`
|
|
666
667
|
|
|
@@ -674,7 +675,7 @@ DESCRIPTION
|
|
|
674
675
|
Commands are designed to be used with Key Value Stores.
|
|
675
676
|
```
|
|
676
677
|
|
|
677
|
-
_See code: [src/commands/key-value-stores/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
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)_
|
|
678
679
|
|
|
679
680
|
## `apify login`
|
|
680
681
|
|
|
@@ -695,7 +696,7 @@ DESCRIPTION
|
|
|
695
696
|
"apify" commands. To log out, call "apify logout".
|
|
696
697
|
```
|
|
697
698
|
|
|
698
|
-
_See code: [src/commands/login.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
699
|
+
_See code: [src/commands/login.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.6/src/commands/login.ts)_
|
|
699
700
|
|
|
700
701
|
## `apify logout`
|
|
701
702
|
|
|
@@ -711,7 +712,7 @@ DESCRIPTION
|
|
|
711
712
|
call "apify login".
|
|
712
713
|
```
|
|
713
714
|
|
|
714
|
-
_See code: [src/commands/logout.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
715
|
+
_See code: [src/commands/logout.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.6/src/commands/logout.ts)_
|
|
715
716
|
|
|
716
717
|
## `apify pull [ACTORID]`
|
|
717
718
|
|
|
@@ -733,7 +734,7 @@ DESCRIPTION
|
|
|
733
734
|
cloned. If it is defined as Web IDE, it will fetch the files.
|
|
734
735
|
```
|
|
735
736
|
|
|
736
|
-
_See code: [src/commands/pull.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
737
|
+
_See code: [src/commands/pull.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.6/src/commands/pull.ts)_
|
|
737
738
|
|
|
738
739
|
## `apify push [ACTORID]`
|
|
739
740
|
|
|
@@ -771,7 +772,7 @@ DESCRIPTION
|
|
|
771
772
|
overwritten with --force flag.
|
|
772
773
|
```
|
|
773
774
|
|
|
774
|
-
_See code: [src/commands/push.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
775
|
+
_See code: [src/commands/push.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.6/src/commands/push.ts)_
|
|
775
776
|
|
|
776
777
|
## `apify request-queues`
|
|
777
778
|
|
|
@@ -785,7 +786,7 @@ DESCRIPTION
|
|
|
785
786
|
Commands are designed to be used with Request Queues.
|
|
786
787
|
```
|
|
787
788
|
|
|
788
|
-
_See code: [src/commands/request-queues/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
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)_
|
|
789
790
|
|
|
790
791
|
## `apify run`
|
|
791
792
|
|
|
@@ -821,7 +822,7 @@ DESCRIPTION
|
|
|
821
822
|
package.json file. You can set up your own main file or environment variables by changing it.
|
|
822
823
|
```
|
|
823
824
|
|
|
824
|
-
_See code: [src/commands/run.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
825
|
+
_See code: [src/commands/run.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.6/src/commands/run.ts)_
|
|
825
826
|
|
|
826
827
|
## `apify runs`
|
|
827
828
|
|
|
@@ -835,7 +836,7 @@ DESCRIPTION
|
|
|
835
836
|
Commands are designed to be used with Actor Runs.
|
|
836
837
|
```
|
|
837
838
|
|
|
838
|
-
_See code: [src/commands/runs/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
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)_
|
|
839
840
|
|
|
840
841
|
## `apify runs abort RUNID`
|
|
841
842
|
|
|
@@ -858,7 +859,24 @@ DESCRIPTION
|
|
|
858
859
|
Aborts an Actor Run.
|
|
859
860
|
```
|
|
860
861
|
|
|
861
|
-
_See code: [src/commands/runs/abort.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
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)_
|
|
863
|
+
|
|
864
|
+
## `apify runs log RUNID`
|
|
865
|
+
|
|
866
|
+
Prints the log of a specific run.
|
|
867
|
+
|
|
868
|
+
```
|
|
869
|
+
USAGE
|
|
870
|
+
$ apify runs log RUNID
|
|
871
|
+
|
|
872
|
+
ARGUMENTS
|
|
873
|
+
RUNID The run ID to get the log from.
|
|
874
|
+
|
|
875
|
+
DESCRIPTION
|
|
876
|
+
Prints the log of a specific run.
|
|
877
|
+
```
|
|
878
|
+
|
|
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)_
|
|
862
880
|
|
|
863
881
|
## `apify runs ls`
|
|
864
882
|
|
|
@@ -883,7 +901,7 @@ DESCRIPTION
|
|
|
883
901
|
Lists all runs of the Actor.
|
|
884
902
|
```
|
|
885
903
|
|
|
886
|
-
_See code: [src/commands/runs/ls.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
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)_
|
|
887
905
|
|
|
888
906
|
## `apify runs resurrect RUNID`
|
|
889
907
|
|
|
@@ -903,7 +921,7 @@ DESCRIPTION
|
|
|
903
921
|
Resurrects an aborted or finished Actor Run.
|
|
904
922
|
```
|
|
905
923
|
|
|
906
|
-
_See code: [src/commands/runs/resurrect.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
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)_
|
|
907
925
|
|
|
908
926
|
## `apify secrets`
|
|
909
927
|
|
|
@@ -933,7 +951,7 @@ DESCRIPTION
|
|
|
933
951
|
of the Actor.
|
|
934
952
|
```
|
|
935
953
|
|
|
936
|
-
_See code: [src/commands/secrets/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
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)_
|
|
937
955
|
|
|
938
956
|
## `apify secrets add NAME VALUE`
|
|
939
957
|
|
|
@@ -952,7 +970,7 @@ DESCRIPTION
|
|
|
952
970
|
The secrets are stored to a file at ~/.apify
|
|
953
971
|
```
|
|
954
972
|
|
|
955
|
-
_See code: [src/commands/secrets/add.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
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)_
|
|
956
974
|
|
|
957
975
|
## `apify secrets rm NAME`
|
|
958
976
|
|
|
@@ -969,7 +987,7 @@ DESCRIPTION
|
|
|
969
987
|
Removes the secret.
|
|
970
988
|
```
|
|
971
989
|
|
|
972
|
-
_See code: [src/commands/secrets/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
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)_
|
|
973
991
|
|
|
974
992
|
## `apify task`
|
|
975
993
|
|
|
@@ -983,7 +1001,7 @@ DESCRIPTION
|
|
|
983
1001
|
Commands are designed to be used to interact with Tasks.
|
|
984
1002
|
```
|
|
985
1003
|
|
|
986
|
-
_See code: [src/commands/task/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
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)_
|
|
987
1005
|
|
|
988
1006
|
## `apify task run TASKID`
|
|
989
1007
|
|
|
@@ -1008,7 +1026,7 @@ DESCRIPTION
|
|
|
1008
1026
|
takes input for the Actor from the default local key-value store by default.
|
|
1009
1027
|
```
|
|
1010
1028
|
|
|
1011
|
-
_See code: [src/commands/task/run.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
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)_
|
|
1012
1030
|
|
|
1013
1031
|
## `apify validate-schema [PATH]`
|
|
1014
1032
|
|
|
@@ -1033,6 +1051,6 @@ DESCRIPTION
|
|
|
1033
1051
|
You can also pass any custom path to your input schema to have it validated instead.
|
|
1034
1052
|
```
|
|
1035
1053
|
|
|
1036
|
-
_See code: [src/commands/validate-schema.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
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)_
|
|
1037
1055
|
<!-- commandsstop -->
|
|
1038
1056
|
<!-- prettier-ignore-end -->
|