apify-cli 0.7.1-beta.5 → 0.7.2
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 +17 -17
- package/npm-shrinkwrap.json +8645 -1241
- package/oclif.manifest.json +1 -1
- package/package.json +98 -98
package/README.md
CHANGED
|
@@ -262,7 +262,7 @@ USAGE
|
|
|
262
262
|
$ apify actor
|
|
263
263
|
```
|
|
264
264
|
|
|
265
|
-
_See code: [src/commands/actor/index.js](https://github.com/apify/apify-cli/blob/v0.7.
|
|
265
|
+
_See code: [src/commands/actor/index.js](https://github.com/apify/apify-cli/blob/v0.7.2/src/commands/actor/index.js)_
|
|
266
266
|
|
|
267
267
|
## `apify actor:get-input`
|
|
268
268
|
|
|
@@ -273,7 +273,7 @@ USAGE
|
|
|
273
273
|
$ apify actor:get-input
|
|
274
274
|
```
|
|
275
275
|
|
|
276
|
-
_See code: [src/commands/actor/get-input.js](https://github.com/apify/apify-cli/blob/v0.7.
|
|
276
|
+
_See code: [src/commands/actor/get-input.js](https://github.com/apify/apify-cli/blob/v0.7.2/src/commands/actor/get-input.js)_
|
|
277
277
|
|
|
278
278
|
## `apify actor:get-value KEY`
|
|
279
279
|
|
|
@@ -287,7 +287,7 @@ ARGUMENTS
|
|
|
287
287
|
KEY Key of the record in key-value store
|
|
288
288
|
```
|
|
289
289
|
|
|
290
|
-
_See code: [src/commands/actor/get-value.js](https://github.com/apify/apify-cli/blob/v0.7.
|
|
290
|
+
_See code: [src/commands/actor/get-value.js](https://github.com/apify/apify-cli/blob/v0.7.2/src/commands/actor/get-value.js)_
|
|
291
291
|
|
|
292
292
|
## `apify actor:push-data [ITEM]`
|
|
293
293
|
|
|
@@ -308,7 +308,7 @@ DESCRIPTION
|
|
|
308
308
|
$ cat ./test.json | apify actor:push-data
|
|
309
309
|
```
|
|
310
310
|
|
|
311
|
-
_See code: [src/commands/actor/push-data.js](https://github.com/apify/apify-cli/blob/v0.7.
|
|
311
|
+
_See code: [src/commands/actor/push-data.js](https://github.com/apify/apify-cli/blob/v0.7.2/src/commands/actor/push-data.js)_
|
|
312
312
|
|
|
313
313
|
## `apify actor:set-value KEY [VALUE]`
|
|
314
314
|
|
|
@@ -338,7 +338,7 @@ DESCRIPTION
|
|
|
338
338
|
$ cat ./my-text-file.txt | apify actor:set-value KEY --contentType text/plain
|
|
339
339
|
```
|
|
340
340
|
|
|
341
|
-
_See code: [src/commands/actor/set-value.js](https://github.com/apify/apify-cli/blob/v0.7.
|
|
341
|
+
_See code: [src/commands/actor/set-value.js](https://github.com/apify/apify-cli/blob/v0.7.2/src/commands/actor/set-value.js)_
|
|
342
342
|
|
|
343
343
|
## `apify call [ACTID]`
|
|
344
344
|
|
|
@@ -363,7 +363,7 @@ DESCRIPTION
|
|
|
363
363
|
takes input for the actor from the default local key-value store by default.
|
|
364
364
|
```
|
|
365
365
|
|
|
366
|
-
_See code: [src/commands/call.js](https://github.com/apify/apify-cli/blob/v0.7.
|
|
366
|
+
_See code: [src/commands/call.js](https://github.com/apify/apify-cli/blob/v0.7.2/src/commands/call.js)_
|
|
367
367
|
|
|
368
368
|
## `apify create [ACTORNAME]`
|
|
369
369
|
|
|
@@ -382,7 +382,7 @@ OPTIONS
|
|
|
382
382
|
find available template names.
|
|
383
383
|
```
|
|
384
384
|
|
|
385
|
-
_See code: [src/commands/create.js](https://github.com/apify/apify-cli/blob/v0.7.
|
|
385
|
+
_See code: [src/commands/create.js](https://github.com/apify/apify-cli/blob/v0.7.2/src/commands/create.js)_
|
|
386
386
|
|
|
387
387
|
## `apify info`
|
|
388
388
|
|
|
@@ -396,7 +396,7 @@ DESCRIPTION
|
|
|
396
396
|
The information is printed to the console.
|
|
397
397
|
```
|
|
398
398
|
|
|
399
|
-
_See code: [src/commands/info.js](https://github.com/apify/apify-cli/blob/v0.7.
|
|
399
|
+
_See code: [src/commands/info.js](https://github.com/apify/apify-cli/blob/v0.7.2/src/commands/info.js)_
|
|
400
400
|
|
|
401
401
|
## `apify init [ACTORNAME]`
|
|
402
402
|
|
|
@@ -416,7 +416,7 @@ DESCRIPTION
|
|
|
416
416
|
WARNING: The directory at "apify_storage" will be overwritten if it already exists.
|
|
417
417
|
```
|
|
418
418
|
|
|
419
|
-
_See code: [src/commands/init.js](https://github.com/apify/apify-cli/blob/v0.7.
|
|
419
|
+
_See code: [src/commands/init.js](https://github.com/apify/apify-cli/blob/v0.7.2/src/commands/init.js)_
|
|
420
420
|
|
|
421
421
|
## `apify login`
|
|
422
422
|
|
|
@@ -434,7 +434,7 @@ DESCRIPTION
|
|
|
434
434
|
"apify" commands. To log out, call "apify logout".
|
|
435
435
|
```
|
|
436
436
|
|
|
437
|
-
_See code: [src/commands/login.js](https://github.com/apify/apify-cli/blob/v0.7.
|
|
437
|
+
_See code: [src/commands/login.js](https://github.com/apify/apify-cli/blob/v0.7.2/src/commands/login.js)_
|
|
438
438
|
|
|
439
439
|
## `apify logout`
|
|
440
440
|
|
|
@@ -449,7 +449,7 @@ DESCRIPTION
|
|
|
449
449
|
call "apify login".
|
|
450
450
|
```
|
|
451
451
|
|
|
452
|
-
_See code: [src/commands/logout.js](https://github.com/apify/apify-cli/blob/v0.7.
|
|
452
|
+
_See code: [src/commands/logout.js](https://github.com/apify/apify-cli/blob/v0.7.2/src/commands/logout.js)_
|
|
453
453
|
|
|
454
454
|
## `apify push [ACTORID]`
|
|
455
455
|
|
|
@@ -484,7 +484,7 @@ DESCRIPTION
|
|
|
484
484
|
WARNING: If the target actor already exists in your Apify account, it will be overwritten!
|
|
485
485
|
```
|
|
486
486
|
|
|
487
|
-
_See code: [src/commands/push.js](https://github.com/apify/apify-cli/blob/v0.7.
|
|
487
|
+
_See code: [src/commands/push.js](https://github.com/apify/apify-cli/blob/v0.7.2/src/commands/push.js)_
|
|
488
488
|
|
|
489
489
|
## `apify run`
|
|
490
490
|
|
|
@@ -514,7 +514,7 @@ DESCRIPTION
|
|
|
514
514
|
can set up your own main file or environment variables by changing it.
|
|
515
515
|
```
|
|
516
516
|
|
|
517
|
-
_See code: [src/commands/run.js](https://github.com/apify/apify-cli/blob/v0.7.
|
|
517
|
+
_See code: [src/commands/run.js](https://github.com/apify/apify-cli/blob/v0.7.2/src/commands/run.js)_
|
|
518
518
|
|
|
519
519
|
## `apify secrets`
|
|
520
520
|
|
|
@@ -540,7 +540,7 @@ DESCRIPTION
|
|
|
540
540
|
of the actor.
|
|
541
541
|
```
|
|
542
542
|
|
|
543
|
-
_See code: [src/commands/secrets/index.js](https://github.com/apify/apify-cli/blob/v0.7.
|
|
543
|
+
_See code: [src/commands/secrets/index.js](https://github.com/apify/apify-cli/blob/v0.7.2/src/commands/secrets/index.js)_
|
|
544
544
|
|
|
545
545
|
## `apify secrets:add NAME VALUE`
|
|
546
546
|
|
|
@@ -558,7 +558,7 @@ DESCRIPTION
|
|
|
558
558
|
The secrets are stored to a file at ~/.apify
|
|
559
559
|
```
|
|
560
560
|
|
|
561
|
-
_See code: [src/commands/secrets/add.js](https://github.com/apify/apify-cli/blob/v0.7.
|
|
561
|
+
_See code: [src/commands/secrets/add.js](https://github.com/apify/apify-cli/blob/v0.7.2/src/commands/secrets/add.js)_
|
|
562
562
|
|
|
563
563
|
## `apify secrets:rm NAME`
|
|
564
564
|
|
|
@@ -572,7 +572,7 @@ ARGUMENTS
|
|
|
572
572
|
NAME Name of the secret
|
|
573
573
|
```
|
|
574
574
|
|
|
575
|
-
_See code: [src/commands/secrets/rm.js](https://github.com/apify/apify-cli/blob/v0.7.
|
|
575
|
+
_See code: [src/commands/secrets/rm.js](https://github.com/apify/apify-cli/blob/v0.7.2/src/commands/secrets/rm.js)_
|
|
576
576
|
|
|
577
577
|
## `apify vis [PATH]`
|
|
578
578
|
|
|
@@ -586,5 +586,5 @@ ARGUMENTS
|
|
|
586
586
|
PATH Optional path to your INPUT_SCHEMA.json file. If not provided ./INPUT_SCHEMA.json is used.
|
|
587
587
|
```
|
|
588
588
|
|
|
589
|
-
_See code: [src/commands/vis.js](https://github.com/apify/apify-cli/blob/v0.7.
|
|
589
|
+
_See code: [src/commands/vis.js](https://github.com/apify/apify-cli/blob/v0.7.2/src/commands/vis.js)_
|
|
590
590
|
<!-- commandsstop -->
|