@@ -262,7 +262,7 @@ USAGE
262262 $ apify actor
263263```
264264
265- _ See code: [ src/commands/actor/index.js] ( https://github.com/apify/apify-cli/blob/v0.8.0 /src/commands/actor/index.js ) _
265+ _ See code: [ src/commands/actor/index.js] ( https://github.com/apify/apify-cli/blob/v0.8.1 /src/commands/actor/index.js ) _
266266
267267## ` apify actor:get-input `
268268
@@ -273,7 +273,7 @@ USAGE
273273 $ apify actor:get-input
274274```
275275
276- _ See code: [ src/commands/actor/get-input.js] ( https://github.com/apify/apify-cli/blob/v0.8.0 /src/commands/actor/get-input.js ) _
276+ _ See code: [ src/commands/actor/get-input.js] ( https://github.com/apify/apify-cli/blob/v0.8.1 /src/commands/actor/get-input.js ) _
277277
278278## ` apify actor:get-value KEY `
279279
@@ -287,7 +287,7 @@ ARGUMENTS
287287 KEY Key of the record in key-value store
288288```
289289
290- _ See code: [ src/commands/actor/get-value.js] ( https://github.com/apify/apify-cli/blob/v0.8.0 /src/commands/actor/get-value.js ) _
290+ _ See code: [ src/commands/actor/get-value.js] ( https://github.com/apify/apify-cli/blob/v0.8.1 /src/commands/actor/get-value.js ) _
291291
292292## ` apify actor:push-data [ITEM] `
293293
@@ -308,7 +308,7 @@ DESCRIPTION
308308 $ cat ./test.json | apify actor:push-data
309309```
310310
311- _ See code: [ src/commands/actor/push-data.js] ( https://github.com/apify/apify-cli/blob/v0.8.0 /src/commands/actor/push-data.js ) _
311+ _ See code: [ src/commands/actor/push-data.js] ( https://github.com/apify/apify-cli/blob/v0.8.1 /src/commands/actor/push-data.js ) _
312312
313313## ` apify actor:set-value KEY [VALUE] `
314314
@@ -338,7 +338,7 @@ DESCRIPTION
338338 $ cat ./my-text-file.txt | apify actor:set-value KEY --contentType text/plain
339339```
340340
341- _ See code: [ src/commands/actor/set-value.js] ( https://github.com/apify/apify-cli/blob/v0.8.0 /src/commands/actor/set-value.js ) _
341+ _ See code: [ src/commands/actor/set-value.js] ( https://github.com/apify/apify-cli/blob/v0.8.1 /src/commands/actor/set-value.js ) _
342342
343343## ` apify call [ACTID] `
344344
@@ -359,11 +359,11 @@ OPTIONS
359359 -w, --wait-for-finish=wait-for-finish Seconds for waiting to run to finish, if no value passed, it waits forever.
360360
361361DESCRIPTION
362- The actor is run under your current Apify account, therefore you need to be logged in by calling "apify login". It
362+ The actor is run under your current Apify account, therefore you need to be logged in by calling "apify login". It
363363 takes input for the actor from the default local key-value store by default.
364364```
365365
366- _ See code: [ src/commands/call.js] ( https://github.com/apify/apify-cli/blob/v0.8.0 /src/commands/call.js ) _
366+ _ See code: [ src/commands/call.js] ( https://github.com/apify/apify-cli/blob/v0.8.1 /src/commands/call.js ) _
367367
368368## ` apify create [ACTORNAME] `
369369
@@ -382,7 +382,7 @@ OPTIONS
382382 find available template names.
383383```
384384
385- _ See code: [ src/commands/create.js] ( https://github.com/apify/apify-cli/blob/v0.8.0 /src/commands/create.js ) _
385+ _ See code: [ src/commands/create.js] ( https://github.com/apify/apify-cli/blob/v0.8.1 /src/commands/create.js ) _
386386
387387## ` apify info `
388388
@@ -396,7 +396,7 @@ DESCRIPTION
396396 The information is printed to the console.
397397```
398398
399- _ See code: [ src/commands/info.js] ( https://github.com/apify/apify-cli/blob/v0.8.0 /src/commands/info.js ) _
399+ _ See code: [ src/commands/info.js] ( https://github.com/apify/apify-cli/blob/v0.8.1 /src/commands/info.js ) _
400400
401401## ` apify init [ACTORNAME] `
402402
@@ -410,13 +410,13 @@ ARGUMENTS
410410 ACTORNAME Name of the actor. If not provided, you will be prompted for it.
411411
412412DESCRIPTION
413- The command only creates the "apify.json" file and the "storage" directory in the current directory, but will not
413+ The command only creates the "apify.json" file and the "storage" directory in the current directory, but will not
414414 touch anything else.
415415
416416 WARNING: The directory at "storage" will be overwritten if it already exists.
417417```
418418
419- _ See code: [ src/commands/init.js] ( https://github.com/apify/apify-cli/blob/v0.8.0 /src/commands/init.js ) _
419+ _ See code: [ src/commands/init.js] ( https://github.com/apify/apify-cli/blob/v0.8.1 /src/commands/init.js ) _
420420
421421## ` apify login `
422422
@@ -430,11 +430,11 @@ OPTIONS
430430 -t, --token=token [Optional] Apify API token
431431
432432DESCRIPTION
433- The API token and other account information is stored in the ~/.apify directory, from where it is read by all other
433+ The API token and other account information is stored in the ~/.apify directory, from where it is read by all other
434434 "apify" commands. To log out, call "apify logout".
435435```
436436
437- _ See code: [ src/commands/login.js] ( https://github.com/apify/apify-cli/blob/v0.8.0 /src/commands/login.js ) _
437+ _ See code: [ src/commands/login.js] ( https://github.com/apify/apify-cli/blob/v0.8.1 /src/commands/login.js ) _
438438
439439## ` apify logout `
440440
@@ -449,7 +449,7 @@ DESCRIPTION
449449 call "apify login".
450450```
451451
452- _ See code: [ src/commands/logout.js] ( https://github.com/apify/apify-cli/blob/v0.8.0 /src/commands/logout.js ) _
452+ _ See code: [ src/commands/logout.js] ( https://github.com/apify/apify-cli/blob/v0.8.1 /src/commands/logout.js ) _
453453
454454## ` apify push [ACTORID] `
455455
@@ -476,15 +476,15 @@ OPTIONS
476476 should be pushed. By default, it is taken from the "apify.json" file.
477477
478478DESCRIPTION
479- The actor settings are read from the "apify.json" file in the current directory, but they can be overridden using
479+ The actor settings are read from the "apify.json" file in the current directory, but they can be overridden using
480480 command-line options.
481- NOTE: If the source files are smaller than 3 MB then they are uploaded as
481+ NOTE: If the source files are smaller than 3 MB then they are uploaded as
482482 "Multiple source files", otherwise they are uploaded as "Zip file".
483483
484484 WARNING: If the target actor already exists in your Apify account, it will be overwritten!
485485```
486486
487- _ See code: [ src/commands/push.js] ( https://github.com/apify/apify-cli/blob/v0.8.0 /src/commands/push.js ) _
487+ _ See code: [ src/commands/push.js] ( https://github.com/apify/apify-cli/blob/v0.8.1 /src/commands/push.js ) _
488488
489489## ` apify run `
490490
@@ -510,11 +510,11 @@ DESCRIPTION
510510 example, this causes the actor input, as well as all other data in key-value stores, datasets or request queues to be
511511 stored in the "storage" directory, rather than on the Apify platform.
512512
513- NOTE: You can override the default behaviour of command overriding npm start script value in a package.json file. You
513+ NOTE: You can override the default behaviour of command overriding npm start script value in a package.json file. You
514514 can set up your own main file or environment variables by changing it.
515515```
516516
517- _ See code: [ src/commands/run.js] ( https://github.com/apify/apify-cli/blob/v0.8.0 /src/commands/run.js ) _
517+ _ See code: [ src/commands/run.js] ( https://github.com/apify/apify-cli/blob/v0.8.1 /src/commands/run.js ) _
518518
519519## ` apify secrets `
520520
@@ -540,7 +540,7 @@ DESCRIPTION
540540 of the actor.
541541```
542542
543- _ See code: [ src/commands/secrets/index.js] ( https://github.com/apify/apify-cli/blob/v0.8.0 /src/commands/secrets/index.js ) _
543+ _ See code: [ src/commands/secrets/index.js] ( https://github.com/apify/apify-cli/blob/v0.8.1 /src/commands/secrets/index.js ) _
544544
545545## ` apify secrets:add NAME VALUE `
546546
@@ -558,7 +558,7 @@ DESCRIPTION
558558 The secrets are stored to a file at ~/.apify
559559```
560560
561- _ See code: [ src/commands/secrets/add.js] ( https://github.com/apify/apify-cli/blob/v0.8.0 /src/commands/secrets/add.js ) _
561+ _ See code: [ src/commands/secrets/add.js] ( https://github.com/apify/apify-cli/blob/v0.8.1 /src/commands/secrets/add.js ) _
562562
563563## ` apify secrets:rm NAME `
564564
@@ -572,7 +572,7 @@ ARGUMENTS
572572 NAME Name of the secret
573573```
574574
575- _ See code: [ src/commands/secrets/rm.js] ( https://github.com/apify/apify-cli/blob/v0.8.0 /src/commands/secrets/rm.js ) _
575+ _ See code: [ src/commands/secrets/rm.js] ( https://github.com/apify/apify-cli/blob/v0.8.1 /src/commands/secrets/rm.js ) _
576576
577577## ` apify vis [PATH] `
578578
@@ -586,5 +586,5 @@ ARGUMENTS
586586 PATH Optional path to your INPUT_SCHEMA.json file. If not provided ./INPUT_SCHEMA.json is used.
587587```
588588
589- _ See code: [ src/commands/vis.js] ( https://github.com/apify/apify-cli/blob/v0.8.0 /src/commands/vis.js ) _
589+ _ See code: [ src/commands/vis.js] ( https://github.com/apify/apify-cli/blob/v0.8.1 /src/commands/vis.js ) _
590590<!-- commandsstop -->
0 commit comments