apify-cli 0.20.10 → 0.20.11

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
@@ -316,7 +316,7 @@ DESCRIPTION
316
316
  Commands are designed to be used in Actor runs. All commands are in PoC state, do not use in production environments.
317
317
  ```
318
318
 
319
- _See code: [src/commands/actor/index.ts](https://github.com/apify/apify-cli/blob/v0.20.10/src/commands/actor/index.ts)_
319
+ _See code: [src/commands/actor/index.ts](https://github.com/apify/apify-cli/blob/v0.20.11/src/commands/actor/index.ts)_
320
320
 
321
321
  ## `apify actor get-input`
322
322
 
@@ -330,7 +330,7 @@ DESCRIPTION
330
330
  Gets the Actor input value from the default key-value store associated with the Actor run.
331
331
  ```
332
332
 
333
- _See code: [src/commands/actor/get-input.ts](https://github.com/apify/apify-cli/blob/v0.20.10/src/commands/actor/get-input.ts)_
333
+ _See code: [src/commands/actor/get-input.ts](https://github.com/apify/apify-cli/blob/v0.20.11/src/commands/actor/get-input.ts)_
334
334
 
335
335
  ## `apify actor get-value KEY`
336
336
 
@@ -347,7 +347,7 @@ DESCRIPTION
347
347
  Gets a value from the default key-value store associated with the Actor run.
348
348
  ```
349
349
 
350
- _See code: [src/commands/actor/get-value.ts](https://github.com/apify/apify-cli/blob/v0.20.10/src/commands/actor/get-value.ts)_
350
+ _See code: [src/commands/actor/get-value.ts](https://github.com/apify/apify-cli/blob/v0.20.11/src/commands/actor/get-value.ts)_
351
351
 
352
352
  ## `apify actor push-data [ITEM]`
353
353
 
@@ -369,7 +369,7 @@ DESCRIPTION
369
369
  $ cat ./test.json | apify actor push-data
370
370
  ```
371
371
 
372
- _See code: [src/commands/actor/push-data.ts](https://github.com/apify/apify-cli/blob/v0.20.10/src/commands/actor/push-data.ts)_
372
+ _See code: [src/commands/actor/push-data.ts](https://github.com/apify/apify-cli/blob/v0.20.11/src/commands/actor/push-data.ts)_
373
373
 
374
374
  ## `apify actor set-value KEY [VALUE]`
375
375
 
@@ -398,7 +398,7 @@ DESCRIPTION
398
398
  $ cat ./my-text-file.txt | apify actor set-value KEY --contentType text/plain
399
399
  ```
400
400
 
401
- _See code: [src/commands/actor/set-value.ts](https://github.com/apify/apify-cli/blob/v0.20.10/src/commands/actor/set-value.ts)_
401
+ _See code: [src/commands/actor/set-value.ts](https://github.com/apify/apify-cli/blob/v0.20.11/src/commands/actor/set-value.ts)_
402
402
 
403
403
  ## `apify call [ACTORID]`
404
404
 
@@ -430,7 +430,7 @@ DESCRIPTION
430
430
  takes input for the Actor from the default local key-value store by default.
431
431
  ```
432
432
 
433
- _See code: [src/commands/call.ts](https://github.com/apify/apify-cli/blob/v0.20.10/src/commands/call.ts)_
433
+ _See code: [src/commands/call.ts](https://github.com/apify/apify-cli/blob/v0.20.11/src/commands/call.ts)_
434
434
 
435
435
  ## `apify create [ACTORNAME]`
436
436
 
@@ -455,7 +455,7 @@ DESCRIPTION
455
455
  Creates a new Actor project directory from a selected boilerplate template.
456
456
  ```
457
457
 
458
- _See code: [src/commands/create.ts](https://github.com/apify/apify-cli/blob/v0.20.10/src/commands/create.ts)_
458
+ _See code: [src/commands/create.ts](https://github.com/apify/apify-cli/blob/v0.20.11/src/commands/create.ts)_
459
459
 
460
460
  ## `apify help [COMMAND]`
461
461
 
@@ -490,7 +490,7 @@ DESCRIPTION
490
490
  The information is printed to the console.
491
491
  ```
492
492
 
493
- _See code: [src/commands/info.ts](https://github.com/apify/apify-cli/blob/v0.20.10/src/commands/info.ts)_
493
+ _See code: [src/commands/info.ts](https://github.com/apify/apify-cli/blob/v0.20.11/src/commands/info.ts)_
494
494
 
495
495
  ## `apify init [ACTORNAME]`
496
496
 
@@ -518,7 +518,7 @@ DESCRIPTION
518
518
  WARNING: The directory at "storage" will be overwritten if it already exists.
519
519
  ```
520
520
 
521
- _See code: [src/commands/init.ts](https://github.com/apify/apify-cli/blob/v0.20.10/src/commands/init.ts)_
521
+ _See code: [src/commands/init.ts](https://github.com/apify/apify-cli/blob/v0.20.11/src/commands/init.ts)_
522
522
 
523
523
  ## `apify login`
524
524
 
@@ -539,7 +539,7 @@ DESCRIPTION
539
539
  "apify" commands. To log out, call "apify logout".
540
540
  ```
541
541
 
542
- _See code: [src/commands/login.ts](https://github.com/apify/apify-cli/blob/v0.20.10/src/commands/login.ts)_
542
+ _See code: [src/commands/login.ts](https://github.com/apify/apify-cli/blob/v0.20.11/src/commands/login.ts)_
543
543
 
544
544
  ## `apify logout`
545
545
 
@@ -555,7 +555,7 @@ DESCRIPTION
555
555
  call "apify login".
556
556
  ```
557
557
 
558
- _See code: [src/commands/logout.ts](https://github.com/apify/apify-cli/blob/v0.20.10/src/commands/logout.ts)_
558
+ _See code: [src/commands/logout.ts](https://github.com/apify/apify-cli/blob/v0.20.11/src/commands/logout.ts)_
559
559
 
560
560
  ## `apify pull [ACTORID]`
561
561
 
@@ -577,7 +577,7 @@ DESCRIPTION
577
577
  cloned. If it is defined as Web IDE, it will fetch the files.
578
578
  ```
579
579
 
580
- _See code: [src/commands/pull.ts](https://github.com/apify/apify-cli/blob/v0.20.10/src/commands/pull.ts)_
580
+ _See code: [src/commands/pull.ts](https://github.com/apify/apify-cli/blob/v0.20.11/src/commands/pull.ts)_
581
581
 
582
582
  ## `apify push [ACTORID]`
583
583
 
@@ -615,7 +615,7 @@ DESCRIPTION
615
615
  overwritten with --force flag.
616
616
  ```
617
617
 
618
- _See code: [src/commands/push.ts](https://github.com/apify/apify-cli/blob/v0.20.10/src/commands/push.ts)_
618
+ _See code: [src/commands/push.ts](https://github.com/apify/apify-cli/blob/v0.20.11/src/commands/push.ts)_
619
619
 
620
620
  ## `apify run`
621
621
 
@@ -651,7 +651,7 @@ DESCRIPTION
651
651
  package.json file. You can set up your own main file or environment variables by changing it.
652
652
  ```
653
653
 
654
- _See code: [src/commands/run.ts](https://github.com/apify/apify-cli/blob/v0.20.10/src/commands/run.ts)_
654
+ _See code: [src/commands/run.ts](https://github.com/apify/apify-cli/blob/v0.20.11/src/commands/run.ts)_
655
655
 
656
656
  ## `apify secrets`
657
657
 
@@ -681,7 +681,7 @@ DESCRIPTION
681
681
  of the Actor.
682
682
  ```
683
683
 
684
- _See code: [src/commands/secrets/index.ts](https://github.com/apify/apify-cli/blob/v0.20.10/src/commands/secrets/index.ts)_
684
+ _See code: [src/commands/secrets/index.ts](https://github.com/apify/apify-cli/blob/v0.20.11/src/commands/secrets/index.ts)_
685
685
 
686
686
  ## `apify secrets add NAME VALUE`
687
687
 
@@ -700,7 +700,7 @@ DESCRIPTION
700
700
  The secrets are stored to a file at ~/.apify
701
701
  ```
702
702
 
703
- _See code: [src/commands/secrets/add.ts](https://github.com/apify/apify-cli/blob/v0.20.10/src/commands/secrets/add.ts)_
703
+ _See code: [src/commands/secrets/add.ts](https://github.com/apify/apify-cli/blob/v0.20.11/src/commands/secrets/add.ts)_
704
704
 
705
705
  ## `apify secrets rm NAME`
706
706
 
@@ -717,7 +717,7 @@ DESCRIPTION
717
717
  Removes the secret.
718
718
  ```
719
719
 
720
- _See code: [src/commands/secrets/rm.ts](https://github.com/apify/apify-cli/blob/v0.20.10/src/commands/secrets/rm.ts)_
720
+ _See code: [src/commands/secrets/rm.ts](https://github.com/apify/apify-cli/blob/v0.20.11/src/commands/secrets/rm.ts)_
721
721
 
722
722
  ## `apify task`
723
723
 
@@ -731,7 +731,7 @@ DESCRIPTION
731
731
  Commands are designed to be used to interact with Tasks.
732
732
  ```
733
733
 
734
- _See code: [src/commands/task/index.ts](https://github.com/apify/apify-cli/blob/v0.20.10/src/commands/task/index.ts)_
734
+ _See code: [src/commands/task/index.ts](https://github.com/apify/apify-cli/blob/v0.20.11/src/commands/task/index.ts)_
735
735
 
736
736
  ## `apify task run TASKID`
737
737
 
@@ -756,7 +756,7 @@ DESCRIPTION
756
756
  takes input for the Actor from the default local key-value store by default.
757
757
  ```
758
758
 
759
- _See code: [src/commands/task/run.ts](https://github.com/apify/apify-cli/blob/v0.20.10/src/commands/task/run.ts)_
759
+ _See code: [src/commands/task/run.ts](https://github.com/apify/apify-cli/blob/v0.20.11/src/commands/task/run.ts)_
760
760
 
761
761
  ## `apify validate-schema [PATH]`
762
762
 
@@ -781,6 +781,6 @@ DESCRIPTION
781
781
  You can also pass any custom path to your input schema to have it validated instead.
782
782
  ```
783
783
 
784
- _See code: [src/commands/validate-schema.ts](https://github.com/apify/apify-cli/blob/v0.20.10/src/commands/validate-schema.ts)_
784
+ _See code: [src/commands/validate-schema.ts](https://github.com/apify/apify-cli/blob/v0.20.11/src/commands/validate-schema.ts)_
785
785
  <!-- commandsstop -->
786
786
  <!-- prettier-ignore-end -->