apify-cli 0.21.0-beta.90 → 0.21.0-beta.91
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 +1 -0
- package/README.md +61 -61
- package/oclif.manifest.json +226 -226
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -27,6 +27,7 @@ All notable changes to this project will be documented in this file.
|
|
|
27
27
|
- `datasets` / `key-value-stores` commands ([#685](https://github.com/apify/apify-cli/pull/685)) ([c7d77e1](https://github.com/apify/apify-cli/commit/c7d77e1cec711edd9996cbb1249e489fbf3db547)) by [@vladfrangu](https://github.com/vladfrangu)
|
|
28
28
|
- Key-value-store commands ([#700](https://github.com/apify/apify-cli/pull/700)) ([eb8ff3b](https://github.com/apify/apify-cli/commit/eb8ff3b9c7f1319d0937543f7b0b97cb25d6390a)) by [@vladfrangu](https://github.com/vladfrangu)
|
|
29
29
|
- `actors info` ([#701](https://github.com/apify/apify-cli/pull/701)) ([0f4b3f0](https://github.com/apify/apify-cli/commit/0f4b3f08dd5937ca6664342c2510a9f4f3fa52f6)) by [@vladfrangu](https://github.com/vladfrangu)
|
|
30
|
+
- `datasets info` / `key-value-stores info` ([#726](https://github.com/apify/apify-cli/pull/726)) ([56e8ffa](https://github.com/apify/apify-cli/commit/56e8ffaf7a7e03dcdd73e4e5472b106b31b0f543)) by [@vladfrangu](https://github.com/vladfrangu)
|
|
30
31
|
|
|
31
32
|
### 🐛 Bug Fixes
|
|
32
33
|
|
package/README.md
CHANGED
|
@@ -357,7 +357,7 @@ DESCRIPTION
|
|
|
357
357
|
Commands are designed to be used in Actor runs. All commands are in PoC state, do not use in production environments.
|
|
358
358
|
```
|
|
359
359
|
|
|
360
|
-
_See code: [src/commands/actor/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
360
|
+
_See code: [src/commands/actor/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.91/src/commands/actor/index.ts)_
|
|
361
361
|
|
|
362
362
|
## `apify actor get-input`
|
|
363
363
|
|
|
@@ -371,7 +371,7 @@ DESCRIPTION
|
|
|
371
371
|
Gets the Actor input value from the default key-value store associated with the Actor run.
|
|
372
372
|
```
|
|
373
373
|
|
|
374
|
-
_See code: [src/commands/actor/get-input.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
374
|
+
_See code: [src/commands/actor/get-input.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.91/src/commands/actor/get-input.ts)_
|
|
375
375
|
|
|
376
376
|
## `apify actor get-value KEY`
|
|
377
377
|
|
|
@@ -388,7 +388,7 @@ DESCRIPTION
|
|
|
388
388
|
Gets a value from the default key-value store associated with the Actor run.
|
|
389
389
|
```
|
|
390
390
|
|
|
391
|
-
_See code: [src/commands/actor/get-value.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
391
|
+
_See code: [src/commands/actor/get-value.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.91/src/commands/actor/get-value.ts)_
|
|
392
392
|
|
|
393
393
|
## `apify actor push-data [ITEM]`
|
|
394
394
|
|
|
@@ -410,7 +410,7 @@ DESCRIPTION
|
|
|
410
410
|
$ cat ./test.json | apify actor push-data
|
|
411
411
|
```
|
|
412
412
|
|
|
413
|
-
_See code: [src/commands/actor/push-data.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
413
|
+
_See code: [src/commands/actor/push-data.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.91/src/commands/actor/push-data.ts)_
|
|
414
414
|
|
|
415
415
|
## `apify actor set-value KEY [VALUE]`
|
|
416
416
|
|
|
@@ -439,7 +439,7 @@ DESCRIPTION
|
|
|
439
439
|
$ cat ./my-text-file.txt | apify actor set-value KEY --contentType text/plain
|
|
440
440
|
```
|
|
441
441
|
|
|
442
|
-
_See code: [src/commands/actor/set-value.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
442
|
+
_See code: [src/commands/actor/set-value.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.91/src/commands/actor/set-value.ts)_
|
|
443
443
|
|
|
444
444
|
## `apify actors`
|
|
445
445
|
|
|
@@ -453,7 +453,7 @@ DESCRIPTION
|
|
|
453
453
|
Commands are designed to be used with Actors.
|
|
454
454
|
```
|
|
455
455
|
|
|
456
|
-
_See code: [src/commands/actors/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
456
|
+
_See code: [src/commands/actors/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.91/src/commands/actors/index.ts)_
|
|
457
457
|
|
|
458
458
|
## `apify actors build [ACTORID]`
|
|
459
459
|
|
|
@@ -480,7 +480,7 @@ DESCRIPTION
|
|
|
480
480
|
Creates a new build of the Actor.
|
|
481
481
|
```
|
|
482
482
|
|
|
483
|
-
_See code: [src/commands/actors/build.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
483
|
+
_See code: [src/commands/actors/build.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.91/src/commands/actors/build.ts)_
|
|
484
484
|
|
|
485
485
|
## `apify actors call [ACTORID]`
|
|
486
486
|
|
|
@@ -514,7 +514,7 @@ DESCRIPTION
|
|
|
514
514
|
takes input for the Actor from the default local key-value store by default.
|
|
515
515
|
```
|
|
516
516
|
|
|
517
|
-
_See code: [src/commands/actors/call.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
517
|
+
_See code: [src/commands/actors/call.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.91/src/commands/actors/call.ts)_
|
|
518
518
|
|
|
519
519
|
## `apify actors info ACTORID`
|
|
520
520
|
|
|
@@ -538,7 +538,7 @@ DESCRIPTION
|
|
|
538
538
|
Get information about an Actor.
|
|
539
539
|
```
|
|
540
540
|
|
|
541
|
-
_See code: [src/commands/actors/info.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
541
|
+
_See code: [src/commands/actors/info.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.91/src/commands/actors/info.ts)_
|
|
542
542
|
|
|
543
543
|
## `apify actors ls`
|
|
544
544
|
|
|
@@ -561,7 +561,7 @@ DESCRIPTION
|
|
|
561
561
|
Lists all recently ran Actors or your own Actors.
|
|
562
562
|
```
|
|
563
563
|
|
|
564
|
-
_See code: [src/commands/actors/ls.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
564
|
+
_See code: [src/commands/actors/ls.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.91/src/commands/actors/ls.ts)_
|
|
565
565
|
|
|
566
566
|
## `apify actors pull [ACTORID]`
|
|
567
567
|
|
|
@@ -584,7 +584,7 @@ DESCRIPTION
|
|
|
584
584
|
cloned. If it is defined as Web IDE, it will fetch the files.
|
|
585
585
|
```
|
|
586
586
|
|
|
587
|
-
_See code: [src/commands/actors/pull.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
587
|
+
_See code: [src/commands/actors/pull.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.91/src/commands/actors/pull.ts)_
|
|
588
588
|
|
|
589
589
|
## `apify actors push [ACTORID]`
|
|
590
590
|
|
|
@@ -620,7 +620,7 @@ DESCRIPTION
|
|
|
620
620
|
overwritten with --force flag.
|
|
621
621
|
```
|
|
622
622
|
|
|
623
|
-
_See code: [src/commands/actors/push.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
623
|
+
_See code: [src/commands/actors/push.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.91/src/commands/actors/push.ts)_
|
|
624
624
|
|
|
625
625
|
## `apify actors rm ACTORID`
|
|
626
626
|
|
|
@@ -637,7 +637,7 @@ DESCRIPTION
|
|
|
637
637
|
Deletes an Actor.
|
|
638
638
|
```
|
|
639
639
|
|
|
640
|
-
_See code: [src/commands/actors/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
640
|
+
_See code: [src/commands/actors/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.91/src/commands/actors/rm.ts)_
|
|
641
641
|
|
|
642
642
|
## `apify actors start [ACTORID]`
|
|
643
643
|
|
|
@@ -669,7 +669,7 @@ DESCRIPTION
|
|
|
669
669
|
takes input for the Actor from the default local key-value store by default.
|
|
670
670
|
```
|
|
671
671
|
|
|
672
|
-
_See code: [src/commands/actors/start.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
672
|
+
_See code: [src/commands/actors/start.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.91/src/commands/actors/start.ts)_
|
|
673
673
|
|
|
674
674
|
## `apify builds`
|
|
675
675
|
|
|
@@ -683,7 +683,7 @@ DESCRIPTION
|
|
|
683
683
|
Commands are designed to be used with Actor Builds.
|
|
684
684
|
```
|
|
685
685
|
|
|
686
|
-
_See code: [src/commands/builds/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
686
|
+
_See code: [src/commands/builds/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.91/src/commands/builds/index.ts)_
|
|
687
687
|
|
|
688
688
|
## `apify builds create [ACTORID]`
|
|
689
689
|
|
|
@@ -710,7 +710,7 @@ DESCRIPTION
|
|
|
710
710
|
Creates a new build of the Actor.
|
|
711
711
|
```
|
|
712
712
|
|
|
713
|
-
_See code: [src/commands/builds/create.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
713
|
+
_See code: [src/commands/builds/create.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.91/src/commands/builds/create.ts)_
|
|
714
714
|
|
|
715
715
|
## `apify builds info BUILDID`
|
|
716
716
|
|
|
@@ -730,7 +730,7 @@ DESCRIPTION
|
|
|
730
730
|
Prints information about a specific build.
|
|
731
731
|
```
|
|
732
732
|
|
|
733
|
-
_See code: [src/commands/builds/info.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
733
|
+
_See code: [src/commands/builds/info.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.91/src/commands/builds/info.ts)_
|
|
734
734
|
|
|
735
735
|
## `apify builds log BUILDID`
|
|
736
736
|
|
|
@@ -747,7 +747,7 @@ DESCRIPTION
|
|
|
747
747
|
Prints the log of a specific build.
|
|
748
748
|
```
|
|
749
749
|
|
|
750
|
-
_See code: [src/commands/builds/log.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
750
|
+
_See code: [src/commands/builds/log.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.91/src/commands/builds/log.ts)_
|
|
751
751
|
|
|
752
752
|
## `apify builds ls [ACTORID]`
|
|
753
753
|
|
|
@@ -773,7 +773,7 @@ DESCRIPTION
|
|
|
773
773
|
Lists all builds of the Actor.
|
|
774
774
|
```
|
|
775
775
|
|
|
776
|
-
_See code: [src/commands/builds/ls.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
776
|
+
_See code: [src/commands/builds/ls.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.91/src/commands/builds/ls.ts)_
|
|
777
777
|
|
|
778
778
|
## `apify builds rm BUILDID`
|
|
779
779
|
|
|
@@ -790,7 +790,7 @@ DESCRIPTION
|
|
|
790
790
|
Deletes an Actor Build.
|
|
791
791
|
```
|
|
792
792
|
|
|
793
|
-
_See code: [src/commands/builds/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
793
|
+
_See code: [src/commands/builds/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.91/src/commands/builds/rm.ts)_
|
|
794
794
|
|
|
795
795
|
## `apify call [ACTORID]`
|
|
796
796
|
|
|
@@ -824,7 +824,7 @@ DESCRIPTION
|
|
|
824
824
|
takes input for the Actor from the default local key-value store by default.
|
|
825
825
|
```
|
|
826
826
|
|
|
827
|
-
_See code: [src/commands/call.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
827
|
+
_See code: [src/commands/call.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.91/src/commands/call.ts)_
|
|
828
828
|
|
|
829
829
|
## `apify create [ACTORNAME]`
|
|
830
830
|
|
|
@@ -849,7 +849,7 @@ DESCRIPTION
|
|
|
849
849
|
Creates a new Actor project directory from a selected boilerplate template.
|
|
850
850
|
```
|
|
851
851
|
|
|
852
|
-
_See code: [src/commands/create.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
852
|
+
_See code: [src/commands/create.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.91/src/commands/create.ts)_
|
|
853
853
|
|
|
854
854
|
## `apify datasets`
|
|
855
855
|
|
|
@@ -863,7 +863,7 @@ DESCRIPTION
|
|
|
863
863
|
Commands are designed to be used with Datasets.
|
|
864
864
|
```
|
|
865
865
|
|
|
866
|
-
_See code: [src/commands/datasets/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
866
|
+
_See code: [src/commands/datasets/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.91/src/commands/datasets/index.ts)_
|
|
867
867
|
|
|
868
868
|
## `apify datasets create [DATASETNAME]`
|
|
869
869
|
|
|
@@ -883,7 +883,7 @@ DESCRIPTION
|
|
|
883
883
|
Creates a new Dataset on your account
|
|
884
884
|
```
|
|
885
885
|
|
|
886
|
-
_See code: [src/commands/datasets/create.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
886
|
+
_See code: [src/commands/datasets/create.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.91/src/commands/datasets/create.ts)_
|
|
887
887
|
|
|
888
888
|
## `apify datasets get-items DATASETID`
|
|
889
889
|
|
|
@@ -906,7 +906,7 @@ DESCRIPTION
|
|
|
906
906
|
Exports the items present in a Dataset.
|
|
907
907
|
```
|
|
908
908
|
|
|
909
|
-
_See code: [src/commands/datasets/get-items.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
909
|
+
_See code: [src/commands/datasets/get-items.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.91/src/commands/datasets/get-items.ts)_
|
|
910
910
|
|
|
911
911
|
## `apify datasets info STOREID`
|
|
912
912
|
|
|
@@ -926,7 +926,7 @@ DESCRIPTION
|
|
|
926
926
|
Shows information about a dataset.
|
|
927
927
|
```
|
|
928
928
|
|
|
929
|
-
_See code: [src/commands/datasets/info.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
929
|
+
_See code: [src/commands/datasets/info.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.91/src/commands/datasets/info.ts)_
|
|
930
930
|
|
|
931
931
|
## `apify datasets ls`
|
|
932
932
|
|
|
@@ -949,7 +949,7 @@ DESCRIPTION
|
|
|
949
949
|
Lists all Datasets on your account.
|
|
950
950
|
```
|
|
951
951
|
|
|
952
|
-
_See code: [src/commands/datasets/ls.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
952
|
+
_See code: [src/commands/datasets/ls.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.91/src/commands/datasets/ls.ts)_
|
|
953
953
|
|
|
954
954
|
## `apify datasets push-items NAMEORID [ITEM]`
|
|
955
955
|
|
|
@@ -967,7 +967,7 @@ DESCRIPTION
|
|
|
967
967
|
Pushes an object or an array of objects to the provided Dataset.
|
|
968
968
|
```
|
|
969
969
|
|
|
970
|
-
_See code: [src/commands/datasets/push-items.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
970
|
+
_See code: [src/commands/datasets/push-items.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.91/src/commands/datasets/push-items.ts)_
|
|
971
971
|
|
|
972
972
|
## `apify datasets rename NAMEORID [NEWNAME]`
|
|
973
973
|
|
|
@@ -988,7 +988,7 @@ DESCRIPTION
|
|
|
988
988
|
Renames a Dataset, or removes its unique name
|
|
989
989
|
```
|
|
990
990
|
|
|
991
|
-
_See code: [src/commands/datasets/rename.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
991
|
+
_See code: [src/commands/datasets/rename.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.91/src/commands/datasets/rename.ts)_
|
|
992
992
|
|
|
993
993
|
## `apify datasets rm DATASETNAMEORID`
|
|
994
994
|
|
|
@@ -1005,7 +1005,7 @@ DESCRIPTION
|
|
|
1005
1005
|
Deletes a Dataset
|
|
1006
1006
|
```
|
|
1007
1007
|
|
|
1008
|
-
_See code: [src/commands/datasets/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1008
|
+
_See code: [src/commands/datasets/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.91/src/commands/datasets/rm.ts)_
|
|
1009
1009
|
|
|
1010
1010
|
## `apify help [COMMAND]`
|
|
1011
1011
|
|
|
@@ -1040,7 +1040,7 @@ DESCRIPTION
|
|
|
1040
1040
|
The information is printed to the console.
|
|
1041
1041
|
```
|
|
1042
1042
|
|
|
1043
|
-
_See code: [src/commands/info.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1043
|
+
_See code: [src/commands/info.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.91/src/commands/info.ts)_
|
|
1044
1044
|
|
|
1045
1045
|
## `apify init [ACTORNAME]`
|
|
1046
1046
|
|
|
@@ -1068,7 +1068,7 @@ DESCRIPTION
|
|
|
1068
1068
|
WARNING: The directory at "storage" will be overwritten if it already exists.
|
|
1069
1069
|
```
|
|
1070
1070
|
|
|
1071
|
-
_See code: [src/commands/init.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1071
|
+
_See code: [src/commands/init.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.91/src/commands/init.ts)_
|
|
1072
1072
|
|
|
1073
1073
|
## `apify key-value-stores`
|
|
1074
1074
|
|
|
@@ -1084,7 +1084,7 @@ DESCRIPTION
|
|
|
1084
1084
|
Aliases: kvs
|
|
1085
1085
|
```
|
|
1086
1086
|
|
|
1087
|
-
_See code: [src/commands/key-value-stores/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1087
|
+
_See code: [src/commands/key-value-stores/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.91/src/commands/key-value-stores/index.ts)_
|
|
1088
1088
|
|
|
1089
1089
|
## `apify key-value-stores create [KEYVALUESTORENAME]`
|
|
1090
1090
|
|
|
@@ -1104,7 +1104,7 @@ DESCRIPTION
|
|
|
1104
1104
|
Creates a new Key-value store on your account
|
|
1105
1105
|
```
|
|
1106
1106
|
|
|
1107
|
-
_See code: [src/commands/key-value-stores/create.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1107
|
+
_See code: [src/commands/key-value-stores/create.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.91/src/commands/key-value-stores/create.ts)_
|
|
1108
1108
|
|
|
1109
1109
|
## `apify key-value-stores delete-value STOREID ITEMKEY`
|
|
1110
1110
|
|
|
@@ -1122,7 +1122,7 @@ DESCRIPTION
|
|
|
1122
1122
|
Delete a value from a key-value store.
|
|
1123
1123
|
```
|
|
1124
1124
|
|
|
1125
|
-
_See code: [src/commands/key-value-stores/delete-value.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1125
|
+
_See code: [src/commands/key-value-stores/delete-value.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.91/src/commands/key-value-stores/delete-value.ts)_
|
|
1126
1126
|
|
|
1127
1127
|
## `apify key-value-stores get-value KEYVALUESTOREID ITEMKEY`
|
|
1128
1128
|
|
|
@@ -1143,7 +1143,7 @@ DESCRIPTION
|
|
|
1143
1143
|
Gets a value by key in the given key-value store.
|
|
1144
1144
|
```
|
|
1145
1145
|
|
|
1146
|
-
_See code: [src/commands/key-value-stores/get-value.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1146
|
+
_See code: [src/commands/key-value-stores/get-value.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.91/src/commands/key-value-stores/get-value.ts)_
|
|
1147
1147
|
|
|
1148
1148
|
## `apify key-value-stores info STOREID`
|
|
1149
1149
|
|
|
@@ -1163,7 +1163,7 @@ DESCRIPTION
|
|
|
1163
1163
|
Shows information about a key-value store.
|
|
1164
1164
|
```
|
|
1165
1165
|
|
|
1166
|
-
_See code: [src/commands/key-value-stores/info.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1166
|
+
_See code: [src/commands/key-value-stores/info.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.91/src/commands/key-value-stores/info.ts)_
|
|
1167
1167
|
|
|
1168
1168
|
## `apify key-value-stores keys STOREID`
|
|
1169
1169
|
|
|
@@ -1187,7 +1187,7 @@ DESCRIPTION
|
|
|
1187
1187
|
Lists all keys in a key-value store.
|
|
1188
1188
|
```
|
|
1189
1189
|
|
|
1190
|
-
_See code: [src/commands/key-value-stores/keys.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1190
|
+
_See code: [src/commands/key-value-stores/keys.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.91/src/commands/key-value-stores/keys.ts)_
|
|
1191
1191
|
|
|
1192
1192
|
## `apify key-value-stores ls`
|
|
1193
1193
|
|
|
@@ -1210,7 +1210,7 @@ DESCRIPTION
|
|
|
1210
1210
|
Lists all Key-value stores on your account.
|
|
1211
1211
|
```
|
|
1212
1212
|
|
|
1213
|
-
_See code: [src/commands/key-value-stores/ls.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1213
|
+
_See code: [src/commands/key-value-stores/ls.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.91/src/commands/key-value-stores/ls.ts)_
|
|
1214
1214
|
|
|
1215
1215
|
## `apify key-value-stores rename KEYVALUESTORENAMEORID [NEWNAME]`
|
|
1216
1216
|
|
|
@@ -1231,7 +1231,7 @@ DESCRIPTION
|
|
|
1231
1231
|
Renames a Key-value store, or removes its unique name
|
|
1232
1232
|
```
|
|
1233
1233
|
|
|
1234
|
-
_See code: [src/commands/key-value-stores/rename.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1234
|
+
_See code: [src/commands/key-value-stores/rename.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.91/src/commands/key-value-stores/rename.ts)_
|
|
1235
1235
|
|
|
1236
1236
|
## `apify key-value-stores rm KEYVALUESTORENAMEORID`
|
|
1237
1237
|
|
|
@@ -1248,7 +1248,7 @@ DESCRIPTION
|
|
|
1248
1248
|
Deletes a Key-value store
|
|
1249
1249
|
```
|
|
1250
1250
|
|
|
1251
|
-
_See code: [src/commands/key-value-stores/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1251
|
+
_See code: [src/commands/key-value-stores/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.91/src/commands/key-value-stores/rm.ts)_
|
|
1252
1252
|
|
|
1253
1253
|
## `apify key-value-stores set-value STOREID ITEMKEY [VALUE]`
|
|
1254
1254
|
|
|
@@ -1271,7 +1271,7 @@ DESCRIPTION
|
|
|
1271
1271
|
Sets a value in a key-value store.
|
|
1272
1272
|
```
|
|
1273
1273
|
|
|
1274
|
-
_See code: [src/commands/key-value-stores/set-value.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1274
|
+
_See code: [src/commands/key-value-stores/set-value.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.91/src/commands/key-value-stores/set-value.ts)_
|
|
1275
1275
|
|
|
1276
1276
|
## `apify login`
|
|
1277
1277
|
|
|
@@ -1292,7 +1292,7 @@ DESCRIPTION
|
|
|
1292
1292
|
"apify" commands. To log out, call "apify logout".
|
|
1293
1293
|
```
|
|
1294
1294
|
|
|
1295
|
-
_See code: [src/commands/login.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1295
|
+
_See code: [src/commands/login.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.91/src/commands/login.ts)_
|
|
1296
1296
|
|
|
1297
1297
|
## `apify logout`
|
|
1298
1298
|
|
|
@@ -1308,7 +1308,7 @@ DESCRIPTION
|
|
|
1308
1308
|
call "apify login".
|
|
1309
1309
|
```
|
|
1310
1310
|
|
|
1311
|
-
_See code: [src/commands/logout.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1311
|
+
_See code: [src/commands/logout.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.91/src/commands/logout.ts)_
|
|
1312
1312
|
|
|
1313
1313
|
## `apify pull [ACTORID]`
|
|
1314
1314
|
|
|
@@ -1331,7 +1331,7 @@ DESCRIPTION
|
|
|
1331
1331
|
cloned. If it is defined as Web IDE, it will fetch the files.
|
|
1332
1332
|
```
|
|
1333
1333
|
|
|
1334
|
-
_See code: [src/commands/pull.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1334
|
+
_See code: [src/commands/pull.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.91/src/commands/pull.ts)_
|
|
1335
1335
|
|
|
1336
1336
|
## `apify push [ACTORID]`
|
|
1337
1337
|
|
|
@@ -1367,7 +1367,7 @@ DESCRIPTION
|
|
|
1367
1367
|
overwritten with --force flag.
|
|
1368
1368
|
```
|
|
1369
1369
|
|
|
1370
|
-
_See code: [src/commands/push.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1370
|
+
_See code: [src/commands/push.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.91/src/commands/push.ts)_
|
|
1371
1371
|
|
|
1372
1372
|
## `apify request-queues`
|
|
1373
1373
|
|
|
@@ -1381,7 +1381,7 @@ DESCRIPTION
|
|
|
1381
1381
|
Commands are designed to be used with Request Queues.
|
|
1382
1382
|
```
|
|
1383
1383
|
|
|
1384
|
-
_See code: [src/commands/request-queues/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1384
|
+
_See code: [src/commands/request-queues/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.91/src/commands/request-queues/index.ts)_
|
|
1385
1385
|
|
|
1386
1386
|
## `apify run`
|
|
1387
1387
|
|
|
@@ -1417,7 +1417,7 @@ DESCRIPTION
|
|
|
1417
1417
|
package.json file. You can set up your own main file or environment variables by changing it.
|
|
1418
1418
|
```
|
|
1419
1419
|
|
|
1420
|
-
_See code: [src/commands/run.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1420
|
+
_See code: [src/commands/run.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.91/src/commands/run.ts)_
|
|
1421
1421
|
|
|
1422
1422
|
## `apify runs`
|
|
1423
1423
|
|
|
@@ -1431,7 +1431,7 @@ DESCRIPTION
|
|
|
1431
1431
|
Commands are designed to be used with Actor Runs.
|
|
1432
1432
|
```
|
|
1433
1433
|
|
|
1434
|
-
_See code: [src/commands/runs/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1434
|
+
_See code: [src/commands/runs/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.91/src/commands/runs/index.ts)_
|
|
1435
1435
|
|
|
1436
1436
|
## `apify runs abort RUNID`
|
|
1437
1437
|
|
|
@@ -1454,7 +1454,7 @@ DESCRIPTION
|
|
|
1454
1454
|
Aborts an Actor Run.
|
|
1455
1455
|
```
|
|
1456
1456
|
|
|
1457
|
-
_See code: [src/commands/runs/abort.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1457
|
+
_See code: [src/commands/runs/abort.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.91/src/commands/runs/abort.ts)_
|
|
1458
1458
|
|
|
1459
1459
|
## `apify runs info RUNID`
|
|
1460
1460
|
|
|
@@ -1477,7 +1477,7 @@ DESCRIPTION
|
|
|
1477
1477
|
Prints information about an Actor Run.
|
|
1478
1478
|
```
|
|
1479
1479
|
|
|
1480
|
-
_See code: [src/commands/runs/info.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1480
|
+
_See code: [src/commands/runs/info.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.91/src/commands/runs/info.ts)_
|
|
1481
1481
|
|
|
1482
1482
|
## `apify runs log RUNID`
|
|
1483
1483
|
|
|
@@ -1494,7 +1494,7 @@ DESCRIPTION
|
|
|
1494
1494
|
Prints the log of a specific run.
|
|
1495
1495
|
```
|
|
1496
1496
|
|
|
1497
|
-
_See code: [src/commands/runs/log.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1497
|
+
_See code: [src/commands/runs/log.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.91/src/commands/runs/log.ts)_
|
|
1498
1498
|
|
|
1499
1499
|
## `apify runs ls [ACTORID]`
|
|
1500
1500
|
|
|
@@ -1520,7 +1520,7 @@ DESCRIPTION
|
|
|
1520
1520
|
Lists all runs of the Actor.
|
|
1521
1521
|
```
|
|
1522
1522
|
|
|
1523
|
-
_See code: [src/commands/runs/ls.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1523
|
+
_See code: [src/commands/runs/ls.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.91/src/commands/runs/ls.ts)_
|
|
1524
1524
|
|
|
1525
1525
|
## `apify runs resurrect RUNID`
|
|
1526
1526
|
|
|
@@ -1540,7 +1540,7 @@ DESCRIPTION
|
|
|
1540
1540
|
Resurrects an aborted or finished Actor Run.
|
|
1541
1541
|
```
|
|
1542
1542
|
|
|
1543
|
-
_See code: [src/commands/runs/resurrect.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1543
|
+
_See code: [src/commands/runs/resurrect.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.91/src/commands/runs/resurrect.ts)_
|
|
1544
1544
|
|
|
1545
1545
|
## `apify runs rm RUNID`
|
|
1546
1546
|
|
|
@@ -1557,7 +1557,7 @@ DESCRIPTION
|
|
|
1557
1557
|
Deletes an Actor Run.
|
|
1558
1558
|
```
|
|
1559
1559
|
|
|
1560
|
-
_See code: [src/commands/runs/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1560
|
+
_See code: [src/commands/runs/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.91/src/commands/runs/rm.ts)_
|
|
1561
1561
|
|
|
1562
1562
|
## `apify secrets`
|
|
1563
1563
|
|
|
@@ -1587,7 +1587,7 @@ DESCRIPTION
|
|
|
1587
1587
|
of the Actor.
|
|
1588
1588
|
```
|
|
1589
1589
|
|
|
1590
|
-
_See code: [src/commands/secrets/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1590
|
+
_See code: [src/commands/secrets/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.91/src/commands/secrets/index.ts)_
|
|
1591
1591
|
|
|
1592
1592
|
## `apify secrets add NAME VALUE`
|
|
1593
1593
|
|
|
@@ -1606,7 +1606,7 @@ DESCRIPTION
|
|
|
1606
1606
|
The secrets are stored to a file at ~/.apify
|
|
1607
1607
|
```
|
|
1608
1608
|
|
|
1609
|
-
_See code: [src/commands/secrets/add.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1609
|
+
_See code: [src/commands/secrets/add.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.91/src/commands/secrets/add.ts)_
|
|
1610
1610
|
|
|
1611
1611
|
## `apify secrets rm NAME`
|
|
1612
1612
|
|
|
@@ -1623,7 +1623,7 @@ DESCRIPTION
|
|
|
1623
1623
|
Removes the secret.
|
|
1624
1624
|
```
|
|
1625
1625
|
|
|
1626
|
-
_See code: [src/commands/secrets/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1626
|
+
_See code: [src/commands/secrets/rm.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.91/src/commands/secrets/rm.ts)_
|
|
1627
1627
|
|
|
1628
1628
|
## `apify task`
|
|
1629
1629
|
|
|
@@ -1637,7 +1637,7 @@ DESCRIPTION
|
|
|
1637
1637
|
Commands are designed to be used to interact with Tasks.
|
|
1638
1638
|
```
|
|
1639
1639
|
|
|
1640
|
-
_See code: [src/commands/task/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1640
|
+
_See code: [src/commands/task/index.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.91/src/commands/task/index.ts)_
|
|
1641
1641
|
|
|
1642
1642
|
## `apify task run TASKID`
|
|
1643
1643
|
|
|
@@ -1661,7 +1661,7 @@ DESCRIPTION
|
|
|
1661
1661
|
takes input for the Actor from the default local key-value store by default.
|
|
1662
1662
|
```
|
|
1663
1663
|
|
|
1664
|
-
_See code: [src/commands/task/run.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1664
|
+
_See code: [src/commands/task/run.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.91/src/commands/task/run.ts)_
|
|
1665
1665
|
|
|
1666
1666
|
## `apify validate-schema [PATH]`
|
|
1667
1667
|
|
|
@@ -1686,6 +1686,6 @@ DESCRIPTION
|
|
|
1686
1686
|
You can also pass any custom path to your input schema to have it validated instead.
|
|
1687
1687
|
```
|
|
1688
1688
|
|
|
1689
|
-
_See code: [src/commands/validate-schema.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.
|
|
1689
|
+
_See code: [src/commands/validate-schema.ts](https://github.com/apify/apify-cli/blob/v0.21.0-beta.91/src/commands/validate-schema.ts)_
|
|
1690
1690
|
<!-- commandsstop -->
|
|
1691
1691
|
<!-- prettier-ignore-end -->
|
package/oclif.manifest.json
CHANGED
|
@@ -718,231 +718,6 @@
|
|
|
718
718
|
"set-value.js"
|
|
719
719
|
]
|
|
720
720
|
},
|
|
721
|
-
"builds:create": {
|
|
722
|
-
"aliases": [],
|
|
723
|
-
"args": {
|
|
724
|
-
"actorId": {
|
|
725
|
-
"description": "Optional Actor ID or Name to trigger a build for. By default, it will use the Actor from the current directory.",
|
|
726
|
-
"name": "actorId"
|
|
727
|
-
}
|
|
728
|
-
},
|
|
729
|
-
"description": "Creates a new build of the Actor.",
|
|
730
|
-
"flags": {
|
|
731
|
-
"json": {
|
|
732
|
-
"description": "Format output as json.",
|
|
733
|
-
"helpGroup": "GLOBAL",
|
|
734
|
-
"name": "json",
|
|
735
|
-
"allowNo": false,
|
|
736
|
-
"type": "boolean"
|
|
737
|
-
},
|
|
738
|
-
"tag": {
|
|
739
|
-
"description": "Build tag to be applied to the successful Actor build. By default, this is \"latest\".",
|
|
740
|
-
"name": "tag",
|
|
741
|
-
"hasDynamicHelp": false,
|
|
742
|
-
"multiple": false,
|
|
743
|
-
"type": "option"
|
|
744
|
-
},
|
|
745
|
-
"version": {
|
|
746
|
-
"description": "Optional Actor Version to build. By default, this will be inferred from the tag, but this flag is required when multiple versions have the same tag.",
|
|
747
|
-
"name": "version",
|
|
748
|
-
"required": false,
|
|
749
|
-
"hasDynamicHelp": false,
|
|
750
|
-
"multiple": false,
|
|
751
|
-
"type": "option"
|
|
752
|
-
},
|
|
753
|
-
"log": {
|
|
754
|
-
"description": "Whether to print out the build log after the build is triggered.",
|
|
755
|
-
"name": "log",
|
|
756
|
-
"allowNo": false,
|
|
757
|
-
"type": "boolean"
|
|
758
|
-
}
|
|
759
|
-
},
|
|
760
|
-
"hasDynamicHelp": false,
|
|
761
|
-
"hiddenAliases": [],
|
|
762
|
-
"id": "builds:create",
|
|
763
|
-
"pluginAlias": "apify-cli",
|
|
764
|
-
"pluginName": "apify-cli",
|
|
765
|
-
"pluginType": "core",
|
|
766
|
-
"strict": true,
|
|
767
|
-
"enableJsonFlag": true,
|
|
768
|
-
"isESM": true,
|
|
769
|
-
"relativePath": [
|
|
770
|
-
"dist",
|
|
771
|
-
"commands",
|
|
772
|
-
"builds",
|
|
773
|
-
"create.js"
|
|
774
|
-
]
|
|
775
|
-
},
|
|
776
|
-
"builds": {
|
|
777
|
-
"aliases": [],
|
|
778
|
-
"args": {},
|
|
779
|
-
"description": "Commands are designed to be used with Actor Builds.",
|
|
780
|
-
"flags": {},
|
|
781
|
-
"hasDynamicHelp": false,
|
|
782
|
-
"hiddenAliases": [],
|
|
783
|
-
"id": "builds",
|
|
784
|
-
"pluginAlias": "apify-cli",
|
|
785
|
-
"pluginName": "apify-cli",
|
|
786
|
-
"pluginType": "core",
|
|
787
|
-
"strict": true,
|
|
788
|
-
"isESM": true,
|
|
789
|
-
"relativePath": [
|
|
790
|
-
"dist",
|
|
791
|
-
"commands",
|
|
792
|
-
"builds",
|
|
793
|
-
"index.js"
|
|
794
|
-
]
|
|
795
|
-
},
|
|
796
|
-
"builds:info": {
|
|
797
|
-
"aliases": [],
|
|
798
|
-
"args": {
|
|
799
|
-
"buildId": {
|
|
800
|
-
"description": "The build ID to get information about.",
|
|
801
|
-
"name": "buildId",
|
|
802
|
-
"required": true
|
|
803
|
-
}
|
|
804
|
-
},
|
|
805
|
-
"description": "Prints information about a specific build.",
|
|
806
|
-
"flags": {
|
|
807
|
-
"json": {
|
|
808
|
-
"description": "Format output as json.",
|
|
809
|
-
"helpGroup": "GLOBAL",
|
|
810
|
-
"name": "json",
|
|
811
|
-
"allowNo": false,
|
|
812
|
-
"type": "boolean"
|
|
813
|
-
}
|
|
814
|
-
},
|
|
815
|
-
"hasDynamicHelp": false,
|
|
816
|
-
"hiddenAliases": [],
|
|
817
|
-
"id": "builds:info",
|
|
818
|
-
"pluginAlias": "apify-cli",
|
|
819
|
-
"pluginName": "apify-cli",
|
|
820
|
-
"pluginType": "core",
|
|
821
|
-
"strict": true,
|
|
822
|
-
"enableJsonFlag": true,
|
|
823
|
-
"isESM": true,
|
|
824
|
-
"relativePath": [
|
|
825
|
-
"dist",
|
|
826
|
-
"commands",
|
|
827
|
-
"builds",
|
|
828
|
-
"info.js"
|
|
829
|
-
]
|
|
830
|
-
},
|
|
831
|
-
"builds:log": {
|
|
832
|
-
"aliases": [],
|
|
833
|
-
"args": {
|
|
834
|
-
"buildId": {
|
|
835
|
-
"description": "The build ID to get the log from.",
|
|
836
|
-
"name": "buildId",
|
|
837
|
-
"required": true
|
|
838
|
-
}
|
|
839
|
-
},
|
|
840
|
-
"description": "Prints the log of a specific build.",
|
|
841
|
-
"flags": {},
|
|
842
|
-
"hasDynamicHelp": false,
|
|
843
|
-
"hiddenAliases": [],
|
|
844
|
-
"id": "builds:log",
|
|
845
|
-
"pluginAlias": "apify-cli",
|
|
846
|
-
"pluginName": "apify-cli",
|
|
847
|
-
"pluginType": "core",
|
|
848
|
-
"strict": true,
|
|
849
|
-
"isESM": true,
|
|
850
|
-
"relativePath": [
|
|
851
|
-
"dist",
|
|
852
|
-
"commands",
|
|
853
|
-
"builds",
|
|
854
|
-
"log.js"
|
|
855
|
-
]
|
|
856
|
-
},
|
|
857
|
-
"builds:ls": {
|
|
858
|
-
"aliases": [],
|
|
859
|
-
"args": {
|
|
860
|
-
"actorId": {
|
|
861
|
-
"description": "Optional Actor ID or Name to list runs for. By default, it will use the Actor from the current directory.",
|
|
862
|
-
"name": "actorId"
|
|
863
|
-
}
|
|
864
|
-
},
|
|
865
|
-
"description": "Lists all builds of the Actor.",
|
|
866
|
-
"flags": {
|
|
867
|
-
"json": {
|
|
868
|
-
"description": "Format output as json.",
|
|
869
|
-
"helpGroup": "GLOBAL",
|
|
870
|
-
"name": "json",
|
|
871
|
-
"allowNo": false,
|
|
872
|
-
"type": "boolean"
|
|
873
|
-
},
|
|
874
|
-
"offset": {
|
|
875
|
-
"description": "Number of builds that will be skipped.",
|
|
876
|
-
"name": "offset",
|
|
877
|
-
"default": 0,
|
|
878
|
-
"hasDynamicHelp": false,
|
|
879
|
-
"multiple": false,
|
|
880
|
-
"type": "option"
|
|
881
|
-
},
|
|
882
|
-
"limit": {
|
|
883
|
-
"description": "Number of builds that will be listed.",
|
|
884
|
-
"name": "limit",
|
|
885
|
-
"default": 10,
|
|
886
|
-
"hasDynamicHelp": false,
|
|
887
|
-
"multiple": false,
|
|
888
|
-
"type": "option"
|
|
889
|
-
},
|
|
890
|
-
"desc": {
|
|
891
|
-
"description": "Sort builds in descending order.",
|
|
892
|
-
"name": "desc",
|
|
893
|
-
"allowNo": false,
|
|
894
|
-
"type": "boolean"
|
|
895
|
-
},
|
|
896
|
-
"compact": {
|
|
897
|
-
"char": "c",
|
|
898
|
-
"description": "Display a compact table.",
|
|
899
|
-
"name": "compact",
|
|
900
|
-
"allowNo": false,
|
|
901
|
-
"type": "boolean"
|
|
902
|
-
}
|
|
903
|
-
},
|
|
904
|
-
"hasDynamicHelp": false,
|
|
905
|
-
"hiddenAliases": [],
|
|
906
|
-
"id": "builds:ls",
|
|
907
|
-
"pluginAlias": "apify-cli",
|
|
908
|
-
"pluginName": "apify-cli",
|
|
909
|
-
"pluginType": "core",
|
|
910
|
-
"strict": true,
|
|
911
|
-
"enableJsonFlag": true,
|
|
912
|
-
"isESM": true,
|
|
913
|
-
"relativePath": [
|
|
914
|
-
"dist",
|
|
915
|
-
"commands",
|
|
916
|
-
"builds",
|
|
917
|
-
"ls.js"
|
|
918
|
-
]
|
|
919
|
-
},
|
|
920
|
-
"builds:rm": {
|
|
921
|
-
"aliases": [],
|
|
922
|
-
"args": {
|
|
923
|
-
"buildId": {
|
|
924
|
-
"description": "The build ID to delete.",
|
|
925
|
-
"name": "buildId",
|
|
926
|
-
"required": true
|
|
927
|
-
}
|
|
928
|
-
},
|
|
929
|
-
"description": "Deletes an Actor Build.",
|
|
930
|
-
"flags": {},
|
|
931
|
-
"hasDynamicHelp": false,
|
|
932
|
-
"hiddenAliases": [],
|
|
933
|
-
"id": "builds:rm",
|
|
934
|
-
"pluginAlias": "apify-cli",
|
|
935
|
-
"pluginName": "apify-cli",
|
|
936
|
-
"pluginType": "core",
|
|
937
|
-
"strict": true,
|
|
938
|
-
"isESM": true,
|
|
939
|
-
"relativePath": [
|
|
940
|
-
"dist",
|
|
941
|
-
"commands",
|
|
942
|
-
"builds",
|
|
943
|
-
"rm.js"
|
|
944
|
-
]
|
|
945
|
-
},
|
|
946
721
|
"actors:build": {
|
|
947
722
|
"aliases": [],
|
|
948
723
|
"args": {
|
|
@@ -1463,6 +1238,231 @@
|
|
|
1463
1238
|
"start.js"
|
|
1464
1239
|
]
|
|
1465
1240
|
},
|
|
1241
|
+
"builds:create": {
|
|
1242
|
+
"aliases": [],
|
|
1243
|
+
"args": {
|
|
1244
|
+
"actorId": {
|
|
1245
|
+
"description": "Optional Actor ID or Name to trigger a build for. By default, it will use the Actor from the current directory.",
|
|
1246
|
+
"name": "actorId"
|
|
1247
|
+
}
|
|
1248
|
+
},
|
|
1249
|
+
"description": "Creates a new build of the Actor.",
|
|
1250
|
+
"flags": {
|
|
1251
|
+
"json": {
|
|
1252
|
+
"description": "Format output as json.",
|
|
1253
|
+
"helpGroup": "GLOBAL",
|
|
1254
|
+
"name": "json",
|
|
1255
|
+
"allowNo": false,
|
|
1256
|
+
"type": "boolean"
|
|
1257
|
+
},
|
|
1258
|
+
"tag": {
|
|
1259
|
+
"description": "Build tag to be applied to the successful Actor build. By default, this is \"latest\".",
|
|
1260
|
+
"name": "tag",
|
|
1261
|
+
"hasDynamicHelp": false,
|
|
1262
|
+
"multiple": false,
|
|
1263
|
+
"type": "option"
|
|
1264
|
+
},
|
|
1265
|
+
"version": {
|
|
1266
|
+
"description": "Optional Actor Version to build. By default, this will be inferred from the tag, but this flag is required when multiple versions have the same tag.",
|
|
1267
|
+
"name": "version",
|
|
1268
|
+
"required": false,
|
|
1269
|
+
"hasDynamicHelp": false,
|
|
1270
|
+
"multiple": false,
|
|
1271
|
+
"type": "option"
|
|
1272
|
+
},
|
|
1273
|
+
"log": {
|
|
1274
|
+
"description": "Whether to print out the build log after the build is triggered.",
|
|
1275
|
+
"name": "log",
|
|
1276
|
+
"allowNo": false,
|
|
1277
|
+
"type": "boolean"
|
|
1278
|
+
}
|
|
1279
|
+
},
|
|
1280
|
+
"hasDynamicHelp": false,
|
|
1281
|
+
"hiddenAliases": [],
|
|
1282
|
+
"id": "builds:create",
|
|
1283
|
+
"pluginAlias": "apify-cli",
|
|
1284
|
+
"pluginName": "apify-cli",
|
|
1285
|
+
"pluginType": "core",
|
|
1286
|
+
"strict": true,
|
|
1287
|
+
"enableJsonFlag": true,
|
|
1288
|
+
"isESM": true,
|
|
1289
|
+
"relativePath": [
|
|
1290
|
+
"dist",
|
|
1291
|
+
"commands",
|
|
1292
|
+
"builds",
|
|
1293
|
+
"create.js"
|
|
1294
|
+
]
|
|
1295
|
+
},
|
|
1296
|
+
"builds": {
|
|
1297
|
+
"aliases": [],
|
|
1298
|
+
"args": {},
|
|
1299
|
+
"description": "Commands are designed to be used with Actor Builds.",
|
|
1300
|
+
"flags": {},
|
|
1301
|
+
"hasDynamicHelp": false,
|
|
1302
|
+
"hiddenAliases": [],
|
|
1303
|
+
"id": "builds",
|
|
1304
|
+
"pluginAlias": "apify-cli",
|
|
1305
|
+
"pluginName": "apify-cli",
|
|
1306
|
+
"pluginType": "core",
|
|
1307
|
+
"strict": true,
|
|
1308
|
+
"isESM": true,
|
|
1309
|
+
"relativePath": [
|
|
1310
|
+
"dist",
|
|
1311
|
+
"commands",
|
|
1312
|
+
"builds",
|
|
1313
|
+
"index.js"
|
|
1314
|
+
]
|
|
1315
|
+
},
|
|
1316
|
+
"builds:info": {
|
|
1317
|
+
"aliases": [],
|
|
1318
|
+
"args": {
|
|
1319
|
+
"buildId": {
|
|
1320
|
+
"description": "The build ID to get information about.",
|
|
1321
|
+
"name": "buildId",
|
|
1322
|
+
"required": true
|
|
1323
|
+
}
|
|
1324
|
+
},
|
|
1325
|
+
"description": "Prints information about a specific build.",
|
|
1326
|
+
"flags": {
|
|
1327
|
+
"json": {
|
|
1328
|
+
"description": "Format output as json.",
|
|
1329
|
+
"helpGroup": "GLOBAL",
|
|
1330
|
+
"name": "json",
|
|
1331
|
+
"allowNo": false,
|
|
1332
|
+
"type": "boolean"
|
|
1333
|
+
}
|
|
1334
|
+
},
|
|
1335
|
+
"hasDynamicHelp": false,
|
|
1336
|
+
"hiddenAliases": [],
|
|
1337
|
+
"id": "builds:info",
|
|
1338
|
+
"pluginAlias": "apify-cli",
|
|
1339
|
+
"pluginName": "apify-cli",
|
|
1340
|
+
"pluginType": "core",
|
|
1341
|
+
"strict": true,
|
|
1342
|
+
"enableJsonFlag": true,
|
|
1343
|
+
"isESM": true,
|
|
1344
|
+
"relativePath": [
|
|
1345
|
+
"dist",
|
|
1346
|
+
"commands",
|
|
1347
|
+
"builds",
|
|
1348
|
+
"info.js"
|
|
1349
|
+
]
|
|
1350
|
+
},
|
|
1351
|
+
"builds:log": {
|
|
1352
|
+
"aliases": [],
|
|
1353
|
+
"args": {
|
|
1354
|
+
"buildId": {
|
|
1355
|
+
"description": "The build ID to get the log from.",
|
|
1356
|
+
"name": "buildId",
|
|
1357
|
+
"required": true
|
|
1358
|
+
}
|
|
1359
|
+
},
|
|
1360
|
+
"description": "Prints the log of a specific build.",
|
|
1361
|
+
"flags": {},
|
|
1362
|
+
"hasDynamicHelp": false,
|
|
1363
|
+
"hiddenAliases": [],
|
|
1364
|
+
"id": "builds:log",
|
|
1365
|
+
"pluginAlias": "apify-cli",
|
|
1366
|
+
"pluginName": "apify-cli",
|
|
1367
|
+
"pluginType": "core",
|
|
1368
|
+
"strict": true,
|
|
1369
|
+
"isESM": true,
|
|
1370
|
+
"relativePath": [
|
|
1371
|
+
"dist",
|
|
1372
|
+
"commands",
|
|
1373
|
+
"builds",
|
|
1374
|
+
"log.js"
|
|
1375
|
+
]
|
|
1376
|
+
},
|
|
1377
|
+
"builds:ls": {
|
|
1378
|
+
"aliases": [],
|
|
1379
|
+
"args": {
|
|
1380
|
+
"actorId": {
|
|
1381
|
+
"description": "Optional Actor ID or Name to list runs for. By default, it will use the Actor from the current directory.",
|
|
1382
|
+
"name": "actorId"
|
|
1383
|
+
}
|
|
1384
|
+
},
|
|
1385
|
+
"description": "Lists all builds of the Actor.",
|
|
1386
|
+
"flags": {
|
|
1387
|
+
"json": {
|
|
1388
|
+
"description": "Format output as json.",
|
|
1389
|
+
"helpGroup": "GLOBAL",
|
|
1390
|
+
"name": "json",
|
|
1391
|
+
"allowNo": false,
|
|
1392
|
+
"type": "boolean"
|
|
1393
|
+
},
|
|
1394
|
+
"offset": {
|
|
1395
|
+
"description": "Number of builds that will be skipped.",
|
|
1396
|
+
"name": "offset",
|
|
1397
|
+
"default": 0,
|
|
1398
|
+
"hasDynamicHelp": false,
|
|
1399
|
+
"multiple": false,
|
|
1400
|
+
"type": "option"
|
|
1401
|
+
},
|
|
1402
|
+
"limit": {
|
|
1403
|
+
"description": "Number of builds that will be listed.",
|
|
1404
|
+
"name": "limit",
|
|
1405
|
+
"default": 10,
|
|
1406
|
+
"hasDynamicHelp": false,
|
|
1407
|
+
"multiple": false,
|
|
1408
|
+
"type": "option"
|
|
1409
|
+
},
|
|
1410
|
+
"desc": {
|
|
1411
|
+
"description": "Sort builds in descending order.",
|
|
1412
|
+
"name": "desc",
|
|
1413
|
+
"allowNo": false,
|
|
1414
|
+
"type": "boolean"
|
|
1415
|
+
},
|
|
1416
|
+
"compact": {
|
|
1417
|
+
"char": "c",
|
|
1418
|
+
"description": "Display a compact table.",
|
|
1419
|
+
"name": "compact",
|
|
1420
|
+
"allowNo": false,
|
|
1421
|
+
"type": "boolean"
|
|
1422
|
+
}
|
|
1423
|
+
},
|
|
1424
|
+
"hasDynamicHelp": false,
|
|
1425
|
+
"hiddenAliases": [],
|
|
1426
|
+
"id": "builds:ls",
|
|
1427
|
+
"pluginAlias": "apify-cli",
|
|
1428
|
+
"pluginName": "apify-cli",
|
|
1429
|
+
"pluginType": "core",
|
|
1430
|
+
"strict": true,
|
|
1431
|
+
"enableJsonFlag": true,
|
|
1432
|
+
"isESM": true,
|
|
1433
|
+
"relativePath": [
|
|
1434
|
+
"dist",
|
|
1435
|
+
"commands",
|
|
1436
|
+
"builds",
|
|
1437
|
+
"ls.js"
|
|
1438
|
+
]
|
|
1439
|
+
},
|
|
1440
|
+
"builds:rm": {
|
|
1441
|
+
"aliases": [],
|
|
1442
|
+
"args": {
|
|
1443
|
+
"buildId": {
|
|
1444
|
+
"description": "The build ID to delete.",
|
|
1445
|
+
"name": "buildId",
|
|
1446
|
+
"required": true
|
|
1447
|
+
}
|
|
1448
|
+
},
|
|
1449
|
+
"description": "Deletes an Actor Build.",
|
|
1450
|
+
"flags": {},
|
|
1451
|
+
"hasDynamicHelp": false,
|
|
1452
|
+
"hiddenAliases": [],
|
|
1453
|
+
"id": "builds:rm",
|
|
1454
|
+
"pluginAlias": "apify-cli",
|
|
1455
|
+
"pluginName": "apify-cli",
|
|
1456
|
+
"pluginType": "core",
|
|
1457
|
+
"strict": true,
|
|
1458
|
+
"isESM": true,
|
|
1459
|
+
"relativePath": [
|
|
1460
|
+
"dist",
|
|
1461
|
+
"commands",
|
|
1462
|
+
"builds",
|
|
1463
|
+
"rm.js"
|
|
1464
|
+
]
|
|
1465
|
+
},
|
|
1466
1466
|
"datasets:create": {
|
|
1467
1467
|
"aliases": [],
|
|
1468
1468
|
"args": {
|
|
@@ -2580,5 +2580,5 @@
|
|
|
2580
2580
|
]
|
|
2581
2581
|
}
|
|
2582
2582
|
},
|
|
2583
|
-
"version": "0.21.0-beta.
|
|
2583
|
+
"version": "0.21.0-beta.91"
|
|
2584
2584
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "apify-cli",
|
|
3
|
-
"version": "0.21.0-beta.
|
|
3
|
+
"version": "0.21.0-beta.91",
|
|
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",
|