apify-cli 0.20.7-beta.4 → 0.20.7-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 CHANGED
@@ -287,16 +287,21 @@ This section contains printouts of `apify help` for all commands.
287
287
  * [`apify actor get-value KEY`](#apify-actor-get-value-key)
288
288
  * [`apify actor push-data [ITEM]`](#apify-actor-push-data-item)
289
289
  * [`apify actor set-value KEY [VALUE]`](#apify-actor-set-value-key-value)
290
+ * [`apify actors`](#apify-actors)
290
291
  * [`apify call [ACTORID]`](#apify-call-actorid)
291
292
  * [`apify create [ACTORNAME]`](#apify-create-actorname)
293
+ * [`apify datasets`](#apify-datasets)
292
294
  * [`apify help [COMMAND]`](#apify-help-command)
293
295
  * [`apify info`](#apify-info)
294
296
  * [`apify init [ACTORNAME]`](#apify-init-actorname)
297
+ * [`apify key-value-stores`](#apify-key-value-stores)
295
298
  * [`apify login`](#apify-login)
296
299
  * [`apify logout`](#apify-logout)
297
300
  * [`apify pull [ACTORID]`](#apify-pull-actorid)
298
301
  * [`apify push [ACTORID]`](#apify-push-actorid)
302
+ * [`apify request-queues`](#apify-request-queues)
299
303
  * [`apify run`](#apify-run)
304
+ * [`apify runs`](#apify-runs)
300
305
  * [`apify secrets`](#apify-secrets)
301
306
  * [`apify secrets add NAME VALUE`](#apify-secrets-add-name-value)
302
307
  * [`apify secrets rm NAME`](#apify-secrets-rm-name)
@@ -316,7 +321,7 @@ DESCRIPTION
316
321
  Commands are designed to be used in Actor runs. All commands are in PoC state, do not use in production environments.
317
322
  ```
318
323
 
319
- _See code: [src/commands/actor/index.ts](https://github.com/apify/apify-cli/blob/v0.20.7-beta.4/src/commands/actor/index.ts)_
324
+ _See code: [src/commands/actor/index.ts](https://github.com/apify/apify-cli/blob/v0.20.7-beta.6/src/commands/actor/index.ts)_
320
325
 
321
326
  ## `apify actor get-input`
322
327
 
@@ -330,7 +335,7 @@ DESCRIPTION
330
335
  Gets the Actor input value from the default key-value store associated with the Actor run.
331
336
  ```
332
337
 
333
- _See code: [src/commands/actor/get-input.ts](https://github.com/apify/apify-cli/blob/v0.20.7-beta.4/src/commands/actor/get-input.ts)_
338
+ _See code: [src/commands/actor/get-input.ts](https://github.com/apify/apify-cli/blob/v0.20.7-beta.6/src/commands/actor/get-input.ts)_
334
339
 
335
340
  ## `apify actor get-value KEY`
336
341
 
@@ -347,7 +352,7 @@ DESCRIPTION
347
352
  Gets a value from the default key-value store associated with the Actor run.
348
353
  ```
349
354
 
350
- _See code: [src/commands/actor/get-value.ts](https://github.com/apify/apify-cli/blob/v0.20.7-beta.4/src/commands/actor/get-value.ts)_
355
+ _See code: [src/commands/actor/get-value.ts](https://github.com/apify/apify-cli/blob/v0.20.7-beta.6/src/commands/actor/get-value.ts)_
351
356
 
352
357
  ## `apify actor push-data [ITEM]`
353
358
 
@@ -369,7 +374,7 @@ DESCRIPTION
369
374
  $ cat ./test.json | apify actor push-data
370
375
  ```
371
376
 
372
- _See code: [src/commands/actor/push-data.ts](https://github.com/apify/apify-cli/blob/v0.20.7-beta.4/src/commands/actor/push-data.ts)_
377
+ _See code: [src/commands/actor/push-data.ts](https://github.com/apify/apify-cli/blob/v0.20.7-beta.6/src/commands/actor/push-data.ts)_
373
378
 
374
379
  ## `apify actor set-value KEY [VALUE]`
375
380
 
@@ -398,7 +403,21 @@ DESCRIPTION
398
403
  $ cat ./my-text-file.txt | apify actor set-value KEY --contentType text/plain
399
404
  ```
400
405
 
401
- _See code: [src/commands/actor/set-value.ts](https://github.com/apify/apify-cli/blob/v0.20.7-beta.4/src/commands/actor/set-value.ts)_
406
+ _See code: [src/commands/actor/set-value.ts](https://github.com/apify/apify-cli/blob/v0.20.7-beta.6/src/commands/actor/set-value.ts)_
407
+
408
+ ## `apify actors`
409
+
410
+ Commands are designed to be used with Actors.
411
+
412
+ ```
413
+ USAGE
414
+ $ apify actors
415
+
416
+ DESCRIPTION
417
+ Commands are designed to be used with Actors.
418
+ ```
419
+
420
+ _See code: [src/commands/actors/index.ts](https://github.com/apify/apify-cli/blob/v0.20.7-beta.6/src/commands/actors/index.ts)_
402
421
 
403
422
  ## `apify call [ACTORID]`
404
423
 
@@ -430,7 +449,7 @@ DESCRIPTION
430
449
  takes input for the Actor from the default local key-value store by default.
431
450
  ```
432
451
 
433
- _See code: [src/commands/call.ts](https://github.com/apify/apify-cli/blob/v0.20.7-beta.4/src/commands/call.ts)_
452
+ _See code: [src/commands/call.ts](https://github.com/apify/apify-cli/blob/v0.20.7-beta.6/src/commands/call.ts)_
434
453
 
435
454
  ## `apify create [ACTORNAME]`
436
455
 
@@ -455,7 +474,21 @@ DESCRIPTION
455
474
  Creates a new Actor project directory from a selected boilerplate template.
456
475
  ```
457
476
 
458
- _See code: [src/commands/create.ts](https://github.com/apify/apify-cli/blob/v0.20.7-beta.4/src/commands/create.ts)_
477
+ _See code: [src/commands/create.ts](https://github.com/apify/apify-cli/blob/v0.20.7-beta.6/src/commands/create.ts)_
478
+
479
+ ## `apify datasets`
480
+
481
+ Commands are designed to be used with Datasets.
482
+
483
+ ```
484
+ USAGE
485
+ $ apify datasets
486
+
487
+ DESCRIPTION
488
+ Commands are designed to be used with Datasets.
489
+ ```
490
+
491
+ _See code: [src/commands/datasets/index.ts](https://github.com/apify/apify-cli/blob/v0.20.7-beta.6/src/commands/datasets/index.ts)_
459
492
 
460
493
  ## `apify help [COMMAND]`
461
494
 
@@ -490,7 +523,7 @@ DESCRIPTION
490
523
  The information is printed to the console.
491
524
  ```
492
525
 
493
- _See code: [src/commands/info.ts](https://github.com/apify/apify-cli/blob/v0.20.7-beta.4/src/commands/info.ts)_
526
+ _See code: [src/commands/info.ts](https://github.com/apify/apify-cli/blob/v0.20.7-beta.6/src/commands/info.ts)_
494
527
 
495
528
  ## `apify init [ACTORNAME]`
496
529
 
@@ -518,7 +551,21 @@ DESCRIPTION
518
551
  WARNING: The directory at "storage" will be overwritten if it already exists.
519
552
  ```
520
553
 
521
- _See code: [src/commands/init.ts](https://github.com/apify/apify-cli/blob/v0.20.7-beta.4/src/commands/init.ts)_
554
+ _See code: [src/commands/init.ts](https://github.com/apify/apify-cli/blob/v0.20.7-beta.6/src/commands/init.ts)_
555
+
556
+ ## `apify key-value-stores`
557
+
558
+ Commands are designed to be used with Key Value Stores.
559
+
560
+ ```
561
+ USAGE
562
+ $ apify key-value-stores
563
+
564
+ DESCRIPTION
565
+ Commands are designed to be used with Key Value Stores.
566
+ ```
567
+
568
+ _See code: [src/commands/key-value-stores/index.ts](https://github.com/apify/apify-cli/blob/v0.20.7-beta.6/src/commands/key-value-stores/index.ts)_
522
569
 
523
570
  ## `apify login`
524
571
 
@@ -539,7 +586,7 @@ DESCRIPTION
539
586
  "apify" commands. To log out, call "apify logout".
540
587
  ```
541
588
 
542
- _See code: [src/commands/login.ts](https://github.com/apify/apify-cli/blob/v0.20.7-beta.4/src/commands/login.ts)_
589
+ _See code: [src/commands/login.ts](https://github.com/apify/apify-cli/blob/v0.20.7-beta.6/src/commands/login.ts)_
543
590
 
544
591
  ## `apify logout`
545
592
 
@@ -555,7 +602,7 @@ DESCRIPTION
555
602
  call "apify login".
556
603
  ```
557
604
 
558
- _See code: [src/commands/logout.ts](https://github.com/apify/apify-cli/blob/v0.20.7-beta.4/src/commands/logout.ts)_
605
+ _See code: [src/commands/logout.ts](https://github.com/apify/apify-cli/blob/v0.20.7-beta.6/src/commands/logout.ts)_
559
606
 
560
607
  ## `apify pull [ACTORID]`
561
608
 
@@ -577,7 +624,7 @@ DESCRIPTION
577
624
  cloned. If it is defined as Web IDE, it will fetch the files.
578
625
  ```
579
626
 
580
- _See code: [src/commands/pull.ts](https://github.com/apify/apify-cli/blob/v0.20.7-beta.4/src/commands/pull.ts)_
627
+ _See code: [src/commands/pull.ts](https://github.com/apify/apify-cli/blob/v0.20.7-beta.6/src/commands/pull.ts)_
581
628
 
582
629
  ## `apify push [ACTORID]`
583
630
 
@@ -615,7 +662,21 @@ DESCRIPTION
615
662
  overwritten with --force flag.
616
663
  ```
617
664
 
618
- _See code: [src/commands/push.ts](https://github.com/apify/apify-cli/blob/v0.20.7-beta.4/src/commands/push.ts)_
665
+ _See code: [src/commands/push.ts](https://github.com/apify/apify-cli/blob/v0.20.7-beta.6/src/commands/push.ts)_
666
+
667
+ ## `apify request-queues`
668
+
669
+ Commands are designed to be used with Request Queues.
670
+
671
+ ```
672
+ USAGE
673
+ $ apify request-queues
674
+
675
+ DESCRIPTION
676
+ Commands are designed to be used with Request Queues.
677
+ ```
678
+
679
+ _See code: [src/commands/request-queues/index.ts](https://github.com/apify/apify-cli/blob/v0.20.7-beta.6/src/commands/request-queues/index.ts)_
619
680
 
620
681
  ## `apify run`
621
682
 
@@ -651,7 +712,21 @@ DESCRIPTION
651
712
  package.json file. You can set up your own main file or environment variables by changing it.
652
713
  ```
653
714
 
654
- _See code: [src/commands/run.ts](https://github.com/apify/apify-cli/blob/v0.20.7-beta.4/src/commands/run.ts)_
715
+ _See code: [src/commands/run.ts](https://github.com/apify/apify-cli/blob/v0.20.7-beta.6/src/commands/run.ts)_
716
+
717
+ ## `apify runs`
718
+
719
+ Commands are designed to be used with Actor Runs.
720
+
721
+ ```
722
+ USAGE
723
+ $ apify runs
724
+
725
+ DESCRIPTION
726
+ Commands are designed to be used with Actor Runs.
727
+ ```
728
+
729
+ _See code: [src/commands/runs/index.ts](https://github.com/apify/apify-cli/blob/v0.20.7-beta.6/src/commands/runs/index.ts)_
655
730
 
656
731
  ## `apify secrets`
657
732
 
@@ -681,7 +756,7 @@ DESCRIPTION
681
756
  of the Actor.
682
757
  ```
683
758
 
684
- _See code: [src/commands/secrets/index.ts](https://github.com/apify/apify-cli/blob/v0.20.7-beta.4/src/commands/secrets/index.ts)_
759
+ _See code: [src/commands/secrets/index.ts](https://github.com/apify/apify-cli/blob/v0.20.7-beta.6/src/commands/secrets/index.ts)_
685
760
 
686
761
  ## `apify secrets add NAME VALUE`
687
762
 
@@ -700,7 +775,7 @@ DESCRIPTION
700
775
  The secrets are stored to a file at ~/.apify
701
776
  ```
702
777
 
703
- _See code: [src/commands/secrets/add.ts](https://github.com/apify/apify-cli/blob/v0.20.7-beta.4/src/commands/secrets/add.ts)_
778
+ _See code: [src/commands/secrets/add.ts](https://github.com/apify/apify-cli/blob/v0.20.7-beta.6/src/commands/secrets/add.ts)_
704
779
 
705
780
  ## `apify secrets rm NAME`
706
781
 
@@ -717,7 +792,7 @@ DESCRIPTION
717
792
  Removes the secret.
718
793
  ```
719
794
 
720
- _See code: [src/commands/secrets/rm.ts](https://github.com/apify/apify-cli/blob/v0.20.7-beta.4/src/commands/secrets/rm.ts)_
795
+ _See code: [src/commands/secrets/rm.ts](https://github.com/apify/apify-cli/blob/v0.20.7-beta.6/src/commands/secrets/rm.ts)_
721
796
 
722
797
  ## `apify task`
723
798
 
@@ -731,7 +806,7 @@ DESCRIPTION
731
806
  Commands are designed to be used to interact with Tasks.
732
807
  ```
733
808
 
734
- _See code: [src/commands/task/index.ts](https://github.com/apify/apify-cli/blob/v0.20.7-beta.4/src/commands/task/index.ts)_
809
+ _See code: [src/commands/task/index.ts](https://github.com/apify/apify-cli/blob/v0.20.7-beta.6/src/commands/task/index.ts)_
735
810
 
736
811
  ## `apify task run TASKID`
737
812
 
@@ -756,7 +831,7 @@ DESCRIPTION
756
831
  takes input for the Actor from the default local key-value store by default.
757
832
  ```
758
833
 
759
- _See code: [src/commands/task/run.ts](https://github.com/apify/apify-cli/blob/v0.20.7-beta.4/src/commands/task/run.ts)_
834
+ _See code: [src/commands/task/run.ts](https://github.com/apify/apify-cli/blob/v0.20.7-beta.6/src/commands/task/run.ts)_
760
835
 
761
836
  ## `apify validate-schema [PATH]`
762
837
 
@@ -781,6 +856,6 @@ DESCRIPTION
781
856
  You can also pass any custom path to your input schema to have it validated instead.
782
857
  ```
783
858
 
784
- _See code: [src/commands/validate-schema.ts](https://github.com/apify/apify-cli/blob/v0.20.7-beta.4/src/commands/validate-schema.ts)_
859
+ _See code: [src/commands/validate-schema.ts](https://github.com/apify/apify-cli/blob/v0.20.7-beta.6/src/commands/validate-schema.ts)_
785
860
  <!-- commandsstop -->
786
861
  <!-- prettier-ignore-end -->