apify-cli 1.0.0-beta.95 → 1.0.0-beta.97
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/dist/.tsbuildinfo +1 -1
- package/dist/commands/call.d.ts.map +1 -1
- package/dist/commands/call.js.map +1 -1
- package/dist/commands/create.d.ts.map +1 -1
- package/dist/commands/create.js +21 -15
- package/dist/commands/create.js.map +1 -1
- package/dist/commands/edit-input-schema.js +15 -15
- package/dist/commands/edit-input-schema.js.map +1 -1
- package/dist/commands/init-wrap-scrapy.js +1 -1
- package/dist/commands/init-wrap-scrapy.js.map +1 -1
- package/dist/commands/init.js +5 -5
- package/dist/commands/init.js.map +1 -1
- package/dist/commands/login.js +7 -7
- package/dist/commands/login.js.map +1 -1
- package/dist/commands/logout.js +1 -1
- package/dist/commands/logout.js.map +1 -1
- package/dist/commands/pull.js +2 -2
- package/dist/commands/pull.js.map +1 -1
- package/dist/commands/push.js +21 -19
- package/dist/commands/push.js.map +1 -1
- package/dist/commands/run.d.ts.map +1 -1
- package/dist/commands/run.js +26 -16
- package/dist/commands/run.js.map +1 -1
- package/dist/commands/validate-schema.js +3 -3
- package/dist/commands/validate-schema.js.map +1 -1
- package/dist/hooks/deprecations.js +1 -1
- package/dist/hooks/deprecations.js.map +1 -1
- package/dist/lib/commands/run-on-cloud.js +9 -9
- package/dist/lib/commands/run-on-cloud.js.map +1 -1
- package/dist/lib/create-utils.js +1 -1
- package/dist/lib/create-utils.js.map +1 -1
- package/dist/lib/exec.js +1 -1
- package/dist/lib/exec.js.map +1 -1
- package/dist/lib/input_schema.js +1 -1
- package/dist/lib/input_schema.js.map +1 -1
- package/dist/lib/outputs.d.ts +18 -6
- package/dist/lib/outputs.d.ts.map +1 -1
- package/dist/lib/outputs.js +43 -18
- package/dist/lib/outputs.js.map +1 -1
- package/dist/lib/projects/scrapy/wrapScrapyProject.js +3 -3
- package/dist/lib/projects/scrapy/wrapScrapyProject.js.map +1 -1
- package/dist/lib/secrets.js +2 -2
- package/dist/lib/secrets.js.map +1 -1
- package/dist/lib/telemetry.js +1 -1
- package/dist/lib/telemetry.js.map +1 -1
- package/dist/lib/utils.d.ts.map +1 -1
- package/dist/lib/utils.js +6 -33
- package/dist/lib/utils.js.map +1 -1
- package/dist/lib/version_check.js +7 -7
- package/dist/lib/version_check.js.map +1 -1
- 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/v1.0.0-beta.
|
|
312
|
+
_See code: [src/commands/actor/index.ts](https://github.com/apify/apify-cli/blob/v1.0.0-beta.97/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.
|
|
326
|
+
_See code: [src/commands/actor/get-input.ts](https://github.com/apify/apify-cli/blob/v1.0.0-beta.97/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.
|
|
343
|
+
_See code: [src/commands/actor/get-value.ts](https://github.com/apify/apify-cli/blob/v1.0.0-beta.97/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.
|
|
365
|
+
_See code: [src/commands/actor/push-data.ts](https://github.com/apify/apify-cli/blob/v1.0.0-beta.97/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.
|
|
394
|
+
_See code: [src/commands/actor/set-value.ts](https://github.com/apify/apify-cli/blob/v1.0.0-beta.97/src/commands/actor/set-value.ts)_
|
|
395
395
|
|
|
396
396
|
## `apify call [ACTORID]`
|
|
397
397
|
|
|
@@ -417,7 +417,7 @@ DESCRIPTION
|
|
|
417
417
|
takes input for the Actor from the default local key-value store by default.
|
|
418
418
|
```
|
|
419
419
|
|
|
420
|
-
_See code: [src/commands/call.ts](https://github.com/apify/apify-cli/blob/v1.0.0-beta.
|
|
420
|
+
_See code: [src/commands/call.ts](https://github.com/apify/apify-cli/blob/v1.0.0-beta.97/src/commands/call.ts)_
|
|
421
421
|
|
|
422
422
|
## `apify create [ACTORNAME]`
|
|
423
423
|
|
|
@@ -442,7 +442,7 @@ DESCRIPTION
|
|
|
442
442
|
Creates a new Actor project directory from a selected boilerplate template.
|
|
443
443
|
```
|
|
444
444
|
|
|
445
|
-
_See code: [src/commands/create.ts](https://github.com/apify/apify-cli/blob/v1.0.0-beta.
|
|
445
|
+
_See code: [src/commands/create.ts](https://github.com/apify/apify-cli/blob/v1.0.0-beta.97/src/commands/create.ts)_
|
|
446
446
|
|
|
447
447
|
## `apify help [COMMAND]`
|
|
448
448
|
|
|
@@ -477,7 +477,7 @@ DESCRIPTION
|
|
|
477
477
|
The information is printed to the console.
|
|
478
478
|
```
|
|
479
479
|
|
|
480
|
-
_See code: [src/commands/info.ts](https://github.com/apify/apify-cli/blob/v1.0.0-beta.
|
|
480
|
+
_See code: [src/commands/info.ts](https://github.com/apify/apify-cli/blob/v1.0.0-beta.97/src/commands/info.ts)_
|
|
481
481
|
|
|
482
482
|
## `apify init [ACTORNAME]`
|
|
483
483
|
|
|
@@ -505,7 +505,7 @@ DESCRIPTION
|
|
|
505
505
|
WARNING: The directory at "storage" will be overwritten if it already exists.
|
|
506
506
|
```
|
|
507
507
|
|
|
508
|
-
_See code: [src/commands/init.ts](https://github.com/apify/apify-cli/blob/v1.0.0-beta.
|
|
508
|
+
_See code: [src/commands/init.ts](https://github.com/apify/apify-cli/blob/v1.0.0-beta.97/src/commands/init.ts)_
|
|
509
509
|
|
|
510
510
|
## `apify login`
|
|
511
511
|
|
|
@@ -526,7 +526,7 @@ DESCRIPTION
|
|
|
526
526
|
"apify" commands. To log out, call "apify logout".
|
|
527
527
|
```
|
|
528
528
|
|
|
529
|
-
_See code: [src/commands/login.ts](https://github.com/apify/apify-cli/blob/v1.0.0-beta.
|
|
529
|
+
_See code: [src/commands/login.ts](https://github.com/apify/apify-cli/blob/v1.0.0-beta.97/src/commands/login.ts)_
|
|
530
530
|
|
|
531
531
|
## `apify logout`
|
|
532
532
|
|
|
@@ -542,7 +542,7 @@ DESCRIPTION
|
|
|
542
542
|
call "apify login".
|
|
543
543
|
```
|
|
544
544
|
|
|
545
|
-
_See code: [src/commands/logout.ts](https://github.com/apify/apify-cli/blob/v1.0.0-beta.
|
|
545
|
+
_See code: [src/commands/logout.ts](https://github.com/apify/apify-cli/blob/v1.0.0-beta.97/src/commands/logout.ts)_
|
|
546
546
|
|
|
547
547
|
## `apify pull [ACTORID]`
|
|
548
548
|
|
|
@@ -564,7 +564,7 @@ DESCRIPTION
|
|
|
564
564
|
cloned. If it is defined as Web IDE, it will fetch the files.
|
|
565
565
|
```
|
|
566
566
|
|
|
567
|
-
_See code: [src/commands/pull.ts](https://github.com/apify/apify-cli/blob/v1.0.0-beta.
|
|
567
|
+
_See code: [src/commands/pull.ts](https://github.com/apify/apify-cli/blob/v1.0.0-beta.97/src/commands/pull.ts)_
|
|
568
568
|
|
|
569
569
|
## `apify push [ACTORID]`
|
|
570
570
|
|
|
@@ -602,7 +602,7 @@ DESCRIPTION
|
|
|
602
602
|
overwritten with --force flag.
|
|
603
603
|
```
|
|
604
604
|
|
|
605
|
-
_See code: [src/commands/push.ts](https://github.com/apify/apify-cli/blob/v1.0.0-beta.
|
|
605
|
+
_See code: [src/commands/push.ts](https://github.com/apify/apify-cli/blob/v1.0.0-beta.97/src/commands/push.ts)_
|
|
606
606
|
|
|
607
607
|
## `apify run`
|
|
608
608
|
|
|
@@ -634,7 +634,7 @@ DESCRIPTION
|
|
|
634
634
|
package.json file. You can set up your own main file or environment variables by changing it.
|
|
635
635
|
```
|
|
636
636
|
|
|
637
|
-
_See code: [src/commands/run.ts](https://github.com/apify/apify-cli/blob/v1.0.0-beta.
|
|
637
|
+
_See code: [src/commands/run.ts](https://github.com/apify/apify-cli/blob/v1.0.0-beta.97/src/commands/run.ts)_
|
|
638
638
|
|
|
639
639
|
## `apify secrets`
|
|
640
640
|
|
|
@@ -664,7 +664,7 @@ DESCRIPTION
|
|
|
664
664
|
of the Actor.
|
|
665
665
|
```
|
|
666
666
|
|
|
667
|
-
_See code: [src/commands/secrets/index.ts](https://github.com/apify/apify-cli/blob/v1.0.0-beta.
|
|
667
|
+
_See code: [src/commands/secrets/index.ts](https://github.com/apify/apify-cli/blob/v1.0.0-beta.97/src/commands/secrets/index.ts)_
|
|
668
668
|
|
|
669
669
|
## `apify secrets add NAME VALUE`
|
|
670
670
|
|
|
@@ -683,7 +683,7 @@ DESCRIPTION
|
|
|
683
683
|
The secrets are stored to a file at ~/.apify
|
|
684
684
|
```
|
|
685
685
|
|
|
686
|
-
_See code: [src/commands/secrets/add.ts](https://github.com/apify/apify-cli/blob/v1.0.0-beta.
|
|
686
|
+
_See code: [src/commands/secrets/add.ts](https://github.com/apify/apify-cli/blob/v1.0.0-beta.97/src/commands/secrets/add.ts)_
|
|
687
687
|
|
|
688
688
|
## `apify secrets rm NAME`
|
|
689
689
|
|
|
@@ -700,7 +700,7 @@ DESCRIPTION
|
|
|
700
700
|
Removes the secret.
|
|
701
701
|
```
|
|
702
702
|
|
|
703
|
-
_See code: [src/commands/secrets/rm.ts](https://github.com/apify/apify-cli/blob/v1.0.0-beta.
|
|
703
|
+
_See code: [src/commands/secrets/rm.ts](https://github.com/apify/apify-cli/blob/v1.0.0-beta.97/src/commands/secrets/rm.ts)_
|
|
704
704
|
|
|
705
705
|
## `apify task`
|
|
706
706
|
|
|
@@ -714,7 +714,7 @@ DESCRIPTION
|
|
|
714
714
|
Commands are designed to be used to interact with Tasks.
|
|
715
715
|
```
|
|
716
716
|
|
|
717
|
-
_See code: [src/commands/task/index.ts](https://github.com/apify/apify-cli/blob/v1.0.0-beta.
|
|
717
|
+
_See code: [src/commands/task/index.ts](https://github.com/apify/apify-cli/blob/v1.0.0-beta.97/src/commands/task/index.ts)_
|
|
718
718
|
|
|
719
719
|
## `apify task run TASKID`
|
|
720
720
|
|
|
@@ -739,7 +739,7 @@ DESCRIPTION
|
|
|
739
739
|
takes input for the Actor from the default local key-value store by default.
|
|
740
740
|
```
|
|
741
741
|
|
|
742
|
-
_See code: [src/commands/task/run.ts](https://github.com/apify/apify-cli/blob/v1.0.0-beta.
|
|
742
|
+
_See code: [src/commands/task/run.ts](https://github.com/apify/apify-cli/blob/v1.0.0-beta.97/src/commands/task/run.ts)_
|
|
743
743
|
|
|
744
744
|
## `apify validate-schema [PATH]`
|
|
745
745
|
|
|
@@ -764,5 +764,5 @@ DESCRIPTION
|
|
|
764
764
|
You can also pass any custom path to your input schema to have it validated instead.
|
|
765
765
|
```
|
|
766
766
|
|
|
767
|
-
_See code: [src/commands/validate-schema.ts](https://github.com/apify/apify-cli/blob/v1.0.0-beta.
|
|
767
|
+
_See code: [src/commands/validate-schema.ts](https://github.com/apify/apify-cli/blob/v1.0.0-beta.97/src/commands/validate-schema.ts)_
|
|
768
768
|
<!-- commandsstop -->
|