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