apify-cli 0.21.0-beta.3 → 0.21.0-beta.4
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 +53 -32
- package/dist/.tsbuildinfo +1 -1
- package/dist/commands/runs/resurrect.d.ts +10 -0
- package/dist/commands/runs/resurrect.d.ts.map +1 -0
- package/dist/commands/runs/resurrect.js +66 -0
- package/dist/commands/runs/resurrect.js.map +1 -0
- package/dist/typechecking.tsbuildinfo +1 -1
- package/oclif.manifest.json +36 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -309,6 +309,7 @@ This section contains printouts of `apify help` for all commands.
|
|
|
309
309
|
* [`apify runs`](#apify-runs)
|
|
310
310
|
* [`apify runs abort RUNID`](#apify-runs-abort-runid)
|
|
311
311
|
* [`apify runs ls`](#apify-runs-ls)
|
|
312
|
+
* [`apify runs resurrect RUNID`](#apify-runs-resurrect-runid)
|
|
312
313
|
* [`apify secrets`](#apify-secrets)
|
|
313
314
|
* [`apify secrets add NAME VALUE`](#apify-secrets-add-name-value)
|
|
314
315
|
* [`apify secrets rm NAME`](#apify-secrets-rm-name)
|
|
@@ -328,7 +329,7 @@ DESCRIPTION
|
|
|
328
329
|
Commands are designed to be used in Actor runs. All commands are in PoC state, do not use in production environments.
|
|
329
330
|
```
|
|
330
331
|
|
|
331
|
-
_See code: [src/commands/actor/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
332
|
+
_See code: [src/commands/actor/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.4/src/commands/actor/index.ts)_
|
|
332
333
|
|
|
333
334
|
## `apify actor get-input`
|
|
334
335
|
|
|
@@ -342,7 +343,7 @@ DESCRIPTION
|
|
|
342
343
|
Gets the Actor input value from the default key-value store associated with the Actor run.
|
|
343
344
|
```
|
|
344
345
|
|
|
345
|
-
_See code: [src/commands/actor/get-input.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
346
|
+
_See code: [src/commands/actor/get-input.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.4/src/commands/actor/get-input.ts)_
|
|
346
347
|
|
|
347
348
|
## `apify actor get-value KEY`
|
|
348
349
|
|
|
@@ -359,7 +360,7 @@ DESCRIPTION
|
|
|
359
360
|
Gets a value from the default key-value store associated with the Actor run.
|
|
360
361
|
```
|
|
361
362
|
|
|
362
|
-
_See code: [src/commands/actor/get-value.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
363
|
+
_See code: [src/commands/actor/get-value.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.4/src/commands/actor/get-value.ts)_
|
|
363
364
|
|
|
364
365
|
## `apify actor push-data [ITEM]`
|
|
365
366
|
|
|
@@ -381,7 +382,7 @@ DESCRIPTION
|
|
|
381
382
|
$ cat ./test.json | apify actor push-data
|
|
382
383
|
```
|
|
383
384
|
|
|
384
|
-
_See code: [src/commands/actor/push-data.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
385
|
+
_See code: [src/commands/actor/push-data.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.4/src/commands/actor/push-data.ts)_
|
|
385
386
|
|
|
386
387
|
## `apify actor set-value KEY [VALUE]`
|
|
387
388
|
|
|
@@ -410,7 +411,7 @@ DESCRIPTION
|
|
|
410
411
|
$ cat ./my-text-file.txt | apify actor set-value KEY --contentType text/plain
|
|
411
412
|
```
|
|
412
413
|
|
|
413
|
-
_See code: [src/commands/actor/set-value.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
414
|
+
_See code: [src/commands/actor/set-value.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.4/src/commands/actor/set-value.ts)_
|
|
414
415
|
|
|
415
416
|
## `apify actors`
|
|
416
417
|
|
|
@@ -424,7 +425,7 @@ DESCRIPTION
|
|
|
424
425
|
Commands are designed to be used with Actors.
|
|
425
426
|
```
|
|
426
427
|
|
|
427
|
-
_See code: [src/commands/actors/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
428
|
+
_See code: [src/commands/actors/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.4/src/commands/actors/index.ts)_
|
|
428
429
|
|
|
429
430
|
## `apify builds`
|
|
430
431
|
|
|
@@ -438,7 +439,7 @@ DESCRIPTION
|
|
|
438
439
|
Commands are designed to be used with Actor Builds.
|
|
439
440
|
```
|
|
440
441
|
|
|
441
|
-
_See code: [src/commands/builds/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
442
|
+
_See code: [src/commands/builds/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.4/src/commands/builds/index.ts)_
|
|
442
443
|
|
|
443
444
|
## `apify builds create`
|
|
444
445
|
|
|
@@ -463,7 +464,7 @@ DESCRIPTION
|
|
|
463
464
|
Creates a new build of the Actor.
|
|
464
465
|
```
|
|
465
466
|
|
|
466
|
-
_See code: [src/commands/builds/create.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
467
|
+
_See code: [src/commands/builds/create.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.4/src/commands/builds/create.ts)_
|
|
467
468
|
|
|
468
469
|
## `apify builds info BUILDID`
|
|
469
470
|
|
|
@@ -483,7 +484,7 @@ DESCRIPTION
|
|
|
483
484
|
Prints information about a specific build.
|
|
484
485
|
```
|
|
485
486
|
|
|
486
|
-
_See code: [src/commands/builds/info.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
487
|
+
_See code: [src/commands/builds/info.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.4/src/commands/builds/info.ts)_
|
|
487
488
|
|
|
488
489
|
## `apify builds log BUILDID`
|
|
489
490
|
|
|
@@ -500,7 +501,7 @@ DESCRIPTION
|
|
|
500
501
|
Prints the log of a specific build.
|
|
501
502
|
```
|
|
502
503
|
|
|
503
|
-
_See code: [src/commands/builds/log.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
504
|
+
_See code: [src/commands/builds/log.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.4/src/commands/builds/log.ts)_
|
|
504
505
|
|
|
505
506
|
## `apify builds ls`
|
|
506
507
|
|
|
@@ -525,7 +526,7 @@ DESCRIPTION
|
|
|
525
526
|
Lists all builds of the Actor.
|
|
526
527
|
```
|
|
527
528
|
|
|
528
|
-
_See code: [src/commands/builds/ls.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
529
|
+
_See code: [src/commands/builds/ls.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.4/src/commands/builds/ls.ts)_
|
|
529
530
|
|
|
530
531
|
## `apify call [ACTORID]`
|
|
531
532
|
|
|
@@ -557,7 +558,7 @@ DESCRIPTION
|
|
|
557
558
|
takes input for the Actor from the default local key-value store by default.
|
|
558
559
|
```
|
|
559
560
|
|
|
560
|
-
_See code: [src/commands/call.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
561
|
+
_See code: [src/commands/call.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.4/src/commands/call.ts)_
|
|
561
562
|
|
|
562
563
|
## `apify create [ACTORNAME]`
|
|
563
564
|
|
|
@@ -582,7 +583,7 @@ DESCRIPTION
|
|
|
582
583
|
Creates a new Actor project directory from a selected boilerplate template.
|
|
583
584
|
```
|
|
584
585
|
|
|
585
|
-
_See code: [src/commands/create.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
586
|
+
_See code: [src/commands/create.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.4/src/commands/create.ts)_
|
|
586
587
|
|
|
587
588
|
## `apify datasets`
|
|
588
589
|
|
|
@@ -596,7 +597,7 @@ DESCRIPTION
|
|
|
596
597
|
Commands are designed to be used with Datasets.
|
|
597
598
|
```
|
|
598
599
|
|
|
599
|
-
_See code: [src/commands/datasets/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
600
|
+
_See code: [src/commands/datasets/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.4/src/commands/datasets/index.ts)_
|
|
600
601
|
|
|
601
602
|
## `apify help [COMMAND]`
|
|
602
603
|
|
|
@@ -631,7 +632,7 @@ DESCRIPTION
|
|
|
631
632
|
The information is printed to the console.
|
|
632
633
|
```
|
|
633
634
|
|
|
634
|
-
_See code: [src/commands/info.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
635
|
+
_See code: [src/commands/info.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.4/src/commands/info.ts)_
|
|
635
636
|
|
|
636
637
|
## `apify init [ACTORNAME]`
|
|
637
638
|
|
|
@@ -659,7 +660,7 @@ DESCRIPTION
|
|
|
659
660
|
WARNING: The directory at "storage" will be overwritten if it already exists.
|
|
660
661
|
```
|
|
661
662
|
|
|
662
|
-
_See code: [src/commands/init.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
663
|
+
_See code: [src/commands/init.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.4/src/commands/init.ts)_
|
|
663
664
|
|
|
664
665
|
## `apify key-value-stores`
|
|
665
666
|
|
|
@@ -673,7 +674,7 @@ DESCRIPTION
|
|
|
673
674
|
Commands are designed to be used with Key Value Stores.
|
|
674
675
|
```
|
|
675
676
|
|
|
676
|
-
_See code: [src/commands/key-value-stores/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
677
|
+
_See code: [src/commands/key-value-stores/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.4/src/commands/key-value-stores/index.ts)_
|
|
677
678
|
|
|
678
679
|
## `apify login`
|
|
679
680
|
|
|
@@ -694,7 +695,7 @@ DESCRIPTION
|
|
|
694
695
|
"apify" commands. To log out, call "apify logout".
|
|
695
696
|
```
|
|
696
697
|
|
|
697
|
-
_See code: [src/commands/login.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
698
|
+
_See code: [src/commands/login.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.4/src/commands/login.ts)_
|
|
698
699
|
|
|
699
700
|
## `apify logout`
|
|
700
701
|
|
|
@@ -710,7 +711,7 @@ DESCRIPTION
|
|
|
710
711
|
call "apify login".
|
|
711
712
|
```
|
|
712
713
|
|
|
713
|
-
_See code: [src/commands/logout.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
714
|
+
_See code: [src/commands/logout.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.4/src/commands/logout.ts)_
|
|
714
715
|
|
|
715
716
|
## `apify pull [ACTORID]`
|
|
716
717
|
|
|
@@ -732,7 +733,7 @@ DESCRIPTION
|
|
|
732
733
|
cloned. If it is defined as Web IDE, it will fetch the files.
|
|
733
734
|
```
|
|
734
735
|
|
|
735
|
-
_See code: [src/commands/pull.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
736
|
+
_See code: [src/commands/pull.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.4/src/commands/pull.ts)_
|
|
736
737
|
|
|
737
738
|
## `apify push [ACTORID]`
|
|
738
739
|
|
|
@@ -770,7 +771,7 @@ DESCRIPTION
|
|
|
770
771
|
overwritten with --force flag.
|
|
771
772
|
```
|
|
772
773
|
|
|
773
|
-
_See code: [src/commands/push.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
774
|
+
_See code: [src/commands/push.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.4/src/commands/push.ts)_
|
|
774
775
|
|
|
775
776
|
## `apify request-queues`
|
|
776
777
|
|
|
@@ -784,7 +785,7 @@ DESCRIPTION
|
|
|
784
785
|
Commands are designed to be used with Request Queues.
|
|
785
786
|
```
|
|
786
787
|
|
|
787
|
-
_See code: [src/commands/request-queues/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
788
|
+
_See code: [src/commands/request-queues/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.4/src/commands/request-queues/index.ts)_
|
|
788
789
|
|
|
789
790
|
## `apify run`
|
|
790
791
|
|
|
@@ -820,7 +821,7 @@ DESCRIPTION
|
|
|
820
821
|
package.json file. You can set up your own main file or environment variables by changing it.
|
|
821
822
|
```
|
|
822
823
|
|
|
823
|
-
_See code: [src/commands/run.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
824
|
+
_See code: [src/commands/run.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.4/src/commands/run.ts)_
|
|
824
825
|
|
|
825
826
|
## `apify runs`
|
|
826
827
|
|
|
@@ -834,7 +835,7 @@ DESCRIPTION
|
|
|
834
835
|
Commands are designed to be used with Actor Runs.
|
|
835
836
|
```
|
|
836
837
|
|
|
837
|
-
_See code: [src/commands/runs/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
838
|
+
_See code: [src/commands/runs/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.4/src/commands/runs/index.ts)_
|
|
838
839
|
|
|
839
840
|
## `apify runs abort RUNID`
|
|
840
841
|
|
|
@@ -857,7 +858,7 @@ DESCRIPTION
|
|
|
857
858
|
Aborts an Actor Run.
|
|
858
859
|
```
|
|
859
860
|
|
|
860
|
-
_See code: [src/commands/runs/abort.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
861
|
+
_See code: [src/commands/runs/abort.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.4/src/commands/runs/abort.ts)_
|
|
861
862
|
|
|
862
863
|
## `apify runs ls`
|
|
863
864
|
|
|
@@ -882,7 +883,27 @@ DESCRIPTION
|
|
|
882
883
|
Lists all runs of the Actor.
|
|
883
884
|
```
|
|
884
885
|
|
|
885
|
-
_See code: [src/commands/runs/ls.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
886
|
+
_See code: [src/commands/runs/ls.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.4/src/commands/runs/ls.ts)_
|
|
887
|
+
|
|
888
|
+
## `apify runs resurrect RUNID`
|
|
889
|
+
|
|
890
|
+
Resurrects an aborted or finished Actor Run.
|
|
891
|
+
|
|
892
|
+
```
|
|
893
|
+
USAGE
|
|
894
|
+
$ apify runs resurrect RUNID [--json]
|
|
895
|
+
|
|
896
|
+
ARGUMENTS
|
|
897
|
+
RUNID The run ID to resurrect.
|
|
898
|
+
|
|
899
|
+
GLOBAL FLAGS
|
|
900
|
+
--json Format output as json.
|
|
901
|
+
|
|
902
|
+
DESCRIPTION
|
|
903
|
+
Resurrects an aborted or finished Actor Run.
|
|
904
|
+
```
|
|
905
|
+
|
|
906
|
+
_See code: [src/commands/runs/resurrect.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.4/src/commands/runs/resurrect.ts)_
|
|
886
907
|
|
|
887
908
|
## `apify secrets`
|
|
888
909
|
|
|
@@ -912,7 +933,7 @@ DESCRIPTION
|
|
|
912
933
|
of the Actor.
|
|
913
934
|
```
|
|
914
935
|
|
|
915
|
-
_See code: [src/commands/secrets/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
936
|
+
_See code: [src/commands/secrets/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.4/src/commands/secrets/index.ts)_
|
|
916
937
|
|
|
917
938
|
## `apify secrets add NAME VALUE`
|
|
918
939
|
|
|
@@ -931,7 +952,7 @@ DESCRIPTION
|
|
|
931
952
|
The secrets are stored to a file at ~/.apify
|
|
932
953
|
```
|
|
933
954
|
|
|
934
|
-
_See code: [src/commands/secrets/add.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
955
|
+
_See code: [src/commands/secrets/add.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.4/src/commands/secrets/add.ts)_
|
|
935
956
|
|
|
936
957
|
## `apify secrets rm NAME`
|
|
937
958
|
|
|
@@ -948,7 +969,7 @@ DESCRIPTION
|
|
|
948
969
|
Removes the secret.
|
|
949
970
|
```
|
|
950
971
|
|
|
951
|
-
_See code: [src/commands/secrets/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
972
|
+
_See code: [src/commands/secrets/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.4/src/commands/secrets/rm.ts)_
|
|
952
973
|
|
|
953
974
|
## `apify task`
|
|
954
975
|
|
|
@@ -962,7 +983,7 @@ DESCRIPTION
|
|
|
962
983
|
Commands are designed to be used to interact with Tasks.
|
|
963
984
|
```
|
|
964
985
|
|
|
965
|
-
_See code: [src/commands/task/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
986
|
+
_See code: [src/commands/task/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.4/src/commands/task/index.ts)_
|
|
966
987
|
|
|
967
988
|
## `apify task run TASKID`
|
|
968
989
|
|
|
@@ -987,7 +1008,7 @@ DESCRIPTION
|
|
|
987
1008
|
takes input for the Actor from the default local key-value store by default.
|
|
988
1009
|
```
|
|
989
1010
|
|
|
990
|
-
_See code: [src/commands/task/run.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1011
|
+
_See code: [src/commands/task/run.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.4/src/commands/task/run.ts)_
|
|
991
1012
|
|
|
992
1013
|
## `apify validate-schema [PATH]`
|
|
993
1014
|
|
|
@@ -1012,6 +1033,6 @@ DESCRIPTION
|
|
|
1012
1033
|
You can also pass any custom path to your input schema to have it validated instead.
|
|
1013
1034
|
```
|
|
1014
1035
|
|
|
1015
|
-
_See code: [src/commands/validate-schema.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1036
|
+
_See code: [src/commands/validate-schema.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.4/src/commands/validate-schema.ts)_
|
|
1016
1037
|
<!-- commandsstop -->
|
|
1017
1038
|
<!-- prettier-ignore-end -->
|