apify-cli 0.20.0-beta.0 → 0.20.0
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 +20 -20
- package/oclif.manifest.json +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -309,7 +309,7 @@ DESCRIPTION
|
|
|
309
309
|
Commands are designed to be used in Actor runs. All commands are in PoC state, do not use in production environments.
|
|
310
310
|
```
|
|
311
311
|
|
|
312
|
-
_See code: [src/commands/actor/index.ts](https://github.com/apify/apify-cli/blob/v0.20.0
|
|
312
|
+
_See code: [src/commands/actor/index.ts](https://github.com/apify/apify-cli/blob/v0.20.0/src/commands/actor/index.ts)_
|
|
313
313
|
|
|
314
314
|
## `apify actor get-input`
|
|
315
315
|
|
|
@@ -323,7 +323,7 @@ DESCRIPTION
|
|
|
323
323
|
Gets the Actor input value from the default key-value store associated with the Actor run.
|
|
324
324
|
```
|
|
325
325
|
|
|
326
|
-
_See code: [src/commands/actor/get-input.ts](https://github.com/apify/apify-cli/blob/v0.20.0
|
|
326
|
+
_See code: [src/commands/actor/get-input.ts](https://github.com/apify/apify-cli/blob/v0.20.0/src/commands/actor/get-input.ts)_
|
|
327
327
|
|
|
328
328
|
## `apify actor get-value KEY`
|
|
329
329
|
|
|
@@ -340,7 +340,7 @@ DESCRIPTION
|
|
|
340
340
|
Gets a value from the default key-value store associated with the Actor run.
|
|
341
341
|
```
|
|
342
342
|
|
|
343
|
-
_See code: [src/commands/actor/get-value.ts](https://github.com/apify/apify-cli/blob/v0.20.0
|
|
343
|
+
_See code: [src/commands/actor/get-value.ts](https://github.com/apify/apify-cli/blob/v0.20.0/src/commands/actor/get-value.ts)_
|
|
344
344
|
|
|
345
345
|
## `apify actor push-data [ITEM]`
|
|
346
346
|
|
|
@@ -362,7 +362,7 @@ DESCRIPTION
|
|
|
362
362
|
$ cat ./test.json | apify actor push-data
|
|
363
363
|
```
|
|
364
364
|
|
|
365
|
-
_See code: [src/commands/actor/push-data.ts](https://github.com/apify/apify-cli/blob/v0.20.0
|
|
365
|
+
_See code: [src/commands/actor/push-data.ts](https://github.com/apify/apify-cli/blob/v0.20.0/src/commands/actor/push-data.ts)_
|
|
366
366
|
|
|
367
367
|
## `apify actor set-value KEY [VALUE]`
|
|
368
368
|
|
|
@@ -391,7 +391,7 @@ DESCRIPTION
|
|
|
391
391
|
$ cat ./my-text-file.txt | apify actor set-value KEY --contentType text/plain
|
|
392
392
|
```
|
|
393
393
|
|
|
394
|
-
_See code: [src/commands/actor/set-value.ts](https://github.com/apify/apify-cli/blob/v0.20.0
|
|
394
|
+
_See code: [src/commands/actor/set-value.ts](https://github.com/apify/apify-cli/blob/v0.20.0/src/commands/actor/set-value.ts)_
|
|
395
395
|
|
|
396
396
|
## `apify call [ACTORID]`
|
|
397
397
|
|
|
@@ -421,7 +421,7 @@ DESCRIPTION
|
|
|
421
421
|
takes input for the Actor from the default local key-value store by default.
|
|
422
422
|
```
|
|
423
423
|
|
|
424
|
-
_See code: [src/commands/call.ts](https://github.com/apify/apify-cli/blob/v0.20.0
|
|
424
|
+
_See code: [src/commands/call.ts](https://github.com/apify/apify-cli/blob/v0.20.0/src/commands/call.ts)_
|
|
425
425
|
|
|
426
426
|
## `apify create [ACTORNAME]`
|
|
427
427
|
|
|
@@ -446,7 +446,7 @@ DESCRIPTION
|
|
|
446
446
|
Creates a new Actor project directory from a selected boilerplate template.
|
|
447
447
|
```
|
|
448
448
|
|
|
449
|
-
_See code: [src/commands/create.ts](https://github.com/apify/apify-cli/blob/v0.20.0
|
|
449
|
+
_See code: [src/commands/create.ts](https://github.com/apify/apify-cli/blob/v0.20.0/src/commands/create.ts)_
|
|
450
450
|
|
|
451
451
|
## `apify help [COMMAND]`
|
|
452
452
|
|
|
@@ -481,7 +481,7 @@ DESCRIPTION
|
|
|
481
481
|
The information is printed to the console.
|
|
482
482
|
```
|
|
483
483
|
|
|
484
|
-
_See code: [src/commands/info.ts](https://github.com/apify/apify-cli/blob/v0.20.0
|
|
484
|
+
_See code: [src/commands/info.ts](https://github.com/apify/apify-cli/blob/v0.20.0/src/commands/info.ts)_
|
|
485
485
|
|
|
486
486
|
## `apify init [ACTORNAME]`
|
|
487
487
|
|
|
@@ -509,7 +509,7 @@ DESCRIPTION
|
|
|
509
509
|
WARNING: The directory at "storage" will be overwritten if it already exists.
|
|
510
510
|
```
|
|
511
511
|
|
|
512
|
-
_See code: [src/commands/init.ts](https://github.com/apify/apify-cli/blob/v0.20.0
|
|
512
|
+
_See code: [src/commands/init.ts](https://github.com/apify/apify-cli/blob/v0.20.0/src/commands/init.ts)_
|
|
513
513
|
|
|
514
514
|
## `apify login`
|
|
515
515
|
|
|
@@ -530,7 +530,7 @@ DESCRIPTION
|
|
|
530
530
|
"apify" commands. To log out, call "apify logout".
|
|
531
531
|
```
|
|
532
532
|
|
|
533
|
-
_See code: [src/commands/login.ts](https://github.com/apify/apify-cli/blob/v0.20.0
|
|
533
|
+
_See code: [src/commands/login.ts](https://github.com/apify/apify-cli/blob/v0.20.0/src/commands/login.ts)_
|
|
534
534
|
|
|
535
535
|
## `apify logout`
|
|
536
536
|
|
|
@@ -546,7 +546,7 @@ DESCRIPTION
|
|
|
546
546
|
call "apify login".
|
|
547
547
|
```
|
|
548
548
|
|
|
549
|
-
_See code: [src/commands/logout.ts](https://github.com/apify/apify-cli/blob/v0.20.0
|
|
549
|
+
_See code: [src/commands/logout.ts](https://github.com/apify/apify-cli/blob/v0.20.0/src/commands/logout.ts)_
|
|
550
550
|
|
|
551
551
|
## `apify pull [ACTORID]`
|
|
552
552
|
|
|
@@ -568,7 +568,7 @@ DESCRIPTION
|
|
|
568
568
|
cloned. If it is defined as Web IDE, it will fetch the files.
|
|
569
569
|
```
|
|
570
570
|
|
|
571
|
-
_See code: [src/commands/pull.ts](https://github.com/apify/apify-cli/blob/v0.20.0
|
|
571
|
+
_See code: [src/commands/pull.ts](https://github.com/apify/apify-cli/blob/v0.20.0/src/commands/pull.ts)_
|
|
572
572
|
|
|
573
573
|
## `apify push [ACTORID]`
|
|
574
574
|
|
|
@@ -606,7 +606,7 @@ DESCRIPTION
|
|
|
606
606
|
overwritten with --force flag.
|
|
607
607
|
```
|
|
608
608
|
|
|
609
|
-
_See code: [src/commands/push.ts](https://github.com/apify/apify-cli/blob/v0.20.0
|
|
609
|
+
_See code: [src/commands/push.ts](https://github.com/apify/apify-cli/blob/v0.20.0/src/commands/push.ts)_
|
|
610
610
|
|
|
611
611
|
## `apify run`
|
|
612
612
|
|
|
@@ -643,7 +643,7 @@ DESCRIPTION
|
|
|
643
643
|
package.json file. You can set up your own main file or environment variables by changing it.
|
|
644
644
|
```
|
|
645
645
|
|
|
646
|
-
_See code: [src/commands/run.ts](https://github.com/apify/apify-cli/blob/v0.20.0
|
|
646
|
+
_See code: [src/commands/run.ts](https://github.com/apify/apify-cli/blob/v0.20.0/src/commands/run.ts)_
|
|
647
647
|
|
|
648
648
|
## `apify secrets`
|
|
649
649
|
|
|
@@ -673,7 +673,7 @@ DESCRIPTION
|
|
|
673
673
|
of the Actor.
|
|
674
674
|
```
|
|
675
675
|
|
|
676
|
-
_See code: [src/commands/secrets/index.ts](https://github.com/apify/apify-cli/blob/v0.20.0
|
|
676
|
+
_See code: [src/commands/secrets/index.ts](https://github.com/apify/apify-cli/blob/v0.20.0/src/commands/secrets/index.ts)_
|
|
677
677
|
|
|
678
678
|
## `apify secrets add NAME VALUE`
|
|
679
679
|
|
|
@@ -692,7 +692,7 @@ DESCRIPTION
|
|
|
692
692
|
The secrets are stored to a file at ~/.apify
|
|
693
693
|
```
|
|
694
694
|
|
|
695
|
-
_See code: [src/commands/secrets/add.ts](https://github.com/apify/apify-cli/blob/v0.20.0
|
|
695
|
+
_See code: [src/commands/secrets/add.ts](https://github.com/apify/apify-cli/blob/v0.20.0/src/commands/secrets/add.ts)_
|
|
696
696
|
|
|
697
697
|
## `apify secrets rm NAME`
|
|
698
698
|
|
|
@@ -709,7 +709,7 @@ DESCRIPTION
|
|
|
709
709
|
Removes the secret.
|
|
710
710
|
```
|
|
711
711
|
|
|
712
|
-
_See code: [src/commands/secrets/rm.ts](https://github.com/apify/apify-cli/blob/v0.20.0
|
|
712
|
+
_See code: [src/commands/secrets/rm.ts](https://github.com/apify/apify-cli/blob/v0.20.0/src/commands/secrets/rm.ts)_
|
|
713
713
|
|
|
714
714
|
## `apify task`
|
|
715
715
|
|
|
@@ -723,7 +723,7 @@ DESCRIPTION
|
|
|
723
723
|
Commands are designed to be used to interact with Tasks.
|
|
724
724
|
```
|
|
725
725
|
|
|
726
|
-
_See code: [src/commands/task/index.ts](https://github.com/apify/apify-cli/blob/v0.20.0
|
|
726
|
+
_See code: [src/commands/task/index.ts](https://github.com/apify/apify-cli/blob/v0.20.0/src/commands/task/index.ts)_
|
|
727
727
|
|
|
728
728
|
## `apify task run TASKID`
|
|
729
729
|
|
|
@@ -748,7 +748,7 @@ DESCRIPTION
|
|
|
748
748
|
takes input for the Actor from the default local key-value store by default.
|
|
749
749
|
```
|
|
750
750
|
|
|
751
|
-
_See code: [src/commands/task/run.ts](https://github.com/apify/apify-cli/blob/v0.20.0
|
|
751
|
+
_See code: [src/commands/task/run.ts](https://github.com/apify/apify-cli/blob/v0.20.0/src/commands/task/run.ts)_
|
|
752
752
|
|
|
753
753
|
## `apify validate-schema [PATH]`
|
|
754
754
|
|
|
@@ -773,5 +773,5 @@ DESCRIPTION
|
|
|
773
773
|
You can also pass any custom path to your input schema to have it validated instead.
|
|
774
774
|
```
|
|
775
775
|
|
|
776
|
-
_See code: [src/commands/validate-schema.ts](https://github.com/apify/apify-cli/blob/v0.20.0
|
|
776
|
+
_See code: [src/commands/validate-schema.ts](https://github.com/apify/apify-cli/blob/v0.20.0/src/commands/validate-schema.ts)_
|
|
777
777
|
<!-- commandsstop -->
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "apify-cli",
|
|
3
|
-
"version": "0.20.0
|
|
3
|
+
"version": "0.20.0",
|
|
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",
|