apify-cli 1.0.0-beta.113 → 1.0.0-beta.114

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 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/v1.0.0-beta.113/src/commands/actor/index.ts)_
312
+ _See code: [src/commands/actor/index.ts](https://github.com/apify/apify-cli/blob/v1.0.0-beta.114/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/v1.0.0-beta.113/src/commands/actor/get-input.ts)_
326
+ _See code: [src/commands/actor/get-input.ts](https://github.com/apify/apify-cli/blob/v1.0.0-beta.114/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/v1.0.0-beta.113/src/commands/actor/get-value.ts)_
343
+ _See code: [src/commands/actor/get-value.ts](https://github.com/apify/apify-cli/blob/v1.0.0-beta.114/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/v1.0.0-beta.113/src/commands/actor/push-data.ts)_
365
+ _See code: [src/commands/actor/push-data.ts](https://github.com/apify/apify-cli/blob/v1.0.0-beta.114/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/v1.0.0-beta.113/src/commands/actor/set-value.ts)_
394
+ _See code: [src/commands/actor/set-value.ts](https://github.com/apify/apify-cli/blob/v1.0.0-beta.114/src/commands/actor/set-value.ts)_
395
395
 
396
396
  ## `apify call [ACTORID]`
397
397
 
@@ -399,7 +399,8 @@ Runs a specific Actor remotely on the Apify cloud platform.
399
399
 
400
400
  ```
401
401
  USAGE
402
- $ apify call [ACTORID] [-b <value>] [-t <value>] [-m <value>] [-w <value>]
402
+ $ apify call [ACTORID] [-b <value>] [-t <value>] [-m <value>] [-w <value>] [-i <value> | --input-file
403
+ <value>]
403
404
 
404
405
  ARGUMENTS
405
406
  ACTORID Name or ID of the Actor to run (e.g. "my-actor", "apify/hello-world" or "E2jjCZBezvAZnX8Rb"). If not
@@ -407,9 +408,12 @@ ARGUMENTS
407
408
 
408
409
  FLAGS
409
410
  -b, --build=<value> Tag or number of the build to run (e.g. "latest" or "1.2.34").
411
+ -i, --input=<value> Optional JSON input to be given to the Actor.
410
412
  -m, --memory=<value> Amount of memory allocated for the Actor run, in megabytes.
411
413
  -t, --timeout=<value> Timeout for the Actor run in seconds. Zero value means there is no timeout.
412
414
  -w, --wait-for-finish=<value> Seconds for waiting to run to finish, if no value passed, it waits forever.
415
+ --input-file=<value> Optional path to a file with JSON input to be given to the Actor. The file must be a
416
+ valid JSON file. You can also specify `-` to read from standard input.
413
417
 
414
418
  DESCRIPTION
415
419
  Runs a specific Actor remotely on the Apify cloud platform.
@@ -417,7 +421,7 @@ DESCRIPTION
417
421
  takes input for the Actor from the default local key-value store by default.
418
422
  ```
419
423
 
420
- _See code: [src/commands/call.ts](https://github.com/apify/apify-cli/blob/v1.0.0-beta.113/src/commands/call.ts)_
424
+ _See code: [src/commands/call.ts](https://github.com/apify/apify-cli/blob/v1.0.0-beta.114/src/commands/call.ts)_
421
425
 
422
426
  ## `apify create [ACTORNAME]`
423
427
 
@@ -442,7 +446,7 @@ DESCRIPTION
442
446
  Creates a new Actor project directory from a selected boilerplate template.
443
447
  ```
444
448
 
445
- _See code: [src/commands/create.ts](https://github.com/apify/apify-cli/blob/v1.0.0-beta.113/src/commands/create.ts)_
449
+ _See code: [src/commands/create.ts](https://github.com/apify/apify-cli/blob/v1.0.0-beta.114/src/commands/create.ts)_
446
450
 
447
451
  ## `apify help [COMMAND]`
448
452
 
@@ -477,7 +481,7 @@ DESCRIPTION
477
481
  The information is printed to the console.
478
482
  ```
479
483
 
480
- _See code: [src/commands/info.ts](https://github.com/apify/apify-cli/blob/v1.0.0-beta.113/src/commands/info.ts)_
484
+ _See code: [src/commands/info.ts](https://github.com/apify/apify-cli/blob/v1.0.0-beta.114/src/commands/info.ts)_
481
485
 
482
486
  ## `apify init [ACTORNAME]`
483
487
 
@@ -505,7 +509,7 @@ DESCRIPTION
505
509
  WARNING: The directory at "storage" will be overwritten if it already exists.
506
510
  ```
507
511
 
508
- _See code: [src/commands/init.ts](https://github.com/apify/apify-cli/blob/v1.0.0-beta.113/src/commands/init.ts)_
512
+ _See code: [src/commands/init.ts](https://github.com/apify/apify-cli/blob/v1.0.0-beta.114/src/commands/init.ts)_
509
513
 
510
514
  ## `apify login`
511
515
 
@@ -526,7 +530,7 @@ DESCRIPTION
526
530
  "apify" commands. To log out, call "apify logout".
527
531
  ```
528
532
 
529
- _See code: [src/commands/login.ts](https://github.com/apify/apify-cli/blob/v1.0.0-beta.113/src/commands/login.ts)_
533
+ _See code: [src/commands/login.ts](https://github.com/apify/apify-cli/blob/v1.0.0-beta.114/src/commands/login.ts)_
530
534
 
531
535
  ## `apify logout`
532
536
 
@@ -542,7 +546,7 @@ DESCRIPTION
542
546
  call "apify login".
543
547
  ```
544
548
 
545
- _See code: [src/commands/logout.ts](https://github.com/apify/apify-cli/blob/v1.0.0-beta.113/src/commands/logout.ts)_
549
+ _See code: [src/commands/logout.ts](https://github.com/apify/apify-cli/blob/v1.0.0-beta.114/src/commands/logout.ts)_
546
550
 
547
551
  ## `apify pull [ACTORID]`
548
552
 
@@ -564,7 +568,7 @@ DESCRIPTION
564
568
  cloned. If it is defined as Web IDE, it will fetch the files.
565
569
  ```
566
570
 
567
- _See code: [src/commands/pull.ts](https://github.com/apify/apify-cli/blob/v1.0.0-beta.113/src/commands/pull.ts)_
571
+ _See code: [src/commands/pull.ts](https://github.com/apify/apify-cli/blob/v1.0.0-beta.114/src/commands/pull.ts)_
568
572
 
569
573
  ## `apify push [ACTORID]`
570
574
 
@@ -602,7 +606,7 @@ DESCRIPTION
602
606
  overwritten with --force flag.
603
607
  ```
604
608
 
605
- _See code: [src/commands/push.ts](https://github.com/apify/apify-cli/blob/v1.0.0-beta.113/src/commands/push.ts)_
609
+ _See code: [src/commands/push.ts](https://github.com/apify/apify-cli/blob/v1.0.0-beta.114/src/commands/push.ts)_
606
610
 
607
611
  ## `apify run`
608
612
 
@@ -639,7 +643,7 @@ DESCRIPTION
639
643
  package.json file. You can set up your own main file or environment variables by changing it.
640
644
  ```
641
645
 
642
- _See code: [src/commands/run.ts](https://github.com/apify/apify-cli/blob/v1.0.0-beta.113/src/commands/run.ts)_
646
+ _See code: [src/commands/run.ts](https://github.com/apify/apify-cli/blob/v1.0.0-beta.114/src/commands/run.ts)_
643
647
 
644
648
  ## `apify secrets`
645
649
 
@@ -669,7 +673,7 @@ DESCRIPTION
669
673
  of the Actor.
670
674
  ```
671
675
 
672
- _See code: [src/commands/secrets/index.ts](https://github.com/apify/apify-cli/blob/v1.0.0-beta.113/src/commands/secrets/index.ts)_
676
+ _See code: [src/commands/secrets/index.ts](https://github.com/apify/apify-cli/blob/v1.0.0-beta.114/src/commands/secrets/index.ts)_
673
677
 
674
678
  ## `apify secrets add NAME VALUE`
675
679
 
@@ -688,7 +692,7 @@ DESCRIPTION
688
692
  The secrets are stored to a file at ~/.apify
689
693
  ```
690
694
 
691
- _See code: [src/commands/secrets/add.ts](https://github.com/apify/apify-cli/blob/v1.0.0-beta.113/src/commands/secrets/add.ts)_
695
+ _See code: [src/commands/secrets/add.ts](https://github.com/apify/apify-cli/blob/v1.0.0-beta.114/src/commands/secrets/add.ts)_
692
696
 
693
697
  ## `apify secrets rm NAME`
694
698
 
@@ -705,7 +709,7 @@ DESCRIPTION
705
709
  Removes the secret.
706
710
  ```
707
711
 
708
- _See code: [src/commands/secrets/rm.ts](https://github.com/apify/apify-cli/blob/v1.0.0-beta.113/src/commands/secrets/rm.ts)_
712
+ _See code: [src/commands/secrets/rm.ts](https://github.com/apify/apify-cli/blob/v1.0.0-beta.114/src/commands/secrets/rm.ts)_
709
713
 
710
714
  ## `apify task`
711
715
 
@@ -719,7 +723,7 @@ DESCRIPTION
719
723
  Commands are designed to be used to interact with Tasks.
720
724
  ```
721
725
 
722
- _See code: [src/commands/task/index.ts](https://github.com/apify/apify-cli/blob/v1.0.0-beta.113/src/commands/task/index.ts)_
726
+ _See code: [src/commands/task/index.ts](https://github.com/apify/apify-cli/blob/v1.0.0-beta.114/src/commands/task/index.ts)_
723
727
 
724
728
  ## `apify task run TASKID`
725
729
 
@@ -744,7 +748,7 @@ DESCRIPTION
744
748
  takes input for the Actor from the default local key-value store by default.
745
749
  ```
746
750
 
747
- _See code: [src/commands/task/run.ts](https://github.com/apify/apify-cli/blob/v1.0.0-beta.113/src/commands/task/run.ts)_
751
+ _See code: [src/commands/task/run.ts](https://github.com/apify/apify-cli/blob/v1.0.0-beta.114/src/commands/task/run.ts)_
748
752
 
749
753
  ## `apify validate-schema [PATH]`
750
754
 
@@ -769,5 +773,5 @@ DESCRIPTION
769
773
  You can also pass any custom path to your input schema to have it validated instead.
770
774
  ```
771
775
 
772
- _See code: [src/commands/validate-schema.ts](https://github.com/apify/apify-cli/blob/v1.0.0-beta.113/src/commands/validate-schema.ts)_
776
+ _See code: [src/commands/validate-schema.ts](https://github.com/apify/apify-cli/blob/v1.0.0-beta.114/src/commands/validate-schema.ts)_
773
777
  <!-- commandsstop -->